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 def OnCloseWindow(self, event):
3365 if self.frame is not None:
3366 self.frame.Destroy()
3371 # These methods provide the file-like output behaviour.
3372 def write(self, text):
3374 Create the output window if needed and write the string to it.
3375 If not called in the context of the gui thread then uses
3376 CallAfter to do the work there.
3378 if self.frame is None:
3379 if not wx.Thread_IsMain():
3380 wx.CallAfter(self.CreateOutputWindow, text)
3382 self.CreateOutputWindow(text)
3384 if not wx.Thread_IsMain():
3385 wx.CallAfter(self.text.AppendText, text)
3387 self.text.AppendText(text)
3391 if self.frame is not None:
3392 wx.CallAfter(self.frame.Close)
3396 #----------------------------------------------------------------------
3398 _defRedirect = (wx.Platform == '__WXMSW__' or wx.Platform == '__WXMAC__')
3400 class App(wx.PyApp):
3402 The main application class. Derive from this and implement an OnInit
3403 method that creates a frame and then calls self.SetTopWindow(frame)
3405 outputWindowClass = PyOnDemandOutputWindow
3407 def __init__(self, redirect=_defRedirect, filename=None, useBestVisual=False):
3408 wx.PyApp.__init__(self)
3410 if wx.Platform == "__WXMAC__":
3413 if not MacOS.WMAvailable():
3415 This program needs access to the screen. Please run with 'pythonw',
3416 not 'python', and only when you are logged in on the main display of
3422 # This has to be done before OnInit
3423 self.SetUseBestVisual(useBestVisual)
3425 # Set the default handler for SIGINT. This fixes a problem
3426 # where if Ctrl-C is pressed in the console that started this
3427 # app then it will not appear to do anything, (not even send
3428 # KeyboardInterrupt???) but will later segfault on exit. By
3429 # setting the default handler then the app will exit, as
3430 # expected (depending on platform.)
3433 signal.signal(signal.SIGINT, signal.SIG_DFL)
3437 # Save and redirect the stdio to a window?
3438 self.stdioWin = None
3439 self.saveStdio = (_sys.stdout, _sys.stderr)
3441 self.RedirectStdio(filename)
3443 # This finishes the initialization of wxWindows and then calls
3444 # the OnInit that should be present in the derived class
3445 self._BootstrapApp()
3450 self.RestoreStdio() # Just in case the MainLoop was overridden
3455 def SetTopWindow(self, frame):
3456 """Set the \\"main\\" top level window"""
3458 self.stdioWin.SetParent(frame)
3459 wx.PyApp.SetTopWindow(self, frame)
3463 """Execute the main GUI event loop"""
3464 wx.PyApp.MainLoop(self)
3468 def RedirectStdio(self, filename=None):
3469 """Redirect sys.stdout and sys.stderr to a file or a popup window."""
3471 _sys.stdout = _sys.stderr = open(filename, 'a')
3473 self.stdioWin = self.outputWindowClass()
3474 _sys.stdout = _sys.stderr = self.stdioWin
3477 def RestoreStdio(self):
3478 _sys.stdout, _sys.stderr = self.saveStdio
3482 # change from wxPyApp_ to wxApp_
3483 App_GetMacSupportPCMenuShortcuts = _core.PyApp_GetMacSupportPCMenuShortcuts
3484 App_GetMacAboutMenuItemId = _core.PyApp_GetMacAboutMenuItemId
3485 App_GetMacPreferencesMenuItemId = _core.PyApp_GetMacPreferencesMenuItemId
3486 App_GetMacExitMenuItemId = _core.PyApp_GetMacExitMenuItemId
3487 App_GetMacHelpMenuTitleName = _core.PyApp_GetMacHelpMenuTitleName
3488 App_SetMacSupportPCMenuShortcuts = _core.PyApp_SetMacSupportPCMenuShortcuts
3489 App_SetMacAboutMenuItemId = _core.PyApp_SetMacAboutMenuItemId
3490 App_SetMacPreferencesMenuItemId = _core.PyApp_SetMacPreferencesMenuItemId
3491 App_SetMacExitMenuItemId = _core.PyApp_SetMacExitMenuItemId
3492 App_SetMacHelpMenuTitleName = _core.PyApp_SetMacHelpMenuTitleName
3493 App_GetComCtl32Version = _core.PyApp_GetComCtl32Version
3495 #----------------------------------------------------------------------------
3497 class PySimpleApp(wx.App):
3499 A simple application class. You can just create one of these and
3500 then then make your top level windows later, and not have to worry
3503 def __init__(self, redirect=False, filename=None, useBestVisual=False):
3504 wx.App.__init__(self, redirect, filename, useBestVisual)
3507 wx.InitAllImageHandlers()
3511 # Is anybody using this one?
3512 class PyWidgetTester(wx.App):
3513 def __init__(self, size = (
250,
100)):
3515 wx.App.__init__(self,
0)
3518 self.frame = wx.Frame(None, -
1, "Widget Tester", pos=(
0,
0), size=self.size)
3519 self.SetTopWindow(self.frame)
3522 def SetWidget(self, widgetClass, *args):
3523 w = widgetClass(self.frame, *args)
3524 self.frame.Show(True)
3526 #----------------------------------------------------------------------------
3527 # DO NOT hold any other references to this object. This is how we
3528 # know when to cleanup system resources that wxWin is holding. When
3529 # the sys module is unloaded, the refcount on sys.__wxPythonCleanup
3530 # goes to zero and it calls the wxApp_CleanUp function.
3532 class __wxPyCleanup:
3534 self.cleanup = _core.App_CleanUp
3538 _sys.__wxPythonCleanup = __wxPyCleanup()
3540 ## # another possible solution, but it gets called too early...
3541 ## if sys.version[
0] == '
2':
3543 ## atexit.register(_core.wxApp_CleanUp)
3545 ## sys.exitfunc = _core.wxApp_CleanUp
3548 #----------------------------------------------------------------------------
3551 #---------------------------------------------------------------------------
3553 <class name=
"AcceleratorEntry" oldname=
"wxAcceleratorEntry" module=
"core">
3554 <constructor name=
"AcceleratorEntry" overloaded=
"no">
3555 <autodoc>__init__(int flags=
0, int keyCode=
0, int cmd=
0, MenuItem item=None) -
> AcceleratorEntry
</autodoc>
3557 <param name=
"flags" type=
"int" default=
"0"/>
3558 <param name=
"keyCode" type=
"int" default=
"0"/>
3559 <param name=
"cmd" type=
"int" default=
"0"/>
3560 <param name=
"item" type=
"wxMenuItem" default=
"NULL"/>
3563 <destructor name=
"~wxAcceleratorEntry" overloaded=
"no">
3564 <autodoc>__del__()
</autodoc>
3566 <method name=
"Set" type=
"" overloaded=
"no">
3567 <autodoc>Set(int flags, int keyCode, int cmd, MenuItem item=None)
</autodoc>
3569 <param name=
"flags" type=
"int" default=
""/>
3570 <param name=
"keyCode" type=
"int" default=
""/>
3571 <param name=
"cmd" type=
"int" default=
""/>
3572 <param name=
"item" type=
"wxMenuItem" default=
"NULL"/>
3575 <method name=
"SetMenuItem" type=
"" overloaded=
"no">
3576 <autodoc>SetMenuItem(MenuItem item)
</autodoc>
3578 <param name=
"item" type=
"wxMenuItem" default=
""/>
3581 <method name=
"GetMenuItem" type=
"wxMenuItem" overloaded=
"no">
3582 <autodoc>GetMenuItem() -
> MenuItem
</autodoc>
3584 <method name=
"GetFlags" type=
"int" overloaded=
"no">
3585 <autodoc>GetFlags() -
> int
</autodoc>
3587 <method name=
"GetKeyCode" type=
"int" overloaded=
"no">
3588 <autodoc>GetKeyCode() -
> int
</autodoc>
3590 <method name=
"GetCommand" type=
"int" overloaded=
"no">
3591 <autodoc>GetCommand() -
> int
</autodoc>
3594 <class name=
"AcceleratorTable" oldname=
"wxAcceleratorTable" module=
"core">
3595 <baseclass name=
"Object"/>
3596 <constructor name=
"AcceleratorTable" overloaded=
"no">
3597 <autodoc>__init__(entries) -
> AcceleratorTable
</autodoc>
3598 <docstring>Construct an AcceleratorTable from a list of AcceleratorEntry items or
3599 3-tuples (flags, keyCode, cmdID)
</docstring>
3601 <param name=
"n" type=
"int" default=
""/>
3602 <param name=
"entries" type=
"AcceleratorEntry" default=
""/>
3605 <destructor name=
"~wxAcceleratorTable" overloaded=
"no">
3606 <autodoc>__del__()
</autodoc>
3608 <method name=
"Ok" type=
"bool" overloaded=
"no">
3609 <autodoc>Ok() -
> bool
</autodoc>
3612 <method name=
"GetAccelFromString" oldname=
"wxGetAccelFromString" type=
"AcceleratorEntry" overloaded=
"no">
3613 <autodoc>GetAccelFromString(String label) -
> AcceleratorEntry
</autodoc>
3615 <param name=
"label" type=
"String" default=
""/>
3619 #---------------------------------------------------------------------------
3621 <class name=
"Window" oldname=
"wxWindow" module=
"core">
3623 wx.Window is the base class for all windows and represents any visible
3624 object on the screen. All controls, top level windows and so on are
3625 wx.Windows. Sizers and device contexts are not however, as they don't
3626 appear on screen themselves.
3631 wx.SIMPLE_BORDER: Displays a thin border around the window.
3633 wx.DOUBLE_BORDER: Displays a double border. Windows and Mac only.
3635 wx.SUNKEN_BORDER: Displays a sunken border.
3637 wx.RAISED_BORDER: Displays a raised border.
3639 wx.STATIC_BORDER: Displays a border suitable for a static
3640 control. Windows only.
3642 wx.NO_BORDER: Displays no border, overriding the default
3643 border style for the window.
3645 wx.TRANSPARENT_WINDOW: The window is transparent, that is, it
3646 will not receive paint events. Windows only.
3648 wx.TAB_TRAVERSAL: Use this to enable tab traversal for
3651 wx.WANTS_CHARS: Use this to indicate that the window
3652 wants to get all char/key events for
3653 all keys - even for keys like TAB or
3654 ENTER which are usually used for
3655 dialog navigation and which wouldn't
3656 be generated without this style. If
3657 you need to use this style in order to
3658 get the arrows or etc., but would
3659 still like to have normal keyboard
3660 navigation take place, you should
3661 create and send a wxNavigationKeyEvent
3662 in response to the key events for Tab
3665 wx.NO_FULL_REPAINT_ON_RESIZE: Disables repainting the window
3666 completely when its size is changed
3667 - you will have to repaint the new
3668 window area manually if you use this
3669 style. As of version
2.5.1 this
3670 style is on by default. Use
3671 wx.FULL_REPAINT_ON_RESIZE to
3674 wx.VSCROLL: Use this style to enable a vertical scrollbar.
3676 wx.HSCROLL: Use this style to enable a horizontal scrollbar.
3678 wx.ALWAYS_SHOW_SB: If a window has scrollbars, disable them
3679 instead of hiding them when they are
3680 not needed (i.e. when the size of the
3681 window is big enough to not require
3682 the scrollbars to navigate it). This
3683 style is currently only implemented
3684 for wxMSW and wxUniversal and does
3685 nothing on the other platforms.
3687 wx.CLIP_CHILDREN: Use this style to eliminate flicker caused by
3688 the background being repainted, then
3689 children being painted over
3692 wx.FULL_REPAINT_ON_RESIZE: Use this style to force a complete
3693 redraw of the window whenever it is
3694 resized instead of redrawing just the
3695 part of the window affected by
3696 resizing. Note that this was the
3697 behaviour by default before
2.5.1
3698 release and that if you experience
3699 redraw problems with the code which
3700 previously used to work you may want
3705 wx.WS_EX_VALIDATE_RECURSIVELY: By default,
3706 Validate/TransferDataTo/FromWindow()
3707 only work on direct children of
3708 the window (compatible
3709 behaviour). Set this flag to make
3710 them recursively descend into all
3713 wx.WS_EX_BLOCK_EVENTS: wx.CommandEvents and the objects of the
3714 derived classes are forwarded to
3715 the parent window and so on
3716 recursively by default. Using this
3717 flag for the given window allows
3718 to block this propagation at this
3719 window, i.e. prevent the events
3720 from being propagated further
3721 upwards. Dialogs have this flag on
3724 wx.WS_EX_TRANSIENT Don't use this window as an implicit parent for
3725 the other windows: this must be
3726 used with transient windows as
3727 otherwise there is the risk of
3728 creating a dialog/frame with this
3729 window as a parent which would
3730 lead to a crash if the parent is
3731 destroyed before the child.
3733 wx.WS_EX_PROCESS_IDLE: This window should always process idle
3734 events, even if the mode set by
3735 wx.IdleEvent.SetMode is
3736 wx.IDLE_PROCESS_SPECIFIED.
3738 wx.WS_EX_PROCESS_UI_UPDATES This window should always process UI
3739 update events, even if the mode
3740 set by wxUpdateUIEvent::SetMode is
3741 wxUPDATE_UI_PROCESS_SPECIFIED.
3744 <baseclass name=
"EvtHandler"/>
3745 <constructor name=
"Window" overloaded=
"no">
3746 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3747 long style=
0, String name=PanelNameStr) -
> Window
</autodoc>
3748 <docstring>Construct and show a generic Window.
</docstring>
3752 wx.SIMPLE_BORDER: Displays a thin border around the window.
3754 wx.DOUBLE_BORDER: Displays a double border. Windows and Mac only.
3756 wx.SUNKEN_BORDER: Displays a sunken border.
3758 wx.RAISED_BORDER: Displays a raised border.
3760 wx.STATIC_BORDER: Displays a border suitable for a static
3761 control. Windows only.
3763 wx.NO_BORDER: Displays no border, overriding the default
3764 border style for the window.
3766 wx.TRANSPARENT_WINDOW: The window is transparent, that is, it
3767 will not receive paint events. Windows only.
3769 wx.TAB_TRAVERSAL: Use this to enable tab traversal for
3772 wx.WANTS_CHARS: Use this to indicate that the window
3773 wants to get all char/key events for
3774 all keys - even for keys like TAB or
3775 ENTER which are usually used for
3776 dialog navigation and which wouldn't
3777 be generated without this style. If
3778 you need to use this style in order to
3779 get the arrows or etc., but would
3780 still like to have normal keyboard
3781 navigation take place, you should
3782 create and send a wxNavigationKeyEvent
3783 in response to the key events for Tab
3786 wx.NO_FULL_REPAINT_ON_RESIZE: Disables repainting the window
3787 completely when its size is changed
3788 - you will have to repaint the new
3789 window area manually if you use this
3790 style. As of version
2.5.1 this
3791 style is on by default. Use
3792 wx.FULL_REPAINT_ON_RESIZE to
3795 wx.VSCROLL: Use this style to enable a vertical scrollbar.
3797 wx.HSCROLL: Use this style to enable a horizontal scrollbar.
3799 wx.ALWAYS_SHOW_SB: If a window has scrollbars, disable them
3800 instead of hiding them when they are
3801 not needed (i.e. when the size of the
3802 window is big enough to not require
3803 the scrollbars to navigate it). This
3804 style is currently only implemented
3805 for wxMSW and wxUniversal and does
3806 nothing on the other platforms.
3808 wx.CLIP_CHILDREN: Use this style to eliminate flicker caused by
3809 the background being repainted, then
3810 children being painted over
3813 wx.FULL_REPAINT_ON_RESIZE: Use this style to force a complete
3814 redraw of the window whenever it is
3815 resized instead of redrawing just the
3816 part of the window affected by
3817 resizing. Note that this was the
3818 behaviour by default before
2.5.1
3819 release and that if you experience
3820 redraw problems with the code which
3821 previously used to work you may want
3826 wx.WS_EX_VALIDATE_RECURSIVELY: By default,
3827 Validate/TransferDataTo/FromWindow()
3828 only work on direct children of
3829 the window (compatible
3830 behaviour). Set this flag to make
3831 them recursively descend into all
3834 wx.WS_EX_BLOCK_EVENTS: wx.CommandEvents and the objects of the
3835 derived classes are forwarded to
3836 the parent window and so on
3837 recursively by default. Using this
3838 flag for the given window allows
3839 to block this propagation at this
3840 window, i.e. prevent the events
3841 from being propagated further
3842 upwards. Dialogs have this flag on
3845 wx.WS_EX_TRANSIENT Don't use this window as an implicit parent for
3846 the other windows: this must be
3847 used with transient windows as
3848 otherwise there is the risk of
3849 creating a dialog/frame with this
3850 window as a parent which would
3851 lead to a crash if the parent is
3852 destroyed before the child.
3854 wx.WS_EX_PROCESS_IDLE: This window should always process idle
3855 events, even if the mode set by
3856 wx.IdleEvent.SetMode is
3857 wx.IDLE_PROCESS_SPECIFIED.
3859 wx.WS_EX_PROCESS_UI_UPDATES This window should always process UI
3860 update events, even if the mode
3861 set by wxUpdateUIEvent::SetMode is
3862 wxUPDATE_UI_PROCESS_SPECIFIED.
3866 <param name=
"parent" type=
"Window" default=
""/>
3867 <param name=
"id" type=
"int" default=
""/>
3868 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
3869 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
3870 <param name=
"style" type=
"long" default=
"0"/>
3871 <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/>
3874 <constructor name=
"PreWindow" overloaded=
"no">
3875 <autodoc>PreWindow() -
> Window
</autodoc>
3876 <docstring>Precreate a Window for
2-phase creation.
</docstring>
3880 wx.SIMPLE_BORDER: Displays a thin border around the window.
3882 wx.DOUBLE_BORDER: Displays a double border. Windows and Mac only.
3884 wx.SUNKEN_BORDER: Displays a sunken border.
3886 wx.RAISED_BORDER: Displays a raised border.
3888 wx.STATIC_BORDER: Displays a border suitable for a static
3889 control. Windows only.
3891 wx.NO_BORDER: Displays no border, overriding the default
3892 border style for the window.
3894 wx.TRANSPARENT_WINDOW: The window is transparent, that is, it
3895 will not receive paint events. Windows only.
3897 wx.TAB_TRAVERSAL: Use this to enable tab traversal for
3900 wx.WANTS_CHARS: Use this to indicate that the window
3901 wants to get all char/key events for
3902 all keys - even for keys like TAB or
3903 ENTER which are usually used for
3904 dialog navigation and which wouldn't
3905 be generated without this style. If
3906 you need to use this style in order to
3907 get the arrows or etc., but would
3908 still like to have normal keyboard
3909 navigation take place, you should
3910 create and send a wxNavigationKeyEvent
3911 in response to the key events for Tab
3914 wx.NO_FULL_REPAINT_ON_RESIZE: Disables repainting the window
3915 completely when its size is changed
3916 - you will have to repaint the new
3917 window area manually if you use this
3918 style. As of version
2.5.1 this
3919 style is on by default. Use
3920 wx.FULL_REPAINT_ON_RESIZE to
3923 wx.VSCROLL: Use this style to enable a vertical scrollbar.
3925 wx.HSCROLL: Use this style to enable a horizontal scrollbar.
3927 wx.ALWAYS_SHOW_SB: If a window has scrollbars, disable them
3928 instead of hiding them when they are
3929 not needed (i.e. when the size of the
3930 window is big enough to not require
3931 the scrollbars to navigate it). This
3932 style is currently only implemented
3933 for wxMSW and wxUniversal and does
3934 nothing on the other platforms.
3936 wx.CLIP_CHILDREN: Use this style to eliminate flicker caused by
3937 the background being repainted, then
3938 children being painted over
3941 wx.FULL_REPAINT_ON_RESIZE: Use this style to force a complete
3942 redraw of the window whenever it is
3943 resized instead of redrawing just the
3944 part of the window affected by
3945 resizing. Note that this was the
3946 behaviour by default before
2.5.1
3947 release and that if you experience
3948 redraw problems with the code which
3949 previously used to work you may want
3954 wx.WS_EX_VALIDATE_RECURSIVELY: By default,
3955 Validate/TransferDataTo/FromWindow()
3956 only work on direct children of
3957 the window (compatible
3958 behaviour). Set this flag to make
3959 them recursively descend into all
3962 wx.WS_EX_BLOCK_EVENTS: wx.CommandEvents and the objects of the
3963 derived classes are forwarded to
3964 the parent window and so on
3965 recursively by default. Using this
3966 flag for the given window allows
3967 to block this propagation at this
3968 window, i.e. prevent the events
3969 from being propagated further
3970 upwards. Dialogs have this flag on
3973 wx.WS_EX_TRANSIENT Don't use this window as an implicit parent for
3974 the other windows: this must be
3975 used with transient windows as
3976 otherwise there is the risk of
3977 creating a dialog/frame with this
3978 window as a parent which would
3979 lead to a crash if the parent is
3980 destroyed before the child.
3982 wx.WS_EX_PROCESS_IDLE: This window should always process idle
3983 events, even if the mode set by
3984 wx.IdleEvent.SetMode is
3985 wx.IDLE_PROCESS_SPECIFIED.
3987 wx.WS_EX_PROCESS_UI_UPDATES This window should always process UI
3988 update events, even if the mode
3989 set by wxUpdateUIEvent::SetMode is
3990 wxUPDATE_UI_PROCESS_SPECIFIED.
3994 <method name=
"Create" type=
"bool" overloaded=
"no">
3995 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3996 long style=
0, String name=PanelNameStr) -
> bool
</autodoc>
3997 <docstring>Create the GUI part of the Window for
2-phase creation mode.
</docstring>
3999 <param name=
"parent" type=
"Window" default=
""/>
4000 <param name=
"id" type=
"int" default=
""/>
4001 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
4002 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
4003 <param name=
"style" type=
"long" default=
"0"/>
4004 <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/>
4007 <method name=
"Close" type=
"bool" overloaded=
"no">
4008 <autodoc>Close(bool force=False) -
> bool
</autodoc>
4009 <docstring>This function simply generates a EVT_CLOSE event whose handler usually
4010 tries to close the window. It doesn't close the window itself,
4011 however. If force is False (the default) then the window's close
4012 handler will be allowed to veto the destruction of the window.
4014 Usually Close is only used with the top level windows (wx.Frame and
4015 wx.Dialog classes) as the others are not supposed to have any special
4018 The close handler should check whether the window is being deleted
4019 forcibly, using wx.CloseEvent.GetForce, in which case it should
4020 destroy the window using wx.Window.Destroy.
4022 Note that calling Close does not guarantee that the window will be
4023 destroyed; but it provides a way to simulate a manual close of a
4024 window, which may or may not be implemented by destroying the
4025 window. The default EVT_CLOSE handler for wx.Dialog does not
4026 necessarily delete the dialog, since it will simply simulate an
4027 wxID_CANCEL event which is handled by the appropriate button event
4028 handler and may do anything at all.
4030 To guarantee that the window will be destroyed, call wx.Window.Destroy
4031 instead.
</docstring>
4033 <param name=
"force" type=
"bool" default=
"False"/>
4036 <method name=
"Destroy" type=
"bool" overloaded=
"no">
4037 <autodoc>Destroy() -
> bool
</autodoc>
4038 <docstring>Destroys the window safely. Frames and dialogs are not destroyed
4039 immediately when this function is called -- they are added to a list
4040 of windows to be deleted on idle time, when all the window's events
4041 have been processed. This prevents problems with events being sent to
4042 non-existent windows.
4044 Returns True if the window has either been successfully deleted, or it
4045 has been added to the list of windows pending real deletion.
</docstring>
4047 <method name=
"DestroyChildren" type=
"bool" overloaded=
"no">
4048 <autodoc>DestroyChildren() -
> bool
</autodoc>
4049 <docstring>Destroys all children of a window. Called automatically by the destructor.
</docstring>
4051 <method name=
"IsBeingDeleted" type=
"bool" overloaded=
"no">
4052 <autodoc>IsBeingDeleted() -
> bool
</autodoc>
4053 <docstring>Is the window in the process of being deleted?
</docstring>
4055 <method name=
"SetTitle" type=
"" overloaded=
"no">
4056 <autodoc>SetTitle(String title)
</autodoc>
4057 <docstring>Sets the window's title. Applicable only to frames and dialogs.
</docstring>
4059 <param name=
"title" type=
"String" default=
""/>
4062 <method name=
"GetTitle" type=
"String" overloaded=
"no">
4063 <autodoc>GetTitle() -
> String
</autodoc>
4064 <docstring>Gets the window's title. Applicable only to frames and dialogs.
</docstring>
4066 <method name=
"SetLabel" type=
"" overloaded=
"no">
4067 <autodoc>SetLabel(String label)
</autodoc>
4068 <docstring>Set the text which the window shows in its label if applicable.
</docstring>
4070 <param name=
"label" type=
"String" default=
""/>
4073 <method name=
"GetLabel" type=
"String" overloaded=
"no">
4074 <autodoc>GetLabel() -
> String
</autodoc>
4075 <docstring>Generic way of getting a label from any window, for
4076 identification purposes. The interpretation of this function
4077 differs from class to class. For frames and dialogs, the value
4078 returned is the title. For buttons or static text controls, it is
4079 the button text. This function can be useful for meta-programs
4080 (such as testing tools or special-needs access programs) which
4081 need to identify windows by name.
</docstring>
4083 <method name=
"SetName" type=
"" overloaded=
"no">
4084 <autodoc>SetName(String name)
</autodoc>
4085 <docstring>Sets the window's name. The window name is used for ressource
4086 setting in X, it is not the same as the window title/label
</docstring>
4088 <param name=
"name" type=
"String" default=
""/>
4091 <method name=
"GetName" type=
"String" overloaded=
"no">
4092 <autodoc>GetName() -
> String
</autodoc>
4093 <docstring>Returns the window's name. This name is not guaranteed to be
4094 unique; it is up to the programmer to supply an appropriate name
4095 in the window constructor or via wx.Window.SetName.
</docstring>
4097 <method name=
"SetWindowVariant" type=
"" overloaded=
"no">
4098 <autodoc>SetWindowVariant(int variant)
</autodoc>
4099 <docstring>Sets the variant of the window/font size to use for this window,
4100 if the platform supports variants, (for example, wxMac.)
</docstring>
4102 <param name=
"variant" type=
"wxWindowVariant" default=
""/>
4105 <method name=
"GetWindowVariant" type=
"wxWindowVariant" overloaded=
"no">
4106 <autodoc>GetWindowVariant() -
> int
</autodoc>
4108 <method name=
"SetId" type=
"" overloaded=
"no">
4109 <autodoc>SetId(int winid)
</autodoc>
4110 <docstring>Sets the identifier of the window. Each window has an integer
4111 identifier. If the application has not provided one, an identifier
4112 will be generated. Normally, the identifier should be provided on
4113 creation and should not be modified subsequently.
</docstring>
4115 <param name=
"winid" type=
"int" default=
""/>
4118 <method name=
"GetId" type=
"int" overloaded=
"no">
4119 <autodoc>GetId() -
> int
</autodoc>
4120 <docstring>Returns the identifier of the window. Each window has an integer
4121 identifier. If the application has not provided one (or the default Id
4122 -
1 is used) then an unique identifier with a negative value will be
4123 generated.
</docstring>
4125 <staticmethod name=
"NewControlId" type=
"int" overloaded=
"no">
4126 <autodoc>NewControlId() -
> int
</autodoc>
4127 <docstring>Generate a control id for the controls which were not given one.
</docstring>
4129 <staticmethod name=
"NextControlId" type=
"int" overloaded=
"no">
4130 <autodoc>NextControlId(int winid) -
> int
</autodoc>
4131 <docstring>Get the id of the control following the one with the given
4132 (autogenerated) id
</docstring>
4134 <param name=
"winid" type=
"int" default=
""/>
4137 <staticmethod name=
"PrevControlId" type=
"int" overloaded=
"no">
4138 <autodoc>PrevControlId(int winid) -
> int
</autodoc>
4139 <docstring>Get the id of the control preceding the one with the given
4140 (autogenerated) id
</docstring>
4142 <param name=
"winid" type=
"int" default=
""/>
4145 <method name=
"SetSize" type=
"" overloaded=
"no">
4146 <autodoc>SetSize(Size size)
</autodoc>
4147 <docstring>Sets the size of the window in pixels.
</docstring>
4149 <param name=
"size" type=
"Size" default=
""/>
4152 <method name=
"SetDimensions" type=
"" overloaded=
"no">
4153 <autodoc>SetDimensions(int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)
</autodoc>
4154 <docstring>Sets the position and size of the window in pixels. The sizeFlags
4155 parameter indicates the interpretation of the other params if they are
4156 -
1. wx.SIZE_AUTO*: a -
1 indicates that a class-specific default
4157 shoudl be used. wx.SIZE_USE_EXISTING: existing dimensions should be
4158 used if -
1 values are supplied. wxSIZE_ALLOW_MINUS_ONE: allow
4159 dimensions of -
1 and less to be interpreted as real dimensions, not
4160 default values.
</docstring>
4162 <param name=
"x" type=
"int" default=
""/>
4163 <param name=
"y" type=
"int" default=
""/>
4164 <param name=
"width" type=
"int" default=
""/>
4165 <param name=
"height" type=
"int" default=
""/>
4166 <param name=
"sizeFlags" type=
"int" default=
"wxSIZE_AUTO"/>
4169 <method name=
"SetRect" type=
"" overloaded=
"no">
4170 <autodoc>SetRect(Rect rect, int sizeFlags=SIZE_AUTO)
</autodoc>
4171 <docstring>Sets the position and size of the window in pixels using a wx.Rect.
</docstring>
4173 <param name=
"rect" type=
"Rect" default=
""/>
4174 <param name=
"sizeFlags" type=
"int" default=
"wxSIZE_AUTO"/>
4177 <method name=
"SetSizeWH" type=
"" overloaded=
"no">
4178 <autodoc>SetSizeWH(int width, int height)
</autodoc>
4179 <docstring>Sets the size of the window in pixels.
</docstring>
4181 <param name=
"width" type=
"int" default=
""/>
4182 <param name=
"height" type=
"int" default=
""/>
4185 <method name=
"Move" type=
"" overloaded=
"no">
4186 <autodoc>Move(Point pt, int flags=SIZE_USE_EXISTING)
</autodoc>
4187 <docstring>Moves the window to the given position.
</docstring>
4189 <param name=
"pt" type=
"Point" default=
""/>
4190 <param name=
"flags" type=
"int" default=
"wxSIZE_USE_EXISTING"/>
4193 <method name=
"MoveXY" type=
"" overloaded=
"no">
4194 <autodoc>MoveXY(int x, int y, int flags=SIZE_USE_EXISTING)
</autodoc>
4195 <docstring>Moves the window to the given position.
</docstring>
4197 <param name=
"x" type=
"int" default=
""/>
4198 <param name=
"y" type=
"int" default=
""/>
4199 <param name=
"flags" type=
"int" default=
"wxSIZE_USE_EXISTING"/>
4202 <method name=
"Raise" type=
"" overloaded=
"no">
4203 <autodoc>Raise()
</autodoc>
4204 <docstring>Raises the window to the top of the window hierarchy if it is a
4205 managed window (dialog or frame).
</docstring>
4207 <method name=
"Lower" type=
"" overloaded=
"no">
4208 <autodoc>Lower()
</autodoc>
4209 <docstring>Lowers the window to the bottom of the window hierarchy if it is a
4210 managed window (dialog or frame).
</docstring>
4212 <method name=
"SetClientSize" type=
"" overloaded=
"no">
4213 <autodoc>SetClientSize(Size size)
</autodoc>
4214 <docstring>This sets the size of the window client area in pixels. Using this
4215 function to size a window tends to be more device-independent than
4216 wx.Window.SetSize, since the application need not worry about what
4217 dimensions the border or title bar have when trying to fit the window
4218 around panel items, for example.
</docstring>
4220 <param name=
"size" type=
"Size" default=
""/>
4223 <method name=
"SetClientSizeWH" type=
"" overloaded=
"no">
4224 <autodoc>SetClientSizeWH(int width, int height)
</autodoc>
4225 <docstring>This sets the size of the window client area in pixels. Using this
4226 function to size a window tends to be more device-independent than
4227 wx.Window.SetSize, since the application need not worry about what
4228 dimensions the border or title bar have when trying to fit the window
4229 around panel items, for example.
</docstring>
4231 <param name=
"width" type=
"int" default=
""/>
4232 <param name=
"height" type=
"int" default=
""/>
4235 <method name=
"SetClientRect" type=
"" overloaded=
"no">
4236 <autodoc>SetClientRect(Rect rect)
</autodoc>
4237 <docstring>This sets the size of the window client area in pixels. Using this
4238 function to size a window tends to be more device-independent than
4239 wx.Window.SetSize, since the application need not worry about what
4240 dimensions the border or title bar have when trying to fit the window
4241 around panel items, for example.
</docstring>
4243 <param name=
"rect" type=
"Rect" default=
""/>
4246 <method name=
"GetPosition" type=
"Point" overloaded=
"no">
4247 <autodoc>GetPosition() -
> Point
</autodoc>
4248 <docstring>Get the window's position.
</docstring>
4250 <method name=
"GetPositionTuple" type=
"" overloaded=
"no">
4251 <autodoc>GetPositionTuple() -
> (x,y)
</autodoc>
4252 <docstring>Get the window's position.
</docstring>
4254 <param name=
"OUTPUT" type=
"int" default=
""/>
4255 <param name=
"OUTPUT" type=
"int" default=
""/>
4258 <method name=
"GetSize" type=
"Size" overloaded=
"no">
4259 <autodoc>GetSize() -
> Size
</autodoc>
4260 <docstring>Get the window size.
</docstring>
4262 <method name=
"GetSizeTuple" type=
"" overloaded=
"no">
4263 <autodoc>GetSizeTuple() -
> (width, height)
</autodoc>
4264 <docstring>Get the window size.
</docstring>
4266 <param name=
"OUTPUT" type=
"int" default=
""/>
4267 <param name=
"OUTPUT" type=
"int" default=
""/>
4270 <method name=
"GetRect" type=
"Rect" overloaded=
"no">
4271 <autodoc>GetRect() -
> Rect
</autodoc>
4272 <docstring>Returns the size and position of the window as a wx.Rect object.
</docstring>
4274 <method name=
"GetClientSize" type=
"Size" overloaded=
"no">
4275 <autodoc>GetClientSize() -
> Size
</autodoc>
4276 <docstring>This gets the size of the window's 'client area' in pixels. The client
4277 area is the area which may be drawn on by the programmer, excluding
4278 title bar, border, scrollbars, etc.
</docstring>
4280 <method name=
"GetClientSizeTuple" type=
"" overloaded=
"no">
4281 <autodoc>GetClientSizeTuple() -
> (width, height)
</autodoc>
4282 <docstring>This gets the size of the window's 'client area' in pixels. The client
4283 area is the area which may be drawn on by the programmer, excluding
4284 title bar, border, scrollbars, etc.
</docstring>
4286 <param name=
"OUTPUT" type=
"int" default=
""/>
4287 <param name=
"OUTPUT" type=
"int" default=
""/>
4290 <method name=
"GetClientAreaOrigin" type=
"Point" overloaded=
"no">
4291 <autodoc>GetClientAreaOrigin() -
> Point
</autodoc>
4292 <docstring>Get the origin of the client area of the window relative to the
4293 window's top left corner (the client area may be shifted because of
4294 the borders, scrollbars, other decorations...)
</docstring>
4296 <method name=
"GetClientRect" type=
"Rect" overloaded=
"no">
4297 <autodoc>GetClientRect() -
> Rect
</autodoc>
4298 <docstring>Get the client area position and size as a wx.Rect object.
</docstring>
4300 <method name=
"GetBestSize" type=
"Size" overloaded=
"no">
4301 <autodoc>GetBestSize() -
> Size
</autodoc>
4302 <docstring>This functions returns the best acceptable minimal size for the
4303 window, if applicable. For example, for a static text control, it will be
4304 the minimal size such that the control label is not truncated. For
4305 windows containing subwindows (suzh aswx.Panel), the size returned
4306 by this function will be the same as the size the window would have
4307 had after calling Fit.
</docstring>
4309 <method name=
"GetBestSizeTuple" type=
"" overloaded=
"no">
4310 <autodoc>GetBestSizeTuple() -
> (width, height)
</autodoc>
4311 <docstring>This functions returns the best acceptable minimal size for the
4312 window, if applicable. For example, for a static text control, it will be
4313 the minimal size such that the control label is not truncated. For
4314 windows containing subwindows (suzh aswx.Panel), the size returned
4315 by this function will be the same as the size the window would have
4316 had after calling Fit.
</docstring>
4318 <param name=
"OUTPUT" type=
"int" default=
""/>
4319 <param name=
"OUTPUT" type=
"int" default=
""/>
4322 <method name=
"GetAdjustedBestSize" type=
"Size" overloaded=
"no">
4323 <autodoc>GetAdjustedBestSize() -
> Size
</autodoc>
4324 <docstring>This method is similar to GetBestSize, except in one
4325 thing. GetBestSize should return the minimum untruncated size of the
4326 window, while this method will return the largest of BestSize and any
4327 user specified minimum size. ie. it is the minimum size the window
4328 should currently be drawn at, not the minimal size it can possibly
4329 tolerate.
</docstring>
4331 <method name=
"Center" type=
"" overloaded=
"no">
4332 <autodoc>Center(int direction=BOTH)
</autodoc>
4333 <docstring>Centers the window. The parameter specifies the direction for
4334 cetering, and may be wx.HORIZONTAL, wx.VERTICAL or wx.BOTH. It may
4335 also include wx.CENTER_ON_SCREEN flag if you want to center the window
4336 on the entire screen and not on its parent window. If it is a
4337 top-level window and has no parent then it will always be centered
4338 relative to the screen.
</docstring>
4340 <param name=
"direction" type=
"int" default=
"wxBOTH"/>
4343 <method name=
"CenterOnScreen" type=
"" overloaded=
"no">
4344 <autodoc>CenterOnScreen(int dir=BOTH)
</autodoc>
4345 <docstring>Center on screen (only works for top level windows)
</docstring>
4347 <param name=
"dir" type=
"int" default=
"wxBOTH"/>
4350 <method name=
"CenterOnParent" type=
"" overloaded=
"no">
4351 <autodoc>CenterOnParent(int dir=BOTH)
</autodoc>
4352 <docstring>Center with respect to the the parent window
</docstring>
4354 <param name=
"dir" type=
"int" default=
"wxBOTH"/>
4357 <method name=
"Fit" type=
"" overloaded=
"no">
4358 <autodoc>Fit()
</autodoc>
4359 <docstring>Sizes the window so that it fits around its subwindows. This function
4360 won't do anything if there are no subwindows and will only really work
4361 correctly if sizers are used for the subwindows layout. Also, if the
4362 window has exactly one subwindow it is better (faster and the result
4363 is more precise as Fit adds some margin to account for fuzziness of
4364 its calculations) to call window.SetClientSize(child.GetSize())
4365 instead of calling Fit.
</docstring>
4367 <method name=
"FitInside" type=
"" overloaded=
"no">
4368 <autodoc>FitInside()
</autodoc>
4369 <docstring>Similar to Fit, but sizes the interior (virtual) size of a
4370 window. Mainly useful with scrolled windows to reset scrollbars after
4371 sizing changes that do not trigger a size event, and/or scrolled
4372 windows without an interior sizer. This function similarly won't do
4373 anything if there are no subwindows.
</docstring>
4375 <method name=
"SetSizeHints" type=
"" overloaded=
"no">
4376 <autodoc>SetSizeHints(int minW, int minH, int maxW=-
1, int maxH=-
1, int incW=-
1,
4377 int incH=-
1)
</autodoc>
4378 <docstring>Allows specification of minimum and maximum window sizes, and window
4379 size increments. If a pair of values is not set (or set to -
1), the
4380 default values will be used. If this function is called, the user
4381 will not be able to size the window outside the given bounds. The
4382 resizing increments are only significant under Motif or Xt.
</docstring>
4384 <param name=
"minW" type=
"int" default=
""/>
4385 <param name=
"minH" type=
"int" default=
""/>
4386 <param name=
"maxW" type=
"int" default=
"-1"/>
4387 <param name=
"maxH" type=
"int" default=
"-1"/>
4388 <param name=
"incW" type=
"int" default=
"-1"/>
4389 <param name=
"incH" type=
"int" default=
"-1"/>
4392 <method name=
"SetVirtualSizeHints" type=
"" overloaded=
"no">
4393 <autodoc>SetVirtualSizeHints(int minW, int minH, int maxW=-
1, int maxH=-
1)
</autodoc>
4394 <docstring>Allows specification of minimum and maximum virtual window sizes. If a
4395 pair of values is not set (or set to -
1), the default values will be
4396 used. If this function is called, the user will not be able to size
4397 the virtual area of the window outside the given bounds.
</docstring>
4399 <param name=
"minW" type=
"int" default=
""/>
4400 <param name=
"minH" type=
"int" default=
""/>
4401 <param name=
"maxW" type=
"int" default=
"-1"/>
4402 <param name=
"maxH" type=
"int" default=
"-1"/>
4405 <method name=
"GetMinWidth" type=
"int" overloaded=
"no">
4406 <autodoc>GetMinWidth() -
> int
</autodoc>
4408 <method name=
"GetMinHeight" type=
"int" overloaded=
"no">
4409 <autodoc>GetMinHeight() -
> int
</autodoc>
4411 <method name=
"GetMaxWidth" type=
"int" overloaded=
"no">
4412 <autodoc>GetMaxWidth() -
> int
</autodoc>
4414 <method name=
"GetMaxHeight" type=
"int" overloaded=
"no">
4415 <autodoc>GetMaxHeight() -
> int
</autodoc>
4417 <method name=
"GetMaxSize" type=
"Size" overloaded=
"no">
4418 <autodoc>GetMaxSize() -
> Size
</autodoc>
4420 <method name=
"SetVirtualSize" type=
"" overloaded=
"no">
4421 <autodoc>SetVirtualSize(Size size)
</autodoc>
4422 <docstring>Set the the virtual size of a window in pixels. For most windows this
4423 is just the client area of the window, but for some like scrolled
4424 windows it is more or less independent of the screen window size.
</docstring>
4426 <param name=
"size" type=
"Size" default=
""/>
4429 <method name=
"SetVirtualSizeWH" type=
"" overloaded=
"no">
4430 <autodoc>SetVirtualSizeWH(int w, int h)
</autodoc>
4431 <docstring>Set the the virtual size of a window in pixels. For most windows this
4432 is just the client area of the window, but for some like scrolled
4433 windows it is more or less independent of the screen window size.
</docstring>
4435 <param name=
"w" type=
"int" default=
""/>
4436 <param name=
"h" type=
"int" default=
""/>
4439 <method name=
"GetVirtualSize" type=
"Size" overloaded=
"no">
4440 <autodoc>GetVirtualSize() -
> Size
</autodoc>
4441 <docstring>Get the the virtual size of the window in pixels. For most windows
4442 this is just the client area of the window, but for some like scrolled
4443 windows it is more or less independent of the screen window size.
</docstring>
4445 <method name=
"GetVirtualSizeTuple" type=
"" overloaded=
"no">
4446 <autodoc>GetVirtualSizeTuple() -
> (width, height)
</autodoc>
4447 <docstring>Get the the virtual size of the window in pixels. For most windows
4448 this is just the client area of the window, but for some like scrolled
4449 windows it is more or less independent of the screen window size.
</docstring>
4451 <param name=
"OUTPUT" type=
"int" default=
""/>
4452 <param name=
"OUTPUT" type=
"int" default=
""/>
4455 <method name=
"GetBestVirtualSize" type=
"Size" overloaded=
"no">
4456 <autodoc>GetBestVirtualSize() -
> Size
</autodoc>
4457 <docstring>Return the largest of ClientSize and BestSize (as determined by a
4458 sizer, interior children, or other means)
</docstring>
4460 <method name=
"Show" type=
"bool" overloaded=
"no">
4461 <autodoc>Show(bool show=True) -
> bool
</autodoc>
4462 <docstring>Shows or hides the window. You may need to call Raise for a top level
4463 window if you want to bring it to top, although this is not needed if
4464 Show is called immediately after the frame creation. Returns True if
4465 the window has been shown or hidden or False if nothing was done
4466 because it already was in the requested state.
</docstring>
4468 <param name=
"show" type=
"bool" default=
"True"/>
4471 <method name=
"Hide" type=
"bool" overloaded=
"no">
4472 <autodoc>Hide() -
> bool
</autodoc>
4473 <docstring>Equivalent to calling Show(False).
</docstring>
4475 <method name=
"Enable" type=
"bool" overloaded=
"no">
4476 <autodoc>Enable(bool enable=True) -
> bool
</autodoc>
4477 <docstring>Enable or disable the window for user input. Note that when a parent
4478 window is disabled, all of its children are disabled as well and they
4479 are reenabled again when the parent is. Returns true if the window
4480 has been enabled or disabled, false if nothing was done, i.e. if the
4481 window had already been in the specified state.
</docstring>
4483 <param name=
"enable" type=
"bool" default=
"True"/>
4486 <method name=
"Disable" type=
"bool" overloaded=
"no">
4487 <autodoc>Disable() -
> bool
</autodoc>
4488 <docstring>Disables the window, same as Enable(false).
</docstring>
4490 <method name=
"IsShown" type=
"bool" overloaded=
"no">
4491 <autodoc>IsShown() -
> bool
</autodoc>
4492 <docstring>Returns true if the window is shown, false if it has been hidden.
</docstring>
4494 <method name=
"IsEnabled" type=
"bool" overloaded=
"no">
4495 <autodoc>IsEnabled() -
> bool
</autodoc>
4496 <docstring>Returns true if the window is enabled for input, false otherwise.
</docstring>
4498 <method name=
"SetWindowStyleFlag" type=
"" overloaded=
"no">
4499 <autodoc>SetWindowStyleFlag(long style)
</autodoc>
4500 <docstring>Sets the style of the window. Please note that some styles cannot be
4501 changed after the window creation and that Refresh() might be called
4502 after changing the others for the change to take place immediately.
</docstring>
4504 <param name=
"style" type=
"long" default=
""/>
4507 <method name=
"GetWindowStyleFlag" type=
"long" overloaded=
"no">
4508 <autodoc>GetWindowStyleFlag() -
> long
</autodoc>
4509 <docstring>Gets the window style that was passed to the constructor or Create
4512 <method name=
"HasFlag" type=
"bool" overloaded=
"no">
4513 <autodoc>HasFlag(int flag) -
> bool
</autodoc>
4514 <docstring>Test if the given style is set for this window.
</docstring>
4516 <param name=
"flag" type=
"int" default=
""/>
4519 <method name=
"IsRetained" type=
"bool" overloaded=
"no">
4520 <autodoc>IsRetained() -
> bool
</autodoc>
4521 <docstring>Returns true if the window is retained, false otherwise. Retained
4522 windows are only available on X platforms.
</docstring>
4524 <method name=
"SetExtraStyle" type=
"" overloaded=
"no">
4525 <autodoc>SetExtraStyle(long exStyle)
</autodoc>
4526 <docstring>Sets the extra style bits for the window. Extra styles are the less
4527 often used style bits which can't be set with the constructor or with
4528 SetWindowStyleFlag()
</docstring>
4530 <param name=
"exStyle" type=
"long" default=
""/>
4533 <method name=
"GetExtraStyle" type=
"long" overloaded=
"no">
4534 <autodoc>GetExtraStyle() -
> long
</autodoc>
4535 <docstring>Returns the extra style bits for the window.
</docstring>
4537 <method name=
"MakeModal" type=
"" overloaded=
"no">
4538 <autodoc>MakeModal(bool modal=True)
</autodoc>
4539 <docstring>Disables all other windows in the application so that the user can
4540 only interact with this window. Passing False will reverse this
4543 <param name=
"modal" type=
"bool" default=
"True"/>
4546 <method name=
"SetThemeEnabled" type=
"" overloaded=
"no">
4547 <autodoc>SetThemeEnabled(bool enableTheme)
</autodoc>
4548 <docstring>This function tells a window if it should use the system's "theme"
4549 code to draw the windows' background instead if its own background
4550 drawing code. This will only have an effect on platforms that support
4551 the notion of themes in user defined windows. One such platform is
4552 GTK+ where windows can have (very colourful) backgrounds defined by a
4553 user's selected theme.
4555 Dialogs, notebook pages and the status bar have this flag set to true
4556 by default so that the default look and feel is simulated best.
</docstring>
4558 <param name=
"enableTheme" type=
"bool" default=
""/>
4561 <method name=
"GetThemeEnabled" type=
"bool" overloaded=
"no">
4562 <autodoc>GetThemeEnabled() -
> bool
</autodoc>
4563 <docstring>Return the themeEnabled flag.
</docstring>
4565 <method name=
"SetFocus" type=
"" overloaded=
"no">
4566 <autodoc>SetFocus()
</autodoc>
4567 <docstring>Set's the focus to this window, allowing it to receive keyboard input.
</docstring>
4569 <method name=
"SetFocusFromKbd" type=
"" overloaded=
"no">
4570 <autodoc>SetFocusFromKbd()
</autodoc>
4571 <docstring>Set focus to this window as the result of a keyboard action. Normally
4572 only called internally.
</docstring>
4574 <staticmethod name=
"FindFocus" type=
"Window" overloaded=
"no">
4575 <autodoc>FindFocus() -
> Window
</autodoc>
4576 <docstring>Returns the window or control that currently has the keyboard focus,
4577 or None.
</docstring>
4579 <method name=
"AcceptsFocus" type=
"bool" overloaded=
"no">
4580 <autodoc>AcceptsFocus() -
> bool
</autodoc>
4581 <docstring>Can this window have focus?
</docstring>
4583 <method name=
"AcceptsFocusFromKeyboard" type=
"bool" overloaded=
"no">
4584 <autodoc>AcceptsFocusFromKeyboard() -
> bool
</autodoc>
4585 <docstring>Can this window be given focus by keyboard navigation? if not, the
4586 only way to give it focus (provided it accepts it at all) is to click
4589 <method name=
"GetDefaultItem" type=
"Window" overloaded=
"no">
4590 <autodoc>GetDefaultItem() -
> Window
</autodoc>
4591 <docstring>Get the default child of this parent, i.e. the one which is activated
4592 by pressing
<Enter
> such as the OK button on a wx.Dialog.
</docstring>
4594 <method name=
"SetDefaultItem" type=
"Window" overloaded=
"no">
4595 <autodoc>SetDefaultItem(Window child) -
> Window
</autodoc>
4596 <docstring>Set this child as default, return the old default.
</docstring>
4598 <param name=
"child" type=
"Window" default=
""/>
4601 <method name=
"SetTmpDefaultItem" type=
"" overloaded=
"no">
4602 <autodoc>SetTmpDefaultItem(Window win)
</autodoc>
4603 <docstring>Set this child as temporary default
</docstring>
4605 <param name=
"win" type=
"Window" default=
""/>
4608 <method name=
"GetChildren" type=
"PyObject" overloaded=
"no">
4609 <autodoc>GetChildren() -
> PyObject
</autodoc>
4610 <docstring>Returns a list of the window's children. NOTE: Currently this is a
4611 copy of the child window list maintained by the window, so the return
4612 value of this function is only valid as long as the window's children
4613 do not change.
</docstring>
4615 <method name=
"GetParent" type=
"Window" overloaded=
"no">
4616 <autodoc>GetParent() -
> Window
</autodoc>
4617 <docstring>Returns the parent window of this window, or None if there isn't one.
</docstring>
4619 <method name=
"GetGrandParent" type=
"Window" overloaded=
"no">
4620 <autodoc>GetGrandParent() -
> Window
</autodoc>
4621 <docstring>Returns the parent of the parent of this window, or None if there isn't one.
</docstring>
4623 <method name=
"IsTopLevel" type=
"bool" overloaded=
"no">
4624 <autodoc>IsTopLevel() -
> bool
</autodoc>
4625 <docstring>Returns true if the given window is a top-level one. Currently all
4626 frames and dialogs are always considered to be top-level windows (even
4627 if they have a parent window).
</docstring>
4629 <method name=
"Reparent" type=
"bool" overloaded=
"no">
4630 <autodoc>Reparent(Window newParent) -
> bool
</autodoc>
4631 <docstring>Reparents the window, i.e the window will be removed from its current
4632 parent window (e.g. a non-standard toolbar in a wxFrame) and then
4633 re-inserted into another. Available on Windows and GTK. Returns True
4634 if the parent was changed, False otherwise (error or newParent ==
4635 oldParent)
</docstring>
4637 <param name=
"newParent" type=
"Window" default=
""/>
4640 <method name=
"AddChild" type=
"" overloaded=
"no">
4641 <autodoc>AddChild(Window child)
</autodoc>
4642 <docstring>Adds a child window. This is called automatically by window creation
4643 functions so should not be required by the application programmer.
</docstring>
4645 <param name=
"child" type=
"Window" default=
""/>
4648 <method name=
"RemoveChild" type=
"" overloaded=
"no">
4649 <autodoc>RemoveChild(Window child)
</autodoc>
4650 <docstring>Removes a child window. This is called automatically by window
4651 deletion functions so should not be required by the application
4652 programmer.
</docstring>
4654 <param name=
"child" type=
"Window" default=
""/>
4657 <method name=
"FindWindowById" type=
"Window" overloaded=
"no">
4658 <autodoc>FindWindowById(long winid) -
> Window
</autodoc>
4659 <docstring>Find a chld of this window by window ID
</docstring>
4661 <param name=
"winid" type=
"long" default=
""/>
4664 <method name=
"FindWindowByName" type=
"Window" overloaded=
"no">
4665 <autodoc>FindWindowByName(String name) -
> Window
</autodoc>
4666 <docstring>Find a child of this window by name
</docstring>
4668 <param name=
"name" type=
"String" default=
""/>
4671 <method name=
"GetEventHandler" type=
"EvtHandler" overloaded=
"no">
4672 <autodoc>GetEventHandler() -
> EvtHandler
</autodoc>
4673 <docstring>Returns the event handler for this window. By default, the window is
4674 its own event handler.
</docstring>
4676 <method name=
"SetEventHandler" type=
"" overloaded=
"no">
4677 <autodoc>SetEventHandler(EvtHandler handler)
</autodoc>
4678 <docstring>Sets the event handler for this window. An event handler is an object
4679 that is capable of processing the events sent to a window. By default,
4680 the window is its own event handler, but an application may wish to
4681 substitute another, for example to allow central implementation of
4682 event-handling for a variety of different window classes.
4684 It is usually better to use wx.Window.PushEventHandler since this sets
4685 up a chain of event handlers, where an event not handled by one event
4686 handler is handed to the next one in the chain.
</docstring>
4688 <param name=
"handler" type=
"EvtHandler" default=
""/>
4691 <method name=
"PushEventHandler" type=
"" overloaded=
"no">
4692 <autodoc>PushEventHandler(EvtHandler handler)
</autodoc>
4693 <docstring>Pushes this event handler onto the event handler stack for the window.
4694 An event handler is an object that is capable of processing the events
4695 sent to a window. By default, the window is its own event handler, but
4696 an application may wish to substitute another, for example to allow
4697 central implementation of event-handling for a variety of different
4700 wx.Window.PushEventHandler allows an application to set up a chain of
4701 event handlers, where an event not handled by one event handler is
4702 handed to the next one in the chain. Use wx.Window.PopEventHandler to
4703 remove the event handler.
</docstring>
4705 <param name=
"handler" type=
"EvtHandler" default=
""/>
4708 <method name=
"PopEventHandler" type=
"EvtHandler" overloaded=
"no">
4709 <autodoc>PopEventHandler(bool deleteHandler=False) -
> EvtHandler
</autodoc>
4710 <docstring>Removes and returns the top-most event handler on the event handler
4711 stack. If deleteHandler is True then the wx.EvtHandler object will be
4712 destroyed after it is popped.
</docstring>
4714 <param name=
"deleteHandler" type=
"bool" default=
"False"/>
4717 <method name=
"RemoveEventHandler" type=
"bool" overloaded=
"no">
4718 <autodoc>RemoveEventHandler(EvtHandler handler) -
> bool
</autodoc>
4719 <docstring>Find the given handler in the event handler chain and remove (but
4720 not delete) it from the event handler chain, return True if it was
4721 found and False otherwise (this also results in an assert failure so
4722 this function should only be called when the handler is supposed to
4723 be there.)
</docstring>
4725 <param name=
"handler" type=
"EvtHandler" default=
""/>
4728 <method name=
"SetValidator" type=
"" overloaded=
"no">
4729 <autodoc>SetValidator(Validator validator)
</autodoc>
4730 <docstring>Deletes the current validator (if any) and sets the window validator,
4731 having called wx.Validator.Clone to create a new validator of this
4734 <param name=
"validator" type=
"wxValidator" default=
""/>
4737 <method name=
"GetValidator" type=
"wxValidator" overloaded=
"no">
4738 <autodoc>GetValidator() -
> Validator
</autodoc>
4739 <docstring>Returns a pointer to the current validator for the window, or None if
4740 there is none.
</docstring>
4742 <method name=
"SetAcceleratorTable" type=
"" overloaded=
"no">
4743 <autodoc>SetAcceleratorTable(AcceleratorTable accel)
</autodoc>
4744 <docstring>Sets the accelerator table for this window.
</docstring>
4746 <param name=
"accel" type=
"AcceleratorTable" default=
""/>
4749 <method name=
"GetAcceleratorTable" type=
"AcceleratorTable" overloaded=
"no">
4750 <autodoc>GetAcceleratorTable() -
> AcceleratorTable
</autodoc>
4751 <docstring>Gets the accelerator table for this window.
</docstring>
4753 <method name=
"RegisterHotKey" type=
"bool" overloaded=
"no">
4754 <autodoc>RegisterHotKey(int hotkeyId, int modifiers, int keycode) -
> bool
</autodoc>
4755 <docstring>Registers a system wide hotkey. Every time the user presses the hotkey
4756 registered here, this window will receive a hotkey event. It will
4757 receive the event even if the application is in the background and
4758 does not have the input focus because the user is working with some
4759 other application. To bind an event handler function to this hotkey
4760 use EVT_HOTKEY with an id equal to hotkeyId. Returns True if the
4761 hotkey was registered successfully.
</docstring>
4763 <param name=
"hotkeyId" type=
"int" default=
""/>
4764 <param name=
"modifiers" type=
"int" default=
""/>
4765 <param name=
"keycode" type=
"int" default=
""/>
4768 <method name=
"UnregisterHotKey" type=
"bool" overloaded=
"no">
4769 <autodoc>UnregisterHotKey(int hotkeyId) -
> bool
</autodoc>
4770 <docstring>Unregisters a system wide hotkey.
</docstring>
4772 <param name=
"hotkeyId" type=
"int" default=
""/>
4775 <method name=
"ConvertDialogPointToPixels" type=
"Point" overloaded=
"no">
4776 <autodoc>ConvertDialogPointToPixels(Point pt) -
> Point
</autodoc>
4777 <docstring>Converts a point or size from dialog units to pixels. Dialog units
4778 are used for maintaining a dialog's proportions even if the font
4779 changes. For the x dimension, the dialog units are multiplied by the
4780 average character width and then divided by
4. For the y dimension,
4781 the dialog units are multiplied by the average character height and
4782 then divided by
8.
</docstring>
4784 <param name=
"pt" type=
"Point" default=
""/>
4787 <method name=
"ConvertDialogSizeToPixels" type=
"Size" overloaded=
"no">
4788 <autodoc>ConvertDialogSizeToPixels(Size sz) -
> Size
</autodoc>
4789 <docstring>Converts a point or size from dialog units to pixels. Dialog units
4790 are used for maintaining a dialog's proportions even if the font
4791 changes. For the x dimension, the dialog units are multiplied by the
4792 average character width and then divided by
4. For the y dimension,
4793 the dialog units are multiplied by the average character height and
4794 then divided by
8.
</docstring>
4796 <param name=
"sz" type=
"Size" default=
""/>
4799 <method name=
"DLG_PNT" type=
"Point" overloaded=
"no">
4800 <autodoc>DLG_PNT(Point pt) -
> Point
</autodoc>
4801 <docstring>Converts a point or size from dialog units to pixels. Dialog units
4802 are used for maintaining a dialog's proportions even if the font
4803 changes. For the x dimension, the dialog units are multiplied by the
4804 average character width and then divided by
4. For the y dimension,
4805 the dialog units are multiplied by the average character height and
4806 then divided by
8.
</docstring>
4808 <param name=
"pt" type=
"Point" default=
""/>
4811 <method name=
"DLG_SZE" type=
"Size" overloaded=
"no">
4812 <autodoc>DLG_SZE(Size sz) -
> Size
</autodoc>
4813 <docstring>Converts a point or size from dialog units to pixels. Dialog units
4814 are used for maintaining a dialog's proportions even if the font
4815 changes. For the x dimension, the dialog units are multiplied by the
4816 average character width and then divided by
4. For the y dimension,
4817 the dialog units are multiplied by the average character height and
4818 then divided by
8.
</docstring>
4820 <param name=
"sz" type=
"Size" default=
""/>
4823 <method name=
"ConvertPixelPointToDialog" type=
"Point" overloaded=
"no">
4824 <autodoc>ConvertPixelPointToDialog(Point pt) -
> Point
</autodoc>
4826 <param name=
"pt" type=
"Point" default=
""/>
4829 <method name=
"ConvertPixelSizeToDialog" type=
"Size" overloaded=
"no">
4830 <autodoc>ConvertPixelSizeToDialog(Size sz) -
> Size
</autodoc>
4832 <param name=
"sz" type=
"Size" default=
""/>
4835 <method name=
"WarpPointer" type=
"" overloaded=
"no">
4836 <autodoc>WarpPointer(int x, int y)
</autodoc>
4837 <docstring>Moves the pointer to the given position on the window.
4839 NOTE: This function is not supported under Mac because Apple Human
4840 Interface Guidelines forbid moving the mouse cursor programmatically.
</docstring>
4842 <param name=
"x" type=
"int" default=
""/>
4843 <param name=
"y" type=
"int" default=
""/>
4846 <method name=
"CaptureMouse" type=
"" overloaded=
"no">
4847 <autodoc>CaptureMouse()
</autodoc>
4848 <docstring>Directs all mouse input to this window. Call wx.Window.ReleaseMouse to
4849 release the capture.
4851 Note that wxWindows maintains the stack of windows having captured the
4852 mouse and when the mouse is released the capture returns to the window
4853 which had had captured it previously and it is only really released if
4854 there were no previous window. In particular, this means that you must
4855 release the mouse as many times as you capture it.
</docstring>
4857 <method name=
"ReleaseMouse" type=
"" overloaded=
"no">
4858 <autodoc>ReleaseMouse()
</autodoc>
4859 <docstring>Releases mouse input captured with wx.Window.CaptureMouse.
</docstring>
4861 <staticmethod name=
"GetCapture" type=
"Window" overloaded=
"no">
4862 <autodoc>GetCapture() -
> Window
</autodoc>
4863 <docstring>Returns the window which currently captures the mouse or None
</docstring>
4865 <method name=
"HasCapture" type=
"bool" overloaded=
"no">
4866 <autodoc>HasCapture() -
> bool
</autodoc>
4867 <docstring>Returns true if this window has the current mouse capture.
</docstring>
4869 <method name=
"Refresh" type=
"" overloaded=
"no">
4870 <autodoc>Refresh(bool eraseBackground=True, Rect rect=None)
</autodoc>
4871 <docstring>Mark the specified rectangle (or the whole window) as "dirty" so it
4872 will be repainted. Causes an EVT_PAINT event to be generated and sent
4873 to the window.
</docstring>
4875 <param name=
"eraseBackground" type=
"bool" default=
"True"/>
4876 <param name=
"rect" type=
"Rect" default=
"NULL"/>
4879 <method name=
"RefreshRect" type=
"" overloaded=
"no">
4880 <autodoc>RefreshRect(Rect rect)
</autodoc>
4881 <docstring>Redraws the contents of the given rectangle: the area inside it will
4882 be repainted. This is the same as Refresh but has a nicer syntax.
</docstring>
4884 <param name=
"rect" type=
"Rect" default=
""/>
4887 <method name=
"Update" type=
"" overloaded=
"no">
4888 <autodoc>Update()
</autodoc>
4889 <docstring>Calling this method immediately repaints the invalidated area of the
4890 window instead of waiting for the EVT_PAINT event to happen, (normally
4891 this would usually only happen when the flow of control returns to the
4892 event loop.) Notice that this function doesn't refresh the window and
4893 does nothing if the window has been already repainted. Use Refresh
4894 first if you want to immediately redraw the window (or some portion of
4895 it) unconditionally.
</docstring>
4897 <method name=
"ClearBackground" type=
"" overloaded=
"no">
4898 <autodoc>ClearBackground()
</autodoc>
4899 <docstring>Clears the window by filling it with the current background
4900 colour. Does not cause an erase background event to be generated.
</docstring>
4902 <method name=
"Freeze" type=
"" overloaded=
"no">
4903 <autodoc>Freeze()
</autodoc>
4904 <docstring>Freezes the window or, in other words, prevents any updates from taking place
4905 on screen, the window is not redrawn at all. Thaw must be called to reenable
4906 window redrawing. Calls to Freeze/Thaw may be nested, with the actual Thaw
4907 being delayed until all the nesting has been undone.
4909 This method is useful for visual appearance optimization (for example,
4910 it is a good idea to use it before inserting large amount of text into
4911 a wxTextCtrl under wxGTK) but is not implemented on all platforms nor
4912 for all controls so it is mostly just a hint to wxWindows and not a
4913 mandatory directive.
</docstring>
4915 <method name=
"Thaw" type=
"" overloaded=
"no">
4916 <autodoc>Thaw()
</autodoc>
4917 <docstring>Reenables window updating after a previous call to Freeze. Calls to
4918 Freeze/Thaw may be nested, so Thaw must be called the same number of times
4919 that Freeze was before the window will be updated.
</docstring>
4921 <method name=
"PrepareDC" type=
"" overloaded=
"no">
4922 <autodoc>PrepareDC(DC dc)
</autodoc>
4923 <docstring>Call this function to prepare the device context for drawing a
4924 scrolled image. It sets the device origin according to the current
4925 scroll position.
</docstring>
4927 <param name=
"dc" type=
"wxDC" default=
""/>
4930 <method name=
"GetUpdateRegion" type=
"wxRegion" overloaded=
"no">
4931 <autodoc>GetUpdateRegion() -
> Region
</autodoc>
4932 <docstring>Returns the region specifying which parts of the window have been
4933 damaged. Should only be called within an EVT_PAINT handler.
</docstring>
4935 <method name=
"GetUpdateClientRect" type=
"Rect" overloaded=
"no">
4936 <autodoc>GetUpdateClientRect() -
> Rect
</autodoc>
4937 <docstring>Get the update rectangle region bounding box in client coords.
</docstring>
4939 <method name=
"IsExposed" type=
"bool" overloaded=
"no">
4940 <autodoc>IsExposed(int x, int y, int w=
1, int h=
1) -
> bool
</autodoc>
4941 <docstring>Returns true if the given point or rectangle area has been exposed
4942 since the last repaint. Call this in an paint event handler to
4943 optimize redrawing by only redrawing those areas, which have been
4944 exposed.
</docstring>
4946 <param name=
"x" type=
"int" default=
""/>
4947 <param name=
"y" type=
"int" default=
""/>
4948 <param name=
"w" type=
"int" default=
"1"/>
4949 <param name=
"h" type=
"int" default=
"1"/>
4952 <method name=
"IsExposedPoint" type=
"bool" overloaded=
"no">
4953 <autodoc>IsExposedPoint(Point pt) -
> bool
</autodoc>
4954 <docstring>Returns true if the given point or rectangle area has been exposed
4955 since the last repaint. Call this in an paint event handler to
4956 optimize redrawing by only redrawing those areas, which have been
4957 exposed.
</docstring>
4959 <param name=
"pt" type=
"Point" default=
""/>
4962 <method name=
"IsExposedRect" type=
"bool" overloaded=
"no">
4963 <autodoc>IsExposedRect(Rect rect) -
> bool
</autodoc>
4964 <docstring>Returns true if the given point or rectangle area has been exposed
4965 since the last repaint. Call this in an paint event handler to
4966 optimize redrawing by only redrawing those areas, which have been
4967 exposed.
</docstring>
4969 <param name=
"rect" type=
"Rect" default=
""/>
4972 <method name=
"SetBackgroundColour" type=
"bool" overloaded=
"no">
4973 <autodoc>SetBackgroundColour(Colour colour) -
> bool
</autodoc>
4974 <docstring>Sets the background colour of the window. Returns True if the colour
4975 was changed. The background colour is usually painted by the default
4976 EVT_ERASE_BACKGROUND event handler function under Windows and
4977 automatically under GTK.
4979 Note that setting the background colour does not cause an immediate
4980 refresh, so you may wish to call ClearBackground or Refresh after
4981 calling this function.
4983 Use this function with care under GTK+ as the new appearance of the
4984 window might not look equally well when used with themes, i.e GTK+'s
4985 ability to change its look as the user wishes with run-time loadable
4986 modules.
</docstring>
4988 <param name=
"colour" type=
"wxColour" default=
""/>
4991 <method name=
"SetForegroundColour" type=
"bool" overloaded=
"no">
4992 <autodoc>SetForegroundColour(Colour colour) -
> bool
</autodoc>
4993 <docstring>Sets the foreground colour of the window. Returns True is the colour
4994 was changed. The interpretation of foreground colour is dependent on
4995 the window class; it may be the text colour or other colour, or it may
4996 not be used at all.
</docstring>
4998 <param name=
"colour" type=
"wxColour" default=
""/>
5001 <method name=
"GetBackgroundColour" type=
"wxColour" overloaded=
"no">
5002 <autodoc>GetBackgroundColour() -
> Colour
</autodoc>
5003 <docstring>Returns the background colour of the window.
</docstring>
5005 <method name=
"GetForegroundColour" type=
"wxColour" overloaded=
"no">
5006 <autodoc>GetForegroundColour() -
> Colour
</autodoc>
5007 <docstring>Returns the foreground colour of the window. The interpretation of
5008 foreground colour is dependent on the window class; it may be the text
5009 colour or other colour, or it may not be used at all.
</docstring>
5011 <method name=
"SetCursor" type=
"bool" overloaded=
"no">
5012 <autodoc>SetCursor(Cursor cursor) -
> bool
</autodoc>
5013 <docstring>Sets the window's cursor. Notice that the window cursor also sets it
5014 for the children of the window implicitly.
5016 The cursor may be wx.NullCursor in which case the window cursor will
5017 be reset back to default.
</docstring>
5019 <param name=
"cursor" type=
"wxCursor" default=
""/>
5022 <method name=
"GetCursor" type=
"wxCursor" overloaded=
"no">
5023 <autodoc>GetCursor() -
> Cursor
</autodoc>
5024 <docstring>Return the cursor associated with this window.
</docstring>
5026 <method name=
"SetFont" type=
"bool" overloaded=
"no">
5027 <autodoc>SetFont(Font font) -
> bool
</autodoc>
5028 <docstring>Sets the font for this window.
</docstring>
5030 <param name=
"font" type=
"wxFont" default=
""/>
5033 <method name=
"GetFont" type=
"wxFont" overloaded=
"no">
5034 <autodoc>GetFont() -
> Font
</autodoc>
5035 <docstring>Returns the default font used for this window.
</docstring>
5037 <method name=
"SetCaret" type=
"" overloaded=
"no">
5038 <autodoc>SetCaret(Caret caret)
</autodoc>
5039 <docstring>Sets the caret associated with the window.
</docstring>
5041 <param name=
"caret" type=
"wxCaret" default=
""/>
5044 <method name=
"GetCaret" type=
"wxCaret" overloaded=
"no">
5045 <autodoc>GetCaret() -
> Caret
</autodoc>
5046 <docstring>Returns the caret associated with the window.
</docstring>
5048 <method name=
"GetCharHeight" type=
"int" overloaded=
"no">
5049 <autodoc>GetCharHeight() -
> int
</autodoc>
5050 <docstring>Get the (average) character size for the current font.
</docstring>
5052 <method name=
"GetCharWidth" type=
"int" overloaded=
"no">
5053 <autodoc>GetCharWidth() -
> int
</autodoc>
5054 <docstring>Get the (average) character size for the current font.
</docstring>
5056 <method name=
"GetTextExtent" type=
"" overloaded=
"no">
5057 <autodoc>GetTextExtent(String string) -
> (width, height)
</autodoc>
5058 <docstring>Get the width and height of the text using the current font.
</docstring>
5060 <param name=
"string" type=
"String" default=
""/>
5061 <param name=
"OUTPUT" type=
"int" default=
""/>
5062 <param name=
"OUTPUT" type=
"int" default=
""/>
5065 <method name=
"GetFullTextExtent" type=
"" overloaded=
"no">
5066 <autodoc>GetFullTextExtent(String string, Font font=None) -
>
5067 (width, height, descent, externalLeading)
</autodoc>
5068 <docstring>Get the width, height, decent and leading of the text using the
5069 current or specified font.
</docstring>
5071 <param name=
"string" type=
"String" default=
""/>
5072 <param name=
"OUTPUT" type=
"int" default=
""/>
5073 <param name=
"OUTPUT" type=
"int" default=
""/>
5074 <param name=
"OUTPUT" type=
"int" default=
""/>
5075 <param name=
"OUTPUT" type=
"int" default=
""/>
5076 <param name=
"font" type=
"wxFont" default=
"NULL"/>
5079 <method name=
"ClientToScreenXY" type=
"" overloaded=
"no">
5080 <autodoc>ClientToScreenXY(int x, int y) -
> (x,y)
</autodoc>
5081 <docstring>Converts to screen coordinates from coordinates relative to this window.
</docstring>
5083 <param name=
"x" type=
"int" default=
""/>
5084 <param name=
"y" type=
"int" default=
""/>
5087 <method name=
"ScreenToClientXY" type=
"" overloaded=
"no">
5088 <autodoc>ScreenToClientXY(int x, int y) -
> (x,y)
</autodoc>
5089 <docstring>Converts from screen to client window coordinates.
</docstring>
5091 <param name=
"x" type=
"int" default=
""/>
5092 <param name=
"y" type=
"int" default=
""/>
5095 <method name=
"ClientToScreen" type=
"Point" overloaded=
"no">
5096 <autodoc>ClientToScreen(Point pt) -
> Point
</autodoc>
5097 <docstring>Converts to screen coordinates from coordinates relative to this window.
</docstring>
5099 <param name=
"pt" type=
"Point" default=
""/>
5102 <method name=
"ScreenToClient" type=
"Point" overloaded=
"no">
5103 <autodoc>ScreenToClient(Point pt) -
> Point
</autodoc>
5104 <docstring>Converts from screen to client window coordinates.
</docstring>
5106 <param name=
"pt" type=
"Point" default=
""/>
5109 <method name=
"HitTestXY" type=
"wxHitTest" overloaded=
"no">
5110 <autodoc>HitTestXY(int x, int y) -
> int
</autodoc>
5111 <docstring>Test where the given (in client coords) point lies
</docstring>
5113 <param name=
"x" type=
"int" default=
""/>
5114 <param name=
"y" type=
"int" default=
""/>
5117 <method name=
"HitTest" type=
"wxHitTest" overloaded=
"no">
5118 <autodoc>HitTest(Point pt) -
> int
</autodoc>
5119 <docstring>Test where the given (in client coords) point lies
</docstring>
5121 <param name=
"pt" type=
"Point" default=
""/>
5124 <method name=
"GetBorder" type=
"wxBorder" overloaded=
"yes">
5125 <docstring>Get the window border style from the given flags: this is different
5126 from simply doing flags
& wxBORDER_MASK because it uses
5127 GetDefaultBorder() to translate wxBORDER_DEFAULT to something
5131 <param name=
"flags" type=
"long" default=
""/>
5134 <method name=
"GetBorder" type=
"wxBorder" overloaded=
"yes">
5135 <autodoc>GetBorder(long flags) -
> int
5136 GetBorder() -
> int
</autodoc>
5137 <docstring>Get border for the flags of this window
</docstring>
5139 <method name=
"UpdateWindowUI" type=
"" overloaded=
"no">
5140 <autodoc>UpdateWindowUI(long flags=UPDATE_UI_NONE)
</autodoc>
5141 <docstring>This function sends EVT_UPDATE_UI events to the window. The particular
5142 implementation depends on the window; for example a wx.ToolBar will
5143 send an update UI event for each toolbar button, and a wx.Frame will
5144 send an update UI event for each menubar menu item. You can call this
5145 function from your application to ensure that your UI is up-to-date at
5146 a particular point in time (as far as your EVT_UPDATE_UI handlers are
5147 concerned). This may be necessary if you have called
5148 wx.UpdateUIEvent.SetMode or wx.UpdateUIEvent.SetUpdateInterval to
5149 limit the overhead that wxWindows incurs by sending update UI events
5152 The flags should be a bitlist of one or more of the following values:
5154 wx.UPDATE_UI_NONE No particular value
5155 wx.UPDATE_UI_RECURSE Call the function for descendants
5156 wx.UPDATE_UI_FROMIDLE Invoked from OnIdle
5158 If you are calling this function from an OnIdle function, make sure
5159 you pass the wx.UPDATE_UI_FROMIDLE flag, since this tells the window to
5160 only update the UI elements that need to be updated in idle time. Some
5161 windows update their elements only when necessary, for example when a
5162 menu is about to be shown. The following is an example of how to call
5163 UpdateWindowUI from an idle function.
5165 def OnIdle(self, evt):
5166 if wx.UpdateUIEvent.CanUpdate(self):
5167 self.UpdateWindowUI(wx.UPDATE_UI_FROMIDLE);
5170 <param name=
"flags" type=
"long" default=
"wxUPDATE_UI_NONE"/>
5173 <method name=
"PopupMenuXY" type=
"bool" overloaded=
"no">
5174 <autodoc>PopupMenuXY(Menu menu, int x, int y) -
> bool
</autodoc>
5175 <docstring>Pops up the given menu at the specified coordinates, relative to this
5176 window, and returns control when the user has dismissed the menu. If a
5177 menu item is selected, the corresponding menu event is generated and
5178 will be processed as usual.
</docstring>
5180 <param name=
"menu" type=
"wxMenu" default=
""/>
5181 <param name=
"x" type=
"int" default=
""/>
5182 <param name=
"y" type=
"int" default=
""/>
5185 <method name=
"PopupMenu" type=
"bool" overloaded=
"no">
5186 <autodoc>PopupMenu(Menu menu, Point pos) -
> bool
</autodoc>
5187 <docstring>Pops up the given menu at the specified coordinates, relative to this
5188 window, and returns control when the user has dismissed the menu. If a
5189 menu item is selected, the corresponding menu event is generated and
5190 will be processed as usual.
</docstring>
5192 <param name=
"menu" type=
"wxMenu" default=
""/>
5193 <param name=
"pos" type=
"Point" default=
""/>
5196 <method name=
"GetHandle" type=
"long" overloaded=
"no">
5197 <autodoc>GetHandle() -
> long
</autodoc>
5198 <docstring>Returns the platform-specific handle (as a long integer) of the
5199 physical window. Currently on wxMac it returns the handle of the
5200 toplevel parent of the window.
</docstring>
5202 <method name=
"HasScrollbar" type=
"bool" overloaded=
"no">
5203 <autodoc>HasScrollbar(int orient) -
> bool
</autodoc>
5204 <docstring>Does the window have the scrollbar for this orientation?
</docstring>
5206 <param name=
"orient" type=
"int" default=
""/>
5209 <method name=
"SetScrollbar" type=
"" overloaded=
"no">
5210 <autodoc>SetScrollbar(int orientation, int pos, int thumbvisible, int range,
5211 bool refresh=True)
</autodoc>
5212 <docstring>Sets the scrollbar properties of a built-in scrollbar.
5214 orientation: Determines the scrollbar whose page size is to be
5215 set. May be wx.HORIZONTAL or wx.VERTICAL.
5217 position: The position of the scrollbar in scroll units.
5219 thumbSize: The size of the thumb, or visible portion of the
5220 scrollbar, in scroll units.
5222 range: The maximum position of the scrollbar.
5224 refresh: True to redraw the scrollbar, false otherwise.
</docstring>
5226 <param name=
"orientation" type=
"int" default=
""/>
5227 <param name=
"pos" type=
"int" default=
""/>
5228 <param name=
"thumbvisible" type=
"int" default=
""/>
5229 <param name=
"range" type=
"int" default=
""/>
5230 <param name=
"refresh" type=
"bool" default=
"True"/>
5233 <method name=
"SetScrollPos" type=
"" overloaded=
"no">
5234 <autodoc>SetScrollPos(int orientation, int pos, bool refresh=True)
</autodoc>
5235 <docstring>Sets the position of one of the built-in scrollbars.
</docstring>
5237 <param name=
"orientation" type=
"int" default=
""/>
5238 <param name=
"pos" type=
"int" default=
""/>
5239 <param name=
"refresh" type=
"bool" default=
"True"/>
5242 <method name=
"GetScrollPos" type=
"int" overloaded=
"no">
5243 <autodoc>GetScrollPos(int orientation) -
> int
</autodoc>
5244 <docstring>Returns the built-in scrollbar position.
</docstring>
5246 <param name=
"orientation" type=
"int" default=
""/>
5249 <method name=
"GetScrollThumb" type=
"int" overloaded=
"no">
5250 <autodoc>GetScrollThumb(int orientation) -
> int
</autodoc>
5251 <docstring>Returns the built-in scrollbar thumb size.
</docstring>
5253 <param name=
"orientation" type=
"int" default=
""/>
5256 <method name=
"GetScrollRange" type=
"int" overloaded=
"no">
5257 <autodoc>GetScrollRange(int orientation) -
> int
</autodoc>
5258 <docstring>Returns the built-in scrollbar range.
</docstring>
5260 <param name=
"orientation" type=
"int" default=
""/>
5263 <method name=
"ScrollWindow" type=
"" overloaded=
"no">
5264 <autodoc>ScrollWindow(int dx, int dy, Rect rect=None)
</autodoc>
5265 <docstring>Physically scrolls the pixels in the window and move child windows
5266 accordingly. Use this function to optimise your scrolling
5267 implementations, to minimise the area that must be redrawn. Note that
5268 it is rarely required to call this function from a user program.
5270 dx: Amount to scroll horizontally.
5272 dy: Amount to scroll vertically.
5274 rect: Rectangle to invalidate. If this is None, the whole window
5275 is invalidated. If you pass a rectangle corresponding to the
5276 area of the window exposed by the scroll, your painting
5277 handler can optimize painting by checking for the
5278 invalidated region.
</docstring>
5280 <param name=
"dx" type=
"int" default=
""/>
5281 <param name=
"dy" type=
"int" default=
""/>
5282 <param name=
"rect" type=
"Rect" default=
"NULL"/>
5285 <method name=
"ScrollLines" type=
"bool" overloaded=
"no">
5286 <autodoc>ScrollLines(int lines) -
> bool
</autodoc>
5287 <docstring>If the platform and window class supports it, scrolls the window by
5288 the given number of lines down, if lines is positive, or up if lines
5289 is negative. Returns True if the window was scrolled, False if it was
5290 already on top/bottom and nothing was done.
</docstring>
5292 <param name=
"lines" type=
"int" default=
""/>
5295 <method name=
"ScrollPages" type=
"bool" overloaded=
"no">
5296 <autodoc>ScrollPages(int pages) -
> bool
</autodoc>
5297 <docstring>If the platform and window class supports it, scrolls the window by
5298 the given number of pages down, if pages is positive, or up if pages
5299 is negative. Returns True if the window was scrolled, False if it was
5300 already on top/bottom and nothing was done.
</docstring>
5302 <param name=
"pages" type=
"int" default=
""/>
5305 <method name=
"LineUp" type=
"bool" overloaded=
"no">
5306 <autodoc>LineUp() -
> bool
</autodoc>
5307 <docstring>This is just a wrapper for ScrollLines(-
1).
</docstring>
5309 <method name=
"LineDown" type=
"bool" overloaded=
"no">
5310 <autodoc>LineDown() -
> bool
</autodoc>
5311 <docstring>This is just a wrapper for ScrollLines(
1).
</docstring>
5313 <method name=
"PageUp" type=
"bool" overloaded=
"no">
5314 <autodoc>PageUp() -
> bool
</autodoc>
5315 <docstring>This is just a wrapper for ScrollPages(-
1).
</docstring>
5317 <method name=
"PageDown" type=
"bool" overloaded=
"no">
5318 <autodoc>PageDown() -
> bool
</autodoc>
5319 <docstring>This is just a wrapper for ScrollPages(
1).
</docstring>
5321 <method name=
"SetHelpText" type=
"" overloaded=
"no">
5322 <autodoc>SetHelpText(String text)
</autodoc>
5323 <docstring>Sets 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 <param name=
"text" type=
"String" default=
""/>
5330 <method name=
"SetHelpTextForId" type=
"" overloaded=
"no">
5331 <autodoc>SetHelpTextForId(String text)
</autodoc>
5332 <docstring>Associate this help text with all windows with the same id as this
5335 <param name=
"text" type=
"String" default=
""/>
5338 <method name=
"GetHelpText" type=
"String" overloaded=
"no">
5339 <autodoc>GetHelpText() -
> String
</autodoc>
5340 <docstring>Gets the help text to be used as context-sensitive help for this
5341 window. Note that the text is actually stored by the current
5342 wxHelpProvider implementation, and not in the window object itself.
</docstring>
5344 <method name=
"SetToolTipString" type=
"" overloaded=
"no">
5345 <autodoc>SetToolTipString(String tip)
</autodoc>
5346 <docstring>Attach a tooltip to the window.
</docstring>
5348 <param name=
"tip" type=
"String" default=
""/>
5351 <method name=
"SetToolTip" type=
"" overloaded=
"no">
5352 <autodoc>SetToolTip(ToolTip tip)
</autodoc>
5353 <docstring>Attach a tooltip to the window.
</docstring>
5355 <param name=
"tip" type=
"wxToolTip" default=
""/>
5358 <method name=
"GetToolTip" type=
"wxToolTip" overloaded=
"no">
5359 <autodoc>GetToolTip() -
> ToolTip
</autodoc>
5360 <docstring>get the associated tooltip or None if none
</docstring>
5362 <method name=
"SetDropTarget" type=
"" overloaded=
"no">
5363 <autodoc>SetDropTarget(DropTarget dropTarget)
</autodoc>
5364 <docstring>Associates a drop target with this window. If the window already has
5365 a drop target, it is deleted.
</docstring>
5367 <param name=
"dropTarget" type=
"wxPyDropTarget" default=
""/>
5370 <method name=
"GetDropTarget" type=
"wxPyDropTarget" overloaded=
"no">
5371 <autodoc>GetDropTarget() -
> DropTarget
</autodoc>
5372 <docstring>Returns the associated drop target, which may be None.
</docstring>
5374 <method name=
"SetConstraints" type=
"" overloaded=
"no">
5375 <autodoc>SetConstraints(LayoutConstraints constraints)
</autodoc>
5376 <docstring>Sets the window to have the given layout constraints. If an existing
5377 layout constraints object is already owned by the window, it will be
5378 deleted. Pass None to disassociate and delete the window's current
5381 You must call SetAutoLayout to tell a window to use the constraints
5382 automatically in its default EVT_SIZE handler; otherwise, you must
5383 handle EVT_SIZE yourself and call Layout() explicitly. When setting
5384 both a wx.LayoutConstraints and a wx.Sizer, only the sizer will have
5387 <param name=
"constraints" type=
"wxLayoutConstraints" default=
""/>
5390 <method name=
"GetConstraints" type=
"wxLayoutConstraints" overloaded=
"no">
5391 <autodoc>GetConstraints() -
> LayoutConstraints
</autodoc>
5392 <docstring>Returns a pointer to the window's layout constraints, or None if there
5393 are none.
</docstring>
5395 <method name=
"SetAutoLayout" type=
"" overloaded=
"no">
5396 <autodoc>SetAutoLayout(bool autoLayout)
</autodoc>
5397 <docstring>Determines whether the Layout function will be called automatically
5398 when the window is resized. It is called implicitly by SetSizer but
5399 if you use SetConstraints you should call it manually or otherwise the
5400 window layout won't be correctly updated when its size changes.
</docstring>
5402 <param name=
"autoLayout" type=
"bool" default=
""/>
5405 <method name=
"GetAutoLayout" type=
"bool" overloaded=
"no">
5406 <autodoc>GetAutoLayout() -
> bool
</autodoc>
5407 <docstring>Returns the current autoLayout setting
</docstring>
5409 <method name=
"Layout" type=
"bool" overloaded=
"no">
5410 <autodoc>Layout() -
> bool
</autodoc>
5411 <docstring>Invokes the constraint-based layout algorithm or the sizer-based
5412 algorithm for this window. See SetAutoLayout: when auto layout is on,
5413 this function gets called automatically by the default EVT_SIZE
5414 handler when the window is resized.
</docstring>
5416 <method name=
"SetSizer" type=
"" overloaded=
"no">
5417 <autodoc>SetSizer(Sizer sizer, bool deleteOld=True)
</autodoc>
5418 <docstring>Sets the window to have the given layout sizer. The window will then
5419 own the object, and will take care of its deletion. If an existing
5420 layout sizer object is already owned by the window, it will be deleted
5421 if the deleteOld parameter is true. Note that this function will also
5422 call SetAutoLayout implicitly with a True parameter if the sizer is
5423 non-NoneL and False otherwise.
</docstring>
5425 <param name=
"sizer" type=
"wxSizer" default=
""/>
5426 <param name=
"deleteOld" type=
"bool" default=
"True"/>
5429 <method name=
"SetSizerAndFit" type=
"" overloaded=
"no">
5430 <autodoc>SetSizerAndFit(Sizer sizer, bool deleteOld=True)
</autodoc>
5431 <docstring>The same as SetSizer, except it also sets the size hints for the
5432 window based on the sizer's minimum size.
</docstring>
5434 <param name=
"sizer" type=
"wxSizer" default=
""/>
5435 <param name=
"deleteOld" type=
"bool" default=
"True"/>
5438 <method name=
"GetSizer" type=
"wxSizer" overloaded=
"no">
5439 <autodoc>GetSizer() -
> Sizer
</autodoc>
5440 <docstring>Return the sizer associated with the window by a previous call to
5441 SetSizer or None if there isn't one.
</docstring>
5443 <method name=
"SetContainingSizer" type=
"" overloaded=
"no">
5444 <autodoc>SetContainingSizer(Sizer sizer)
</autodoc>
5445 <docstring>This normally does not need to be called by application code. It is
5446 called internally when a window is added to a sizer, and is used so
5447 the window can remove itself from the sizer when it is destroyed.
</docstring>
5449 <param name=
"sizer" type=
"wxSizer" default=
""/>
5452 <method name=
"GetContainingSizer" type=
"wxSizer" overloaded=
"no">
5453 <autodoc>GetContainingSizer() -
> Sizer
</autodoc>
5454 <docstring>Return the sizer that this window is a member of, if any, otherwise None.
</docstring>
5458 def DLG_PNT(win, point_or_x, y=None):
5460 Convenience function for converting a Point or (x,y) in
5461 dialog units to pixel units.
5464 return win.ConvertDialogPointToPixels(point_or_x)
5466 return win.ConvertDialogPointToPixels(wx.Point(point_or_x, y))
5468 def DLG_SZE(win, size_width, height=None):
5470 Convenience function for converting a Size or (w,h) in
5471 dialog units to pixel units.
5474 return win.ConvertDialogSizeToPixels(size_width)
5476 return win.ConvertDialogSizeToPixels(wx.Size(size_width, height))
5478 <method name=
"FindWindowById" oldname=
"wxFindWindowById" type=
"Window" overloaded=
"no">
5479 <autodoc>FindWindowById(long id, Window parent=None) -
> Window
</autodoc>
5480 <docstring>Find the first window in the application with the given id. If parent
5481 is None, the search will start from all top-level frames and dialog
5482 boxes; if non-None, the search will be limited to the given window
5483 hierarchy. The search is recursive in both cases.
</docstring>
5485 <param name=
"id" type=
"long" default=
""/>
5486 <param name=
"parent" type=
"Window" default=
"NULL"/>
5489 <method name=
"FindWindowByName" oldname=
"wxFindWindowByName" type=
"Window" overloaded=
"no">
5490 <autodoc>FindWindowByName(String name, Window parent=None) -
> Window
</autodoc>
5491 <docstring>Find a window by its name (as given in a window constructor or Create
5492 function call). If parent is None, the search will start from all
5493 top-level frames and dialog boxes; if non-None, the search will be
5494 limited to the given window hierarchy. The search is recursive in both
5497 If no window with such name is found, wx.FindWindowByLabel is called.
</docstring>
5499 <param name=
"name" type=
"String" default=
""/>
5500 <param name=
"parent" type=
"Window" default=
"NULL"/>
5503 <method name=
"FindWindowByLabel" oldname=
"wxFindWindowByLabel" type=
"Window" overloaded=
"no">
5504 <autodoc>FindWindowByLabel(String label, Window parent=None) -
> Window
</autodoc>
5505 <docstring>Find a window by its label. Depending on the type of window, the label
5506 may be a window title or panel item label. If parent is None, the
5507 search will start from all top-level frames and dialog boxes; if
5508 non-None, the search will be limited to the given window
5509 hierarchy. The search is recursive in both cases.
</docstring>
5511 <param name=
"label" type=
"String" default=
""/>
5512 <param name=
"parent" type=
"Window" default=
"NULL"/>
5515 <method name=
"Window_FromHWND" oldname=
"wxWindow_FromHWND" type=
"Window" overloaded=
"no">
5516 <autodoc>Window_FromHWND(Window parent, unsigned long _hWnd) -
> Window
</autodoc>
5518 <param name=
"parent" type=
"Window" default=
""/>
5519 <param name=
"_hWnd" type=
"unsigned long" default=
""/>
5523 #---------------------------------------------------------------------------
5525 <class name=
"Validator" oldname=
"wxValidator" module=
"core">
5526 <baseclass name=
"EvtHandler"/>
5527 <constructor name=
"Validator" overloaded=
"no">
5528 <autodoc>__init__() -
> Validator
</autodoc>
5530 <method name=
"Clone" type=
"Validator" overloaded=
"no">
5531 <autodoc>Clone() -
> Validator
</autodoc>
5533 <method name=
"Validate" type=
"bool" overloaded=
"no">
5534 <autodoc>Validate(Window parent) -
> bool
</autodoc>
5536 <param name=
"parent" type=
"Window" default=
""/>
5539 <method name=
"TransferToWindow" type=
"bool" overloaded=
"no">
5540 <autodoc>TransferToWindow() -
> bool
</autodoc>
5542 <method name=
"TransferFromWindow" type=
"bool" overloaded=
"no">
5543 <autodoc>TransferFromWindow() -
> bool
</autodoc>
5545 <method name=
"GetWindow" type=
"Window" overloaded=
"no">
5546 <autodoc>GetWindow() -
> Window
</autodoc>
5548 <method name=
"SetWindow" type=
"" overloaded=
"no">
5549 <autodoc>SetWindow(Window window)
</autodoc>
5551 <param name=
"window" type=
"Window" default=
""/>
5554 <staticmethod name=
"IsSilent" type=
"bool" overloaded=
"no">
5555 <autodoc>IsSilent() -
> bool
</autodoc>
5557 <staticmethod name=
"SetBellOnError" type=
"" overloaded=
"no">
5558 <autodoc>SetBellOnError(int doIt=True)
</autodoc>
5560 <param name=
"doIt" type=
"int" default=
"True"/>
5564 <class name=
"PyValidator" oldname=
"wxPyValidator" module=
"core">
5565 <baseclass name=
"Validator"/>
5566 <constructor name=
"PyValidator" overloaded=
"no">
5567 <autodoc>__init__() -
> PyValidator
</autodoc>
5569 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
5570 <autodoc>_setCallbackInfo(PyObject self, PyObject _class, int incref=True)
</autodoc>
5572 <param name=
"self" type=
"PyObject" default=
""/>
5573 <param name=
"_class" type=
"PyObject" default=
""/>
5574 <param name=
"incref" type=
"int" default=
"True"/>
5579 #---------------------------------------------------------------------------
5581 <class name=
"Menu" oldname=
"wxMenu" module=
"core">
5582 <baseclass name=
"EvtHandler"/>
5583 <constructor name=
"Menu" overloaded=
"no">
5584 <autodoc>__init__(String title=EmptyString, long style=
0) -
> Menu
</autodoc>
5586 <param name=
"title" type=
"String" default=
"wxPyEmptyString"/>
5587 <param name=
"style" type=
"long" default=
"0"/>
5590 <method name=
"Append" type=
"wxMenuItem" overloaded=
"no">
5591 <autodoc>Append(int id, String text, String help=EmptyString, int kind=ITEM_NORMAL) -
> MenuItem
</autodoc>
5593 <param name=
"id" type=
"int" default=
""/>
5594 <param name=
"text" type=
"String" default=
""/>
5595 <param name=
"help" type=
"String" default=
"wxPyEmptyString"/>
5596 <param name=
"kind" type=
"wxItemKind" default=
"wxITEM_NORMAL"/>
5599 <method name=
"AppendSeparator" type=
"wxMenuItem" overloaded=
"no">
5600 <autodoc>AppendSeparator() -
> MenuItem
</autodoc>
5602 <method name=
"AppendCheckItem" type=
"wxMenuItem" overloaded=
"no">
5603 <autodoc>AppendCheckItem(int id, String text, String help=EmptyString) -
> MenuItem
</autodoc>
5605 <param name=
"id" type=
"int" default=
""/>
5606 <param name=
"text" type=
"String" default=
""/>
5607 <param name=
"help" type=
"String" default=
"wxPyEmptyString"/>
5610 <method name=
"AppendRadioItem" type=
"wxMenuItem" overloaded=
"no">
5611 <autodoc>AppendRadioItem(int id, String text, String help=EmptyString) -
> MenuItem
</autodoc>
5613 <param name=
"id" type=
"int" default=
""/>
5614 <param name=
"text" type=
"String" default=
""/>
5615 <param name=
"help" type=
"String" default=
"wxPyEmptyString"/>
5618 <method name=
"AppendMenu" type=
"wxMenuItem" overloaded=
"no">
5619 <autodoc>AppendMenu(int id, String text, Menu submenu, String help=EmptyString) -
> MenuItem
</autodoc>
5621 <param name=
"id" type=
"int" default=
""/>
5622 <param name=
"text" type=
"String" default=
""/>
5623 <param name=
"submenu" type=
"Menu" default=
""/>
5624 <param name=
"help" type=
"String" default=
"wxPyEmptyString"/>
5627 <method name=
"AppendItem" type=
"wxMenuItem" overloaded=
"no">
5628 <autodoc>AppendItem(MenuItem item) -
> MenuItem
</autodoc>
5630 <param name=
"item" type=
"wxMenuItem" default=
""/>
5633 <method name=
"Break" type=
"" overloaded=
"no">
5634 <autodoc>Break()
</autodoc>
5636 <method name=
"InsertItem" type=
"wxMenuItem" overloaded=
"no">
5637 <autodoc>InsertItem(size_t pos, MenuItem item) -
> MenuItem
</autodoc>
5639 <param name=
"pos" type=
"size_t" default=
""/>
5640 <param name=
"item" type=
"wxMenuItem" default=
""/>
5643 <method name=
"Insert" type=
"wxMenuItem" overloaded=
"no">
5644 <autodoc>Insert(size_t pos, int id, String text, String help=EmptyString,
5645 int kind=ITEM_NORMAL) -
> MenuItem
</autodoc>
5647 <param name=
"pos" type=
"size_t" default=
""/>
5648 <param name=
"id" type=
"int" default=
""/>
5649 <param name=
"text" type=
"String" default=
""/>
5650 <param name=
"help" type=
"String" default=
"wxPyEmptyString"/>
5651 <param name=
"kind" type=
"wxItemKind" default=
"wxITEM_NORMAL"/>
5654 <method name=
"InsertSeparator" type=
"wxMenuItem" overloaded=
"no">
5655 <autodoc>InsertSeparator(size_t pos) -
> MenuItem
</autodoc>
5657 <param name=
"pos" type=
"size_t" default=
""/>
5660 <method name=
"InsertCheckItem" type=
"wxMenuItem" overloaded=
"no">
5661 <autodoc>InsertCheckItem(size_t pos, int id, String text, 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=
"help" type=
"String" default=
"wxPyEmptyString"/>
5669 <method name=
"InsertRadioItem" type=
"wxMenuItem" overloaded=
"no">
5670 <autodoc>InsertRadioItem(size_t pos, int id, String text, String help=EmptyString) -
> MenuItem
</autodoc>
5672 <param name=
"pos" type=
"size_t" default=
""/>
5673 <param name=
"id" type=
"int" default=
""/>
5674 <param name=
"text" type=
"String" default=
""/>
5675 <param name=
"help" type=
"String" default=
"wxPyEmptyString"/>
5678 <method name=
"InsertMenu" type=
"wxMenuItem" overloaded=
"no">
5679 <autodoc>InsertMenu(size_t pos, int id, String text, Menu submenu, String help=EmptyString) -
> MenuItem
</autodoc>
5681 <param name=
"pos" type=
"size_t" default=
""/>
5682 <param name=
"id" type=
"int" default=
""/>
5683 <param name=
"text" type=
"String" default=
""/>
5684 <param name=
"submenu" type=
"Menu" default=
""/>
5685 <param name=
"help" type=
"String" default=
"wxPyEmptyString"/>
5688 <method name=
"PrependItem" type=
"wxMenuItem" overloaded=
"no">
5689 <autodoc>PrependItem(MenuItem item) -
> MenuItem
</autodoc>
5691 <param name=
"item" type=
"wxMenuItem" default=
""/>
5694 <method name=
"Prepend" type=
"wxMenuItem" overloaded=
"no">
5695 <autodoc>Prepend(int id, String text, String help=EmptyString, int kind=ITEM_NORMAL) -
> MenuItem
</autodoc>
5697 <param name=
"id" type=
"int" default=
""/>
5698 <param name=
"text" type=
"String" default=
""/>
5699 <param name=
"help" type=
"String" default=
"wxPyEmptyString"/>
5700 <param name=
"kind" type=
"wxItemKind" default=
"wxITEM_NORMAL"/>
5703 <method name=
"PrependSeparator" type=
"wxMenuItem" overloaded=
"no">
5704 <autodoc>PrependSeparator() -
> MenuItem
</autodoc>
5706 <method name=
"PrependCheckItem" type=
"wxMenuItem" overloaded=
"no">
5707 <autodoc>PrependCheckItem(int id, String text, String help=EmptyString) -
> MenuItem
</autodoc>
5709 <param name=
"id" type=
"int" default=
""/>
5710 <param name=
"text" type=
"String" default=
""/>
5711 <param name=
"help" type=
"String" default=
"wxPyEmptyString"/>
5714 <method name=
"PrependRadioItem" type=
"wxMenuItem" overloaded=
"no">
5715 <autodoc>PrependRadioItem(int id, String text, String help=EmptyString) -
> MenuItem
</autodoc>
5717 <param name=
"id" type=
"int" default=
""/>
5718 <param name=
"text" type=
"String" default=
""/>
5719 <param name=
"help" type=
"String" default=
"wxPyEmptyString"/>
5722 <method name=
"PrependMenu" type=
"wxMenuItem" overloaded=
"no">
5723 <autodoc>PrependMenu(int id, String text, Menu submenu, String help=EmptyString) -
> MenuItem
</autodoc>
5725 <param name=
"id" type=
"int" default=
""/>
5726 <param name=
"text" type=
"String" default=
""/>
5727 <param name=
"submenu" type=
"Menu" default=
""/>
5728 <param name=
"help" type=
"String" default=
"wxPyEmptyString"/>
5731 <method name=
"Remove" type=
"wxMenuItem" overloaded=
"no">
5732 <autodoc>Remove(int id) -
> MenuItem
</autodoc>
5734 <param name=
"id" type=
"int" default=
""/>
5737 <method name=
"RemoveItem" type=
"wxMenuItem" overloaded=
"no">
5738 <autodoc>RemoveItem(MenuItem item) -
> MenuItem
</autodoc>
5740 <param name=
"item" type=
"wxMenuItem" default=
""/>
5743 <method name=
"Delete" type=
"bool" overloaded=
"no">
5744 <autodoc>Delete(int id) -
> bool
</autodoc>
5746 <param name=
"id" type=
"int" default=
""/>
5749 <method name=
"DeleteItem" type=
"bool" overloaded=
"no">
5750 <autodoc>DeleteItem(MenuItem item) -
> bool
</autodoc>
5752 <param name=
"item" type=
"wxMenuItem" default=
""/>
5755 <method name=
"Destroy" type=
"" overloaded=
"no">
5756 <autodoc>Destroy()
</autodoc>
5757 <docstring>Deletes the C++ object this Python object is a proxy for.
</docstring>
5759 <method name=
"DestroyId" type=
"bool" overloaded=
"no">
5760 <autodoc>DestroyId(int id) -
> bool
</autodoc>
5761 <docstring>Deletes the C++ object this Python object is a proxy for.
</docstring>
5763 <param name=
"id" type=
"int" default=
""/>
5766 <method name=
"DestroyItem" type=
"bool" overloaded=
"no">
5767 <autodoc>DestroyItem(MenuItem item) -
> bool
</autodoc>
5768 <docstring>Deletes the C++ object this Python object is a proxy for.
</docstring>
5770 <param name=
"item" type=
"wxMenuItem" default=
""/>
5773 <method name=
"GetMenuItemCount" type=
"size_t" overloaded=
"no">
5774 <autodoc>GetMenuItemCount() -
> size_t
</autodoc>
5776 <method name=
"GetMenuItems" type=
"PyObject" overloaded=
"no">
5777 <autodoc>GetMenuItems() -
> PyObject
</autodoc>
5779 <method name=
"FindItem" type=
"int" overloaded=
"no">
5780 <autodoc>FindItem(String item) -
> int
</autodoc>
5782 <param name=
"item" type=
"String" default=
""/>
5785 <method name=
"FindItemById" type=
"wxMenuItem" overloaded=
"no">
5786 <autodoc>FindItemById(int id) -
> MenuItem
</autodoc>
5788 <param name=
"id" type=
"int" default=
""/>
5791 <method name=
"FindItemByPosition" type=
"wxMenuItem" overloaded=
"no">
5792 <autodoc>FindItemByPosition(size_t position) -
> MenuItem
</autodoc>
5794 <param name=
"position" type=
"size_t" default=
""/>
5797 <method name=
"Enable" type=
"" overloaded=
"no">
5798 <autodoc>Enable(int id, bool enable)
</autodoc>
5800 <param name=
"id" type=
"int" default=
""/>
5801 <param name=
"enable" type=
"bool" default=
""/>
5804 <method name=
"IsEnabled" type=
"bool" overloaded=
"no">
5805 <autodoc>IsEnabled(int id) -
> bool
</autodoc>
5807 <param name=
"id" type=
"int" default=
""/>
5810 <method name=
"Check" type=
"" overloaded=
"no">
5811 <autodoc>Check(int id, bool check)
</autodoc>
5813 <param name=
"id" type=
"int" default=
""/>
5814 <param name=
"check" type=
"bool" default=
""/>
5817 <method name=
"IsChecked" type=
"bool" overloaded=
"no">
5818 <autodoc>IsChecked(int id) -
> bool
</autodoc>
5820 <param name=
"id" type=
"int" default=
""/>
5823 <method name=
"SetLabel" type=
"" overloaded=
"no">
5824 <autodoc>SetLabel(int id, String label)
</autodoc>
5826 <param name=
"id" type=
"int" default=
""/>
5827 <param name=
"label" type=
"String" default=
""/>
5830 <method name=
"GetLabel" type=
"String" overloaded=
"no">
5831 <autodoc>GetLabel(int id) -
> String
</autodoc>
5833 <param name=
"id" type=
"int" default=
""/>
5836 <method name=
"SetHelpString" type=
"" overloaded=
"no">
5837 <autodoc>SetHelpString(int id, String helpString)
</autodoc>
5839 <param name=
"id" type=
"int" default=
""/>
5840 <param name=
"helpString" type=
"String" default=
""/>
5843 <method name=
"GetHelpString" type=
"String" overloaded=
"no">
5844 <autodoc>GetHelpString(int id) -
> String
</autodoc>
5846 <param name=
"id" type=
"int" default=
""/>
5849 <method name=
"SetTitle" type=
"" overloaded=
"no">
5850 <autodoc>SetTitle(String title)
</autodoc>
5852 <param name=
"title" type=
"String" default=
""/>
5855 <method name=
"GetTitle" type=
"String" overloaded=
"no">
5856 <autodoc>GetTitle() -
> String
</autodoc>
5858 <method name=
"SetEventHandler" type=
"" overloaded=
"no">
5859 <autodoc>SetEventHandler(EvtHandler handler)
</autodoc>
5861 <param name=
"handler" type=
"EvtHandler" default=
""/>
5864 <method name=
"GetEventHandler" type=
"EvtHandler" overloaded=
"no">
5865 <autodoc>GetEventHandler() -
> EvtHandler
</autodoc>
5867 <method name=
"SetInvokingWindow" type=
"" overloaded=
"no">
5868 <autodoc>SetInvokingWindow(Window win)
</autodoc>
5870 <param name=
"win" type=
"Window" default=
""/>
5873 <method name=
"GetInvokingWindow" type=
"Window" overloaded=
"no">
5874 <autodoc>GetInvokingWindow() -
> Window
</autodoc>
5876 <method name=
"GetStyle" type=
"long" overloaded=
"no">
5877 <autodoc>GetStyle() -
> long
</autodoc>
5879 <method name=
"UpdateUI" type=
"" overloaded=
"no">
5880 <autodoc>UpdateUI(EvtHandler source=None)
</autodoc>
5882 <param name=
"source" type=
"EvtHandler" default=
"NULL"/>
5885 <method name=
"GetMenuBar" type=
"wxMenuBar" overloaded=
"no">
5886 <autodoc>GetMenuBar() -
> MenuBar
</autodoc>
5888 <method name=
"Attach" type=
"" overloaded=
"no">
5889 <autodoc>Attach(wxMenuBarBase menubar)
</autodoc>
5891 <param name=
"menubar" type=
"wxMenuBarBase" default=
""/>
5894 <method name=
"Detach" type=
"" overloaded=
"no">
5895 <autodoc>Detach()
</autodoc>
5897 <method name=
"IsAttached" type=
"bool" overloaded=
"no">
5898 <autodoc>IsAttached() -
> bool
</autodoc>
5900 <method name=
"SetParent" type=
"" overloaded=
"no">
5901 <autodoc>SetParent(Menu parent)
</autodoc>
5903 <param name=
"parent" type=
"Menu" default=
""/>
5906 <method name=
"GetParent" type=
"Menu" overloaded=
"no">
5907 <autodoc>GetParent() -
> Menu
</autodoc>
5911 #---------------------------------------------------------------------------
5913 <class name=
"MenuBar" oldname=
"wxMenuBar" module=
"core">
5914 <baseclass name=
"Window"/>
5915 <constructor name=
"MenuBar" overloaded=
"no">
5916 <autodoc>__init__(long style=
0) -
> MenuBar
</autodoc>
5918 <param name=
"style" type=
"long" default=
"0"/>
5921 <method name=
"Append" type=
"bool" overloaded=
"no">
5922 <autodoc>Append(Menu menu, String title) -
> bool
</autodoc>
5924 <param name=
"menu" type=
"Menu" default=
""/>
5925 <param name=
"title" type=
"String" default=
""/>
5928 <method name=
"Insert" type=
"bool" overloaded=
"no">
5929 <autodoc>Insert(size_t pos, Menu menu, String title) -
> bool
</autodoc>
5931 <param name=
"pos" type=
"size_t" default=
""/>
5932 <param name=
"menu" type=
"Menu" default=
""/>
5933 <param name=
"title" type=
"String" default=
""/>
5936 <method name=
"GetMenuCount" type=
"size_t" overloaded=
"no">
5937 <autodoc>GetMenuCount() -
> size_t
</autodoc>
5939 <method name=
"GetMenu" type=
"Menu" overloaded=
"no">
5940 <autodoc>GetMenu(size_t pos) -
> Menu
</autodoc>
5942 <param name=
"pos" type=
"size_t" default=
""/>
5945 <method name=
"Replace" type=
"Menu" overloaded=
"no">
5946 <autodoc>Replace(size_t pos, Menu menu, String title) -
> Menu
</autodoc>
5948 <param name=
"pos" type=
"size_t" default=
""/>
5949 <param name=
"menu" type=
"Menu" default=
""/>
5950 <param name=
"title" type=
"String" default=
""/>
5953 <method name=
"Remove" type=
"Menu" overloaded=
"no">
5954 <autodoc>Remove(size_t pos) -
> Menu
</autodoc>
5956 <param name=
"pos" type=
"size_t" default=
""/>
5959 <method name=
"EnableTop" type=
"" overloaded=
"no">
5960 <autodoc>EnableTop(size_t pos, bool enable)
</autodoc>
5962 <param name=
"pos" type=
"size_t" default=
""/>
5963 <param name=
"enable" type=
"bool" default=
""/>
5966 <method name=
"IsEnabledTop" type=
"bool" overloaded=
"no">
5967 <autodoc>IsEnabledTop(size_t pos) -
> bool
</autodoc>
5969 <param name=
"pos" type=
"size_t" default=
""/>
5972 <method name=
"SetLabelTop" type=
"" overloaded=
"no">
5973 <autodoc>SetLabelTop(size_t pos, String label)
</autodoc>
5975 <param name=
"pos" type=
"size_t" default=
""/>
5976 <param name=
"label" type=
"String" default=
""/>
5979 <method name=
"GetLabelTop" type=
"String" overloaded=
"no">
5980 <autodoc>GetLabelTop(size_t pos) -
> String
</autodoc>
5982 <param name=
"pos" type=
"size_t" default=
""/>
5985 <method name=
"FindMenuItem" type=
"int" overloaded=
"no">
5986 <autodoc>FindMenuItem(String menu, String item) -
> int
</autodoc>
5988 <param name=
"menu" type=
"String" default=
""/>
5989 <param name=
"item" type=
"String" default=
""/>
5992 <method name=
"FindItemById" type=
"wxMenuItem" overloaded=
"no">
5993 <autodoc>FindItemById(int id) -
> MenuItem
</autodoc>
5995 <param name=
"id" type=
"int" default=
""/>
5998 <method name=
"FindMenu" type=
"int" overloaded=
"no">
5999 <autodoc>FindMenu(String title) -
> int
</autodoc>
6001 <param name=
"title" type=
"String" default=
""/>
6004 <method name=
"Enable" type=
"" overloaded=
"no">
6005 <autodoc>Enable(int id, bool enable)
</autodoc>
6007 <param name=
"id" type=
"int" default=
""/>
6008 <param name=
"enable" type=
"bool" default=
""/>
6011 <method name=
"Check" type=
"" overloaded=
"no">
6012 <autodoc>Check(int id, bool check)
</autodoc>
6014 <param name=
"id" type=
"int" default=
""/>
6015 <param name=
"check" type=
"bool" default=
""/>
6018 <method name=
"IsChecked" type=
"bool" overloaded=
"no">
6019 <autodoc>IsChecked(int id) -
> bool
</autodoc>
6021 <param name=
"id" type=
"int" default=
""/>
6024 <method name=
"IsEnabled" type=
"bool" overloaded=
"no">
6025 <autodoc>IsEnabled(int id) -
> bool
</autodoc>
6027 <param name=
"id" type=
"int" default=
""/>
6030 <method name=
"SetLabel" type=
"" overloaded=
"no">
6031 <autodoc>SetLabel(int id, String label)
</autodoc>
6033 <param name=
"id" type=
"int" default=
""/>
6034 <param name=
"label" type=
"String" default=
""/>
6037 <method name=
"GetLabel" type=
"String" overloaded=
"no">
6038 <autodoc>GetLabel(int id) -
> String
</autodoc>
6040 <param name=
"id" type=
"int" default=
""/>
6043 <method name=
"SetHelpString" type=
"" overloaded=
"no">
6044 <autodoc>SetHelpString(int id, String helpString)
</autodoc>
6046 <param name=
"id" type=
"int" default=
""/>
6047 <param name=
"helpString" type=
"String" default=
""/>
6050 <method name=
"GetHelpString" type=
"String" overloaded=
"no">
6051 <autodoc>GetHelpString(int id) -
> String
</autodoc>
6053 <param name=
"id" type=
"int" default=
""/>
6056 <method name=
"GetFrame" type=
"wxFrame" overloaded=
"no">
6057 <autodoc>GetFrame() -
> wxFrame
</autodoc>
6059 <method name=
"IsAttached" type=
"bool" overloaded=
"no">
6060 <autodoc>IsAttached() -
> bool
</autodoc>
6062 <method name=
"Attach" type=
"" overloaded=
"no">
6063 <autodoc>Attach(wxFrame frame)
</autodoc>
6065 <param name=
"frame" type=
"wxFrame" default=
""/>
6068 <method name=
"Detach" type=
"" overloaded=
"no">
6069 <autodoc>Detach()
</autodoc>
6073 #---------------------------------------------------------------------------
6075 <class name=
"MenuItem" oldname=
"wxMenuItem" module=
"core">
6076 <baseclass name=
"Object"/>
6077 <constructor name=
"MenuItem" overloaded=
"no">
6078 <autodoc>__init__(Menu parentMenu=None, int id=ID_SEPARATOR, String text=EmptyString,
6079 String help=EmptyString, int kind=ITEM_NORMAL,
6080 Menu subMenu=None) -
> MenuItem
</autodoc>
6082 <param name=
"parentMenu" type=
"Menu" default=
"NULL"/>
6083 <param name=
"id" type=
"int" default=
"wxID_SEPARATOR"/>
6084 <param name=
"text" type=
"String" default=
"wxPyEmptyString"/>
6085 <param name=
"help" type=
"String" default=
"wxPyEmptyString"/>
6086 <param name=
"kind" type=
"wxItemKind" default=
"wxITEM_NORMAL"/>
6087 <param name=
"subMenu" type=
"Menu" default=
"NULL"/>
6090 <method name=
"GetMenu" type=
"Menu" overloaded=
"no">
6091 <autodoc>GetMenu() -
> Menu
</autodoc>
6093 <method name=
"SetMenu" type=
"" overloaded=
"no">
6094 <autodoc>SetMenu(Menu menu)
</autodoc>
6096 <param name=
"menu" type=
"Menu" default=
""/>
6099 <method name=
"SetId" type=
"" overloaded=
"no">
6100 <autodoc>SetId(int id)
</autodoc>
6102 <param name=
"id" type=
"int" default=
""/>
6105 <method name=
"GetId" type=
"int" overloaded=
"no">
6106 <autodoc>GetId() -
> int
</autodoc>
6108 <method name=
"IsSeparator" type=
"bool" overloaded=
"no">
6109 <autodoc>IsSeparator() -
> bool
</autodoc>
6111 <method name=
"SetText" type=
"" overloaded=
"no">
6112 <autodoc>SetText(String str)
</autodoc>
6114 <param name=
"str" type=
"String" default=
""/>
6117 <method name=
"GetLabel" type=
"String" overloaded=
"no">
6118 <autodoc>GetLabel() -
> String
</autodoc>
6120 <method name=
"GetText" type=
"String" overloaded=
"no">
6121 <autodoc>GetText() -
> String
</autodoc>
6123 <staticmethod name=
"GetLabelFromText" type=
"String" overloaded=
"no">
6124 <autodoc>GetLabelFromText(String text) -
> String
</autodoc>
6126 <param name=
"text" type=
"String" default=
""/>
6129 <method name=
"GetKind" type=
"wxItemKind" overloaded=
"no">
6130 <autodoc>GetKind() -
> int
</autodoc>
6132 <method name=
"SetCheckable" type=
"" overloaded=
"no">
6133 <autodoc>SetCheckable(bool checkable)
</autodoc>
6135 <param name=
"checkable" type=
"bool" default=
""/>
6138 <method name=
"IsCheckable" type=
"bool" overloaded=
"no">
6139 <autodoc>IsCheckable() -
> bool
</autodoc>
6141 <method name=
"IsSubMenu" type=
"bool" overloaded=
"no">
6142 <autodoc>IsSubMenu() -
> bool
</autodoc>
6144 <method name=
"SetSubMenu" type=
"" overloaded=
"no">
6145 <autodoc>SetSubMenu(Menu menu)
</autodoc>
6147 <param name=
"menu" type=
"Menu" default=
""/>
6150 <method name=
"GetSubMenu" type=
"Menu" overloaded=
"no">
6151 <autodoc>GetSubMenu() -
> Menu
</autodoc>
6153 <method name=
"Enable" type=
"" overloaded=
"no">
6154 <autodoc>Enable(bool enable=True)
</autodoc>
6156 <param name=
"enable" type=
"bool" default=
"True"/>
6159 <method name=
"IsEnabled" type=
"bool" overloaded=
"no">
6160 <autodoc>IsEnabled() -
> bool
</autodoc>
6162 <method name=
"Check" type=
"" overloaded=
"no">
6163 <autodoc>Check(bool check=True)
</autodoc>
6165 <param name=
"check" type=
"bool" default=
"True"/>
6168 <method name=
"IsChecked" type=
"bool" overloaded=
"no">
6169 <autodoc>IsChecked() -
> bool
</autodoc>
6171 <method name=
"Toggle" type=
"" overloaded=
"no">
6172 <autodoc>Toggle()
</autodoc>
6174 <method name=
"SetHelp" type=
"" overloaded=
"no">
6175 <autodoc>SetHelp(String str)
</autodoc>
6177 <param name=
"str" type=
"String" default=
""/>
6180 <method name=
"GetHelp" type=
"String" overloaded=
"no">
6181 <autodoc>GetHelp() -
> String
</autodoc>
6183 <method name=
"GetAccel" type=
"AcceleratorEntry" overloaded=
"no">
6184 <autodoc>GetAccel() -
> AcceleratorEntry
</autodoc>
6186 <method name=
"SetAccel" type=
"" overloaded=
"no">
6187 <autodoc>SetAccel(AcceleratorEntry accel)
</autodoc>
6189 <param name=
"accel" type=
"AcceleratorEntry" default=
""/>
6192 <staticmethod name=
"GetDefaultMarginWidth" type=
"int" overloaded=
"no">
6193 <autodoc>GetDefaultMarginWidth() -
> int
</autodoc>
6195 <method name=
"SetBitmap" type=
"" overloaded=
"no">
6196 <autodoc>SetBitmap(Bitmap bitmap)
</autodoc>
6198 <param name=
"bitmap" type=
"wxBitmap" default=
""/>
6201 <method name=
"GetBitmap" type=
"wxBitmap" overloaded=
"no">
6202 <autodoc>GetBitmap() -
> Bitmap
</autodoc>
6206 #---------------------------------------------------------------------------
6208 <class name=
"Control" oldname=
"wxControl" module=
"core">
6209 <docstring>This is the base class for a control or 'widget'.
6211 A control is generally a small window which processes user input and/or
6212 displays one or more item of data.
</docstring>
6213 <baseclass name=
"Window"/>
6214 <constructor name=
"Control" overloaded=
"no">
6215 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
6216 long style=
0, Validator validator=DefaultValidator,
6217 String name=ControlNameStr) -
> Control
</autodoc>
6218 <docstring>Create a Control. Normally you should only call this from a
6219 subclass' __init__ as a plain old wx.Control is not very useful.
</docstring>
6221 <param name=
"parent" type=
"Window" default=
""/>
6222 <param name=
"id" type=
"int" default=
""/>
6223 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
6224 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
6225 <param name=
"style" type=
"long" default=
"0"/>
6226 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
6227 <param name=
"name" type=
"String" default=
"wxPyControlNameStr"/>
6230 <constructor name=
"PreControl" overloaded=
"no">
6231 <autodoc>PreControl() -
> Control
</autodoc>
6232 <docstring>Precreate a Control control for
2-phase creation
</docstring>
6234 <method name=
"Create" type=
"bool" overloaded=
"no">
6235 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
6236 long style=
0, Validator validator=DefaultValidator,
6237 String name=ControlNameStr) -
> bool
</autodoc>
6238 <docstring>Do the
2nd phase and create the GUI control.
</docstring>
6240 <param name=
"parent" type=
"Window" default=
""/>
6241 <param name=
"id" type=
"int" default=
""/>
6242 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
6243 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
6244 <param name=
"style" type=
"long" default=
"0"/>
6245 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
6246 <param name=
"name" type=
"String" default=
"wxPyControlNameStr"/>
6249 <method name=
"Command" type=
"" overloaded=
"no">
6250 <autodoc>Command(CommandEvent event)
</autodoc>
6251 <docstring>Simulates the effect of the user issuing a command to the
6252 item. See wxCommandEvent.
</docstring>
6254 <param name=
"event" type=
"CommandEvent" default=
""/>
6257 <method name=
"GetLabel" type=
"String" overloaded=
"no">
6258 <autodoc>GetLabel() -
> String
</autodoc>
6259 <docstring>Return a control's text.
</docstring>
6261 <method name=
"SetLabel" type=
"" overloaded=
"no">
6262 <autodoc>SetLabel(String label)
</autodoc>
6263 <docstring>Sets the item's text.
</docstring>
6265 <param name=
"label" type=
"String" default=
""/>
6270 #---------------------------------------------------------------------------
6272 <class name=
"ItemContainer" oldname=
"wxItemContainer" module=
"core">
6273 <docstring>wx.ItemContainer defines an interface which is implemented by all
6274 controls which have string subitems, each of which may be
6275 selected, such as wx.ListBox, wx.CheckListBox, wx.Choice and
6276 wx.ComboBox (which implements an extended interface deriving from
6279 It defines the methods for accessing the control's items and
6280 although each of the derived classes implements them differently,
6281 they still all conform to the same interface.
6283 The items in a wx.ItemContainer have (non empty) string labels
6284 and, optionally, client data associated with them.
6286 <method name=
"Append" type=
"int" overloaded=
"no">
6287 <autodoc>Append(String item, PyObject clientData=None) -
> int
</autodoc>
6288 <docstring>Adds the item to the control, associating the given data with the
6289 item if not None. The return value is the index of the newly
6290 added item which may be different from the last one if the
6291 control is sorted (e.g. has wx.LB_SORT or wx.CB_SORT style).
</docstring>
6293 <param name=
"item" type=
"String" default=
""/>
6294 <param name=
"clientData" type=
"PyObject" default=
"NULL"/>
6297 <method name=
"AppendItems" type=
"" overloaded=
"no">
6298 <autodoc>AppendItems(wxArrayString strings)
</autodoc>
6299 <docstring>Apend several items at once to the control. Notice that calling
6300 this method may be much faster than appending the items one by
6301 one if you need to add a lot of items.
</docstring>
6303 <param name=
"strings" type=
"wxArrayString" default=
""/>
6306 <method name=
"Insert" type=
"int" overloaded=
"no">
6307 <autodoc>Insert(String item, int pos, PyObject clientData=None) -
> int
</autodoc>
6308 <docstring>Insert an item into the control before the item at the pos index,
6309 optionally associating some data object with the item.
</docstring>
6311 <param name=
"item" type=
"String" default=
""/>
6312 <param name=
"pos" type=
"int" default=
""/>
6313 <param name=
"clientData" type=
"PyObject" default=
"NULL"/>
6316 <method name=
"Clear" type=
"" overloaded=
"no">
6317 <autodoc>Clear()
</autodoc>
6318 <docstring>Removes all items from the control.
</docstring>
6320 <method name=
"Delete" type=
"" overloaded=
"no">
6321 <autodoc>Delete(int n)
</autodoc>
6322 <docstring>Deletes the item at the zero-based index 'n' from the control.
6323 Note that it is an error (signalled by a PyAssertionError
6324 exception if enabled) to remove an item with the index negative
6325 or greater or equal than the number of items in the control.
</docstring>
6327 <param name=
"n" type=
"int" default=
""/>
6330 <method name=
"GetCount" type=
"int" overloaded=
"no">
6331 <autodoc>GetCount() -
> int
</autodoc>
6332 <docstring>Returns the number of items in the control.
</docstring>
6334 <method name=
"IsEmpty" type=
"bool" overloaded=
"no">
6335 <autodoc>IsEmpty() -
> bool
</autodoc>
6336 <docstring>Returns True if the control is empty or False if it has some items.
</docstring>
6338 <method name=
"GetString" type=
"String" overloaded=
"no">
6339 <autodoc>GetString(int n) -
> String
</autodoc>
6340 <docstring>Returns the label of the item with the given index.
</docstring>
6342 <param name=
"n" type=
"int" default=
""/>
6345 <method name=
"GetStrings" type=
"wxArrayString" overloaded=
"no">
6346 <autodoc>GetStrings() -
> wxArrayString
</autodoc>
6348 <method name=
"SetString" type=
"" overloaded=
"no">
6349 <autodoc>SetString(int n, String s)
</autodoc>
6350 <docstring>Sets the label for the given item.
</docstring>
6352 <param name=
"n" type=
"int" default=
""/>
6353 <param name=
"s" type=
"String" default=
""/>
6356 <method name=
"FindString" type=
"int" overloaded=
"no">
6357 <autodoc>FindString(String s) -
> int
</autodoc>
6358 <docstring>Finds an item whose label matches the given string. Returns the
6359 zero-based position of the item, or wx.NOT_FOUND if the string
6360 was not found.
</docstring>
6362 <param name=
"s" type=
"String" default=
""/>
6365 <method name=
"Select" type=
"" overloaded=
"no">
6366 <autodoc>Select(int n)
</autodoc>
6367 <docstring>Sets the item at index 'n' to be the selected item.
</docstring>
6369 <param name=
"n" type=
"int" default=
""/>
6372 <method name=
"GetSelection" type=
"int" overloaded=
"no">
6373 <autodoc>GetSelection() -
> int
</autodoc>
6374 <docstring>Returns the index of the selected item or wx.NOT_FOUND if no item is selected.
</docstring>
6376 <method name=
"GetStringSelection" type=
"String" overloaded=
"no">
6377 <autodoc>GetStringSelection() -
> String
</autodoc>
6378 <docstring>Returns the label of the selected item or an empty string if no item is selected.
</docstring>
6380 <method name=
"GetClientData" type=
"PyObject" overloaded=
"no">
6381 <autodoc>GetClientData(int n) -
> PyObject
</autodoc>
6382 <docstring>Returns the client data associated with the given item, (if any.)
</docstring>
6384 <param name=
"n" type=
"int" default=
""/>
6387 <method name=
"SetClientData" type=
"" overloaded=
"no">
6388 <autodoc>SetClientData(int n, PyObject clientData)
</autodoc>
6389 <docstring>Associate the given client data with the item at position n.
</docstring>
6391 <param name=
"n" type=
"int" default=
""/>
6392 <param name=
"clientData" type=
"PyObject" default=
""/>
6397 #---------------------------------------------------------------------------
6399 <class name=
"ControlWithItems" oldname=
"wxControlWithItems" module=
"core">
6400 <docstring>wx.ControlWithItems combines the wx.ItemContainer class with the
6401 wx.Control class, and is used for the base class of various
6402 controls that have items.
</docstring>
6403 <baseclass name=
"Control"/>
6404 <baseclass name=
"ItemContainer"/>
6407 #---------------------------------------------------------------------------
6409 <class name=
"SizerItem" oldname=
"wxSizerItem" module=
"core">
6410 <baseclass name=
"Object"/>
6411 <constructor name=
"SizerItem" overloaded=
"no">
6412 <autodoc>__init__() -
> SizerItem
</autodoc>
6414 <constructor name=
"SizerItemSpacer" overloaded=
"no">
6415 <autodoc>SizerItemSpacer(int width, int height, int proportion, int flag, int border,
6416 Object userData) -
> SizerItem
</autodoc>
6418 <param name=
"width" type=
"int" default=
""/>
6419 <param name=
"height" type=
"int" default=
""/>
6420 <param name=
"proportion" type=
"int" default=
""/>
6421 <param name=
"flag" type=
"int" default=
""/>
6422 <param name=
"border" type=
"int" default=
""/>
6423 <param name=
"userData" type=
"Object" default=
""/>
6426 <constructor name=
"SizerItemWindow" overloaded=
"no">
6427 <autodoc>SizerItemWindow(Window window, int proportion, int flag, int border,
6428 Object userData) -
> SizerItem
</autodoc>
6430 <param name=
"window" type=
"Window" default=
""/>
6431 <param name=
"proportion" type=
"int" default=
""/>
6432 <param name=
"flag" type=
"int" default=
""/>
6433 <param name=
"border" type=
"int" default=
""/>
6434 <param name=
"userData" type=
"Object" default=
""/>
6437 <constructor name=
"SizerItemSizer" overloaded=
"no">
6438 <autodoc>SizerItemSizer(Sizer sizer, int proportion, int flag, int border,
6439 Object userData) -
> SizerItem
</autodoc>
6441 <param name=
"sizer" type=
"wxSizer" default=
""/>
6442 <param name=
"proportion" type=
"int" default=
""/>
6443 <param name=
"flag" type=
"int" default=
""/>
6444 <param name=
"border" type=
"int" default=
""/>
6445 <param name=
"userData" type=
"Object" default=
""/>
6448 <method name=
"DeleteWindows" type=
"" overloaded=
"no">
6449 <autodoc>DeleteWindows()
</autodoc>
6451 <method name=
"DetachSizer" type=
"" overloaded=
"no">
6452 <autodoc>DetachSizer()
</autodoc>
6454 <method name=
"GetSize" type=
"Size" overloaded=
"no">
6455 <autodoc>GetSize() -
> Size
</autodoc>
6457 <method name=
"CalcMin" type=
"Size" overloaded=
"no">
6458 <autodoc>CalcMin() -
> Size
</autodoc>
6460 <method name=
"SetDimension" type=
"" overloaded=
"no">
6461 <autodoc>SetDimension(Point pos, Size size)
</autodoc>
6463 <param name=
"pos" type=
"Point" default=
""/>
6464 <param name=
"size" type=
"Size" default=
""/>
6467 <method name=
"GetMinSize" type=
"Size" overloaded=
"no">
6468 <autodoc>GetMinSize() -
> Size
</autodoc>
6470 <method name=
"SetInitSize" type=
"" overloaded=
"no">
6471 <autodoc>SetInitSize(int x, int y)
</autodoc>
6473 <param name=
"x" type=
"int" default=
""/>
6474 <param name=
"y" type=
"int" default=
""/>
6477 <method name=
"SetRatioWH" type=
"" overloaded=
"no">
6478 <autodoc>SetRatioWH(int width, int height)
</autodoc>
6480 <param name=
"width" type=
"int" default=
""/>
6481 <param name=
"height" type=
"int" default=
""/>
6484 <method name=
"SetRatioSize" type=
"" overloaded=
"no">
6485 <autodoc>SetRatioSize(Size size)
</autodoc>
6487 <param name=
"size" type=
"Size" default=
""/>
6490 <method name=
"SetRatio" type=
"" overloaded=
"no">
6491 <autodoc>SetRatio(float ratio)
</autodoc>
6493 <param name=
"ratio" type=
"float" default=
""/>
6496 <method name=
"GetRatio" type=
"float" overloaded=
"no">
6497 <autodoc>GetRatio() -
> float
</autodoc>
6499 <method name=
"IsWindow" type=
"bool" overloaded=
"no">
6500 <autodoc>IsWindow() -
> bool
</autodoc>
6502 <method name=
"IsSizer" type=
"bool" overloaded=
"no">
6503 <autodoc>IsSizer() -
> bool
</autodoc>
6505 <method name=
"IsSpacer" type=
"bool" overloaded=
"no">
6506 <autodoc>IsSpacer() -
> bool
</autodoc>
6508 <method name=
"SetProportion" type=
"" overloaded=
"no">
6509 <autodoc>SetProportion(int proportion)
</autodoc>
6511 <param name=
"proportion" type=
"int" default=
""/>
6514 <method name=
"GetProportion" type=
"int" overloaded=
"no">
6515 <autodoc>GetProportion() -
> int
</autodoc>
6517 <method name=
"SetFlag" type=
"" overloaded=
"no">
6518 <autodoc>SetFlag(int flag)
</autodoc>
6520 <param name=
"flag" type=
"int" default=
""/>
6523 <method name=
"GetFlag" type=
"int" overloaded=
"no">
6524 <autodoc>GetFlag() -
> int
</autodoc>
6526 <method name=
"SetBorder" type=
"" overloaded=
"no">
6527 <autodoc>SetBorder(int border)
</autodoc>
6529 <param name=
"border" type=
"int" default=
""/>
6532 <method name=
"GetBorder" type=
"int" overloaded=
"no">
6533 <autodoc>GetBorder() -
> int
</autodoc>
6535 <method name=
"GetWindow" type=
"Window" overloaded=
"no">
6536 <autodoc>GetWindow() -
> Window
</autodoc>
6538 <method name=
"SetWindow" type=
"" overloaded=
"no">
6539 <autodoc>SetWindow(Window window)
</autodoc>
6541 <param name=
"window" type=
"Window" default=
""/>
6544 <method name=
"GetSizer" type=
"wxSizer" overloaded=
"no">
6545 <autodoc>GetSizer() -
> Sizer
</autodoc>
6547 <method name=
"SetSizer" type=
"" overloaded=
"no">
6548 <autodoc>SetSizer(Sizer sizer)
</autodoc>
6550 <param name=
"sizer" type=
"wxSizer" default=
""/>
6553 <method name=
"GetSpacer" type=
"Size" overloaded=
"no">
6554 <autodoc>GetSpacer() -
> Size
</autodoc>
6556 <method name=
"SetSpacer" type=
"" overloaded=
"no">
6557 <autodoc>SetSpacer(Size size)
</autodoc>
6559 <param name=
"size" type=
"Size" default=
""/>
6562 <method name=
"Show" type=
"" overloaded=
"no">
6563 <autodoc>Show(bool show)
</autodoc>
6565 <param name=
"show" type=
"bool" default=
""/>
6568 <method name=
"IsShown" type=
"bool" overloaded=
"no">
6569 <autodoc>IsShown() -
> bool
</autodoc>
6571 <method name=
"GetPosition" type=
"Point" overloaded=
"no">
6572 <autodoc>GetPosition() -
> Point
</autodoc>
6574 <method name=
"GetUserData" type=
"PyObject" overloaded=
"no">
6575 <autodoc>GetUserData() -
> PyObject
</autodoc>
6578 <class name=
"Sizer" oldname=
"wxSizer" module=
"core">
6579 <baseclass name=
"Object"/>
6580 <method name=
"_setOORInfo" type=
"" overloaded=
"no">
6581 <autodoc>_setOORInfo(PyObject _self)
</autodoc>
6583 <param name=
"_self" type=
"PyObject" default=
""/>
6586 <method name=
"Add" type=
"" overloaded=
"no">
6587 <autodoc>Add(PyObject item, int proportion=
0, int flag=
0, int border=
0,
6588 PyObject userData=None)
</autodoc>
6590 <param name=
"item" type=
"PyObject" default=
""/>
6591 <param name=
"proportion" type=
"int" default=
"0"/>
6592 <param name=
"flag" type=
"int" default=
"0"/>
6593 <param name=
"border" type=
"int" default=
"0"/>
6594 <param name=
"userData" type=
"PyObject" default=
"NULL"/>
6597 <method name=
"Insert" type=
"" overloaded=
"no">
6598 <autodoc>Insert(int before, PyObject item, int proportion=
0, int flag=
0,
6599 int border=
0, PyObject userData=None)
</autodoc>
6601 <param name=
"before" type=
"int" default=
""/>
6602 <param name=
"item" type=
"PyObject" default=
""/>
6603 <param name=
"proportion" type=
"int" default=
"0"/>
6604 <param name=
"flag" type=
"int" default=
"0"/>
6605 <param name=
"border" type=
"int" default=
"0"/>
6606 <param name=
"userData" type=
"PyObject" default=
"NULL"/>
6609 <method name=
"Prepend" type=
"" overloaded=
"no">
6610 <autodoc>Prepend(PyObject item, int proportion=
0, int flag=
0, int border=
0,
6611 PyObject userData=None)
</autodoc>
6613 <param name=
"item" type=
"PyObject" default=
""/>
6614 <param name=
"proportion" type=
"int" default=
"0"/>
6615 <param name=
"flag" type=
"int" default=
"0"/>
6616 <param name=
"border" type=
"int" default=
"0"/>
6617 <param name=
"userData" type=
"PyObject" default=
"NULL"/>
6620 <method name=
"Remove" type=
"bool" overloaded=
"no">
6621 <autodoc>Remove(PyObject item) -
> bool
</autodoc>
6623 <param name=
"item" type=
"PyObject" default=
""/>
6626 <method name=
"_SetItemMinSize" type=
"" overloaded=
"no">
6627 <autodoc>_SetItemMinSize(PyObject item, Size size)
</autodoc>
6629 <param name=
"item" type=
"PyObject" default=
""/>
6630 <param name=
"size" type=
"Size" default=
""/>
6633 <method name=
"AddItem" type=
"" overloaded=
"no">
6634 <autodoc>AddItem(SizerItem item)
</autodoc>
6636 <param name=
"item" type=
"SizerItem" default=
""/>
6639 <method name=
"InsertItem" type=
"" overloaded=
"no">
6640 <autodoc>InsertItem(size_t index, SizerItem item)
</autodoc>
6642 <param name=
"index" type=
"size_t" default=
""/>
6643 <param name=
"item" type=
"SizerItem" default=
""/>
6646 <method name=
"PrependItem" type=
"" overloaded=
"no">
6647 <autodoc>PrependItem(SizerItem item)
</autodoc>
6649 <param name=
"item" type=
"SizerItem" default=
""/>
6652 <method name=
"SetDimension" type=
"" overloaded=
"no">
6653 <autodoc>SetDimension(int x, int y, int width, int height)
</autodoc>
6655 <param name=
"x" type=
"int" default=
""/>
6656 <param name=
"y" type=
"int" default=
""/>
6657 <param name=
"width" type=
"int" default=
""/>
6658 <param name=
"height" type=
"int" default=
""/>
6661 <method name=
"SetMinSize" type=
"" overloaded=
"no">
6662 <autodoc>SetMinSize(Size size)
</autodoc>
6664 <param name=
"size" type=
"Size" default=
""/>
6667 <method name=
"GetSize" type=
"Size" overloaded=
"no">
6668 <autodoc>GetSize() -
> Size
</autodoc>
6670 <method name=
"GetPosition" type=
"Point" overloaded=
"no">
6671 <autodoc>GetPosition() -
> Point
</autodoc>
6673 <method name=
"GetMinSize" type=
"Size" overloaded=
"no">
6674 <autodoc>GetMinSize() -
> Size
</autodoc>
6676 <method name=
"RecalcSizes" type=
"" overloaded=
"no">
6677 <autodoc>RecalcSizes()
</autodoc>
6679 <method name=
"CalcMin" type=
"Size" overloaded=
"no">
6680 <autodoc>CalcMin() -
> Size
</autodoc>
6682 <method name=
"Layout" type=
"" overloaded=
"no">
6683 <autodoc>Layout()
</autodoc>
6685 <method name=
"Fit" type=
"Size" overloaded=
"no">
6686 <autodoc>Fit(Window window) -
> Size
</autodoc>
6688 <param name=
"window" type=
"Window" default=
""/>
6691 <method name=
"FitInside" type=
"" overloaded=
"no">
6692 <autodoc>FitInside(Window window)
</autodoc>
6694 <param name=
"window" type=
"Window" default=
""/>
6697 <method name=
"SetSizeHints" type=
"" overloaded=
"no">
6698 <autodoc>SetSizeHints(Window window)
</autodoc>
6700 <param name=
"window" type=
"Window" default=
""/>
6703 <method name=
"SetVirtualSizeHints" type=
"" overloaded=
"no">
6704 <autodoc>SetVirtualSizeHints(Window window)
</autodoc>
6706 <param name=
"window" type=
"Window" default=
""/>
6709 <method name=
"Clear" type=
"" overloaded=
"no">
6710 <autodoc>Clear(bool delete_windows=False)
</autodoc>
6712 <param name=
"delete_windows" type=
"bool" default=
"False"/>
6715 <method name=
"DeleteWindows" type=
"" overloaded=
"no">
6716 <autodoc>DeleteWindows()
</autodoc>
6718 <method name=
"GetChildren" type=
"PyObject" overloaded=
"no">
6719 <autodoc>GetChildren() -
> PyObject
</autodoc>
6721 <method name=
"Show" type=
"" overloaded=
"no">
6722 <autodoc>Show(PyObject item, bool show=True)
</autodoc>
6724 <param name=
"item" type=
"PyObject" default=
""/>
6725 <param name=
"show" type=
"bool" default=
"True"/>
6728 <method name=
"Hide" type=
"" overloaded=
"no">
6729 <autodoc>Hide(PyObject item)
</autodoc>
6731 <param name=
"item" type=
"PyObject" default=
""/>
6734 <method name=
"IsShown" type=
"bool" overloaded=
"no">
6735 <autodoc>IsShown(PyObject item) -
> bool
</autodoc>
6737 <param name=
"item" type=
"PyObject" default=
""/>
6740 <method name=
"ShowItems" type=
"" overloaded=
"no">
6741 <autodoc>ShowItems(bool show)
</autodoc>
6743 <param name=
"show" type=
"bool" default=
""/>
6747 <class name=
"PySizer" oldname=
"wxPySizer" module=
"core">
6748 <baseclass name=
"Sizer"/>
6749 <constructor name=
"PySizer" overloaded=
"no">
6750 <autodoc>__init__() -
> PySizer
</autodoc>
6752 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
6753 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
6755 <param name=
"self" type=
"PyObject" default=
""/>
6756 <param name=
"_class" type=
"PyObject" default=
""/>
6761 #---------------------------------------------------------------------------
6763 <class name=
"BoxSizer" oldname=
"wxBoxSizer" module=
"core">
6764 <baseclass name=
"Sizer"/>
6765 <constructor name=
"BoxSizer" overloaded=
"no">
6766 <autodoc>__init__(int orient=HORIZONTAL) -
> BoxSizer
</autodoc>
6768 <param name=
"orient" type=
"int" default=
"wxHORIZONTAL"/>
6771 <method name=
"GetOrientation" type=
"int" overloaded=
"no">
6772 <autodoc>GetOrientation() -
> int
</autodoc>
6774 <method name=
"SetOrientation" type=
"" overloaded=
"no">
6775 <autodoc>SetOrientation(int orient)
</autodoc>
6777 <param name=
"orient" type=
"int" default=
""/>
6780 <method name=
"RecalcSizes" type=
"" overloaded=
"no">
6781 <autodoc>RecalcSizes()
</autodoc>
6783 <method name=
"CalcMin" type=
"Size" overloaded=
"no">
6784 <autodoc>CalcMin() -
> Size
</autodoc>
6788 #---------------------------------------------------------------------------
6790 <class name=
"StaticBoxSizer" oldname=
"wxStaticBoxSizer" module=
"core">
6791 <baseclass name=
"BoxSizer"/>
6792 <constructor name=
"StaticBoxSizer" overloaded=
"no">
6793 <autodoc>__init__(wxStaticBox box, int orient=HORIZONTAL) -
> StaticBoxSizer
</autodoc>
6795 <param name=
"box" type=
"wxStaticBox" default=
""/>
6796 <param name=
"orient" type=
"int" default=
"wxHORIZONTAL"/>
6799 <method name=
"GetStaticBox" type=
"wxStaticBox" overloaded=
"no">
6800 <autodoc>GetStaticBox() -
> wxStaticBox
</autodoc>
6802 <method name=
"RecalcSizes" type=
"" overloaded=
"no">
6803 <autodoc>RecalcSizes()
</autodoc>
6805 <method name=
"CalcMin" type=
"Size" overloaded=
"no">
6806 <autodoc>CalcMin() -
> Size
</autodoc>
6810 #---------------------------------------------------------------------------
6812 <class name=
"GridSizer" oldname=
"wxGridSizer" module=
"core">
6813 <baseclass name=
"Sizer"/>
6814 <constructor name=
"GridSizer" overloaded=
"no">
6815 <autodoc>__init__(int rows=
1, int cols=
0, int vgap=
0, int hgap=
0) -
> GridSizer
</autodoc>
6817 <param name=
"rows" type=
"int" default=
"1"/>
6818 <param name=
"cols" type=
"int" default=
"0"/>
6819 <param name=
"vgap" type=
"int" default=
"0"/>
6820 <param name=
"hgap" type=
"int" default=
"0"/>
6823 <method name=
"RecalcSizes" type=
"" overloaded=
"no">
6824 <autodoc>RecalcSizes()
</autodoc>
6826 <method name=
"CalcMin" type=
"Size" overloaded=
"no">
6827 <autodoc>CalcMin() -
> Size
</autodoc>
6829 <method name=
"SetCols" type=
"" overloaded=
"no">
6830 <autodoc>SetCols(int cols)
</autodoc>
6832 <param name=
"cols" type=
"int" default=
""/>
6835 <method name=
"SetRows" type=
"" overloaded=
"no">
6836 <autodoc>SetRows(int rows)
</autodoc>
6838 <param name=
"rows" type=
"int" default=
""/>
6841 <method name=
"SetVGap" type=
"" overloaded=
"no">
6842 <autodoc>SetVGap(int gap)
</autodoc>
6844 <param name=
"gap" type=
"int" default=
""/>
6847 <method name=
"SetHGap" type=
"" overloaded=
"no">
6848 <autodoc>SetHGap(int gap)
</autodoc>
6850 <param name=
"gap" type=
"int" default=
""/>
6853 <method name=
"GetCols" type=
"int" overloaded=
"no">
6854 <autodoc>GetCols() -
> int
</autodoc>
6856 <method name=
"GetRows" type=
"int" overloaded=
"no">
6857 <autodoc>GetRows() -
> int
</autodoc>
6859 <method name=
"GetVGap" type=
"int" overloaded=
"no">
6860 <autodoc>GetVGap() -
> int
</autodoc>
6862 <method name=
"GetHGap" type=
"int" overloaded=
"no">
6863 <autodoc>GetHGap() -
> int
</autodoc>
6867 #---------------------------------------------------------------------------
6869 <class name=
"FlexGridSizer" oldname=
"wxFlexGridSizer" module=
"core">
6870 <baseclass name=
"GridSizer"/>
6871 <constructor name=
"FlexGridSizer" overloaded=
"no">
6872 <autodoc>__init__(int rows=
1, int cols=
0, int vgap=
0, int hgap=
0) -
> FlexGridSizer
</autodoc>
6874 <param name=
"rows" type=
"int" default=
"1"/>
6875 <param name=
"cols" type=
"int" default=
"0"/>
6876 <param name=
"vgap" type=
"int" default=
"0"/>
6877 <param name=
"hgap" type=
"int" default=
"0"/>
6880 <method name=
"RecalcSizes" type=
"" overloaded=
"no">
6881 <autodoc>RecalcSizes()
</autodoc>
6883 <method name=
"CalcMin" type=
"Size" overloaded=
"no">
6884 <autodoc>CalcMin() -
> Size
</autodoc>
6886 <method name=
"AddGrowableRow" type=
"" overloaded=
"no">
6887 <autodoc>AddGrowableRow(size_t idx, int proportion=
0)
</autodoc>
6889 <param name=
"idx" type=
"size_t" default=
""/>
6890 <param name=
"proportion" type=
"int" default=
"0"/>
6893 <method name=
"RemoveGrowableRow" type=
"" overloaded=
"no">
6894 <autodoc>RemoveGrowableRow(size_t idx)
</autodoc>
6896 <param name=
"idx" type=
"size_t" default=
""/>
6899 <method name=
"AddGrowableCol" type=
"" overloaded=
"no">
6900 <autodoc>AddGrowableCol(size_t idx, int proportion=
0)
</autodoc>
6902 <param name=
"idx" type=
"size_t" default=
""/>
6903 <param name=
"proportion" type=
"int" default=
"0"/>
6906 <method name=
"RemoveGrowableCol" type=
"" overloaded=
"no">
6907 <autodoc>RemoveGrowableCol(size_t idx)
</autodoc>
6909 <param name=
"idx" type=
"size_t" default=
""/>
6912 <method name=
"SetFlexibleDirection" type=
"" overloaded=
"no">
6913 <autodoc>SetFlexibleDirection(int direction)
</autodoc>
6915 <param name=
"direction" type=
"int" default=
""/>
6918 <method name=
"GetFlexibleDirection" type=
"int" overloaded=
"no">
6919 <autodoc>GetFlexibleDirection() -
> int
</autodoc>
6921 <method name=
"SetNonFlexibleGrowMode" type=
"" overloaded=
"no">
6922 <autodoc>SetNonFlexibleGrowMode(int mode)
</autodoc>
6924 <param name=
"mode" type=
"wxFlexSizerGrowMode" default=
""/>
6927 <method name=
"GetNonFlexibleGrowMode" type=
"wxFlexSizerGrowMode" overloaded=
"no">
6928 <autodoc>GetNonFlexibleGrowMode() -
> int
</autodoc>
6930 <method name=
"GetRowHeights" type=
"wxArrayInt" overloaded=
"no">
6931 <autodoc>GetRowHeights() -
> wxArrayInt
</autodoc>
6933 <method name=
"GetColWidths" type=
"wxArrayInt" overloaded=
"no">
6934 <autodoc>GetColWidths() -
> wxArrayInt
</autodoc>
6938 #---------------------------------------------------------------------------
6940 <class name=
"GBPosition" oldname=
"wxGBPosition" module=
"core">
6941 <constructor name=
"GBPosition" overloaded=
"no">
6942 <autodoc>__init__(int row=
0, int col=
0) -
> GBPosition
</autodoc>
6944 <param name=
"row" type=
"int" default=
"0"/>
6945 <param name=
"col" type=
"int" default=
"0"/>
6948 <method name=
"GetRow" type=
"int" overloaded=
"no">
6949 <autodoc>GetRow() -
> int
</autodoc>
6951 <method name=
"GetCol" type=
"int" overloaded=
"no">
6952 <autodoc>GetCol() -
> int
</autodoc>
6954 <method name=
"SetRow" type=
"" overloaded=
"no">
6955 <autodoc>SetRow(int row)
</autodoc>
6957 <param name=
"row" type=
"int" default=
""/>
6960 <method name=
"SetCol" type=
"" overloaded=
"no">
6961 <autodoc>SetCol(int col)
</autodoc>
6963 <param name=
"col" type=
"int" default=
""/>
6966 <method name=
"__eq__" type=
"bool" overloaded=
"no">
6967 <autodoc>__eq__(GBPosition other) -
> bool
</autodoc>
6969 <param name=
"other" type=
"GBPosition" default=
""/>
6972 <method name=
"__ne__" type=
"bool" overloaded=
"no">
6973 <autodoc>__ne__(GBPosition other) -
> bool
</autodoc>
6975 <param name=
"other" type=
"GBPosition" default=
""/>
6978 <method name=
"Set" type=
"" overloaded=
"no">
6979 <autodoc>Set(int row=
0, int col=
0)
</autodoc>
6981 <param name=
"row" type=
"int" default=
"0"/>
6982 <param name=
"col" type=
"int" default=
"0"/>
6985 <method name=
"Get" type=
"PyObject" overloaded=
"no">
6986 <autodoc>Get() -
> PyObject
</autodoc>
6989 <class name=
"GBSpan" oldname=
"wxGBSpan" module=
"core">
6990 <constructor name=
"GBSpan" overloaded=
"no">
6991 <autodoc>__init__(int rowspan=
1, int colspan=
1) -
> GBSpan
</autodoc>
6993 <param name=
"rowspan" type=
"int" default=
"1"/>
6994 <param name=
"colspan" type=
"int" default=
"1"/>
6997 <method name=
"GetRowspan" type=
"int" overloaded=
"no">
6998 <autodoc>GetRowspan() -
> int
</autodoc>
7000 <method name=
"GetColspan" type=
"int" overloaded=
"no">
7001 <autodoc>GetColspan() -
> int
</autodoc>
7003 <method name=
"SetRowspan" type=
"" overloaded=
"no">
7004 <autodoc>SetRowspan(int rowspan)
</autodoc>
7006 <param name=
"rowspan" type=
"int" default=
""/>
7009 <method name=
"SetColspan" type=
"" overloaded=
"no">
7010 <autodoc>SetColspan(int colspan)
</autodoc>
7012 <param name=
"colspan" type=
"int" default=
""/>
7015 <method name=
"__eq__" type=
"bool" overloaded=
"no">
7016 <autodoc>__eq__(GBSpan other) -
> bool
</autodoc>
7018 <param name=
"other" type=
"GBSpan" default=
""/>
7021 <method name=
"__ne__" type=
"bool" overloaded=
"no">
7022 <autodoc>__ne__(GBSpan other) -
> bool
</autodoc>
7024 <param name=
"other" type=
"GBSpan" default=
""/>
7027 <method name=
"Set" type=
"" overloaded=
"no">
7028 <autodoc>Set(int rowspan=
1, int colspan=
1)
</autodoc>
7030 <param name=
"rowspan" type=
"int" default=
"1"/>
7031 <param name=
"colspan" type=
"int" default=
"1"/>
7034 <method name=
"Get" type=
"PyObject" overloaded=
"no">
7035 <autodoc>Get() -
> PyObject
</autodoc>
7038 <class name=
"GBSizerItem" oldname=
"wxGBSizerItem" module=
"core">
7039 <baseclass name=
"SizerItem"/>
7040 <constructor name=
"GBSizerItem" overloaded=
"no">
7041 <autodoc>__init__() -
> GBSizerItem
</autodoc>
7043 <constructor name=
"GBSizerItemWindow" overloaded=
"no">
7044 <autodoc>GBSizerItemWindow(Window window, GBPosition pos, GBSpan span, int flag,
7045 int border, Object userData) -
> GBSizerItem
</autodoc>
7047 <param name=
"window" type=
"Window" default=
""/>
7048 <param name=
"pos" type=
"GBPosition" default=
""/>
7049 <param name=
"span" type=
"GBSpan" default=
""/>
7050 <param name=
"flag" type=
"int" default=
""/>
7051 <param name=
"border" type=
"int" default=
""/>
7052 <param name=
"userData" type=
"Object" default=
""/>
7055 <constructor name=
"GBSizerItemSizer" overloaded=
"no">
7056 <autodoc>GBSizerItemSizer(Sizer sizer, GBPosition pos, GBSpan span, int flag,
7057 int border, Object userData) -
> GBSizerItem
</autodoc>
7059 <param name=
"sizer" type=
"Sizer" default=
""/>
7060 <param name=
"pos" type=
"GBPosition" default=
""/>
7061 <param name=
"span" type=
"GBSpan" default=
""/>
7062 <param name=
"flag" type=
"int" default=
""/>
7063 <param name=
"border" type=
"int" default=
""/>
7064 <param name=
"userData" type=
"Object" default=
""/>
7067 <constructor name=
"GBSizerItemSpacer" overloaded=
"no">
7068 <autodoc>GBSizerItemSpacer(int width, int height, GBPosition pos, GBSpan span,
7069 int flag, int border, Object userData) -
> GBSizerItem
</autodoc>
7071 <param name=
"width" type=
"int" default=
""/>
7072 <param name=
"height" type=
"int" default=
""/>
7073 <param name=
"pos" type=
"GBPosition" default=
""/>
7074 <param name=
"span" type=
"GBSpan" default=
""/>
7075 <param name=
"flag" type=
"int" default=
""/>
7076 <param name=
"border" type=
"int" default=
""/>
7077 <param name=
"userData" type=
"Object" default=
""/>
7080 <method name=
"GetPos" type=
"GBPosition" overloaded=
"no">
7081 <autodoc>GetPos() -
> GBPosition
</autodoc>
7083 <method name=
"GetSpan" type=
"GBSpan" overloaded=
"no">
7084 <autodoc>GetSpan() -
> GBSpan
</autodoc>
7086 <method name=
"SetPos" type=
"bool" overloaded=
"no">
7087 <autodoc>SetPos(GBPosition pos) -
> bool
</autodoc>
7089 <param name=
"pos" type=
"GBPosition" default=
""/>
7092 <method name=
"SetSpan" type=
"bool" overloaded=
"no">
7093 <autodoc>SetSpan(GBSpan span) -
> bool
</autodoc>
7095 <param name=
"span" type=
"GBSpan" default=
""/>
7098 <method name=
"Intersects" type=
"bool" overloaded=
"yes">
7100 <param name=
"other" type=
"GBSizerItem" default=
""/>
7103 <method name=
"Intersects" type=
"bool" overloaded=
"yes">
7104 <autodoc>Intersects(GBSizerItem other) -
> bool
7105 Intersects(GBPosition pos, GBSpan span) -
> bool
</autodoc>
7107 <param name=
"pos" type=
"GBPosition" default=
""/>
7108 <param name=
"span" type=
"GBSpan" default=
""/>
7111 <method name=
"GetEndPos" type=
"" overloaded=
"no">
7112 <autodoc>GetEndPos(int row, int col)
</autodoc>
7114 <param name=
"row" type=
"int" default=
""/>
7115 <param name=
"col" type=
"int" default=
""/>
7118 <method name=
"GetGBSizer" type=
"wxGridBagSizer" overloaded=
"no">
7119 <autodoc>GetGBSizer() -
> GridBagSizer
</autodoc>
7121 <method name=
"SetGBSizer" type=
"" overloaded=
"no">
7122 <autodoc>SetGBSizer(GridBagSizer sizer)
</autodoc>
7124 <param name=
"sizer" type=
"wxGridBagSizer" default=
""/>
7128 <class name=
"GridBagSizer" oldname=
"wxGridBagSizer" module=
"core">
7129 <baseclass name=
"FlexGridSizer"/>
7130 <constructor name=
"GridBagSizer" overloaded=
"no">
7131 <autodoc>__init__(int vgap=
0, int hgap=
0) -
> GridBagSizer
</autodoc>
7133 <param name=
"vgap" type=
"int" default=
"0"/>
7134 <param name=
"hgap" type=
"int" default=
"0"/>
7137 <method name=
"Add" type=
"bool" overloaded=
"no">
7138 <autodoc>Add(PyObject item, GBPosition pos, GBSpan span=DefaultSpan,
7139 int flag=
0, int border=
0, PyObject userData=None) -
> bool
</autodoc>
7141 <param name=
"item" type=
"PyObject" default=
""/>
7142 <param name=
"pos" type=
"GBPosition" default=
""/>
7143 <param name=
"span" type=
"GBSpan" default=
"wxDefaultSpan"/>
7144 <param name=
"flag" type=
"int" default=
"0"/>
7145 <param name=
"border" type=
"int" default=
"0"/>
7146 <param name=
"userData" type=
"PyObject" default=
"NULL"/>
7149 <method name=
"AddItem" type=
"bool" overloaded=
"no">
7150 <autodoc>AddItem(GBSizerItem item) -
> bool
</autodoc>
7152 <param name=
"item" type=
"GBSizerItem" default=
""/>
7155 <method name=
"GetEmptyCellSize" type=
"Size" overloaded=
"no">
7156 <autodoc>GetEmptyCellSize() -
> Size
</autodoc>
7158 <method name=
"SetEmptyCellSize" type=
"" overloaded=
"no">
7159 <autodoc>SetEmptyCellSize(Size sz)
</autodoc>
7161 <param name=
"sz" type=
"Size" default=
""/>
7164 <method name=
"GetItemPosition" type=
"GBPosition" overloaded=
"yes">
7166 <param name=
"window" type=
"Window" default=
""/>
7169 <method name=
"GetItemPosition" type=
"GBPosition" overloaded=
"yes">
7171 <param name=
"sizer" type=
"Sizer" default=
""/>
7174 <method name=
"GetItemPosition" type=
"GBPosition" overloaded=
"yes">
7175 <autodoc>GetItemPosition(Window window) -
> GBPosition
7176 GetItemPosition(Sizer sizer) -
> GBPosition
7177 GetItemPosition(size_t index) -
> GBPosition
</autodoc>
7179 <param name=
"index" type=
"size_t" default=
""/>
7182 <method name=
"SetItemPosition" type=
"bool" overloaded=
"yes">
7184 <param name=
"window" type=
"Window" default=
""/>
7185 <param name=
"pos" type=
"GBPosition" default=
""/>
7188 <method name=
"SetItemPosition" type=
"bool" overloaded=
"yes">
7190 <param name=
"sizer" type=
"Sizer" default=
""/>
7191 <param name=
"pos" type=
"GBPosition" default=
""/>
7194 <method name=
"SetItemPosition" type=
"bool" overloaded=
"yes">
7195 <autodoc>SetItemPosition(Window window, GBPosition pos) -
> bool
7196 SetItemPosition(Sizer sizer, GBPosition pos) -
> bool
7197 SetItemPosition(size_t index, GBPosition pos) -
> bool
</autodoc>
7199 <param name=
"index" type=
"size_t" default=
""/>
7200 <param name=
"pos" type=
"GBPosition" default=
""/>
7203 <method name=
"GetItemSpan" type=
"GBSpan" overloaded=
"yes">
7205 <param name=
"window" type=
"Window" default=
""/>
7208 <method name=
"GetItemSpan" type=
"GBSpan" overloaded=
"yes">
7210 <param name=
"sizer" type=
"Sizer" default=
""/>
7213 <method name=
"GetItemSpan" type=
"GBSpan" overloaded=
"yes">
7214 <autodoc>GetItemSpan(Window window) -
> GBSpan
7215 GetItemSpan(Sizer sizer) -
> GBSpan
7216 GetItemSpan(size_t index) -
> GBSpan
</autodoc>
7218 <param name=
"index" type=
"size_t" default=
""/>
7221 <method name=
"SetItemSpan" type=
"bool" overloaded=
"yes">
7223 <param name=
"window" type=
"Window" default=
""/>
7224 <param name=
"span" type=
"GBSpan" default=
""/>
7227 <method name=
"SetItemSpan" type=
"bool" overloaded=
"yes">
7229 <param name=
"sizer" type=
"Sizer" default=
""/>
7230 <param name=
"span" type=
"GBSpan" default=
""/>
7233 <method name=
"SetItemSpan" type=
"bool" overloaded=
"yes">
7234 <autodoc>SetItemSpan(Window window, GBSpan span) -
> bool
7235 SetItemSpan(Sizer sizer, GBSpan span) -
> bool
7236 SetItemSpan(size_t index, GBSpan span) -
> bool
</autodoc>
7238 <param name=
"index" type=
"size_t" default=
""/>
7239 <param name=
"span" type=
"GBSpan" default=
""/>
7242 <method name=
"FindItem" type=
"GBSizerItem" overloaded=
"yes">
7244 <param name=
"window" type=
"Window" default=
""/>
7247 <method name=
"FindItem" type=
"GBSizerItem" overloaded=
"yes">
7248 <autodoc>FindItem(Window window) -
> GBSizerItem
7249 FindItem(Sizer sizer) -
> GBSizerItem
</autodoc>
7251 <param name=
"sizer" type=
"Sizer" default=
""/>
7254 <method name=
"FindItemAtPosition" type=
"GBSizerItem" overloaded=
"no">
7255 <autodoc>FindItemAtPosition(GBPosition pos) -
> GBSizerItem
</autodoc>
7257 <param name=
"pos" type=
"GBPosition" default=
""/>
7260 <method name=
"FindItemAtPoint" type=
"GBSizerItem" overloaded=
"no">
7261 <autodoc>FindItemAtPoint(Point pt) -
> GBSizerItem
</autodoc>
7263 <param name=
"pt" type=
"Point" default=
""/>
7266 <method name=
"FindItemWithData" type=
"GBSizerItem" overloaded=
"no">
7267 <autodoc>FindItemWithData(Object userData) -
> GBSizerItem
</autodoc>
7269 <param name=
"userData" type=
"Object" default=
""/>
7272 <method name=
"RecalcSizes" type=
"" overloaded=
"no">
7273 <autodoc>RecalcSizes()
</autodoc>
7275 <method name=
"CalcMin" type=
"Size" overloaded=
"no">
7276 <autodoc>CalcMin() -
> Size
</autodoc>
7278 <method name=
"CheckForIntersection" type=
"bool" overloaded=
"yes">
7280 <param name=
"item" type=
"GBSizerItem" default=
""/>
7281 <param name=
"excludeItem" type=
"GBSizerItem" default=
"NULL"/>
7284 <method name=
"CheckForIntersection" type=
"bool" overloaded=
"yes">
7285 <autodoc>CheckForIntersection(GBSizerItem item, GBSizerItem excludeItem=None) -
> bool
7286 CheckForIntersection(GBPosition pos, GBSpan span, GBSizerItem excludeItem=None) -
> bool
</autodoc>
7288 <param name=
"pos" type=
"GBPosition" default=
""/>
7289 <param name=
"span" type=
"GBSpan" default=
""/>
7290 <param name=
"excludeItem" type=
"GBSizerItem" default=
"NULL"/>
7295 #---------------------------------------------------------------------------
7297 <class name=
"IndividualLayoutConstraint" oldname=
"wxIndividualLayoutConstraint" module=
"core">
7298 <docstring>Objects of this class are stored in the wx.LayoutConstraint class as one of
7299 eight possible constraints that a window can be involved in. You will never
7300 need to create an instance of wx.IndividualLayoutConstraint, rather you should
7301 use create a wx.LayoutContstraints instance and use the individual contstraints
7304 Constraints are initially set to have the relationship wx.Unconstrained, which
7305 means that their values should be calculated by looking at known constraints.
7307 The Edge specifies the type of edge or dimension of a window.
7311 wx.Left The left edge.
7312 wx.Top The top edge.
7313 wx.Right The right edge.
7314 wx.Bottom The bottom edge.
7315 wx.CentreX The x-coordinate of the centre of the window.
7316 wx.CentreY The y-coordinate of the centre of the window.
7319 The Relationship specifies the relationship that this edge or dimension has
7320 with another specified edge or dimension. Normally, the user doesn't use these
7321 directly because functions such as Below and RightOf are a convenience for
7322 using the more general Set function.
7326 wx.Unconstrained The edge or dimension is unconstrained
7327 (the default for edges.)
7328 wx.AsIs The edge or dimension is to be taken from the current
7329 window position or size (the default for dimensions.)
7330 wx.Above The edge should be above another edge.
7331 wx.Below The edge should be below another edge.
7332 wx.LeftOf The edge should be to the left of another edge.
7333 wx.RightOf The edge should be to the right of another edge.
7334 wx.SameAs The edge or dimension should be the same as another edge
7336 wx.PercentOf The edge or dimension should be a percentage of another
7338 wx.Absolute The edge or dimension should be a given absolute value.
7341 <baseclass name=
"Object"/>
7342 <method name=
"Set" type=
"" overloaded=
"no">
7343 <autodoc>Set(int rel, Window otherW, int otherE, int val=
0, int marg=wxLAYOUT_DEFAULT_MARGIN)
</autodoc>
7345 <param name=
"rel" type=
"wxRelationship" default=
""/>
7346 <param name=
"otherW" type=
"Window" default=
""/>
7347 <param name=
"otherE" type=
"wxEdge" default=
""/>
7348 <param name=
"val" type=
"int" default=
"0"/>
7349 <param name=
"marg" type=
"int" default=
"wxLAYOUT_DEFAULT_MARGIN"/>
7352 <method name=
"LeftOf" type=
"" overloaded=
"no">
7353 <autodoc>LeftOf(Window sibling, int marg=
0)
</autodoc>
7354 <docstring>Sibling relationship
</docstring>
7356 <param name=
"sibling" type=
"Window" default=
""/>
7357 <param name=
"marg" type=
"int" default=
"0"/>
7360 <method name=
"RightOf" type=
"" overloaded=
"no">
7361 <autodoc>RightOf(Window sibling, int marg=
0)
</autodoc>
7362 <docstring>Sibling relationship
</docstring>
7364 <param name=
"sibling" type=
"Window" default=
""/>
7365 <param name=
"marg" type=
"int" default=
"0"/>
7368 <method name=
"Above" type=
"" overloaded=
"no">
7369 <autodoc>Above(Window sibling, int marg=
0)
</autodoc>
7370 <docstring>Sibling relationship
</docstring>
7372 <param name=
"sibling" type=
"Window" default=
""/>
7373 <param name=
"marg" type=
"int" default=
"0"/>
7376 <method name=
"Below" type=
"" overloaded=
"no">
7377 <autodoc>Below(Window sibling, int marg=
0)
</autodoc>
7378 <docstring>Sibling relationship
</docstring>
7380 <param name=
"sibling" type=
"Window" default=
""/>
7381 <param name=
"marg" type=
"int" default=
"0"/>
7384 <method name=
"SameAs" type=
"" overloaded=
"no">
7385 <autodoc>SameAs(Window otherW, int edge, int marg=
0)
</autodoc>
7386 <docstring>'Same edge' alignment
</docstring>
7388 <param name=
"otherW" type=
"Window" default=
""/>
7389 <param name=
"edge" type=
"wxEdge" default=
""/>
7390 <param name=
"marg" type=
"int" default=
"0"/>
7393 <method name=
"PercentOf" type=
"" overloaded=
"no">
7394 <autodoc>PercentOf(Window otherW, int wh, int per)
</autodoc>
7395 <docstring>The edge is a percentage of the other window's edge
</docstring>
7397 <param name=
"otherW" type=
"Window" default=
""/>
7398 <param name=
"wh" type=
"wxEdge" default=
""/>
7399 <param name=
"per" type=
"int" default=
""/>
7402 <method name=
"Absolute" type=
"" overloaded=
"no">
7403 <autodoc>Absolute(int val)
</autodoc>
7404 <docstring>Edge has absolute value
</docstring>
7406 <param name=
"val" type=
"int" default=
""/>
7409 <method name=
"Unconstrained" type=
"" overloaded=
"no">
7410 <autodoc>Unconstrained()
</autodoc>
7411 <docstring>Dimension is unconstrained
</docstring>
7413 <method name=
"AsIs" type=
"" overloaded=
"no">
7414 <autodoc>AsIs()
</autodoc>
7415 <docstring>Dimension is 'as is' (use current size settings)
</docstring>
7417 <method name=
"GetOtherWindow" type=
"Window" overloaded=
"no">
7418 <autodoc>GetOtherWindow() -
> Window
</autodoc>
7420 <method name=
"GetMyEdge" type=
"wxEdge" overloaded=
"no">
7421 <autodoc>GetMyEdge() -
> int
</autodoc>
7423 <method name=
"SetEdge" type=
"" overloaded=
"no">
7424 <autodoc>SetEdge(int which)
</autodoc>
7426 <param name=
"which" type=
"wxEdge" default=
""/>
7429 <method name=
"SetValue" type=
"" overloaded=
"no">
7430 <autodoc>SetValue(int v)
</autodoc>
7432 <param name=
"v" type=
"int" default=
""/>
7435 <method name=
"GetMargin" type=
"int" overloaded=
"no">
7436 <autodoc>GetMargin() -
> int
</autodoc>
7438 <method name=
"SetMargin" type=
"" overloaded=
"no">
7439 <autodoc>SetMargin(int m)
</autodoc>
7441 <param name=
"m" type=
"int" default=
""/>
7444 <method name=
"GetValue" type=
"int" overloaded=
"no">
7445 <autodoc>GetValue() -
> int
</autodoc>
7447 <method name=
"GetPercent" type=
"int" overloaded=
"no">
7448 <autodoc>GetPercent() -
> int
</autodoc>
7450 <method name=
"GetOtherEdge" type=
"int" overloaded=
"no">
7451 <autodoc>GetOtherEdge() -
> int
</autodoc>
7453 <method name=
"GetDone" type=
"bool" overloaded=
"no">
7454 <autodoc>GetDone() -
> bool
</autodoc>
7456 <method name=
"SetDone" type=
"" overloaded=
"no">
7457 <autodoc>SetDone(bool d)
</autodoc>
7459 <param name=
"d" type=
"bool" default=
""/>
7462 <method name=
"GetRelationship" type=
"wxRelationship" overloaded=
"no">
7463 <autodoc>GetRelationship() -
> int
</autodoc>
7465 <method name=
"SetRelationship" type=
"" overloaded=
"no">
7466 <autodoc>SetRelationship(int r)
</autodoc>
7468 <param name=
"r" type=
"wxRelationship" default=
""/>
7471 <method name=
"ResetIfWin" type=
"bool" overloaded=
"no">
7472 <autodoc>ResetIfWin(Window otherW) -
> bool
</autodoc>
7473 <docstring>Reset constraint if it mentions otherWin
</docstring>
7475 <param name=
"otherW" type=
"Window" default=
""/>
7478 <method name=
"SatisfyConstraint" type=
"bool" overloaded=
"no">
7479 <autodoc>SatisfyConstraint(LayoutConstraints constraints, Window win) -
> bool
</autodoc>
7480 <docstring>Try to satisfy constraint
</docstring>
7482 <param name=
"constraints" type=
"wxLayoutConstraints" default=
""/>
7483 <param name=
"win" type=
"Window" default=
""/>
7486 <method name=
"GetEdge" type=
"int" overloaded=
"no">
7487 <autodoc>GetEdge(int which, Window thisWin, Window other) -
> int
</autodoc>
7488 <docstring>Get the value of this edge or dimension, or if this
7489 is not determinable, -
1.
</docstring>
7491 <param name=
"which" type=
"wxEdge" default=
""/>
7492 <param name=
"thisWin" type=
"Window" default=
""/>
7493 <param name=
"other" type=
"Window" default=
""/>
7497 <class name=
"LayoutConstraints" oldname=
"wxLayoutConstraints" module=
"core">
7498 <docstring>Note: constraints are now deprecated and you should use sizers instead.
7500 Objects of this class can be associated with a window to define its layout
7501 constraints, with respect to siblings or its parent.
7503 The class consists of the following eight constraints of class
7504 wx.IndividualLayoutConstraint, some or all of which should be accessed
7505 directly to set the appropriate constraints.
7507 * left: represents the left hand edge of the window
7508 * right: represents the right hand edge of the window
7509 * top: represents the top edge of the window
7510 * bottom: represents the bottom edge of the window
7511 * width: represents the width of the window
7512 * height: represents the height of the window
7513 * centreX: represents the horizontal centre point of the window
7514 * centreY: represents the vertical centre point of the window
7516 Most constraints are initially set to have the relationship wxUnconstrained,
7517 which means that their values should be calculated by looking at known
7518 constraints. The exceptions are width and height, which are set to wxAsIs to
7519 ensure that if the user does not specify a constraint, the existing width and
7520 height will be used, to be compatible with panel items which often have take a
7521 default size. If the constraint is wxAsIs, the dimension will not be changed.
7523 <baseclass name=
"Object"/>
7524 <constructor name=
"LayoutConstraints" overloaded=
"no">
7525 <autodoc>__init__() -
> LayoutConstraints
</autodoc>
7527 <property name=
"left" type=
"IndividualLayoutConstraint" readonly=
"yes"/>
7528 <property name=
"top" type=
"IndividualLayoutConstraint" readonly=
"yes"/>
7529 <property name=
"right" type=
"IndividualLayoutConstraint" readonly=
"yes"/>
7530 <property name=
"bottom" type=
"IndividualLayoutConstraint" readonly=
"yes"/>
7531 <property name=
"width" type=
"IndividualLayoutConstraint" readonly=
"yes"/>
7532 <property name=
"height" type=
"IndividualLayoutConstraint" readonly=
"yes"/>
7533 <property name=
"centreX" type=
"IndividualLayoutConstraint" readonly=
"yes"/>
7534 <property name=
"centreY" type=
"IndividualLayoutConstraint" readonly=
"yes"/>
7535 <method name=
"SatisfyConstraints" type=
"bool" overloaded=
"no">
7536 <autodoc>SatisfyConstraints(Window win) -
> (areSatisfied, noChanges)
</autodoc>
7538 <param name=
"win" type=
"Window" default=
""/>
7539 <param name=
"OUTPUT" type=
"int" default=
""/>
7542 <method name=
"AreSatisfied" type=
"bool" overloaded=
"no">
7543 <autodoc>AreSatisfied() -
> bool
</autodoc>
7546 <pythoncode>#----------------------------------------------------------------------------
7548 # Use Python's bool constants if available, make some if not
7552 __builtins__.True =
1==
1
7553 __builtins__.False =
1==
0
7557 # workarounds for bad wxRTTI names
7558 __wxPyPtrTypeMap['wxGauge95'] = 'wxGauge'
7559 __wxPyPtrTypeMap['wxSlider95'] = 'wxSlider'
7560 __wxPyPtrTypeMap['wxStatusBar95'] = 'wxStatusBar'
7563 #----------------------------------------------------------------------------
7564 # Load version numbers from __version__... Ensure that major and minor
7565 # versions are the same for both wxPython and wxWindows.
7567 from __version__ import *
7568 __version__ = VERSION_STRING
7570 assert MAJOR_VERSION == _core.MAJOR_VERSION, "wxPython/wxWindows version mismatch"
7571 assert MINOR_VERSION == _core.MINOR_VERSION, "wxPython/wxWindows version mismatch"
7572 if RELEASE_VERSION != _core.RELEASE_VERSION:
7574 warnings.warn("wxPython/wxWindows release number mismatch")
7576 #----------------------------------------------------------------------------
7578 class PyDeadObjectError(AttributeError):
7581 class _wxPyDeadObject(object):
7583 Instances of wx objects that are OOR capable will have their __class__
7584 changed to this class when the C++ object is deleted. This should help
7585 prevent crashes due to referencing a bogus C++ pointer.
7587 reprStr = "wxPython wrapper for DELETED %s object! (The C++ object no longer exists.)"
7588 attrStr = "The C++ part of the %s object has been deleted, attribute access no longer allowed."
7591 if not hasattr(self, "_name"):
7592 self._name = "[unknown]"
7593 return self.reprStr % self._name
7595 def __getattr__(self, *args):
7596 if not hasattr(self, "_name"):
7597 self._name = "[unknown]"
7598 raise PyDeadObjectError(self.attrStr % self._name)
7600 def __nonzero__(self):
7605 class PyUnbornObjectError(AttributeError):
7608 class _wxPyUnbornObject(object):
7610 Some stock objects are created when the wx.core module is
7611 imported, but their C++ instance is not created until the wx.App
7612 object is created and initialized. These object instances will
7613 temporarily have their __class__ changed to this class so an
7614 exception will be raised if they are used before the C++ instance
7618 reprStr = "wxPython wrapper for UNBORN object! (The C++ object is not initialized yet.)"
7619 attrStr = "The C++ part of this object has not been initialized, attribute access not allowed."
7622 #if not hasattr(self, "_name"):
7623 # self._name = "[unknown]"
7624 return self.reprStr #% self._name
7626 def __getattr__(self, *args):
7627 #if not hasattr(self, "_name"):
7628 # self._name = "[unknown]"
7629 raise PyUnbornObjectError(self.attrStr) # % self._name )
7631 def __nonzero__(self):
7635 #----------------------------------------------------------------------------
7636 _wxPyCallAfterId = None
7638 def CallAfter(callable, *args, **kw):
7640 Call the specified function after the current and pending event
7641 handlers have been completed. This is also good for making GUI
7642 method calls from non-GUI threads.
7645 assert app, 'No wxApp created yet'
7647 global _wxPyCallAfterId
7648 if _wxPyCallAfterId is None:
7649 _wxPyCallAfterId = wx.NewEventType()
7650 app.Connect(-
1, -
1, _wxPyCallAfterId,
7651 lambda event: event.callable(*event.args, **event.kw) )
7653 evt.SetEventType(_wxPyCallAfterId)
7654 evt.callable = callable
7657 wx.PostEvent(app, evt)
7660 #----------------------------------------------------------------------------
7665 A convenience class for wx.Timer, that calls the given callable
7666 object once after the given amount of milliseconds, passing any
7667 positional or keyword args. The return value of the callable is
7668 availbale after it has been run with the GetResult method.
7670 If you don't need to get the return value or restart the timer
7671 then there is no need to hold a reference to this object. It will
7672 hold a reference to itself while the timer is running (the timer
7673 has a reference to self.Notify) but the cycle will be broken when
7674 the timer completes, automatically cleaning up the wx.FutureCall
7677 def __init__(self, millis, callable, *args, **kwargs):
7678 self.millis = millis
7679 self.callable = callable
7680 self.SetArgs(*args, **kwargs)
7682 self.running = False
7692 def Start(self, millis=None, *args, **kwargs):
7697 if millis is not None:
7698 self.millis = millis
7700 self.SetArgs(*args, **kwargs)
7702 self.timer = wx.PyTimer(self.Notify)
7703 self.timer.Start(self.millis, wx.TIMER_ONE_SHOT)
7710 Stop and destroy the timer.
7712 if self.timer is not None:
7717 def GetInterval(self):
7718 if self.timer is not None:
7719 return self.timer.GetInterval()
7724 def IsRunning(self):
7725 return self.timer is not None and self.timer.IsRunning()
7728 def SetArgs(self, *args, **kwargs):
7730 (Re)set the args passed to the callable object. This is
7731 useful in conjunction with Restart if you want to schedule a
7732 new call to the same callable object but with different
7736 self.kwargs = kwargs
7742 def GetResult(self):
7747 The timer has expired so call the callable.
7749 if self.callable and getattr(self.callable, 'im_self', True):
7751 self.running = False
7752 self.result = self.callable(*self.args, **self.kwargs)
7754 if not self.running:
7755 # if it wasn't restarted, then cleanup
7756 wx.CallAfter(self.Stop)
7759 #----------------------------------------------------------------------------
7760 #----------------------------------------------------------------------------
7762 # Import other modules in this package that should show up in the
7763 # "core" wx namespace
7765 from windows import *
7766 from controls import *
7770 # Fixup the stock objects since they can't be used yet. (They will be
7771 # restored in wx.PyApp.OnInit.)
7772 _core._wxPyFixStockObjects()
7774 #----------------------------------------------------------------------------
7775 #----------------------------------------------------------------------------
7779 <import name=
"core"/>
7780 <pythoncode> wx = core
</pythoncode>
7782 #---------------------------------------------------------------------------
7784 <class name=
"GDIObject" oldname=
"wxGDIObject" module=
"gdi">
7785 <baseclass name=
"Object"/>
7786 <constructor name=
"GDIObject" overloaded=
"no">
7787 <autodoc>__init__() -
> GDIObject
</autodoc>
7789 <destructor name=
"~wxGDIObject" overloaded=
"no">
7790 <autodoc>__del__()
</autodoc>
7792 <method name=
"GetVisible" type=
"bool" overloaded=
"no">
7793 <autodoc>GetVisible() -
> bool
</autodoc>
7795 <method name=
"SetVisible" type=
"" overloaded=
"no">
7796 <autodoc>SetVisible(bool visible)
</autodoc>
7798 <param name=
"visible" type=
"bool" default=
""/>
7801 <method name=
"IsNull" type=
"bool" overloaded=
"no">
7802 <autodoc>IsNull() -
> bool
</autodoc>
7806 #---------------------------------------------------------------------------
7808 <class name=
"Colour" oldname=
"wxColour" module=
"gdi">
7809 <docstring>A colour is an object representing a combination of Red, Green, and Blue (RGB)
7810 intensity values, and is used to determine drawing colours, window colours,
7811 etc. Valid RGB values are in the range
0 to
255.
7813 In wxPython there are typemaps that will automatically convert from a colour
7814 name, or from a "#RRGGBB" colour hex value string to a wx.Colour object when
7815 calling C++ methods that expect a wxColour. This means that the following are
7818 win.SetBackgroundColour(wxColour(
0,
0,
255))
7819 win.SetBackgroundColour("BLUE")
7820 win.SetBackgroundColour("#
0000FF")
7822 You can retrieve the various current system colour settings with
7823 wx.SystemSettings.GetColour.
</docstring>
7824 <baseclass name=
"Object"/>
7825 <constructor name=
"Colour" overloaded=
"no">
7826 <autodoc>__init__(unsigned char red=
0, unsigned char green=
0, unsigned char blue=
0) -
> Colour
</autodoc>
7827 <docstring>Constructs a colour from red, green and blue values.
</docstring>
7829 <param name=
"red" type=
"unsigned char" default=
"0"/>
7830 <param name=
"green" type=
"unsigned char" default=
"0"/>
7831 <param name=
"blue" type=
"unsigned char" default=
"0"/>
7834 <constructor name=
"NamedColour" overloaded=
"no">
7835 <autodoc>NamedColour(String colorName) -
> Colour
</autodoc>
7836 <docstring>Constructs a colour object using a colour name listed in wx.TheColourDatabase.
</docstring>
7838 <param name=
"colorName" type=
"String" default=
""/>
7841 <constructor name=
"ColourRGB" overloaded=
"no">
7842 <autodoc>ColourRGB(unsigned long colRGB) -
> Colour
</autodoc>
7843 <docstring>Constructs a colour from a packed RGB value.
</docstring>
7845 <param name=
"colRGB" type=
"unsigned long" default=
""/>
7848 <destructor name=
"~wxColour" overloaded=
"no">
7849 <autodoc>__del__()
</autodoc>
7851 <method name=
"Red" type=
"unsigned char" overloaded=
"no">
7852 <autodoc>Red() -
> unsigned char
</autodoc>
7853 <docstring>Returns the red intensity.
</docstring>
7855 <method name=
"Green" type=
"unsigned char" overloaded=
"no">
7856 <autodoc>Green() -
> unsigned char
</autodoc>
7857 <docstring>Returns the green intensity.
</docstring>
7859 <method name=
"Blue" type=
"unsigned char" overloaded=
"no">
7860 <autodoc>Blue() -
> unsigned char
</autodoc>
7861 <docstring>Returns the blue intensity.
</docstring>
7863 <method name=
"Ok" type=
"bool" overloaded=
"no">
7864 <autodoc>Ok() -
> bool
</autodoc>
7865 <docstring>Returns True if the colour object is valid (the colour has been
7866 initialised with RGB values).
</docstring>
7868 <method name=
"Set" type=
"" overloaded=
"no">
7869 <autodoc>Set(unsigned char red, unsigned char green, unsigned char blue)
</autodoc>
7870 <docstring>Sets the RGB intensity values.
</docstring>
7872 <param name=
"red" type=
"unsigned char" default=
""/>
7873 <param name=
"green" type=
"unsigned char" default=
""/>
7874 <param name=
"blue" type=
"unsigned char" default=
""/>
7877 <method name=
"SetRGB" type=
"" overloaded=
"no">
7878 <autodoc>SetRGB(unsigned long colRGB)
</autodoc>
7879 <docstring>Sets the RGB intensity values from a packed RGB value.
</docstring>
7881 <param name=
"colRGB" type=
"unsigned long" default=
""/>
7884 <method name=
"SetFromName" type=
"" overloaded=
"no">
7885 <autodoc>SetFromName(String colourName)
</autodoc>
7886 <docstring>Sets the RGB intensity values using a colour name listed in wx.TheColourDatabase.
</docstring>
7888 <param name=
"colourName" type=
"String" default=
""/>
7891 <method name=
"GetPixel" type=
"long" overloaded=
"no">
7892 <autodoc>GetPixel() -
> long
</autodoc>
7893 <docstring>Returns a pixel value which is platform-dependent. On Windows, a
7894 COLORREF is returned. On X, an allocated pixel value is returned.
7895 -
1 is returned if the pixel is invalid (on X, unallocated).
</docstring>
7897 <method name=
"__eq__" type=
"bool" overloaded=
"no">
7898 <autodoc>__eq__(Colour colour) -
> bool
</autodoc>
7899 <docstring>Compare colours for equality
</docstring>
7901 <param name=
"colour" type=
"Colour" default=
""/>
7904 <method name=
"__ne__" type=
"bool" overloaded=
"no">
7905 <autodoc>__ne__(Colour colour) -
> bool
</autodoc>
7906 <docstring>Compare colours for inequality
</docstring>
7908 <param name=
"colour" type=
"Colour" default=
""/>
7911 <method name=
"Get" type=
"PyObject" overloaded=
"no">
7912 <autodoc>Get() -
> (r, g, b)
</autodoc>
7913 <docstring>Returns the RGB intensity values as a tuple.
</docstring>
7915 <method name=
"GetRGB" type=
"unsigned long" overloaded=
"no">
7916 <autodoc>GetRGB() -
> unsigned long
</autodoc>
7917 <docstring>Return the colour as a packed RGB value
</docstring>
7922 NamedColor = NamedColour
7923 ColorRGB = ColourRGB
7925 <class name=
"Palette" oldname=
"wxPalette" module=
"gdi">
7926 <baseclass name=
"GDIObject"/>
7927 <constructor name=
"Palette" overloaded=
"no">
7928 <autodoc>__init__(int n, unsigned char red, unsigned char green, unsigned char blue) -
> Palette
</autodoc>
7930 <param name=
"n" type=
"int" default=
""/>
7931 <param name=
"red" type=
"unsigned char" default=
""/>
7932 <param name=
"green" type=
"unsigned char" default=
""/>
7933 <param name=
"blue" type=
"unsigned char" default=
""/>
7936 <destructor name=
"~wxPalette" overloaded=
"no">
7937 <autodoc>__del__()
</autodoc>
7939 <method name=
"GetPixel" type=
"int" overloaded=
"no">
7940 <autodoc>GetPixel(byte red, byte green, byte blue) -
> int
</autodoc>
7942 <param name=
"red" type=
"byte" default=
""/>
7943 <param name=
"green" type=
"byte" default=
""/>
7944 <param name=
"blue" type=
"byte" default=
""/>
7947 <method name=
"GetRGB" type=
"bool" overloaded=
"no">
7948 <autodoc>GetRGB(int pixel) -
> (R,G,B)
</autodoc>
7950 <param name=
"pixel" type=
"int" default=
""/>
7951 <param name=
"OUTPUT" type=
"byte" default=
""/>
7952 <param name=
"OUTPUT" type=
"byte" default=
""/>
7953 <param name=
"OUTPUT" type=
"byte" default=
""/>
7956 <method name=
"Ok" type=
"bool" overloaded=
"no">
7957 <autodoc>Ok() -
> bool
</autodoc>
7961 #---------------------------------------------------------------------------
7963 <class name=
"Pen" oldname=
"wxPen" module=
"gdi">
7964 <baseclass name=
"GDIObject"/>
7965 <constructor name=
"Pen" overloaded=
"no">
7966 <autodoc>__init__(Colour colour, int width=
1, int style=SOLID) -
> Pen
</autodoc>
7968 <param name=
"colour" type=
"Colour" default=
""/>
7969 <param name=
"width" type=
"int" default=
"1"/>
7970 <param name=
"style" type=
"int" default=
"wxSOLID"/>
7973 <destructor name=
"~wxPen" overloaded=
"no">
7974 <autodoc>__del__()
</autodoc>
7976 <method name=
"GetCap" type=
"int" overloaded=
"no">
7977 <autodoc>GetCap() -
> int
</autodoc>
7979 <method name=
"GetColour" type=
"Colour" overloaded=
"no">
7980 <autodoc>GetColour() -
> Colour
</autodoc>
7982 <method name=
"GetJoin" type=
"int" overloaded=
"no">
7983 <autodoc>GetJoin() -
> int
</autodoc>
7985 <method name=
"GetStyle" type=
"int" overloaded=
"no">
7986 <autodoc>GetStyle() -
> int
</autodoc>
7988 <method name=
"GetWidth" type=
"int" overloaded=
"no">
7989 <autodoc>GetWidth() -
> int
</autodoc>
7991 <method name=
"Ok" type=
"bool" overloaded=
"no">
7992 <autodoc>Ok() -
> bool
</autodoc>
7994 <method name=
"SetCap" type=
"" overloaded=
"no">
7995 <autodoc>SetCap(int cap_style)
</autodoc>
7997 <param name=
"cap_style" type=
"int" default=
""/>
8000 <method name=
"SetColour" type=
"" overloaded=
"no">
8001 <autodoc>SetColour(Colour colour)
</autodoc>
8003 <param name=
"colour" type=
"Colour" default=
""/>
8006 <method name=
"SetJoin" type=
"" overloaded=
"no">
8007 <autodoc>SetJoin(int join_style)
</autodoc>
8009 <param name=
"join_style" type=
"int" default=
""/>
8012 <method name=
"SetStyle" type=
"" overloaded=
"no">
8013 <autodoc>SetStyle(int style)
</autodoc>
8015 <param name=
"style" type=
"int" default=
""/>
8018 <method name=
"SetWidth" type=
"" overloaded=
"no">
8019 <autodoc>SetWidth(int width)
</autodoc>
8021 <param name=
"width" type=
"int" default=
""/>
8024 <method name=
"SetDashes" type=
"" overloaded=
"no">
8025 <autodoc>SetDashes(int dashes, wxDash dashes_array)
</autodoc>
8027 <param name=
"dashes" type=
"int" default=
""/>
8028 <param name=
"dashes_array" type=
"wxDash" default=
""/>
8031 <method name=
"GetDashes" type=
"PyObject" overloaded=
"no">
8032 <autodoc>GetDashes() -
> PyObject
</autodoc>
8034 <method name=
"__eq__" type=
"bool" overloaded=
"no">
8035 <autodoc>__eq__(Pen other) -
> bool
</autodoc>
8037 <param name=
"other" type=
"Pen" default=
""/>
8040 <method name=
"__ne__" type=
"bool" overloaded=
"no">
8041 <autodoc>__ne__(Pen other) -
> bool
</autodoc>
8043 <param name=
"other" type=
"Pen" default=
""/>
8046 <method name=
"GetDashCount" type=
"int" overloaded=
"no">
8047 <autodoc>GetDashCount() -
> int
</autodoc>
8050 <class name=
"PyPen" oldname=
"wxPyPen" module=
"gdi">
8051 <baseclass name=
"Pen"/>
8052 <constructor name=
"PyPen" overloaded=
"no">
8053 <autodoc>__init__(Colour colour, int width=
1, int style=SOLID) -
> PyPen
</autodoc>
8055 <param name=
"colour" type=
"Colour" default=
""/>
8056 <param name=
"width" type=
"int" default=
"1"/>
8057 <param name=
"style" type=
"int" default=
"wxSOLID"/>
8060 <destructor name=
"~wxPyPen" overloaded=
"no">
8061 <autodoc>__del__()
</autodoc>
8063 <method name=
"SetDashes" type=
"" overloaded=
"no">
8064 <autodoc>SetDashes(int dashes, wxDash dashes_array)
</autodoc>
8066 <param name=
"dashes" type=
"int" default=
""/>
8067 <param name=
"dashes_array" type=
"wxDash" default=
""/>
8071 <pythoncode> Pen = PyPen
</pythoncode>
8073 #---------------------------------------------------------------------------
8075 <class name=
"Brush" oldname=
"wxBrush" module=
"gdi">
8076 <docstring>A brush is a drawing tool for filling in areas. It is used for painting the
8077 background of rectangles, ellipses, etc. It has a colour and a style.
</docstring>
8078 <baseclass name=
"GDIObject"/>
8079 <constructor name=
"Brush" overloaded=
"no">
8080 <autodoc>__init__(Colour colour, int style=SOLID) -
> Brush
</autodoc>
8081 <docstring>Constructs a brush from a colour object and style.
</docstring>
8083 <param name=
"colour" type=
"Colour" default=
""/>
8084 <param name=
"style" type=
"int" default=
"wxSOLID"/>
8087 <destructor name=
"~wxBrush" overloaded=
"no">
8088 <autodoc>__del__()
</autodoc>
8090 <method name=
"SetColour" type=
"" overloaded=
"no">
8091 <autodoc>SetColour(Colour col)
</autodoc>
8093 <param name=
"col" type=
"Colour" default=
""/>
8096 <method name=
"SetStyle" type=
"" overloaded=
"no">
8097 <autodoc>SetStyle(int style)
</autodoc>
8099 <param name=
"style" type=
"int" default=
""/>
8102 <method name=
"SetStipple" type=
"" overloaded=
"no">
8103 <autodoc>SetStipple(Bitmap stipple)
</autodoc>
8105 <param name=
"stipple" type=
"wxBitmap" default=
""/>
8108 <method name=
"GetColour" type=
"Colour" overloaded=
"no">
8109 <autodoc>GetColour() -
> Colour
</autodoc>
8111 <method name=
"GetStyle" type=
"int" overloaded=
"no">
8112 <autodoc>GetStyle() -
> int
</autodoc>
8114 <method name=
"GetStipple" type=
"wxBitmap" overloaded=
"no">
8115 <autodoc>GetStipple() -
> Bitmap
</autodoc>
8117 <method name=
"Ok" type=
"bool" overloaded=
"no">
8118 <autodoc>Ok() -
> bool
</autodoc>
8121 <class name=
"Bitmap" oldname=
"wxBitmap" module=
"gdi">
8122 <baseclass name=
"GDIObject"/>
8123 <constructor name=
"Bitmap" overloaded=
"no">
8124 <autodoc>__init__(String name, int type=BITMAP_TYPE_ANY) -
> Bitmap
</autodoc>
8125 <docstring>Loads a bitmap from a file.
</docstring>
8127 <param name=
"name" type=
"String" default=
""/>
8128 <param name=
"type" type=
"wxBitmapType" default=
"wxBITMAP_TYPE_ANY"/>
8131 <constructor name=
"EmptyBitmap" overloaded=
"no">
8132 <autodoc>EmptyBitmap(int width, int height, int depth=-
1) -
> Bitmap
</autodoc>
8133 <docstring>Creates a new bitmap of the given size. A depth of -
1 indicates the depth of
8134 the current screen or visual. Some platforms only support
1 for monochrome and
8135 -
1 for the current colour setting.
</docstring>
8137 <param name=
"width" type=
"int" default=
""/>
8138 <param name=
"height" type=
"int" default=
""/>
8139 <param name=
"depth" type=
"int" default=
"-1"/>
8142 <constructor name=
"BitmapFromIcon" overloaded=
"no">
8143 <autodoc>BitmapFromIcon(Icon icon) -
> Bitmap
</autodoc>
8144 <docstring>Create a new bitmap from an Icon object.
</docstring>
8146 <param name=
"icon" type=
"wxIcon" default=
""/>
8149 <constructor name=
"BitmapFromImage" overloaded=
"no">
8150 <autodoc>BitmapFromImage(Image image, int depth=-
1) -
> Bitmap
</autodoc>
8151 <docstring>Creates bitmap object from the image. This has to be done to actually display
8152 an image as you cannot draw an image directly on a window. The resulting
8153 bitmap will use the provided colour depth (or that of the current system if
8154 depth is -
1) which entails that a colour reduction has to take place.
</docstring>
8156 <param name=
"image" type=
"Image" default=
""/>
8157 <param name=
"depth" type=
"int" default=
"-1"/>
8160 <constructor name=
"BitmapFromXPMData" overloaded=
"no">
8161 <autodoc>BitmapFromXPMData(PyObject listOfStrings) -
> Bitmap
</autodoc>
8162 <docstring>Construct a Bitmap from a list of strings formatted as XPM data.
</docstring>
8164 <param name=
"listOfStrings" type=
"PyObject" default=
""/>
8167 <constructor name=
"BitmapFromBits" overloaded=
"no">
8168 <autodoc>BitmapFromBits(PyObject bits, int width, int height, int depth=
1) -
> Bitmap
</autodoc>
8169 <docstring>Creates a bitmap from an array of bits. You should only use this function for
8170 monochrome bitmaps (depth
1) in portable programs: in this case the bits
8171 parameter should contain an XBM image. For other bit depths, the behaviour is
8172 platform dependent.
</docstring>
8174 <param name=
"bits" type=
"PyObject" default=
""/>
8175 <param name=
"width" type=
"int" default=
""/>
8176 <param name=
"height" type=
"int" default=
""/>
8177 <param name=
"depth" type=
"int" default=
"1"/>
8180 <destructor name=
"~wxBitmap" overloaded=
"no">
8181 <autodoc>__del__()
</autodoc>
8183 <method name=
"Ok" type=
"bool" overloaded=
"no">
8184 <autodoc>Ok() -
> bool
</autodoc>
8186 <method name=
"GetWidth" type=
"int" overloaded=
"no">
8187 <autodoc>GetWidth() -
> int
</autodoc>
8188 <docstring>Gets the width of the bitmap in pixels.
</docstring>
8190 <method name=
"GetHeight" type=
"int" overloaded=
"no">
8191 <autodoc>GetHeight() -
> int
</autodoc>
8192 <docstring>Gets the height of the bitmap in pixels.
</docstring>
8194 <method name=
"GetDepth" type=
"int" overloaded=
"no">
8195 <autodoc>GetDepth() -
> int
</autodoc>
8196 <docstring>Gets the colour depth of the bitmap. A value of
1 indicates a
8197 monochrome bitmap.
</docstring>
8199 <method name=
"ConvertToImage" type=
"Image" overloaded=
"no">
8200 <autodoc>ConvertToImage() -
> Image
</autodoc>
8201 <docstring>Creates a platform-independent image from a platform-dependent bitmap. This
8202 preserves mask information so that bitmaps and images can be converted back
8203 and forth without loss in that respect.
</docstring>
8205 <method name=
"GetMask" type=
"wxMask" overloaded=
"no">
8206 <autodoc>GetMask() -
> Mask
</autodoc>
8207 <docstring>Gets the associated mask (if any) which may have been loaded from a file
8208 or explpicitly set for the bitmap.
</docstring>
8210 <method name=
"SetMask" type=
"" overloaded=
"no">
8211 <autodoc>SetMask(Mask mask)
</autodoc>
8212 <docstring>Sets the mask for this bitmap.
</docstring>
8214 <param name=
"mask" type=
"wxMask" default=
""/>
8217 <method name=
"SetMaskColour" type=
"" overloaded=
"no">
8218 <autodoc>SetMaskColour(Colour colour)
</autodoc>
8219 <docstring>Create a Mask based on a specified colour in the Bitmap.
</docstring>
8221 <param name=
"colour" type=
"Colour" default=
""/>
8224 <method name=
"GetSubBitmap" type=
"Bitmap" overloaded=
"no">
8225 <autodoc>GetSubBitmap(Rect rect) -
> Bitmap
</autodoc>
8226 <docstring>Returns a sub bitmap of the current one as long as the rect belongs entirely
8227 to the bitmap. This function preserves bit depth and mask information.
</docstring>
8229 <param name=
"rect" type=
"Rect" default=
""/>
8232 <method name=
"SaveFile" type=
"bool" overloaded=
"no">
8233 <autodoc>SaveFile(String name, int type, Palette palette=(wxPalette *) NULL) -
> bool
</autodoc>
8234 <docstring>Saves a bitmap in the named file.
</docstring>
8236 <param name=
"name" type=
"String" default=
""/>
8237 <param name=
"type" type=
"wxBitmapType" default=
""/>
8238 <param name=
"palette" type=
"Palette" default=
"(wxPalette *) NULL"/>
8241 <method name=
"LoadFile" type=
"bool" overloaded=
"no">
8242 <autodoc>LoadFile(String name, int type) -
> bool
</autodoc>
8243 <docstring>Loads a bitmap from a file
</docstring>
8245 <param name=
"name" type=
"String" default=
""/>
8246 <param name=
"type" type=
"wxBitmapType" default=
""/>
8249 <method name=
"CopyFromIcon" type=
"bool" overloaded=
"no">
8250 <autodoc>CopyFromIcon(Icon icon) -
> bool
</autodoc>
8252 <param name=
"icon" type=
"wxIcon" default=
""/>
8255 <method name=
"SetHeight" type=
"" overloaded=
"no">
8256 <autodoc>SetHeight(int height)
</autodoc>
8257 <docstring>Set the height property (does not affect the bitmap data).
</docstring>
8259 <param name=
"height" type=
"int" default=
""/>
8262 <method name=
"SetWidth" type=
"" overloaded=
"no">
8263 <autodoc>SetWidth(int width)
</autodoc>
8264 <docstring>Set the width property (does not affect the bitmap data).
</docstring>
8266 <param name=
"width" type=
"int" default=
""/>
8269 <method name=
"SetDepth" type=
"" overloaded=
"no">
8270 <autodoc>SetDepth(int depth)
</autodoc>
8271 <docstring>Set the depth property (does not affect the bitmap data).
</docstring>
8273 <param name=
"depth" type=
"int" default=
""/>
8276 <method name=
"__eq__" type=
"bool" overloaded=
"no">
8277 <autodoc>__eq__(Bitmap other) -
> bool
</autodoc>
8279 <param name=
"other" type=
"Bitmap" default=
""/>
8282 <method name=
"__ne__" type=
"bool" overloaded=
"no">
8283 <autodoc>__ne__(Bitmap other) -
> bool
</autodoc>
8285 <param name=
"other" type=
"Bitmap" default=
""/>
8289 <class name=
"Mask" oldname=
"wxMask" module=
"gdi">
8290 <docstring>This class encapsulates a monochrome mask bitmap, where the masked area is
8291 black and the unmasked area is white. When associated with a bitmap and drawn
8292 in a device context, the unmasked area of the bitmap will be drawn, and the
8293 masked area will not be drawn.
</docstring>
8294 <baseclass name=
"Object"/>
8295 <constructor name=
"Mask" overloaded=
"no">
8296 <autodoc>__init__(Bitmap bitmap, Colour colour=NullColour) -
> Mask
</autodoc>
8297 <docstring>Constructs a mask from a bitmap and a colour in that bitmap that indicates
8298 the transparent portions of the mask, by default BLACK is used.
</docstring>
8300 <param name=
"bitmap" type=
"Bitmap" default=
""/>
8301 <param name=
"colour" type=
"Colour" default=
"wxNullColour"/>
8305 <pythoncode> MaskColour = Mask
</pythoncode>
8306 <class name=
"Icon" oldname=
"wxIcon" module=
"gdi">
8307 <baseclass name=
"GDIObject"/>
8308 <constructor name=
"Icon" overloaded=
"no">
8309 <autodoc>__init__(String name, int type, int desiredWidth=-
1, int desiredHeight=-
1) -
> Icon
</autodoc>
8311 <param name=
"name" type=
"String" default=
""/>
8312 <param name=
"type" type=
"wxBitmapType" default=
""/>
8313 <param name=
"desiredWidth" type=
"int" default=
"-1"/>
8314 <param name=
"desiredHeight" type=
"int" default=
"-1"/>
8317 <constructor name=
"EmptyIcon" overloaded=
"no">
8318 <autodoc>EmptyIcon() -
> Icon
</autodoc>
8320 <constructor name=
"IconFromLocation" overloaded=
"no">
8321 <autodoc>IconFromLocation(IconLocation loc) -
> Icon
</autodoc>
8323 <param name=
"loc" type=
"wxIconLocation" default=
""/>
8326 <constructor name=
"IconFromBitmap" overloaded=
"no">
8327 <autodoc>IconFromBitmap(Bitmap bmp) -
> Icon
</autodoc>
8329 <param name=
"bmp" type=
"Bitmap" default=
""/>
8332 <constructor name=
"IconFromXPMData" overloaded=
"no">
8333 <autodoc>IconFromXPMData(PyObject listOfStrings) -
> Icon
</autodoc>
8335 <param name=
"listOfStrings" type=
"PyObject" default=
""/>
8338 <destructor name=
"~wxIcon" overloaded=
"no">
8339 <autodoc>__del__()
</autodoc>
8341 <method name=
"LoadFile" type=
"bool" overloaded=
"no">
8342 <autodoc>LoadFile(String name, int type) -
> bool
</autodoc>
8344 <param name=
"name" type=
"String" default=
""/>
8345 <param name=
"type" type=
"wxBitmapType" default=
""/>
8348 <method name=
"Ok" type=
"bool" overloaded=
"no">
8349 <autodoc>Ok() -
> bool
</autodoc>
8351 <method name=
"GetWidth" type=
"int" overloaded=
"no">
8352 <autodoc>GetWidth() -
> int
</autodoc>
8354 <method name=
"GetHeight" type=
"int" overloaded=
"no">
8355 <autodoc>GetHeight() -
> int
</autodoc>
8357 <method name=
"GetDepth" type=
"int" overloaded=
"no">
8358 <autodoc>GetDepth() -
> int
</autodoc>
8360 <method name=
"SetWidth" type=
"" overloaded=
"no">
8361 <autodoc>SetWidth(int w)
</autodoc>
8363 <param name=
"w" type=
"int" default=
""/>
8366 <method name=
"SetHeight" type=
"" overloaded=
"no">
8367 <autodoc>SetHeight(int h)
</autodoc>
8369 <param name=
"h" type=
"int" default=
""/>
8372 <method name=
"SetDepth" type=
"" overloaded=
"no">
8373 <autodoc>SetDepth(int d)
</autodoc>
8375 <param name=
"d" type=
"int" default=
""/>
8378 <method name=
"CopyFromBitmap" type=
"" overloaded=
"no">
8379 <autodoc>CopyFromBitmap(Bitmap bmp)
</autodoc>
8381 <param name=
"bmp" type=
"Bitmap" default=
""/>
8385 <class name=
"IconLocation" oldname=
"wxIconLocation" module=
"gdi">
8386 <constructor name=
"IconLocation" overloaded=
"no">
8387 <autodoc>__init__(String filename=
&wxPyEmptyString, int num=
0) -
> IconLocation
</autodoc>
8389 <param name=
"filename" type=
"String" default=
"&wxPyEmptyString"/>
8390 <param name=
"num" type=
"int" default=
"0"/>
8393 <destructor name=
"~wxIconLocation" overloaded=
"no">
8394 <autodoc>__del__()
</autodoc>
8396 <method name=
"IsOk" type=
"bool" overloaded=
"no">
8397 <autodoc>IsOk() -
> bool
</autodoc>
8399 <method name=
"SetFileName" type=
"" overloaded=
"no">
8400 <autodoc>SetFileName(String filename)
</autodoc>
8402 <param name=
"filename" type=
"String" default=
""/>
8405 <method name=
"GetFileName" type=
"String" overloaded=
"no">
8406 <autodoc>GetFileName() -
> String
</autodoc>
8408 <method name=
"SetIndex" type=
"" overloaded=
"no">
8409 <autodoc>SetIndex(int num)
</autodoc>
8411 <param name=
"num" type=
"int" default=
""/>
8414 <method name=
"GetIndex" type=
"int" overloaded=
"no">
8415 <autodoc>GetIndex() -
> int
</autodoc>
8418 <class name=
"IconBundle" oldname=
"wxIconBundle" module=
"gdi">
8419 <constructor name=
"IconBundle" overloaded=
"no">
8420 <autodoc>__init__() -
> IconBundle
</autodoc>
8422 <constructor name=
"IconBundleFromFile" overloaded=
"no">
8423 <autodoc>IconBundleFromFile(String file, long type) -
> IconBundle
</autodoc>
8425 <param name=
"file" type=
"String" default=
""/>
8426 <param name=
"type" type=
"long" default=
""/>
8429 <constructor name=
"IconBundleFromIcon" overloaded=
"no">
8430 <autodoc>IconBundleFromIcon(Icon icon) -
> IconBundle
</autodoc>
8432 <param name=
"icon" type=
"Icon" default=
""/>
8435 <destructor name=
"~wxIconBundle" overloaded=
"no">
8436 <autodoc>__del__()
</autodoc>
8438 <method name=
"AddIcon" type=
"" overloaded=
"no">
8439 <autodoc>AddIcon(Icon icon)
</autodoc>
8441 <param name=
"icon" type=
"Icon" default=
""/>
8444 <method name=
"AddIconFromFile" type=
"" overloaded=
"no">
8445 <autodoc>AddIconFromFile(String file, long type)
</autodoc>
8447 <param name=
"file" type=
"String" default=
""/>
8448 <param name=
"type" type=
"long" default=
""/>
8451 <method name=
"GetIcon" type=
"Icon" overloaded=
"no">
8452 <autodoc>GetIcon(Size size) -
> Icon
</autodoc>
8454 <param name=
"size" type=
"Size" default=
""/>
8458 <class name=
"Cursor" oldname=
"wxCursor" module=
"gdi">
8459 <docstring>A cursor is a small bitmap usually used for denoting where the
8460 mouse pointer is, with a picture that might indicate the
8461 interpretation of a mouse click.
8463 A single cursor object may be used in many windows (any subwindow
8464 type). The wxWindows convention is to set the cursor for a
8465 window, as in X, rather than to set it globally as in MS Windows,
8466 although a global wx.SetCursor function is also available for use
8467 on MS Windows.
</docstring>
8468 <baseclass name=
"GDIObject"/>
8469 <constructor name=
"Cursor" overloaded=
"no">
8470 <autodoc>__init__(String cursorName, long type, int hotSpotX=
0, int hotSpotY=
0) -
> Cursor
</autodoc>
8471 <docstring>Construct a Cursor from a file. Specify the type of file using
8472 wx.BITAMP_TYPE* constants, and specify the hotspot if not using a
8475 This cursor is not available on wxGTK, use wx.StockCursor,
8476 wx.CursorFromImage, or wx.CursorFromBits instead.
</docstring>
8478 <param name=
"cursorName" type=
"String" default=
""/>
8479 <param name=
"type" type=
"long" default=
""/>
8480 <param name=
"hotSpotX" type=
"int" default=
"0"/>
8481 <param name=
"hotSpotY" type=
"int" default=
"0"/>
8484 <constructor name=
"StockCursor" overloaded=
"no">
8485 <autodoc>StockCursor(int id) -
> Cursor
</autodoc>
8486 <docstring>Create a cursor using one of the stock cursors. Note that not
8487 all cursors are available on all platforms.
</docstring>
8491 wx.CURSOR_ARROW A standard arrow cursor.
8492 wx.CURSOR_RIGHT_ARROW A standard arrow cursor pointing to the right.
8493 wx.CURSOR_BLANK Transparent cursor.
8494 wx.CURSOR_BULLSEYE Bullseye cursor.
8495 wx.CURSOR_CHAR Rectangular character cursor.
8496 wx.CURSOR_CROSS A cross cursor.
8497 wx.CURSOR_HAND A hand cursor.
8498 wx.CURSOR_IBEAM An I-beam cursor (vertical line).
8499 wx.CURSOR_LEFT_BUTTON Represents a mouse with the left button depressed.
8500 wx.CURSOR_MAGNIFIER A magnifier icon.
8501 wx.CURSOR_MIDDLE_BUTTON Represents a mouse with the middle button depressed.
8502 wx.CURSOR_NO_ENTRY A no-entry sign cursor.
8503 wx.CURSOR_PAINT_BRUSH A paintbrush cursor.
8504 wx.CURSOR_PENCIL A pencil cursor.
8505 wx.CURSOR_POINT_LEFT A cursor that points left.
8506 wx.CURSOR_POINT_RIGHT A cursor that points right.
8507 wx.CURSOR_QUESTION_ARROW An arrow and question mark.
8508 wx.CURSOR_RIGHT_BUTTON Represents a mouse with the right button depressed.
8509 wx.CURSOR_SIZENESW A sizing cursor pointing NE-SW.
8510 wx.CURSOR_SIZENS A sizing cursor pointing N-S.
8511 wx.CURSOR_SIZENWSE A sizing cursor pointing NW-SE.
8512 wx.CURSOR_SIZEWE A sizing cursor pointing W-E.
8513 wx.CURSOR_SIZING A general sizing cursor.
8514 wx.CURSOR_SPRAYCAN A spraycan cursor.
8515 wx.CURSOR_WAIT A wait cursor.
8516 wx.CURSOR_WATCH A watch cursor.
8517 wx.CURSOR_ARROWWAIT A cursor with both an arrow and an hourglass, (windows.)
8521 <param name=
"id" type=
"int" default=
""/>
8524 <constructor name=
"CursorFromImage" overloaded=
"no">
8525 <autodoc>CursorFromImage(Image image) -
> Cursor
</autodoc>
8526 <docstring>Constructs a cursor from a wxImage. The cursor is monochrome,
8527 colors with the RGB elements all greater than
127 will be
8528 foreground, colors less than this background. The mask (if any)
8529 will be used as transparent.
8531 In MSW the foreground will be white and the background black. The
8532 cursor is resized to
32x32 In GTK, the two most frequent colors
8533 will be used for foreground and background. The cursor will be
8534 displayed at the size of the image. On MacOS the cursor is
8535 resized to
16x16 and currently only shown as black/white (mask
8536 respected).
</docstring>
8538 <param name=
"image" type=
"Image" default=
""/>
8541 <destructor name=
"~wxCursor" overloaded=
"no">
8542 <autodoc>__del__()
</autodoc>
8544 <method name=
"Ok" type=
"bool" overloaded=
"no">
8545 <autodoc>Ok() -
> bool
</autodoc>
8549 #---------------------------------------------------------------------------
8551 <class name=
"Region" oldname=
"wxRegion" module=
"gdi">
8552 <baseclass name=
"GDIObject"/>
8553 <constructor name=
"Region" overloaded=
"no">
8554 <autodoc>__init__(int x=
0, int y=
0, int width=
0, int height=
0) -
> Region
</autodoc>
8556 <param name=
"x" type=
"int" default=
"0"/>
8557 <param name=
"y" type=
"int" default=
"0"/>
8558 <param name=
"width" type=
"int" default=
"0"/>
8559 <param name=
"height" type=
"int" default=
"0"/>
8562 <constructor name=
"RegionFromBitmap" overloaded=
"no">
8563 <autodoc>RegionFromBitmap(Bitmap bmp, Colour transColour=NullColour, int tolerance=
0) -
> Region
</autodoc>
8565 <param name=
"bmp" type=
"Bitmap" default=
""/>
8566 <param name=
"transColour" type=
"Colour" default=
"wxNullColour"/>
8567 <param name=
"tolerance" type=
"int" default=
"0"/>
8570 <constructor name=
"RegionFromPoints" overloaded=
"no">
8571 <autodoc>RegionFromPoints(int points, Point points_array, int fillStyle=WINDING_RULE) -
> Region
</autodoc>
8573 <param name=
"points" type=
"int" default=
""/>
8574 <param name=
"points_array" type=
"Point" default=
""/>
8575 <param name=
"fillStyle" type=
"int" default=
"wxWINDING_RULE"/>
8578 <destructor name=
"~wxRegion" overloaded=
"no">
8579 <autodoc>__del__()
</autodoc>
8581 <method name=
"Clear" type=
"" overloaded=
"no">
8582 <autodoc>Clear()
</autodoc>
8584 <method name=
"Offset" type=
"bool" overloaded=
"no">
8585 <autodoc>Offset(int x, int y) -
> bool
</autodoc>
8587 <param name=
"x" type=
"int" default=
""/>
8588 <param name=
"y" type=
"int" default=
""/>
8591 <method name=
"Contains" type=
"wxRegionContain" overloaded=
"no">
8592 <autodoc>Contains(int x, int y) -
> int
</autodoc>
8594 <param name=
"x" type=
"int" default=
""/>
8595 <param name=
"y" type=
"int" default=
""/>
8598 <method name=
"ContainsPoint" type=
"wxRegionContain" overloaded=
"no">
8599 <autodoc>ContainsPoint(Point pt) -
> int
</autodoc>
8601 <param name=
"pt" type=
"Point" default=
""/>
8604 <method name=
"ContainsRect" type=
"wxRegionContain" overloaded=
"no">
8605 <autodoc>ContainsRect(Rect rect) -
> int
</autodoc>
8607 <param name=
"rect" type=
"Rect" default=
""/>
8610 <method name=
"ContainsRectDim" type=
"wxRegionContain" overloaded=
"no">
8611 <autodoc>ContainsRectDim(int x, int y, int w, int h) -
> int
</autodoc>
8613 <param name=
"x" type=
"int" default=
""/>
8614 <param name=
"y" type=
"int" default=
""/>
8615 <param name=
"w" type=
"int" default=
""/>
8616 <param name=
"h" type=
"int" default=
""/>
8619 <method name=
"GetBox" type=
"Rect" overloaded=
"no">
8620 <autodoc>GetBox() -
> Rect
</autodoc>
8622 <method name=
"Intersect" type=
"bool" overloaded=
"no">
8623 <autodoc>Intersect(int x, int y, int width, int height) -
> bool
</autodoc>
8625 <param name=
"x" type=
"int" default=
""/>
8626 <param name=
"y" type=
"int" default=
""/>
8627 <param name=
"width" type=
"int" default=
""/>
8628 <param name=
"height" type=
"int" default=
""/>
8631 <method name=
"IntersectRect" type=
"bool" overloaded=
"no">
8632 <autodoc>IntersectRect(Rect rect) -
> bool
</autodoc>
8634 <param name=
"rect" type=
"Rect" default=
""/>
8637 <method name=
"IntersectRegion" type=
"bool" overloaded=
"no">
8638 <autodoc>IntersectRegion(Region region) -
> bool
</autodoc>
8640 <param name=
"region" type=
"Region" default=
""/>
8643 <method name=
"IsEmpty" type=
"bool" overloaded=
"no">
8644 <autodoc>IsEmpty() -
> bool
</autodoc>
8646 <method name=
"Union" type=
"bool" overloaded=
"no">
8647 <autodoc>Union(int x, int y, int width, int height) -
> bool
</autodoc>
8649 <param name=
"x" type=
"int" default=
""/>
8650 <param name=
"y" type=
"int" default=
""/>
8651 <param name=
"width" type=
"int" default=
""/>
8652 <param name=
"height" type=
"int" default=
""/>
8655 <method name=
"UnionRect" type=
"bool" overloaded=
"no">
8656 <autodoc>UnionRect(Rect rect) -
> bool
</autodoc>
8658 <param name=
"rect" type=
"Rect" default=
""/>
8661 <method name=
"UnionRegion" type=
"bool" overloaded=
"no">
8662 <autodoc>UnionRegion(Region region) -
> bool
</autodoc>
8664 <param name=
"region" type=
"Region" default=
""/>
8667 <method name=
"Subtract" type=
"bool" overloaded=
"no">
8668 <autodoc>Subtract(int x, int y, int width, int height) -
> bool
</autodoc>
8670 <param name=
"x" type=
"int" default=
""/>
8671 <param name=
"y" type=
"int" default=
""/>
8672 <param name=
"width" type=
"int" default=
""/>
8673 <param name=
"height" type=
"int" default=
""/>
8676 <method name=
"SubtractRect" type=
"bool" overloaded=
"no">
8677 <autodoc>SubtractRect(Rect rect) -
> bool
</autodoc>
8679 <param name=
"rect" type=
"Rect" default=
""/>
8682 <method name=
"SubtractRegion" type=
"bool" overloaded=
"no">
8683 <autodoc>SubtractRegion(Region region) -
> bool
</autodoc>
8685 <param name=
"region" type=
"Region" default=
""/>
8688 <method name=
"Xor" type=
"bool" overloaded=
"no">
8689 <autodoc>Xor(int x, int y, int width, int height) -
> bool
</autodoc>
8691 <param name=
"x" type=
"int" default=
""/>
8692 <param name=
"y" type=
"int" default=
""/>
8693 <param name=
"width" type=
"int" default=
""/>
8694 <param name=
"height" type=
"int" default=
""/>
8697 <method name=
"XorRect" type=
"bool" overloaded=
"no">
8698 <autodoc>XorRect(Rect rect) -
> bool
</autodoc>
8700 <param name=
"rect" type=
"Rect" default=
""/>
8703 <method name=
"XorRegion" type=
"bool" overloaded=
"no">
8704 <autodoc>XorRegion(Region region) -
> bool
</autodoc>
8706 <param name=
"region" type=
"Region" default=
""/>
8709 <method name=
"ConvertToBitmap" type=
"Bitmap" overloaded=
"no">
8710 <autodoc>ConvertToBitmap() -
> Bitmap
</autodoc>
8712 <method name=
"UnionBitmap" type=
"bool" overloaded=
"no">
8713 <autodoc>UnionBitmap(Bitmap bmp, Colour transColour=NullColour, int tolerance=
0) -
> bool
</autodoc>
8715 <param name=
"bmp" type=
"Bitmap" default=
""/>
8716 <param name=
"transColour" type=
"Colour" default=
"wxNullColour"/>
8717 <param name=
"tolerance" type=
"int" default=
"0"/>
8721 <class name=
"RegionIterator" oldname=
"wxRegionIterator" module=
"gdi">
8722 <baseclass name=
"Object"/>
8723 <constructor name=
"RegionIterator" overloaded=
"no">
8724 <autodoc>__init__(Region region) -
> RegionIterator
</autodoc>
8726 <param name=
"region" type=
"Region" default=
""/>
8729 <destructor name=
"~wxRegionIterator" overloaded=
"no">
8730 <autodoc>__del__()
</autodoc>
8732 <method name=
"GetX" type=
"int" overloaded=
"no">
8733 <autodoc>GetX() -
> int
</autodoc>
8735 <method name=
"GetY" type=
"int" overloaded=
"no">
8736 <autodoc>GetY() -
> int
</autodoc>
8738 <method name=
"GetW" type=
"int" overloaded=
"no">
8739 <autodoc>GetW() -
> int
</autodoc>
8741 <method name=
"GetWidth" type=
"int" overloaded=
"no">
8742 <autodoc>GetWidth() -
> int
</autodoc>
8744 <method name=
"GetH" type=
"int" overloaded=
"no">
8745 <autodoc>GetH() -
> int
</autodoc>
8747 <method name=
"GetHeight" type=
"int" overloaded=
"no">
8748 <autodoc>GetHeight() -
> int
</autodoc>
8750 <method name=
"GetRect" type=
"Rect" overloaded=
"no">
8751 <autodoc>GetRect() -
> Rect
</autodoc>
8753 <method name=
"HaveRects" type=
"bool" overloaded=
"no">
8754 <autodoc>HaveRects() -
> bool
</autodoc>
8756 <method name=
"Reset" type=
"" overloaded=
"no">
8757 <autodoc>Reset()
</autodoc>
8759 <method name=
"Next" type=
"" overloaded=
"no">
8760 <autodoc>Next()
</autodoc>
8762 <method name=
"__nonzero__" type=
"bool" overloaded=
"no">
8763 <autodoc>__nonzero__() -
> bool
</autodoc>
8767 #---------------------------------------------------------------------------
8770 #---------------------------------------------------------------------------
8772 <class name=
"NativeFontInfo" oldname=
"wxNativeFontInfo" module=
"gdi">
8773 <constructor name=
"NativeFontInfo" overloaded=
"no">
8774 <autodoc>__init__() -
> NativeFontInfo
</autodoc>
8776 <destructor name=
"~wxNativeFontInfo" overloaded=
"no">
8777 <autodoc>__del__()
</autodoc>
8779 <method name=
"Init" type=
"" overloaded=
"no">
8780 <autodoc>Init()
</autodoc>
8782 <method name=
"InitFromFont" type=
"" overloaded=
"no">
8783 <autodoc>InitFromFont(Font font)
</autodoc>
8785 <param name=
"font" type=
"wxFont" default=
""/>
8788 <method name=
"GetPointSize" type=
"int" overloaded=
"no">
8789 <autodoc>GetPointSize() -
> int
</autodoc>
8791 <method name=
"GetStyle" type=
"wxFontStyle" overloaded=
"no">
8792 <autodoc>GetStyle() -
> int
</autodoc>
8794 <method name=
"GetWeight" type=
"wxFontWeight" overloaded=
"no">
8795 <autodoc>GetWeight() -
> int
</autodoc>
8797 <method name=
"GetUnderlined" type=
"bool" overloaded=
"no">
8798 <autodoc>GetUnderlined() -
> bool
</autodoc>
8800 <method name=
"GetFaceName" type=
"String" overloaded=
"no">
8801 <autodoc>GetFaceName() -
> String
</autodoc>
8803 <method name=
"GetFamily" type=
"wxFontFamily" overloaded=
"no">
8804 <autodoc>GetFamily() -
> int
</autodoc>
8806 <method name=
"GetEncoding" type=
"wxFontEncoding" overloaded=
"no">
8807 <autodoc>GetEncoding() -
> int
</autodoc>
8809 <method name=
"SetPointSize" type=
"" overloaded=
"no">
8810 <autodoc>SetPointSize(int pointsize)
</autodoc>
8812 <param name=
"pointsize" type=
"int" default=
""/>
8815 <method name=
"SetStyle" type=
"" overloaded=
"no">
8816 <autodoc>SetStyle(int style)
</autodoc>
8818 <param name=
"style" type=
"wxFontStyle" default=
""/>
8821 <method name=
"SetWeight" type=
"" overloaded=
"no">
8822 <autodoc>SetWeight(int weight)
</autodoc>
8824 <param name=
"weight" type=
"wxFontWeight" default=
""/>
8827 <method name=
"SetUnderlined" type=
"" overloaded=
"no">
8828 <autodoc>SetUnderlined(bool underlined)
</autodoc>
8830 <param name=
"underlined" type=
"bool" default=
""/>
8833 <method name=
"SetFaceName" type=
"" overloaded=
"no">
8834 <autodoc>SetFaceName(String facename)
</autodoc>
8836 <param name=
"facename" type=
"String" default=
""/>
8839 <method name=
"SetFamily" type=
"" overloaded=
"no">
8840 <autodoc>SetFamily(int family)
</autodoc>
8842 <param name=
"family" type=
"wxFontFamily" default=
""/>
8845 <method name=
"SetEncoding" type=
"" overloaded=
"no">
8846 <autodoc>SetEncoding(int encoding)
</autodoc>
8848 <param name=
"encoding" type=
"wxFontEncoding" default=
""/>
8851 <method name=
"FromString" type=
"bool" overloaded=
"no">
8852 <autodoc>FromString(String s) -
> bool
</autodoc>
8854 <param name=
"s" type=
"String" default=
""/>
8857 <method name=
"ToString" type=
"String" overloaded=
"no">
8858 <autodoc>ToString() -
> String
</autodoc>
8860 <method name=
"__str__" type=
"String" overloaded=
"no">
8861 <autodoc>__str__() -
> String
</autodoc>
8863 <method name=
"FromUserString" type=
"bool" overloaded=
"no">
8864 <autodoc>FromUserString(String s) -
> bool
</autodoc>
8866 <param name=
"s" type=
"String" default=
""/>
8869 <method name=
"ToUserString" type=
"String" overloaded=
"no">
8870 <autodoc>ToUserString() -
> String
</autodoc>
8873 <class name=
"NativeEncodingInfo" oldname=
"wxNativeEncodingInfo" module=
"gdi">
8874 <constructor name=
"NativeEncodingInfo" overloaded=
"no">
8875 <autodoc>__init__() -
> NativeEncodingInfo
</autodoc>
8877 <destructor name=
"~wxNativeEncodingInfo" overloaded=
"no">
8878 <autodoc>__del__()
</autodoc>
8880 <property name=
"facename" type=
"String" readonly=
"no"/>
8881 <property name=
"encoding" type=
"wxFontEncoding" readonly=
"no"/>
8882 <method name=
"FromString" type=
"bool" overloaded=
"no">
8883 <autodoc>FromString(String s) -
> bool
</autodoc>
8885 <param name=
"s" type=
"String" default=
""/>
8888 <method name=
"ToString" type=
"String" overloaded=
"no">
8889 <autodoc>ToString() -
> String
</autodoc>
8892 <method name=
"GetNativeFontEncoding" oldname=
"wxGetNativeFontEncoding" type=
"NativeEncodingInfo" overloaded=
"no">
8893 <autodoc>GetNativeFontEncoding(int encoding) -
> NativeEncodingInfo
</autodoc>
8895 <param name=
"encoding" type=
"wxFontEncoding" default=
""/>
8898 <method name=
"TestFontEncoding" oldname=
"wxTestFontEncoding" type=
"bool" overloaded=
"no">
8899 <autodoc>TestFontEncoding(NativeEncodingInfo info) -
> bool
</autodoc>
8901 <param name=
"info" type=
"NativeEncodingInfo" default=
""/>
8905 #---------------------------------------------------------------------------
8907 <class name=
"FontMapper" oldname=
"wxFontMapper" module=
"gdi">
8908 <constructor name=
"FontMapper" overloaded=
"no">
8909 <autodoc>__init__() -
> FontMapper
</autodoc>
8911 <destructor name=
"~wxFontMapper" overloaded=
"no">
8912 <autodoc>__del__()
</autodoc>
8914 <staticmethod name=
"Get" type=
"FontMapper" overloaded=
"no">
8915 <autodoc>Get() -
> FontMapper
</autodoc>
8917 <staticmethod name=
"Set" type=
"FontMapper" overloaded=
"no">
8918 <autodoc>Set(FontMapper mapper) -
> FontMapper
</autodoc>
8920 <param name=
"mapper" type=
"FontMapper" default=
""/>
8923 <method name=
"CharsetToEncoding" type=
"wxFontEncoding" overloaded=
"no">
8924 <autodoc>CharsetToEncoding(String charset, bool interactive=True) -
> int
</autodoc>
8926 <param name=
"charset" type=
"String" default=
""/>
8927 <param name=
"interactive" type=
"bool" default=
"True"/>
8930 <staticmethod name=
"GetSupportedEncodingsCount" type=
"size_t" overloaded=
"no">
8931 <autodoc>GetSupportedEncodingsCount() -
> size_t
</autodoc>
8933 <staticmethod name=
"GetEncoding" type=
"wxFontEncoding" overloaded=
"no">
8934 <autodoc>GetEncoding(size_t n) -
> int
</autodoc>
8936 <param name=
"n" type=
"size_t" default=
""/>
8939 <staticmethod name=
"GetEncodingName" type=
"String" overloaded=
"no">
8940 <autodoc>GetEncodingName(int encoding) -
> String
</autodoc>
8942 <param name=
"encoding" type=
"wxFontEncoding" default=
""/>
8945 <staticmethod name=
"GetEncodingDescription" type=
"String" overloaded=
"no">
8946 <autodoc>GetEncodingDescription(int encoding) -
> String
</autodoc>
8948 <param name=
"encoding" type=
"wxFontEncoding" default=
""/>
8951 <method name=
"SetConfig" type=
"" overloaded=
"no">
8952 <autodoc>SetConfig(ConfigBase config)
</autodoc>
8954 <param name=
"config" type=
"wxConfigBase" default=
""/>
8957 <method name=
"SetConfigPath" type=
"" overloaded=
"no">
8958 <autodoc>SetConfigPath(String prefix)
</autodoc>
8960 <param name=
"prefix" type=
"String" default=
""/>
8963 <staticmethod name=
"GetDefaultConfigPath" type=
"String" overloaded=
"no">
8964 <autodoc>GetDefaultConfigPath() -
> String
</autodoc>
8966 <method name=
"GetAltForEncoding" type=
"PyObject" overloaded=
"no">
8967 <autodoc>GetAltForEncoding(int encoding, String facename=EmptyString, bool interactive=True) -
> PyObject
</autodoc>
8969 <param name=
"encoding" type=
"wxFontEncoding" default=
""/>
8970 <param name=
"facename" type=
"String" default=
"wxPyEmptyString"/>
8971 <param name=
"interactive" type=
"bool" default=
"True"/>
8974 <method name=
"IsEncodingAvailable" type=
"bool" overloaded=
"no">
8975 <autodoc>IsEncodingAvailable(int encoding, String facename=EmptyString) -
> bool
</autodoc>
8977 <param name=
"encoding" type=
"wxFontEncoding" default=
""/>
8978 <param name=
"facename" type=
"String" default=
"wxPyEmptyString"/>
8981 <method name=
"SetDialogParent" type=
"" overloaded=
"no">
8982 <autodoc>SetDialogParent(Window parent)
</autodoc>
8984 <param name=
"parent" type=
"Window" default=
""/>
8987 <method name=
"SetDialogTitle" type=
"" overloaded=
"no">
8988 <autodoc>SetDialogTitle(String title)
</autodoc>
8990 <param name=
"title" type=
"String" default=
""/>
8995 #---------------------------------------------------------------------------
8997 <class name=
"Font" oldname=
"wxFont" module=
"gdi">
8998 <baseclass name=
"GDIObject"/>
8999 <constructor name=
"Font" overloaded=
"no">
9000 <autodoc>__init__(int pointSize, int family, int style, int weight, bool underline=False,
9001 String face=EmptyString,
9002 int encoding=FONTENCODING_DEFAULT) -
> Font
</autodoc>
9004 <param name=
"pointSize" type=
"int" default=
""/>
9005 <param name=
"family" type=
"int" default=
""/>
9006 <param name=
"style" type=
"int" default=
""/>
9007 <param name=
"weight" type=
"int" default=
""/>
9008 <param name=
"underline" type=
"bool" default=
"False"/>
9009 <param name=
"face" type=
"String" default=
"wxPyEmptyString"/>
9010 <param name=
"encoding" type=
"wxFontEncoding" default=
"wxFONTENCODING_DEFAULT"/>
9013 <constructor name=
"FontFromNativeInfo" overloaded=
"no">
9014 <autodoc>FontFromNativeInfo(NativeFontInfo info) -
> Font
</autodoc>
9016 <param name=
"info" type=
"NativeFontInfo" default=
""/>
9019 <constructor name=
"FontFromNativeInfoString" overloaded=
"no">
9020 <autodoc>FontFromNativeInfoString(String info) -
> Font
</autodoc>
9022 <param name=
"info" type=
"String" default=
""/>
9025 <constructor name=
"Font2" overloaded=
"no">
9026 <autodoc>Font2(int pointSize, int family, int flags=FONTFLAG_DEFAULT,
9027 String face=EmptyString, int encoding=FONTENCODING_DEFAULT) -
> Font
</autodoc>
9029 <param name=
"pointSize" type=
"int" default=
""/>
9030 <param name=
"family" type=
"wxFontFamily" default=
""/>
9031 <param name=
"flags" type=
"int" default=
"wxFONTFLAG_DEFAULT"/>
9032 <param name=
"face" type=
"String" default=
"wxPyEmptyString"/>
9033 <param name=
"encoding" type=
"wxFontEncoding" default=
"wxFONTENCODING_DEFAULT"/>
9036 <destructor name=
"~wxFont" overloaded=
"no">
9037 <autodoc>__del__()
</autodoc>
9039 <method name=
"Ok" type=
"bool" overloaded=
"no">
9040 <autodoc>Ok() -
> bool
</autodoc>
9042 <method name=
"__eq__" type=
"bool" overloaded=
"no">
9043 <autodoc>__eq__(Font other) -
> bool
</autodoc>
9045 <param name=
"other" type=
"Font" default=
""/>
9048 <method name=
"__ne__" type=
"bool" overloaded=
"no">
9049 <autodoc>__ne__(Font other) -
> bool
</autodoc>
9051 <param name=
"other" type=
"Font" default=
""/>
9054 <method name=
"GetPointSize" type=
"int" overloaded=
"no">
9055 <autodoc>GetPointSize() -
> int
</autodoc>
9057 <method name=
"GetFamily" type=
"int" overloaded=
"no">
9058 <autodoc>GetFamily() -
> int
</autodoc>
9060 <method name=
"GetStyle" type=
"int" overloaded=
"no">
9061 <autodoc>GetStyle() -
> int
</autodoc>
9063 <method name=
"GetWeight" type=
"int" overloaded=
"no">
9064 <autodoc>GetWeight() -
> int
</autodoc>
9066 <method name=
"GetUnderlined" type=
"bool" overloaded=
"no">
9067 <autodoc>GetUnderlined() -
> bool
</autodoc>
9069 <method name=
"GetFaceName" type=
"String" overloaded=
"no">
9070 <autodoc>GetFaceName() -
> String
</autodoc>
9072 <method name=
"GetEncoding" type=
"wxFontEncoding" overloaded=
"no">
9073 <autodoc>GetEncoding() -
> int
</autodoc>
9075 <method name=
"GetNativeFontInfo" type=
"NativeFontInfo" overloaded=
"no">
9076 <autodoc>GetNativeFontInfo() -
> NativeFontInfo
</autodoc>
9078 <method name=
"IsFixedWidth" type=
"bool" overloaded=
"no">
9079 <autodoc>IsFixedWidth() -
> bool
</autodoc>
9081 <method name=
"GetNativeFontInfoDesc" type=
"String" overloaded=
"no">
9082 <autodoc>GetNativeFontInfoDesc() -
> String
</autodoc>
9084 <method name=
"GetNativeFontInfoUserDesc" type=
"String" overloaded=
"no">
9085 <autodoc>GetNativeFontInfoUserDesc() -
> String
</autodoc>
9087 <method name=
"SetPointSize" type=
"" overloaded=
"no">
9088 <autodoc>SetPointSize(int pointSize)
</autodoc>
9090 <param name=
"pointSize" type=
"int" default=
""/>
9093 <method name=
"SetFamily" type=
"" overloaded=
"no">
9094 <autodoc>SetFamily(int family)
</autodoc>
9096 <param name=
"family" type=
"int" default=
""/>
9099 <method name=
"SetStyle" type=
"" overloaded=
"no">
9100 <autodoc>SetStyle(int style)
</autodoc>
9102 <param name=
"style" type=
"int" default=
""/>
9105 <method name=
"SetWeight" type=
"" overloaded=
"no">
9106 <autodoc>SetWeight(int weight)
</autodoc>
9108 <param name=
"weight" type=
"int" default=
""/>
9111 <method name=
"SetFaceName" type=
"" overloaded=
"no">
9112 <autodoc>SetFaceName(String faceName)
</autodoc>
9114 <param name=
"faceName" type=
"String" default=
""/>
9117 <method name=
"SetUnderlined" type=
"" overloaded=
"no">
9118 <autodoc>SetUnderlined(bool underlined)
</autodoc>
9120 <param name=
"underlined" type=
"bool" default=
""/>
9123 <method name=
"SetEncoding" type=
"" overloaded=
"no">
9124 <autodoc>SetEncoding(int encoding)
</autodoc>
9126 <param name=
"encoding" type=
"wxFontEncoding" default=
""/>
9129 <method name=
"SetNativeFontInfo" type=
"" overloaded=
"no">
9130 <autodoc>SetNativeFontInfo(NativeFontInfo info)
</autodoc>
9132 <param name=
"info" type=
"NativeFontInfo" default=
""/>
9135 <method name=
"SetNativeFontInfoFromString" type=
"" overloaded=
"no">
9136 <autodoc>SetNativeFontInfoFromString(String info)
</autodoc>
9138 <param name=
"info" type=
"String" default=
""/>
9141 <method name=
"SetNativeFontInfoUserDesc" type=
"" overloaded=
"no">
9142 <autodoc>SetNativeFontInfoUserDesc(String info)
</autodoc>
9144 <param name=
"info" type=
"String" default=
""/>
9147 <method name=
"GetFamilyString" type=
"String" overloaded=
"no">
9148 <autodoc>GetFamilyString() -
> String
</autodoc>
9150 <method name=
"GetStyleString" type=
"String" overloaded=
"no">
9151 <autodoc>GetStyleString() -
> String
</autodoc>
9153 <method name=
"GetWeightString" type=
"String" overloaded=
"no">
9154 <autodoc>GetWeightString() -
> String
</autodoc>
9156 <method name=
"SetNoAntiAliasing" type=
"" overloaded=
"no">
9157 <autodoc>SetNoAntiAliasing(bool no=True)
</autodoc>
9159 <param name=
"no" type=
"bool" default=
"True"/>
9162 <method name=
"GetNoAntiAliasing" type=
"bool" overloaded=
"no">
9163 <autodoc>GetNoAntiAliasing() -
> bool
</autodoc>
9165 <staticmethod name=
"GetDefaultEncoding" type=
"wxFontEncoding" overloaded=
"no">
9166 <autodoc>GetDefaultEncoding() -
> int
</autodoc>
9168 <staticmethod name=
"SetDefaultEncoding" type=
"" overloaded=
"no">
9169 <autodoc>SetDefaultEncoding(int encoding)
</autodoc>
9171 <param name=
"encoding" type=
"wxFontEncoding" default=
""/>
9176 #---------------------------------------------------------------------------
9178 <class name=
"FontEnumerator" oldname=
"wxPyFontEnumerator" module=
"gdi">
9179 <constructor name=
"wxPyFontEnumerator" overloaded=
"no">
9180 <autodoc>__init__() -
> FontEnumerator
</autodoc>
9182 <destructor name=
"~wxPyFontEnumerator" overloaded=
"no">
9183 <autodoc>__del__()
</autodoc>
9185 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
9186 <autodoc>_setCallbackInfo(PyObject self, PyObject _class, bool incref)
</autodoc>
9188 <param name=
"self" type=
"PyObject" default=
""/>
9189 <param name=
"_class" type=
"PyObject" default=
""/>
9190 <param name=
"incref" type=
"bool" default=
""/>
9193 <method name=
"EnumerateFacenames" type=
"bool" overloaded=
"no">
9194 <autodoc>EnumerateFacenames(int encoding=FONTENCODING_SYSTEM, bool fixedWidthOnly=False) -
> bool
</autodoc>
9196 <param name=
"encoding" type=
"wxFontEncoding" default=
"wxFONTENCODING_SYSTEM"/>
9197 <param name=
"fixedWidthOnly" type=
"bool" default=
"False"/>
9200 <method name=
"EnumerateEncodings" type=
"bool" overloaded=
"no">
9201 <autodoc>EnumerateEncodings(String facename=EmptyString) -
> bool
</autodoc>
9203 <param name=
"facename" type=
"String" default=
"wxPyEmptyString"/>
9206 <method name=
"GetEncodings" type=
"PyObject" overloaded=
"no">
9207 <autodoc>GetEncodings() -
> PyObject
</autodoc>
9209 <method name=
"GetFacenames" type=
"PyObject" overloaded=
"no">
9210 <autodoc>GetFacenames() -
> PyObject
</autodoc>
9214 #---------------------------------------------------------------------------
9216 <class name=
"LanguageInfo" oldname=
"wxLanguageInfo" module=
"gdi">
9217 <property name=
"Language" type=
"int" readonly=
"no"/>
9218 <property name=
"CanonicalName" type=
"String" readonly=
"no"/>
9219 <property name=
"Description" type=
"String" readonly=
"no"/>
9221 <class name=
"Locale" oldname=
"wxLocale" module=
"gdi">
9222 <constructor name=
"Locale" overloaded=
"no">
9223 <autodoc>__init__(int language=LANGUAGE_DEFAULT, int flags=wxLOCALE_LOAD_DEFAULT|wxLOCALE_CONV_ENCODING) -
> Locale
</autodoc>
9225 <param name=
"language" type=
"int" default=
"wxLANGUAGE_DEFAULT"/>
9226 <param name=
"flags" type=
"int" default=
"wxLOCALE_LOAD_DEFAULT|wxLOCALE_CONV_ENCODING"/>
9229 <destructor name=
"~wxLocale" overloaded=
"no">
9230 <autodoc>__del__()
</autodoc>
9232 <method name=
"Init1" type=
"bool" overloaded=
"no">
9233 <autodoc>Init1(String szName, String szShort=EmptyString, String szLocale=EmptyString,
9234 bool bLoadDefault=True,
9235 bool bConvertEncoding=False) -
> bool
</autodoc>
9237 <param name=
"szName" type=
"String" default=
""/>
9238 <param name=
"szShort" type=
"String" default=
"wxPyEmptyString"/>
9239 <param name=
"szLocale" type=
"String" default=
"wxPyEmptyString"/>
9240 <param name=
"bLoadDefault" type=
"bool" default=
"True"/>
9241 <param name=
"bConvertEncoding" type=
"bool" default=
"False"/>
9244 <method name=
"Init2" type=
"bool" overloaded=
"no">
9245 <autodoc>Init2(int language=LANGUAGE_DEFAULT, int flags=wxLOCALE_LOAD_DEFAULT|wxLOCALE_CONV_ENCODING) -
> bool
</autodoc>
9247 <param name=
"language" type=
"int" default=
"wxLANGUAGE_DEFAULT"/>
9248 <param name=
"flags" type=
"int" default=
"wxLOCALE_LOAD_DEFAULT|wxLOCALE_CONV_ENCODING"/>
9251 <staticmethod name=
"GetSystemLanguage" type=
"int" overloaded=
"no">
9252 <autodoc>GetSystemLanguage() -
> int
</autodoc>
9254 <staticmethod name=
"GetSystemEncoding" type=
"wxFontEncoding" overloaded=
"no">
9255 <autodoc>GetSystemEncoding() -
> int
</autodoc>
9257 <staticmethod name=
"GetSystemEncodingName" type=
"String" overloaded=
"no">
9258 <autodoc>GetSystemEncodingName() -
> String
</autodoc>
9260 <method name=
"IsOk" type=
"bool" overloaded=
"no">
9261 <autodoc>IsOk() -
> bool
</autodoc>
9263 <method name=
"GetLocale" type=
"String" overloaded=
"no">
9264 <autodoc>GetLocale() -
> String
</autodoc>
9266 <method name=
"GetLanguage" type=
"int" overloaded=
"no">
9267 <autodoc>GetLanguage() -
> int
</autodoc>
9269 <method name=
"GetSysName" type=
"String" overloaded=
"no">
9270 <autodoc>GetSysName() -
> String
</autodoc>
9272 <method name=
"GetCanonicalName" type=
"String" overloaded=
"no">
9273 <autodoc>GetCanonicalName() -
> String
</autodoc>
9275 <staticmethod name=
"AddCatalogLookupPathPrefix" type=
"" overloaded=
"no">
9276 <autodoc>AddCatalogLookupPathPrefix(String prefix)
</autodoc>
9278 <param name=
"prefix" type=
"String" default=
""/>
9281 <method name=
"AddCatalog" type=
"bool" overloaded=
"no">
9282 <autodoc>AddCatalog(String szDomain) -
> bool
</autodoc>
9284 <param name=
"szDomain" type=
"String" default=
""/>
9287 <method name=
"IsLoaded" type=
"bool" overloaded=
"no">
9288 <autodoc>IsLoaded(String szDomain) -
> bool
</autodoc>
9290 <param name=
"szDomain" type=
"String" default=
""/>
9293 <staticmethod name=
"GetLanguageInfo" type=
"LanguageInfo" overloaded=
"no">
9294 <autodoc>GetLanguageInfo(int lang) -
> LanguageInfo
</autodoc>
9296 <param name=
"lang" type=
"int" default=
""/>
9299 <staticmethod name=
"GetLanguageName" type=
"String" overloaded=
"no">
9300 <autodoc>GetLanguageName(int lang) -
> String
</autodoc>
9302 <param name=
"lang" type=
"int" default=
""/>
9305 <staticmethod name=
"FindLanguageInfo" type=
"LanguageInfo" overloaded=
"no">
9306 <autodoc>FindLanguageInfo(String locale) -
> LanguageInfo
</autodoc>
9308 <param name=
"locale" type=
"String" default=
""/>
9311 <staticmethod name=
"AddLanguage" type=
"" overloaded=
"no">
9312 <autodoc>AddLanguage(LanguageInfo info)
</autodoc>
9314 <param name=
"info" type=
"LanguageInfo" default=
""/>
9317 <method name=
"GetString" type=
"String" overloaded=
"no">
9318 <autodoc>GetString(String szOrigString, String szDomain=EmptyString) -
> String
</autodoc>
9320 <param name=
"szOrigString" type=
"String" default=
""/>
9321 <param name=
"szDomain" type=
"String" default=
"wxPyEmptyString"/>
9324 <method name=
"GetName" type=
"String" overloaded=
"no">
9325 <autodoc>GetName() -
> String
</autodoc>
9328 <method name=
"GetLocale" oldname=
"wxGetLocale" type=
"Locale" overloaded=
"no">
9329 <autodoc>GetLocale() -
> Locale
</autodoc>
9331 <method name=
"GetTranslation" oldname=
"wxGetTranslation" type=
"String" overloaded=
"yes">
9333 <param name=
"str" type=
"String" default=
""/>
9336 <method name=
"GetTranslation" oldname=
"wxGetTranslation" type=
"String" overloaded=
"yes">
9337 <autodoc>GetTranslation(String str) -
> String
9338 GetTranslation(String str, String strPlural, size_t n) -
> String
</autodoc>
9340 <param name=
"str" type=
"String" default=
""/>
9341 <param name=
"strPlural" type=
"String" default=
""/>
9342 <param name=
"n" type=
"size_t" default=
""/>
9346 #---------------------------------------------------------------------------
9348 <class name=
"EncodingConverter" oldname=
"wxEncodingConverter" module=
"gdi">
9349 <baseclass name=
"Object"/>
9350 <constructor name=
"EncodingConverter" overloaded=
"no">
9351 <autodoc>__init__() -
> EncodingConverter
</autodoc>
9353 <destructor name=
"~wxEncodingConverter" overloaded=
"no">
9354 <autodoc>__del__()
</autodoc>
9356 <method name=
"Init" type=
"bool" overloaded=
"no">
9357 <autodoc>Init(int input_enc, int output_enc, int method=CONVERT_STRICT) -
> bool
</autodoc>
9359 <param name=
"input_enc" type=
"wxFontEncoding" default=
""/>
9360 <param name=
"output_enc" type=
"wxFontEncoding" default=
""/>
9361 <param name=
"method" type=
"int" default=
"wxCONVERT_STRICT"/>
9364 <method name=
"Convert" type=
"String" overloaded=
"no">
9365 <autodoc>Convert(String input) -
> String
</autodoc>
9367 <param name=
"input" type=
"String" default=
""/>
9370 <staticmethod name=
"GetPlatformEquivalents" type=
"wxFontEncodingArray" overloaded=
"no">
9371 <autodoc>GetPlatformEquivalents(int enc, int platform=PLATFORM_CURRENT) -
> wxFontEncodingArray
</autodoc>
9373 <param name=
"enc" type=
"wxFontEncoding" default=
""/>
9374 <param name=
"platform" type=
"int" default=
"wxPLATFORM_CURRENT"/>
9377 <staticmethod name=
"GetAllEquivalents" type=
"wxFontEncodingArray" overloaded=
"no">
9378 <autodoc>GetAllEquivalents(int enc) -
> wxFontEncodingArray
</autodoc>
9380 <param name=
"enc" type=
"wxFontEncoding" default=
""/>
9383 <staticmethod name=
"CanConvert" type=
"bool" overloaded=
"no">
9384 <autodoc>CanConvert(int encIn, int encOut) -
> bool
</autodoc>
9386 <param name=
"encIn" type=
"wxFontEncoding" default=
""/>
9387 <param name=
"encOut" type=
"wxFontEncoding" default=
""/>
9391 <pythoncode>#----------------------------------------------------------------------------
9392 # wxGTK sets the locale when initialized. Doing this at the Python
9393 # level should set it up to match what GTK is doing at the C level.
9394 if wx.Platform == "__WXGTK__":
9397 locale.setlocale(locale.LC_ALL, "")
9401 # On MSW add the directory where the wxWindows catalogs were installed
9402 # to the default catalog path.
9403 if wx.Platform == "__WXMSW__":
9405 localedir = os.path.join(os.path.split(__file__)[
0], "locale")
9406 Locale_AddCatalogLookupPathPrefix(localedir)
9409 #----------------------------------------------------------------------------
9412 #---------------------------------------------------------------------------
9414 <class name=
"DC" oldname=
"wxDC" module=
"gdi">
9415 <baseclass name=
"Object"/>
9416 <destructor name=
"~wxDC" overloaded=
"no">
9417 <autodoc>__del__()
</autodoc>
9419 <method name=
"BeginDrawing" type=
"" overloaded=
"no">
9420 <autodoc>BeginDrawing()
</autodoc>
9422 <method name=
"EndDrawing" type=
"" overloaded=
"no">
9423 <autodoc>EndDrawing()
</autodoc>
9425 <method name=
"FloodFillXY" type=
"bool" overloaded=
"no">
9426 <autodoc>FloodFillXY(int x, int y, Colour col, int style=FLOOD_SURFACE) -
> bool
</autodoc>
9428 <param name=
"x" type=
"int" default=
""/>
9429 <param name=
"y" type=
"int" default=
""/>
9430 <param name=
"col" type=
"Colour" default=
""/>
9431 <param name=
"style" type=
"int" default=
"wxFLOOD_SURFACE"/>
9434 <method name=
"FloodFill" type=
"bool" overloaded=
"no">
9435 <autodoc>FloodFill(Point pt, Colour col, int style=FLOOD_SURFACE) -
> bool
</autodoc>
9437 <param name=
"pt" type=
"Point" default=
""/>
9438 <param name=
"col" type=
"Colour" default=
""/>
9439 <param name=
"style" type=
"int" default=
"wxFLOOD_SURFACE"/>
9442 <method name=
"GetPixelXY" type=
"Colour" overloaded=
"no">
9443 <autodoc>GetPixelXY(int x, int y) -
> Colour
</autodoc>
9445 <param name=
"x" type=
"int" default=
""/>
9446 <param name=
"y" type=
"int" default=
""/>
9449 <method name=
"GetPixel" type=
"Colour" overloaded=
"no">
9450 <autodoc>GetPixel(Point pt) -
> Colour
</autodoc>
9452 <param name=
"pt" type=
"Point" default=
""/>
9455 <method name=
"DrawLineXY" type=
"" overloaded=
"no">
9456 <autodoc>DrawLineXY(int x1, int y1, int x2, int y2)
</autodoc>
9458 <param name=
"x1" type=
"int" default=
""/>
9459 <param name=
"y1" type=
"int" default=
""/>
9460 <param name=
"x2" type=
"int" default=
""/>
9461 <param name=
"y2" type=
"int" default=
""/>
9464 <method name=
"DrawLine" type=
"" overloaded=
"no">
9465 <autodoc>DrawLine(Point pt1, Point pt2)
</autodoc>
9467 <param name=
"pt1" type=
"Point" default=
""/>
9468 <param name=
"pt2" type=
"Point" default=
""/>
9471 <method name=
"CrossHairXY" type=
"" overloaded=
"no">
9472 <autodoc>CrossHairXY(int x, int y)
</autodoc>
9474 <param name=
"x" type=
"int" default=
""/>
9475 <param name=
"y" type=
"int" default=
""/>
9478 <method name=
"CrossHair" type=
"" overloaded=
"no">
9479 <autodoc>CrossHair(Point pt)
</autodoc>
9481 <param name=
"pt" type=
"Point" default=
""/>
9484 <method name=
"DrawArcXY" type=
"" overloaded=
"no">
9485 <autodoc>DrawArcXY(int x1, int y1, int x2, int y2, int xc, int yc)
</autodoc>
9487 <param name=
"x1" type=
"int" default=
""/>
9488 <param name=
"y1" type=
"int" default=
""/>
9489 <param name=
"x2" type=
"int" default=
""/>
9490 <param name=
"y2" type=
"int" default=
""/>
9491 <param name=
"xc" type=
"int" default=
""/>
9492 <param name=
"yc" type=
"int" default=
""/>
9495 <method name=
"DrawArc" type=
"" overloaded=
"no">
9496 <autodoc>DrawArc(Point pt1, Point pt2, Point centre)
</autodoc>
9498 <param name=
"pt1" type=
"Point" default=
""/>
9499 <param name=
"pt2" type=
"Point" default=
""/>
9500 <param name=
"centre" type=
"Point" default=
""/>
9503 <method name=
"DrawCheckMarkXY" type=
"" overloaded=
"no">
9504 <autodoc>DrawCheckMarkXY(int x, int y, int width, int height)
</autodoc>
9506 <param name=
"x" type=
"int" default=
""/>
9507 <param name=
"y" type=
"int" default=
""/>
9508 <param name=
"width" type=
"int" default=
""/>
9509 <param name=
"height" type=
"int" default=
""/>
9512 <method name=
"DrawCheckMark" type=
"" overloaded=
"no">
9513 <autodoc>DrawCheckMark(Rect rect)
</autodoc>
9515 <param name=
"rect" type=
"Rect" default=
""/>
9518 <method name=
"DrawEllipticArcXY" type=
"" overloaded=
"no">
9519 <autodoc>DrawEllipticArcXY(int x, int y, int w, int h, double sa, double ea)
</autodoc>
9521 <param name=
"x" type=
"int" default=
""/>
9522 <param name=
"y" type=
"int" default=
""/>
9523 <param name=
"w" type=
"int" default=
""/>
9524 <param name=
"h" type=
"int" default=
""/>
9525 <param name=
"sa" type=
"double" default=
""/>
9526 <param name=
"ea" type=
"double" default=
""/>
9529 <method name=
"DrawEllipticArc" type=
"" overloaded=
"no">
9530 <autodoc>DrawEllipticArc(Point pt, Size sz, double sa, double ea)
</autodoc>
9532 <param name=
"pt" type=
"Point" default=
""/>
9533 <param name=
"sz" type=
"Size" default=
""/>
9534 <param name=
"sa" type=
"double" default=
""/>
9535 <param name=
"ea" type=
"double" default=
""/>
9538 <method name=
"DrawPointXY" type=
"" overloaded=
"no">
9539 <autodoc>DrawPointXY(int x, int y)
</autodoc>
9541 <param name=
"x" type=
"int" default=
""/>
9542 <param name=
"y" type=
"int" default=
""/>
9545 <method name=
"DrawPoint" type=
"" overloaded=
"no">
9546 <autodoc>DrawPoint(Point pt)
</autodoc>
9548 <param name=
"pt" type=
"Point" default=
""/>
9551 <method name=
"DrawRectangleXY" type=
"" overloaded=
"no">
9552 <autodoc>DrawRectangleXY(int x, int y, int width, int height)
</autodoc>
9554 <param name=
"x" type=
"int" default=
""/>
9555 <param name=
"y" type=
"int" default=
""/>
9556 <param name=
"width" type=
"int" default=
""/>
9557 <param name=
"height" type=
"int" default=
""/>
9560 <method name=
"DrawRectangle" type=
"" overloaded=
"no">
9561 <autodoc>DrawRectangle(Point pt, Size sz)
</autodoc>
9563 <param name=
"pt" type=
"Point" default=
""/>
9564 <param name=
"sz" type=
"Size" default=
""/>
9567 <method name=
"DrawRectangleRect" type=
"" overloaded=
"no">
9568 <autodoc>DrawRectangleRect(Rect rect)
</autodoc>
9570 <param name=
"rect" type=
"Rect" default=
""/>
9573 <method name=
"DrawRoundedRectangleXY" type=
"" overloaded=
"no">
9574 <autodoc>DrawRoundedRectangleXY(int x, int y, int width, int height, double radius)
</autodoc>
9576 <param name=
"x" type=
"int" default=
""/>
9577 <param name=
"y" type=
"int" default=
""/>
9578 <param name=
"width" type=
"int" default=
""/>
9579 <param name=
"height" type=
"int" default=
""/>
9580 <param name=
"radius" type=
"double" default=
""/>
9583 <method name=
"DrawRoundedRectangle" type=
"" overloaded=
"no">
9584 <autodoc>DrawRoundedRectangle(Point pt, Size sz, double radius)
</autodoc>
9586 <param name=
"pt" type=
"Point" default=
""/>
9587 <param name=
"sz" type=
"Size" default=
""/>
9588 <param name=
"radius" type=
"double" default=
""/>
9591 <method name=
"DrawRoundedRectangleRect" type=
"" overloaded=
"no">
9592 <autodoc>DrawRoundedRectangleRect(Rect r, double radius)
</autodoc>
9594 <param name=
"r" type=
"Rect" default=
""/>
9595 <param name=
"radius" type=
"double" default=
""/>
9598 <method name=
"DrawCircleXY" type=
"" overloaded=
"no">
9599 <autodoc>DrawCircleXY(int x, int y, int radius)
</autodoc>
9601 <param name=
"x" type=
"int" default=
""/>
9602 <param name=
"y" type=
"int" default=
""/>
9603 <param name=
"radius" type=
"int" default=
""/>
9606 <method name=
"DrawCircle" type=
"" overloaded=
"no">
9607 <autodoc>DrawCircle(Point pt, int radius)
</autodoc>
9609 <param name=
"pt" type=
"Point" default=
""/>
9610 <param name=
"radius" type=
"int" default=
""/>
9613 <method name=
"DrawEllipseXY" type=
"" overloaded=
"no">
9614 <autodoc>DrawEllipseXY(int x, int y, int width, int height)
</autodoc>
9616 <param name=
"x" type=
"int" default=
""/>
9617 <param name=
"y" type=
"int" default=
""/>
9618 <param name=
"width" type=
"int" default=
""/>
9619 <param name=
"height" type=
"int" default=
""/>
9622 <method name=
"DrawEllipse" type=
"" overloaded=
"no">
9623 <autodoc>DrawEllipse(Point pt, Size sz)
</autodoc>
9625 <param name=
"pt" type=
"Point" default=
""/>
9626 <param name=
"sz" type=
"Size" default=
""/>
9629 <method name=
"DrawEllipseRect" type=
"" overloaded=
"no">
9630 <autodoc>DrawEllipseRect(Rect rect)
</autodoc>
9632 <param name=
"rect" type=
"Rect" default=
""/>
9635 <method name=
"DrawIconXY" type=
"" overloaded=
"no">
9636 <autodoc>DrawIconXY(Icon icon, int x, int y)
</autodoc>
9638 <param name=
"icon" type=
"Icon" default=
""/>
9639 <param name=
"x" type=
"int" default=
""/>
9640 <param name=
"y" type=
"int" default=
""/>
9643 <method name=
"DrawIcon" type=
"" overloaded=
"no">
9644 <autodoc>DrawIcon(Icon icon, Point pt)
</autodoc>
9646 <param name=
"icon" type=
"Icon" default=
""/>
9647 <param name=
"pt" type=
"Point" default=
""/>
9650 <method name=
"DrawBitmapXY" type=
"" overloaded=
"no">
9651 <autodoc>DrawBitmapXY(Bitmap bmp, int x, int y, bool useMask=False)
</autodoc>
9653 <param name=
"bmp" type=
"Bitmap" default=
""/>
9654 <param name=
"x" type=
"int" default=
""/>
9655 <param name=
"y" type=
"int" default=
""/>
9656 <param name=
"useMask" type=
"bool" default=
"False"/>
9659 <method name=
"DrawBitmap" type=
"" overloaded=
"no">
9660 <autodoc>DrawBitmap(Bitmap bmp, Point pt, bool useMask=False)
</autodoc>
9662 <param name=
"bmp" type=
"Bitmap" default=
""/>
9663 <param name=
"pt" type=
"Point" default=
""/>
9664 <param name=
"useMask" type=
"bool" default=
"False"/>
9667 <method name=
"DrawTextXY" type=
"" overloaded=
"no">
9668 <autodoc>DrawTextXY(String text, int x, int y)
</autodoc>
9670 <param name=
"text" type=
"String" default=
""/>
9671 <param name=
"x" type=
"int" default=
""/>
9672 <param name=
"y" type=
"int" default=
""/>
9675 <method name=
"DrawText" type=
"" overloaded=
"no">
9676 <autodoc>DrawText(String text, Point pt)
</autodoc>
9678 <param name=
"text" type=
"String" default=
""/>
9679 <param name=
"pt" type=
"Point" default=
""/>
9682 <method name=
"DrawRotatedTextXY" type=
"" overloaded=
"no">
9683 <autodoc>DrawRotatedTextXY(String text, int x, int y, double angle)
</autodoc>
9685 <param name=
"text" type=
"String" default=
""/>
9686 <param name=
"x" type=
"int" default=
""/>
9687 <param name=
"y" type=
"int" default=
""/>
9688 <param name=
"angle" type=
"double" default=
""/>
9691 <method name=
"DrawRotatedText" type=
"" overloaded=
"no">
9692 <autodoc>DrawRotatedText(String text, Point pt, double angle)
</autodoc>
9694 <param name=
"text" type=
"String" default=
""/>
9695 <param name=
"pt" type=
"Point" default=
""/>
9696 <param name=
"angle" type=
"double" default=
""/>
9699 <method name=
"BlitXY" type=
"bool" overloaded=
"no">
9700 <autodoc>BlitXY(int xdest, int ydest, int width, int height, DC source,
9701 int xsrc, int ysrc, int rop=COPY, bool useMask=False,
9702 int xsrcMask=-
1, int ysrcMask=-
1) -
> bool
</autodoc>
9704 <param name=
"xdest" type=
"int" default=
""/>
9705 <param name=
"ydest" type=
"int" default=
""/>
9706 <param name=
"width" type=
"int" default=
""/>
9707 <param name=
"height" type=
"int" default=
""/>
9708 <param name=
"source" type=
"DC" default=
""/>
9709 <param name=
"xsrc" type=
"int" default=
""/>
9710 <param name=
"ysrc" type=
"int" default=
""/>
9711 <param name=
"rop" type=
"int" default=
"wxCOPY"/>
9712 <param name=
"useMask" type=
"bool" default=
"False"/>
9713 <param name=
"xsrcMask" type=
"int" default=
"-1"/>
9714 <param name=
"ysrcMask" type=
"int" default=
"-1"/>
9717 <method name=
"Blit" type=
"bool" overloaded=
"no">
9718 <autodoc>Blit(Point destPt, Size sz, DC source, Point srcPt, int rop=COPY,
9719 bool useMask=False, Point srcPtMask=DefaultPosition) -
> bool
</autodoc>
9721 <param name=
"destPt" type=
"Point" default=
""/>
9722 <param name=
"sz" type=
"Size" default=
""/>
9723 <param name=
"source" type=
"DC" default=
""/>
9724 <param name=
"srcPt" type=
"Point" default=
""/>
9725 <param name=
"rop" type=
"int" default=
"wxCOPY"/>
9726 <param name=
"useMask" type=
"bool" default=
"False"/>
9727 <param name=
"srcPtMask" type=
"Point" default=
"wxDefaultPosition"/>
9730 <method name=
"DrawLines" type=
"" overloaded=
"no">
9731 <autodoc>DrawLines(int points, Point points_array, int xoffset=
0, int yoffset=
0)
</autodoc>
9733 <param name=
"points" type=
"int" default=
""/>
9734 <param name=
"points_array" type=
"Point" default=
""/>
9735 <param name=
"xoffset" type=
"int" default=
"0"/>
9736 <param name=
"yoffset" type=
"int" default=
"0"/>
9739 <method name=
"DrawPolygon" type=
"" overloaded=
"no">
9740 <autodoc>DrawPolygon(int points, Point points_array, int xoffset=
0, int yoffset=
0,
9741 int fillStyle=ODDEVEN_RULE)
</autodoc>
9743 <param name=
"points" type=
"int" default=
""/>
9744 <param name=
"points_array" type=
"Point" default=
""/>
9745 <param name=
"xoffset" type=
"int" default=
"0"/>
9746 <param name=
"yoffset" type=
"int" default=
"0"/>
9747 <param name=
"fillStyle" type=
"int" default=
"wxODDEVEN_RULE"/>
9750 <method name=
"DrawLabel" type=
"" overloaded=
"no">
9751 <autodoc>DrawLabel(String text, Rect rect, int alignment=wxALIGN_LEFT|wxALIGN_TOP,
9752 int indexAccel=-
1)
</autodoc>
9754 <param name=
"text" type=
"String" default=
""/>
9755 <param name=
"rect" type=
"Rect" default=
""/>
9756 <param name=
"alignment" type=
"int" default=
"wxALIGN_LEFT|wxALIGN_TOP"/>
9757 <param name=
"indexAccel" type=
"int" default=
"-1"/>
9760 <method name=
"DrawImageLabel" type=
"Rect" overloaded=
"no">
9761 <autodoc>DrawImageLabel(String text, Bitmap image, Rect rect, int alignment=wxALIGN_LEFT|wxALIGN_TOP,
9762 int indexAccel=-
1) -
> Rect
</autodoc>
9764 <param name=
"text" type=
"String" default=
""/>
9765 <param name=
"image" type=
"Bitmap" default=
""/>
9766 <param name=
"rect" type=
"Rect" default=
""/>
9767 <param name=
"alignment" type=
"int" default=
"wxALIGN_LEFT|wxALIGN_TOP"/>
9768 <param name=
"indexAccel" type=
"int" default=
"-1"/>
9771 <method name=
"DrawSpline" type=
"" overloaded=
"no">
9772 <autodoc>DrawSpline(int points, Point points_array)
</autodoc>
9774 <param name=
"points" type=
"int" default=
""/>
9775 <param name=
"points_array" type=
"Point" default=
""/>
9778 <method name=
"Clear" type=
"" overloaded=
"no">
9779 <autodoc>Clear()
</autodoc>
9781 <method name=
"StartDoc" type=
"bool" overloaded=
"no">
9782 <autodoc>StartDoc(String message) -
> bool
</autodoc>
9784 <param name=
"message" type=
"String" default=
""/>
9787 <method name=
"EndDoc" type=
"" overloaded=
"no">
9788 <autodoc>EndDoc()
</autodoc>
9790 <method name=
"StartPage" type=
"" overloaded=
"no">
9791 <autodoc>StartPage()
</autodoc>
9793 <method name=
"EndPage" type=
"" overloaded=
"no">
9794 <autodoc>EndPage()
</autodoc>
9796 <method name=
"SetFont" type=
"" overloaded=
"no">
9797 <autodoc>SetFont(Font font)
</autodoc>
9799 <param name=
"font" type=
"Font" default=
""/>
9802 <method name=
"SetPen" type=
"" overloaded=
"no">
9803 <autodoc>SetPen(Pen pen)
</autodoc>
9805 <param name=
"pen" type=
"Pen" default=
""/>
9808 <method name=
"SetBrush" type=
"" overloaded=
"no">
9809 <autodoc>SetBrush(Brush brush)
</autodoc>
9811 <param name=
"brush" type=
"Brush" default=
""/>
9814 <method name=
"SetBackground" type=
"" overloaded=
"no">
9815 <autodoc>SetBackground(Brush brush)
</autodoc>
9817 <param name=
"brush" type=
"Brush" default=
""/>
9820 <method name=
"SetBackgroundMode" type=
"" overloaded=
"no">
9821 <autodoc>SetBackgroundMode(int mode)
</autodoc>
9823 <param name=
"mode" type=
"int" default=
""/>
9826 <method name=
"SetPalette" type=
"" overloaded=
"no">
9827 <autodoc>SetPalette(Palette palette)
</autodoc>
9829 <param name=
"palette" type=
"Palette" default=
""/>
9832 <method name=
"SetClippingRegionXY" type=
"" overloaded=
"no">
9833 <autodoc>SetClippingRegionXY(int x, int y, int width, int height)
</autodoc>
9835 <param name=
"x" type=
"int" default=
""/>
9836 <param name=
"y" type=
"int" default=
""/>
9837 <param name=
"width" type=
"int" default=
""/>
9838 <param name=
"height" type=
"int" default=
""/>
9841 <method name=
"SetClippingRegion" type=
"" overloaded=
"no">
9842 <autodoc>SetClippingRegion(Point pt, Size sz)
</autodoc>
9844 <param name=
"pt" type=
"Point" default=
""/>
9845 <param name=
"sz" type=
"Size" default=
""/>
9848 <method name=
"SetClippingRect" type=
"" overloaded=
"no">
9849 <autodoc>SetClippingRect(Rect rect)
</autodoc>
9851 <param name=
"rect" type=
"Rect" default=
""/>
9854 <method name=
"SetClippingRegionAsRegion" type=
"" overloaded=
"no">
9855 <autodoc>SetClippingRegionAsRegion(Region region)
</autodoc>
9857 <param name=
"region" type=
"Region" default=
""/>
9860 <method name=
"DestroyClippingRegion" type=
"" overloaded=
"no">
9861 <autodoc>DestroyClippingRegion()
</autodoc>
9863 <method name=
"GetClippingBox" type=
"" overloaded=
"no">
9864 <autodoc>GetClippingBox() -
> (x, y, width, height)
</autodoc>
9866 <param name=
"OUTPUT" type=
"int" default=
""/>
9867 <param name=
"OUTPUT" type=
"int" default=
""/>
9868 <param name=
"OUTPUT" type=
"int" default=
""/>
9869 <param name=
"OUTPUT" type=
"int" default=
""/>
9872 <method name=
"GetClippingRect" type=
"Rect" overloaded=
"no">
9873 <autodoc>GetClippingRect() -
> Rect
</autodoc>
9875 <method name=
"GetCharHeight" type=
"int" overloaded=
"no">
9876 <autodoc>GetCharHeight() -
> int
</autodoc>
9878 <method name=
"GetCharWidth" type=
"int" overloaded=
"no">
9879 <autodoc>GetCharWidth() -
> int
</autodoc>
9881 <method name=
"GetTextExtent" type=
"" overloaded=
"no">
9882 <autodoc>GetTextExtent(wxString string) -
> (width, height)
</autodoc>
9883 <docstring>Get the width and height of the text using the current font.
9884 Only works for single line strings.
</docstring>
9886 <param name=
"string" type=
"String" default=
""/>
9887 <param name=
"OUTPUT" type=
"int" default=
""/>
9888 <param name=
"OUTPUT" type=
"int" default=
""/>
9891 <method name=
"GetFullTextExtent" type=
"" overloaded=
"no">
9892 <autodoc>GetFullTextExtent(wxString string, Font font=None) -
>
9893 (width, height, descent, externalLeading)
</autodoc>
9894 <docstring>Get the width, height, decent and leading of the text using the current or specified font.
9895 Only works for single line strings.
</docstring>
9897 <param name=
"string" type=
"String" default=
""/>
9898 <param name=
"OUTPUT" type=
"int" default=
""/>
9899 <param name=
"OUTPUT" type=
"int" default=
""/>
9900 <param name=
"OUTPUT" type=
"int" default=
""/>
9901 <param name=
"OUTPUT" type=
"int" default=
""/>
9902 <param name=
"font" type=
"Font" default=
"NULL"/>
9905 <method name=
"GetMultiLineTextExtent" type=
"" overloaded=
"no">
9906 <autodoc>GetMultiLineTextExtent(wxString string, Font font=None) -
>
9907 (width, height, descent, externalLeading)
</autodoc>
9908 <docstring>Get the width, height, decent and leading of the text using the current or specified font.
9909 Works for single as well as multi-line strings.
</docstring>
9911 <param name=
"text" type=
"String" default=
""/>
9912 <param name=
"OUTPUT" type=
"int" default=
""/>
9913 <param name=
"OUTPUT" type=
"int" default=
""/>
9914 <param name=
"OUTPUT" type=
"int" default=
""/>
9915 <param name=
"font" type=
"Font" default=
"NULL"/>
9918 <method name=
"GetPartialTextExtents" type=
"wxArrayInt" overloaded=
"no">
9919 <autodoc>GetPartialTextExtents(String text) -
> wxArrayInt
</autodoc>
9921 <param name=
"text" type=
"String" default=
""/>
9924 <method name=
"GetSize" type=
"Size" overloaded=
"no">
9925 <autodoc>GetSize() -
> Size
</autodoc>
9926 <docstring>Get the DC size in device units.
</docstring>
9928 <method name=
"GetSizeTuple" type=
"" overloaded=
"no">
9929 <autodoc>GetSizeTuple() -
> (width, height)
</autodoc>
9930 <docstring>Get the DC size in device units.
</docstring>
9932 <param name=
"OUTPUT" type=
"int" default=
""/>
9933 <param name=
"OUTPUT" type=
"int" default=
""/>
9936 <method name=
"GetSizeMM" type=
"Size" overloaded=
"no">
9937 <autodoc>GetSizeMM() -
> Size
</autodoc>
9938 <docstring>Get the DC size in milimeters.
</docstring>
9940 <method name=
"GetSizeMMTuple" type=
"" overloaded=
"no">
9941 <autodoc>GetSizeMMTuple() -
> (width, height)
</autodoc>
9942 <docstring>Get the DC size in milimeters.
</docstring>
9944 <param name=
"OUTPUT" type=
"int" default=
""/>
9945 <param name=
"OUTPUT" type=
"int" default=
""/>
9948 <method name=
"DeviceToLogicalX" type=
"int" overloaded=
"no">
9949 <autodoc>DeviceToLogicalX(int x) -
> int
</autodoc>
9951 <param name=
"x" type=
"int" default=
""/>
9954 <method name=
"DeviceToLogicalY" type=
"int" overloaded=
"no">
9955 <autodoc>DeviceToLogicalY(int y) -
> int
</autodoc>
9957 <param name=
"y" type=
"int" default=
""/>
9960 <method name=
"DeviceToLogicalXRel" type=
"int" overloaded=
"no">
9961 <autodoc>DeviceToLogicalXRel(int x) -
> int
</autodoc>
9963 <param name=
"x" type=
"int" default=
""/>
9966 <method name=
"DeviceToLogicalYRel" type=
"int" overloaded=
"no">
9967 <autodoc>DeviceToLogicalYRel(int y) -
> int
</autodoc>
9969 <param name=
"y" type=
"int" default=
""/>
9972 <method name=
"LogicalToDeviceX" type=
"int" overloaded=
"no">
9973 <autodoc>LogicalToDeviceX(int x) -
> int
</autodoc>
9975 <param name=
"x" type=
"int" default=
""/>
9978 <method name=
"LogicalToDeviceY" type=
"int" overloaded=
"no">
9979 <autodoc>LogicalToDeviceY(int y) -
> int
</autodoc>
9981 <param name=
"y" type=
"int" default=
""/>
9984 <method name=
"LogicalToDeviceXRel" type=
"int" overloaded=
"no">
9985 <autodoc>LogicalToDeviceXRel(int x) -
> int
</autodoc>
9987 <param name=
"x" type=
"int" default=
""/>
9990 <method name=
"LogicalToDeviceYRel" type=
"int" overloaded=
"no">
9991 <autodoc>LogicalToDeviceYRel(int y) -
> int
</autodoc>
9993 <param name=
"y" type=
"int" default=
""/>
9996 <method name=
"CanDrawBitmap" type=
"bool" overloaded=
"no">
9997 <autodoc>CanDrawBitmap() -
> bool
</autodoc>
9999 <method name=
"CanGetTextExtent" type=
"bool" overloaded=
"no">
10000 <autodoc>CanGetTextExtent() -
> bool
</autodoc>
10002 <method name=
"GetDepth" type=
"int" overloaded=
"no">
10003 <autodoc>GetDepth() -
> int
</autodoc>
10005 <method name=
"GetPPI" type=
"Size" overloaded=
"no">
10006 <autodoc>GetPPI() -
> Size
</autodoc>
10008 <method name=
"Ok" type=
"bool" overloaded=
"no">
10009 <autodoc>Ok() -
> bool
</autodoc>
10011 <method name=
"GetBackgroundMode" type=
"int" overloaded=
"no">
10012 <autodoc>GetBackgroundMode() -
> int
</autodoc>
10014 <method name=
"GetBackground" type=
"Brush" overloaded=
"no">
10015 <autodoc>GetBackground() -
> Brush
</autodoc>
10017 <method name=
"GetBrush" type=
"Brush" overloaded=
"no">
10018 <autodoc>GetBrush() -
> Brush
</autodoc>
10020 <method name=
"GetFont" type=
"Font" overloaded=
"no">
10021 <autodoc>GetFont() -
> Font
</autodoc>
10023 <method name=
"GetPen" type=
"Pen" overloaded=
"no">
10024 <autodoc>GetPen() -
> Pen
</autodoc>
10026 <method name=
"GetTextBackground" type=
"Colour" overloaded=
"no">
10027 <autodoc>GetTextBackground() -
> Colour
</autodoc>
10029 <method name=
"GetTextForeground" type=
"Colour" overloaded=
"no">
10030 <autodoc>GetTextForeground() -
> Colour
</autodoc>
10032 <method name=
"SetTextForeground" type=
"" overloaded=
"no">
10033 <autodoc>SetTextForeground(Colour colour)
</autodoc>
10035 <param name=
"colour" type=
"Colour" default=
""/>
10038 <method name=
"SetTextBackground" type=
"" overloaded=
"no">
10039 <autodoc>SetTextBackground(Colour colour)
</autodoc>
10041 <param name=
"colour" type=
"Colour" default=
""/>
10044 <method name=
"GetMapMode" type=
"int" overloaded=
"no">
10045 <autodoc>GetMapMode() -
> int
</autodoc>
10047 <method name=
"SetMapMode" type=
"" overloaded=
"no">
10048 <autodoc>SetMapMode(int mode)
</autodoc>
10050 <param name=
"mode" type=
"int" default=
""/>
10053 <method name=
"GetUserScale" type=
"" overloaded=
"no">
10054 <autodoc>GetUserScale() -
> (xScale, yScale)
</autodoc>
10056 <param name=
"OUTPUT" type=
"double" default=
""/>
10057 <param name=
"OUTPUT" type=
"double" default=
""/>
10060 <method name=
"SetUserScale" type=
"" overloaded=
"no">
10061 <autodoc>SetUserScale(double x, double y)
</autodoc>
10063 <param name=
"x" type=
"double" default=
""/>
10064 <param name=
"y" type=
"double" default=
""/>
10067 <method name=
"GetLogicalScale" type=
"" overloaded=
"no">
10068 <autodoc>GetLogicalScale() -
> (xScale, yScale)
</autodoc>
10070 <param name=
"OUTPUT" type=
"double" default=
""/>
10071 <param name=
"OUTPUT" type=
"double" default=
""/>
10074 <method name=
"SetLogicalScale" type=
"" overloaded=
"no">
10075 <autodoc>SetLogicalScale(double x, double y)
</autodoc>
10077 <param name=
"x" type=
"double" default=
""/>
10078 <param name=
"y" type=
"double" default=
""/>
10081 <method name=
"GetLogicalOrigin" type=
"Point" overloaded=
"no">
10082 <autodoc>GetLogicalOrigin() -
> Point
</autodoc>
10084 <method name=
"GetLogicalOriginTuple" type=
"" overloaded=
"no">
10085 <autodoc>GetLogicalOriginTuple() -
> (x,y)
</autodoc>
10087 <param name=
"OUTPUT" type=
"int" default=
""/>
10088 <param name=
"OUTPUT" type=
"int" default=
""/>
10091 <method name=
"SetLogicalOrigin" type=
"" overloaded=
"no">
10092 <autodoc>SetLogicalOrigin(int x, int y)
</autodoc>
10094 <param name=
"x" type=
"int" default=
""/>
10095 <param name=
"y" type=
"int" default=
""/>
10098 <method name=
"GetDeviceOrigin" type=
"Point" overloaded=
"no">
10099 <autodoc>GetDeviceOrigin() -
> Point
</autodoc>
10101 <method name=
"GetDeviceOriginTuple" type=
"" overloaded=
"no">
10102 <autodoc>GetDeviceOriginTuple() -
> (x,y)
</autodoc>
10104 <param name=
"OUTPUT" type=
"int" default=
""/>
10105 <param name=
"OUTPUT" type=
"int" default=
""/>
10108 <method name=
"SetDeviceOrigin" type=
"" overloaded=
"no">
10109 <autodoc>SetDeviceOrigin(int x, int y)
</autodoc>
10111 <param name=
"x" type=
"int" default=
""/>
10112 <param name=
"y" type=
"int" default=
""/>
10115 <method name=
"SetAxisOrientation" type=
"" overloaded=
"no">
10116 <autodoc>SetAxisOrientation(bool xLeftRight, bool yBottomUp)
</autodoc>
10118 <param name=
"xLeftRight" type=
"bool" default=
""/>
10119 <param name=
"yBottomUp" type=
"bool" default=
""/>
10122 <method name=
"GetLogicalFunction" type=
"int" overloaded=
"no">
10123 <autodoc>GetLogicalFunction() -
> int
</autodoc>
10125 <method name=
"SetLogicalFunction" type=
"" overloaded=
"no">
10126 <autodoc>SetLogicalFunction(int function)
</autodoc>
10128 <param name=
"function" type=
"int" default=
""/>
10131 <method name=
"SetOptimization" type=
"" overloaded=
"no">
10132 <autodoc>SetOptimization(bool opt)
</autodoc>
10134 <param name=
"opt" type=
"bool" default=
""/>
10137 <method name=
"GetOptimization" type=
"bool" overloaded=
"no">
10138 <autodoc>GetOptimization() -
> bool
</autodoc>
10140 <method name=
"CalcBoundingBox" type=
"" overloaded=
"no">
10141 <autodoc>CalcBoundingBox(int x, int y)
</autodoc>
10143 <param name=
"x" type=
"int" default=
""/>
10144 <param name=
"y" type=
"int" default=
""/>
10147 <method name=
"ResetBoundingBox" type=
"" overloaded=
"no">
10148 <autodoc>ResetBoundingBox()
</autodoc>
10150 <method name=
"MinX" type=
"int" overloaded=
"no">
10151 <autodoc>MinX() -
> int
</autodoc>
10153 <method name=
"MaxX" type=
"int" overloaded=
"no">
10154 <autodoc>MaxX() -
> int
</autodoc>
10156 <method name=
"MinY" type=
"int" overloaded=
"no">
10157 <autodoc>MinY() -
> int
</autodoc>
10159 <method name=
"MaxY" type=
"int" overloaded=
"no">
10160 <autodoc>MaxY() -
> int
</autodoc>
10162 <method name=
"GetBoundingBox" type=
"" overloaded=
"no">
10163 <autodoc>GetBoundingBox() -
> (x1,y1, x2,y2)
</autodoc>
10165 <param name=
"OUTPUT" type=
"int" default=
""/>
10166 <param name=
"OUTPUT" type=
"int" default=
""/>
10167 <param name=
"OUTPUT" type=
"int" default=
""/>
10168 <param name=
"OUTPUT" type=
"int" default=
""/>
10171 <method name=
"_DrawPointList" type=
"PyObject" overloaded=
"no">
10172 <autodoc>_DrawPointList(PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -
> PyObject
</autodoc>
10174 <param name=
"pyCoords" type=
"PyObject" default=
""/>
10175 <param name=
"pyPens" type=
"PyObject" default=
""/>
10176 <param name=
"pyBrushes" type=
"PyObject" default=
""/>
10179 <method name=
"_DrawLineList" type=
"PyObject" overloaded=
"no">
10180 <autodoc>_DrawLineList(PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -
> PyObject
</autodoc>
10182 <param name=
"pyCoords" type=
"PyObject" default=
""/>
10183 <param name=
"pyPens" type=
"PyObject" default=
""/>
10184 <param name=
"pyBrushes" type=
"PyObject" default=
""/>
10187 <method name=
"_DrawRectangleList" type=
"PyObject" overloaded=
"no">
10188 <autodoc>_DrawRectangleList(PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -
> PyObject
</autodoc>
10190 <param name=
"pyCoords" type=
"PyObject" default=
""/>
10191 <param name=
"pyPens" type=
"PyObject" default=
""/>
10192 <param name=
"pyBrushes" type=
"PyObject" default=
""/>
10195 <method name=
"_DrawEllipseList" type=
"PyObject" overloaded=
"no">
10196 <autodoc>_DrawEllipseList(PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -
> PyObject
</autodoc>
10198 <param name=
"pyCoords" type=
"PyObject" default=
""/>
10199 <param name=
"pyPens" type=
"PyObject" default=
""/>
10200 <param name=
"pyBrushes" type=
"PyObject" default=
""/>
10203 <method name=
"_DrawPolygonList" type=
"PyObject" overloaded=
"no">
10204 <autodoc>_DrawPolygonList(PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -
> PyObject
</autodoc>
10206 <param name=
"pyCoords" type=
"PyObject" default=
""/>
10207 <param name=
"pyPens" type=
"PyObject" default=
""/>
10208 <param name=
"pyBrushes" type=
"PyObject" default=
""/>
10211 <method name=
"_DrawTextList" type=
"PyObject" overloaded=
"no">
10212 <autodoc>_DrawTextList(PyObject textList, PyObject pyPoints, PyObject foregroundList,
10213 PyObject backgroundList) -
> PyObject
</autodoc>
10215 <param name=
"textList" type=
"PyObject" default=
""/>
10216 <param name=
"pyPoints" type=
"PyObject" default=
""/>
10217 <param name=
"foregroundList" type=
"PyObject" default=
""/>
10218 <param name=
"backgroundList" type=
"PyObject" default=
""/>
10223 #---------------------------------------------------------------------------
10225 <class name=
"MemoryDC" oldname=
"wxMemoryDC" module=
"gdi">
10226 <baseclass name=
"DC"/>
10227 <constructor name=
"MemoryDC" overloaded=
"no">
10228 <autodoc>__init__() -
> MemoryDC
</autodoc>
10230 <constructor name=
"MemoryDCFromDC" overloaded=
"no">
10231 <autodoc>MemoryDCFromDC(DC oldDC) -
> MemoryDC
</autodoc>
10233 <param name=
"oldDC" type=
"DC" default=
""/>
10236 <method name=
"SelectObject" type=
"" overloaded=
"no">
10237 <autodoc>SelectObject(Bitmap bitmap)
</autodoc>
10239 <param name=
"bitmap" type=
"Bitmap" default=
""/>
10244 #---------------------------------------------------------------------------
10246 <class name=
"BufferedDC" oldname=
"wxBufferedDC" module=
"gdi">
10247 <baseclass name=
"MemoryDC"/>
10248 <constructor name=
"BufferedDC" overloaded=
"yes">
10250 <param name=
"dc" type=
"DC" default=
""/>
10251 <param name=
"buffer" type=
"Bitmap" default=
""/>
10254 <constructor name=
"BufferedDC" overloaded=
"yes">
10255 <autodoc>__init__(DC dc, Bitmap buffer) -
> BufferedDC
10256 __init__(DC dc, Size area) -
> BufferedDC
</autodoc>
10258 <param name=
"dc" type=
"DC" default=
""/>
10259 <param name=
"area" type=
"Size" default=
""/>
10262 <constructor name=
"BufferedDCInternalBuffer" overloaded=
"no">
10263 <autodoc>BufferedDCInternalBuffer(DC dc, Size area) -
> BufferedDC
</autodoc>
10265 <param name=
"dc" type=
"DC" default=
""/>
10266 <param name=
"area" type=
"Size" default=
""/>
10269 <destructor name=
"~wxBufferedDC" overloaded=
"no">
10270 <autodoc>__del__()
</autodoc>
10272 <method name=
"UnMask" type=
"" overloaded=
"no">
10273 <autodoc>UnMask()
</autodoc>
10276 <class name=
"BufferedPaintDC" oldname=
"wxBufferedPaintDC" module=
"gdi">
10277 <baseclass name=
"BufferedDC"/>
10278 <constructor name=
"BufferedPaintDC" overloaded=
"no">
10279 <autodoc>__init__(Window window, Bitmap buffer=NullBitmap) -
> BufferedPaintDC
</autodoc>
10281 <param name=
"window" type=
"Window" default=
""/>
10282 <param name=
"buffer" type=
"Bitmap" default=
"wxNullBitmap"/>
10287 #---------------------------------------------------------------------------
10289 <class name=
"ScreenDC" oldname=
"wxScreenDC" module=
"gdi">
10290 <baseclass name=
"DC"/>
10291 <constructor name=
"ScreenDC" overloaded=
"no">
10292 <autodoc>__init__() -
> ScreenDC
</autodoc>
10294 <method name=
"StartDrawingOnTopWin" type=
"bool" overloaded=
"no">
10295 <autodoc>StartDrawingOnTopWin(Window window) -
> bool
</autodoc>
10297 <param name=
"window" type=
"Window" default=
""/>
10300 <method name=
"StartDrawingOnTop" type=
"bool" overloaded=
"no">
10301 <autodoc>StartDrawingOnTop(Rect rect=None) -
> bool
</autodoc>
10303 <param name=
"rect" type=
"Rect" default=
"NULL"/>
10306 <method name=
"EndDrawingOnTop" type=
"bool" overloaded=
"no">
10307 <autodoc>EndDrawingOnTop() -
> bool
</autodoc>
10311 #---------------------------------------------------------------------------
10313 <class name=
"ClientDC" oldname=
"wxClientDC" module=
"gdi">
10314 <baseclass name=
"DC"/>
10315 <constructor name=
"ClientDC" overloaded=
"no">
10316 <autodoc>__init__(Window win) -
> ClientDC
</autodoc>
10318 <param name=
"win" type=
"Window" default=
""/>
10323 #---------------------------------------------------------------------------
10325 <class name=
"PaintDC" oldname=
"wxPaintDC" module=
"gdi">
10326 <baseclass name=
"DC"/>
10327 <constructor name=
"PaintDC" overloaded=
"no">
10328 <autodoc>__init__(Window win) -
> PaintDC
</autodoc>
10330 <param name=
"win" type=
"Window" default=
""/>
10335 #---------------------------------------------------------------------------
10337 <class name=
"WindowDC" oldname=
"wxWindowDC" module=
"gdi">
10338 <baseclass name=
"DC"/>
10339 <constructor name=
"WindowDC" overloaded=
"no">
10340 <autodoc>__init__(Window win) -
> WindowDC
</autodoc>
10342 <param name=
"win" type=
"Window" default=
""/>
10347 #---------------------------------------------------------------------------
10349 <class name=
"MirrorDC" oldname=
"wxMirrorDC" module=
"gdi">
10350 <baseclass name=
"DC"/>
10351 <constructor name=
"MirrorDC" overloaded=
"no">
10352 <autodoc>__init__(DC dc, bool mirror) -
> MirrorDC
</autodoc>
10354 <param name=
"dc" type=
"DC" default=
""/>
10355 <param name=
"mirror" type=
"bool" default=
""/>
10360 #---------------------------------------------------------------------------
10362 <class name=
"PostScriptDC" oldname=
"wxPostScriptDC" module=
"gdi">
10363 <baseclass name=
"DC"/>
10364 <constructor name=
"PostScriptDC" overloaded=
"no">
10365 <autodoc>__init__(wxPrintData printData) -
> PostScriptDC
</autodoc>
10367 <param name=
"printData" type=
"wxPrintData" default=
""/>
10370 <method name=
"GetPrintData" type=
"wxPrintData" overloaded=
"no">
10371 <autodoc>GetPrintData() -
> wxPrintData
</autodoc>
10373 <method name=
"SetPrintData" type=
"" overloaded=
"no">
10374 <autodoc>SetPrintData(wxPrintData data)
</autodoc>
10376 <param name=
"data" type=
"wxPrintData" default=
""/>
10379 <staticmethod name=
"SetResolution" type=
"" overloaded=
"no">
10380 <autodoc>SetResolution(int ppi)
</autodoc>
10382 <param name=
"ppi" type=
"int" default=
""/>
10385 <staticmethod name=
"GetResolution" type=
"int" overloaded=
"no">
10386 <autodoc>GetResolution() -
> int
</autodoc>
10390 #---------------------------------------------------------------------------
10392 <class name=
"MetaFile" oldname=
"wxMetaFile" module=
"gdi">
10393 <baseclass name=
"Object"/>
10394 <constructor name=
"MetaFile" overloaded=
"no">
10395 <autodoc>__init__(String filename=EmptyString) -
> MetaFile
</autodoc>
10397 <param name=
"filename" type=
"String" default=
"wxPyEmptyString"/>
10401 <class name=
"MetaFileDC" oldname=
"wxMetaFileDC" module=
"gdi">
10402 <baseclass name=
"DC"/>
10403 <constructor name=
"MetaFileDC" overloaded=
"no">
10404 <autodoc>__init__(String filename=EmptyString, int width=
0, int height=
0,
10405 String description=EmptyString) -
> MetaFileDC
</autodoc>
10407 <param name=
"filename" type=
"String" default=
"wxPyEmptyString"/>
10408 <param name=
"width" type=
"int" default=
"0"/>
10409 <param name=
"height" type=
"int" default=
"0"/>
10410 <param name=
"description" type=
"String" default=
"wxPyEmptyString"/>
10414 <class name=
"PrinterDC" oldname=
"wxPrinterDC" module=
"gdi">
10415 <baseclass name=
"DC"/>
10416 <constructor name=
"PrinterDC" overloaded=
"no">
10417 <autodoc>__init__(wxPrintData printData) -
> PrinterDC
</autodoc>
10419 <param name=
"printData" type=
"wxPrintData" default=
""/>
10425 """DC class that has methods with
2.4 compatible parameters."""
10426 FloodFill = DC.FloodFillXY
10427 GetPixel = DC.GetPixelXY
10428 DrawLine = DC.DrawLineXY
10429 CrossHair = DC.CrossHairXY
10430 DrawArc = DC.DrawArcXY
10431 DrawCheckMark = DC.DrawCheckMarkXY
10432 DrawEllipticArc = DC.DrawEllipticArcXY
10433 DrawPoint = DC.DrawPointXY
10434 DrawRectangle = DC.DrawRectangleXY
10435 DrawRoundedRectangle = DC.DrawRoundedRectangleXY
10436 DrawCircle = DC.DrawCircleXY
10437 DrawEllipse = DC.DrawEllipseXY
10438 DrawIcon = DC.DrawIconXY
10439 DrawBitmap = DC.DrawBitmapXY
10440 DrawText = DC.DrawTextXY
10441 DrawRotatedText = DC.DrawRotatedTextXY
10445 class MemoryDC_old(MemoryDC):
10446 """DC class that has methods with
2.4 compatible parameters."""
10447 FloodFill = MemoryDC.FloodFillXY
10448 GetPixel = MemoryDC.GetPixelXY
10449 DrawLine = MemoryDC.DrawLineXY
10450 CrossHair = MemoryDC.CrossHairXY
10451 DrawArc = MemoryDC.DrawArcXY
10452 DrawCheckMark = MemoryDC.DrawCheckMarkXY
10453 DrawEllipticArc = MemoryDC.DrawEllipticArcXY
10454 DrawPoint = MemoryDC.DrawPointXY
10455 DrawRectangle = MemoryDC.DrawRectangleXY
10456 DrawRoundedRectangle = MemoryDC.DrawRoundedRectangleXY
10457 DrawCircle = MemoryDC.DrawCircleXY
10458 DrawEllipse = MemoryDC.DrawEllipseXY
10459 DrawIcon = MemoryDC.DrawIconXY
10460 DrawBitmap = MemoryDC.DrawBitmapXY
10461 DrawText = MemoryDC.DrawTextXY
10462 DrawRotatedText = MemoryDC.DrawRotatedTextXY
10463 Blit = MemoryDC.BlitXY
10466 class BufferedDC_old(BufferedDC):
10467 """DC class that has methods with
2.4 compatible parameters."""
10468 FloodFill = BufferedDC.FloodFillXY
10469 GetPixel = BufferedDC.GetPixelXY
10470 DrawLine = BufferedDC.DrawLineXY
10471 CrossHair = BufferedDC.CrossHairXY
10472 DrawArc = BufferedDC.DrawArcXY
10473 DrawCheckMark = BufferedDC.DrawCheckMarkXY
10474 DrawEllipticArc = BufferedDC.DrawEllipticArcXY
10475 DrawPoint = BufferedDC.DrawPointXY
10476 DrawRectangle = BufferedDC.DrawRectangleXY
10477 DrawRoundedRectangle = BufferedDC.DrawRoundedRectangleXY
10478 DrawCircle = BufferedDC.DrawCircleXY
10479 DrawEllipse = BufferedDC.DrawEllipseXY
10480 DrawIcon = BufferedDC.DrawIconXY
10481 DrawBitmap = BufferedDC.DrawBitmapXY
10482 DrawText = BufferedDC.DrawTextXY
10483 DrawRotatedText = BufferedDC.DrawRotatedTextXY
10484 Blit = BufferedDC.BlitXY
10487 class BufferedPaintDC_old(BufferedPaintDC):
10488 """DC class that has methods with
2.4 compatible parameters."""
10489 FloodFill = BufferedPaintDC.FloodFillXY
10490 GetPixel = BufferedPaintDC.GetPixelXY
10491 DrawLine = BufferedPaintDC.DrawLineXY
10492 CrossHair = BufferedPaintDC.CrossHairXY
10493 DrawArc = BufferedPaintDC.DrawArcXY
10494 DrawCheckMark = BufferedPaintDC.DrawCheckMarkXY
10495 DrawEllipticArc = BufferedPaintDC.DrawEllipticArcXY
10496 DrawPoint = BufferedPaintDC.DrawPointXY
10497 DrawRectangle = BufferedPaintDC.DrawRectangleXY
10498 DrawRoundedRectangle = BufferedPaintDC.DrawRoundedRectangleXY
10499 DrawCircle = BufferedPaintDC.DrawCircleXY
10500 DrawEllipse = BufferedPaintDC.DrawEllipseXY
10501 DrawIcon = BufferedPaintDC.DrawIconXY
10502 DrawBitmap = BufferedPaintDC.DrawBitmapXY
10503 DrawText = BufferedPaintDC.DrawTextXY
10504 DrawRotatedText = BufferedPaintDC.DrawRotatedTextXY
10505 Blit = BufferedPaintDC.BlitXY
10508 class ScreenDC_old(ScreenDC):
10509 """DC class that has methods with
2.4 compatible parameters."""
10510 FloodFill = ScreenDC.FloodFillXY
10511 GetPixel = ScreenDC.GetPixelXY
10512 DrawLine = ScreenDC.DrawLineXY
10513 CrossHair = ScreenDC.CrossHairXY
10514 DrawArc = ScreenDC.DrawArcXY
10515 DrawCheckMark = ScreenDC.DrawCheckMarkXY
10516 DrawEllipticArc = ScreenDC.DrawEllipticArcXY
10517 DrawPoint = ScreenDC.DrawPointXY
10518 DrawRectangle = ScreenDC.DrawRectangleXY
10519 DrawRoundedRectangle = ScreenDC.DrawRoundedRectangleXY
10520 DrawCircle = ScreenDC.DrawCircleXY
10521 DrawEllipse = ScreenDC.DrawEllipseXY
10522 DrawIcon = ScreenDC.DrawIconXY
10523 DrawBitmap = ScreenDC.DrawBitmapXY
10524 DrawText = ScreenDC.DrawTextXY
10525 DrawRotatedText = ScreenDC.DrawRotatedTextXY
10526 Blit = ScreenDC.BlitXY
10529 class ClientDC_old(ClientDC):
10530 """DC class that has methods with
2.4 compatible parameters."""
10531 FloodFill = ClientDC.FloodFillXY
10532 GetPixel = ClientDC.GetPixelXY
10533 DrawLine = ClientDC.DrawLineXY
10534 CrossHair = ClientDC.CrossHairXY
10535 DrawArc = ClientDC.DrawArcXY
10536 DrawCheckMark = ClientDC.DrawCheckMarkXY
10537 DrawEllipticArc = ClientDC.DrawEllipticArcXY
10538 DrawPoint = ClientDC.DrawPointXY
10539 DrawRectangle = ClientDC.DrawRectangleXY
10540 DrawRoundedRectangle = ClientDC.DrawRoundedRectangleXY
10541 DrawCircle = ClientDC.DrawCircleXY
10542 DrawEllipse = ClientDC.DrawEllipseXY
10543 DrawIcon = ClientDC.DrawIconXY
10544 DrawBitmap = ClientDC.DrawBitmapXY
10545 DrawText = ClientDC.DrawTextXY
10546 DrawRotatedText = ClientDC.DrawRotatedTextXY
10547 Blit = ClientDC.BlitXY
10550 class PaintDC_old(PaintDC):
10551 """DC class that has methods with
2.4 compatible parameters."""
10552 FloodFill = PaintDC.FloodFillXY
10553 GetPixel = PaintDC.GetPixelXY
10554 DrawLine = PaintDC.DrawLineXY
10555 CrossHair = PaintDC.CrossHairXY
10556 DrawArc = PaintDC.DrawArcXY
10557 DrawCheckMark = PaintDC.DrawCheckMarkXY
10558 DrawEllipticArc = PaintDC.DrawEllipticArcXY
10559 DrawPoint = PaintDC.DrawPointXY
10560 DrawRectangle = PaintDC.DrawRectangleXY
10561 DrawRoundedRectangle = PaintDC.DrawRoundedRectangleXY
10562 DrawCircle = PaintDC.DrawCircleXY
10563 DrawEllipse = PaintDC.DrawEllipseXY
10564 DrawIcon = PaintDC.DrawIconXY
10565 DrawBitmap = PaintDC.DrawBitmapXY
10566 DrawText = PaintDC.DrawTextXY
10567 DrawRotatedText = PaintDC.DrawRotatedTextXY
10568 Blit = PaintDC.BlitXY
10571 class WindowDC_old(WindowDC):
10572 """DC class that has methods with
2.4 compatible parameters."""
10573 FloodFill = WindowDC.FloodFillXY
10574 GetPixel = WindowDC.GetPixelXY
10575 DrawLine = WindowDC.DrawLineXY
10576 CrossHair = WindowDC.CrossHairXY
10577 DrawArc = WindowDC.DrawArcXY
10578 DrawCheckMark = WindowDC.DrawCheckMarkXY
10579 DrawEllipticArc = WindowDC.DrawEllipticArcXY
10580 DrawPoint = WindowDC.DrawPointXY
10581 DrawRectangle = WindowDC.DrawRectangleXY
10582 DrawRoundedRectangle = WindowDC.DrawRoundedRectangleXY
10583 DrawCircle = WindowDC.DrawCircleXY
10584 DrawEllipse = WindowDC.DrawEllipseXY
10585 DrawIcon = WindowDC.DrawIconXY
10586 DrawBitmap = WindowDC.DrawBitmapXY
10587 DrawText = WindowDC.DrawTextXY
10588 DrawRotatedText = WindowDC.DrawRotatedTextXY
10589 Blit = WindowDC.BlitXY
10592 class MirrorDC_old(MirrorDC):
10593 """DC class that has methods with
2.4 compatible parameters."""
10594 FloodFill = MirrorDC.FloodFillXY
10595 GetPixel = MirrorDC.GetPixelXY
10596 DrawLine = MirrorDC.DrawLineXY
10597 CrossHair = MirrorDC.CrossHairXY
10598 DrawArc = MirrorDC.DrawArcXY
10599 DrawCheckMark = MirrorDC.DrawCheckMarkXY
10600 DrawEllipticArc = MirrorDC.DrawEllipticArcXY
10601 DrawPoint = MirrorDC.DrawPointXY
10602 DrawRectangle = MirrorDC.DrawRectangleXY
10603 DrawRoundedRectangle = MirrorDC.DrawRoundedRectangleXY
10604 DrawCircle = MirrorDC.DrawCircleXY
10605 DrawEllipse = MirrorDC.DrawEllipseXY
10606 DrawIcon = MirrorDC.DrawIconXY
10607 DrawBitmap = MirrorDC.DrawBitmapXY
10608 DrawText = MirrorDC.DrawTextXY
10609 DrawRotatedText = MirrorDC.DrawRotatedTextXY
10610 Blit = MirrorDC.BlitXY
10613 class PostScriptDC_old(PostScriptDC):
10614 """DC class that has methods with
2.4 compatible parameters."""
10615 FloodFill = PostScriptDC.FloodFillXY
10616 GetPixel = PostScriptDC.GetPixelXY
10617 DrawLine = PostScriptDC.DrawLineXY
10618 CrossHair = PostScriptDC.CrossHairXY
10619 DrawArc = PostScriptDC.DrawArcXY
10620 DrawCheckMark = PostScriptDC.DrawCheckMarkXY
10621 DrawEllipticArc = PostScriptDC.DrawEllipticArcXY
10622 DrawPoint = PostScriptDC.DrawPointXY
10623 DrawRectangle = PostScriptDC.DrawRectangleXY
10624 DrawRoundedRectangle = PostScriptDC.DrawRoundedRectangleXY
10625 DrawCircle = PostScriptDC.DrawCircleXY
10626 DrawEllipse = PostScriptDC.DrawEllipseXY
10627 DrawIcon = PostScriptDC.DrawIconXY
10628 DrawBitmap = PostScriptDC.DrawBitmapXY
10629 DrawText = PostScriptDC.DrawTextXY
10630 DrawRotatedText = PostScriptDC.DrawRotatedTextXY
10631 Blit = PostScriptDC.BlitXY
10634 class MetaFileDC_old(MetaFileDC):
10635 """DC class that has methods with
2.4 compatible parameters."""
10636 FloodFill = MetaFileDC.FloodFillXY
10637 GetPixel = MetaFileDC.GetPixelXY
10638 DrawLine = MetaFileDC.DrawLineXY
10639 CrossHair = MetaFileDC.CrossHairXY
10640 DrawArc = MetaFileDC.DrawArcXY
10641 DrawCheckMark = MetaFileDC.DrawCheckMarkXY
10642 DrawEllipticArc = MetaFileDC.DrawEllipticArcXY
10643 DrawPoint = MetaFileDC.DrawPointXY
10644 DrawRectangle = MetaFileDC.DrawRectangleXY
10645 DrawRoundedRectangle = MetaFileDC.DrawRoundedRectangleXY
10646 DrawCircle = MetaFileDC.DrawCircleXY
10647 DrawEllipse = MetaFileDC.DrawEllipseXY
10648 DrawIcon = MetaFileDC.DrawIconXY
10649 DrawBitmap = MetaFileDC.DrawBitmapXY
10650 DrawText = MetaFileDC.DrawTextXY
10651 DrawRotatedText = MetaFileDC.DrawRotatedTextXY
10652 Blit = MetaFileDC.BlitXY
10655 class PrinterDC_old(PrinterDC):
10656 """DC class that has methods with
2.4 compatible parameters."""
10657 FloodFill = PrinterDC.FloodFillXY
10658 GetPixel = PrinterDC.GetPixelXY
10659 DrawLine = PrinterDC.DrawLineXY
10660 CrossHair = PrinterDC.CrossHairXY
10661 DrawArc = PrinterDC.DrawArcXY
10662 DrawCheckMark = PrinterDC.DrawCheckMarkXY
10663 DrawEllipticArc = PrinterDC.DrawEllipticArcXY
10664 DrawPoint = PrinterDC.DrawPointXY
10665 DrawRectangle = PrinterDC.DrawRectangleXY
10666 DrawRoundedRectangle = PrinterDC.DrawRoundedRectangleXY
10667 DrawCircle = PrinterDC.DrawCircleXY
10668 DrawEllipse = PrinterDC.DrawEllipseXY
10669 DrawIcon = PrinterDC.DrawIconXY
10670 DrawBitmap = PrinterDC.DrawBitmapXY
10671 DrawText = PrinterDC.DrawTextXY
10672 DrawRotatedText = PrinterDC.DrawRotatedTextXY
10673 Blit = PrinterDC.BlitXY
10676 #---------------------------------------------------------------------------
10678 <class name=
"ImageList" oldname=
"wxImageList" module=
"gdi">
10679 <baseclass name=
"Object"/>
10680 <constructor name=
"ImageList" overloaded=
"no">
10681 <autodoc>__init__(int width, int height, int mask=True, int initialCount=
1) -
> ImageList
</autodoc>
10683 <param name=
"width" type=
"int" default=
""/>
10684 <param name=
"height" type=
"int" default=
""/>
10685 <param name=
"mask" type=
"int" default=
"True"/>
10686 <param name=
"initialCount" type=
"int" default=
"1"/>
10689 <destructor name=
"~wxImageList" overloaded=
"no">
10690 <autodoc>__del__()
</autodoc>
10692 <method name=
"Add" type=
"int" overloaded=
"no">
10693 <autodoc>Add(Bitmap bitmap, Bitmap mask=NullBitmap) -
> int
</autodoc>
10695 <param name=
"bitmap" type=
"Bitmap" default=
""/>
10696 <param name=
"mask" type=
"Bitmap" default=
"wxNullBitmap"/>
10699 <method name=
"AddWithColourMask" type=
"int" overloaded=
"no">
10700 <autodoc>AddWithColourMask(Bitmap bitmap, Colour maskColour) -
> int
</autodoc>
10702 <param name=
"bitmap" type=
"Bitmap" default=
""/>
10703 <param name=
"maskColour" type=
"Colour" default=
""/>
10706 <method name=
"AddIcon" type=
"int" overloaded=
"no">
10707 <autodoc>AddIcon(Icon icon) -
> int
</autodoc>
10709 <param name=
"icon" type=
"Icon" default=
""/>
10712 <method name=
"Replace" type=
"bool" overloaded=
"no">
10713 <autodoc>Replace(int index, Bitmap bitmap) -
> bool
</autodoc>
10715 <param name=
"index" type=
"int" default=
""/>
10716 <param name=
"bitmap" type=
"Bitmap" default=
""/>
10719 <method name=
"Draw" type=
"bool" overloaded=
"no">
10720 <autodoc>Draw(int index, DC dc, int x, int x, int flags=IMAGELIST_DRAW_NORMAL,
10721 bool solidBackground=False) -
> bool
</autodoc>
10723 <param name=
"index" type=
"int" default=
""/>
10724 <param name=
"dc" type=
"DC" default=
""/>
10725 <param name=
"x" type=
"int" default=
""/>
10726 <param name=
"x" type=
"int" default=
""/>
10727 <param name=
"flags" type=
"int" default=
"wxIMAGELIST_DRAW_NORMAL"/>
10728 <param name=
"solidBackground" type=
"bool" default=
"False"/>
10731 <method name=
"GetImageCount" type=
"int" overloaded=
"no">
10732 <autodoc>GetImageCount() -
> int
</autodoc>
10734 <method name=
"Remove" type=
"bool" overloaded=
"no">
10735 <autodoc>Remove(int index) -
> bool
</autodoc>
10737 <param name=
"index" type=
"int" default=
""/>
10740 <method name=
"RemoveAll" type=
"bool" overloaded=
"no">
10741 <autodoc>RemoveAll() -
> bool
</autodoc>
10743 <method name=
"GetSize" type=
"" overloaded=
"no">
10744 <autodoc>GetSize() -
> (width,height)
</autodoc>
10746 <param name=
"index" type=
"int" default=
""/>
10747 <param name=
"OUTPUT" type=
"int" default=
""/>
10748 <param name=
"OUTPUT" type=
"int" default=
""/>
10753 #---------------------------------------------------------------------------
10755 <class name=
"PenList" oldname=
"wxPenList" module=
"gdi">
10756 <baseclass name=
"Object"/>
10757 <method name=
"AddPen" type=
"" overloaded=
"no">
10758 <autodoc>AddPen(Pen pen)
</autodoc>
10760 <param name=
"pen" type=
"Pen" default=
""/>
10763 <method name=
"FindOrCreatePen" type=
"Pen" overloaded=
"no">
10764 <autodoc>FindOrCreatePen(Colour colour, int width, int style) -
> Pen
</autodoc>
10766 <param name=
"colour" type=
"Colour" default=
""/>
10767 <param name=
"width" type=
"int" default=
""/>
10768 <param name=
"style" type=
"int" default=
""/>
10771 <method name=
"RemovePen" type=
"" overloaded=
"no">
10772 <autodoc>RemovePen(Pen pen)
</autodoc>
10774 <param name=
"pen" type=
"Pen" default=
""/>
10777 <method name=
"GetCount" type=
"int" overloaded=
"no">
10778 <autodoc>GetCount() -
> int
</autodoc>
10781 <class name=
"BrushList" oldname=
"wxBrushList" module=
"gdi">
10782 <baseclass name=
"Object"/>
10783 <method name=
"AddBrush" type=
"" overloaded=
"no">
10784 <autodoc>AddBrush(Brush brush)
</autodoc>
10786 <param name=
"brush" type=
"Brush" default=
""/>
10789 <method name=
"FindOrCreateBrush" type=
"Brush" overloaded=
"no">
10790 <autodoc>FindOrCreateBrush(Colour colour, int style) -
> Brush
</autodoc>
10792 <param name=
"colour" type=
"Colour" default=
""/>
10793 <param name=
"style" type=
"int" default=
""/>
10796 <method name=
"RemoveBrush" type=
"" overloaded=
"no">
10797 <autodoc>RemoveBrush(Brush brush)
</autodoc>
10799 <param name=
"brush" type=
"Brush" default=
""/>
10802 <method name=
"GetCount" type=
"int" overloaded=
"no">
10803 <autodoc>GetCount() -
> int
</autodoc>
10806 <class name=
"ColourDatabase" oldname=
"wxColourDatabase" module=
"gdi">
10807 <baseclass name=
"Object"/>
10808 <constructor name=
"ColourDatabase" overloaded=
"no">
10809 <autodoc>__init__() -
> ColourDatabase
</autodoc>
10811 <destructor name=
"~wxColourDatabase" overloaded=
"no">
10812 <autodoc>__del__()
</autodoc>
10814 <method name=
"Find" type=
"Colour" overloaded=
"no">
10815 <autodoc>Find(String name) -
> Colour
</autodoc>
10817 <param name=
"name" type=
"String" default=
""/>
10820 <method name=
"FindName" type=
"String" overloaded=
"no">
10821 <autodoc>FindName(Colour colour) -
> String
</autodoc>
10823 <param name=
"colour" type=
"Colour" default=
""/>
10826 <method name=
"AddColour" type=
"" overloaded=
"no">
10827 <autodoc>AddColour(String name, Colour colour)
</autodoc>
10829 <param name=
"name" type=
"String" default=
""/>
10830 <param name=
"colour" type=
"Colour" default=
""/>
10833 <method name=
"Append" type=
"" overloaded=
"no">
10834 <autodoc>Append(String name, int red, int green, int blue)
</autodoc>
10836 <param name=
"name" type=
"String" default=
""/>
10837 <param name=
"red" type=
"int" default=
""/>
10838 <param name=
"green" type=
"int" default=
""/>
10839 <param name=
"blue" type=
"int" default=
""/>
10843 <class name=
"FontList" oldname=
"wxFontList" module=
"gdi">
10844 <baseclass name=
"Object"/>
10845 <method name=
"AddFont" type=
"" overloaded=
"no">
10846 <autodoc>AddFont(Font font)
</autodoc>
10848 <param name=
"font" type=
"Font" default=
""/>
10851 <method name=
"FindOrCreateFont" type=
"Font" overloaded=
"no">
10852 <autodoc>FindOrCreateFont(int point_size, int family, int style, int weight,
10853 bool underline=False, String facename=EmptyString,
10854 int encoding=FONTENCODING_DEFAULT) -
> Font
</autodoc>
10856 <param name=
"point_size" type=
"int" default=
""/>
10857 <param name=
"family" type=
"int" default=
""/>
10858 <param name=
"style" type=
"int" default=
""/>
10859 <param name=
"weight" type=
"int" default=
""/>
10860 <param name=
"underline" type=
"bool" default=
"False"/>
10861 <param name=
"facename" type=
"String" default=
"wxPyEmptyString"/>
10862 <param name=
"encoding" type=
"wxFontEncoding" default=
"wxFONTENCODING_DEFAULT"/>
10865 <method name=
"RemoveFont" type=
"" overloaded=
"no">
10866 <autodoc>RemoveFont(Font font)
</autodoc>
10868 <param name=
"font" type=
"Font" default=
""/>
10871 <method name=
"GetCount" type=
"int" overloaded=
"no">
10872 <autodoc>GetCount() -
> int
</autodoc>
10876 #---------------------------------------------------------------------------
10878 <pythoncode> NullColor = NullColour
</pythoncode>
10880 #---------------------------------------------------------------------------
10882 <class name=
"Effects" oldname=
"wxEffects" module=
"gdi">
10883 <baseclass name=
"Object"/>
10884 <constructor name=
"Effects" overloaded=
"no">
10885 <autodoc>__init__() -
> Effects
</autodoc>
10887 <method name=
"GetHighlightColour" type=
"Colour" overloaded=
"no">
10888 <autodoc>GetHighlightColour() -
> Colour
</autodoc>
10890 <method name=
"GetLightShadow" type=
"Colour" overloaded=
"no">
10891 <autodoc>GetLightShadow() -
> Colour
</autodoc>
10893 <method name=
"GetFaceColour" type=
"Colour" overloaded=
"no">
10894 <autodoc>GetFaceColour() -
> Colour
</autodoc>
10896 <method name=
"GetMediumShadow" type=
"Colour" overloaded=
"no">
10897 <autodoc>GetMediumShadow() -
> Colour
</autodoc>
10899 <method name=
"GetDarkShadow" type=
"Colour" overloaded=
"no">
10900 <autodoc>GetDarkShadow() -
> Colour
</autodoc>
10902 <method name=
"SetHighlightColour" type=
"" overloaded=
"no">
10903 <autodoc>SetHighlightColour(Colour c)
</autodoc>
10905 <param name=
"c" type=
"Colour" default=
""/>
10908 <method name=
"SetLightShadow" type=
"" overloaded=
"no">
10909 <autodoc>SetLightShadow(Colour c)
</autodoc>
10911 <param name=
"c" type=
"Colour" default=
""/>
10914 <method name=
"SetFaceColour" type=
"" overloaded=
"no">
10915 <autodoc>SetFaceColour(Colour c)
</autodoc>
10917 <param name=
"c" type=
"Colour" default=
""/>
10920 <method name=
"SetMediumShadow" type=
"" overloaded=
"no">
10921 <autodoc>SetMediumShadow(Colour c)
</autodoc>
10923 <param name=
"c" type=
"Colour" default=
""/>
10926 <method name=
"SetDarkShadow" type=
"" overloaded=
"no">
10927 <autodoc>SetDarkShadow(Colour c)
</autodoc>
10929 <param name=
"c" type=
"Colour" default=
""/>
10932 <method name=
"Set" type=
"" overloaded=
"no">
10933 <autodoc>Set(Colour highlightColour, Colour lightShadow, Colour faceColour,
10934 Colour mediumShadow, Colour darkShadow)
</autodoc>
10936 <param name=
"highlightColour" type=
"Colour" default=
""/>
10937 <param name=
"lightShadow" type=
"Colour" default=
""/>
10938 <param name=
"faceColour" type=
"Colour" default=
""/>
10939 <param name=
"mediumShadow" type=
"Colour" default=
""/>
10940 <param name=
"darkShadow" type=
"Colour" default=
""/>
10943 <method name=
"DrawSunkenEdge" type=
"" overloaded=
"no">
10944 <autodoc>DrawSunkenEdge(DC dc, Rect rect, int borderSize=
1)
</autodoc>
10946 <param name=
"dc" type=
"DC" default=
""/>
10947 <param name=
"rect" type=
"Rect" default=
""/>
10948 <param name=
"borderSize" type=
"int" default=
"1"/>
10951 <method name=
"TileBitmap" type=
"bool" overloaded=
"no">
10952 <autodoc>TileBitmap(Rect rect, DC dc, Bitmap bitmap) -
> bool
</autodoc>
10954 <param name=
"rect" type=
"Rect" default=
""/>
10955 <param name=
"dc" type=
"DC" default=
""/>
10956 <param name=
"bitmap" type=
"Bitmap" default=
""/>
10961 <module name=
"windows">
10962 <import name=
"core"/>
10963 <pythoncode> wx = core
</pythoncode>
10965 #---------------------------------------------------------------------------
10967 <class name=
"Panel" oldname=
"wxPanel" module=
"windows">
10968 <baseclass name=
"Window"/>
10969 <constructor name=
"Panel" overloaded=
"no">
10970 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
10971 Size size=DefaultSize, long style=wxTAB_TRAVERSAL|wxNO_BORDER,
10972 String name=PanelNameStr) -
> Panel
</autodoc>
10974 <param name=
"parent" type=
"Window" default=
""/>
10975 <param name=
"id" type=
"int" default=
"-1"/>
10976 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
10977 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
10978 <param name=
"style" type=
"long" default=
"wxTAB_TRAVERSAL|wxNO_BORDER"/>
10979 <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/>
10982 <constructor name=
"PrePanel" overloaded=
"no">
10983 <autodoc>PrePanel() -
> Panel
</autodoc>
10985 <method name=
"Create" type=
"bool" overloaded=
"no">
10986 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
10987 long style=wxTAB_TRAVERSAL|wxNO_BORDER,
10988 String name=PanelNameStr) -
> bool
</autodoc>
10989 <docstring>Create the GUI part of the Window for
2-phase creation mode.
</docstring>
10991 <param name=
"parent" type=
"Window" default=
""/>
10992 <param name=
"id" type=
"int" default=
""/>
10993 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
10994 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
10995 <param name=
"style" type=
"long" default=
"wxTAB_TRAVERSAL|wxNO_BORDER"/>
10996 <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/>
10999 <method name=
"InitDialog" type=
"" overloaded=
"no">
11000 <autodoc>InitDialog()
</autodoc>
11004 #---------------------------------------------------------------------------
11006 <class name=
"ScrolledWindow" oldname=
"wxScrolledWindow" module=
"windows">
11007 <baseclass name=
"Panel"/>
11008 <constructor name=
"ScrolledWindow" overloaded=
"no">
11009 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
11010 Size size=DefaultSize, long style=wxHSCROLL|wxVSCROLL,
11011 String name=PanelNameStr) -
> ScrolledWindow
</autodoc>
11013 <param name=
"parent" type=
"Window" default=
""/>
11014 <param name=
"id" type=
"int" default=
"-1"/>
11015 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
11016 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
11017 <param name=
"style" type=
"long" default=
"wxHSCROLL|wxVSCROLL"/>
11018 <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/>
11021 <constructor name=
"PreScrolledWindow" overloaded=
"no">
11022 <autodoc>PreScrolledWindow() -
> ScrolledWindow
</autodoc>
11024 <method name=
"Create" type=
"bool" overloaded=
"no">
11025 <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition,
11026 Size size=DefaultSize, long style=wxHSCROLL|wxVSCROLL,
11027 String name=PanelNameStr) -
> bool
</autodoc>
11028 <docstring>Create the GUI part of the Window for
2-phase creation mode.
</docstring>
11030 <param name=
"parent" type=
"Window" default=
""/>
11031 <param name=
"id" type=
"int" default=
"-1"/>
11032 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
11033 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
11034 <param name=
"style" type=
"long" default=
"wxHSCROLL|wxVSCROLL"/>
11035 <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/>
11038 <method name=
"SetScrollbars" type=
"" overloaded=
"no">
11039 <autodoc>SetScrollbars(int pixelsPerUnitX, int pixelsPerUnitY, int noUnitsX,
11040 int noUnitsY, int xPos=
0, int yPos=
0, bool noRefresh=False)
</autodoc>
11042 <param name=
"pixelsPerUnitX" type=
"int" default=
""/>
11043 <param name=
"pixelsPerUnitY" type=
"int" default=
""/>
11044 <param name=
"noUnitsX" type=
"int" default=
""/>
11045 <param name=
"noUnitsY" type=
"int" default=
""/>
11046 <param name=
"xPos" type=
"int" default=
"0"/>
11047 <param name=
"yPos" type=
"int" default=
"0"/>
11048 <param name=
"noRefresh" type=
"bool" default=
"False"/>
11051 <method name=
"Scroll" type=
"" overloaded=
"no">
11052 <autodoc>Scroll(int x, int y)
</autodoc>
11054 <param name=
"x" type=
"int" default=
""/>
11055 <param name=
"y" type=
"int" default=
""/>
11058 <method name=
"GetScrollPageSize" type=
"int" overloaded=
"no">
11059 <autodoc>GetScrollPageSize(int orient) -
> int
</autodoc>
11061 <param name=
"orient" type=
"int" default=
""/>
11064 <method name=
"SetScrollPageSize" type=
"" overloaded=
"no">
11065 <autodoc>SetScrollPageSize(int orient, int pageSize)
</autodoc>
11067 <param name=
"orient" type=
"int" default=
""/>
11068 <param name=
"pageSize" type=
"int" default=
""/>
11071 <method name=
"SetScrollRate" type=
"" overloaded=
"no">
11072 <autodoc>SetScrollRate(int xstep, int ystep)
</autodoc>
11074 <param name=
"xstep" type=
"int" default=
""/>
11075 <param name=
"ystep" type=
"int" default=
""/>
11078 <method name=
"GetScrollPixelsPerUnit" type=
"" overloaded=
"no">
11079 <autodoc>GetScrollPixelsPerUnit() -
> (xUnit, yUnit)
</autodoc>
11080 <docstring>Get the size of one logical unit in physical units.
</docstring>
11082 <param name=
"OUTPUT" type=
"int" default=
""/>
11083 <param name=
"OUTPUT" type=
"int" default=
""/>
11086 <method name=
"EnableScrolling" type=
"" overloaded=
"no">
11087 <autodoc>EnableScrolling(bool x_scrolling, bool y_scrolling)
</autodoc>
11089 <param name=
"x_scrolling" type=
"bool" default=
""/>
11090 <param name=
"y_scrolling" type=
"bool" default=
""/>
11093 <method name=
"GetViewStart" type=
"" overloaded=
"no">
11094 <autodoc>GetViewStart() -
> (x,y)
</autodoc>
11095 <docstring>Get the view start
</docstring>
11097 <param name=
"OUTPUT" type=
"int" default=
""/>
11098 <param name=
"OUTPUT" type=
"int" default=
""/>
11101 <method name=
"SetScale" type=
"" overloaded=
"no">
11102 <autodoc>SetScale(double xs, double ys)
</autodoc>
11104 <param name=
"xs" type=
"double" default=
""/>
11105 <param name=
"ys" type=
"double" default=
""/>
11108 <method name=
"GetScaleX" type=
"double" overloaded=
"no">
11109 <autodoc>GetScaleX() -
> double
</autodoc>
11111 <method name=
"GetScaleY" type=
"double" overloaded=
"no">
11112 <autodoc>GetScaleY() -
> double
</autodoc>
11114 <method name=
"CalcScrolledPosition" type=
"Point" overloaded=
"yes">
11115 <docstring>Translate between scrolled and unscrolled coordinates.
</docstring>
11117 <param name=
"pt" type=
"Point" default=
""/>
11120 <method name=
"CalcScrolledPosition" type=
"" overloaded=
"yes">
11121 <autodoc>CalcScrolledPosition(Point pt) -
> Point
11122 CalcScrolledPosition(int x, int y) -
> (sx, sy)
</autodoc>
11123 <docstring>Translate between scrolled and unscrolled coordinates.
</docstring>
11125 <param name=
"x" type=
"int" default=
""/>
11126 <param name=
"y" type=
"int" default=
""/>
11127 <param name=
"OUTPUT" type=
"int" default=
""/>
11128 <param name=
"OUTPUT" type=
"int" default=
""/>
11131 <method name=
"CalcUnscrolledPosition" type=
"Point" overloaded=
"yes">
11132 <docstring>Translate between scrolled and unscrolled coordinates.
</docstring>
11134 <param name=
"pt" type=
"Point" default=
""/>
11137 <method name=
"CalcUnscrolledPosition" type=
"" overloaded=
"yes">
11138 <autodoc>CalcUnscrolledPosition(Point pt) -
> Point
11139 CalcUnscrolledPosition(int x, int y) -
> (ux, uy)
</autodoc>
11140 <docstring>Translate between scrolled and unscrolled coordinates.
</docstring>
11142 <param name=
"x" type=
"int" default=
""/>
11143 <param name=
"y" type=
"int" default=
""/>
11144 <param name=
"OUTPUT" type=
"int" default=
""/>
11145 <param name=
"OUTPUT" type=
"int" default=
""/>
11148 <method name=
"AdjustScrollbars" type=
"" overloaded=
"no">
11149 <autodoc>AdjustScrollbars()
</autodoc>
11151 <method name=
"CalcScrollInc" type=
"int" overloaded=
"no">
11152 <autodoc>CalcScrollInc(ScrollWinEvent event) -
> int
</autodoc>
11154 <param name=
"event" type=
"ScrollWinEvent" default=
""/>
11157 <method name=
"SetTargetWindow" type=
"" overloaded=
"no">
11158 <autodoc>SetTargetWindow(Window target)
</autodoc>
11160 <param name=
"target" type=
"Window" default=
""/>
11163 <method name=
"GetTargetWindow" type=
"Window" overloaded=
"no">
11164 <autodoc>GetTargetWindow() -
> Window
</autodoc>
11168 #---------------------------------------------------------------------------
11170 <class name=
"TopLevelWindow" oldname=
"wxTopLevelWindow" module=
"windows">
11171 <baseclass name=
"Window"/>
11172 <method name=
"Maximize" type=
"" overloaded=
"no">
11173 <autodoc>Maximize(bool maximize=True)
</autodoc>
11175 <param name=
"maximize" type=
"bool" default=
"True"/>
11178 <method name=
"Restore" type=
"" overloaded=
"no">
11179 <autodoc>Restore()
</autodoc>
11181 <method name=
"Iconize" type=
"" overloaded=
"no">
11182 <autodoc>Iconize(bool iconize=True)
</autodoc>
11184 <param name=
"iconize" type=
"bool" default=
"True"/>
11187 <method name=
"IsMaximized" type=
"bool" overloaded=
"no">
11188 <autodoc>IsMaximized() -
> bool
</autodoc>
11190 <method name=
"IsIconized" type=
"bool" overloaded=
"no">
11191 <autodoc>IsIconized() -
> bool
</autodoc>
11193 <method name=
"GetIcon" type=
"Icon" overloaded=
"no">
11194 <autodoc>GetIcon() -
> Icon
</autodoc>
11196 <method name=
"SetIcon" type=
"" overloaded=
"no">
11197 <autodoc>SetIcon(Icon icon)
</autodoc>
11199 <param name=
"icon" type=
"Icon" default=
""/>
11202 <method name=
"SetIcons" type=
"" overloaded=
"no">
11203 <autodoc>SetIcons(wxIconBundle icons)
</autodoc>
11205 <param name=
"icons" type=
"IconBundle" default=
""/>
11208 <method name=
"ShowFullScreen" type=
"bool" overloaded=
"no">
11209 <autodoc>ShowFullScreen(bool show, long style=FULLSCREEN_ALL) -
> bool
</autodoc>
11211 <param name=
"show" type=
"bool" default=
""/>
11212 <param name=
"style" type=
"long" default=
"wxFULLSCREEN_ALL"/>
11215 <method name=
"IsFullScreen" type=
"bool" overloaded=
"no">
11216 <autodoc>IsFullScreen() -
> bool
</autodoc>
11218 <method name=
"SetTitle" type=
"" overloaded=
"no">
11219 <autodoc>SetTitle(String title)
</autodoc>
11220 <docstring>Sets the window's title. Applicable only to frames and dialogs.
</docstring>
11222 <param name=
"title" type=
"String" default=
""/>
11225 <method name=
"GetTitle" type=
"String" overloaded=
"no">
11226 <autodoc>GetTitle() -
> String
</autodoc>
11227 <docstring>Gets the window's title. Applicable only to frames and dialogs.
</docstring>
11229 <method name=
"SetShape" type=
"bool" overloaded=
"no">
11230 <autodoc>SetShape(Region region) -
> bool
</autodoc>
11232 <param name=
"region" type=
"Region" default=
""/>
11237 #---------------------------------------------------------------------------
11239 <class name=
"Frame" oldname=
"wxFrame" module=
"windows">
11240 <baseclass name=
"TopLevelWindow"/>
11241 <constructor name=
"Frame" overloaded=
"no">
11242 <autodoc>__init__(Window parent, int id, String title, Point pos=DefaultPosition,
11243 Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
11244 String name=FrameNameStr) -
> Frame
</autodoc>
11246 <param name=
"parent" type=
"Window" default=
""/>
11247 <param name=
"id" type=
"int" default=
""/>
11248 <param name=
"title" type=
"String" default=
""/>
11249 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
11250 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
11251 <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/>
11252 <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/>
11255 <constructor name=
"PreFrame" overloaded=
"no">
11256 <autodoc>PreFrame() -
> Frame
</autodoc>
11258 <method name=
"Create" type=
"bool" overloaded=
"no">
11259 <autodoc>Create(Window parent, int id, String title, Point pos=DefaultPosition,
11260 Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
11261 String name=FrameNameStr) -
> bool
</autodoc>
11263 <param name=
"parent" type=
"Window" default=
""/>
11264 <param name=
"id" type=
"int" default=
""/>
11265 <param name=
"title" type=
"String" default=
""/>
11266 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
11267 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
11268 <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/>
11269 <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/>
11272 <method name=
"GetClientAreaOrigin" type=
"Point" overloaded=
"no">
11273 <autodoc>GetClientAreaOrigin() -
> Point
</autodoc>
11274 <docstring>Get the origin of the client area of the window relative to the
11275 window's top left corner (the client area may be shifted because of
11276 the borders, scrollbars, other decorations...)
</docstring>
11278 <method name=
"SendSizeEvent" type=
"" overloaded=
"no">
11279 <autodoc>SendSizeEvent()
</autodoc>
11281 <method name=
"SetMenuBar" type=
"" overloaded=
"no">
11282 <autodoc>SetMenuBar(MenuBar menubar)
</autodoc>
11284 <param name=
"menubar" type=
"MenuBar" default=
""/>
11287 <method name=
"GetMenuBar" type=
"MenuBar" overloaded=
"no">
11288 <autodoc>GetMenuBar() -
> MenuBar
</autodoc>
11290 <method name=
"ProcessCommand" type=
"bool" overloaded=
"no">
11291 <autodoc>ProcessCommand(int winid) -
> bool
</autodoc>
11293 <param name=
"winid" type=
"int" default=
""/>
11296 <method name=
"CreateStatusBar" type=
"wxStatusBar" overloaded=
"no">
11297 <autodoc>CreateStatusBar(int number=
1, long style=wxST_SIZEGRIP|wxFULL_REPAINT_ON_RESIZE,
11298 int winid=
0, String name=StatusLineNameStr) -
> StatusBar
</autodoc>
11300 <param name=
"number" type=
"int" default=
"1"/>
11301 <param name=
"style" type=
"long" default=
"wxST_SIZEGRIP|wxFULL_REPAINT_ON_RESIZE"/>
11302 <param name=
"winid" type=
"int" default=
"0"/>
11303 <param name=
"name" type=
"String" default=
"wxPyStatusLineNameStr"/>
11306 <method name=
"GetStatusBar" type=
"wxStatusBar" overloaded=
"no">
11307 <autodoc>GetStatusBar() -
> StatusBar
</autodoc>
11309 <method name=
"SetStatusBar" type=
"" overloaded=
"no">
11310 <autodoc>SetStatusBar(StatusBar statBar)
</autodoc>
11312 <param name=
"statBar" type=
"wxStatusBar" default=
""/>
11315 <method name=
"SetStatusText" type=
"" overloaded=
"no">
11316 <autodoc>SetStatusText(String text, int number=
0)
</autodoc>
11318 <param name=
"text" type=
"String" default=
""/>
11319 <param name=
"number" type=
"int" default=
"0"/>
11322 <method name=
"SetStatusWidths" type=
"" overloaded=
"no">
11323 <autodoc>SetStatusWidths(int widths, int widths_field)
</autodoc>
11325 <param name=
"widths" type=
"int" default=
""/>
11326 <param name=
"widths_field" type=
"int" default=
""/>
11329 <method name=
"PushStatusText" type=
"" overloaded=
"no">
11330 <autodoc>PushStatusText(String text, int number=
0)
</autodoc>
11332 <param name=
"text" type=
"String" default=
""/>
11333 <param name=
"number" type=
"int" default=
"0"/>
11336 <method name=
"PopStatusText" type=
"" overloaded=
"no">
11337 <autodoc>PopStatusText(int number=
0)
</autodoc>
11339 <param name=
"number" type=
"int" default=
"0"/>
11342 <method name=
"SetStatusBarPane" type=
"" overloaded=
"no">
11343 <autodoc>SetStatusBarPane(int n)
</autodoc>
11345 <param name=
"n" type=
"int" default=
""/>
11348 <method name=
"GetStatusBarPane" type=
"int" overloaded=
"no">
11349 <autodoc>GetStatusBarPane() -
> int
</autodoc>
11351 <method name=
"CreateToolBar" type=
"wxToolBar" overloaded=
"no">
11352 <autodoc>CreateToolBar(long style=-
1, int winid=-
1, String name=ToolBarNameStr) -
> wxToolBar
</autodoc>
11354 <param name=
"style" type=
"long" default=
"-1"/>
11355 <param name=
"winid" type=
"int" default=
"-1"/>
11356 <param name=
"name" type=
"String" default=
"wxPyToolBarNameStr"/>
11359 <method name=
"GetToolBar" type=
"wxToolBar" overloaded=
"no">
11360 <autodoc>GetToolBar() -
> wxToolBar
</autodoc>
11362 <method name=
"SetToolBar" type=
"" overloaded=
"no">
11363 <autodoc>SetToolBar(wxToolBar toolbar)
</autodoc>
11365 <param name=
"toolbar" type=
"wxToolBar" default=
""/>
11368 <method name=
"DoGiveHelp" type=
"" overloaded=
"no">
11369 <autodoc>DoGiveHelp(String text, bool show)
</autodoc>
11371 <param name=
"text" type=
"String" default=
""/>
11372 <param name=
"show" type=
"bool" default=
""/>
11375 <method name=
"DoMenuUpdates" type=
"" overloaded=
"no">
11376 <autodoc>DoMenuUpdates(Menu menu=None)
</autodoc>
11378 <param name=
"menu" type=
"Menu" default=
"NULL"/>
11383 #---------------------------------------------------------------------------
11385 <class name=
"Dialog" oldname=
"wxDialog" module=
"windows">
11386 <baseclass name=
"TopLevelWindow"/>
11387 <constructor name=
"Dialog" overloaded=
"no">
11388 <autodoc>__init__(Window parent, int id, String title, Point pos=DefaultPosition,
11389 Size size=DefaultSize, long style=DEFAULT_DIALOG_STYLE,
11390 String name=DialogNameStr) -
> Dialog
</autodoc>
11392 <param name=
"parent" type=
"Window" default=
""/>
11393 <param name=
"id" type=
"int" default=
""/>
11394 <param name=
"title" type=
"String" default=
""/>
11395 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
11396 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
11397 <param name=
"style" type=
"long" default=
"wxDEFAULT_DIALOG_STYLE"/>
11398 <param name=
"name" type=
"String" default=
"wxPyDialogNameStr"/>
11401 <constructor name=
"PreDialog" overloaded=
"no">
11402 <autodoc>PreDialog() -
> Dialog
</autodoc>
11404 <method name=
"Create" type=
"bool" overloaded=
"no">
11405 <autodoc>Create(Window parent, int id, String title, Point pos=DefaultPosition,
11406 Size size=DefaultSize, long style=DEFAULT_DIALOG_STYLE,
11407 String name=DialogNameStr) -
> bool
</autodoc>
11409 <param name=
"parent" type=
"Window" default=
""/>
11410 <param name=
"id" type=
"int" default=
""/>
11411 <param name=
"title" type=
"String" default=
""/>
11412 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
11413 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
11414 <param name=
"style" type=
"long" default=
"wxDEFAULT_DIALOG_STYLE"/>
11415 <param name=
"name" type=
"String" default=
"wxPyDialogNameStr"/>
11418 <method name=
"SetReturnCode" type=
"" overloaded=
"no">
11419 <autodoc>SetReturnCode(int returnCode)
</autodoc>
11421 <param name=
"returnCode" type=
"int" default=
""/>
11424 <method name=
"GetReturnCode" type=
"int" overloaded=
"no">
11425 <autodoc>GetReturnCode() -
> int
</autodoc>
11427 <method name=
"CreateTextSizer" type=
"Sizer" overloaded=
"no">
11428 <autodoc>CreateTextSizer(String message) -
> Sizer
</autodoc>
11430 <param name=
"message" type=
"String" default=
""/>
11433 <method name=
"CreateButtonSizer" type=
"Sizer" overloaded=
"no">
11434 <autodoc>CreateButtonSizer(long flags) -
> Sizer
</autodoc>
11436 <param name=
"flags" type=
"long" default=
""/>
11439 <method name=
"IsModal" type=
"bool" overloaded=
"no">
11440 <autodoc>IsModal() -
> bool
</autodoc>
11442 <method name=
"ShowModal" type=
"int" overloaded=
"no">
11443 <autodoc>ShowModal() -
> int
</autodoc>
11445 <method name=
"EndModal" type=
"" overloaded=
"no">
11446 <autodoc>EndModal(int retCode)
</autodoc>
11448 <param name=
"retCode" type=
"int" default=
""/>
11451 <method name=
"IsModalShowing" type=
"bool" overloaded=
"no">
11452 <autodoc>IsModalShowing() -
> bool
</autodoc>
11456 #---------------------------------------------------------------------------
11458 <class name=
"MiniFrame" oldname=
"wxMiniFrame" module=
"windows">
11459 <baseclass name=
"Frame"/>
11460 <constructor name=
"MiniFrame" overloaded=
"no">
11461 <autodoc>__init__(Window parent, int id, String title, Point pos=DefaultPosition,
11462 Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
11463 String name=FrameNameStr) -
> MiniFrame
</autodoc>
11465 <param name=
"parent" type=
"Window" default=
""/>
11466 <param name=
"id" type=
"int" default=
""/>
11467 <param name=
"title" type=
"String" default=
""/>
11468 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
11469 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
11470 <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/>
11471 <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/>
11474 <constructor name=
"PreMiniFrame" overloaded=
"no">
11475 <autodoc>PreMiniFrame() -
> MiniFrame
</autodoc>
11477 <method name=
"Create" type=
"bool" overloaded=
"no">
11478 <autodoc>Create(Window parent, int id, String title, Point pos=DefaultPosition,
11479 Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
11480 String name=FrameNameStr) -
> bool
</autodoc>
11482 <param name=
"parent" type=
"Window" default=
""/>
11483 <param name=
"id" type=
"int" default=
""/>
11484 <param name=
"title" type=
"String" default=
""/>
11485 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
11486 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
11487 <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/>
11488 <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/>
11493 #---------------------------------------------------------------------------
11495 <class name=
"SplashScreenWindow" oldname=
"wxSplashScreenWindow" module=
"windows">
11496 <baseclass name=
"Window"/>
11497 <constructor name=
"SplashScreenWindow" overloaded=
"no">
11498 <autodoc>__init__(Bitmap bitmap, Window parent, int id, Point pos=DefaultPosition,
11499 Size size=DefaultSize, long style=NO_BORDER) -
> SplashScreenWindow
</autodoc>
11501 <param name=
"bitmap" type=
"Bitmap" default=
""/>
11502 <param name=
"parent" type=
"Window" default=
""/>
11503 <param name=
"id" type=
"int" default=
""/>
11504 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
11505 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
11506 <param name=
"style" type=
"long" default=
"wxNO_BORDER"/>
11509 <method name=
"SetBitmap" type=
"" overloaded=
"no">
11510 <autodoc>SetBitmap(Bitmap bitmap)
</autodoc>
11512 <param name=
"bitmap" type=
"Bitmap" default=
""/>
11515 <method name=
"GetBitmap" type=
"Bitmap" overloaded=
"no">
11516 <autodoc>GetBitmap() -
> Bitmap
</autodoc>
11519 <class name=
"SplashScreen" oldname=
"wxSplashScreen" module=
"windows">
11520 <baseclass name=
"Frame"/>
11521 <constructor name=
"SplashScreen" overloaded=
"no">
11522 <autodoc>__init__(Bitmap bitmap, long splashStyle, int milliseconds,
11523 Window parent, int id, Point pos=DefaultPosition,
11524 Size size=DefaultSize, long style=wxSIMPLE_BORDER|wxFRAME_NO_TASKBAR|wxSTAY_ON_TOP) -
> SplashScreen
</autodoc>
11526 <param name=
"bitmap" type=
"Bitmap" default=
""/>
11527 <param name=
"splashStyle" type=
"long" default=
""/>
11528 <param name=
"milliseconds" type=
"int" default=
""/>
11529 <param name=
"parent" type=
"Window" default=
""/>
11530 <param name=
"id" type=
"int" default=
""/>
11531 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
11532 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
11533 <param name=
"style" type=
"long" default=
"wxSIMPLE_BORDER|wxFRAME_NO_TASKBAR|wxSTAY_ON_TOP"/>
11536 <method name=
"GetSplashStyle" type=
"long" overloaded=
"no">
11537 <autodoc>GetSplashStyle() -
> long
</autodoc>
11539 <method name=
"GetSplashWindow" type=
"SplashScreenWindow" overloaded=
"no">
11540 <autodoc>GetSplashWindow() -
> SplashScreenWindow
</autodoc>
11542 <method name=
"GetTimeout" type=
"int" overloaded=
"no">
11543 <autodoc>GetTimeout() -
> int
</autodoc>
11547 #---------------------------------------------------------------------------
11549 <class name=
"StatusBar" oldname=
"wxStatusBar" module=
"windows">
11550 <baseclass name=
"Window"/>
11551 <constructor name=
"StatusBar" overloaded=
"no">
11552 <autodoc>__init__(Window parent, int id=-
1, long style=wxST_SIZEGRIP|wxFULL_REPAINT_ON_RESIZE,
11553 String name=StatusLineNameStr) -
> StatusBar
</autodoc>
11555 <param name=
"parent" type=
"Window" default=
""/>
11556 <param name=
"id" type=
"int" default=
"-1"/>
11557 <param name=
"style" type=
"long" default=
"wxST_SIZEGRIP|wxFULL_REPAINT_ON_RESIZE"/>
11558 <param name=
"name" type=
"String" default=
"wxPyStatusLineNameStr"/>
11561 <constructor name=
"PreStatusBar" overloaded=
"no">
11562 <autodoc>PreStatusBar() -
> StatusBar
</autodoc>
11564 <method name=
"Create" type=
"bool" overloaded=
"no">
11565 <autodoc>Create(Window parent, int id, long style=ST_SIZEGRIP, String name=StatusLineNameStr) -
> bool
</autodoc>
11567 <param name=
"parent" type=
"Window" default=
""/>
11568 <param name=
"id" type=
"int" default=
""/>
11569 <param name=
"style" type=
"long" default=
"wxST_SIZEGRIP"/>
11570 <param name=
"name" type=
"String" default=
"wxPyStatusLineNameStr"/>
11573 <method name=
"SetFieldsCount" type=
"" overloaded=
"no">
11574 <autodoc>SetFieldsCount(int number=
1)
</autodoc>
11576 <param name=
"number" type=
"int" default=
"1"/>
11579 <method name=
"GetFieldsCount" type=
"int" overloaded=
"no">
11580 <autodoc>GetFieldsCount() -
> int
</autodoc>
11582 <method name=
"SetStatusText" type=
"" overloaded=
"no">
11583 <autodoc>SetStatusText(String text, int number=
0)
</autodoc>
11585 <param name=
"text" type=
"String" default=
""/>
11586 <param name=
"number" type=
"int" default=
"0"/>
11589 <method name=
"GetStatusText" type=
"String" overloaded=
"no">
11590 <autodoc>GetStatusText(int number=
0) -
> String
</autodoc>
11592 <param name=
"number" type=
"int" default=
"0"/>
11595 <method name=
"PushStatusText" type=
"" overloaded=
"no">
11596 <autodoc>PushStatusText(String text, int number=
0)
</autodoc>
11598 <param name=
"text" type=
"String" default=
""/>
11599 <param name=
"number" type=
"int" default=
"0"/>
11602 <method name=
"PopStatusText" type=
"" overloaded=
"no">
11603 <autodoc>PopStatusText(int number=
0)
</autodoc>
11605 <param name=
"number" type=
"int" default=
"0"/>
11608 <method name=
"SetStatusWidths" type=
"" overloaded=
"no">
11609 <autodoc>SetStatusWidths(int widths, int widths_field)
</autodoc>
11611 <param name=
"widths" type=
"int" default=
""/>
11612 <param name=
"widths_field" type=
"int" default=
""/>
11615 <method name=
"GetFieldRect" type=
"Rect" overloaded=
"no">
11616 <autodoc>GetFieldRect(int i) -
> Rect
</autodoc>
11618 <param name=
"i" type=
"int" default=
""/>
11621 <method name=
"SetMinHeight" type=
"" overloaded=
"no">
11622 <autodoc>SetMinHeight(int height)
</autodoc>
11624 <param name=
"height" type=
"int" default=
""/>
11627 <method name=
"GetBorderX" type=
"int" overloaded=
"no">
11628 <autodoc>GetBorderX() -
> int
</autodoc>
11630 <method name=
"GetBorderY" type=
"int" overloaded=
"no">
11631 <autodoc>GetBorderY() -
> int
</autodoc>
11635 #---------------------------------------------------------------------------
11637 <class name=
"SplitterWindow" oldname=
"wxSplitterWindow" module=
"windows">
11638 <baseclass name=
"Window"/>
11639 <constructor name=
"SplitterWindow" overloaded=
"no">
11640 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
11641 long style=SP_3D, String name=SplitterNameStr) -
> SplitterWindow
</autodoc>
11643 <param name=
"parent" type=
"Window" default=
""/>
11644 <param name=
"id" type=
"int" default=
""/>
11645 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
11646 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
11647 <param name=
"style" type=
"long" default=
"wxSP_3D"/>
11648 <param name=
"name" type=
"String" default=
"wxPySplitterNameStr"/>
11651 <constructor name=
"PreSplitterWindow" overloaded=
"no">
11652 <autodoc>PreSplitterWindow() -
> SplitterWindow
</autodoc>
11654 <method name=
"Create" type=
"bool" overloaded=
"no">
11655 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
11656 long style=SP_3D, String name=SplitterNameStr) -
> bool
</autodoc>
11658 <param name=
"parent" type=
"Window" default=
""/>
11659 <param name=
"id" type=
"int" default=
""/>
11660 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
11661 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
11662 <param name=
"style" type=
"long" default=
"wxSP_3D"/>
11663 <param name=
"name" type=
"String" default=
"wxPySplitterNameStr"/>
11666 <method name=
"GetWindow1" type=
"Window" overloaded=
"no">
11667 <autodoc>GetWindow1() -
> Window
</autodoc>
11669 <method name=
"GetWindow2" type=
"Window" overloaded=
"no">
11670 <autodoc>GetWindow2() -
> Window
</autodoc>
11672 <method name=
"SetSplitMode" type=
"" overloaded=
"no">
11673 <autodoc>SetSplitMode(int mode)
</autodoc>
11675 <param name=
"mode" type=
"int" default=
""/>
11678 <method name=
"GetSplitMode" type=
"wxSplitMode" overloaded=
"no">
11679 <autodoc>GetSplitMode() -
> int
</autodoc>
11681 <method name=
"Initialize" type=
"" overloaded=
"no">
11682 <autodoc>Initialize(Window window)
</autodoc>
11684 <param name=
"window" type=
"Window" default=
""/>
11687 <method name=
"SplitVertically" type=
"bool" overloaded=
"no">
11688 <autodoc>SplitVertically(Window window1, Window window2, int sashPosition=
0) -
> bool
</autodoc>
11690 <param name=
"window1" type=
"Window" default=
""/>
11691 <param name=
"window2" type=
"Window" default=
""/>
11692 <param name=
"sashPosition" type=
"int" default=
"0"/>
11695 <method name=
"SplitHorizontally" type=
"bool" overloaded=
"no">
11696 <autodoc>SplitHorizontally(Window window1, Window window2, int sashPosition=
0) -
> bool
</autodoc>
11698 <param name=
"window1" type=
"Window" default=
""/>
11699 <param name=
"window2" type=
"Window" default=
""/>
11700 <param name=
"sashPosition" type=
"int" default=
"0"/>
11703 <method name=
"Unsplit" type=
"bool" overloaded=
"no">
11704 <autodoc>Unsplit(Window toRemove=None) -
> bool
</autodoc>
11706 <param name=
"toRemove" type=
"Window" default=
"NULL"/>
11709 <method name=
"ReplaceWindow" type=
"bool" overloaded=
"no">
11710 <autodoc>ReplaceWindow(Window winOld, Window winNew) -
> bool
</autodoc>
11712 <param name=
"winOld" type=
"Window" default=
""/>
11713 <param name=
"winNew" type=
"Window" default=
""/>
11716 <method name=
"IsSplit" type=
"bool" overloaded=
"no">
11717 <autodoc>IsSplit() -
> bool
</autodoc>
11719 <method name=
"SetSashSize" type=
"" overloaded=
"no">
11720 <autodoc>SetSashSize(int width)
</autodoc>
11722 <param name=
"width" type=
"int" default=
""/>
11725 <method name=
"SetBorderSize" type=
"" overloaded=
"no">
11726 <autodoc>SetBorderSize(int width)
</autodoc>
11728 <param name=
"width" type=
"int" default=
""/>
11731 <method name=
"GetSashSize" type=
"int" overloaded=
"no">
11732 <autodoc>GetSashSize() -
> int
</autodoc>
11734 <method name=
"GetBorderSize" type=
"int" overloaded=
"no">
11735 <autodoc>GetBorderSize() -
> int
</autodoc>
11737 <method name=
"SetSashPosition" type=
"" overloaded=
"no">
11738 <autodoc>SetSashPosition(int position, bool redraw=True)
</autodoc>
11740 <param name=
"position" type=
"int" default=
""/>
11741 <param name=
"redraw" type=
"bool" default=
"True"/>
11744 <method name=
"GetSashPosition" type=
"int" overloaded=
"no">
11745 <autodoc>GetSashPosition() -
> int
</autodoc>
11747 <method name=
"SetMinimumPaneSize" type=
"" overloaded=
"no">
11748 <autodoc>SetMinimumPaneSize(int min)
</autodoc>
11750 <param name=
"min" type=
"int" default=
""/>
11753 <method name=
"GetMinimumPaneSize" type=
"int" overloaded=
"no">
11754 <autodoc>GetMinimumPaneSize() -
> int
</autodoc>
11756 <method name=
"SashHitTest" type=
"bool" overloaded=
"no">
11757 <autodoc>SashHitTest(int x, int y, int tolerance=
5) -
> bool
</autodoc>
11759 <param name=
"x" type=
"int" default=
""/>
11760 <param name=
"y" type=
"int" default=
""/>
11761 <param name=
"tolerance" type=
"int" default=
"5"/>
11764 <method name=
"SizeWindows" type=
"" overloaded=
"no">
11765 <autodoc>SizeWindows()
</autodoc>
11767 <method name=
"SetNeedUpdating" type=
"" overloaded=
"no">
11768 <autodoc>SetNeedUpdating(bool needUpdating)
</autodoc>
11770 <param name=
"needUpdating" type=
"bool" default=
""/>
11773 <method name=
"GetNeedUpdating" type=
"bool" overloaded=
"no">
11774 <autodoc>GetNeedUpdating() -
> bool
</autodoc>
11777 <class name=
"SplitterEvent" oldname=
"wxSplitterEvent" module=
"windows">
11778 <baseclass name=
"NotifyEvent"/>
11779 <constructor name=
"SplitterEvent" overloaded=
"no">
11780 <autodoc>__init__(wxEventType type=wxEVT_NULL, SplitterWindow splitter=(wxSplitterWindow *) NULL) -
> SplitterEvent
</autodoc>
11782 <param name=
"type" type=
"wxEventType" default=
"wxEVT_NULL"/>
11783 <param name=
"splitter" type=
"SplitterWindow" default=
"(wxSplitterWindow *) NULL"/>
11786 <method name=
"SetSashPosition" type=
"" overloaded=
"no">
11787 <autodoc>SetSashPosition(int pos)
</autodoc>
11789 <param name=
"pos" type=
"int" default=
""/>
11792 <method name=
"GetSashPosition" type=
"int" overloaded=
"no">
11793 <autodoc>GetSashPosition() -
> int
</autodoc>
11795 <method name=
"GetWindowBeingRemoved" type=
"Window" overloaded=
"no">
11796 <autodoc>GetWindowBeingRemoved() -
> Window
</autodoc>
11798 <method name=
"GetX" type=
"int" overloaded=
"no">
11799 <autodoc>GetX() -
> int
</autodoc>
11801 <method name=
"GetY" type=
"int" overloaded=
"no">
11802 <autodoc>GetY() -
> int
</autodoc>
11806 EVT_SPLITTER_SASH_POS_CHANGED = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED,
1 )
11807 EVT_SPLITTER_SASH_POS_CHANGING = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING,
1 )
11808 EVT_SPLITTER_DOUBLECLICKED = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_DOUBLECLICKED,
1 )
11809 EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT,
1 )
11812 #---------------------------------------------------------------------------
11814 <class name=
"SashWindow" oldname=
"wxSashWindow" module=
"windows">
11815 <baseclass name=
"Window"/>
11816 <constructor name=
"SashWindow" overloaded=
"no">
11817 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
11818 long style=wxCLIP_CHILDREN|wxSW_3D,
11819 String name=SashNameStr) -
> SashWindow
</autodoc>
11821 <param name=
"parent" type=
"Window" default=
""/>
11822 <param name=
"id" type=
"int" default=
""/>
11823 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
11824 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
11825 <param name=
"style" type=
"long" default=
"wxCLIP_CHILDREN|wxSW_3D"/>
11826 <param name=
"name" type=
"String" default=
"wxPySashNameStr"/>
11829 <constructor name=
"PreSashWindow" overloaded=
"no">
11830 <autodoc>PreSashWindow() -
> SashWindow
</autodoc>
11832 <method name=
"Create" type=
"bool" overloaded=
"no">
11833 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
11834 long style=wxCLIP_CHILDREN|wxSW_3D,
11835 String name=SashNameStr) -
> bool
</autodoc>
11837 <param name=
"parent" type=
"Window" default=
""/>
11838 <param name=
"id" type=
"int" default=
""/>
11839 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
11840 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
11841 <param name=
"style" type=
"long" default=
"wxCLIP_CHILDREN|wxSW_3D"/>
11842 <param name=
"name" type=
"String" default=
"wxPySashNameStr"/>
11845 <method name=
"SetSashVisible" type=
"" overloaded=
"no">
11846 <autodoc>SetSashVisible(int edge, bool sash)
</autodoc>
11848 <param name=
"edge" type=
"wxSashEdgePosition" default=
""/>
11849 <param name=
"sash" type=
"bool" default=
""/>
11852 <method name=
"GetSashVisible" type=
"bool" overloaded=
"no">
11853 <autodoc>GetSashVisible(int edge) -
> bool
</autodoc>
11855 <param name=
"edge" type=
"wxSashEdgePosition" default=
""/>
11858 <method name=
"SetSashBorder" type=
"" overloaded=
"no">
11859 <autodoc>SetSashBorder(int edge, bool border)
</autodoc>
11861 <param name=
"edge" type=
"wxSashEdgePosition" default=
""/>
11862 <param name=
"border" type=
"bool" default=
""/>
11865 <method name=
"HasBorder" type=
"bool" overloaded=
"no">
11866 <autodoc>HasBorder(int edge) -
> bool
</autodoc>
11868 <param name=
"edge" type=
"wxSashEdgePosition" default=
""/>
11871 <method name=
"GetEdgeMargin" type=
"int" overloaded=
"no">
11872 <autodoc>GetEdgeMargin(int edge) -
> int
</autodoc>
11874 <param name=
"edge" type=
"wxSashEdgePosition" default=
""/>
11877 <method name=
"SetDefaultBorderSize" type=
"" overloaded=
"no">
11878 <autodoc>SetDefaultBorderSize(int width)
</autodoc>
11880 <param name=
"width" type=
"int" default=
""/>
11883 <method name=
"GetDefaultBorderSize" type=
"int" overloaded=
"no">
11884 <autodoc>GetDefaultBorderSize() -
> int
</autodoc>
11886 <method name=
"SetExtraBorderSize" type=
"" overloaded=
"no">
11887 <autodoc>SetExtraBorderSize(int width)
</autodoc>
11889 <param name=
"width" type=
"int" default=
""/>
11892 <method name=
"GetExtraBorderSize" type=
"int" overloaded=
"no">
11893 <autodoc>GetExtraBorderSize() -
> int
</autodoc>
11895 <method name=
"SetMinimumSizeX" type=
"" overloaded=
"no">
11896 <autodoc>SetMinimumSizeX(int min)
</autodoc>
11898 <param name=
"min" type=
"int" default=
""/>
11901 <method name=
"SetMinimumSizeY" type=
"" overloaded=
"no">
11902 <autodoc>SetMinimumSizeY(int min)
</autodoc>
11904 <param name=
"min" type=
"int" default=
""/>
11907 <method name=
"GetMinimumSizeX" type=
"int" overloaded=
"no">
11908 <autodoc>GetMinimumSizeX() -
> int
</autodoc>
11910 <method name=
"GetMinimumSizeY" type=
"int" overloaded=
"no">
11911 <autodoc>GetMinimumSizeY() -
> int
</autodoc>
11913 <method name=
"SetMaximumSizeX" type=
"" overloaded=
"no">
11914 <autodoc>SetMaximumSizeX(int max)
</autodoc>
11916 <param name=
"max" type=
"int" default=
""/>
11919 <method name=
"SetMaximumSizeY" type=
"" overloaded=
"no">
11920 <autodoc>SetMaximumSizeY(int max)
</autodoc>
11922 <param name=
"max" type=
"int" default=
""/>
11925 <method name=
"GetMaximumSizeX" type=
"int" overloaded=
"no">
11926 <autodoc>GetMaximumSizeX() -
> int
</autodoc>
11928 <method name=
"GetMaximumSizeY" type=
"int" overloaded=
"no">
11929 <autodoc>GetMaximumSizeY() -
> int
</autodoc>
11931 <method name=
"SashHitTest" type=
"wxSashEdgePosition" overloaded=
"no">
11932 <autodoc>SashHitTest(int x, int y, int tolerance=
2) -
> int
</autodoc>
11934 <param name=
"x" type=
"int" default=
""/>
11935 <param name=
"y" type=
"int" default=
""/>
11936 <param name=
"tolerance" type=
"int" default=
"2"/>
11939 <method name=
"SizeWindows" type=
"" overloaded=
"no">
11940 <autodoc>SizeWindows()
</autodoc>
11943 <class name=
"SashEvent" oldname=
"wxSashEvent" module=
"windows">
11944 <baseclass name=
"CommandEvent"/>
11945 <constructor name=
"SashEvent" overloaded=
"no">
11946 <autodoc>__init__(int id=
0, int edge=SASH_NONE) -
> SashEvent
</autodoc>
11948 <param name=
"id" type=
"int" default=
"0"/>
11949 <param name=
"edge" type=
"wxSashEdgePosition" default=
"wxSASH_NONE"/>
11952 <method name=
"SetEdge" type=
"" overloaded=
"no">
11953 <autodoc>SetEdge(int edge)
</autodoc>
11955 <param name=
"edge" type=
"wxSashEdgePosition" default=
""/>
11958 <method name=
"GetEdge" type=
"wxSashEdgePosition" overloaded=
"no">
11959 <autodoc>GetEdge() -
> int
</autodoc>
11961 <method name=
"SetDragRect" type=
"" overloaded=
"no">
11962 <autodoc>SetDragRect(Rect rect)
</autodoc>
11964 <param name=
"rect" type=
"Rect" default=
""/>
11967 <method name=
"GetDragRect" type=
"Rect" overloaded=
"no">
11968 <autodoc>GetDragRect() -
> Rect
</autodoc>
11970 <method name=
"SetDragStatus" type=
"" overloaded=
"no">
11971 <autodoc>SetDragStatus(int status)
</autodoc>
11973 <param name=
"status" type=
"wxSashDragStatus" default=
""/>
11976 <method name=
"GetDragStatus" type=
"wxSashDragStatus" overloaded=
"no">
11977 <autodoc>GetDragStatus() -
> int
</autodoc>
11981 EVT_SASH_DRAGGED = wx.PyEventBinder( wxEVT_SASH_DRAGGED,
1 )
11982 EVT_SASH_DRAGGED_RANGE = wx.PyEventBinder( wxEVT_SASH_DRAGGED,
2 )
11985 #---------------------------------------------------------------------------
11987 <class name=
"QueryLayoutInfoEvent" oldname=
"wxQueryLayoutInfoEvent" module=
"windows">
11988 <baseclass name=
"Event"/>
11989 <constructor name=
"QueryLayoutInfoEvent" overloaded=
"no">
11990 <autodoc>__init__(int id=
0) -
> QueryLayoutInfoEvent
</autodoc>
11992 <param name=
"id" type=
"int" default=
"0"/>
11995 <method name=
"SetRequestedLength" type=
"" overloaded=
"no">
11996 <autodoc>SetRequestedLength(int length)
</autodoc>
11998 <param name=
"length" type=
"int" default=
""/>
12001 <method name=
"GetRequestedLength" type=
"int" overloaded=
"no">
12002 <autodoc>GetRequestedLength() -
> int
</autodoc>
12004 <method name=
"SetFlags" type=
"" overloaded=
"no">
12005 <autodoc>SetFlags(int flags)
</autodoc>
12007 <param name=
"flags" type=
"int" default=
""/>
12010 <method name=
"GetFlags" type=
"int" overloaded=
"no">
12011 <autodoc>GetFlags() -
> int
</autodoc>
12013 <method name=
"SetSize" type=
"" overloaded=
"no">
12014 <autodoc>SetSize(Size size)
</autodoc>
12016 <param name=
"size" type=
"Size" default=
""/>
12019 <method name=
"GetSize" type=
"Size" overloaded=
"no">
12020 <autodoc>GetSize() -
> Size
</autodoc>
12022 <method name=
"SetOrientation" type=
"" overloaded=
"no">
12023 <autodoc>SetOrientation(int orient)
</autodoc>
12025 <param name=
"orient" type=
"wxLayoutOrientation" default=
""/>
12028 <method name=
"GetOrientation" type=
"wxLayoutOrientation" overloaded=
"no">
12029 <autodoc>GetOrientation() -
> int
</autodoc>
12031 <method name=
"SetAlignment" type=
"" overloaded=
"no">
12032 <autodoc>SetAlignment(int align)
</autodoc>
12034 <param name=
"align" type=
"wxLayoutAlignment" default=
""/>
12037 <method name=
"GetAlignment" type=
"wxLayoutAlignment" overloaded=
"no">
12038 <autodoc>GetAlignment() -
> int
</autodoc>
12041 <class name=
"CalculateLayoutEvent" oldname=
"wxCalculateLayoutEvent" module=
"windows">
12042 <baseclass name=
"Event"/>
12043 <constructor name=
"CalculateLayoutEvent" overloaded=
"no">
12044 <autodoc>__init__(int id=
0) -
> CalculateLayoutEvent
</autodoc>
12046 <param name=
"id" type=
"int" default=
"0"/>
12049 <method name=
"SetFlags" type=
"" overloaded=
"no">
12050 <autodoc>SetFlags(int flags)
</autodoc>
12052 <param name=
"flags" type=
"int" default=
""/>
12055 <method name=
"GetFlags" type=
"int" overloaded=
"no">
12056 <autodoc>GetFlags() -
> int
</autodoc>
12058 <method name=
"SetRect" type=
"" overloaded=
"no">
12059 <autodoc>SetRect(Rect rect)
</autodoc>
12061 <param name=
"rect" type=
"Rect" default=
""/>
12064 <method name=
"GetRect" type=
"Rect" overloaded=
"no">
12065 <autodoc>GetRect() -
> Rect
</autodoc>
12069 EVT_QUERY_LAYOUT_INFO = wx.PyEventBinder( wxEVT_QUERY_LAYOUT_INFO )
12070 EVT_CALCULATE_LAYOUT = wx.PyEventBinder( wxEVT_CALCULATE_LAYOUT )
12072 <class name=
"SashLayoutWindow" oldname=
"wxSashLayoutWindow" module=
"windows">
12073 <baseclass name=
"SashWindow"/>
12074 <constructor name=
"SashLayoutWindow" overloaded=
"no">
12075 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
12076 long style=wxCLIP_CHILDREN|wxSW_3D,
12077 String name=SashLayoutNameStr) -
> SashLayoutWindow
</autodoc>
12079 <param name=
"parent" type=
"Window" default=
""/>
12080 <param name=
"id" type=
"int" default=
""/>
12081 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
12082 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
12083 <param name=
"style" type=
"long" default=
"wxCLIP_CHILDREN|wxSW_3D"/>
12084 <param name=
"name" type=
"String" default=
"wxPySashLayoutNameStr"/>
12087 <constructor name=
"PreSashLayoutWindow" overloaded=
"no">
12088 <autodoc>PreSashLayoutWindow() -
> SashLayoutWindow
</autodoc>
12090 <method name=
"Create" type=
"bool" overloaded=
"no">
12091 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
12092 long style=wxCLIP_CHILDREN|wxSW_3D,
12093 String name=SashLayoutNameStr) -
> bool
</autodoc>
12095 <param name=
"parent" type=
"Window" default=
""/>
12096 <param name=
"id" type=
"int" default=
""/>
12097 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
12098 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
12099 <param name=
"style" type=
"long" default=
"wxCLIP_CHILDREN|wxSW_3D"/>
12100 <param name=
"name" type=
"String" default=
"wxPySashLayoutNameStr"/>
12103 <method name=
"GetAlignment" type=
"wxLayoutAlignment" overloaded=
"no">
12104 <autodoc>GetAlignment() -
> int
</autodoc>
12106 <method name=
"GetOrientation" type=
"wxLayoutOrientation" overloaded=
"no">
12107 <autodoc>GetOrientation() -
> int
</autodoc>
12109 <method name=
"SetAlignment" type=
"" overloaded=
"no">
12110 <autodoc>SetAlignment(int alignment)
</autodoc>
12112 <param name=
"alignment" type=
"wxLayoutAlignment" default=
""/>
12115 <method name=
"SetDefaultSize" type=
"" overloaded=
"no">
12116 <autodoc>SetDefaultSize(Size size)
</autodoc>
12118 <param name=
"size" type=
"Size" default=
""/>
12121 <method name=
"SetOrientation" type=
"" overloaded=
"no">
12122 <autodoc>SetOrientation(int orientation)
</autodoc>
12124 <param name=
"orientation" type=
"wxLayoutOrientation" default=
""/>
12128 <class name=
"LayoutAlgorithm" oldname=
"wxLayoutAlgorithm" module=
"windows">
12129 <baseclass name=
"Object"/>
12130 <constructor name=
"LayoutAlgorithm" overloaded=
"no">
12131 <autodoc>__init__() -
> LayoutAlgorithm
</autodoc>
12133 <destructor name=
"~wxLayoutAlgorithm" overloaded=
"no">
12134 <autodoc>__del__()
</autodoc>
12136 <method name=
"LayoutMDIFrame" type=
"bool" overloaded=
"no">
12137 <autodoc>LayoutMDIFrame(MDIParentFrame frame, Rect rect=None) -
> bool
</autodoc>
12139 <param name=
"frame" type=
"wxMDIParentFrame" default=
""/>
12140 <param name=
"rect" type=
"Rect" default=
"NULL"/>
12143 <method name=
"LayoutFrame" type=
"bool" overloaded=
"no">
12144 <autodoc>LayoutFrame(Frame frame, Window mainWindow=None) -
> bool
</autodoc>
12146 <param name=
"frame" type=
"Frame" default=
""/>
12147 <param name=
"mainWindow" type=
"Window" default=
"NULL"/>
12150 <method name=
"LayoutWindow" type=
"bool" overloaded=
"no">
12151 <autodoc>LayoutWindow(Window parent, Window mainWindow=None) -
> bool
</autodoc>
12153 <param name=
"parent" type=
"Window" default=
""/>
12154 <param name=
"mainWindow" type=
"Window" default=
"NULL"/>
12159 #---------------------------------------------------------------------------
12161 <class name=
"PopupWindow" oldname=
"wxPopupWindow" module=
"windows">
12162 <baseclass name=
"Window"/>
12163 <constructor name=
"PopupWindow" overloaded=
"no">
12164 <autodoc>__init__(Window parent, int flags=BORDER_NONE) -
> PopupWindow
</autodoc>
12166 <param name=
"parent" type=
"Window" default=
""/>
12167 <param name=
"flags" type=
"int" default=
"wxBORDER_NONE"/>
12170 <constructor name=
"PrePopupWindow" overloaded=
"no">
12171 <autodoc>PrePopupWindow() -
> PopupWindow
</autodoc>
12173 <method name=
"Create" type=
"bool" overloaded=
"no">
12174 <autodoc>Create(Window parent, int flags=BORDER_NONE) -
> bool
</autodoc>
12176 <param name=
"parent" type=
"Window" default=
""/>
12177 <param name=
"flags" type=
"int" default=
"wxBORDER_NONE"/>
12180 <method name=
"Position" type=
"" overloaded=
"no">
12181 <autodoc>Position(Point ptOrigin, Size size)
</autodoc>
12183 <param name=
"ptOrigin" type=
"Point" default=
""/>
12184 <param name=
"size" type=
"Size" default=
""/>
12189 #---------------------------------------------------------------------------
12191 <class name=
"PopupTransientWindow" oldname=
"wxPyPopupTransientWindow" module=
"windows">
12192 <baseclass name=
"PopupWindow"/>
12193 <constructor name=
"wxPyPopupTransientWindow" overloaded=
"no">
12194 <autodoc>__init__(Window parent, int style=BORDER_NONE) -
> PopupTransientWindow
</autodoc>
12196 <param name=
"parent" type=
"Window" default=
""/>
12197 <param name=
"style" type=
"int" default=
"wxBORDER_NONE"/>
12200 <constructor name=
"PrePopupTransientWindow" overloaded=
"no">
12201 <autodoc>PrePopupTransientWindow() -
> PopupTransientWindow
</autodoc>
12203 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
12204 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
12206 <param name=
"self" type=
"PyObject" default=
""/>
12207 <param name=
"_class" type=
"PyObject" default=
""/>
12210 <method name=
"Popup" type=
"" overloaded=
"no">
12211 <autodoc>Popup(Window focus=None)
</autodoc>
12213 <param name=
"focus" type=
"Window" default=
"NULL"/>
12216 <method name=
"Dismiss" type=
"" overloaded=
"no">
12217 <autodoc>Dismiss()
</autodoc>
12221 #---------------------------------------------------------------------------
12223 <class name=
"TipWindow" oldname=
"wxTipWindow" module=
"windows">
12224 <baseclass name=
"PopupTransientWindow"/>
12225 <constructor name=
"TipWindow" overloaded=
"no">
12226 <autodoc>__init__(Window parent, String text, int maxLength=
100, Rect rectBound=None) -
> TipWindow
</autodoc>
12228 <param name=
"parent" type=
"Window" default=
""/>
12229 <param name=
"text" type=
"String" default=
""/>
12230 <param name=
"maxLength" type=
"int" default=
"100"/>
12231 <param name=
"rectBound" type=
"Rect" default=
"NULL"/>
12234 <method name=
"SetBoundingRect" type=
"" overloaded=
"no">
12235 <autodoc>SetBoundingRect(Rect rectBound)
</autodoc>
12237 <param name=
"rectBound" type=
"Rect" default=
""/>
12240 <method name=
"Close" type=
"" overloaded=
"no">
12241 <autodoc>Close()
</autodoc>
12245 #---------------------------------------------------------------------------
12247 <class name=
"VScrolledWindow" oldname=
"wxPyVScrolledWindow" module=
"windows">
12248 <baseclass name=
"Panel"/>
12249 <constructor name=
"wxPyVScrolledWindow" overloaded=
"no">
12250 <autodoc>__init__(Window parent, int id=ID_ANY, Point pos=DefaultPosition,
12251 Size size=DefaultSize, long style=
0, String name=PanelNameStr) -
> VScrolledWindow
</autodoc>
12253 <param name=
"parent" type=
"Window" default=
""/>
12254 <param name=
"id" type=
"int" default=
"wxID_ANY"/>
12255 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
12256 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
12257 <param name=
"style" type=
"long" default=
"0"/>
12258 <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/>
12261 <constructor name=
"PreVScrolledWindow" overloaded=
"no">
12262 <autodoc>PreVScrolledWindow() -
> VScrolledWindow
</autodoc>
12264 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
12265 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
12267 <param name=
"self" type=
"PyObject" default=
""/>
12268 <param name=
"_class" type=
"PyObject" default=
""/>
12271 <method name=
"Create" type=
"bool" overloaded=
"no">
12272 <autodoc>Create(Window parent, int id=ID_ANY, Point pos=DefaultPosition,
12273 Size size=DefaultSize, long style=
0, String name=PanelNameStr) -
> bool
</autodoc>
12275 <param name=
"parent" type=
"Window" default=
""/>
12276 <param name=
"id" type=
"int" default=
"wxID_ANY"/>
12277 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
12278 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
12279 <param name=
"style" type=
"long" default=
"0"/>
12280 <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/>
12283 <method name=
"SetLineCount" type=
"" overloaded=
"no">
12284 <autodoc>SetLineCount(size_t count)
</autodoc>
12286 <param name=
"count" type=
"size_t" default=
""/>
12289 <method name=
"ScrollToLine" type=
"bool" overloaded=
"no">
12290 <autodoc>ScrollToLine(size_t line) -
> bool
</autodoc>
12292 <param name=
"line" type=
"size_t" default=
""/>
12295 <method name=
"ScrollLines" type=
"bool" overloaded=
"no">
12296 <autodoc>ScrollLines(int lines) -
> bool
</autodoc>
12297 <docstring>If the platform and window class supports it, scrolls the window by
12298 the given number of lines down, if lines is positive, or up if lines
12299 is negative. Returns True if the window was scrolled, False if it was
12300 already on top/bottom and nothing was done.
</docstring>
12302 <param name=
"lines" type=
"int" default=
""/>
12305 <method name=
"ScrollPages" type=
"bool" overloaded=
"no">
12306 <autodoc>ScrollPages(int pages) -
> bool
</autodoc>
12307 <docstring>If the platform and window class supports it, scrolls the window by
12308 the given number of pages down, if pages is positive, or up if pages
12309 is negative. Returns True if the window was scrolled, False if it was
12310 already on top/bottom and nothing was done.
</docstring>
12312 <param name=
"pages" type=
"int" default=
""/>
12315 <method name=
"RefreshLine" type=
"" overloaded=
"no">
12316 <autodoc>RefreshLine(size_t line)
</autodoc>
12318 <param name=
"line" type=
"size_t" default=
""/>
12321 <method name=
"RefreshLines" type=
"" overloaded=
"no">
12322 <autodoc>RefreshLines(size_t from, size_t to)
</autodoc>
12324 <param name=
"from" type=
"size_t" default=
""/>
12325 <param name=
"to" type=
"size_t" default=
""/>
12328 <method name=
"HitTestXT" type=
"int" overloaded=
"no">
12329 <autodoc>HitTestXT(int x, int y) -
> int
</autodoc>
12330 <docstring>Test where the given (in client coords) point lies
</docstring>
12332 <param name=
"x" type=
"int" default=
""/>
12333 <param name=
"y" type=
"int" default=
""/>
12336 <method name=
"HitTest" type=
"int" overloaded=
"no">
12337 <autodoc>HitTest(Point pt) -
> int
</autodoc>
12338 <docstring>Test where the given (in client coords) point lies
</docstring>
12340 <param name=
"pt" type=
"Point" default=
""/>
12343 <method name=
"RefreshAll" type=
"" overloaded=
"no">
12344 <autodoc>RefreshAll()
</autodoc>
12346 <method name=
"GetLineCount" type=
"size_t" overloaded=
"no">
12347 <autodoc>GetLineCount() -
> size_t
</autodoc>
12349 <method name=
"GetFirstVisibleLine" type=
"size_t" overloaded=
"no">
12350 <autodoc>GetFirstVisibleLine() -
> size_t
</autodoc>
12352 <method name=
"GetLastVisibleLine" type=
"size_t" overloaded=
"no">
12353 <autodoc>GetLastVisibleLine() -
> size_t
</autodoc>
12355 <method name=
"IsVisible" type=
"bool" overloaded=
"no">
12356 <autodoc>IsVisible(size_t line) -
> bool
</autodoc>
12358 <param name=
"line" type=
"size_t" default=
""/>
12362 <class name=
"VListBox" oldname=
"wxPyVListBox" module=
"windows">
12363 <baseclass name=
"VScrolledWindow"/>
12364 <constructor name=
"wxPyVListBox" overloaded=
"no">
12365 <autodoc>__init__(Window parent, int id=ID_ANY, Point pos=DefaultPosition,
12366 Size size=DefaultSize, long style=
0, String name=VListBoxNameStr) -
> VListBox
</autodoc>
12368 <param name=
"parent" type=
"Window" default=
""/>
12369 <param name=
"id" type=
"int" default=
"wxID_ANY"/>
12370 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
12371 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
12372 <param name=
"style" type=
"long" default=
"0"/>
12373 <param name=
"name" type=
"String" default=
"wxPyVListBoxNameStr"/>
12376 <constructor name=
"PreVListBox" overloaded=
"no">
12377 <autodoc>PreVListBox() -
> VListBox
</autodoc>
12379 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
12380 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
12382 <param name=
"self" type=
"PyObject" default=
""/>
12383 <param name=
"_class" type=
"PyObject" default=
""/>
12386 <method name=
"Create" type=
"bool" overloaded=
"no">
12387 <autodoc>Create(Window parent, int id=ID_ANY, Point pos=DefaultPosition,
12388 Size size=DefaultSize, long style=
0, String name=VListBoxNameStr) -
> bool
</autodoc>
12390 <param name=
"parent" type=
"Window" default=
""/>
12391 <param name=
"id" type=
"int" default=
"wxID_ANY"/>
12392 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
12393 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
12394 <param name=
"style" type=
"long" default=
"0"/>
12395 <param name=
"name" type=
"String" default=
"wxPyVListBoxNameStr"/>
12398 <method name=
"GetItemCount" type=
"size_t" overloaded=
"no">
12399 <autodoc>GetItemCount() -
> size_t
</autodoc>
12401 <method name=
"HasMultipleSelection" type=
"bool" overloaded=
"no">
12402 <autodoc>HasMultipleSelection() -
> bool
</autodoc>
12404 <method name=
"GetSelection" type=
"int" overloaded=
"no">
12405 <autodoc>GetSelection() -
> int
</autodoc>
12407 <method name=
"IsCurrent" type=
"bool" overloaded=
"no">
12408 <autodoc>IsCurrent(size_t item) -
> bool
</autodoc>
12410 <param name=
"item" type=
"size_t" default=
""/>
12413 <method name=
"IsSelected" type=
"bool" overloaded=
"no">
12414 <autodoc>IsSelected(size_t item) -
> bool
</autodoc>
12416 <param name=
"item" type=
"size_t" default=
""/>
12419 <method name=
"GetSelectedCount" type=
"size_t" overloaded=
"no">
12420 <autodoc>GetSelectedCount() -
> size_t
</autodoc>
12422 <method name=
"GetFirstSelected" type=
"int" overloaded=
"no">
12423 <autodoc>GetFirstSelected(unsigned long cookie) -
> int
</autodoc>
12425 <param name=
"cookie" type=
"unsigned long" default=
""/>
12428 <method name=
"GetNextSelected" type=
"int" overloaded=
"no">
12429 <autodoc>GetNextSelected(unsigned long cookie) -
> int
</autodoc>
12431 <param name=
"cookie" type=
"unsigned long" default=
""/>
12434 <method name=
"GetMargins" type=
"Point" overloaded=
"no">
12435 <autodoc>GetMargins() -
> Point
</autodoc>
12437 <method name=
"GetSelectionBackground" type=
"Colour" overloaded=
"no">
12438 <autodoc>GetSelectionBackground() -
> Colour
</autodoc>
12440 <method name=
"SetItemCount" type=
"" overloaded=
"no">
12441 <autodoc>SetItemCount(size_t count)
</autodoc>
12443 <param name=
"count" type=
"size_t" default=
""/>
12446 <method name=
"Clear" type=
"" overloaded=
"no">
12447 <autodoc>Clear()
</autodoc>
12449 <method name=
"SetSelection" type=
"" overloaded=
"no">
12450 <autodoc>SetSelection(int selection)
</autodoc>
12452 <param name=
"selection" type=
"int" default=
""/>
12455 <method name=
"Select" type=
"bool" overloaded=
"no">
12456 <autodoc>Select(size_t item, bool select=True) -
> bool
</autodoc>
12458 <param name=
"item" type=
"size_t" default=
""/>
12459 <param name=
"select" type=
"bool" default=
"True"/>
12462 <method name=
"SelectRange" type=
"bool" overloaded=
"no">
12463 <autodoc>SelectRange(size_t from, size_t to) -
> bool
</autodoc>
12465 <param name=
"from" type=
"size_t" default=
""/>
12466 <param name=
"to" type=
"size_t" default=
""/>
12469 <method name=
"Toggle" type=
"" overloaded=
"no">
12470 <autodoc>Toggle(size_t item)
</autodoc>
12472 <param name=
"item" type=
"size_t" default=
""/>
12475 <method name=
"SelectAll" type=
"bool" overloaded=
"no">
12476 <autodoc>SelectAll() -
> bool
</autodoc>
12478 <method name=
"DeselectAll" type=
"bool" overloaded=
"no">
12479 <autodoc>DeselectAll() -
> bool
</autodoc>
12481 <method name=
"SetMargins" type=
"" overloaded=
"no">
12482 <autodoc>SetMargins(Point pt)
</autodoc>
12484 <param name=
"pt" type=
"Point" default=
""/>
12487 <method name=
"SetMarginsXY" type=
"" overloaded=
"no">
12488 <autodoc>SetMarginsXY(int x, int y)
</autodoc>
12490 <param name=
"x" type=
"int" default=
""/>
12491 <param name=
"y" type=
"int" default=
""/>
12494 <method name=
"SetSelectionBackground" type=
"" overloaded=
"no">
12495 <autodoc>SetSelectionBackground(Colour col)
</autodoc>
12497 <param name=
"col" type=
"Colour" default=
""/>
12501 <class name=
"HtmlListBox" oldname=
"wxPyHtmlListBox" module=
"windows">
12502 <baseclass name=
"VListBox"/>
12503 <constructor name=
"wxPyHtmlListBox" overloaded=
"no">
12504 <autodoc>__init__(Window parent, int id=ID_ANY, Point pos=DefaultPosition,
12505 Size size=DefaultSize, long style=
0, String name=VListBoxNameStr) -
> HtmlListBox
</autodoc>
12507 <param name=
"parent" type=
"Window" default=
""/>
12508 <param name=
"id" type=
"int" default=
"wxID_ANY"/>
12509 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
12510 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
12511 <param name=
"style" type=
"long" default=
"0"/>
12512 <param name=
"name" type=
"String" default=
"wxPyVListBoxNameStr"/>
12515 <constructor name=
"PreHtmlListBox" overloaded=
"no">
12516 <autodoc>PreHtmlListBox() -
> HtmlListBox
</autodoc>
12518 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
12519 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
12521 <param name=
"self" type=
"PyObject" default=
""/>
12522 <param name=
"_class" type=
"PyObject" default=
""/>
12525 <method name=
"Create" type=
"bool" overloaded=
"no">
12526 <autodoc>Create(Window parent, int id=ID_ANY, Point pos=DefaultPosition,
12527 Size size=DefaultSize, long style=
0, String name=VListBoxNameStr) -
> bool
</autodoc>
12529 <param name=
"parent" type=
"Window" default=
""/>
12530 <param name=
"id" type=
"int" default=
"wxID_ANY"/>
12531 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
12532 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
12533 <param name=
"style" type=
"long" default=
"0"/>
12534 <param name=
"name" type=
"String" default=
"wxPyVListBoxNameStr"/>
12537 <method name=
"RefreshAll" type=
"" overloaded=
"no">
12538 <autodoc>RefreshAll()
</autodoc>
12540 <method name=
"SetItemCount" type=
"" overloaded=
"no">
12541 <autodoc>SetItemCount(size_t count)
</autodoc>
12543 <param name=
"count" type=
"size_t" default=
""/>
12548 #---------------------------------------------------------------------------
12550 <class name=
"TaskBarIcon" oldname=
"wxTaskBarIcon" module=
"windows">
12551 <baseclass name=
"EvtHandler"/>
12552 <constructor name=
"TaskBarIcon" overloaded=
"no">
12553 <autodoc>__init__() -
> TaskBarIcon
</autodoc>
12555 <destructor name=
"~wxTaskBarIcon" overloaded=
"no">
12556 <autodoc>__del__()
</autodoc>
12558 <method name=
"IsOk" type=
"bool" overloaded=
"no">
12559 <autodoc>IsOk() -
> bool
</autodoc>
12561 <method name=
"IsIconInstalled" type=
"bool" overloaded=
"no">
12562 <autodoc>IsIconInstalled() -
> bool
</autodoc>
12564 <method name=
"SetIcon" type=
"bool" overloaded=
"no">
12565 <autodoc>SetIcon(Icon icon, String tooltip=EmptyString) -
> bool
</autodoc>
12567 <param name=
"icon" type=
"Icon" default=
""/>
12568 <param name=
"tooltip" type=
"String" default=
"wxPyEmptyString"/>
12571 <method name=
"RemoveIcon" type=
"bool" overloaded=
"no">
12572 <autodoc>RemoveIcon() -
> bool
</autodoc>
12574 <method name=
"PopupMenu" type=
"bool" overloaded=
"no">
12575 <autodoc>PopupMenu(Menu menu) -
> bool
</autodoc>
12577 <param name=
"menu" type=
"Menu" default=
""/>
12581 <class name=
"TaskBarIconEvent" oldname=
"wxTaskBarIconEvent" module=
"windows">
12582 <baseclass name=
"Event"/>
12583 <constructor name=
"TaskBarIconEvent" overloaded=
"no">
12584 <autodoc>__init__(wxEventType evtType, TaskBarIcon tbIcon) -
> TaskBarIconEvent
</autodoc>
12586 <param name=
"evtType" type=
"wxEventType" default=
""/>
12587 <param name=
"tbIcon" type=
"TaskBarIcon" default=
""/>
12592 EVT_TASKBAR_MOVE = wx.PyEventBinder ( wxEVT_TASKBAR_MOVE )
12593 EVT_TASKBAR_LEFT_DOWN = wx.PyEventBinder ( wxEVT_TASKBAR_LEFT_DOWN )
12594 EVT_TASKBAR_LEFT_UP = wx.PyEventBinder ( wxEVT_TASKBAR_LEFT_UP )
12595 EVT_TASKBAR_RIGHT_DOWN = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DOWN )
12596 EVT_TASKBAR_RIGHT_UP = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_UP )
12597 EVT_TASKBAR_LEFT_DCLICK = wx.PyEventBinder ( wxEVT_TASKBAR_LEFT_DCLICK )
12598 EVT_TASKBAR_RIGHT_DCLICK = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DCLICK )
12601 #---------------------------------------------------------------------------
12603 <class name=
"ColourData" oldname=
"wxColourData" module=
"windows">
12604 <docstring>This class holds a variety of information related to colour dialogs.
</docstring>
12605 <baseclass name=
"Object"/>
12606 <constructor name=
"ColourData" overloaded=
"no">
12607 <autodoc>__init__() -
> ColourData
</autodoc>
12608 <docstring>Constructor, sets default values.
</docstring>
12610 <destructor name=
"~wxColourData" overloaded=
"no">
12611 <autodoc>__del__()
</autodoc>
12613 <method name=
"GetChooseFull" type=
"bool" overloaded=
"no">
12614 <autodoc>GetChooseFull() -
> bool
</autodoc>
12615 <docstring>Under Windows, determines whether the Windows colour dialog will display
12616 the full dialog with custom colour selection controls. Has no meaning
12617 under other platforms. The default value is true.
</docstring>
12619 <method name=
"GetColour" type=
"Colour" overloaded=
"no">
12620 <autodoc>GetColour() -
> Colour
</autodoc>
12621 <docstring>Gets the colour (pre)selected by the dialog.
</docstring>
12623 <method name=
"GetCustomColour" type=
"Colour" overloaded=
"no">
12624 <autodoc>GetCustomColour(int i) -
> Colour
</autodoc>
12625 <docstring>Gets the i'th custom colour associated with the colour dialog. i should
12626 be an integer between
0 and
15. The default custom colours are all white.
</docstring>
12628 <param name=
"i" type=
"int" default=
""/>
12631 <method name=
"SetChooseFull" type=
"" overloaded=
"no">
12632 <autodoc>SetChooseFull(int flag)
</autodoc>
12633 <docstring>Under Windows, tells the Windows colour dialog to display the full dialog
12634 with custom colour selection controls. Under other platforms, has no effect.
12635 The default value is true.
</docstring>
12637 <param name=
"flag" type=
"int" default=
""/>
12640 <method name=
"SetColour" type=
"" overloaded=
"no">
12641 <autodoc>SetColour(Colour colour)
</autodoc>
12642 <docstring>Sets the default colour for the colour dialog. The default colour is black.
</docstring>
12644 <param name=
"colour" type=
"Colour" default=
""/>
12647 <method name=
"SetCustomColour" type=
"" overloaded=
"no">
12648 <autodoc>SetCustomColour(int i, Colour colour)
</autodoc>
12649 <docstring>Sets the i'th custom colour for the colour dialog. i should be an integer
12650 between
0 and
15. The default custom colours are all white.
</docstring>
12652 <param name=
"i" type=
"int" default=
""/>
12653 <param name=
"colour" type=
"Colour" default=
""/>
12657 <class name=
"ColourDialog" oldname=
"wxColourDialog" module=
"windows">
12658 <docstring>This class represents the colour chooser dialog.
</docstring>
12659 <baseclass name=
"Dialog"/>
12660 <constructor name=
"ColourDialog" overloaded=
"no">
12661 <autodoc>__init__(Window parent, ColourData data=None) -
> ColourDialog
</autodoc>
12662 <docstring>Constructor. Pass a parent window, and optionally a ColourData, which
12663 will be copied to the colour dialog's internal ColourData instance.
</docstring>
12665 <param name=
"parent" type=
"Window" default=
""/>
12666 <param name=
"data" type=
"ColourData" default=
"NULL"/>
12669 <method name=
"GetColourData" type=
"ColourData" overloaded=
"no">
12670 <autodoc>GetColourData() -
> ColourData
</autodoc>
12671 <docstring>Returns a reference to the ColourData used by the dialog.
</docstring>
12674 <class name=
"DirDialog" oldname=
"wxDirDialog" module=
"windows">
12675 <docstring>This class represents the directory chooser dialog.
</docstring>
12678 wxDD_NEW_DIR_BUTTON Add "Create new directory" button and allow
12679 directory names to be editable. On Windows the new
12680 directory button is only available with recent
12681 versions of the common dialogs.
</refdoc>
12682 <baseclass name=
"Dialog"/>
12683 <constructor name=
"DirDialog" overloaded=
"no">
12684 <autodoc>__init__(Window parent, String message=DirSelectorPromptStr,
12685 String defaultPath=EmptyString, long style=
0,
12686 Point pos=DefaultPosition, Size size=DefaultSize,
12687 String name=DirDialogNameStr) -
> DirDialog
</autodoc>
12688 <docstring>Constructor. Use ShowModal method to show the dialog.
</docstring>
12691 wxDD_NEW_DIR_BUTTON Add "Create new directory" button and allow
12692 directory names to be editable. On Windows the new
12693 directory button is only available with recent
12694 versions of the common dialogs.
</refdoc>
12696 <param name=
"parent" type=
"Window" default=
""/>
12697 <param name=
"message" type=
"String" default=
"wxPyDirSelectorPromptStr"/>
12698 <param name=
"defaultPath" type=
"String" default=
"wxPyEmptyString"/>
12699 <param name=
"style" type=
"long" default=
"0"/>
12700 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
12701 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
12702 <param name=
"name" type=
"String" default=
"wxPyDirDialogNameStr"/>
12705 <method name=
"GetPath" type=
"String" overloaded=
"no">
12706 <autodoc>GetPath() -
> String
</autodoc>
12707 <docstring>Returns the default or user-selected path.
</docstring>
12709 <method name=
"GetMessage" type=
"String" overloaded=
"no">
12710 <autodoc>GetMessage() -
> String
</autodoc>
12711 <docstring>Returns the message that will be displayed on the dialog.
</docstring>
12713 <method name=
"GetStyle" type=
"long" overloaded=
"no">
12714 <autodoc>GetStyle() -
> long
</autodoc>
12715 <docstring>Returns the dialog style.
</docstring>
12717 <method name=
"SetMessage" type=
"" overloaded=
"no">
12718 <autodoc>SetMessage(String message)
</autodoc>
12719 <docstring>Sets the message that will be displayed on the dialog.
</docstring>
12721 <param name=
"message" type=
"String" default=
""/>
12724 <method name=
"SetPath" type=
"" overloaded=
"no">
12725 <autodoc>SetPath(String path)
</autodoc>
12726 <docstring>Sets the default path.
</docstring>
12728 <param name=
"path" type=
"String" default=
""/>
12732 <class name=
"FileDialog" oldname=
"wxFileDialog" module=
"windows">
12733 <docstring>This class represents the file chooser dialog.
</docstring>
12735 In Windows, this is the common file selector dialog. In X, this is a file
12736 selector box with somewhat less functionality. The path and filename are
12737 distinct elements of a full file pathname. If path is "", the current
12738 directory will be used. If filename is "", no default filename will be
12739 supplied. The wildcard determines what files are displayed in the file
12740 selector, and file extension supplies a type extension for the required
12743 Both the X and Windows versions implement a wildcard filter. Typing a filename
12744 containing wildcards (*, ?) in the filename text item, and clicking on Ok,
12745 will result in only those files matching the pattern being displayed. The
12746 wildcard may be a specification for multiple types of file with a description
12749 "BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif"
12752 wx.OPEN This is an open dialog.
12754 wx.SAVE This is a save dialog.
12756 wx.HIDE_READONLY For open dialog only: hide the checkbox allowing to
12757 open the file in read-only mode.
12759 wx.OVERWRITE_PROMPT For save dialog only: prompt for a confirmation if a
12760 file will be overwritten.
12762 wx.MULTIPLE For open dialog only: allows selecting multiple files.
12764 wx.CHANGE_DIR Change the current working directory to the directory
12765 where the file(s) chosen by the user are.
12767 <baseclass name=
"Dialog"/>
12768 <constructor name=
"FileDialog" overloaded=
"no">
12769 <autodoc>__init__(Window parent, String message=FileSelectorPromptStr,
12770 String defaultDir=EmptyString, String defaultFile=EmptyString,
12771 String wildcard=FileSelectorDefaultWildcardStr,
12772 long style=
0, Point pos=DefaultPosition) -
> FileDialog
</autodoc>
12773 <docstring>Constructor. Use ShowModal method to show the dialog.
</docstring>
12775 In Windows, this is the common file selector dialog. In X, this is a file
12776 selector box with somewhat less functionality. The path and filename are
12777 distinct elements of a full file pathname. If path is "", the current
12778 directory will be used. If filename is "", no default filename will be
12779 supplied. The wildcard determines what files are displayed in the file
12780 selector, and file extension supplies a type extension for the required
12783 Both the X and Windows versions implement a wildcard filter. Typing a filename
12784 containing wildcards (*, ?) in the filename text item, and clicking on Ok,
12785 will result in only those files matching the pattern being displayed. The
12786 wildcard may be a specification for multiple types of file with a description
12789 "BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif"
12792 wx.OPEN This is an open dialog.
12794 wx.SAVE This is a save dialog.
12796 wx.HIDE_READONLY For open dialog only: hide the checkbox allowing to
12797 open the file in read-only mode.
12799 wx.OVERWRITE_PROMPT For save dialog only: prompt for a confirmation if a
12800 file will be overwritten.
12802 wx.MULTIPLE For open dialog only: allows selecting multiple files.
12804 wx.CHANGE_DIR Change the current working directory to the directory
12805 where the file(s) chosen by the user are.
12808 <param name=
"parent" type=
"Window" default=
""/>
12809 <param name=
"message" type=
"String" default=
"wxPyFileSelectorPromptStr"/>
12810 <param name=
"defaultDir" type=
"String" default=
"wxPyEmptyString"/>
12811 <param name=
"defaultFile" type=
"String" default=
"wxPyEmptyString"/>
12812 <param name=
"wildcard" type=
"String" default=
"wxPyFileSelectorDefaultWildcardStr"/>
12813 <param name=
"style" type=
"long" default=
"0"/>
12814 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
12817 <method name=
"SetMessage" type=
"" overloaded=
"no">
12818 <autodoc>SetMessage(String message)
</autodoc>
12819 <docstring>Sets the message that will be displayed on the dialog.
</docstring>
12821 <param name=
"message" type=
"String" default=
""/>
12824 <method name=
"SetPath" type=
"" overloaded=
"no">
12825 <autodoc>SetPath(String path)
</autodoc>
12826 <docstring>Sets the path (the combined directory and filename that will
12827 be returned when the dialog is dismissed).
</docstring>
12829 <param name=
"path" type=
"String" default=
""/>
12832 <method name=
"SetDirectory" type=
"" overloaded=
"no">
12833 <autodoc>SetDirectory(String dir)
</autodoc>
12834 <docstring>Sets the default directory.
</docstring>
12836 <param name=
"dir" type=
"String" default=
""/>
12839 <method name=
"SetFilename" type=
"" overloaded=
"no">
12840 <autodoc>SetFilename(String name)
</autodoc>
12841 <docstring>Sets the default filename.
</docstring>
12843 <param name=
"name" type=
"String" default=
""/>
12846 <method name=
"SetWildcard" type=
"" overloaded=
"no">
12847 <autodoc>SetWildcard(String wildCard)
</autodoc>
12848 <docstring>Sets the wildcard, which can contain multiple file types, for example:
12849 "BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif"
</docstring>
12851 <param name=
"wildCard" type=
"String" default=
""/>
12854 <method name=
"SetStyle" type=
"" overloaded=
"no">
12855 <autodoc>SetStyle(long style)
</autodoc>
12856 <docstring>Sets the dialog style.
</docstring>
12858 <param name=
"style" type=
"long" default=
""/>
12861 <method name=
"SetFilterIndex" type=
"" overloaded=
"no">
12862 <autodoc>SetFilterIndex(int filterIndex)
</autodoc>
12863 <docstring>Sets the default filter index, starting from zero.
</docstring>
12865 <param name=
"filterIndex" type=
"int" default=
""/>
12868 <method name=
"GetMessage" type=
"String" overloaded=
"no">
12869 <autodoc>GetMessage() -
> String
</autodoc>
12870 <docstring>Returns the message that will be displayed on the dialog.
</docstring>
12872 <method name=
"GetPath" type=
"String" overloaded=
"no">
12873 <autodoc>GetPath() -
> String
</autodoc>
12874 <docstring>Returns the full path (directory and filename) of the selected file.
</docstring>
12876 <method name=
"GetDirectory" type=
"String" overloaded=
"no">
12877 <autodoc>GetDirectory() -
> String
</autodoc>
12878 <docstring>Returns the default directory.
</docstring>
12880 <method name=
"GetFilename" type=
"String" overloaded=
"no">
12881 <autodoc>GetFilename() -
> String
</autodoc>
12882 <docstring>Returns the default filename.
</docstring>
12884 <method name=
"GetWildcard" type=
"String" overloaded=
"no">
12885 <autodoc>GetWildcard() -
> String
</autodoc>
12886 <docstring>Returns the file dialog wildcard.
</docstring>
12888 <method name=
"GetStyle" type=
"long" overloaded=
"no">
12889 <autodoc>GetStyle() -
> long
</autodoc>
12890 <docstring>Returns the dialog style.
</docstring>
12892 <method name=
"GetFilterIndex" type=
"int" overloaded=
"no">
12893 <autodoc>GetFilterIndex() -
> int
</autodoc>
12894 <docstring>Returns the index into the list of filters supplied, optionally, in
12895 the wildcard parameter. Before the dialog is shown, this is the index
12896 which will be used when the dialog is first displayed. After the dialog
12897 is shown, this is the index selected by the user.
</docstring>
12899 <method name=
"GetFilenames" type=
"PyObject" overloaded=
"no">
12900 <autodoc>GetFilenames() -
> PyObject
</autodoc>
12901 <docstring>Returns a list of filenames chosen in the dialog. This function should
12902 only be used with the dialogs which have wx.MULTIPLE style, use
12903 GetFilename for the others.
</docstring>
12905 <method name=
"GetPaths" type=
"PyObject" overloaded=
"no">
12906 <autodoc>GetPaths() -
> PyObject
</autodoc>
12907 <docstring>Fills the array paths with the full paths of the files chosen. This
12908 function should only be used with the dialogs which have wx.MULTIPLE style,
12909 use GetPath for the others.
</docstring>
12912 <class name=
"MultiChoiceDialog" oldname=
"wxMultiChoiceDialog" module=
"windows">
12913 <docstring>A simple dialog with a multi selection listbox.
</docstring>
12914 <baseclass name=
"Dialog"/>
12915 <constructor name=
"MultiChoiceDialog" overloaded=
"no">
12916 <autodoc>__init__(Window parent, String message, String caption,
12917 List choices=[], long style=CHOICEDLG_STYLE,
12918 Point pos=DefaultPosition) -
> MultiChoiceDialog
</autodoc>
12919 <docstring>Constructor. Use ShowModal method to show the dialog.
</docstring>
12921 <param name=
"parent" type=
"Window" default=
""/>
12922 <param name=
"message" type=
"String" default=
""/>
12923 <param name=
"caption" type=
"String" default=
""/>
12924 <param name=
"choices" type=
"int" default=
"0"/>
12925 <param name=
"choices_array" type=
"String" default=
""/>
12926 <param name=
"style" type=
"long" default=
"wxCHOICEDLG_STYLE"/>
12927 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
12930 <method name=
"SetSelections" type=
"" overloaded=
"no">
12931 <autodoc>SetSelections(List selections)
</autodoc>
12932 <docstring>Specify the items in the list that shoudl be selected, using a list of integers.
</docstring>
12934 <param name=
"selections" type=
"wxArrayInt" default=
""/>
12937 <method name=
"GetSelections" type=
"PyObject" overloaded=
"no">
12938 <autodoc>GetSelections() -
> [selections]
</autodoc>
12939 <docstring>Returns a list of integers representing the items that are selected.
</docstring>
12942 <class name=
"SingleChoiceDialog" oldname=
"wxSingleChoiceDialog" module=
"windows">
12943 <docstring>A simple dialog with a single selection listbox.
</docstring>
12944 <baseclass name=
"Dialog"/>
12945 <constructor name=
"SingleChoiceDialog" overloaded=
"no">
12946 <autodoc>__init__(Window parent, String message, String caption,
12947 List choices=[], long style=CHOICEDLG_STYLE,
12948 Point pos=DefaultPosition) -
> SingleChoiceDialog
</autodoc>
12949 <docstring>Constructor. Use ShowModal method to show the dialog.
</docstring>
12951 <param name=
"parent" type=
"Window" default=
""/>
12952 <param name=
"message" type=
"String" default=
""/>
12953 <param name=
"caption" type=
"String" default=
""/>
12954 <param name=
"choices" type=
"int" default=
""/>
12955 <param name=
"choices_array" type=
"String" default=
""/>
12956 <param name=
"style" type=
"long" default=
"wxCHOICEDLG_STYLE"/>
12957 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
12960 <method name=
"GetSelection" type=
"int" overloaded=
"no">
12961 <autodoc>GetSelection() -
> int
</autodoc>
12962 <docstring>Get the index of teh currently selected item.
</docstring>
12964 <method name=
"GetStringSelection" type=
"String" overloaded=
"no">
12965 <autodoc>GetStringSelection() -
> String
</autodoc>
12966 <docstring>Returns the string value of the currently selected item
</docstring>
12968 <method name=
"SetSelection" type=
"" overloaded=
"no">
12969 <autodoc>SetSelection(int sel)
</autodoc>
12970 <docstring>Set the current selected item to sel
</docstring>
12972 <param name=
"sel" type=
"int" default=
""/>
12976 <class name=
"TextEntryDialog" oldname=
"wxTextEntryDialog" module=
"windows">
12977 <docstring>A dialog with text control, [ok] and [cancel] buttons
</docstring>
12978 <baseclass name=
"Dialog"/>
12979 <constructor name=
"TextEntryDialog" overloaded=
"no">
12980 <autodoc>__init__(Window parent, String message, String caption=GetTextFromUserPromptStr,
12981 String defaultValue=EmptyString,
12982 long style=wxOK|wxCANCEL|wxCENTRE, Point pos=DefaultPosition) -
> TextEntryDialog
</autodoc>
12983 <docstring>Constructor. Use ShowModal method to show the dialog.
</docstring>
12985 <param name=
"parent" type=
"Window" default=
""/>
12986 <param name=
"message" type=
"String" default=
""/>
12987 <param name=
"caption" type=
"String" default=
"wxPyGetTextFromUserPromptStr"/>
12988 <param name=
"defaultValue" type=
"String" default=
"wxPyEmptyString"/>
12989 <param name=
"style" type=
"long" default=
"wxOK|wxCANCEL|wxCENTRE"/>
12990 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
12993 <method name=
"GetValue" type=
"String" overloaded=
"no">
12994 <autodoc>GetValue() -
> String
</autodoc>
12995 <docstring>Returns the text that the user has entered if the user has pressed OK,
12996 or the original value if the user has pressed Cancel.
</docstring>
12998 <method name=
"SetValue" type=
"" overloaded=
"no">
12999 <autodoc>SetValue(String value)
</autodoc>
13000 <docstring>Sets the default text value.
</docstring>
13002 <param name=
"value" type=
"String" default=
""/>
13006 <class name=
"FontData" oldname=
"wxFontData" module=
"windows">
13007 <docstring>This class holds a variety of information related to font dialogs.
</docstring>
13008 <baseclass name=
"Object"/>
13009 <constructor name=
"FontData" overloaded=
"no">
13010 <autodoc>__init__() -
> FontData
</autodoc>
13011 <docstring>This class holds a variety of information related to font dialogs.
</docstring>
13013 <destructor name=
"~wxFontData" overloaded=
"no">
13014 <autodoc>__del__()
</autodoc>
13016 <method name=
"EnableEffects" type=
"" overloaded=
"no">
13017 <autodoc>EnableEffects(bool enable)
</autodoc>
13018 <docstring>Enables or disables 'effects' under MS Windows only. This refers
13019 to the controls for manipulating colour, strikeout and underline
13020 properties. The default value is true.
</docstring>
13022 <param name=
"enable" type=
"bool" default=
""/>
13025 <method name=
"GetAllowSymbols" type=
"bool" overloaded=
"no">
13026 <autodoc>GetAllowSymbols() -
> bool
</autodoc>
13027 <docstring>Under MS Windows, returns a flag determining whether symbol fonts can be
13028 selected. Has no effect on other platforms. The default value is true.
</docstring>
13030 <method name=
"GetColour" type=
"Colour" overloaded=
"no">
13031 <autodoc>GetColour() -
> Colour
</autodoc>
13032 <docstring>Gets the colour associated with the font dialog. The default value is black.
</docstring>
13034 <method name=
"GetChosenFont" type=
"Font" overloaded=
"no">
13035 <autodoc>GetChosenFont() -
> Font
</autodoc>
13036 <docstring>Gets the font chosen by the user.
</docstring>
13038 <method name=
"GetEnableEffects" type=
"bool" overloaded=
"no">
13039 <autodoc>GetEnableEffects() -
> bool
</autodoc>
13040 <docstring>Determines whether 'effects' are enabled under Windows.
</docstring>
13042 <method name=
"GetInitialFont" type=
"Font" overloaded=
"no">
13043 <autodoc>GetInitialFont() -
> Font
</autodoc>
13044 <docstring>Gets the font that will be initially used by the font dialog. This should have
13045 previously been set by the application.
</docstring>
13047 <method name=
"GetShowHelp" type=
"bool" overloaded=
"no">
13048 <autodoc>GetShowHelp() -
> bool
</autodoc>
13049 <docstring>Returns true if the Help button will be shown (Windows only). The default
13050 value is false.
</docstring>
13052 <method name=
"SetAllowSymbols" type=
"" overloaded=
"no">
13053 <autodoc>SetAllowSymbols(bool allowSymbols)
</autodoc>
13054 <docstring>Under MS Windows, determines whether symbol fonts can be selected. Has no
13055 effect on other platforms. The default value is true.
</docstring>
13057 <param name=
"allowSymbols" type=
"bool" default=
""/>
13060 <method name=
"SetChosenFont" type=
"" overloaded=
"no">
13061 <autodoc>SetChosenFont(Font font)
</autodoc>
13062 <docstring>Sets the font that will be returned to the user (for internal use only).
</docstring>
13064 <param name=
"font" type=
"Font" default=
""/>
13067 <method name=
"SetColour" type=
"" overloaded=
"no">
13068 <autodoc>SetColour(Colour colour)
</autodoc>
13069 <docstring>Sets the colour that will be used for the font foreground colour. The default
13070 colour is black.
</docstring>
13072 <param name=
"colour" type=
"Colour" default=
""/>
13075 <method name=
"SetInitialFont" type=
"" overloaded=
"no">
13076 <autodoc>SetInitialFont(Font font)
</autodoc>
13077 <docstring>Sets the font that will be initially used by the font dialog.
</docstring>
13079 <param name=
"font" type=
"Font" default=
""/>
13082 <method name=
"SetRange" type=
"" overloaded=
"no">
13083 <autodoc>SetRange(int min, int max)
</autodoc>
13084 <docstring>Sets the valid range for the font point size (Windows only). The default is
13085 0,
0 (unrestricted range).
</docstring>
13087 <param name=
"min" type=
"int" default=
""/>
13088 <param name=
"max" type=
"int" default=
""/>
13091 <method name=
"SetShowHelp" type=
"" overloaded=
"no">
13092 <autodoc>SetShowHelp(bool showHelp)
</autodoc>
13093 <docstring>Determines whether the Help button will be displayed in the font dialog
13094 (Windows only). The default value is false.
</docstring>
13096 <param name=
"showHelp" type=
"bool" default=
""/>
13100 <class name=
"FontDialog" oldname=
"wxFontDialog" module=
"windows">
13101 <docstring>This class represents the font chooser dialog.
</docstring>
13102 <baseclass name=
"Dialog"/>
13103 <constructor name=
"FontDialog" overloaded=
"no">
13104 <autodoc>__init__(Window parent, FontData data) -
> FontDialog
</autodoc>
13105 <docstring>Constructor. Pass a parent window and the FontData object to be
13106 used to initialize the dialog controls.
</docstring>
13108 <param name=
"parent" type=
"Window" default=
""/>
13109 <param name=
"data" type=
"FontData" default=
""/>
13112 <method name=
"GetFontData" type=
"FontData" overloaded=
"no">
13113 <autodoc>GetFontData() -
> FontData
</autodoc>
13114 <docstring>Returns a reference to the internal FontData used by the FontDialog.
</docstring>
13117 <class name=
"MessageDialog" oldname=
"wxMessageDialog" module=
"windows">
13118 <docstring>This class provides a dialog that shows a single or multi-line message, with
13119 a choice of OK, Yes, No and Cancel buttons.
</docstring>
13122 wx.OK: Show an OK button.
13124 wx.CANCEL: Show a Cancel button.
13126 wx.YES_NO: Show Yes and No buttons.
13128 wx.YES_DEFAULT: Used with wxYES_NO, makes Yes button the default - which is the default behaviour.
13130 wx.NO_DEFAULT: Used with wxYES_NO, makes No button the default.
13132 wx.ICON_EXCLAMATION: Shows an exclamation mark icon.
13134 wx.ICON_HAND: Shows an error icon.
13136 wx.ICON_ERROR: Shows an error icon - the same as wxICON_HAND.
13138 wx.ICON_QUESTION: Shows a question mark icon.
13140 wx.ICON_INFORMATION: Shows an information (i) icon.
13142 wx.STAY_ON_TOP: The message box stays on top of all other window, even those of the other applications (Windows only).
13144 <baseclass name=
"Dialog"/>
13145 <constructor name=
"MessageDialog" overloaded=
"no">
13146 <autodoc>__init__(Window parent, String message, String caption=MessageBoxCaptionStr,
13147 long style=wxOK|wxCANCEL|wxCENTRE,
13148 Point pos=DefaultPosition) -
> MessageDialog
</autodoc>
13149 <docstring>This class provides a dialog that shows a single or multi-line message, with
13150 a choice of OK, Yes, No and Cancel buttons.
</docstring>
13153 wx.OK: Show an OK button.
13155 wx.CANCEL: Show a Cancel button.
13157 wx.YES_NO: Show Yes and No buttons.
13159 wx.YES_DEFAULT: Used with wxYES_NO, makes Yes button the default - which is the default behaviour.
13161 wx.NO_DEFAULT: Used with wxYES_NO, makes No button the default.
13163 wx.ICON_EXCLAMATION: Shows an exclamation mark icon.
13165 wx.ICON_HAND: Shows an error icon.
13167 wx.ICON_ERROR: Shows an error icon - the same as wxICON_HAND.
13169 wx.ICON_QUESTION: Shows a question mark icon.
13171 wx.ICON_INFORMATION: Shows an information (i) icon.
13173 wx.STAY_ON_TOP: The message box stays on top of all other window, even those of the other applications (Windows only).
13176 <param name=
"parent" type=
"Window" default=
""/>
13177 <param name=
"message" type=
"String" default=
""/>
13178 <param name=
"caption" type=
"String" default=
"wxPyMessageBoxCaptionStr"/>
13179 <param name=
"style" type=
"long" default=
"wxOK|wxCANCEL|wxCENTRE"/>
13180 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
13184 <class name=
"ProgressDialog" oldname=
"wxProgressDialog" module=
"windows">
13185 <docstring>A dialog that shows a short message and a progress bar. Optionally, it can
13186 display an ABORT button.
</docstring>
13190 wx.PD_APP_MODAL: Make the progress dialog modal. If this flag is
13191 not given, it is only "locally" modal - that is
13192 the input to the parent window is disabled,
13193 but not to the other ones.
13195 wx.PD_AUTO_HIDE: Causes the progress dialog to disappear from screen
13196 as soon as the maximum value of the progress
13197 meter has been reached.
13199 wx.PD_CAN_ABORT: This flag tells the dialog that it should have
13200 a "Cancel" button which the user may press. If
13201 this happens, the next call to Update() will
13204 wx.PD_ELAPSED_TIME: This flag tells the dialog that it should show
13205 elapsed time (since creating the dialog).
13207 wx.PD_ESTIMATED_TIME: This flag tells the dialog that it should show
13210 wx.PD_REMAINING_TIME: This flag tells the dialog that it should show
13213 <baseclass name=
"Frame"/>
13214 <constructor name=
"ProgressDialog" overloaded=
"no">
13215 <autodoc>__init__(String title, String message, int maximum=
100, Window parent=None,
13216 int style=wxPD_AUTO_HIDE|wxPD_APP_MODAL) -
> ProgressDialog
</autodoc>
13217 <docstring>Constructor. Creates the dialog, displays it and disables user input for other
13218 windows, or, if wxPD_APP_MODAL flag is not given, for its parent window only.
</docstring>
13222 wx.PD_APP_MODAL: Make the progress dialog modal. If this flag is
13223 not given, it is only "locally" modal - that is
13224 the input to the parent window is disabled,
13225 but not to the other ones.
13227 wx.PD_AUTO_HIDE: Causes the progress dialog to disappear from screen
13228 as soon as the maximum value of the progress
13229 meter has been reached.
13231 wx.PD_CAN_ABORT: This flag tells the dialog that it should have
13232 a "Cancel" button which the user may press. If
13233 this happens, the next call to Update() will
13236 wx.PD_ELAPSED_TIME: This flag tells the dialog that it should show
13237 elapsed time (since creating the dialog).
13239 wx.PD_ESTIMATED_TIME: This flag tells the dialog that it should show
13242 wx.PD_REMAINING_TIME: This flag tells the dialog that it should show
13246 <param name=
"title" type=
"String" default=
""/>
13247 <param name=
"message" type=
"String" default=
""/>
13248 <param name=
"maximum" type=
"int" default=
"100"/>
13249 <param name=
"parent" type=
"Window" default=
"NULL"/>
13250 <param name=
"style" type=
"int" default=
"wxPD_AUTO_HIDE|wxPD_APP_MODAL"/>
13253 <method name=
"Update" type=
"bool" overloaded=
"no">
13254 <autodoc>Update(int value, String newmsg=EmptyString) -
> bool
</autodoc>
13255 <docstring>Updates the dialog, setting the progress bar to the new value and, if given
13256 changes the message above it. Returns true unless the Cancel button has been
13259 If false is returned, the application can either immediately destroy the
13260 dialog or ask the user for the confirmation and if the abort is not confirmed
13261 the dialog may be resumed with Resume function.
</docstring>
13263 <param name=
"value" type=
"int" default=
""/>
13264 <param name=
"newmsg" type=
"String" default=
"wxPyEmptyString"/>
13267 <method name=
"Resume" type=
"" overloaded=
"no">
13268 <autodoc>Resume()
</autodoc>
13269 <docstring>Can be used to continue with the dialog, after the user had chosen to abort.
</docstring>
13273 EVT_FIND = wx.PyEventBinder( wxEVT_COMMAND_FIND,
1 )
13274 EVT_FIND_NEXT = wx.PyEventBinder( wxEVT_COMMAND_FIND_NEXT,
1 )
13275 EVT_FIND_REPLACE = wx.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE,
1 )
13276 EVT_FIND_REPLACE_ALL = wx.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE_ALL,
1 )
13277 EVT_FIND_CLOSE = wx.PyEventBinder( wxEVT_COMMAND_FIND_CLOSE,
1 )
13279 # For backwards compatibility. Should they be removed?
13280 EVT_COMMAND_FIND = EVT_FIND
13281 EVT_COMMAND_FIND_NEXT = EVT_FIND_NEXT
13282 EVT_COMMAND_FIND_REPLACE = EVT_FIND_REPLACE
13283 EVT_COMMAND_FIND_REPLACE_ALL = EVT_FIND_REPLACE_ALL
13284 EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
13286 <class name=
"FindDialogEvent" oldname=
"wxFindDialogEvent" module=
"windows">
13287 <docstring>Events for the FindReplaceDialog
</docstring>
13288 <baseclass name=
"CommandEvent"/>
13289 <constructor name=
"FindDialogEvent" overloaded=
"no">
13290 <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int id=
0) -
> FindDialogEvent
</autodoc>
13291 <docstring>Events for the FindReplaceDialog
</docstring>
13293 <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/>
13294 <param name=
"id" type=
"int" default=
"0"/>
13297 <method name=
"GetFlags" type=
"int" overloaded=
"no">
13298 <autodoc>GetFlags() -
> int
</autodoc>
13299 <docstring>Get the currently selected flags: this is the combination of
13300 wx.FR_DOWN, wx.FR_WHOLEWORD and wx.FR_MATCHCASE flags.
</docstring>
13302 <method name=
"GetFindString" type=
"String" overloaded=
"no">
13303 <autodoc>GetFindString() -
> String
</autodoc>
13304 <docstring>Return the string to find (never empty).
</docstring>
13306 <method name=
"GetReplaceString" type=
"String" overloaded=
"no">
13307 <autodoc>GetReplaceString() -
> String
</autodoc>
13308 <docstring>Return the string to replace the search string with (only
13309 for replace and replace all events).
</docstring>
13311 <method name=
"GetDialog" type=
"wxFindReplaceDialog" overloaded=
"no">
13312 <autodoc>GetDialog() -
> FindReplaceDialog
</autodoc>
13313 <docstring>Return the pointer to the dialog which generated this event.
</docstring>
13315 <method name=
"SetFlags" type=
"" overloaded=
"no">
13316 <autodoc>SetFlags(int flags)
</autodoc>
13318 <param name=
"flags" type=
"int" default=
""/>
13321 <method name=
"SetFindString" type=
"" overloaded=
"no">
13322 <autodoc>SetFindString(String str)
</autodoc>
13324 <param name=
"str" type=
"String" default=
""/>
13327 <method name=
"SetReplaceString" type=
"" overloaded=
"no">
13328 <autodoc>SetReplaceString(String str)
</autodoc>
13330 <param name=
"str" type=
"String" default=
""/>
13334 <class name=
"FindReplaceData" oldname=
"wxFindReplaceData" module=
"windows">
13335 <docstring>FindReplaceData holds the data for FindReplaceDialog. It is used to initialize
13336 the dialog with the default values and will keep the last values from the
13337 dialog when it is closed. It is also updated each time a wxFindDialogEvent is
13338 generated so instead of using the wxFindDialogEvent methods you can also
13339 directly query this object.
13341 Note that all SetXXX() methods may only be called before showing the dialog
13342 and calling them has no effect later.
13345 wxFR_DOWN: downward search/replace selected (otherwise, upwards)
13347 wxFR_WHOLEWORD: whole word search/replace selected
13349 wxFR_MATCHCASE: case sensitive search/replace selected (otherwise,
13352 <baseclass name=
"Object"/>
13353 <constructor name=
"FindReplaceData" overloaded=
"no">
13354 <autodoc>__init__(int flags=
0) -
> FindReplaceData
</autodoc>
13355 <docstring>Constuctor initializes the flags to default value (
0).
</docstring>
13357 <param name=
"flags" type=
"int" default=
"0"/>
13360 <destructor name=
"~wxFindReplaceData" overloaded=
"no">
13361 <autodoc>__del__()
</autodoc>
13363 <method name=
"GetFindString" type=
"String" overloaded=
"no">
13364 <autodoc>GetFindString() -
> String
</autodoc>
13365 <docstring>Get the string to find.
</docstring>
13367 <method name=
"GetReplaceString" type=
"String" overloaded=
"no">
13368 <autodoc>GetReplaceString() -
> String
</autodoc>
13369 <docstring>Get the replacement string.
</docstring>
13371 <method name=
"GetFlags" type=
"int" overloaded=
"no">
13372 <autodoc>GetFlags() -
> int
</autodoc>
13373 <docstring>Get the combination of flag values.
</docstring>
13375 <method name=
"SetFlags" type=
"" overloaded=
"no">
13376 <autodoc>SetFlags(int flags)
</autodoc>
13377 <docstring>Set the flags to use to initialize the controls of the dialog.
</docstring>
13379 <param name=
"flags" type=
"int" default=
""/>
13382 <method name=
"SetFindString" type=
"" overloaded=
"no">
13383 <autodoc>SetFindString(String str)
</autodoc>
13384 <docstring>Set the string to find (used as initial value by the dialog).
</docstring>
13386 <param name=
"str" type=
"String" default=
""/>
13389 <method name=
"SetReplaceString" type=
"" overloaded=
"no">
13390 <autodoc>SetReplaceString(String str)
</autodoc>
13391 <docstring>Set the replacement string (used as initial value by the dialog).
</docstring>
13393 <param name=
"str" type=
"String" default=
""/>
13397 <class name=
"FindReplaceDialog" oldname=
"wxFindReplaceDialog" module=
"windows">
13398 <docstring>FindReplaceDialog is a standard modeless dialog which is used to allow the
13399 user to search for some text (and possibly replace it with something
13400 else). The actual searching is supposed to be done in the owner window which
13401 is the parent of this dialog. Note that it means that unlike for the other
13402 standard dialogs this one must have a parent window. Also note that there is
13403 no way to use this dialog in a modal way; it is always, by design and
13404 implementation, modeless.
</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
13415 <baseclass name=
"Dialog"/>
13416 <constructor name=
"FindReplaceDialog" overloaded=
"no">
13417 <autodoc>__init__(Window parent, FindReplaceData data, String title,
13418 int style=
0) -
> FindReplaceDialog
</autodoc>
13419 <docstring>Create a FindReplaceDialog. The parent and data parameters must be
13420 non-None. Use Show to display the dialog.
</docstring>
13423 wx.FR_REPLACEDIALOG: replace dialog (otherwise find dialog)
13425 wx.FR_NOUPDOWN: don't allow changing the search direction
13427 wx.FR_NOMATCHCASE: don't allow case sensitive searching
13429 wx.FR_NOWHOLEWORD: don't allow whole word searching
13432 <param name=
"parent" type=
"Window" default=
""/>
13433 <param name=
"data" type=
"FindReplaceData" default=
""/>
13434 <param name=
"title" type=
"String" default=
""/>
13435 <param name=
"style" type=
"int" default=
"0"/>
13438 <constructor name=
"PreFindReplaceDialog" overloaded=
"no">
13439 <autodoc>PreFindReplaceDialog() -
> FindReplaceDialog
</autodoc>
13440 <docstring>Precreate a FindReplaceDialog for
2-phase creation
</docstring>
13443 wx.FR_REPLACEDIALOG: replace dialog (otherwise find dialog)
13445 wx.FR_NOUPDOWN: don't allow changing the search direction
13447 wx.FR_NOMATCHCASE: don't allow case sensitive searching
13449 wx.FR_NOWHOLEWORD: don't allow whole word searching
13452 <method name=
"Create" type=
"bool" overloaded=
"no">
13453 <autodoc>Create(Window parent, FindReplaceData data, String title,
13454 int style=
0) -
> bool
</autodoc>
13455 <docstring>Create the dialog, for
2-phase create.
</docstring>
13457 <param name=
"parent" type=
"Window" default=
""/>
13458 <param name=
"data" type=
"FindReplaceData" default=
""/>
13459 <param name=
"title" type=
"String" default=
""/>
13460 <param name=
"style" type=
"int" default=
"0"/>
13463 <method name=
"GetData" type=
"FindReplaceData" overloaded=
"no">
13464 <autodoc>GetData() -
> FindReplaceData
</autodoc>
13465 <docstring>Get the FindReplaceData object used by this dialog.
</docstring>
13467 <method name=
"SetData" type=
"" overloaded=
"no">
13468 <autodoc>SetData(FindReplaceData data)
</autodoc>
13469 <docstring>Set the FindReplaceData object used by this dialog.
</docstring>
13471 <param name=
"data" type=
"FindReplaceData" default=
""/>
13476 #---------------------------------------------------------------------------
13478 <class name=
"MDIParentFrame" oldname=
"wxMDIParentFrame" module=
"windows">
13479 <baseclass name=
"Frame"/>
13480 <constructor name=
"MDIParentFrame" overloaded=
"no">
13481 <autodoc>__init__(Window parent, int id, String title, Point pos=DefaultPosition,
13482 Size size=DefaultSize, long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL,
13483 String name=FrameNameStr) -
> MDIParentFrame
</autodoc>
13485 <param name=
"parent" type=
"Window" default=
""/>
13486 <param name=
"id" type=
"int" default=
""/>
13487 <param name=
"title" type=
"String" default=
""/>
13488 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
13489 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
13490 <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL"/>
13491 <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/>
13494 <constructor name=
"PreMDIParentFrame" overloaded=
"no">
13495 <autodoc>PreMDIParentFrame() -
> MDIParentFrame
</autodoc>
13497 <method name=
"Create" type=
"bool" overloaded=
"no">
13498 <autodoc>Create(Window parent, int id, String title, Point pos=DefaultPosition,
13499 Size size=DefaultSize, long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL,
13500 String name=FrameNameStr) -
> bool
</autodoc>
13502 <param name=
"parent" type=
"Window" default=
""/>
13503 <param name=
"id" type=
"int" default=
""/>
13504 <param name=
"title" type=
"String" default=
""/>
13505 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
13506 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
13507 <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL"/>
13508 <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/>
13511 <method name=
"ActivateNext" type=
"" overloaded=
"no">
13512 <autodoc>ActivateNext()
</autodoc>
13514 <method name=
"ActivatePrevious" type=
"" overloaded=
"no">
13515 <autodoc>ActivatePrevious()
</autodoc>
13517 <method name=
"ArrangeIcons" type=
"" overloaded=
"no">
13518 <autodoc>ArrangeIcons()
</autodoc>
13520 <method name=
"Cascade" type=
"" overloaded=
"no">
13521 <autodoc>Cascade()
</autodoc>
13523 <method name=
"GetActiveChild" type=
"wxMDIChildFrame" overloaded=
"no">
13524 <autodoc>GetActiveChild() -
> MDIChildFrame
</autodoc>
13526 <method name=
"GetClientWindow" type=
"wxMDIClientWindow" overloaded=
"no">
13527 <autodoc>GetClientWindow() -
> MDIClientWindow
</autodoc>
13529 <method name=
"GetToolBar" type=
"Window" overloaded=
"no">
13530 <autodoc>GetToolBar() -
> Window
</autodoc>
13532 <method name=
"Tile" type=
"" overloaded=
"no">
13533 <autodoc>Tile()
</autodoc>
13536 <class name=
"MDIChildFrame" oldname=
"wxMDIChildFrame" module=
"windows">
13537 <baseclass name=
"Frame"/>
13538 <constructor name=
"MDIChildFrame" overloaded=
"no">
13539 <autodoc>__init__(MDIParentFrame parent, int id, String title, Point pos=DefaultPosition,
13540 Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
13541 String name=FrameNameStr) -
> MDIChildFrame
</autodoc>
13543 <param name=
"parent" type=
"MDIParentFrame" default=
""/>
13544 <param name=
"id" type=
"int" default=
""/>
13545 <param name=
"title" type=
"String" default=
""/>
13546 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
13547 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
13548 <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/>
13549 <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/>
13552 <constructor name=
"PreMDIChildFrame" overloaded=
"no">
13553 <autodoc>PreMDIChildFrame() -
> MDIChildFrame
</autodoc>
13555 <method name=
"Create" type=
"bool" overloaded=
"no">
13556 <autodoc>Create(MDIParentFrame parent, int id, String title, Point pos=DefaultPosition,
13557 Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
13558 String name=FrameNameStr) -
> bool
</autodoc>
13560 <param name=
"parent" type=
"MDIParentFrame" default=
""/>
13561 <param name=
"id" type=
"int" default=
""/>
13562 <param name=
"title" type=
"String" default=
""/>
13563 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
13564 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
13565 <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/>
13566 <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/>
13569 <method name=
"Activate" type=
"" overloaded=
"no">
13570 <autodoc>Activate()
</autodoc>
13572 <method name=
"Maximize" type=
"" overloaded=
"no">
13573 <autodoc>Maximize(bool maximize)
</autodoc>
13575 <param name=
"maximize" type=
"bool" default=
""/>
13578 <method name=
"Restore" type=
"" overloaded=
"no">
13579 <autodoc>Restore()
</autodoc>
13582 <class name=
"MDIClientWindow" oldname=
"wxMDIClientWindow" module=
"windows">
13583 <baseclass name=
"Window"/>
13584 <constructor name=
"MDIClientWindow" overloaded=
"no">
13585 <autodoc>__init__(MDIParentFrame parent, long style=
0) -
> MDIClientWindow
</autodoc>
13587 <param name=
"parent" type=
"MDIParentFrame" default=
""/>
13588 <param name=
"style" type=
"long" default=
"0"/>
13591 <constructor name=
"PreMDIClientWindow" overloaded=
"no">
13592 <autodoc>PreMDIClientWindow() -
> MDIClientWindow
</autodoc>
13594 <method name=
"Create" type=
"bool" overloaded=
"no">
13595 <autodoc>Create(MDIParentFrame parent, long style=
0) -
> bool
</autodoc>
13597 <param name=
"parent" type=
"MDIParentFrame" default=
""/>
13598 <param name=
"style" type=
"long" default=
"0"/>
13603 #---------------------------------------------------------------------------
13605 <class name=
"PyWindow" oldname=
"wxPyWindow" module=
"windows">
13606 <baseclass name=
"Window"/>
13607 <constructor name=
"PyWindow" overloaded=
"no">
13608 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
13609 long style=
0, String name=PanelNameStr) -
> PyWindow
</autodoc>
13611 <param name=
"parent" type=
"Window" default=
""/>
13612 <param name=
"id" type=
"int" default=
""/>
13613 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
13614 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
13615 <param name=
"style" type=
"long" default=
"0"/>
13616 <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/>
13619 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
13620 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
13622 <param name=
"self" type=
"PyObject" default=
""/>
13623 <param name=
"_class" type=
"PyObject" default=
""/>
13626 <method name=
"base_DoMoveWindow" type=
"" overloaded=
"no">
13627 <autodoc>base_DoMoveWindow(int x, int y, int width, int height)
</autodoc>
13629 <param name=
"x" type=
"int" default=
""/>
13630 <param name=
"y" type=
"int" default=
""/>
13631 <param name=
"width" type=
"int" default=
""/>
13632 <param name=
"height" type=
"int" default=
""/>
13635 <method name=
"base_DoSetSize" type=
"" overloaded=
"no">
13636 <autodoc>base_DoSetSize(int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)
</autodoc>
13638 <param name=
"x" type=
"int" default=
""/>
13639 <param name=
"y" type=
"int" default=
""/>
13640 <param name=
"width" type=
"int" default=
""/>
13641 <param name=
"height" type=
"int" default=
""/>
13642 <param name=
"sizeFlags" type=
"int" default=
"wxSIZE_AUTO"/>
13645 <method name=
"base_DoSetClientSize" type=
"" overloaded=
"no">
13646 <autodoc>base_DoSetClientSize(int width, int height)
</autodoc>
13648 <param name=
"width" type=
"int" default=
""/>
13649 <param name=
"height" type=
"int" default=
""/>
13652 <method name=
"base_DoSetVirtualSize" type=
"" overloaded=
"no">
13653 <autodoc>base_DoSetVirtualSize(int x, int y)
</autodoc>
13655 <param name=
"x" type=
"int" default=
""/>
13656 <param name=
"y" type=
"int" default=
""/>
13659 <method name=
"base_DoGetSize" type=
"" overloaded=
"no">
13660 <autodoc>base_DoGetSize() -
> (width, height)
</autodoc>
13662 <param name=
"OUTPUT" type=
"int" default=
""/>
13663 <param name=
"OUTPUT" type=
"int" default=
""/>
13666 <method name=
"base_DoGetClientSize" type=
"" overloaded=
"no">
13667 <autodoc>base_DoGetClientSize() -
> (width, height)
</autodoc>
13669 <param name=
"OUTPUT" type=
"int" default=
""/>
13670 <param name=
"OUTPUT" type=
"int" default=
""/>
13673 <method name=
"base_DoGetPosition" type=
"" overloaded=
"no">
13674 <autodoc>base_DoGetPosition() -
> (x,y)
</autodoc>
13676 <param name=
"OUTPUT" type=
"int" default=
""/>
13677 <param name=
"OUTPUT" type=
"int" default=
""/>
13680 <method name=
"base_DoGetVirtualSize" type=
"Size" overloaded=
"no">
13681 <autodoc>base_DoGetVirtualSize() -
> Size
</autodoc>
13683 <method name=
"base_DoGetBestSize" type=
"Size" overloaded=
"no">
13684 <autodoc>base_DoGetBestSize() -
> Size
</autodoc>
13686 <method name=
"base_InitDialog" type=
"" overloaded=
"no">
13687 <autodoc>base_InitDialog()
</autodoc>
13689 <method name=
"base_TransferDataToWindow" type=
"bool" overloaded=
"no">
13690 <autodoc>base_TransferDataToWindow() -
> bool
</autodoc>
13692 <method name=
"base_TransferDataFromWindow" type=
"bool" overloaded=
"no">
13693 <autodoc>base_TransferDataFromWindow() -
> bool
</autodoc>
13695 <method name=
"base_Validate" type=
"bool" overloaded=
"no">
13696 <autodoc>base_Validate() -
> bool
</autodoc>
13698 <method name=
"base_AcceptsFocus" type=
"bool" overloaded=
"no">
13699 <autodoc>base_AcceptsFocus() -
> bool
</autodoc>
13701 <method name=
"base_AcceptsFocusFromKeyboard" type=
"bool" overloaded=
"no">
13702 <autodoc>base_AcceptsFocusFromKeyboard() -
> bool
</autodoc>
13704 <method name=
"base_GetMaxSize" type=
"Size" overloaded=
"no">
13705 <autodoc>base_GetMaxSize() -
> Size
</autodoc>
13707 <method name=
"base_AddChild" type=
"" overloaded=
"no">
13708 <autodoc>base_AddChild(Window child)
</autodoc>
13710 <param name=
"child" type=
"Window" default=
""/>
13713 <method name=
"base_RemoveChild" type=
"" overloaded=
"no">
13714 <autodoc>base_RemoveChild(Window child)
</autodoc>
13716 <param name=
"child" type=
"Window" default=
""/>
13720 <class name=
"PyPanel" oldname=
"wxPyPanel" module=
"windows">
13721 <baseclass name=
"Panel"/>
13722 <constructor name=
"PyPanel" overloaded=
"no">
13723 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
13724 long style=
0, String name=PanelNameStr) -
> PyPanel
</autodoc>
13726 <param name=
"parent" type=
"Window" default=
""/>
13727 <param name=
"id" type=
"int" default=
""/>
13728 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
13729 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
13730 <param name=
"style" type=
"long" default=
"0"/>
13731 <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/>
13734 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
13735 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
13737 <param name=
"self" type=
"PyObject" default=
""/>
13738 <param name=
"_class" type=
"PyObject" default=
""/>
13741 <method name=
"base_DoMoveWindow" type=
"" overloaded=
"no">
13742 <autodoc>base_DoMoveWindow(int x, int y, int width, int height)
</autodoc>
13744 <param name=
"x" type=
"int" default=
""/>
13745 <param name=
"y" type=
"int" default=
""/>
13746 <param name=
"width" type=
"int" default=
""/>
13747 <param name=
"height" type=
"int" default=
""/>
13750 <method name=
"base_DoSetSize" type=
"" overloaded=
"no">
13751 <autodoc>base_DoSetSize(int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)
</autodoc>
13753 <param name=
"x" type=
"int" default=
""/>
13754 <param name=
"y" type=
"int" default=
""/>
13755 <param name=
"width" type=
"int" default=
""/>
13756 <param name=
"height" type=
"int" default=
""/>
13757 <param name=
"sizeFlags" type=
"int" default=
"wxSIZE_AUTO"/>
13760 <method name=
"base_DoSetClientSize" type=
"" overloaded=
"no">
13761 <autodoc>base_DoSetClientSize(int width, int height)
</autodoc>
13763 <param name=
"width" type=
"int" default=
""/>
13764 <param name=
"height" type=
"int" default=
""/>
13767 <method name=
"base_DoSetVirtualSize" type=
"" overloaded=
"no">
13768 <autodoc>base_DoSetVirtualSize(int x, int y)
</autodoc>
13770 <param name=
"x" type=
"int" default=
""/>
13771 <param name=
"y" type=
"int" default=
""/>
13774 <method name=
"base_DoGetSize" type=
"" overloaded=
"no">
13775 <autodoc>base_DoGetSize() -
> (width, height)
</autodoc>
13777 <param name=
"OUTPUT" type=
"int" default=
""/>
13778 <param name=
"OUTPUT" type=
"int" default=
""/>
13781 <method name=
"base_DoGetClientSize" type=
"" overloaded=
"no">
13782 <autodoc>base_DoGetClientSize() -
> (width, height)
</autodoc>
13784 <param name=
"OUTPUT" type=
"int" default=
""/>
13785 <param name=
"OUTPUT" type=
"int" default=
""/>
13788 <method name=
"base_DoGetPosition" type=
"" overloaded=
"no">
13789 <autodoc>base_DoGetPosition() -
> (x,y)
</autodoc>
13791 <param name=
"OUTPUT" type=
"int" default=
""/>
13792 <param name=
"OUTPUT" type=
"int" default=
""/>
13795 <method name=
"base_DoGetVirtualSize" type=
"Size" overloaded=
"no">
13796 <autodoc>base_DoGetVirtualSize() -
> Size
</autodoc>
13798 <method name=
"base_DoGetBestSize" type=
"Size" overloaded=
"no">
13799 <autodoc>base_DoGetBestSize() -
> Size
</autodoc>
13801 <method name=
"base_InitDialog" type=
"" overloaded=
"no">
13802 <autodoc>base_InitDialog()
</autodoc>
13804 <method name=
"base_TransferDataToWindow" type=
"bool" overloaded=
"no">
13805 <autodoc>base_TransferDataToWindow() -
> bool
</autodoc>
13807 <method name=
"base_TransferDataFromWindow" type=
"bool" overloaded=
"no">
13808 <autodoc>base_TransferDataFromWindow() -
> bool
</autodoc>
13810 <method name=
"base_Validate" type=
"bool" overloaded=
"no">
13811 <autodoc>base_Validate() -
> bool
</autodoc>
13813 <method name=
"base_AcceptsFocus" type=
"bool" overloaded=
"no">
13814 <autodoc>base_AcceptsFocus() -
> bool
</autodoc>
13816 <method name=
"base_AcceptsFocusFromKeyboard" type=
"bool" overloaded=
"no">
13817 <autodoc>base_AcceptsFocusFromKeyboard() -
> bool
</autodoc>
13819 <method name=
"base_GetMaxSize" type=
"Size" overloaded=
"no">
13820 <autodoc>base_GetMaxSize() -
> Size
</autodoc>
13822 <method name=
"base_AddChild" type=
"" overloaded=
"no">
13823 <autodoc>base_AddChild(Window child)
</autodoc>
13825 <param name=
"child" type=
"Window" default=
""/>
13828 <method name=
"base_RemoveChild" type=
"" overloaded=
"no">
13829 <autodoc>base_RemoveChild(Window child)
</autodoc>
13831 <param name=
"child" type=
"Window" default=
""/>
13836 #---------------------------------------------------------------------------
13838 <class name=
"PrintData" oldname=
"wxPrintData" module=
"windows">
13839 <baseclass name=
"Object"/>
13840 <constructor name=
"PrintData" overloaded=
"no">
13841 <autodoc>__init__() -
> PrintData
</autodoc>
13843 <destructor name=
"~wxPrintData" overloaded=
"no">
13844 <autodoc>__del__()
</autodoc>
13846 <method name=
"GetNoCopies" type=
"int" overloaded=
"no">
13847 <autodoc>GetNoCopies() -
> int
</autodoc>
13849 <method name=
"GetCollate" type=
"bool" overloaded=
"no">
13850 <autodoc>GetCollate() -
> bool
</autodoc>
13852 <method name=
"GetOrientation" type=
"int" overloaded=
"no">
13853 <autodoc>GetOrientation() -
> int
</autodoc>
13855 <method name=
"Ok" type=
"bool" overloaded=
"no">
13856 <autodoc>Ok() -
> bool
</autodoc>
13858 <method name=
"GetPrinterName" type=
"String" overloaded=
"no">
13859 <autodoc>GetPrinterName() -
> String
</autodoc>
13861 <method name=
"GetColour" type=
"bool" overloaded=
"no">
13862 <autodoc>GetColour() -
> bool
</autodoc>
13864 <method name=
"GetDuplex" type=
"wxDuplexMode" overloaded=
"no">
13865 <autodoc>GetDuplex() -
> int
</autodoc>
13867 <method name=
"GetPaperId" type=
"wxPaperSize" overloaded=
"no">
13868 <autodoc>GetPaperId() -
> int
</autodoc>
13870 <method name=
"GetPaperSize" type=
"Size" overloaded=
"no">
13871 <autodoc>GetPaperSize() -
> Size
</autodoc>
13873 <method name=
"GetQuality" type=
"int" overloaded=
"no">
13874 <autodoc>GetQuality() -
> int
</autodoc>
13876 <method name=
"SetNoCopies" type=
"" overloaded=
"no">
13877 <autodoc>SetNoCopies(int v)
</autodoc>
13879 <param name=
"v" type=
"int" default=
""/>
13882 <method name=
"SetCollate" type=
"" overloaded=
"no">
13883 <autodoc>SetCollate(bool flag)
</autodoc>
13885 <param name=
"flag" type=
"bool" default=
""/>
13888 <method name=
"SetOrientation" type=
"" overloaded=
"no">
13889 <autodoc>SetOrientation(int orient)
</autodoc>
13891 <param name=
"orient" type=
"int" default=
""/>
13894 <method name=
"SetPrinterName" type=
"" overloaded=
"no">
13895 <autodoc>SetPrinterName(String name)
</autodoc>
13897 <param name=
"name" type=
"String" default=
""/>
13900 <method name=
"SetColour" type=
"" overloaded=
"no">
13901 <autodoc>SetColour(bool colour)
</autodoc>
13903 <param name=
"colour" type=
"bool" default=
""/>
13906 <method name=
"SetDuplex" type=
"" overloaded=
"no">
13907 <autodoc>SetDuplex(int duplex)
</autodoc>
13909 <param name=
"duplex" type=
"wxDuplexMode" default=
""/>
13912 <method name=
"SetPaperId" type=
"" overloaded=
"no">
13913 <autodoc>SetPaperId(int sizeId)
</autodoc>
13915 <param name=
"sizeId" type=
"wxPaperSize" default=
""/>
13918 <method name=
"SetPaperSize" type=
"" overloaded=
"no">
13919 <autodoc>SetPaperSize(Size sz)
</autodoc>
13921 <param name=
"sz" type=
"Size" default=
""/>
13924 <method name=
"SetQuality" type=
"" overloaded=
"no">
13925 <autodoc>SetQuality(int quality)
</autodoc>
13927 <param name=
"quality" type=
"int" default=
""/>
13930 <method name=
"GetPrinterCommand" type=
"String" overloaded=
"no">
13931 <autodoc>GetPrinterCommand() -
> String
</autodoc>
13933 <method name=
"GetPrinterOptions" type=
"String" overloaded=
"no">
13934 <autodoc>GetPrinterOptions() -
> String
</autodoc>
13936 <method name=
"GetPreviewCommand" type=
"String" overloaded=
"no">
13937 <autodoc>GetPreviewCommand() -
> String
</autodoc>
13939 <method name=
"GetFilename" type=
"String" overloaded=
"no">
13940 <autodoc>GetFilename() -
> String
</autodoc>
13942 <method name=
"GetFontMetricPath" type=
"String" overloaded=
"no">
13943 <autodoc>GetFontMetricPath() -
> String
</autodoc>
13945 <method name=
"GetPrinterScaleX" type=
"double" overloaded=
"no">
13946 <autodoc>GetPrinterScaleX() -
> double
</autodoc>
13948 <method name=
"GetPrinterScaleY" type=
"double" overloaded=
"no">
13949 <autodoc>GetPrinterScaleY() -
> double
</autodoc>
13951 <method name=
"GetPrinterTranslateX" type=
"long" overloaded=
"no">
13952 <autodoc>GetPrinterTranslateX() -
> long
</autodoc>
13954 <method name=
"GetPrinterTranslateY" type=
"long" overloaded=
"no">
13955 <autodoc>GetPrinterTranslateY() -
> long
</autodoc>
13957 <method name=
"GetPrintMode" type=
"wxPrintMode" overloaded=
"no">
13958 <autodoc>GetPrintMode() -
> int
</autodoc>
13960 <method name=
"SetPrinterCommand" type=
"" overloaded=
"no">
13961 <autodoc>SetPrinterCommand(String command)
</autodoc>
13963 <param name=
"command" type=
"String" default=
""/>
13966 <method name=
"SetPrinterOptions" type=
"" overloaded=
"no">
13967 <autodoc>SetPrinterOptions(String options)
</autodoc>
13969 <param name=
"options" type=
"String" default=
""/>
13972 <method name=
"SetPreviewCommand" type=
"" overloaded=
"no">
13973 <autodoc>SetPreviewCommand(String command)
</autodoc>
13975 <param name=
"command" type=
"String" default=
""/>
13978 <method name=
"SetFilename" type=
"" overloaded=
"no">
13979 <autodoc>SetFilename(String filename)
</autodoc>
13981 <param name=
"filename" type=
"String" default=
""/>
13984 <method name=
"SetFontMetricPath" type=
"" overloaded=
"no">
13985 <autodoc>SetFontMetricPath(String path)
</autodoc>
13987 <param name=
"path" type=
"String" default=
""/>
13990 <method name=
"SetPrinterScaleX" type=
"" overloaded=
"no">
13991 <autodoc>SetPrinterScaleX(double x)
</autodoc>
13993 <param name=
"x" type=
"double" default=
""/>
13996 <method name=
"SetPrinterScaleY" type=
"" overloaded=
"no">
13997 <autodoc>SetPrinterScaleY(double y)
</autodoc>
13999 <param name=
"y" type=
"double" default=
""/>
14002 <method name=
"SetPrinterScaling" type=
"" overloaded=
"no">
14003 <autodoc>SetPrinterScaling(double x, double y)
</autodoc>
14005 <param name=
"x" type=
"double" default=
""/>
14006 <param name=
"y" type=
"double" default=
""/>
14009 <method name=
"SetPrinterTranslateX" type=
"" overloaded=
"no">
14010 <autodoc>SetPrinterTranslateX(long x)
</autodoc>
14012 <param name=
"x" type=
"long" default=
""/>
14015 <method name=
"SetPrinterTranslateY" type=
"" overloaded=
"no">
14016 <autodoc>SetPrinterTranslateY(long y)
</autodoc>
14018 <param name=
"y" type=
"long" default=
""/>
14021 <method name=
"SetPrinterTranslation" type=
"" overloaded=
"no">
14022 <autodoc>SetPrinterTranslation(long x, long y)
</autodoc>
14024 <param name=
"x" type=
"long" default=
""/>
14025 <param name=
"y" type=
"long" default=
""/>
14028 <method name=
"SetPrintMode" type=
"" overloaded=
"no">
14029 <autodoc>SetPrintMode(int printMode)
</autodoc>
14031 <param name=
"printMode" type=
"wxPrintMode" default=
""/>
14034 <method name=
"GetOutputStream" type=
"OutputStream" overloaded=
"no">
14035 <autodoc>GetOutputStream() -
> OutputStream
</autodoc>
14037 <method name=
"SetOutputStream" type=
"" overloaded=
"no">
14038 <autodoc>SetOutputStream(OutputStream outputstream)
</autodoc>
14040 <param name=
"outputstream" type=
"OutputStream" default=
""/>
14044 <class name=
"PageSetupDialogData" oldname=
"wxPageSetupDialogData" module=
"windows">
14045 <baseclass name=
"Object"/>
14046 <constructor name=
"PageSetupDialogData" overloaded=
"no">
14047 <autodoc>__init__() -
> PageSetupDialogData
</autodoc>
14049 <destructor name=
"~wxPageSetupDialogData" overloaded=
"no">
14050 <autodoc>__del__()
</autodoc>
14052 <method name=
"EnableHelp" type=
"" overloaded=
"no">
14053 <autodoc>EnableHelp(bool flag)
</autodoc>
14055 <param name=
"flag" type=
"bool" default=
""/>
14058 <method name=
"EnableMargins" type=
"" overloaded=
"no">
14059 <autodoc>EnableMargins(bool flag)
</autodoc>
14061 <param name=
"flag" type=
"bool" default=
""/>
14064 <method name=
"EnableOrientation" type=
"" overloaded=
"no">
14065 <autodoc>EnableOrientation(bool flag)
</autodoc>
14067 <param name=
"flag" type=
"bool" default=
""/>
14070 <method name=
"EnablePaper" type=
"" overloaded=
"no">
14071 <autodoc>EnablePaper(bool flag)
</autodoc>
14073 <param name=
"flag" type=
"bool" default=
""/>
14076 <method name=
"EnablePrinter" type=
"" overloaded=
"no">
14077 <autodoc>EnablePrinter(bool flag)
</autodoc>
14079 <param name=
"flag" type=
"bool" default=
""/>
14082 <method name=
"GetDefaultMinMargins" type=
"bool" overloaded=
"no">
14083 <autodoc>GetDefaultMinMargins() -
> bool
</autodoc>
14085 <method name=
"GetEnableMargins" type=
"bool" overloaded=
"no">
14086 <autodoc>GetEnableMargins() -
> bool
</autodoc>
14088 <method name=
"GetEnableOrientation" type=
"bool" overloaded=
"no">
14089 <autodoc>GetEnableOrientation() -
> bool
</autodoc>
14091 <method name=
"GetEnablePaper" type=
"bool" overloaded=
"no">
14092 <autodoc>GetEnablePaper() -
> bool
</autodoc>
14094 <method name=
"GetEnablePrinter" type=
"bool" overloaded=
"no">
14095 <autodoc>GetEnablePrinter() -
> bool
</autodoc>
14097 <method name=
"GetEnableHelp" type=
"bool" overloaded=
"no">
14098 <autodoc>GetEnableHelp() -
> bool
</autodoc>
14100 <method name=
"GetDefaultInfo" type=
"bool" overloaded=
"no">
14101 <autodoc>GetDefaultInfo() -
> bool
</autodoc>
14103 <method name=
"GetMarginTopLeft" type=
"Point" overloaded=
"no">
14104 <autodoc>GetMarginTopLeft() -
> Point
</autodoc>
14106 <method name=
"GetMarginBottomRight" type=
"Point" overloaded=
"no">
14107 <autodoc>GetMarginBottomRight() -
> Point
</autodoc>
14109 <method name=
"GetMinMarginTopLeft" type=
"Point" overloaded=
"no">
14110 <autodoc>GetMinMarginTopLeft() -
> Point
</autodoc>
14112 <method name=
"GetMinMarginBottomRight" type=
"Point" overloaded=
"no">
14113 <autodoc>GetMinMarginBottomRight() -
> Point
</autodoc>
14115 <method name=
"GetPaperId" type=
"wxPaperSize" overloaded=
"no">
14116 <autodoc>GetPaperId() -
> int
</autodoc>
14118 <method name=
"GetPaperSize" type=
"Size" overloaded=
"no">
14119 <autodoc>GetPaperSize() -
> Size
</autodoc>
14121 <method name=
"GetPrintData" type=
"PrintData" overloaded=
"no">
14122 <autodoc>GetPrintData() -
> PrintData
</autodoc>
14124 <method name=
"Ok" type=
"bool" overloaded=
"no">
14125 <autodoc>Ok() -
> bool
</autodoc>
14127 <method name=
"SetDefaultInfo" type=
"" overloaded=
"no">
14128 <autodoc>SetDefaultInfo(bool flag)
</autodoc>
14130 <param name=
"flag" type=
"bool" default=
""/>
14133 <method name=
"SetDefaultMinMargins" type=
"" overloaded=
"no">
14134 <autodoc>SetDefaultMinMargins(bool flag)
</autodoc>
14136 <param name=
"flag" type=
"bool" default=
""/>
14139 <method name=
"SetMarginTopLeft" type=
"" overloaded=
"no">
14140 <autodoc>SetMarginTopLeft(Point pt)
</autodoc>
14142 <param name=
"pt" type=
"Point" default=
""/>
14145 <method name=
"SetMarginBottomRight" type=
"" overloaded=
"no">
14146 <autodoc>SetMarginBottomRight(Point pt)
</autodoc>
14148 <param name=
"pt" type=
"Point" default=
""/>
14151 <method name=
"SetMinMarginTopLeft" type=
"" overloaded=
"no">
14152 <autodoc>SetMinMarginTopLeft(Point pt)
</autodoc>
14154 <param name=
"pt" type=
"Point" default=
""/>
14157 <method name=
"SetMinMarginBottomRight" type=
"" overloaded=
"no">
14158 <autodoc>SetMinMarginBottomRight(Point pt)
</autodoc>
14160 <param name=
"pt" type=
"Point" default=
""/>
14163 <method name=
"SetPaperId" type=
"" overloaded=
"no">
14164 <autodoc>SetPaperId(int id)
</autodoc>
14166 <param name=
"id" type=
"wxPaperSize" default=
""/>
14169 <method name=
"SetPaperSize" type=
"" overloaded=
"no">
14170 <autodoc>SetPaperSize(Size size)
</autodoc>
14172 <param name=
"size" type=
"Size" default=
""/>
14175 <method name=
"SetPrintData" type=
"" overloaded=
"no">
14176 <autodoc>SetPrintData(PrintData printData)
</autodoc>
14178 <param name=
"printData" type=
"PrintData" default=
""/>
14182 <class name=
"PageSetupDialog" oldname=
"wxPageSetupDialog" module=
"windows">
14183 <baseclass name=
"Dialog"/>
14184 <constructor name=
"PageSetupDialog" overloaded=
"no">
14185 <autodoc>__init__(Window parent, PageSetupDialogData data=None) -
> PageSetupDialog
</autodoc>
14187 <param name=
"parent" type=
"Window" default=
""/>
14188 <param name=
"data" type=
"PageSetupDialogData" default=
"NULL"/>
14191 <method name=
"GetPageSetupData" type=
"PageSetupDialogData" overloaded=
"no">
14192 <autodoc>GetPageSetupData() -
> PageSetupDialogData
</autodoc>
14194 <method name=
"ShowModal" type=
"int" overloaded=
"no">
14195 <autodoc>ShowModal() -
> int
</autodoc>
14198 <class name=
"PrintDialogData" oldname=
"wxPrintDialogData" module=
"windows">
14199 <baseclass name=
"Object"/>
14200 <constructor name=
"PrintDialogData" overloaded=
"yes"/>
14201 <constructor name=
"PrintDialogData" overloaded=
"yes">
14202 <autodoc>__init__() -
> PrintDialogData
14203 __init__(PrintData printData) -
> PrintDialogData
</autodoc>
14205 <param name=
"printData" type=
"PrintData" default=
""/>
14208 <destructor name=
"~wxPrintDialogData" overloaded=
"no">
14209 <autodoc>__del__()
</autodoc>
14211 <method name=
"GetFromPage" type=
"int" overloaded=
"no">
14212 <autodoc>GetFromPage() -
> int
</autodoc>
14214 <method name=
"GetToPage" type=
"int" overloaded=
"no">
14215 <autodoc>GetToPage() -
> int
</autodoc>
14217 <method name=
"GetMinPage" type=
"int" overloaded=
"no">
14218 <autodoc>GetMinPage() -
> int
</autodoc>
14220 <method name=
"GetMaxPage" type=
"int" overloaded=
"no">
14221 <autodoc>GetMaxPage() -
> int
</autodoc>
14223 <method name=
"GetNoCopies" type=
"int" overloaded=
"no">
14224 <autodoc>GetNoCopies() -
> int
</autodoc>
14226 <method name=
"GetAllPages" type=
"bool" overloaded=
"no">
14227 <autodoc>GetAllPages() -
> bool
</autodoc>
14229 <method name=
"GetSelection" type=
"bool" overloaded=
"no">
14230 <autodoc>GetSelection() -
> bool
</autodoc>
14232 <method name=
"GetCollate" type=
"bool" overloaded=
"no">
14233 <autodoc>GetCollate() -
> bool
</autodoc>
14235 <method name=
"GetPrintToFile" type=
"bool" overloaded=
"no">
14236 <autodoc>GetPrintToFile() -
> bool
</autodoc>
14238 <method name=
"GetSetupDialog" type=
"bool" overloaded=
"no">
14239 <autodoc>GetSetupDialog() -
> bool
</autodoc>
14241 <method name=
"SetFromPage" type=
"" overloaded=
"no">
14242 <autodoc>SetFromPage(int v)
</autodoc>
14244 <param name=
"v" type=
"int" default=
""/>
14247 <method name=
"SetToPage" type=
"" overloaded=
"no">
14248 <autodoc>SetToPage(int v)
</autodoc>
14250 <param name=
"v" type=
"int" default=
""/>
14253 <method name=
"SetMinPage" type=
"" overloaded=
"no">
14254 <autodoc>SetMinPage(int v)
</autodoc>
14256 <param name=
"v" type=
"int" default=
""/>
14259 <method name=
"SetMaxPage" type=
"" overloaded=
"no">
14260 <autodoc>SetMaxPage(int v)
</autodoc>
14262 <param name=
"v" type=
"int" default=
""/>
14265 <method name=
"SetNoCopies" type=
"" overloaded=
"no">
14266 <autodoc>SetNoCopies(int v)
</autodoc>
14268 <param name=
"v" type=
"int" default=
""/>
14271 <method name=
"SetAllPages" type=
"" overloaded=
"no">
14272 <autodoc>SetAllPages(bool flag)
</autodoc>
14274 <param name=
"flag" type=
"bool" default=
""/>
14277 <method name=
"SetSelection" type=
"" overloaded=
"no">
14278 <autodoc>SetSelection(bool flag)
</autodoc>
14280 <param name=
"flag" type=
"bool" default=
""/>
14283 <method name=
"SetCollate" type=
"" overloaded=
"no">
14284 <autodoc>SetCollate(bool flag)
</autodoc>
14286 <param name=
"flag" type=
"bool" default=
""/>
14289 <method name=
"SetPrintToFile" type=
"" overloaded=
"no">
14290 <autodoc>SetPrintToFile(bool flag)
</autodoc>
14292 <param name=
"flag" type=
"bool" default=
""/>
14295 <method name=
"SetSetupDialog" type=
"" overloaded=
"no">
14296 <autodoc>SetSetupDialog(bool flag)
</autodoc>
14298 <param name=
"flag" type=
"bool" default=
""/>
14301 <method name=
"EnablePrintToFile" type=
"" overloaded=
"no">
14302 <autodoc>EnablePrintToFile(bool flag)
</autodoc>
14304 <param name=
"flag" type=
"bool" default=
""/>
14307 <method name=
"EnableSelection" type=
"" overloaded=
"no">
14308 <autodoc>EnableSelection(bool flag)
</autodoc>
14310 <param name=
"flag" type=
"bool" default=
""/>
14313 <method name=
"EnablePageNumbers" type=
"" overloaded=
"no">
14314 <autodoc>EnablePageNumbers(bool flag)
</autodoc>
14316 <param name=
"flag" type=
"bool" default=
""/>
14319 <method name=
"EnableHelp" type=
"" overloaded=
"no">
14320 <autodoc>EnableHelp(bool flag)
</autodoc>
14322 <param name=
"flag" type=
"bool" default=
""/>
14325 <method name=
"GetEnablePrintToFile" type=
"bool" overloaded=
"no">
14326 <autodoc>GetEnablePrintToFile() -
> bool
</autodoc>
14328 <method name=
"GetEnableSelection" type=
"bool" overloaded=
"no">
14329 <autodoc>GetEnableSelection() -
> bool
</autodoc>
14331 <method name=
"GetEnablePageNumbers" type=
"bool" overloaded=
"no">
14332 <autodoc>GetEnablePageNumbers() -
> bool
</autodoc>
14334 <method name=
"GetEnableHelp" type=
"bool" overloaded=
"no">
14335 <autodoc>GetEnableHelp() -
> bool
</autodoc>
14337 <method name=
"Ok" type=
"bool" overloaded=
"no">
14338 <autodoc>Ok() -
> bool
</autodoc>
14340 <method name=
"GetPrintData" type=
"PrintData" overloaded=
"no">
14341 <autodoc>GetPrintData() -
> PrintData
</autodoc>
14343 <method name=
"SetPrintData" type=
"" overloaded=
"no">
14344 <autodoc>SetPrintData(PrintData printData)
</autodoc>
14346 <param name=
"printData" type=
"PrintData" default=
""/>
14350 <class name=
"PrintDialog" oldname=
"wxPrintDialog" module=
"windows">
14351 <baseclass name=
"Dialog"/>
14352 <constructor name=
"PrintDialog" overloaded=
"no">
14353 <autodoc>__init__(Window parent, PrintDialogData data=None) -
> PrintDialog
</autodoc>
14355 <param name=
"parent" type=
"Window" default=
""/>
14356 <param name=
"data" type=
"PrintDialogData" default=
"NULL"/>
14359 <method name=
"GetPrintDialogData" type=
"PrintDialogData" overloaded=
"no">
14360 <autodoc>GetPrintDialogData() -
> PrintDialogData
</autodoc>
14362 <method name=
"GetPrintDC" type=
"DC" overloaded=
"no">
14363 <autodoc>GetPrintDC() -
> DC
</autodoc>
14365 <method name=
"ShowModal" type=
"int" overloaded=
"no">
14366 <autodoc>ShowModal() -
> int
</autodoc>
14369 <class name=
"Printer" oldname=
"wxPrinter" module=
"windows">
14370 <baseclass name=
"Object"/>
14371 <constructor name=
"Printer" overloaded=
"no">
14372 <autodoc>__init__(PrintDialogData data=None) -
> Printer
</autodoc>
14374 <param name=
"data" type=
"PrintDialogData" default=
"NULL"/>
14377 <destructor name=
"~wxPrinter" overloaded=
"no">
14378 <autodoc>__del__()
</autodoc>
14380 <method name=
"CreateAbortWindow" type=
"" overloaded=
"no">
14381 <autodoc>CreateAbortWindow(Window parent, Printout printout)
</autodoc>
14383 <param name=
"parent" type=
"Window" default=
""/>
14384 <param name=
"printout" type=
"wxPyPrintout" default=
""/>
14387 <method name=
"GetPrintDialogData" type=
"PrintDialogData" overloaded=
"no">
14388 <autodoc>GetPrintDialogData() -
> PrintDialogData
</autodoc>
14390 <method name=
"Print" type=
"bool" overloaded=
"no">
14391 <autodoc>Print(Window parent, Printout printout, int prompt=True) -
> bool
</autodoc>
14393 <param name=
"parent" type=
"Window" default=
""/>
14394 <param name=
"printout" type=
"wxPyPrintout" default=
""/>
14395 <param name=
"prompt" type=
"int" default=
"True"/>
14398 <method name=
"PrintDialog" type=
"DC" overloaded=
"no">
14399 <autodoc>PrintDialog(Window parent) -
> DC
</autodoc>
14401 <param name=
"parent" type=
"Window" default=
""/>
14404 <method name=
"ReportError" type=
"" overloaded=
"no">
14405 <autodoc>ReportError(Window parent, Printout printout, String message)
</autodoc>
14407 <param name=
"parent" type=
"Window" default=
""/>
14408 <param name=
"printout" type=
"wxPyPrintout" default=
""/>
14409 <param name=
"message" type=
"String" default=
""/>
14412 <method name=
"Setup" type=
"bool" overloaded=
"no">
14413 <autodoc>Setup(Window parent) -
> bool
</autodoc>
14415 <param name=
"parent" type=
"Window" default=
""/>
14418 <method name=
"GetAbort" type=
"bool" overloaded=
"no">
14419 <autodoc>GetAbort() -
> bool
</autodoc>
14421 <staticmethod name=
"GetLastError" type=
"wxPrinterError" overloaded=
"no">
14422 <autodoc>GetLastError() -
> int
</autodoc>
14425 <class name=
"Printout" oldname=
"wxPyPrintout" module=
"windows">
14426 <baseclass name=
"Object"/>
14427 <constructor name=
"wxPyPrintout" overloaded=
"no">
14428 <autodoc>__init__(String title=PrintoutTitleStr) -
> Printout
</autodoc>
14430 <param name=
"title" type=
"String" default=
"wxPyPrintoutTitleStr"/>
14433 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
14434 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
14436 <param name=
"self" type=
"PyObject" default=
""/>
14437 <param name=
"_class" type=
"PyObject" default=
""/>
14440 <method name=
"GetTitle" type=
"String" overloaded=
"no">
14441 <autodoc>GetTitle() -
> String
</autodoc>
14443 <method name=
"GetDC" type=
"DC" overloaded=
"no">
14444 <autodoc>GetDC() -
> DC
</autodoc>
14446 <method name=
"SetDC" type=
"" overloaded=
"no">
14447 <autodoc>SetDC(DC dc)
</autodoc>
14449 <param name=
"dc" type=
"DC" default=
""/>
14452 <method name=
"SetPageSizePixels" type=
"" overloaded=
"no">
14453 <autodoc>SetPageSizePixels(int w, int h)
</autodoc>
14455 <param name=
"w" type=
"int" default=
""/>
14456 <param name=
"h" type=
"int" default=
""/>
14459 <method name=
"GetPageSizePixels" type=
"" overloaded=
"no">
14460 <autodoc>GetPageSizePixels() -
> (w, h)
</autodoc>
14462 <param name=
"OUTPUT" type=
"int" default=
""/>
14463 <param name=
"OUTPUT" type=
"int" default=
""/>
14466 <method name=
"SetPageSizeMM" type=
"" overloaded=
"no">
14467 <autodoc>SetPageSizeMM(int w, int h)
</autodoc>
14469 <param name=
"w" type=
"int" default=
""/>
14470 <param name=
"h" type=
"int" default=
""/>
14473 <method name=
"GetPageSizeMM" type=
"" overloaded=
"no">
14474 <autodoc>GetPageSizeMM() -
> (w, h)
</autodoc>
14476 <param name=
"OUTPUT" type=
"int" default=
""/>
14477 <param name=
"OUTPUT" type=
"int" default=
""/>
14480 <method name=
"SetPPIScreen" type=
"" overloaded=
"no">
14481 <autodoc>SetPPIScreen(int x, int y)
</autodoc>
14483 <param name=
"x" type=
"int" default=
""/>
14484 <param name=
"y" type=
"int" default=
""/>
14487 <method name=
"GetPPIScreen" type=
"" overloaded=
"no">
14488 <autodoc>GetPPIScreen() -
> (x,y)
</autodoc>
14490 <param name=
"OUTPUT" type=
"int" default=
""/>
14491 <param name=
"OUTPUT" type=
"int" default=
""/>
14494 <method name=
"SetPPIPrinter" type=
"" overloaded=
"no">
14495 <autodoc>SetPPIPrinter(int x, int y)
</autodoc>
14497 <param name=
"x" type=
"int" default=
""/>
14498 <param name=
"y" type=
"int" default=
""/>
14501 <method name=
"GetPPIPrinter" type=
"" overloaded=
"no">
14502 <autodoc>GetPPIPrinter() -
> (x,y)
</autodoc>
14504 <param name=
"OUTPUT" type=
"int" default=
""/>
14505 <param name=
"OUTPUT" type=
"int" default=
""/>
14508 <method name=
"IsPreview" type=
"bool" overloaded=
"no">
14509 <autodoc>IsPreview() -
> bool
</autodoc>
14511 <method name=
"SetIsPreview" type=
"" overloaded=
"no">
14512 <autodoc>SetIsPreview(bool p)
</autodoc>
14514 <param name=
"p" type=
"bool" default=
""/>
14517 <method name=
"base_OnBeginDocument" type=
"bool" overloaded=
"no">
14518 <autodoc>base_OnBeginDocument(int startPage, int endPage) -
> bool
</autodoc>
14520 <param name=
"startPage" type=
"int" default=
""/>
14521 <param name=
"endPage" type=
"int" default=
""/>
14524 <method name=
"base_OnEndDocument" type=
"" overloaded=
"no">
14525 <autodoc>base_OnEndDocument()
</autodoc>
14527 <method name=
"base_OnBeginPrinting" type=
"" overloaded=
"no">
14528 <autodoc>base_OnBeginPrinting()
</autodoc>
14530 <method name=
"base_OnEndPrinting" type=
"" overloaded=
"no">
14531 <autodoc>base_OnEndPrinting()
</autodoc>
14533 <method name=
"base_OnPreparePrinting" type=
"" overloaded=
"no">
14534 <autodoc>base_OnPreparePrinting()
</autodoc>
14536 <method name=
"base_HasPage" type=
"bool" overloaded=
"no">
14537 <autodoc>base_HasPage(int page) -
> bool
</autodoc>
14539 <param name=
"page" type=
"int" default=
""/>
14542 <method name=
"base_GetPageInfo" type=
"" overloaded=
"no">
14543 <autodoc>base_GetPageInfo() -
> (minPage, maxPage, pageFrom, pageTo)
</autodoc>
14545 <param name=
"OUTPUT" type=
"int" default=
""/>
14546 <param name=
"OUTPUT" type=
"int" default=
""/>
14547 <param name=
"OUTPUT" type=
"int" default=
""/>
14548 <param name=
"OUTPUT" type=
"int" default=
""/>
14552 <class name=
"PreviewCanvas" oldname=
"wxPreviewCanvas" module=
"windows">
14553 <baseclass name=
"ScrolledWindow"/>
14554 <constructor name=
"PreviewCanvas" overloaded=
"no">
14555 <autodoc>__init__(PrintPreview preview, Window parent, Point pos=DefaultPosition,
14556 Size size=DefaultSize, long style=
0,
14557 String name=PreviewCanvasNameStr) -
> PreviewCanvas
</autodoc>
14559 <param name=
"preview" type=
"wxPrintPreview" default=
""/>
14560 <param name=
"parent" type=
"Window" default=
""/>
14561 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
14562 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
14563 <param name=
"style" type=
"long" default=
"0"/>
14564 <param name=
"name" type=
"String" default=
"wxPyPreviewCanvasNameStr"/>
14568 <class name=
"PreviewFrame" oldname=
"wxPreviewFrame" module=
"windows">
14569 <baseclass name=
"Frame"/>
14570 <constructor name=
"PreviewFrame" overloaded=
"no">
14571 <autodoc>__init__(PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition,
14572 Size size=DefaultSize,
14573 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -
> PreviewFrame
</autodoc>
14575 <param name=
"preview" type=
"wxPrintPreview" default=
""/>
14576 <param name=
"parent" type=
"Frame" default=
""/>
14577 <param name=
"title" type=
"String" default=
""/>
14578 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
14579 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
14580 <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/>
14581 <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/>
14584 <method name=
"Initialize" type=
"" overloaded=
"no">
14585 <autodoc>Initialize()
</autodoc>
14587 <method name=
"CreateControlBar" type=
"" overloaded=
"no">
14588 <autodoc>CreateControlBar()
</autodoc>
14590 <method name=
"CreateCanvas" type=
"" overloaded=
"no">
14591 <autodoc>CreateCanvas()
</autodoc>
14593 <method name=
"GetControlBar" type=
"wxPreviewControlBar" overloaded=
"no">
14594 <autodoc>GetControlBar() -
> PreviewControlBar
</autodoc>
14597 <class name=
"PreviewControlBar" oldname=
"wxPreviewControlBar" module=
"windows">
14598 <baseclass name=
"Panel"/>
14599 <constructor name=
"PreviewControlBar" overloaded=
"no">
14600 <autodoc>__init__(PrintPreview preview, long buttons, Window parent,
14601 Point pos=DefaultPosition, Size size=DefaultSize,
14602 long style=TAB_TRAVERSAL, String name=PanelNameStr) -
> PreviewControlBar
</autodoc>
14604 <param name=
"preview" type=
"wxPrintPreview" default=
""/>
14605 <param name=
"buttons" type=
"long" default=
""/>
14606 <param name=
"parent" type=
"Window" default=
""/>
14607 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
14608 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
14609 <param name=
"style" type=
"long" default=
"wxTAB_TRAVERSAL"/>
14610 <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/>
14613 <method name=
"GetZoomControl" type=
"int" overloaded=
"no">
14614 <autodoc>GetZoomControl() -
> int
</autodoc>
14616 <method name=
"SetZoomControl" type=
"" overloaded=
"no">
14617 <autodoc>SetZoomControl(int zoom)
</autodoc>
14619 <param name=
"zoom" type=
"int" default=
""/>
14622 <method name=
"GetPrintPreview" type=
"wxPrintPreview" overloaded=
"no">
14623 <autodoc>GetPrintPreview() -
> PrintPreview
</autodoc>
14625 <method name=
"OnNext" type=
"" overloaded=
"no">
14626 <autodoc>OnNext()
</autodoc>
14628 <method name=
"OnPrevious" type=
"" overloaded=
"no">
14629 <autodoc>OnPrevious()
</autodoc>
14631 <method name=
"OnFirst" type=
"" overloaded=
"no">
14632 <autodoc>OnFirst()
</autodoc>
14634 <method name=
"OnLast" type=
"" overloaded=
"no">
14635 <autodoc>OnLast()
</autodoc>
14637 <method name=
"OnGoto" type=
"" overloaded=
"no">
14638 <autodoc>OnGoto()
</autodoc>
14641 <class name=
"PrintPreview" oldname=
"wxPrintPreview" module=
"windows">
14642 <baseclass name=
"Object"/>
14643 <constructor name=
"PrintPreview" overloaded=
"yes">
14645 <param name=
"printout" type=
"Printout" default=
""/>
14646 <param name=
"printoutForPrinting" type=
"Printout" default=
""/>
14647 <param name=
"data" type=
"PrintDialogData" default=
"NULL"/>
14650 <constructor name=
"PrintPreview" overloaded=
"yes">
14651 <autodoc>__init__(Printout printout, Printout printoutForPrinting, PrintDialogData data=None) -
> PrintPreview
14652 __init__(Printout printout, Printout printoutForPrinting, PrintData data) -
> PrintPreview
</autodoc>
14654 <param name=
"printout" type=
"Printout" default=
""/>
14655 <param name=
"printoutForPrinting" type=
"Printout" default=
""/>
14656 <param name=
"data" type=
"PrintData" default=
""/>
14659 <method name=
"SetCurrentPage" type=
"bool" overloaded=
"no">
14660 <autodoc>SetCurrentPage(int pageNum) -
> bool
</autodoc>
14662 <param name=
"pageNum" type=
"int" default=
""/>
14665 <method name=
"GetCurrentPage" type=
"int" overloaded=
"no">
14666 <autodoc>GetCurrentPage() -
> int
</autodoc>
14668 <method name=
"SetPrintout" type=
"" overloaded=
"no">
14669 <autodoc>SetPrintout(Printout printout)
</autodoc>
14671 <param name=
"printout" type=
"Printout" default=
""/>
14674 <method name=
"GetPrintout" type=
"Printout" overloaded=
"no">
14675 <autodoc>GetPrintout() -
> Printout
</autodoc>
14677 <method name=
"GetPrintoutForPrinting" type=
"Printout" overloaded=
"no">
14678 <autodoc>GetPrintoutForPrinting() -
> Printout
</autodoc>
14680 <method name=
"SetFrame" type=
"" overloaded=
"no">
14681 <autodoc>SetFrame(Frame frame)
</autodoc>
14683 <param name=
"frame" type=
"Frame" default=
""/>
14686 <method name=
"SetCanvas" type=
"" overloaded=
"no">
14687 <autodoc>SetCanvas(PreviewCanvas canvas)
</autodoc>
14689 <param name=
"canvas" type=
"PreviewCanvas" default=
""/>
14692 <method name=
"GetFrame" type=
"Frame" overloaded=
"no">
14693 <autodoc>GetFrame() -
> Frame
</autodoc>
14695 <method name=
"GetCanvas" type=
"PreviewCanvas" overloaded=
"no">
14696 <autodoc>GetCanvas() -
> PreviewCanvas
</autodoc>
14698 <method name=
"PaintPage" type=
"bool" overloaded=
"no">
14699 <autodoc>PaintPage(PreviewCanvas canvas, DC dc) -
> bool
</autodoc>
14701 <param name=
"canvas" type=
"PreviewCanvas" default=
""/>
14702 <param name=
"dc" type=
"DC" default=
""/>
14705 <method name=
"DrawBlankPage" type=
"bool" overloaded=
"no">
14706 <autodoc>DrawBlankPage(PreviewCanvas canvas, DC dc) -
> bool
</autodoc>
14708 <param name=
"canvas" type=
"PreviewCanvas" default=
""/>
14709 <param name=
"dc" type=
"DC" default=
""/>
14712 <method name=
"RenderPage" type=
"bool" overloaded=
"no">
14713 <autodoc>RenderPage(int pageNum) -
> bool
</autodoc>
14715 <param name=
"pageNum" type=
"int" default=
""/>
14718 <method name=
"AdjustScrollbars" type=
"" overloaded=
"no">
14719 <autodoc>AdjustScrollbars(PreviewCanvas canvas)
</autodoc>
14721 <param name=
"canvas" type=
"PreviewCanvas" default=
""/>
14724 <method name=
"GetPrintDialogData" type=
"PrintDialogData" overloaded=
"no">
14725 <autodoc>GetPrintDialogData() -
> PrintDialogData
</autodoc>
14727 <method name=
"SetZoom" type=
"" overloaded=
"no">
14728 <autodoc>SetZoom(int percent)
</autodoc>
14730 <param name=
"percent" type=
"int" default=
""/>
14733 <method name=
"GetZoom" type=
"int" overloaded=
"no">
14734 <autodoc>GetZoom() -
> int
</autodoc>
14736 <method name=
"GetMaxPage" type=
"int" overloaded=
"no">
14737 <autodoc>GetMaxPage() -
> int
</autodoc>
14739 <method name=
"GetMinPage" type=
"int" overloaded=
"no">
14740 <autodoc>GetMinPage() -
> int
</autodoc>
14742 <method name=
"Ok" type=
"bool" overloaded=
"no">
14743 <autodoc>Ok() -
> bool
</autodoc>
14745 <method name=
"SetOk" type=
"" overloaded=
"no">
14746 <autodoc>SetOk(bool ok)
</autodoc>
14748 <param name=
"ok" type=
"bool" default=
""/>
14751 <method name=
"Print" type=
"bool" overloaded=
"no">
14752 <autodoc>Print(bool interactive) -
> bool
</autodoc>
14754 <param name=
"interactive" type=
"bool" default=
""/>
14757 <method name=
"DetermineScaling" type=
"" overloaded=
"no">
14758 <autodoc>DetermineScaling()
</autodoc>
14761 <class name=
"PyPrintPreview" oldname=
"wxPyPrintPreview" module=
"windows">
14762 <baseclass name=
"PrintPreview"/>
14763 <constructor name=
"PyPrintPreview" overloaded=
"yes">
14765 <param name=
"printout" type=
"Printout" default=
""/>
14766 <param name=
"printoutForPrinting" type=
"Printout" default=
""/>
14767 <param name=
"data" type=
"PrintDialogData" default=
"NULL"/>
14770 <constructor name=
"PyPrintPreview" overloaded=
"yes">
14771 <autodoc>__init__(Printout printout, Printout printoutForPrinting, PrintDialogData data=None) -
> PyPrintPreview
14772 __init__(Printout printout, Printout printoutForPrinting, PrintData data) -
> PyPrintPreview
</autodoc>
14774 <param name=
"printout" type=
"Printout" default=
""/>
14775 <param name=
"printoutForPrinting" type=
"Printout" default=
""/>
14776 <param name=
"data" type=
"PrintData" default=
""/>
14779 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
14780 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
14782 <param name=
"self" type=
"PyObject" default=
""/>
14783 <param name=
"_class" type=
"PyObject" default=
""/>
14786 <method name=
"base_SetCurrentPage" type=
"bool" overloaded=
"no">
14787 <autodoc>base_SetCurrentPage(int pageNum) -
> bool
</autodoc>
14789 <param name=
"pageNum" type=
"int" default=
""/>
14792 <method name=
"base_PaintPage" type=
"bool" overloaded=
"no">
14793 <autodoc>base_PaintPage(PreviewCanvas canvas, DC dc) -
> bool
</autodoc>
14795 <param name=
"canvas" type=
"PreviewCanvas" default=
""/>
14796 <param name=
"dc" type=
"DC" default=
""/>
14799 <method name=
"base_DrawBlankPage" type=
"bool" overloaded=
"no">
14800 <autodoc>base_DrawBlankPage(PreviewCanvas canvas, DC dc) -
> bool
</autodoc>
14802 <param name=
"canvas" type=
"PreviewCanvas" default=
""/>
14803 <param name=
"dc" type=
"DC" default=
""/>
14806 <method name=
"base_RenderPage" type=
"bool" overloaded=
"no">
14807 <autodoc>base_RenderPage(int pageNum) -
> bool
</autodoc>
14809 <param name=
"pageNum" type=
"int" default=
""/>
14812 <method name=
"base_SetZoom" type=
"" overloaded=
"no">
14813 <autodoc>base_SetZoom(int percent)
</autodoc>
14815 <param name=
"percent" type=
"int" default=
""/>
14818 <method name=
"base_Print" type=
"bool" overloaded=
"no">
14819 <autodoc>base_Print(bool interactive) -
> bool
</autodoc>
14821 <param name=
"interactive" type=
"bool" default=
""/>
14824 <method name=
"base_DetermineScaling" type=
"" overloaded=
"no">
14825 <autodoc>base_DetermineScaling()
</autodoc>
14828 <class name=
"PyPreviewFrame" oldname=
"wxPyPreviewFrame" module=
"windows">
14829 <baseclass name=
"PreviewFrame"/>
14830 <constructor name=
"PyPreviewFrame" overloaded=
"no">
14831 <autodoc>__init__(PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition,
14832 Size size=DefaultSize,
14833 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -
> PyPreviewFrame
</autodoc>
14835 <param name=
"preview" type=
"PrintPreview" default=
""/>
14836 <param name=
"parent" type=
"Frame" default=
""/>
14837 <param name=
"title" type=
"String" default=
""/>
14838 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
14839 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
14840 <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/>
14841 <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/>
14844 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
14845 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
14847 <param name=
"self" type=
"PyObject" default=
""/>
14848 <param name=
"_class" type=
"PyObject" default=
""/>
14851 <method name=
"SetPreviewCanvas" type=
"" overloaded=
"no">
14852 <autodoc>SetPreviewCanvas(PreviewCanvas canvas)
</autodoc>
14854 <param name=
"canvas" type=
"PreviewCanvas" default=
""/>
14857 <method name=
"SetControlBar" type=
"" overloaded=
"no">
14858 <autodoc>SetControlBar(PreviewControlBar bar)
</autodoc>
14860 <param name=
"bar" type=
"PreviewControlBar" default=
""/>
14863 <method name=
"base_Initialize" type=
"" overloaded=
"no">
14864 <autodoc>base_Initialize()
</autodoc>
14866 <method name=
"base_CreateCanvas" type=
"" overloaded=
"no">
14867 <autodoc>base_CreateCanvas()
</autodoc>
14869 <method name=
"base_CreateControlBar" type=
"" overloaded=
"no">
14870 <autodoc>base_CreateControlBar()
</autodoc>
14873 <class name=
"PyPreviewControlBar" oldname=
"wxPyPreviewControlBar" module=
"windows">
14874 <baseclass name=
"PreviewControlBar"/>
14875 <constructor name=
"PyPreviewControlBar" overloaded=
"no">
14876 <autodoc>__init__(PrintPreview preview, long buttons, Window parent,
14877 Point pos=DefaultPosition, Size size=DefaultSize,
14878 long style=
0, String name=PanelNameStr) -
> PyPreviewControlBar
</autodoc>
14880 <param name=
"preview" type=
"PrintPreview" default=
""/>
14881 <param name=
"buttons" type=
"long" default=
""/>
14882 <param name=
"parent" type=
"Window" default=
""/>
14883 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
14884 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
14885 <param name=
"style" type=
"long" default=
"0"/>
14886 <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/>
14889 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
14890 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
14892 <param name=
"self" type=
"PyObject" default=
""/>
14893 <param name=
"_class" type=
"PyObject" default=
""/>
14896 <method name=
"SetPrintPreview" type=
"" overloaded=
"no">
14897 <autodoc>SetPrintPreview(PrintPreview preview)
</autodoc>
14899 <param name=
"preview" type=
"PrintPreview" default=
""/>
14902 <method name=
"base_CreateButtons" type=
"" overloaded=
"no">
14903 <autodoc>base_CreateButtons()
</autodoc>
14905 <method name=
"base_SetZoomControl" type=
"" overloaded=
"no">
14906 <autodoc>base_SetZoomControl(int zoom)
</autodoc>
14908 <param name=
"zoom" type=
"int" default=
""/>
14913 <module name=
"controls">
14914 <import name=
"core"/>
14915 <pythoncode> wx = core
</pythoncode>
14917 #---------------------------------------------------------------------------
14919 <class name=
"Button" oldname=
"wxButton" module=
"controls">
14920 <docstring>A button is a control that contains a text string, and is one of the most
14921 common elements of a GUI. It may be placed on a dialog box or panel, or
14922 indeed almost any other window.
</docstring>
14925 wx.BU_LEFT: Left-justifies the label. WIN32 only.
14926 wx.BU_TOP: Aligns the label to the top of the button. WIN32 only.
14927 wx.BU_RIGHT: Right-justifies the bitmap label. WIN32 only.
14928 wx.BU_BOTTOM: Aligns the label to the bottom of the button. WIN32 only.
14929 wx.BU_EXACTFIT: Creates the button as small as possible instead of making
14930 it of the standard size (which is the default behaviour.)
14933 EVT_BUTTON: Sent when the button is clicked.
14935 <baseclass name=
"Control"/>
14936 <constructor name=
"Button" overloaded=
"no">
14937 <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition,
14938 Size size=DefaultSize, long style=
0,
14939 Validator validator=DefaultValidator, String name=ButtonNameStr) -
> Button
</autodoc>
14940 <docstring>Create and show a button.
</docstring>
14942 <param name=
"parent" type=
"Window" default=
""/>
14943 <param name=
"id" type=
"int" default=
""/>
14944 <param name=
"label" type=
"String" default=
""/>
14945 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
14946 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
14947 <param name=
"style" type=
"long" default=
"0"/>
14948 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
14949 <param name=
"name" type=
"String" default=
"wxPyButtonNameStr"/>
14952 <constructor name=
"PreButton" overloaded=
"no">
14953 <autodoc>PreButton() -
> Button
</autodoc>
14954 <docstring>Precreate a Button for
2-phase creation.
</docstring>
14956 <method name=
"Create" type=
"bool" overloaded=
"no">
14957 <autodoc>Create(Window parent, int id, String label, Point pos=DefaultPosition,
14958 Size size=DefaultSize, long style=
0,
14959 Validator validator=DefaultValidator, String name=ButtonNameStr) -
> bool
</autodoc>
14960 <docstring>Acutally create the GUI Button for
2-phase creation.
</docstring>
14962 <param name=
"parent" type=
"Window" default=
""/>
14963 <param name=
"id" type=
"int" default=
""/>
14964 <param name=
"label" type=
"String" default=
""/>
14965 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
14966 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
14967 <param name=
"style" type=
"long" default=
"0"/>
14968 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
14969 <param name=
"name" type=
"String" default=
"wxPyButtonNameStr"/>
14972 <method name=
"SetDefault" type=
"" overloaded=
"no">
14973 <autodoc>SetDefault()
</autodoc>
14974 <docstring>This sets the button to be the default item for the panel or dialog box.
</docstring>
14976 <staticmethod name=
"GetDefaultSize" type=
"Size" overloaded=
"no">
14977 <autodoc>GetDefaultSize() -
> Size
</autodoc>
14980 <class name=
"BitmapButton" oldname=
"wxBitmapButton" module=
"controls">
14981 <docstring>A Button that contains a bitmap. A bitmap button can be supplied with a
14982 single bitmap, and wxWindows will draw all button states using this bitmap. If
14983 the application needs more control, additional bitmaps for the selected state,
14984 unpressed focused state, and greyed-out state may be supplied.
14986 <baseclass name=
"Button"/>
14987 <constructor name=
"BitmapButton" overloaded=
"no">
14988 <autodoc>__init__(Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition,
14989 Size size=DefaultSize, long style=BU_AUTODRAW,
14990 Validator validator=DefaultValidator,
14991 String name=ButtonNameStr) -
> BitmapButton
</autodoc>
14992 <docstring>Create and show a button with a bitmap for the label.
</docstring>
14994 <param name=
"parent" type=
"Window" default=
""/>
14995 <param name=
"id" type=
"int" default=
""/>
14996 <param name=
"bitmap" type=
"Bitmap" default=
""/>
14997 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
14998 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
14999 <param name=
"style" type=
"long" default=
"wxBU_AUTODRAW"/>
15000 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
15001 <param name=
"name" type=
"String" default=
"wxPyButtonNameStr"/>
15004 <constructor name=
"PreBitmapButton" overloaded=
"no">
15005 <autodoc>PreBitmapButton() -
> BitmapButton
</autodoc>
15006 <docstring>Precreate a BitmapButton for
2-phase creation.
</docstring>
15008 <method name=
"Create" type=
"bool" overloaded=
"no">
15009 <autodoc>Create(Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition,
15010 Size size=DefaultSize, long style=BU_AUTODRAW,
15011 Validator validator=DefaultValidator,
15012 String name=ButtonNameStr) -
> bool
</autodoc>
15013 <docstring>Acutally create the GUI BitmapButton for
2-phase creation.
</docstring>
15015 <param name=
"parent" type=
"Window" default=
""/>
15016 <param name=
"id" type=
"int" default=
""/>
15017 <param name=
"bitmap" type=
"Bitmap" default=
""/>
15018 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15019 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15020 <param name=
"style" type=
"long" default=
"wxBU_AUTODRAW"/>
15021 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
15022 <param name=
"name" type=
"String" default=
"wxPyButtonNameStr"/>
15025 <method name=
"GetBitmapLabel" type=
"Bitmap" overloaded=
"no">
15026 <autodoc>GetBitmapLabel() -
> Bitmap
</autodoc>
15027 <docstring>Returns the label bitmap (the one passed to the constructor).
</docstring>
15029 <method name=
"GetBitmapDisabled" type=
"Bitmap" overloaded=
"no">
15030 <autodoc>GetBitmapDisabled() -
> Bitmap
</autodoc>
15031 <docstring>Returns the bitmap for the disabled state.
</docstring>
15033 <method name=
"GetBitmapFocus" type=
"Bitmap" overloaded=
"no">
15034 <autodoc>GetBitmapFocus() -
> Bitmap
</autodoc>
15035 <docstring>Returns the bitmap for the focused state.
</docstring>
15037 <method name=
"GetBitmapSelected" type=
"Bitmap" overloaded=
"no">
15038 <autodoc>GetBitmapSelected() -
> Bitmap
</autodoc>
15039 <docstring>Returns the bitmap for the selected state.
</docstring>
15041 <method name=
"SetBitmapDisabled" type=
"" overloaded=
"no">
15042 <autodoc>SetBitmapDisabled(Bitmap bitmap)
</autodoc>
15043 <docstring>Sets the bitmap for the disabled button appearance.
</docstring>
15045 <param name=
"bitmap" type=
"Bitmap" default=
""/>
15048 <method name=
"SetBitmapFocus" type=
"" overloaded=
"no">
15049 <autodoc>SetBitmapFocus(Bitmap bitmap)
</autodoc>
15050 <docstring>Sets the bitmap for the button appearance when it has the keyboard focus.
</docstring>
15052 <param name=
"bitmap" type=
"Bitmap" default=
""/>
15055 <method name=
"SetBitmapSelected" type=
"" overloaded=
"no">
15056 <autodoc>SetBitmapSelected(Bitmap bitmap)
</autodoc>
15057 <docstring>Sets the bitmap for the selected (depressed) button appearance.
</docstring>
15059 <param name=
"bitmap" type=
"Bitmap" default=
""/>
15062 <method name=
"SetBitmapLabel" type=
"" overloaded=
"no">
15063 <autodoc>SetBitmapLabel(Bitmap bitmap)
</autodoc>
15064 <docstring>Sets the bitmap label for the button. This is the bitmap used for the
15065 unselected state, and for all other states if no other bitmaps are provided.
</docstring>
15067 <param name=
"bitmap" type=
"Bitmap" default=
""/>
15070 <method name=
"SetMargins" type=
"" overloaded=
"no">
15071 <autodoc>SetMargins(int x, int y)
</autodoc>
15073 <param name=
"x" type=
"int" default=
""/>
15074 <param name=
"y" type=
"int" default=
""/>
15077 <method name=
"GetMarginX" type=
"int" overloaded=
"no">
15078 <autodoc>GetMarginX() -
> int
</autodoc>
15080 <method name=
"GetMarginY" type=
"int" overloaded=
"no">
15081 <autodoc>GetMarginY() -
> int
</autodoc>
15085 #---------------------------------------------------------------------------
15087 <class name=
"CheckBox" oldname=
"wxCheckBox" module=
"controls">
15088 <docstring>A checkbox is a labelled box which by default is either on (checkmark is
15089 visible) or off (no checkmark). Optionally (When the wxCHK_3STATE style flag
15090 is set) it can have a third state, called the mixed or undetermined
15091 state. Often this is used as a "Does Not Apply" state.
</docstring>
15094 wx.CHK_2STATE: Create a
2-state checkbox. This is the default.
15095 wx.CHK_3STATE: Create a
3-state checkbox.
15096 wx.CHK_ALLOW_3RD_STATE_FOR_USER: By default a user can't set a
3-state
15097 checkbox to the third state. It can only
15098 be done from code. Using this flags
15099 allows the user to set the checkbox to
15100 the third state by clicking.
15101 wx.ALIGN_RIGHT: Makes the text appear on the left of the checkbox.
15104 EVT_CHECKBOX: Sent when checkbox is clicked.
15106 <baseclass name=
"Control"/>
15107 <constructor name=
"CheckBox" overloaded=
"no">
15108 <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition,
15109 Size size=DefaultSize, long style=
0,
15110 Validator validator=DefaultValidator, String name=CheckBoxNameStr) -
> CheckBox
</autodoc>
15111 <docstring>Creates and shows a CheckBox control
</docstring>
15114 wx.CHK_2STATE: Create a
2-state checkbox. This is the default.
15115 wx.CHK_3STATE: Create a
3-state checkbox.
15116 wx.CHK_ALLOW_3RD_STATE_FOR_USER: By default a user can't set a
3-state
15117 checkbox to the third state. It can only
15118 be done from code. Using this flags
15119 allows the user to set the checkbox to
15120 the third state by clicking.
15121 wx.ALIGN_RIGHT: Makes the text appear on the left of the checkbox.
15124 EVT_CHECKBOX: Sent when checkbox is clicked.
15127 <param name=
"parent" type=
"Window" default=
""/>
15128 <param name=
"id" type=
"int" default=
""/>
15129 <param name=
"label" type=
"String" default=
""/>
15130 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15131 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15132 <param name=
"style" type=
"long" default=
"0"/>
15133 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
15134 <param name=
"name" type=
"String" default=
"wxPyCheckBoxNameStr"/>
15137 <constructor name=
"PreCheckBox" overloaded=
"no">
15138 <autodoc>PreCheckBox() -
> CheckBox
</autodoc>
15139 <docstring>Precreate a CheckBox for
2-phase creation.
</docstring>
15142 wx.CHK_2STATE: Create a
2-state checkbox. This is the default.
15143 wx.CHK_3STATE: Create a
3-state checkbox.
15144 wx.CHK_ALLOW_3RD_STATE_FOR_USER: By default a user can't set a
3-state
15145 checkbox to the third state. It can only
15146 be done from code. Using this flags
15147 allows the user to set the checkbox to
15148 the third state by clicking.
15149 wx.ALIGN_RIGHT: Makes the text appear on the left of the checkbox.
15152 EVT_CHECKBOX: Sent when checkbox is clicked.
15155 <method name=
"Create" type=
"bool" overloaded=
"no">
15156 <autodoc>Create(Window parent, int id, String label, Point pos=DefaultPosition,
15157 Size size=DefaultSize, long style=
0,
15158 Validator validator=DefaultValidator, String name=CheckBoxNameStr) -
> bool
</autodoc>
15159 <docstring>Actually create the GUI CheckBox for
2-phase creation.
</docstring>
15161 <param name=
"parent" type=
"Window" default=
""/>
15162 <param name=
"id" type=
"int" default=
""/>
15163 <param name=
"label" type=
"String" default=
""/>
15164 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15165 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15166 <param name=
"style" type=
"long" default=
"0"/>
15167 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
15168 <param name=
"name" type=
"String" default=
"wxPyCheckBoxNameStr"/>
15171 <method name=
"GetValue" type=
"bool" overloaded=
"no">
15172 <autodoc>GetValue() -
> bool
</autodoc>
15173 <docstring>Gets the state of a
2-state CheckBox. Returns True if it is checked,
15174 False otherwise.
</docstring>
15176 <method name=
"IsChecked" type=
"bool" overloaded=
"no">
15177 <autodoc>IsChecked() -
> bool
</autodoc>
15178 <docstring>Similar to GetValue, but raises an exception if it is not a
2-state CheckBox.
</docstring>
15180 <method name=
"SetValue" type=
"" overloaded=
"no">
15181 <autodoc>SetValue(bool state)
</autodoc>
15182 <docstring>Set the state of a
2-state CheckBox. Pass True for checked,
15183 False for unchecked.
</docstring>
15185 <param name=
"state" type=
"bool" default=
""/>
15188 <method name=
"Get3StateValue" type=
"wxCheckBoxState" overloaded=
"no">
15189 <autodoc>Get3StateValue() -
> int
</autodoc>
15190 <docstring>Returns wx.CHK_UNCHECKED when the CheckBox is unchecked, wx.CHK_CHECKED when
15191 it is checked and wx.CHK_UNDETERMINED when it's in the undetermined state.
15192 Raises an exceptiion when the function is used with a
2-state CheckBox.
</docstring>
15194 <method name=
"Set3StateValue" type=
"" overloaded=
"no">
15195 <autodoc>Set3StateValue(int state)
</autodoc>
15196 <docstring>Sets the CheckBox to the given state. The state parameter can be
15197 one of the following: wx.CHK_UNCHECKED (Check is off), wx.CHK_CHECKED
15198 (Check is on) or wx.CHK_UNDETERMINED (Check is mixed). Raises an
15199 exception when the CheckBox is a
2-state checkbox and setting the state
15200 to wx.CHK_UNDETERMINED.
</docstring>
15202 <param name=
"state" type=
"wxCheckBoxState" default=
""/>
15205 <method name=
"Is3State" type=
"bool" overloaded=
"no">
15206 <autodoc>Is3State() -
> bool
</autodoc>
15207 <docstring>Returns whether or not the CheckBox is a
3-state CheckBox.
</docstring>
15209 <method name=
"Is3rdStateAllowedForUser" type=
"bool" overloaded=
"no">
15210 <autodoc>Is3rdStateAllowedForUser() -
> bool
</autodoc>
15211 <docstring>Returns whether or not the user can set the CheckBox to the third state.
</docstring>
15215 #---------------------------------------------------------------------------
15217 <class name=
"Choice" oldname=
"wxChoice" module=
"controls">
15218 <docstring>A Choice control is used to select one of a list of strings. Unlike a ListBox,
15219 only the selection is visible until the user pulls down the menu of choices.
</docstring>
15222 EVT_CHOICE: Sent when an item in the list is selected.
15224 <baseclass name=
"ControlWithItems"/>
15225 <constructor name=
"Choice" overloaded=
"no">
15226 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
15227 List choices=[], long style=
0, Validator validator=DefaultValidator,
15228 String name=ChoiceNameStr) -
> Choice
</autodoc>
15229 <docstring>Create and show a Choice control
</docstring>
15232 EVT_CHOICE: Sent when an item in the list is selected.
15235 <param name=
"parent" type=
"Window" default=
""/>
15236 <param name=
"id" type=
"int" default=
""/>
15237 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15238 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15239 <param name=
"choices" type=
"wxArrayString" default=
"wxPyEmptyStringArray"/>
15240 <param name=
"style" type=
"long" default=
"0"/>
15241 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
15242 <param name=
"name" type=
"String" default=
"wxPyChoiceNameStr"/>
15245 <constructor name=
"PreChoice" overloaded=
"no">
15246 <autodoc>PreChoice() -
> Choice
</autodoc>
15247 <docstring>Precreate a Choice control for
2-phase creation.
</docstring>
15250 EVT_CHOICE: Sent when an item in the list is selected.
15253 <method name=
"Create" type=
"bool" overloaded=
"no">
15254 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
15255 List choices=[], long style=
0, Validator validator=DefaultValidator,
15256 String name=ChoiceNameStr) -
> bool
</autodoc>
15257 <docstring>Actually create the GUI Choice control for
2-phase creation
</docstring>
15259 <param name=
"parent" type=
"Window" default=
""/>
15260 <param name=
"id" type=
"int" default=
""/>
15261 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15262 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15263 <param name=
"choices" type=
"wxArrayString" default=
"wxPyEmptyStringArray"/>
15264 <param name=
"style" type=
"long" default=
"0"/>
15265 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
15266 <param name=
"name" type=
"String" default=
"wxPyChoiceNameStr"/>
15269 <method name=
"SetSelection" type=
"" overloaded=
"no">
15270 <autodoc>SetSelection(int n)
</autodoc>
15271 <docstring>Select the n'th item (zero based) in the list.
</docstring>
15273 <param name=
"n" type=
"int" default=
""/>
15276 <method name=
"SetStringSelection" type=
"" overloaded=
"no">
15277 <autodoc>SetStringSelection(String string)
</autodoc>
15278 <docstring>Select the item with the specifed string
</docstring>
15280 <param name=
"string" type=
"String" default=
""/>
15283 <method name=
"SetString" type=
"" overloaded=
"no">
15284 <autodoc>SetString(int n, String string)
</autodoc>
15285 <docstring>Set the label for the n'th item (zero based) in the list.
</docstring>
15287 <param name=
"n" type=
"int" default=
""/>
15288 <param name=
"string" type=
"String" default=
""/>
15293 #---------------------------------------------------------------------------
15295 <class name=
"ComboBox" oldname=
"wxComboBox" module=
"controls">
15296 <docstring>A combobox is like a combination of an edit control and a listbox. It can be
15297 displayed as static list with editable or read-only text field; or a drop-down
15298 list with text field.
</docstring>
15301 wx.CB_SIMPLE: Creates a combobox with a permanently displayed list.
15304 wx.CB_DROPDOWN: Creates a combobox with a drop-down list.
15306 wx.CB_READONLY: Same as wxCB_DROPDOWN but only the strings specified as
15307 the combobox choices can be selected, it is impossible
15308 to select (even from a program) a string which is not in
15311 wx.CB_SORT: Sorts the entries in the list alphabetically.
15315 EVT_COMBOBOX: Sent when an item on the list is selected.
15316 EVT_TEXT: Sent when the combobox text changes.
15318 <baseclass name=
"Control"/>
15319 <baseclass name=
"ItemContainer"/>
15320 <constructor name=
"ComboBox" overloaded=
"no">
15321 <autodoc>__init__(Window parent, int id, String value=EmptyString,
15322 Point pos=DefaultPosition, Size size=DefaultSize,
15323 List choices=[], long style=
0, Validator validator=DefaultValidator,
15324 String name=ComboBoxNameStr) -
> ComboBox
</autodoc>
15325 <docstring>Constructor, creates and shows a ComboBox control.
</docstring>
15328 wx.CB_SIMPLE: Creates a combobox with a permanently displayed list.
15331 wx.CB_DROPDOWN: Creates a combobox with a drop-down list.
15333 wx.CB_READONLY: Same as wxCB_DROPDOWN but only the strings specified as
15334 the combobox choices can be selected, it is impossible
15335 to select (even from a program) a string which is not in
15338 wx.CB_SORT: Sorts the entries in the list alphabetically.
15342 EVT_COMBOBOX: Sent when an item on the list is selected.
15343 EVT_TEXT: Sent when the combobox text changes.
15346 <param name=
"parent" type=
"Window" default=
""/>
15347 <param name=
"id" type=
"int" default=
""/>
15348 <param name=
"value" type=
"String" default=
"wxPyEmptyString"/>
15349 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15350 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15351 <param name=
"choices" type=
"wxArrayString" default=
"wxPyEmptyStringArray"/>
15352 <param name=
"style" type=
"long" default=
"0"/>
15353 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
15354 <param name=
"name" type=
"String" default=
"wxPyComboBoxNameStr"/>
15357 <constructor name=
"PreComboBox" overloaded=
"no">
15358 <autodoc>PreComboBox() -
> ComboBox
</autodoc>
15359 <docstring>Precreate a ComboBox control for
2-phase creation.
</docstring>
15362 wx.CB_SIMPLE: Creates a combobox with a permanently displayed list.
15365 wx.CB_DROPDOWN: Creates a combobox with a drop-down list.
15367 wx.CB_READONLY: Same as wxCB_DROPDOWN but only the strings specified as
15368 the combobox choices can be selected, it is impossible
15369 to select (even from a program) a string which is not in
15372 wx.CB_SORT: Sorts the entries in the list alphabetically.
15376 EVT_COMBOBOX: Sent when an item on the list is selected.
15377 EVT_TEXT: Sent when the combobox text changes.
15380 <method name=
"Create" type=
"bool" overloaded=
"no">
15381 <autodoc>Create(Window parent, int id, String value=EmptyString,
15382 Point pos=DefaultPosition, Size size=DefaultSize,
15383 List choices=[], long style=
0, Validator validator=DefaultValidator,
15384 String name=ChoiceNameStr) -
> bool
</autodoc>
15385 <docstring>Actually create the GUI wxComboBox control for
2-phase creation
</docstring>
15387 <param name=
"parent" type=
"Window" default=
""/>
15388 <param name=
"id" type=
"int" default=
""/>
15389 <param name=
"value" type=
"String" default=
"wxPyEmptyString"/>
15390 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15391 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15392 <param name=
"choices" type=
"wxArrayString" default=
"wxPyEmptyStringArray"/>
15393 <param name=
"style" type=
"long" default=
"0"/>
15394 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
15395 <param name=
"name" type=
"String" default=
"wxPyChoiceNameStr"/>
15398 <method name=
"GetValue" type=
"String" overloaded=
"no">
15399 <autodoc>GetValue() -
> String
</autodoc>
15400 <docstring>Returns the current value in the combobox text field.
</docstring>
15402 <method name=
"SetValue" type=
"" overloaded=
"no">
15403 <autodoc>SetValue(String value)
</autodoc>
15405 <param name=
"value" type=
"String" default=
""/>
15408 <method name=
"Copy" type=
"" overloaded=
"no">
15409 <autodoc>Copy()
</autodoc>
15410 <docstring>Copies the selected text to the clipboard.
</docstring>
15412 <method name=
"Cut" type=
"" overloaded=
"no">
15413 <autodoc>Cut()
</autodoc>
15414 <docstring>Copies the selected text to the clipboard and removes the selection.
</docstring>
15416 <method name=
"Paste" type=
"" overloaded=
"no">
15417 <autodoc>Paste()
</autodoc>
15418 <docstring>Pastes text from the clipboard to the text field.
</docstring>
15420 <method name=
"SetInsertionPoint" type=
"" overloaded=
"no">
15421 <autodoc>SetInsertionPoint(long pos)
</autodoc>
15422 <docstring>Sets the insertion point in the combobox text field.
</docstring>
15424 <param name=
"pos" type=
"long" default=
""/>
15427 <method name=
"GetInsertionPoint" type=
"long" overloaded=
"no">
15428 <autodoc>GetInsertionPoint() -
> long
</autodoc>
15429 <docstring>Returns the insertion point for the combobox's text field.
</docstring>
15431 <method name=
"GetLastPosition" type=
"long" overloaded=
"no">
15432 <autodoc>GetLastPosition() -
> long
</autodoc>
15433 <docstring>Returns the last position in the combobox text field.
</docstring>
15435 <method name=
"Replace" type=
"" overloaded=
"no">
15436 <autodoc>Replace(long from, long to, String value)
</autodoc>
15437 <docstring>Replaces the text between two positions with the given text, in the
15438 combobox text field.
</docstring>
15440 <param name=
"from" type=
"long" default=
""/>
15441 <param name=
"to" type=
"long" default=
""/>
15442 <param name=
"value" type=
"String" default=
""/>
15445 <method name=
"SetSelection" type=
"" overloaded=
"no">
15446 <autodoc>SetSelection(int n)
</autodoc>
15447 <docstring>Selects the text between the two positions, in the combobox text field.
</docstring>
15449 <param name=
"n" type=
"int" default=
""/>
15452 <method name=
"SetMark" type=
"" overloaded=
"no">
15453 <autodoc>SetMark(long from, long to)
</autodoc>
15455 <param name=
"from" type=
"long" default=
""/>
15456 <param name=
"to" type=
"long" default=
""/>
15459 <method name=
"SetEditable" type=
"" overloaded=
"no">
15460 <autodoc>SetEditable(bool editable)
</autodoc>
15462 <param name=
"editable" type=
"bool" default=
""/>
15465 <method name=
"SetInsertionPointEnd" type=
"" overloaded=
"no">
15466 <autodoc>SetInsertionPointEnd()
</autodoc>
15467 <docstring>Sets the insertion point at the end of the combobox text field.
</docstring>
15469 <method name=
"Remove" type=
"" overloaded=
"no">
15470 <autodoc>Remove(long from, long to)
</autodoc>
15471 <docstring>Removes the text between the two positions in the combobox text field.
</docstring>
15473 <param name=
"from" type=
"long" default=
""/>
15474 <param name=
"to" type=
"long" default=
""/>
15479 #---------------------------------------------------------------------------
15481 <class name=
"Gauge" oldname=
"wxGauge" module=
"controls">
15482 <baseclass name=
"Control"/>
15483 <constructor name=
"Gauge" overloaded=
"no">
15484 <autodoc>__init__(Window parent, int id, int range, Point pos=DefaultPosition,
15485 Size size=DefaultSize, long style=GA_HORIZONTAL,
15486 Validator validator=DefaultValidator,
15487 String name=GaugeNameStr) -
> Gauge
</autodoc>
15489 <param name=
"parent" type=
"Window" default=
""/>
15490 <param name=
"id" type=
"int" default=
""/>
15491 <param name=
"range" type=
"int" default=
""/>
15492 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15493 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15494 <param name=
"style" type=
"long" default=
"wxGA_HORIZONTAL"/>
15495 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
15496 <param name=
"name" type=
"String" default=
"wxPyGaugeNameStr"/>
15499 <constructor name=
"PreGauge" overloaded=
"no">
15500 <autodoc>PreGauge() -
> Gauge
</autodoc>
15502 <method name=
"Create" type=
"bool" overloaded=
"no">
15503 <autodoc>Create(Window parent, int id, int range, Point pos=DefaultPosition,
15504 Size size=DefaultSize, long style=GA_HORIZONTAL,
15505 Validator validator=DefaultValidator,
15506 String name=GaugeNameStr) -
> bool
</autodoc>
15508 <param name=
"parent" type=
"Window" default=
""/>
15509 <param name=
"id" type=
"int" default=
""/>
15510 <param name=
"range" type=
"int" default=
""/>
15511 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15512 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15513 <param name=
"style" type=
"long" default=
"wxGA_HORIZONTAL"/>
15514 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
15515 <param name=
"name" type=
"String" default=
"wxPyGaugeNameStr"/>
15518 <method name=
"SetRange" type=
"" overloaded=
"no">
15519 <autodoc>SetRange(int range)
</autodoc>
15521 <param name=
"range" type=
"int" default=
""/>
15524 <method name=
"GetRange" type=
"int" overloaded=
"no">
15525 <autodoc>GetRange() -
> int
</autodoc>
15527 <method name=
"SetValue" type=
"" overloaded=
"no">
15528 <autodoc>SetValue(int pos)
</autodoc>
15530 <param name=
"pos" type=
"int" default=
""/>
15533 <method name=
"GetValue" type=
"int" overloaded=
"no">
15534 <autodoc>GetValue() -
> int
</autodoc>
15536 <method name=
"IsVertical" type=
"bool" overloaded=
"no">
15537 <autodoc>IsVertical() -
> bool
</autodoc>
15539 <method name=
"SetShadowWidth" type=
"" overloaded=
"no">
15540 <autodoc>SetShadowWidth(int w)
</autodoc>
15542 <param name=
"w" type=
"int" default=
""/>
15545 <method name=
"GetShadowWidth" type=
"int" overloaded=
"no">
15546 <autodoc>GetShadowWidth() -
> int
</autodoc>
15548 <method name=
"SetBezelFace" type=
"" overloaded=
"no">
15549 <autodoc>SetBezelFace(int w)
</autodoc>
15551 <param name=
"w" type=
"int" default=
""/>
15554 <method name=
"GetBezelFace" type=
"int" overloaded=
"no">
15555 <autodoc>GetBezelFace() -
> int
</autodoc>
15559 #---------------------------------------------------------------------------
15561 <class name=
"StaticBox" oldname=
"wxStaticBox" module=
"controls">
15562 <baseclass name=
"Control"/>
15563 <constructor name=
"StaticBox" overloaded=
"no">
15564 <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition,
15565 Size size=DefaultSize, long style=
0,
15566 String name=StaticBoxNameStr) -
> StaticBox
</autodoc>
15568 <param name=
"parent" type=
"Window" default=
""/>
15569 <param name=
"id" type=
"int" default=
""/>
15570 <param name=
"label" type=
"String" default=
""/>
15571 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15572 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15573 <param name=
"style" type=
"long" default=
"0"/>
15574 <param name=
"name" type=
"String" default=
"wxPyStaticBoxNameStr"/>
15577 <constructor name=
"PreStaticBox" overloaded=
"no">
15578 <autodoc>PreStaticBox() -
> StaticBox
</autodoc>
15580 <method name=
"Create" type=
"bool" overloaded=
"no">
15581 <autodoc>Create(Window parent, int id, String label, Point pos=DefaultPosition,
15582 Size size=DefaultSize, long style=
0,
15583 String name=StaticBoxNameStr) -
> bool
</autodoc>
15585 <param name=
"parent" type=
"Window" default=
""/>
15586 <param name=
"id" type=
"int" default=
""/>
15587 <param name=
"label" type=
"String" default=
""/>
15588 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15589 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15590 <param name=
"style" type=
"long" default=
"0"/>
15591 <param name=
"name" type=
"String" default=
"wxPyStaticBoxNameStr"/>
15596 #---------------------------------------------------------------------------
15598 <class name=
"StaticLine" oldname=
"wxStaticLine" module=
"controls">
15599 <baseclass name=
"Control"/>
15600 <constructor name=
"StaticLine" overloaded=
"no">
15601 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
15602 long style=LI_HORIZONTAL,
15603 String name=StaticTextNameStr) -
> StaticLine
</autodoc>
15605 <param name=
"parent" type=
"Window" default=
""/>
15606 <param name=
"id" type=
"int" default=
""/>
15607 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15608 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15609 <param name=
"style" type=
"long" default=
"wxLI_HORIZONTAL"/>
15610 <param name=
"name" type=
"String" default=
"wxPyStaticTextNameStr"/>
15613 <constructor name=
"PreStaticLine" overloaded=
"no">
15614 <autodoc>PreStaticLine() -
> StaticLine
</autodoc>
15616 <method name=
"Create" type=
"bool" overloaded=
"no">
15617 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
15618 long style=LI_HORIZONTAL,
15619 String name=StaticTextNameStr) -
> bool
</autodoc>
15621 <param name=
"parent" type=
"Window" default=
""/>
15622 <param name=
"id" type=
"int" default=
""/>
15623 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15624 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15625 <param name=
"style" type=
"long" default=
"wxLI_HORIZONTAL"/>
15626 <param name=
"name" type=
"String" default=
"wxPyStaticTextNameStr"/>
15629 <method name=
"IsVertical" type=
"bool" overloaded=
"no">
15630 <autodoc>IsVertical() -
> bool
</autodoc>
15632 <staticmethod name=
"GetDefaultSize" type=
"int" overloaded=
"no">
15633 <autodoc>GetDefaultSize() -
> int
</autodoc>
15637 #---------------------------------------------------------------------------
15639 <class name=
"StaticText" oldname=
"wxStaticText" module=
"controls">
15640 <baseclass name=
"Control"/>
15641 <constructor name=
"StaticText" overloaded=
"no">
15642 <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition,
15643 Size size=DefaultSize, long style=
0,
15644 String name=StaticTextNameStr) -
> StaticText
</autodoc>
15646 <param name=
"parent" type=
"Window" default=
""/>
15647 <param name=
"id" type=
"int" default=
""/>
15648 <param name=
"label" type=
"String" default=
""/>
15649 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15650 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15651 <param name=
"style" type=
"long" default=
"0"/>
15652 <param name=
"name" type=
"String" default=
"wxPyStaticTextNameStr"/>
15655 <constructor name=
"PreStaticText" overloaded=
"no">
15656 <autodoc>PreStaticText() -
> StaticText
</autodoc>
15658 <method name=
"Create" type=
"bool" overloaded=
"no">
15659 <autodoc>Create(Window parent, int id, String label, Point pos=DefaultPosition,
15660 Size size=DefaultSize, long style=
0,
15661 String name=StaticTextNameStr) -
> bool
</autodoc>
15663 <param name=
"parent" type=
"Window" default=
""/>
15664 <param name=
"id" type=
"int" default=
""/>
15665 <param name=
"label" type=
"String" default=
""/>
15666 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15667 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15668 <param name=
"style" type=
"long" default=
"0"/>
15669 <param name=
"name" type=
"String" default=
"wxPyStaticTextNameStr"/>
15674 #---------------------------------------------------------------------------
15676 <class name=
"StaticBitmap" oldname=
"wxStaticBitmap" module=
"controls">
15677 <baseclass name=
"Control"/>
15678 <constructor name=
"StaticBitmap" overloaded=
"no">
15679 <autodoc>__init__(Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition,
15680 Size size=DefaultSize, long style=
0,
15681 String name=StaticBitmapNameStr) -
> StaticBitmap
</autodoc>
15683 <param name=
"parent" type=
"Window" default=
""/>
15684 <param name=
"id" type=
"int" default=
""/>
15685 <param name=
"bitmap" type=
"Bitmap" default=
""/>
15686 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15687 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15688 <param name=
"style" type=
"long" default=
"0"/>
15689 <param name=
"name" type=
"String" default=
"wxPyStaticBitmapNameStr"/>
15692 <constructor name=
"PreStaticBitmap" overloaded=
"no">
15693 <autodoc>PreStaticBitmap() -
> StaticBitmap
</autodoc>
15695 <method name=
"Create" type=
"bool" overloaded=
"no">
15696 <autodoc>Create(Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition,
15697 Size size=DefaultSize, long style=
0,
15698 String name=StaticBitmapNameStr) -
> bool
</autodoc>
15700 <param name=
"parent" type=
"Window" default=
""/>
15701 <param name=
"id" type=
"int" default=
""/>
15702 <param name=
"bitmap" type=
"Bitmap" default=
""/>
15703 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15704 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15705 <param name=
"style" type=
"long" default=
"0"/>
15706 <param name=
"name" type=
"String" default=
"wxPyStaticBitmapNameStr"/>
15709 <method name=
"GetBitmap" type=
"Bitmap" overloaded=
"no">
15710 <autodoc>GetBitmap() -
> Bitmap
</autodoc>
15712 <method name=
"SetBitmap" type=
"" overloaded=
"no">
15713 <autodoc>SetBitmap(Bitmap bitmap)
</autodoc>
15715 <param name=
"bitmap" type=
"Bitmap" default=
""/>
15718 <method name=
"SetIcon" type=
"" overloaded=
"no">
15719 <autodoc>SetIcon(Icon icon)
</autodoc>
15721 <param name=
"icon" type=
"Icon" default=
""/>
15726 #---------------------------------------------------------------------------
15728 <class name=
"ListBox" oldname=
"wxListBox" module=
"controls">
15729 <baseclass name=
"ControlWithItems"/>
15730 <constructor name=
"ListBox" overloaded=
"no">
15731 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
15732 wxArrayString choices=wxPyEmptyStringArray,
15733 long style=
0, Validator validator=DefaultValidator,
15734 String name=ListBoxNameStr) -
> ListBox
</autodoc>
15736 <param name=
"parent" type=
"Window" default=
""/>
15737 <param name=
"id" type=
"int" default=
""/>
15738 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15739 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15740 <param name=
"choices" type=
"wxArrayString" default=
"wxPyEmptyStringArray"/>
15741 <param name=
"style" type=
"long" default=
"0"/>
15742 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
15743 <param name=
"name" type=
"String" default=
"wxPyListBoxNameStr"/>
15746 <constructor name=
"PreListBox" overloaded=
"no">
15747 <autodoc>PreListBox() -
> ListBox
</autodoc>
15749 <method name=
"Create" type=
"bool" overloaded=
"no">
15750 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
15751 wxArrayString choices=wxPyEmptyStringArray,
15752 long style=
0, Validator validator=DefaultValidator,
15753 String name=ListBoxNameStr) -
> bool
</autodoc>
15755 <param name=
"parent" type=
"Window" default=
""/>
15756 <param name=
"id" type=
"int" default=
""/>
15757 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15758 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15759 <param name=
"choices" type=
"wxArrayString" default=
"wxPyEmptyStringArray"/>
15760 <param name=
"style" type=
"long" default=
"0"/>
15761 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
15762 <param name=
"name" type=
"String" default=
"wxPyListBoxNameStr"/>
15765 <method name=
"Insert" type=
"" overloaded=
"no">
15766 <autodoc>Insert(String item, int pos, PyObject clientData=None)
</autodoc>
15767 <docstring>Insert an item into the control before the item at the pos index,
15768 optionally associating some data object with the item.
</docstring>
15770 <param name=
"item" type=
"String" default=
""/>
15771 <param name=
"pos" type=
"int" default=
""/>
15772 <param name=
"clientData" type=
"PyObject" default=
"NULL"/>
15775 <method name=
"InsertItems" type=
"" overloaded=
"no">
15776 <autodoc>InsertItems(wxArrayString items, int pos)
</autodoc>
15778 <param name=
"items" type=
"wxArrayString" default=
""/>
15779 <param name=
"pos" type=
"int" default=
""/>
15782 <method name=
"Set" type=
"" overloaded=
"no">
15783 <autodoc>Set(wxArrayString items)
</autodoc>
15785 <param name=
"items" type=
"wxArrayString" default=
""/>
15788 <method name=
"IsSelected" type=
"bool" overloaded=
"no">
15789 <autodoc>IsSelected(int n) -
> bool
</autodoc>
15791 <param name=
"n" type=
"int" default=
""/>
15794 <method name=
"SetSelection" type=
"" overloaded=
"no">
15795 <autodoc>SetSelection(int n, bool select=True)
</autodoc>
15797 <param name=
"n" type=
"int" default=
""/>
15798 <param name=
"select" type=
"bool" default=
"True"/>
15801 <method name=
"Select" type=
"" overloaded=
"no">
15802 <autodoc>Select(int n)
</autodoc>
15803 <docstring>Sets the item at index 'n' to be the selected item.
</docstring>
15805 <param name=
"n" type=
"int" default=
""/>
15808 <method name=
"Deselect" type=
"" overloaded=
"no">
15809 <autodoc>Deselect(int n)
</autodoc>
15811 <param name=
"n" type=
"int" default=
""/>
15814 <method name=
"DeselectAll" type=
"" overloaded=
"no">
15815 <autodoc>DeselectAll(int itemToLeaveSelected=-
1)
</autodoc>
15817 <param name=
"itemToLeaveSelected" type=
"int" default=
"-1"/>
15820 <method name=
"SetStringSelection" type=
"bool" overloaded=
"no">
15821 <autodoc>SetStringSelection(String s, bool select=True) -
> bool
</autodoc>
15823 <param name=
"s" type=
"String" default=
""/>
15824 <param name=
"select" type=
"bool" default=
"True"/>
15827 <method name=
"GetSelections" type=
"PyObject" overloaded=
"no">
15828 <autodoc>GetSelections() -
> PyObject
</autodoc>
15830 <method name=
"SetFirstItem" type=
"" overloaded=
"no">
15831 <autodoc>SetFirstItem(int n)
</autodoc>
15833 <param name=
"n" type=
"int" default=
""/>
15836 <method name=
"SetFirstItemStr" type=
"" overloaded=
"no">
15837 <autodoc>SetFirstItemStr(String s)
</autodoc>
15839 <param name=
"s" type=
"String" default=
""/>
15842 <method name=
"EnsureVisible" type=
"" overloaded=
"no">
15843 <autodoc>EnsureVisible(int n)
</autodoc>
15845 <param name=
"n" type=
"int" default=
""/>
15848 <method name=
"AppendAndEnsureVisible" type=
"" overloaded=
"no">
15849 <autodoc>AppendAndEnsureVisible(String s)
</autodoc>
15851 <param name=
"s" type=
"String" default=
""/>
15854 <method name=
"IsSorted" type=
"bool" overloaded=
"no">
15855 <autodoc>IsSorted() -
> bool
</autodoc>
15857 <method name=
"SetItemForegroundColour" type=
"" overloaded=
"no">
15858 <autodoc>SetItemForegroundColour(int item, Colour c)
</autodoc>
15860 <param name=
"item" type=
"int" default=
""/>
15861 <param name=
"c" type=
"Colour" default=
""/>
15864 <method name=
"SetItemBackgroundColour" type=
"" overloaded=
"no">
15865 <autodoc>SetItemBackgroundColour(int item, Colour c)
</autodoc>
15867 <param name=
"item" type=
"int" default=
""/>
15868 <param name=
"c" type=
"Colour" default=
""/>
15871 <method name=
"SetItemFont" type=
"" overloaded=
"no">
15872 <autodoc>SetItemFont(int item, Font f)
</autodoc>
15874 <param name=
"item" type=
"int" default=
""/>
15875 <param name=
"f" type=
"Font" default=
""/>
15880 #---------------------------------------------------------------------------
15882 <class name=
"CheckListBox" oldname=
"wxCheckListBox" module=
"controls">
15883 <baseclass name=
"ListBox"/>
15884 <constructor name=
"CheckListBox" overloaded=
"no">
15885 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
15886 wxArrayString choices=wxPyEmptyStringArray,
15887 long style=
0, Validator validator=DefaultValidator,
15888 String name=ListBoxNameStr) -
> CheckListBox
</autodoc>
15890 <param name=
"parent" type=
"Window" default=
""/>
15891 <param name=
"id" type=
"int" default=
""/>
15892 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15893 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15894 <param name=
"choices" type=
"wxArrayString" default=
"wxPyEmptyStringArray"/>
15895 <param name=
"style" type=
"long" default=
"0"/>
15896 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
15897 <param name=
"name" type=
"String" default=
"wxPyListBoxNameStr"/>
15900 <constructor name=
"PreCheckListBox" overloaded=
"no">
15901 <autodoc>PreCheckListBox() -
> CheckListBox
</autodoc>
15903 <method name=
"Create" type=
"bool" overloaded=
"no">
15904 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
15905 wxArrayString choices=wxPyEmptyStringArray,
15906 long style=
0, Validator validator=DefaultValidator,
15907 String name=ListBoxNameStr) -
> bool
</autodoc>
15909 <param name=
"parent" type=
"Window" default=
""/>
15910 <param name=
"id" type=
"int" default=
""/>
15911 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15912 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15913 <param name=
"choices" type=
"wxArrayString" default=
"wxPyEmptyStringArray"/>
15914 <param name=
"style" type=
"long" default=
"0"/>
15915 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
15916 <param name=
"name" type=
"String" default=
"wxPyListBoxNameStr"/>
15919 <method name=
"IsChecked" type=
"bool" overloaded=
"no">
15920 <autodoc>IsChecked(int index) -
> bool
</autodoc>
15922 <param name=
"index" type=
"int" default=
""/>
15925 <method name=
"Check" type=
"" overloaded=
"no">
15926 <autodoc>Check(int index, int check=True)
</autodoc>
15928 <param name=
"index" type=
"int" default=
""/>
15929 <param name=
"check" type=
"int" default=
"True"/>
15932 <method name=
"GetItemHeight" type=
"int" overloaded=
"no">
15933 <autodoc>GetItemHeight() -
> int
</autodoc>
15935 <method name=
"HitTest" type=
"int" overloaded=
"no">
15936 <autodoc>HitTest(Point pt) -
> int
</autodoc>
15937 <docstring>Test where the given (in client coords) point lies
</docstring>
15939 <param name=
"pt" type=
"Point" default=
""/>
15942 <method name=
"HitTestXY" type=
"int" overloaded=
"no">
15943 <autodoc>HitTestXY(int x, int y) -
> int
</autodoc>
15944 <docstring>Test where the given (in client coords) point lies
</docstring>
15946 <param name=
"x" type=
"int" default=
""/>
15947 <param name=
"y" type=
"int" default=
""/>
15952 #---------------------------------------------------------------------------
15954 <class name=
"TextAttr" oldname=
"wxTextAttr" module=
"controls">
15955 <constructor name=
"TextAttr" overloaded=
"yes"/>
15956 <constructor name=
"TextAttr" overloaded=
"yes">
15957 <autodoc>__init__() -
> TextAttr
15958 __init__(Colour colText, Colour colBack=wxNullColour, Font font=wxNullFont,
15959 int alignment=TEXT_ALIGNMENT_DEFAULT) -
> TextAttr
</autodoc>
15961 <param name=
"colText" type=
"Colour" default=
""/>
15962 <param name=
"colBack" type=
"Colour" default=
"wxNullColour"/>
15963 <param name=
"font" type=
"Font" default=
"wxNullFont"/>
15964 <param name=
"alignment" type=
"wxTextAttrAlignment" default=
"wxTEXT_ALIGNMENT_DEFAULT"/>
15967 <destructor name=
"~wxTextAttr" overloaded=
"no">
15968 <autodoc>__del__()
</autodoc>
15970 <method name=
"Init" type=
"" overloaded=
"no">
15971 <autodoc>Init()
</autodoc>
15973 <method name=
"SetTextColour" type=
"" overloaded=
"no">
15974 <autodoc>SetTextColour(Colour colText)
</autodoc>
15976 <param name=
"colText" type=
"Colour" default=
""/>
15979 <method name=
"SetBackgroundColour" type=
"" overloaded=
"no">
15980 <autodoc>SetBackgroundColour(Colour colBack)
</autodoc>
15982 <param name=
"colBack" type=
"Colour" default=
""/>
15985 <method name=
"SetFont" type=
"" overloaded=
"no">
15986 <autodoc>SetFont(Font font, long flags=TEXT_ATTR_FONT)
</autodoc>
15988 <param name=
"font" type=
"Font" default=
""/>
15989 <param name=
"flags" type=
"long" default=
"wxTEXT_ATTR_FONT"/>
15992 <method name=
"SetAlignment" type=
"" overloaded=
"no">
15993 <autodoc>SetAlignment(int alignment)
</autodoc>
15995 <param name=
"alignment" type=
"wxTextAttrAlignment" default=
""/>
15998 <method name=
"SetTabs" type=
"" overloaded=
"no">
15999 <autodoc>SetTabs(wxArrayInt tabs)
</autodoc>
16001 <param name=
"tabs" type=
"wxArrayInt" default=
""/>
16004 <method name=
"SetLeftIndent" type=
"" overloaded=
"no">
16005 <autodoc>SetLeftIndent(int indent)
</autodoc>
16007 <param name=
"indent" type=
"int" default=
""/>
16010 <method name=
"SetRightIndent" type=
"" overloaded=
"no">
16011 <autodoc>SetRightIndent(int indent)
</autodoc>
16013 <param name=
"indent" type=
"int" default=
""/>
16016 <method name=
"SetFlags" type=
"" overloaded=
"no">
16017 <autodoc>SetFlags(long flags)
</autodoc>
16019 <param name=
"flags" type=
"long" default=
""/>
16022 <method name=
"HasTextColour" type=
"bool" overloaded=
"no">
16023 <autodoc>HasTextColour() -
> bool
</autodoc>
16025 <method name=
"HasBackgroundColour" type=
"bool" overloaded=
"no">
16026 <autodoc>HasBackgroundColour() -
> bool
</autodoc>
16028 <method name=
"HasFont" type=
"bool" overloaded=
"no">
16029 <autodoc>HasFont() -
> bool
</autodoc>
16031 <method name=
"HasAlignment" type=
"bool" overloaded=
"no">
16032 <autodoc>HasAlignment() -
> bool
</autodoc>
16034 <method name=
"HasTabs" type=
"bool" overloaded=
"no">
16035 <autodoc>HasTabs() -
> bool
</autodoc>
16037 <method name=
"HasLeftIndent" type=
"bool" overloaded=
"no">
16038 <autodoc>HasLeftIndent() -
> bool
</autodoc>
16040 <method name=
"HasRightIndent" type=
"bool" overloaded=
"no">
16041 <autodoc>HasRightIndent() -
> bool
</autodoc>
16043 <method name=
"HasFlag" type=
"bool" overloaded=
"no">
16044 <autodoc>HasFlag(long flag) -
> bool
</autodoc>
16046 <param name=
"flag" type=
"long" default=
""/>
16049 <method name=
"GetTextColour" type=
"Colour" overloaded=
"no">
16050 <autodoc>GetTextColour() -
> Colour
</autodoc>
16052 <method name=
"GetBackgroundColour" type=
"Colour" overloaded=
"no">
16053 <autodoc>GetBackgroundColour() -
> Colour
</autodoc>
16055 <method name=
"GetFont" type=
"Font" overloaded=
"no">
16056 <autodoc>GetFont() -
> Font
</autodoc>
16058 <method name=
"GetAlignment" type=
"wxTextAttrAlignment" overloaded=
"no">
16059 <autodoc>GetAlignment() -
> int
</autodoc>
16061 <method name=
"GetTabs" type=
"wxArrayInt" overloaded=
"no">
16062 <autodoc>GetTabs() -
> wxArrayInt
</autodoc>
16064 <method name=
"GetLeftIndent" type=
"long" overloaded=
"no">
16065 <autodoc>GetLeftIndent() -
> long
</autodoc>
16067 <method name=
"GetRightIndent" type=
"long" overloaded=
"no">
16068 <autodoc>GetRightIndent() -
> long
</autodoc>
16070 <method name=
"GetFlags" type=
"long" overloaded=
"no">
16071 <autodoc>GetFlags() -
> long
</autodoc>
16073 <method name=
"IsDefault" type=
"bool" overloaded=
"no">
16074 <autodoc>IsDefault() -
> bool
</autodoc>
16076 <staticmethod name=
"Combine" type=
"TextAttr" overloaded=
"no">
16077 <autodoc>Combine(TextAttr attr, TextAttr attrDef, TextCtrl text) -
> TextAttr
</autodoc>
16079 <param name=
"attr" type=
"TextAttr" default=
""/>
16080 <param name=
"attrDef" type=
"TextAttr" default=
""/>
16081 <param name=
"text" type=
"wxTextCtrl" default=
""/>
16085 <class name=
"TextCtrl" oldname=
"wxTextCtrl" module=
"controls">
16086 <baseclass name=
"Control"/>
16087 <constructor name=
"TextCtrl" overloaded=
"no">
16088 <autodoc>__init__(Window parent, int id, String value=EmptyString, Point pos=DefaultPosition,
16089 Size size=DefaultSize,
16090 long style=
0, Validator validator=DefaultValidator,
16091 String name=TextCtrlNameStr) -
> TextCtrl
</autodoc>
16093 <param name=
"parent" type=
"Window" default=
""/>
16094 <param name=
"id" type=
"int" default=
""/>
16095 <param name=
"value" type=
"String" default=
"wxPyEmptyString"/>
16096 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
16097 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
16098 <param name=
"style" type=
"long" default=
"0"/>
16099 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
16100 <param name=
"name" type=
"String" default=
"wxPyTextCtrlNameStr"/>
16103 <constructor name=
"PreTextCtrl" overloaded=
"no">
16104 <autodoc>PreTextCtrl() -
> TextCtrl
</autodoc>
16106 <method name=
"Create" type=
"bool" overloaded=
"no">
16107 <autodoc>Create(Window parent, int id, String value=EmptyString, Point pos=DefaultPosition,
16108 Size size=DefaultSize,
16109 long style=
0, Validator validator=DefaultValidator,
16110 String name=TextCtrlNameStr) -
> bool
</autodoc>
16112 <param name=
"parent" type=
"Window" default=
""/>
16113 <param name=
"id" type=
"int" default=
""/>
16114 <param name=
"value" type=
"String" default=
"wxPyEmptyString"/>
16115 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
16116 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
16117 <param name=
"style" type=
"long" default=
"0"/>
16118 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
16119 <param name=
"name" type=
"String" default=
"wxPyTextCtrlNameStr"/>
16122 <method name=
"GetValue" type=
"String" overloaded=
"no">
16123 <autodoc>GetValue() -
> String
</autodoc>
16125 <method name=
"SetValue" type=
"" overloaded=
"no">
16126 <autodoc>SetValue(String value)
</autodoc>
16128 <param name=
"value" type=
"String" default=
""/>
16131 <method name=
"GetRange" type=
"String" overloaded=
"no">
16132 <autodoc>GetRange(long from, long to) -
> String
</autodoc>
16134 <param name=
"from" type=
"long" default=
""/>
16135 <param name=
"to" type=
"long" default=
""/>
16138 <method name=
"GetLineLength" type=
"int" overloaded=
"no">
16139 <autodoc>GetLineLength(long lineNo) -
> int
</autodoc>
16141 <param name=
"lineNo" type=
"long" default=
""/>
16144 <method name=
"GetLineText" type=
"String" overloaded=
"no">
16145 <autodoc>GetLineText(long lineNo) -
> String
</autodoc>
16147 <param name=
"lineNo" type=
"long" default=
""/>
16150 <method name=
"GetNumberOfLines" type=
"int" overloaded=
"no">
16151 <autodoc>GetNumberOfLines() -
> int
</autodoc>
16153 <method name=
"IsModified" type=
"bool" overloaded=
"no">
16154 <autodoc>IsModified() -
> bool
</autodoc>
16156 <method name=
"IsEditable" type=
"bool" overloaded=
"no">
16157 <autodoc>IsEditable() -
> bool
</autodoc>
16159 <method name=
"IsSingleLine" type=
"bool" overloaded=
"no">
16160 <autodoc>IsSingleLine() -
> bool
</autodoc>
16162 <method name=
"IsMultiLine" type=
"bool" overloaded=
"no">
16163 <autodoc>IsMultiLine() -
> bool
</autodoc>
16165 <method name=
"GetSelection" type=
"" overloaded=
"no">
16166 <autodoc>GetSelection() -
> (from, to)
</autodoc>
16167 <docstring>If the return values from and to are the same, there is no selection.
</docstring>
16169 <param name=
"OUTPUT" type=
"long" default=
""/>
16170 <param name=
"OUTPUT" type=
"long" default=
""/>
16173 <method name=
"GetStringSelection" type=
"String" overloaded=
"no">
16174 <autodoc>GetStringSelection() -
> String
</autodoc>
16176 <method name=
"Clear" type=
"" overloaded=
"no">
16177 <autodoc>Clear()
</autodoc>
16179 <method name=
"Replace" type=
"" overloaded=
"no">
16180 <autodoc>Replace(long from, long to, String value)
</autodoc>
16182 <param name=
"from" type=
"long" default=
""/>
16183 <param name=
"to" type=
"long" default=
""/>
16184 <param name=
"value" type=
"String" default=
""/>
16187 <method name=
"Remove" type=
"" overloaded=
"no">
16188 <autodoc>Remove(long from, long to)
</autodoc>
16190 <param name=
"from" type=
"long" default=
""/>
16191 <param name=
"to" type=
"long" default=
""/>
16194 <method name=
"LoadFile" type=
"bool" overloaded=
"no">
16195 <autodoc>LoadFile(String file) -
> bool
</autodoc>
16197 <param name=
"file" type=
"String" default=
""/>
16200 <method name=
"SaveFile" type=
"bool" overloaded=
"no">
16201 <autodoc>SaveFile(String file=EmptyString) -
> bool
</autodoc>
16203 <param name=
"file" type=
"String" default=
"wxPyEmptyString"/>
16206 <method name=
"MarkDirty" type=
"" overloaded=
"no">
16207 <autodoc>MarkDirty()
</autodoc>
16209 <method name=
"DiscardEdits" type=
"" overloaded=
"no">
16210 <autodoc>DiscardEdits()
</autodoc>
16212 <method name=
"SetMaxLength" type=
"" overloaded=
"no">
16213 <autodoc>SetMaxLength(unsigned long len)
</autodoc>
16215 <param name=
"len" type=
"unsigned long" default=
""/>
16218 <method name=
"WriteText" type=
"" overloaded=
"no">
16219 <autodoc>WriteText(String text)
</autodoc>
16221 <param name=
"text" type=
"String" default=
""/>
16224 <method name=
"AppendText" type=
"" overloaded=
"no">
16225 <autodoc>AppendText(String text)
</autodoc>
16227 <param name=
"text" type=
"String" default=
""/>
16230 <method name=
"EmulateKeyPress" type=
"bool" overloaded=
"no">
16231 <autodoc>EmulateKeyPress(KeyEvent event) -
> bool
</autodoc>
16233 <param name=
"event" type=
"KeyEvent" default=
""/>
16236 <method name=
"SetStyle" type=
"bool" overloaded=
"no">
16237 <autodoc>SetStyle(long start, long end, TextAttr style) -
> bool
</autodoc>
16239 <param name=
"start" type=
"long" default=
""/>
16240 <param name=
"end" type=
"long" default=
""/>
16241 <param name=
"style" type=
"TextAttr" default=
""/>
16244 <method name=
"GetStyle" type=
"bool" overloaded=
"no">
16245 <autodoc>GetStyle(long position, TextAttr style) -
> bool
</autodoc>
16247 <param name=
"position" type=
"long" default=
""/>
16248 <param name=
"style" type=
"TextAttr" default=
""/>
16251 <method name=
"SetDefaultStyle" type=
"bool" overloaded=
"no">
16252 <autodoc>SetDefaultStyle(TextAttr style) -
> bool
</autodoc>
16254 <param name=
"style" type=
"TextAttr" default=
""/>
16257 <method name=
"GetDefaultStyle" type=
"TextAttr" overloaded=
"no">
16258 <autodoc>GetDefaultStyle() -
> TextAttr
</autodoc>
16260 <method name=
"XYToPosition" type=
"long" overloaded=
"no">
16261 <autodoc>XYToPosition(long x, long y) -
> long
</autodoc>
16263 <param name=
"x" type=
"long" default=
""/>
16264 <param name=
"y" type=
"long" default=
""/>
16267 <method name=
"PositionToXY" type=
"" overloaded=
"no">
16268 <autodoc>PositionToXY(long pos) -
> (x, y)
</autodoc>
16270 <param name=
"pos" type=
"long" default=
""/>
16271 <param name=
"OUTPUT" type=
"long" default=
""/>
16272 <param name=
"OUTPUT" type=
"long" default=
""/>
16275 <method name=
"ShowPosition" type=
"" overloaded=
"no">
16276 <autodoc>ShowPosition(long pos)
</autodoc>
16278 <param name=
"pos" type=
"long" default=
""/>
16281 <method name=
"HitTest" type=
"wxTextCtrlHitTestResult" overloaded=
"no">
16282 <autodoc>HitTest(Point pt) -
> (result, row, col)
</autodoc>
16283 <docstring>Find the character at position given in pixels.
16284 NB: pt is in device coords (not adjusted for the client area
16285 origin nor scrolling)
</docstring>
16287 <param name=
"pt" type=
"Point" default=
""/>
16288 <param name=
"OUTPUT" type=
"long" default=
""/>
16289 <param name=
"OUTPUT" type=
"long" default=
""/>
16292 <method name=
"Copy" type=
"" overloaded=
"no">
16293 <autodoc>Copy()
</autodoc>
16295 <method name=
"Cut" type=
"" overloaded=
"no">
16296 <autodoc>Cut()
</autodoc>
16298 <method name=
"Paste" type=
"" overloaded=
"no">
16299 <autodoc>Paste()
</autodoc>
16301 <method name=
"CanCopy" type=
"bool" overloaded=
"no">
16302 <autodoc>CanCopy() -
> bool
</autodoc>
16304 <method name=
"CanCut" type=
"bool" overloaded=
"no">
16305 <autodoc>CanCut() -
> bool
</autodoc>
16307 <method name=
"CanPaste" type=
"bool" overloaded=
"no">
16308 <autodoc>CanPaste() -
> bool
</autodoc>
16310 <method name=
"Undo" type=
"" overloaded=
"no">
16311 <autodoc>Undo()
</autodoc>
16313 <method name=
"Redo" type=
"" overloaded=
"no">
16314 <autodoc>Redo()
</autodoc>
16316 <method name=
"CanUndo" type=
"bool" overloaded=
"no">
16317 <autodoc>CanUndo() -
> bool
</autodoc>
16319 <method name=
"CanRedo" type=
"bool" overloaded=
"no">
16320 <autodoc>CanRedo() -
> bool
</autodoc>
16322 <method name=
"SetInsertionPoint" type=
"" overloaded=
"no">
16323 <autodoc>SetInsertionPoint(long pos)
</autodoc>
16325 <param name=
"pos" type=
"long" default=
""/>
16328 <method name=
"SetInsertionPointEnd" type=
"" overloaded=
"no">
16329 <autodoc>SetInsertionPointEnd()
</autodoc>
16331 <method name=
"GetInsertionPoint" type=
"long" overloaded=
"no">
16332 <autodoc>GetInsertionPoint() -
> long
</autodoc>
16334 <method name=
"GetLastPosition" type=
"long" overloaded=
"no">
16335 <autodoc>GetLastPosition() -
> long
</autodoc>
16337 <method name=
"SetSelection" type=
"" overloaded=
"no">
16338 <autodoc>SetSelection(long from, long to)
</autodoc>
16340 <param name=
"from" type=
"long" default=
""/>
16341 <param name=
"to" type=
"long" default=
""/>
16344 <method name=
"SelectAll" type=
"" overloaded=
"no">
16345 <autodoc>SelectAll()
</autodoc>
16347 <method name=
"SetEditable" type=
"" overloaded=
"no">
16348 <autodoc>SetEditable(bool editable)
</autodoc>
16350 <param name=
"editable" type=
"bool" default=
""/>
16353 <method name=
"write" type=
"" overloaded=
"no">
16354 <autodoc>write(String text)
</autodoc>
16356 <param name=
"text" type=
"String" default=
""/>
16359 <method name=
"GetString" type=
"String" overloaded=
"no">
16360 <autodoc>GetString(long from, long to) -
> String
</autodoc>
16362 <param name=
"from" type=
"long" default=
""/>
16363 <param name=
"to" type=
"long" default=
""/>
16367 <class name=
"TextUrlEvent" oldname=
"wxTextUrlEvent" module=
"controls">
16368 <baseclass name=
"CommandEvent"/>
16369 <constructor name=
"TextUrlEvent" overloaded=
"no">
16370 <autodoc>__init__(int winid, MouseEvent evtMouse, long start, long end) -
> TextUrlEvent
</autodoc>
16372 <param name=
"winid" type=
"int" default=
""/>
16373 <param name=
"evtMouse" type=
"MouseEvent" default=
""/>
16374 <param name=
"start" type=
"long" default=
""/>
16375 <param name=
"end" type=
"long" default=
""/>
16378 <method name=
"GetMouseEvent" type=
"MouseEvent" overloaded=
"no">
16379 <autodoc>GetMouseEvent() -
> MouseEvent
</autodoc>
16381 <method name=
"GetURLStart" type=
"long" overloaded=
"no">
16382 <autodoc>GetURLStart() -
> long
</autodoc>
16384 <method name=
"GetURLEnd" type=
"long" overloaded=
"no">
16385 <autodoc>GetURLEnd() -
> long
</autodoc>
16389 EVT_TEXT = wx.PyEventBinder( wxEVT_COMMAND_TEXT_UPDATED,
1)
16390 EVT_TEXT_ENTER = wx.PyEventBinder( wxEVT_COMMAND_TEXT_ENTER,
1)
16391 EVT_TEXT_URL = wx.PyEventBinder( wxEVT_COMMAND_TEXT_URL,
1)
16392 EVT_TEXT_MAXLEN = wx.PyEventBinder( wxEVT_COMMAND_TEXT_MAXLEN,
1)
16395 #---------------------------------------------------------------------------
16397 <class name=
"ScrollBar" oldname=
"wxScrollBar" module=
"controls">
16398 <baseclass name=
"Control"/>
16399 <constructor name=
"ScrollBar" overloaded=
"no">
16400 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
16401 Size size=DefaultSize, long style=SB_HORIZONTAL,
16402 Validator validator=DefaultValidator, String name=ScrollBarNameStr) -
> ScrollBar
</autodoc>
16404 <param name=
"parent" type=
"Window" default=
""/>
16405 <param name=
"id" type=
"int" default=
"-1"/>
16406 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
16407 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
16408 <param name=
"style" type=
"long" default=
"wxSB_HORIZONTAL"/>
16409 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
16410 <param name=
"name" type=
"String" default=
"wxPyScrollBarNameStr"/>
16413 <constructor name=
"PreScrollBar" overloaded=
"no">
16414 <autodoc>PreScrollBar() -
> ScrollBar
</autodoc>
16416 <method name=
"Create" type=
"bool" overloaded=
"no">
16417 <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition,
16418 Size size=DefaultSize, long style=SB_HORIZONTAL,
16419 Validator validator=DefaultValidator, String name=ScrollBarNameStr) -
> bool
</autodoc>
16420 <docstring>Do the
2nd phase and create the GUI control.
</docstring>
16422 <param name=
"parent" type=
"Window" default=
""/>
16423 <param name=
"id" type=
"int" default=
"-1"/>
16424 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
16425 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
16426 <param name=
"style" type=
"long" default=
"wxSB_HORIZONTAL"/>
16427 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
16428 <param name=
"name" type=
"String" default=
"wxPyScrollBarNameStr"/>
16431 <method name=
"GetThumbPosition" type=
"int" overloaded=
"no">
16432 <autodoc>GetThumbPosition() -
> int
</autodoc>
16434 <method name=
"GetThumbSize" type=
"int" overloaded=
"no">
16435 <autodoc>GetThumbSize() -
> int
</autodoc>
16437 <method name=
"GetPageSize" type=
"int" overloaded=
"no">
16438 <autodoc>GetPageSize() -
> int
</autodoc>
16440 <method name=
"GetRange" type=
"int" overloaded=
"no">
16441 <autodoc>GetRange() -
> int
</autodoc>
16443 <method name=
"IsVertical" type=
"bool" overloaded=
"no">
16444 <autodoc>IsVertical() -
> bool
</autodoc>
16446 <method name=
"SetThumbPosition" type=
"" overloaded=
"no">
16447 <autodoc>SetThumbPosition(int viewStart)
</autodoc>
16449 <param name=
"viewStart" type=
"int" default=
""/>
16452 <method name=
"SetScrollbar" type=
"" overloaded=
"no">
16453 <autodoc>SetScrollbar(int position, int thumbSize, int range, int pageSize,
16454 bool refresh=True)
</autodoc>
16455 <docstring>Sets the scrollbar properties of a built-in scrollbar.
16457 orientation: Determines the scrollbar whose page size is to be
16458 set. May be wx.HORIZONTAL or wx.VERTICAL.
16460 position: The position of the scrollbar in scroll units.
16462 thumbSize: The size of the thumb, or visible portion of the
16463 scrollbar, in scroll units.
16465 range: The maximum position of the scrollbar.
16467 refresh: True to redraw the scrollbar, false otherwise.
</docstring>
16469 <param name=
"position" type=
"int" default=
""/>
16470 <param name=
"thumbSize" type=
"int" default=
""/>
16471 <param name=
"range" type=
"int" default=
""/>
16472 <param name=
"pageSize" type=
"int" default=
""/>
16473 <param name=
"refresh" type=
"bool" default=
"True"/>
16478 #---------------------------------------------------------------------------
16480 <class name=
"SpinButton" oldname=
"wxSpinButton" module=
"controls">
16481 <baseclass name=
"Control"/>
16482 <constructor name=
"SpinButton" overloaded=
"no">
16483 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
16484 Size size=DefaultSize, long style=SP_HORIZONTAL,
16485 String name=SPIN_BUTTON_NAME) -
> SpinButton
</autodoc>
16487 <param name=
"parent" type=
"Window" default=
""/>
16488 <param name=
"id" type=
"int" default=
"-1"/>
16489 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
16490 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
16491 <param name=
"style" type=
"long" default=
"wxSP_HORIZONTAL"/>
16492 <param name=
"name" type=
"String" default=
"wxPySPIN_BUTTON_NAME"/>
16495 <constructor name=
"PreSpinButton" overloaded=
"no">
16496 <autodoc>PreSpinButton() -
> SpinButton
</autodoc>
16498 <method name=
"Create" type=
"bool" overloaded=
"no">
16499 <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition,
16500 Size size=DefaultSize, long style=SP_HORIZONTAL,
16501 String name=SPIN_BUTTON_NAME) -
> bool
</autodoc>
16503 <param name=
"parent" type=
"Window" default=
""/>
16504 <param name=
"id" type=
"int" default=
"-1"/>
16505 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
16506 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
16507 <param name=
"style" type=
"long" default=
"wxSP_HORIZONTAL"/>
16508 <param name=
"name" type=
"String" default=
"wxPySPIN_BUTTON_NAME"/>
16511 <method name=
"GetValue" type=
"int" overloaded=
"no">
16512 <autodoc>GetValue() -
> int
</autodoc>
16514 <method name=
"GetMin" type=
"int" overloaded=
"no">
16515 <autodoc>GetMin() -
> int
</autodoc>
16517 <method name=
"GetMax" type=
"int" overloaded=
"no">
16518 <autodoc>GetMax() -
> int
</autodoc>
16520 <method name=
"SetValue" type=
"" overloaded=
"no">
16521 <autodoc>SetValue(int val)
</autodoc>
16523 <param name=
"val" type=
"int" default=
""/>
16526 <method name=
"SetMin" type=
"" overloaded=
"no">
16527 <autodoc>SetMin(int minVal)
</autodoc>
16529 <param name=
"minVal" type=
"int" default=
""/>
16532 <method name=
"SetMax" type=
"" overloaded=
"no">
16533 <autodoc>SetMax(int maxVal)
</autodoc>
16535 <param name=
"maxVal" type=
"int" default=
""/>
16538 <method name=
"SetRange" type=
"" overloaded=
"no">
16539 <autodoc>SetRange(int minVal, int maxVal)
</autodoc>
16541 <param name=
"minVal" type=
"int" default=
""/>
16542 <param name=
"maxVal" type=
"int" default=
""/>
16545 <method name=
"IsVertical" type=
"bool" overloaded=
"no">
16546 <autodoc>IsVertical() -
> bool
</autodoc>
16549 <class name=
"SpinCtrl" oldname=
"wxSpinCtrl" module=
"controls">
16550 <baseclass name=
"Control"/>
16551 <constructor name=
"SpinCtrl" overloaded=
"no">
16552 <autodoc>__init__(Window parent, int id=-
1, String value=EmptyString,
16553 Point pos=DefaultPosition, Size size=DefaultSize,
16554 long style=SP_ARROW_KEYS, int min=
0, int max=
100,
16555 int initial=
0, String name=SpinCtrlNameStr) -
> SpinCtrl
</autodoc>
16557 <param name=
"parent" type=
"Window" default=
""/>
16558 <param name=
"id" type=
"int" default=
"-1"/>
16559 <param name=
"value" type=
"String" default=
"wxPyEmptyString"/>
16560 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
16561 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
16562 <param name=
"style" type=
"long" default=
"wxSP_ARROW_KEYS"/>
16563 <param name=
"min" type=
"int" default=
"0"/>
16564 <param name=
"max" type=
"int" default=
"100"/>
16565 <param name=
"initial" type=
"int" default=
"0"/>
16566 <param name=
"name" type=
"String" default=
"wxPySpinCtrlNameStr"/>
16569 <constructor name=
"PreSpinCtrl" overloaded=
"no">
16570 <autodoc>PreSpinCtrl() -
> SpinCtrl
</autodoc>
16572 <method name=
"Create" type=
"bool" overloaded=
"no">
16573 <autodoc>Create(Window parent, int id=-
1, String value=EmptyString,
16574 Point pos=DefaultPosition, Size size=DefaultSize,
16575 long style=SP_ARROW_KEYS, int min=
0, int max=
100,
16576 int initial=
0, String name=SpinCtrlNameStr) -
> bool
</autodoc>
16578 <param name=
"parent" type=
"Window" default=
""/>
16579 <param name=
"id" type=
"int" default=
"-1"/>
16580 <param name=
"value" type=
"String" default=
"wxPyEmptyString"/>
16581 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
16582 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
16583 <param name=
"style" type=
"long" default=
"wxSP_ARROW_KEYS"/>
16584 <param name=
"min" type=
"int" default=
"0"/>
16585 <param name=
"max" type=
"int" default=
"100"/>
16586 <param name=
"initial" type=
"int" default=
"0"/>
16587 <param name=
"name" type=
"String" default=
"wxPySpinCtrlNameStr"/>
16590 <method name=
"GetValue" type=
"int" overloaded=
"no">
16591 <autodoc>GetValue() -
> int
</autodoc>
16593 <method name=
"SetValue" type=
"" overloaded=
"no">
16594 <autodoc>SetValue(int value)
</autodoc>
16596 <param name=
"value" type=
"int" default=
""/>
16599 <method name=
"SetValueString" type=
"" overloaded=
"no">
16600 <autodoc>SetValueString(String text)
</autodoc>
16602 <param name=
"text" type=
"String" default=
""/>
16605 <method name=
"SetRange" type=
"" overloaded=
"no">
16606 <autodoc>SetRange(int minVal, int maxVal)
</autodoc>
16608 <param name=
"minVal" type=
"int" default=
""/>
16609 <param name=
"maxVal" type=
"int" default=
""/>
16612 <method name=
"GetMin" type=
"int" overloaded=
"no">
16613 <autodoc>GetMin() -
> int
</autodoc>
16615 <method name=
"GetMax" type=
"int" overloaded=
"no">
16616 <autodoc>GetMax() -
> int
</autodoc>
16618 <method name=
"SetSelection" type=
"" overloaded=
"no">
16619 <autodoc>SetSelection(long from, long to)
</autodoc>
16621 <param name=
"from" type=
"long" default=
""/>
16622 <param name=
"to" type=
"long" default=
""/>
16626 <class name=
"SpinEvent" oldname=
"wxSpinEvent" module=
"controls">
16627 <baseclass name=
"NotifyEvent"/>
16628 <constructor name=
"SpinEvent" overloaded=
"no">
16629 <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int winid=
0) -
> SpinEvent
</autodoc>
16631 <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/>
16632 <param name=
"winid" type=
"int" default=
"0"/>
16635 <method name=
"GetPosition" type=
"int" overloaded=
"no">
16636 <autodoc>GetPosition() -
> int
</autodoc>
16638 <method name=
"SetPosition" type=
"" overloaded=
"no">
16639 <autodoc>SetPosition(int pos)
</autodoc>
16641 <param name=
"pos" type=
"int" default=
""/>
16646 EVT_SPIN_UP = wx.PyEventBinder( wx.wxEVT_SCROLL_LINEUP,
1)
16647 EVT_SPIN_DOWN = wx.PyEventBinder( wx.wxEVT_SCROLL_LINEDOWN,
1)
16648 EVT_SPIN = wx.PyEventBinder( wx.wxEVT_SCROLL_THUMBTRACK,
1)
16649 EVT_SPINCTRL = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED,
1)
16652 #---------------------------------------------------------------------------
16654 <class name=
"RadioBox" oldname=
"wxRadioBox" module=
"controls">
16655 <baseclass name=
"Control"/>
16656 <constructor name=
"RadioBox" overloaded=
"no">
16657 <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition,
16658 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
16659 int majorDimension=
0,
16660 long style=RA_HORIZONTAL, Validator validator=DefaultValidator,
16661 String name=RadioBoxNameStr) -
> RadioBox
</autodoc>
16663 <param name=
"parent" type=
"Window" default=
""/>
16664 <param name=
"id" type=
"int" default=
""/>
16665 <param name=
"label" type=
"String" default=
""/>
16666 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
16667 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
16668 <param name=
"choices" type=
"wxArrayString" default=
"wxPyEmptyStringArray"/>
16669 <param name=
"majorDimension" type=
"int" default=
"0"/>
16670 <param name=
"style" type=
"long" default=
"wxRA_HORIZONTAL"/>
16671 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
16672 <param name=
"name" type=
"String" default=
"wxPyRadioBoxNameStr"/>
16675 <constructor name=
"PreRadioBox" overloaded=
"no">
16676 <autodoc>PreRadioBox() -
> RadioBox
</autodoc>
16678 <method name=
"Create" type=
"bool" overloaded=
"no">
16679 <autodoc>Create(Window parent, int id, String label, Point pos=DefaultPosition,
16680 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
16681 int majorDimension=
0,
16682 long style=RA_HORIZONTAL, Validator validator=DefaultValidator,
16683 String name=RadioBoxNameStr) -
> bool
</autodoc>
16685 <param name=
"parent" type=
"Window" default=
""/>
16686 <param name=
"id" type=
"int" default=
""/>
16687 <param name=
"label" type=
"String" default=
""/>
16688 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
16689 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
16690 <param name=
"choices" type=
"wxArrayString" default=
"wxPyEmptyStringArray"/>
16691 <param name=
"majorDimension" type=
"int" default=
"0"/>
16692 <param name=
"style" type=
"long" default=
"wxRA_HORIZONTAL"/>
16693 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
16694 <param name=
"name" type=
"String" default=
"wxPyRadioBoxNameStr"/>
16697 <method name=
"SetSelection" type=
"" overloaded=
"no">
16698 <autodoc>SetSelection(int n)
</autodoc>
16700 <param name=
"n" type=
"int" default=
""/>
16703 <method name=
"GetSelection" type=
"int" overloaded=
"no">
16704 <autodoc>GetSelection() -
> int
</autodoc>
16706 <method name=
"GetStringSelection" type=
"String" overloaded=
"no">
16707 <autodoc>GetStringSelection() -
> String
</autodoc>
16709 <method name=
"SetStringSelection" type=
"bool" overloaded=
"no">
16710 <autodoc>SetStringSelection(String s) -
> bool
</autodoc>
16712 <param name=
"s" type=
"String" default=
""/>
16715 <method name=
"GetCount" type=
"int" overloaded=
"no">
16716 <autodoc>GetCount() -
> int
</autodoc>
16718 <method name=
"FindString" type=
"int" overloaded=
"no">
16719 <autodoc>FindString(String s) -
> int
</autodoc>
16721 <param name=
"s" type=
"String" default=
""/>
16724 <method name=
"GetString" type=
"String" overloaded=
"no">
16725 <autodoc>GetString(int n) -
> String
</autodoc>
16727 <param name=
"n" type=
"int" default=
""/>
16730 <method name=
"SetString" type=
"" overloaded=
"no">
16731 <autodoc>SetString(int n, String label)
</autodoc>
16733 <param name=
"n" type=
"int" default=
""/>
16734 <param name=
"label" type=
"String" default=
""/>
16737 <method name=
"EnableItem" type=
"" overloaded=
"no">
16738 <autodoc>EnableItem(int n, bool enable=True)
</autodoc>
16740 <param name=
"n" type=
"int" default=
""/>
16741 <param name=
"enable" type=
"bool" default=
"True"/>
16744 <method name=
"ShowItem" type=
"" overloaded=
"no">
16745 <autodoc>ShowItem(int n, bool show=True)
</autodoc>
16747 <param name=
"n" type=
"int" default=
""/>
16748 <param name=
"show" type=
"bool" default=
"True"/>
16751 <method name=
"GetColumnCount" type=
"int" overloaded=
"no">
16752 <autodoc>GetColumnCount() -
> int
</autodoc>
16754 <method name=
"GetRowCount" type=
"int" overloaded=
"no">
16755 <autodoc>GetRowCount() -
> int
</autodoc>
16757 <method name=
"GetNextItem" type=
"int" overloaded=
"no">
16758 <autodoc>GetNextItem(int item, int dir, long style) -
> int
</autodoc>
16760 <param name=
"item" type=
"int" default=
""/>
16761 <param name=
"dir" type=
"wxDirection" default=
""/>
16762 <param name=
"style" type=
"long" default=
""/>
16767 #---------------------------------------------------------------------------
16769 <class name=
"RadioButton" oldname=
"wxRadioButton" module=
"controls">
16770 <baseclass name=
"Control"/>
16771 <constructor name=
"RadioButton" overloaded=
"no">
16772 <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition,
16773 Size size=DefaultSize, long style=
0,
16774 Validator validator=DefaultValidator, String name=RadioButtonNameStr) -
> RadioButton
</autodoc>
16776 <param name=
"parent" type=
"Window" default=
""/>
16777 <param name=
"id" type=
"int" default=
""/>
16778 <param name=
"label" type=
"String" default=
""/>
16779 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
16780 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
16781 <param name=
"style" type=
"long" default=
"0"/>
16782 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
16783 <param name=
"name" type=
"String" default=
"wxPyRadioButtonNameStr"/>
16786 <constructor name=
"PreRadioButton" overloaded=
"no">
16787 <autodoc>PreRadioButton() -
> RadioButton
</autodoc>
16789 <method name=
"Create" type=
"bool" overloaded=
"no">
16790 <autodoc>Create(Window parent, int id, String label, Point pos=DefaultPosition,
16791 Size size=DefaultSize, long style=
0,
16792 Validator validator=DefaultValidator, String name=RadioButtonNameStr) -
> bool
</autodoc>
16794 <param name=
"parent" type=
"Window" default=
""/>
16795 <param name=
"id" type=
"int" default=
""/>
16796 <param name=
"label" type=
"String" default=
""/>
16797 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
16798 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
16799 <param name=
"style" type=
"long" default=
"0"/>
16800 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
16801 <param name=
"name" type=
"String" default=
"wxPyRadioButtonNameStr"/>
16804 <method name=
"GetValue" type=
"bool" overloaded=
"no">
16805 <autodoc>GetValue() -
> bool
</autodoc>
16807 <method name=
"SetValue" type=
"" overloaded=
"no">
16808 <autodoc>SetValue(bool value)
</autodoc>
16810 <param name=
"value" type=
"bool" default=
""/>
16815 #---------------------------------------------------------------------------
16817 <class name=
"Slider" oldname=
"wxSlider" module=
"controls">
16818 <baseclass name=
"Control"/>
16819 <constructor name=
"Slider" overloaded=
"no">
16820 <autodoc>__init__(Window parent, int id, int value, int minValue, int maxValue,
16821 Point pos=DefaultPosition, Size size=DefaultSize,
16822 long style=SL_HORIZONTAL, Validator validator=DefaultValidator,
16823 String name=SliderNameStr) -
> Slider
</autodoc>
16825 <param name=
"parent" type=
"Window" default=
""/>
16826 <param name=
"id" type=
"int" default=
""/>
16827 <param name=
"value" type=
"int" default=
""/>
16828 <param name=
"minValue" type=
"int" default=
""/>
16829 <param name=
"maxValue" type=
"int" default=
""/>
16830 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
16831 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
16832 <param name=
"style" type=
"long" default=
"wxSL_HORIZONTAL"/>
16833 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
16834 <param name=
"name" type=
"String" default=
"wxPySliderNameStr"/>
16837 <constructor name=
"PreSlider" overloaded=
"no">
16838 <autodoc>PreSlider() -
> Slider
</autodoc>
16840 <method name=
"Create" type=
"bool" overloaded=
"no">
16841 <autodoc>Create(Window parent, int id, int value, int minValue, int maxValue,
16842 Point pos=DefaultPosition, Size size=DefaultSize,
16843 long style=SL_HORIZONTAL, Validator validator=DefaultValidator,
16844 String name=SliderNameStr) -
> bool
</autodoc>
16846 <param name=
"parent" type=
"Window" default=
""/>
16847 <param name=
"id" type=
"int" default=
""/>
16848 <param name=
"value" type=
"int" default=
""/>
16849 <param name=
"minValue" type=
"int" default=
""/>
16850 <param name=
"maxValue" type=
"int" default=
""/>
16851 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
16852 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
16853 <param name=
"style" type=
"long" default=
"wxSL_HORIZONTAL"/>
16854 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
16855 <param name=
"name" type=
"String" default=
"wxPySliderNameStr"/>
16858 <method name=
"GetValue" type=
"int" overloaded=
"no">
16859 <autodoc>GetValue() -
> int
</autodoc>
16861 <method name=
"SetValue" type=
"" overloaded=
"no">
16862 <autodoc>SetValue(int value)
</autodoc>
16864 <param name=
"value" type=
"int" default=
""/>
16867 <method name=
"SetRange" type=
"" overloaded=
"no">
16868 <autodoc>SetRange(int minValue, int maxValue)
</autodoc>
16870 <param name=
"minValue" type=
"int" default=
""/>
16871 <param name=
"maxValue" type=
"int" default=
""/>
16874 <method name=
"GetMin" type=
"int" overloaded=
"no">
16875 <autodoc>GetMin() -
> int
</autodoc>
16877 <method name=
"GetMax" type=
"int" overloaded=
"no">
16878 <autodoc>GetMax() -
> int
</autodoc>
16880 <method name=
"SetMin" type=
"" overloaded=
"no">
16881 <autodoc>SetMin(int minValue)
</autodoc>
16883 <param name=
"minValue" type=
"int" default=
""/>
16886 <method name=
"SetMax" type=
"" overloaded=
"no">
16887 <autodoc>SetMax(int maxValue)
</autodoc>
16889 <param name=
"maxValue" type=
"int" default=
""/>
16892 <method name=
"SetLineSize" type=
"" overloaded=
"no">
16893 <autodoc>SetLineSize(int lineSize)
</autodoc>
16895 <param name=
"lineSize" type=
"int" default=
""/>
16898 <method name=
"SetPageSize" type=
"" overloaded=
"no">
16899 <autodoc>SetPageSize(int pageSize)
</autodoc>
16901 <param name=
"pageSize" type=
"int" default=
""/>
16904 <method name=
"GetLineSize" type=
"int" overloaded=
"no">
16905 <autodoc>GetLineSize() -
> int
</autodoc>
16907 <method name=
"GetPageSize" type=
"int" overloaded=
"no">
16908 <autodoc>GetPageSize() -
> int
</autodoc>
16910 <method name=
"SetThumbLength" type=
"" overloaded=
"no">
16911 <autodoc>SetThumbLength(int lenPixels)
</autodoc>
16913 <param name=
"lenPixels" type=
"int" default=
""/>
16916 <method name=
"GetThumbLength" type=
"int" overloaded=
"no">
16917 <autodoc>GetThumbLength() -
> int
</autodoc>
16919 <method name=
"SetTickFreq" type=
"" overloaded=
"no">
16920 <autodoc>SetTickFreq(int n, int pos=
1)
</autodoc>
16922 <param name=
"n" type=
"int" default=
""/>
16923 <param name=
"pos" type=
"int" default=
"1"/>
16926 <method name=
"GetTickFreq" type=
"int" overloaded=
"no">
16927 <autodoc>GetTickFreq() -
> int
</autodoc>
16929 <method name=
"ClearTicks" type=
"" overloaded=
"no">
16930 <autodoc>ClearTicks()
</autodoc>
16932 <method name=
"SetTick" type=
"" overloaded=
"no">
16933 <autodoc>SetTick(int tickPos)
</autodoc>
16935 <param name=
"tickPos" type=
"int" default=
""/>
16938 <method name=
"ClearSel" type=
"" overloaded=
"no">
16939 <autodoc>ClearSel()
</autodoc>
16941 <method name=
"GetSelEnd" type=
"int" overloaded=
"no">
16942 <autodoc>GetSelEnd() -
> int
</autodoc>
16944 <method name=
"GetSelStart" type=
"int" overloaded=
"no">
16945 <autodoc>GetSelStart() -
> int
</autodoc>
16947 <method name=
"SetSelection" type=
"" overloaded=
"no">
16948 <autodoc>SetSelection(int min, int max)
</autodoc>
16950 <param name=
"min" type=
"int" default=
""/>
16951 <param name=
"max" type=
"int" default=
""/>
16956 #---------------------------------------------------------------------------
16959 EVT_TOGGLEBUTTON = wx.PyEventBinder( wxEVT_COMMAND_TOGGLEBUTTON_CLICKED,
1)
16961 <class name=
"ToggleButton" oldname=
"wxToggleButton" module=
"controls">
16962 <baseclass name=
"Control"/>
16963 <constructor name=
"ToggleButton" overloaded=
"no">
16964 <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition,
16965 Size size=DefaultSize, long style=
0,
16966 Validator validator=DefaultValidator, String name=ToggleButtonNameStr) -
> ToggleButton
</autodoc>
16968 <param name=
"parent" type=
"Window" default=
""/>
16969 <param name=
"id" type=
"int" default=
""/>
16970 <param name=
"label" type=
"String" default=
""/>
16971 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
16972 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
16973 <param name=
"style" type=
"long" default=
"0"/>
16974 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
16975 <param name=
"name" type=
"String" default=
"wxPyToggleButtonNameStr"/>
16978 <constructor name=
"PreToggleButton" overloaded=
"no">
16979 <autodoc>PreToggleButton() -
> ToggleButton
</autodoc>
16981 <method name=
"Create" type=
"bool" overloaded=
"no">
16982 <autodoc>Create(Window parent, int id, String label, Point pos=DefaultPosition,
16983 Size size=DefaultSize, long style=
0,
16984 Validator validator=DefaultValidator, String name=ToggleButtonNameStr) -
> bool
</autodoc>
16986 <param name=
"parent" type=
"Window" default=
""/>
16987 <param name=
"id" type=
"int" default=
""/>
16988 <param name=
"label" type=
"String" default=
""/>
16989 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
16990 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
16991 <param name=
"style" type=
"long" default=
"0"/>
16992 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
16993 <param name=
"name" type=
"String" default=
"wxPyToggleButtonNameStr"/>
16996 <method name=
"SetValue" type=
"" overloaded=
"no">
16997 <autodoc>SetValue(bool value)
</autodoc>
16999 <param name=
"value" type=
"bool" default=
""/>
17002 <method name=
"GetValue" type=
"bool" overloaded=
"no">
17003 <autodoc>GetValue() -
> bool
</autodoc>
17005 <method name=
"SetLabel" type=
"" overloaded=
"no">
17006 <autodoc>SetLabel(String label)
</autodoc>
17007 <docstring>Sets the item's text.
</docstring>
17009 <param name=
"label" type=
"String" default=
""/>
17014 #---------------------------------------------------------------------------
17016 <class name=
"BookCtrl" oldname=
"wxBookCtrl" module=
"controls">
17017 <baseclass name=
"Control"/>
17018 <method name=
"GetPageCount" type=
"size_t" overloaded=
"no">
17019 <autodoc>GetPageCount() -
> size_t
</autodoc>
17021 <method name=
"GetPage" type=
"Window" overloaded=
"no">
17022 <autodoc>GetPage(size_t n) -
> Window
</autodoc>
17024 <param name=
"n" type=
"size_t" default=
""/>
17027 <method name=
"GetSelection" type=
"int" overloaded=
"no">
17028 <autodoc>GetSelection() -
> int
</autodoc>
17030 <method name=
"SetPageText" type=
"bool" overloaded=
"no">
17031 <autodoc>SetPageText(size_t n, String strText) -
> bool
</autodoc>
17033 <param name=
"n" type=
"size_t" default=
""/>
17034 <param name=
"strText" type=
"String" default=
""/>
17037 <method name=
"GetPageText" type=
"String" overloaded=
"no">
17038 <autodoc>GetPageText(size_t n) -
> String
</autodoc>
17040 <param name=
"n" type=
"size_t" default=
""/>
17043 <method name=
"SetImageList" type=
"" overloaded=
"no">
17044 <autodoc>SetImageList(ImageList imageList)
</autodoc>
17046 <param name=
"imageList" type=
"ImageList" default=
""/>
17049 <method name=
"AssignImageList" type=
"" overloaded=
"no">
17050 <autodoc>AssignImageList(ImageList imageList)
</autodoc>
17052 <param name=
"imageList" type=
"ImageList" default=
""/>
17055 <method name=
"GetImageList" type=
"ImageList" overloaded=
"no">
17056 <autodoc>GetImageList() -
> ImageList
</autodoc>
17058 <method name=
"GetPageImage" type=
"int" overloaded=
"no">
17059 <autodoc>GetPageImage(size_t n) -
> int
</autodoc>
17061 <param name=
"n" type=
"size_t" default=
""/>
17064 <method name=
"SetPageImage" type=
"bool" overloaded=
"no">
17065 <autodoc>SetPageImage(size_t n, int imageId) -
> bool
</autodoc>
17067 <param name=
"n" type=
"size_t" default=
""/>
17068 <param name=
"imageId" type=
"int" default=
""/>
17071 <method name=
"SetPageSize" type=
"" overloaded=
"no">
17072 <autodoc>SetPageSize(Size size)
</autodoc>
17074 <param name=
"size" type=
"Size" default=
""/>
17077 <method name=
"CalcSizeFromPage" type=
"Size" overloaded=
"no">
17078 <autodoc>CalcSizeFromPage(Size sizePage) -
> Size
</autodoc>
17080 <param name=
"sizePage" type=
"Size" default=
""/>
17083 <method name=
"DeletePage" type=
"bool" overloaded=
"no">
17084 <autodoc>DeletePage(size_t n) -
> bool
</autodoc>
17086 <param name=
"n" type=
"size_t" default=
""/>
17089 <method name=
"RemovePage" type=
"bool" overloaded=
"no">
17090 <autodoc>RemovePage(size_t n) -
> bool
</autodoc>
17092 <param name=
"n" type=
"size_t" default=
""/>
17095 <method name=
"DeleteAllPages" type=
"bool" overloaded=
"no">
17096 <autodoc>DeleteAllPages() -
> bool
</autodoc>
17098 <method name=
"AddPage" type=
"bool" overloaded=
"no">
17099 <autodoc>AddPage(Window page, String text, bool select=False, int imageId=-
1) -
> bool
</autodoc>
17101 <param name=
"page" type=
"Window" default=
""/>
17102 <param name=
"text" type=
"String" default=
""/>
17103 <param name=
"select" type=
"bool" default=
"False"/>
17104 <param name=
"imageId" type=
"int" default=
"-1"/>
17107 <method name=
"InsertPage" type=
"bool" overloaded=
"no">
17108 <autodoc>InsertPage(size_t n, Window page, String text, bool select=False,
17109 int imageId=-
1) -
> bool
</autodoc>
17111 <param name=
"n" type=
"size_t" default=
""/>
17112 <param name=
"page" type=
"Window" default=
""/>
17113 <param name=
"text" type=
"String" default=
""/>
17114 <param name=
"select" type=
"bool" default=
"False"/>
17115 <param name=
"imageId" type=
"int" default=
"-1"/>
17118 <method name=
"SetSelection" type=
"int" overloaded=
"no">
17119 <autodoc>SetSelection(size_t n) -
> int
</autodoc>
17121 <param name=
"n" type=
"size_t" default=
""/>
17124 <method name=
"AdvanceSelection" type=
"" overloaded=
"no">
17125 <autodoc>AdvanceSelection(bool forward=True)
</autodoc>
17127 <param name=
"forward" type=
"bool" default=
"True"/>
17131 <class name=
"BookCtrlEvent" oldname=
"wxBookCtrlEvent" module=
"controls">
17132 <baseclass name=
"NotifyEvent"/>
17133 <constructor name=
"BookCtrlEvent" overloaded=
"no">
17134 <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int id=
0, int nSel=-
1,
17135 int nOldSel=-
1) -
> BookCtrlEvent
</autodoc>
17137 <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/>
17138 <param name=
"id" type=
"int" default=
"0"/>
17139 <param name=
"nSel" type=
"int" default=
"-1"/>
17140 <param name=
"nOldSel" type=
"int" default=
"-1"/>
17143 <method name=
"GetSelection" type=
"int" overloaded=
"no">
17144 <autodoc>GetSelection() -
> int
</autodoc>
17146 <method name=
"SetSelection" type=
"" overloaded=
"no">
17147 <autodoc>SetSelection(int nSel)
</autodoc>
17149 <param name=
"nSel" type=
"int" default=
""/>
17152 <method name=
"GetOldSelection" type=
"int" overloaded=
"no">
17153 <autodoc>GetOldSelection() -
> int
</autodoc>
17155 <method name=
"SetOldSelection" type=
"" overloaded=
"no">
17156 <autodoc>SetOldSelection(int nOldSel)
</autodoc>
17158 <param name=
"nOldSel" type=
"int" default=
""/>
17163 #---------------------------------------------------------------------------
17165 <class name=
"Notebook" oldname=
"wxNotebook" module=
"controls">
17166 <baseclass name=
"BookCtrl"/>
17167 <constructor name=
"Notebook" overloaded=
"no">
17168 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
17169 long style=
0, String name=NOTEBOOK_NAME) -
> Notebook
</autodoc>
17171 <param name=
"parent" type=
"Window" default=
""/>
17172 <param name=
"id" type=
"int" default=
""/>
17173 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
17174 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
17175 <param name=
"style" type=
"long" default=
"0"/>
17176 <param name=
"name" type=
"String" default=
"wxPyNOTEBOOK_NAME"/>
17179 <constructor name=
"PreNotebook" overloaded=
"no">
17180 <autodoc>PreNotebook() -
> Notebook
</autodoc>
17182 <method name=
"Create" type=
"bool" overloaded=
"no">
17183 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
17184 long style=
0, String name=NOTEBOOK_NAME) -
> bool
</autodoc>
17186 <param name=
"parent" type=
"Window" default=
""/>
17187 <param name=
"id" type=
"int" default=
""/>
17188 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
17189 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
17190 <param name=
"style" type=
"long" default=
"0"/>
17191 <param name=
"name" type=
"String" default=
"wxPyNOTEBOOK_NAME"/>
17194 <method name=
"GetRowCount" type=
"int" overloaded=
"no">
17195 <autodoc>GetRowCount() -
> int
</autodoc>
17197 <method name=
"SetPadding" type=
"" overloaded=
"no">
17198 <autodoc>SetPadding(Size padding)
</autodoc>
17200 <param name=
"padding" type=
"Size" default=
""/>
17203 <method name=
"SetTabSize" type=
"" overloaded=
"no">
17204 <autodoc>SetTabSize(Size sz)
</autodoc>
17206 <param name=
"sz" type=
"Size" default=
""/>
17209 <method name=
"HitTest" type=
"int" overloaded=
"no">
17210 <autodoc>HitTest(Point pt) -
> (tab, where)
</autodoc>
17211 <docstring>Returns the tab which is hit, and flags indicating where using wx.NB_HITTEST_ flags.
</docstring>
17213 <param name=
"pt" type=
"Point" default=
""/>
17214 <param name=
"OUTPUT" type=
"long" default=
""/>
17217 <method name=
"CalcSizeFromPage" type=
"Size" overloaded=
"no">
17218 <autodoc>CalcSizeFromPage(Size sizePage) -
> Size
</autodoc>
17220 <param name=
"sizePage" type=
"Size" default=
""/>
17224 <class name=
"NotebookEvent" oldname=
"wxNotebookEvent" module=
"controls">
17225 <baseclass name=
"BookCtrlEvent"/>
17226 <constructor name=
"NotebookEvent" overloaded=
"no">
17227 <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int id=
0, int nSel=-
1,
17228 int nOldSel=-
1) -
> NotebookEvent
</autodoc>
17230 <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/>
17231 <param name=
"id" type=
"int" default=
"0"/>
17232 <param name=
"nSel" type=
"int" default=
"-1"/>
17233 <param name=
"nOldSel" type=
"int" default=
"-1"/>
17238 # wxNotebook events
17239 EVT_NOTEBOOK_PAGE_CHANGED = wx.PyEventBinder( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED,
1 )
17240 EVT_NOTEBOOK_PAGE_CHANGING = wx.PyEventBinder( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING,
1 )
17243 #----------------------------------------------------------------------------
17245 class NotebookPage(wx.Panel):
17247 There is an old (and apparently unsolvable) bug when placing a
17248 window with a nonstandard background colour in a wxNotebook on
17249 wxGTK, as the notbooks's background colour would always be used
17250 when the window is refreshed. The solution is to place a panel in
17251 the notbook and the coloured window on the panel, sized to cover
17252 the panel. This simple class does that for you, just put an
17253 instance of this in the notebook and make your regular window a
17254 child of this one and it will handle the resize for you.
17256 def __init__(self, parent, id=-
1,
17257 pos=wx.DefaultPosition, size=wx.DefaultSize,
17258 style=wx.TAB_TRAVERSAL,
name="panel"):
17259 wx.Panel.__init__(self, parent, id, pos, size, style, name)
17261 EVT_SIZE(self, self.OnSize)
17263 def OnSize(self, evt):
17264 if self.child is None:
17265 children = self.GetChildren()
17267 self.child = children[
0]
17269 self.child.SetPosition((
0,
0))
17270 self.child.SetSize(self.GetSize())
17274 #---------------------------------------------------------------------------
17276 <class name=
"Listbook" oldname=
"wxListbook" module=
"controls">
17277 <baseclass name=
"BookCtrl"/>
17278 <constructor name=
"Listbook" overloaded=
"no">
17279 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
17280 long style=
0, String name=EmptyString) -
> Listbook
</autodoc>
17282 <param name=
"parent" type=
"Window" default=
""/>
17283 <param name=
"id" type=
"int" default=
""/>
17284 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
17285 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
17286 <param name=
"style" type=
"long" default=
"0"/>
17287 <param name=
"name" type=
"String" default=
"wxPyEmptyString"/>
17290 <constructor name=
"PreListbook" overloaded=
"no">
17291 <autodoc>PreListbook() -
> Listbook
</autodoc>
17293 <method name=
"Create" type=
"bool" overloaded=
"no">
17294 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
17295 long style=
0, String name=EmptyString) -
> bool
</autodoc>
17297 <param name=
"parent" type=
"Window" default=
""/>
17298 <param name=
"id" type=
"int" default=
""/>
17299 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
17300 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
17301 <param name=
"style" type=
"long" default=
"0"/>
17302 <param name=
"name" type=
"String" default=
"wxPyEmptyString"/>
17305 <method name=
"IsVertical" type=
"bool" overloaded=
"no">
17306 <autodoc>IsVertical() -
> bool
</autodoc>
17309 <class name=
"ListbookEvent" oldname=
"wxListbookEvent" module=
"controls">
17310 <baseclass name=
"BookCtrlEvent"/>
17311 <constructor name=
"ListbookEvent" overloaded=
"no">
17312 <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int id=
0, int nSel=-
1,
17313 int nOldSel=-
1) -
> ListbookEvent
</autodoc>
17315 <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/>
17316 <param name=
"id" type=
"int" default=
"0"/>
17317 <param name=
"nSel" type=
"int" default=
"-1"/>
17318 <param name=
"nOldSel" type=
"int" default=
"-1"/>
17323 EVT_LISTBOOK_PAGE_CHANGED = wx.PyEventBinder( wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED,
1 )
17324 EVT_LISTBOOK_PAGE_CHANGING = wx.PyEventBinder( wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING,
1 )
17327 #---------------------------------------------------------------------------
17329 <class name=
"BookCtrlSizer" oldname=
"wxBookCtrlSizer" module=
"controls">
17330 <baseclass name=
"Sizer"/>
17331 <constructor name=
"BookCtrlSizer" overloaded=
"no">
17332 <autodoc>__init__(BookCtrl nb) -
> BookCtrlSizer
</autodoc>
17334 <param name=
"nb" type=
"BookCtrl" default=
""/>
17337 <method name=
"RecalcSizes" type=
"" overloaded=
"no">
17338 <autodoc>RecalcSizes()
</autodoc>
17340 <method name=
"CalcMin" type=
"Size" overloaded=
"no">
17341 <autodoc>CalcMin() -
> Size
</autodoc>
17343 <method name=
"GetControl" type=
"BookCtrl" overloaded=
"no">
17344 <autodoc>GetControl() -
> BookCtrl
</autodoc>
17347 <class name=
"NotebookSizer" oldname=
"wxNotebookSizer" module=
"controls">
17348 <baseclass name=
"Sizer"/>
17349 <constructor name=
"NotebookSizer" overloaded=
"no">
17350 <autodoc>__init__(Notebook nb) -
> NotebookSizer
</autodoc>
17352 <param name=
"nb" type=
"Notebook" default=
""/>
17355 <method name=
"RecalcSizes" type=
"" overloaded=
"no">
17356 <autodoc>RecalcSizes()
</autodoc>
17358 <method name=
"CalcMin" type=
"Size" overloaded=
"no">
17359 <autodoc>CalcMin() -
> Size
</autodoc>
17361 <method name=
"GetNotebook" type=
"Notebook" overloaded=
"no">
17362 <autodoc>GetNotebook() -
> Notebook
</autodoc>
17366 #---------------------------------------------------------------------------
17368 <class name=
"ToolBarToolBase" oldname=
"wxToolBarToolBase" module=
"controls">
17369 <baseclass name=
"Object"/>
17370 <method name=
"GetId" type=
"int" overloaded=
"no">
17371 <autodoc>GetId() -
> int
</autodoc>
17373 <method name=
"GetControl" type=
"Control" overloaded=
"no">
17374 <autodoc>GetControl() -
> Control
</autodoc>
17376 <method name=
"GetToolBar" type=
"wxToolBarBase" overloaded=
"no">
17377 <autodoc>GetToolBar() -
> ToolBarBase
</autodoc>
17379 <method name=
"IsButton" type=
"int" overloaded=
"no">
17380 <autodoc>IsButton() -
> int
</autodoc>
17382 <method name=
"IsControl" type=
"int" overloaded=
"no">
17383 <autodoc>IsControl() -
> int
</autodoc>
17385 <method name=
"IsSeparator" type=
"int" overloaded=
"no">
17386 <autodoc>IsSeparator() -
> int
</autodoc>
17388 <method name=
"GetStyle" type=
"int" overloaded=
"no">
17389 <autodoc>GetStyle() -
> int
</autodoc>
17391 <method name=
"GetKind" type=
"wxItemKind" overloaded=
"no">
17392 <autodoc>GetKind() -
> int
</autodoc>
17394 <method name=
"IsEnabled" type=
"bool" overloaded=
"no">
17395 <autodoc>IsEnabled() -
> bool
</autodoc>
17397 <method name=
"IsToggled" type=
"bool" overloaded=
"no">
17398 <autodoc>IsToggled() -
> bool
</autodoc>
17400 <method name=
"CanBeToggled" type=
"bool" overloaded=
"no">
17401 <autodoc>CanBeToggled() -
> bool
</autodoc>
17403 <method name=
"GetNormalBitmap" type=
"Bitmap" overloaded=
"no">
17404 <autodoc>GetNormalBitmap() -
> Bitmap
</autodoc>
17406 <method name=
"GetDisabledBitmap" type=
"Bitmap" overloaded=
"no">
17407 <autodoc>GetDisabledBitmap() -
> Bitmap
</autodoc>
17409 <method name=
"GetBitmap" type=
"Bitmap" overloaded=
"no">
17410 <autodoc>GetBitmap() -
> Bitmap
</autodoc>
17412 <method name=
"GetLabel" type=
"String" overloaded=
"no">
17413 <autodoc>GetLabel() -
> String
</autodoc>
17415 <method name=
"GetShortHelp" type=
"String" overloaded=
"no">
17416 <autodoc>GetShortHelp() -
> String
</autodoc>
17418 <method name=
"GetLongHelp" type=
"String" overloaded=
"no">
17419 <autodoc>GetLongHelp() -
> String
</autodoc>
17421 <method name=
"Enable" type=
"bool" overloaded=
"no">
17422 <autodoc>Enable(bool enable) -
> bool
</autodoc>
17424 <param name=
"enable" type=
"bool" default=
""/>
17427 <method name=
"Toggle" type=
"" overloaded=
"no">
17428 <autodoc>Toggle()
</autodoc>
17430 <method name=
"SetToggle" type=
"bool" overloaded=
"no">
17431 <autodoc>SetToggle(bool toggle) -
> bool
</autodoc>
17433 <param name=
"toggle" type=
"bool" default=
""/>
17436 <method name=
"SetShortHelp" type=
"bool" overloaded=
"no">
17437 <autodoc>SetShortHelp(String help) -
> bool
</autodoc>
17439 <param name=
"help" type=
"String" default=
""/>
17442 <method name=
"SetLongHelp" type=
"bool" overloaded=
"no">
17443 <autodoc>SetLongHelp(String help) -
> bool
</autodoc>
17445 <param name=
"help" type=
"String" default=
""/>
17448 <method name=
"SetNormalBitmap" type=
"" overloaded=
"no">
17449 <autodoc>SetNormalBitmap(Bitmap bmp)
</autodoc>
17451 <param name=
"bmp" type=
"Bitmap" default=
""/>
17454 <method name=
"SetDisabledBitmap" type=
"" overloaded=
"no">
17455 <autodoc>SetDisabledBitmap(Bitmap bmp)
</autodoc>
17457 <param name=
"bmp" type=
"Bitmap" default=
""/>
17460 <method name=
"SetLabel" type=
"" overloaded=
"no">
17461 <autodoc>SetLabel(String label)
</autodoc>
17463 <param name=
"label" type=
"String" default=
""/>
17466 <method name=
"Detach" type=
"" overloaded=
"no">
17467 <autodoc>Detach()
</autodoc>
17469 <method name=
"Attach" type=
"" overloaded=
"no">
17470 <autodoc>Attach(ToolBarBase tbar)
</autodoc>
17472 <param name=
"tbar" type=
"wxToolBarBase" default=
""/>
17475 <method name=
"GetClientData" type=
"PyObject" overloaded=
"no">
17476 <autodoc>GetClientData() -
> PyObject
</autodoc>
17478 <method name=
"SetClientData" type=
"" overloaded=
"no">
17479 <autodoc>SetClientData(PyObject clientData)
</autodoc>
17481 <param name=
"clientData" type=
"PyObject" default=
""/>
17485 <class name=
"ToolBarBase" oldname=
"wxToolBarBase" module=
"controls">
17486 <baseclass name=
"Control"/>
17487 <method name=
"DoAddTool" type=
"ToolBarToolBase" overloaded=
"no">
17488 <autodoc>DoAddTool(int id, String label, Bitmap bitmap, Bitmap bmpDisabled=wxNullBitmap,
17489 int kind=ITEM_NORMAL, String shortHelp=EmptyString,
17490 String longHelp=EmptyString,
17491 PyObject clientData=None) -
> ToolBarToolBase
</autodoc>
17493 <param name=
"id" type=
"int" default=
""/>
17494 <param name=
"label" type=
"String" default=
""/>
17495 <param name=
"bitmap" type=
"Bitmap" default=
""/>
17496 <param name=
"bmpDisabled" type=
"Bitmap" default=
"wxNullBitmap"/>
17497 <param name=
"kind" type=
"wxItemKind" default=
"wxITEM_NORMAL"/>
17498 <param name=
"shortHelp" type=
"String" default=
"wxPyEmptyString"/>
17499 <param name=
"longHelp" type=
"String" default=
"wxPyEmptyString"/>
17500 <param name=
"clientData" type=
"PyObject" default=
"NULL"/>
17503 <method name=
"DoInsertTool" type=
"ToolBarToolBase" overloaded=
"no">
17504 <autodoc>DoInsertTool(size_t pos, int id, String label, Bitmap bitmap, Bitmap bmpDisabled=wxNullBitmap,
17505 int kind=ITEM_NORMAL,
17506 String shortHelp=EmptyString, String longHelp=EmptyString,
17507 PyObject clientData=None) -
> ToolBarToolBase
</autodoc>
17509 <param name=
"pos" type=
"size_t" default=
""/>
17510 <param name=
"id" type=
"int" default=
""/>
17511 <param name=
"label" type=
"String" default=
""/>
17512 <param name=
"bitmap" type=
"Bitmap" default=
""/>
17513 <param name=
"bmpDisabled" type=
"Bitmap" default=
"wxNullBitmap"/>
17514 <param name=
"kind" type=
"wxItemKind" default=
"wxITEM_NORMAL"/>
17515 <param name=
"shortHelp" type=
"String" default=
"wxPyEmptyString"/>
17516 <param name=
"longHelp" type=
"String" default=
"wxPyEmptyString"/>
17517 <param name=
"clientData" type=
"PyObject" default=
"NULL"/>
17520 <method name=
"AddToolItem" type=
"ToolBarToolBase" overloaded=
"no">
17521 <autodoc>AddToolItem(ToolBarToolBase tool) -
> ToolBarToolBase
</autodoc>
17523 <param name=
"tool" type=
"ToolBarToolBase" default=
""/>
17526 <method name=
"InsertToolItem" type=
"ToolBarToolBase" overloaded=
"no">
17527 <autodoc>InsertToolItem(size_t pos, ToolBarToolBase tool) -
> ToolBarToolBase
</autodoc>
17529 <param name=
"pos" type=
"size_t" default=
""/>
17530 <param name=
"tool" type=
"ToolBarToolBase" default=
""/>
17533 <method name=
"AddControl" type=
"ToolBarToolBase" overloaded=
"no">
17534 <autodoc>AddControl(Control control) -
> ToolBarToolBase
</autodoc>
17536 <param name=
"control" type=
"Control" default=
""/>
17539 <method name=
"InsertControl" type=
"ToolBarToolBase" overloaded=
"no">
17540 <autodoc>InsertControl(size_t pos, Control control) -
> ToolBarToolBase
</autodoc>
17542 <param name=
"pos" type=
"size_t" default=
""/>
17543 <param name=
"control" type=
"Control" default=
""/>
17546 <method name=
"FindControl" type=
"Control" overloaded=
"no">
17547 <autodoc>FindControl(int id) -
> Control
</autodoc>
17549 <param name=
"id" type=
"int" default=
""/>
17552 <method name=
"AddSeparator" type=
"ToolBarToolBase" overloaded=
"no">
17553 <autodoc>AddSeparator() -
> ToolBarToolBase
</autodoc>
17555 <method name=
"InsertSeparator" type=
"ToolBarToolBase" overloaded=
"no">
17556 <autodoc>InsertSeparator(size_t pos) -
> ToolBarToolBase
</autodoc>
17558 <param name=
"pos" type=
"size_t" default=
""/>
17561 <method name=
"RemoveTool" type=
"ToolBarToolBase" overloaded=
"no">
17562 <autodoc>RemoveTool(int id) -
> ToolBarToolBase
</autodoc>
17564 <param name=
"id" type=
"int" default=
""/>
17567 <method name=
"DeleteToolByPos" type=
"bool" overloaded=
"no">
17568 <autodoc>DeleteToolByPos(size_t pos) -
> bool
</autodoc>
17570 <param name=
"pos" type=
"size_t" default=
""/>
17573 <method name=
"DeleteTool" type=
"bool" overloaded=
"no">
17574 <autodoc>DeleteTool(int id) -
> bool
</autodoc>
17576 <param name=
"id" type=
"int" default=
""/>
17579 <method name=
"ClearTools" type=
"" overloaded=
"no">
17580 <autodoc>ClearTools()
</autodoc>
17582 <method name=
"Realize" type=
"bool" overloaded=
"no">
17583 <autodoc>Realize() -
> bool
</autodoc>
17585 <method name=
"EnableTool" type=
"" overloaded=
"no">
17586 <autodoc>EnableTool(int id, bool enable)
</autodoc>
17588 <param name=
"id" type=
"int" default=
""/>
17589 <param name=
"enable" type=
"bool" default=
""/>
17592 <method name=
"ToggleTool" type=
"" overloaded=
"no">
17593 <autodoc>ToggleTool(int id, bool toggle)
</autodoc>
17595 <param name=
"id" type=
"int" default=
""/>
17596 <param name=
"toggle" type=
"bool" default=
""/>
17599 <method name=
"SetToggle" type=
"" overloaded=
"no">
17600 <autodoc>SetToggle(int id, bool toggle)
</autodoc>
17602 <param name=
"id" type=
"int" default=
""/>
17603 <param name=
"toggle" type=
"bool" default=
""/>
17606 <method name=
"GetToolClientData" type=
"PyObject" overloaded=
"no">
17607 <autodoc>GetToolClientData(int id) -
> PyObject
</autodoc>
17609 <param name=
"id" type=
"int" default=
""/>
17612 <method name=
"SetToolClientData" type=
"" overloaded=
"no">
17613 <autodoc>SetToolClientData(int id, PyObject clientData)
</autodoc>
17615 <param name=
"id" type=
"int" default=
""/>
17616 <param name=
"clientData" type=
"PyObject" default=
""/>
17619 <method name=
"GetToolPos" type=
"int" overloaded=
"no">
17620 <autodoc>GetToolPos(int id) -
> int
</autodoc>
17622 <param name=
"id" type=
"int" default=
""/>
17625 <method name=
"GetToolState" type=
"bool" overloaded=
"no">
17626 <autodoc>GetToolState(int id) -
> bool
</autodoc>
17628 <param name=
"id" type=
"int" default=
""/>
17631 <method name=
"GetToolEnabled" type=
"bool" overloaded=
"no">
17632 <autodoc>GetToolEnabled(int id) -
> bool
</autodoc>
17634 <param name=
"id" type=
"int" default=
""/>
17637 <method name=
"SetToolShortHelp" type=
"" overloaded=
"no">
17638 <autodoc>SetToolShortHelp(int id, String helpString)
</autodoc>
17640 <param name=
"id" type=
"int" default=
""/>
17641 <param name=
"helpString" type=
"String" default=
""/>
17644 <method name=
"GetToolShortHelp" type=
"String" overloaded=
"no">
17645 <autodoc>GetToolShortHelp(int id) -
> String
</autodoc>
17647 <param name=
"id" type=
"int" default=
""/>
17650 <method name=
"SetToolLongHelp" type=
"" overloaded=
"no">
17651 <autodoc>SetToolLongHelp(int id, String helpString)
</autodoc>
17653 <param name=
"id" type=
"int" default=
""/>
17654 <param name=
"helpString" type=
"String" default=
""/>
17657 <method name=
"GetToolLongHelp" type=
"String" overloaded=
"no">
17658 <autodoc>GetToolLongHelp(int id) -
> String
</autodoc>
17660 <param name=
"id" type=
"int" default=
""/>
17663 <method name=
"SetMarginsXY" type=
"" overloaded=
"no">
17664 <autodoc>SetMarginsXY(int x, int y)
</autodoc>
17666 <param name=
"x" type=
"int" default=
""/>
17667 <param name=
"y" type=
"int" default=
""/>
17670 <method name=
"SetMargins" type=
"" overloaded=
"no">
17671 <autodoc>SetMargins(Size size)
</autodoc>
17673 <param name=
"size" type=
"Size" default=
""/>
17676 <method name=
"SetToolPacking" type=
"" overloaded=
"no">
17677 <autodoc>SetToolPacking(int packing)
</autodoc>
17679 <param name=
"packing" type=
"int" default=
""/>
17682 <method name=
"SetToolSeparation" type=
"" overloaded=
"no">
17683 <autodoc>SetToolSeparation(int separation)
</autodoc>
17685 <param name=
"separation" type=
"int" default=
""/>
17688 <method name=
"GetToolMargins" type=
"Size" overloaded=
"no">
17689 <autodoc>GetToolMargins() -
> Size
</autodoc>
17691 <method name=
"GetMargins" type=
"Size" overloaded=
"no">
17692 <autodoc>GetMargins() -
> Size
</autodoc>
17694 <method name=
"GetToolPacking" type=
"int" overloaded=
"no">
17695 <autodoc>GetToolPacking() -
> int
</autodoc>
17697 <method name=
"GetToolSeparation" type=
"int" overloaded=
"no">
17698 <autodoc>GetToolSeparation() -
> int
</autodoc>
17700 <method name=
"SetRows" type=
"" overloaded=
"no">
17701 <autodoc>SetRows(int nRows)
</autodoc>
17703 <param name=
"nRows" type=
"int" default=
""/>
17706 <method name=
"SetMaxRowsCols" type=
"" overloaded=
"no">
17707 <autodoc>SetMaxRowsCols(int rows, int cols)
</autodoc>
17709 <param name=
"rows" type=
"int" default=
""/>
17710 <param name=
"cols" type=
"int" default=
""/>
17713 <method name=
"GetMaxRows" type=
"int" overloaded=
"no">
17714 <autodoc>GetMaxRows() -
> int
</autodoc>
17716 <method name=
"GetMaxCols" type=
"int" overloaded=
"no">
17717 <autodoc>GetMaxCols() -
> int
</autodoc>
17719 <method name=
"SetToolBitmapSize" type=
"" overloaded=
"no">
17720 <autodoc>SetToolBitmapSize(Size size)
</autodoc>
17722 <param name=
"size" type=
"Size" default=
""/>
17725 <method name=
"GetToolBitmapSize" type=
"Size" overloaded=
"no">
17726 <autodoc>GetToolBitmapSize() -
> Size
</autodoc>
17728 <method name=
"GetToolSize" type=
"Size" overloaded=
"no">
17729 <autodoc>GetToolSize() -
> Size
</autodoc>
17731 <method name=
"FindToolForPosition" type=
"ToolBarToolBase" overloaded=
"no">
17732 <autodoc>FindToolForPosition(int x, int y) -
> ToolBarToolBase
</autodoc>
17734 <param name=
"x" type=
"int" default=
""/>
17735 <param name=
"y" type=
"int" default=
""/>
17738 <method name=
"FindById" type=
"ToolBarToolBase" overloaded=
"no">
17739 <autodoc>FindById(int toolid) -
> ToolBarToolBase
</autodoc>
17741 <param name=
"toolid" type=
"int" default=
""/>
17744 <method name=
"IsVertical" type=
"bool" overloaded=
"no">
17745 <autodoc>IsVertical() -
> bool
</autodoc>
17748 <class name=
"ToolBar" oldname=
"wxToolBar" module=
"controls">
17749 <baseclass name=
"ToolBarBase"/>
17750 <constructor name=
"ToolBar" overloaded=
"no">
17751 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
17752 long style=wxNO_BORDER|wxTB_HORIZONTAL,
17753 String name=wxPyToolBarNameStr) -
> ToolBar
</autodoc>
17755 <param name=
"parent" type=
"Window" default=
""/>
17756 <param name=
"id" type=
"int" default=
""/>
17757 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
17758 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
17759 <param name=
"style" type=
"long" default=
"wxNO_BORDER|wxTB_HORIZONTAL"/>
17760 <param name=
"name" type=
"String" default=
"wxPyToolBarNameStr"/>
17763 <constructor name=
"PreToolBar" overloaded=
"no">
17764 <autodoc>PreToolBar() -
> ToolBar
</autodoc>
17766 <method name=
"Create" type=
"bool" overloaded=
"no">
17767 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
17768 long style=wxNO_BORDER|wxTB_HORIZONTAL,
17769 String name=wxPyToolBarNameStr) -
> bool
</autodoc>
17771 <param name=
"parent" type=
"Window" default=
""/>
17772 <param name=
"id" type=
"int" default=
""/>
17773 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
17774 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
17775 <param name=
"style" type=
"long" default=
"wxNO_BORDER|wxTB_HORIZONTAL"/>
17776 <param name=
"name" type=
"String" default=
"wxPyToolBarNameStr"/>
17779 <method name=
"FindToolForPosition" type=
"ToolBarToolBase" overloaded=
"no">
17780 <autodoc>FindToolForPosition(int x, int y) -
> ToolBarToolBase
</autodoc>
17782 <param name=
"x" type=
"int" default=
""/>
17783 <param name=
"y" type=
"int" default=
""/>
17788 #---------------------------------------------------------------------------
17791 #---------------------------------------------------------------------------
17793 <class name=
"ListItemAttr" oldname=
"wxListItemAttr" module=
"controls">
17794 <constructor name=
"ListItemAttr" overloaded=
"no">
17795 <autodoc>__init__(Colour colText=wxNullColour, Colour colBack=wxNullColour,
17796 Font font=wxNullFont) -
> ListItemAttr
</autodoc>
17798 <param name=
"colText" type=
"Colour" default=
"wxNullColour"/>
17799 <param name=
"colBack" type=
"Colour" default=
"wxNullColour"/>
17800 <param name=
"font" type=
"Font" default=
"wxNullFont"/>
17803 <method name=
"SetTextColour" type=
"" overloaded=
"no">
17804 <autodoc>SetTextColour(Colour colText)
</autodoc>
17806 <param name=
"colText" type=
"Colour" default=
""/>
17809 <method name=
"SetBackgroundColour" type=
"" overloaded=
"no">
17810 <autodoc>SetBackgroundColour(Colour colBack)
</autodoc>
17812 <param name=
"colBack" type=
"Colour" default=
""/>
17815 <method name=
"SetFont" type=
"" overloaded=
"no">
17816 <autodoc>SetFont(Font font)
</autodoc>
17818 <param name=
"font" type=
"Font" default=
""/>
17821 <method name=
"HasTextColour" type=
"bool" overloaded=
"no">
17822 <autodoc>HasTextColour() -
> bool
</autodoc>
17824 <method name=
"HasBackgroundColour" type=
"bool" overloaded=
"no">
17825 <autodoc>HasBackgroundColour() -
> bool
</autodoc>
17827 <method name=
"HasFont" type=
"bool" overloaded=
"no">
17828 <autodoc>HasFont() -
> bool
</autodoc>
17830 <method name=
"GetTextColour" type=
"Colour" overloaded=
"no">
17831 <autodoc>GetTextColour() -
> Colour
</autodoc>
17833 <method name=
"GetBackgroundColour" type=
"Colour" overloaded=
"no">
17834 <autodoc>GetBackgroundColour() -
> Colour
</autodoc>
17836 <method name=
"GetFont" type=
"Font" overloaded=
"no">
17837 <autodoc>GetFont() -
> Font
</autodoc>
17839 <method name=
"Destroy" type=
"" overloaded=
"no">
17840 <autodoc>Destroy()
</autodoc>
17844 #---------------------------------------------------------------------------
17846 <class name=
"ListItem" oldname=
"wxListItem" module=
"controls">
17847 <baseclass name=
"Object"/>
17848 <constructor name=
"ListItem" overloaded=
"no">
17849 <autodoc>__init__() -
> ListItem
</autodoc>
17851 <destructor name=
"~wxListItem" overloaded=
"no">
17852 <autodoc>__del__()
</autodoc>
17854 <method name=
"Clear" type=
"" overloaded=
"no">
17855 <autodoc>Clear()
</autodoc>
17857 <method name=
"ClearAttributes" type=
"" overloaded=
"no">
17858 <autodoc>ClearAttributes()
</autodoc>
17860 <method name=
"SetMask" type=
"" overloaded=
"no">
17861 <autodoc>SetMask(long mask)
</autodoc>
17863 <param name=
"mask" type=
"long" default=
""/>
17866 <method name=
"SetId" type=
"" overloaded=
"no">
17867 <autodoc>SetId(long id)
</autodoc>
17869 <param name=
"id" type=
"long" default=
""/>
17872 <method name=
"SetColumn" type=
"" overloaded=
"no">
17873 <autodoc>SetColumn(int col)
</autodoc>
17875 <param name=
"col" type=
"int" default=
""/>
17878 <method name=
"SetState" type=
"" overloaded=
"no">
17879 <autodoc>SetState(long state)
</autodoc>
17881 <param name=
"state" type=
"long" default=
""/>
17884 <method name=
"SetStateMask" type=
"" overloaded=
"no">
17885 <autodoc>SetStateMask(long stateMask)
</autodoc>
17887 <param name=
"stateMask" type=
"long" default=
""/>
17890 <method name=
"SetText" type=
"" overloaded=
"no">
17891 <autodoc>SetText(String text)
</autodoc>
17893 <param name=
"text" type=
"String" default=
""/>
17896 <method name=
"SetImage" type=
"" overloaded=
"no">
17897 <autodoc>SetImage(int image)
</autodoc>
17899 <param name=
"image" type=
"int" default=
""/>
17902 <method name=
"SetData" type=
"" overloaded=
"no">
17903 <autodoc>SetData(long data)
</autodoc>
17905 <param name=
"data" type=
"long" default=
""/>
17908 <method name=
"SetWidth" type=
"" overloaded=
"no">
17909 <autodoc>SetWidth(int width)
</autodoc>
17911 <param name=
"width" type=
"int" default=
""/>
17914 <method name=
"SetAlign" type=
"" overloaded=
"no">
17915 <autodoc>SetAlign(int align)
</autodoc>
17917 <param name=
"align" type=
"wxListColumnFormat" default=
""/>
17920 <method name=
"SetTextColour" type=
"" overloaded=
"no">
17921 <autodoc>SetTextColour(Colour colText)
</autodoc>
17923 <param name=
"colText" type=
"Colour" default=
""/>
17926 <method name=
"SetBackgroundColour" type=
"" overloaded=
"no">
17927 <autodoc>SetBackgroundColour(Colour colBack)
</autodoc>
17929 <param name=
"colBack" type=
"Colour" default=
""/>
17932 <method name=
"SetFont" type=
"" overloaded=
"no">
17933 <autodoc>SetFont(Font font)
</autodoc>
17935 <param name=
"font" type=
"Font" default=
""/>
17938 <method name=
"GetMask" type=
"long" overloaded=
"no">
17939 <autodoc>GetMask() -
> long
</autodoc>
17941 <method name=
"GetId" type=
"long" overloaded=
"no">
17942 <autodoc>GetId() -
> long
</autodoc>
17944 <method name=
"GetColumn" type=
"int" overloaded=
"no">
17945 <autodoc>GetColumn() -
> int
</autodoc>
17947 <method name=
"GetState" type=
"long" overloaded=
"no">
17948 <autodoc>GetState() -
> long
</autodoc>
17950 <method name=
"GetText" type=
"String" overloaded=
"no">
17951 <autodoc>GetText() -
> String
</autodoc>
17953 <method name=
"GetImage" type=
"int" overloaded=
"no">
17954 <autodoc>GetImage() -
> int
</autodoc>
17956 <method name=
"GetData" type=
"long" overloaded=
"no">
17957 <autodoc>GetData() -
> long
</autodoc>
17959 <method name=
"GetWidth" type=
"int" overloaded=
"no">
17960 <autodoc>GetWidth() -
> int
</autodoc>
17962 <method name=
"GetAlign" type=
"wxListColumnFormat" overloaded=
"no">
17963 <autodoc>GetAlign() -
> int
</autodoc>
17965 <method name=
"GetAttributes" type=
"ListItemAttr" overloaded=
"no">
17966 <autodoc>GetAttributes() -
> ListItemAttr
</autodoc>
17968 <method name=
"HasAttributes" type=
"bool" overloaded=
"no">
17969 <autodoc>HasAttributes() -
> bool
</autodoc>
17971 <method name=
"GetTextColour" type=
"Colour" overloaded=
"no">
17972 <autodoc>GetTextColour() -
> Colour
</autodoc>
17974 <method name=
"GetBackgroundColour" type=
"Colour" overloaded=
"no">
17975 <autodoc>GetBackgroundColour() -
> Colour
</autodoc>
17977 <method name=
"GetFont" type=
"Font" overloaded=
"no">
17978 <autodoc>GetFont() -
> Font
</autodoc>
17980 <property name=
"m_mask" type=
"long" readonly=
"no"/>
17981 <property name=
"m_itemId" type=
"long" readonly=
"no"/>
17982 <property name=
"m_col" type=
"int" readonly=
"no"/>
17983 <property name=
"m_state" type=
"long" readonly=
"no"/>
17984 <property name=
"m_stateMask" type=
"long" readonly=
"no"/>
17985 <property name=
"m_text" type=
"String" readonly=
"no"/>
17986 <property name=
"m_image" type=
"int" readonly=
"no"/>
17987 <property name=
"m_data" type=
"long" readonly=
"no"/>
17988 <property name=
"m_format" type=
"int" readonly=
"no"/>
17989 <property name=
"m_width" type=
"int" readonly=
"no"/>
17992 #---------------------------------------------------------------------------
17994 <class name=
"ListEvent" oldname=
"wxListEvent" module=
"controls">
17995 <baseclass name=
"NotifyEvent"/>
17996 <constructor name=
"ListEvent" overloaded=
"no">
17997 <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int id=
0) -
> ListEvent
</autodoc>
17999 <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/>
18000 <param name=
"id" type=
"int" default=
"0"/>
18003 <property name=
"m_code" type=
"int" readonly=
"no"/>
18004 <property name=
"m_oldItemIndex" type=
"long" readonly=
"no"/>
18005 <property name=
"m_itemIndex" type=
"long" readonly=
"no"/>
18006 <property name=
"m_col" type=
"int" readonly=
"no"/>
18007 <property name=
"m_pointDrag" type=
"Point" readonly=
"no"/>
18008 <property name=
"m_item" type=
"ListItem" readonly=
"yes"/>
18009 <method name=
"GetKeyCode" type=
"int" overloaded=
"no">
18010 <autodoc>GetKeyCode() -
> int
</autodoc>
18012 <method name=
"GetIndex" type=
"long" overloaded=
"no">
18013 <autodoc>GetIndex() -
> long
</autodoc>
18015 <method name=
"GetColumn" type=
"int" overloaded=
"no">
18016 <autodoc>GetColumn() -
> int
</autodoc>
18018 <method name=
"GetPoint" type=
"Point" overloaded=
"no">
18019 <autodoc>GetPoint() -
> Point
</autodoc>
18021 <method name=
"GetLabel" type=
"String" overloaded=
"no">
18022 <autodoc>GetLabel() -
> String
</autodoc>
18024 <method name=
"GetText" type=
"String" overloaded=
"no">
18025 <autodoc>GetText() -
> String
</autodoc>
18027 <method name=
"GetImage" type=
"int" overloaded=
"no">
18028 <autodoc>GetImage() -
> int
</autodoc>
18030 <method name=
"GetData" type=
"long" overloaded=
"no">
18031 <autodoc>GetData() -
> long
</autodoc>
18033 <method name=
"GetMask" type=
"long" overloaded=
"no">
18034 <autodoc>GetMask() -
> long
</autodoc>
18036 <method name=
"GetItem" type=
"ListItem" overloaded=
"no">
18037 <autodoc>GetItem() -
> ListItem
</autodoc>
18039 <method name=
"GetCacheFrom" type=
"long" overloaded=
"no">
18040 <autodoc>GetCacheFrom() -
> long
</autodoc>
18042 <method name=
"GetCacheTo" type=
"long" overloaded=
"no">
18043 <autodoc>GetCacheTo() -
> long
</autodoc>
18045 <method name=
"IsEditCancelled" type=
"bool" overloaded=
"no">
18046 <autodoc>IsEditCancelled() -
> bool
</autodoc>
18048 <method name=
"SetEditCanceled" type=
"" overloaded=
"no">
18049 <autodoc>SetEditCanceled(bool editCancelled)
</autodoc>
18051 <param name=
"editCancelled" type=
"bool" default=
""/>
18057 EVT_LIST_BEGIN_DRAG = wx.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_DRAG ,
1)
18058 EVT_LIST_BEGIN_RDRAG = wx.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_RDRAG ,
1)
18059 EVT_LIST_BEGIN_LABEL_EDIT = wx.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT ,
1)
18060 EVT_LIST_END_LABEL_EDIT = wx.PyEventBinder(wxEVT_COMMAND_LIST_END_LABEL_EDIT ,
1)
18061 EVT_LIST_DELETE_ITEM = wx.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ITEM ,
1)
18062 EVT_LIST_DELETE_ALL_ITEMS = wx.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS ,
1)
18063 EVT_LIST_GET_INFO = wx.PyEventBinder(wxEVT_COMMAND_LIST_GET_INFO ,
1)
18064 EVT_LIST_SET_INFO = wx.PyEventBinder(wxEVT_COMMAND_LIST_SET_INFO ,
1)
18065 EVT_LIST_ITEM_SELECTED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_SELECTED ,
1)
18066 EVT_LIST_ITEM_DESELECTED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_DESELECTED ,
1)
18067 EVT_LIST_KEY_DOWN = wx.PyEventBinder(wxEVT_COMMAND_LIST_KEY_DOWN ,
1)
18068 EVT_LIST_INSERT_ITEM = wx.PyEventBinder(wxEVT_COMMAND_LIST_INSERT_ITEM ,
1)
18069 EVT_LIST_COL_CLICK = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_CLICK ,
1)
18070 EVT_LIST_ITEM_RIGHT_CLICK = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK ,
1)
18071 EVT_LIST_ITEM_MIDDLE_CLICK = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK,
1)
18072 EVT_LIST_ITEM_ACTIVATED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_ACTIVATED ,
1)
18073 EVT_LIST_CACHE_HINT = wx.PyEventBinder(wxEVT_COMMAND_LIST_CACHE_HINT ,
1)
18074 EVT_LIST_COL_RIGHT_CLICK = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_RIGHT_CLICK ,
1)
18075 EVT_LIST_COL_BEGIN_DRAG = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG ,
1)
18076 EVT_LIST_COL_DRAGGING = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_DRAGGING ,
1)
18077 EVT_LIST_COL_END_DRAG = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_END_DRAG ,
1)
18078 EVT_LIST_ITEM_FOCUSED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_FOCUSED ,
1)
18081 #---------------------------------------------------------------------------
18083 <class name=
"ListCtrl" oldname=
"wxPyListCtrl" module=
"controls">
18084 <baseclass name=
"Control"/>
18085 <constructor name=
"wxPyListCtrl" overloaded=
"no">
18086 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
18087 Size size=DefaultSize, long style=LC_ICON,
18088 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -
> ListCtrl
</autodoc>
18090 <param name=
"parent" type=
"Window" default=
""/>
18091 <param name=
"id" type=
"int" default=
"-1"/>
18092 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
18093 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
18094 <param name=
"style" type=
"long" default=
"wxLC_ICON"/>
18095 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
18096 <param name=
"name" type=
"String" default=
"wxPyListCtrlNameStr"/>
18099 <constructor name=
"PreListCtrl" overloaded=
"no">
18100 <autodoc>PreListCtrl() -
> ListCtrl
</autodoc>
18102 <method name=
"Create" type=
"bool" overloaded=
"no">
18103 <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition,
18104 Size size=DefaultSize, long style=LC_ICON,
18105 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -
> bool
</autodoc>
18106 <docstring>Do the
2nd phase and create the GUI control.
</docstring>
18108 <param name=
"parent" type=
"Window" default=
""/>
18109 <param name=
"id" type=
"int" default=
"-1"/>
18110 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
18111 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
18112 <param name=
"style" type=
"long" default=
"wxLC_ICON"/>
18113 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
18114 <param name=
"name" type=
"String" default=
"wxPyListCtrlNameStr"/>
18117 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
18118 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
18120 <param name=
"self" type=
"PyObject" default=
""/>
18121 <param name=
"_class" type=
"PyObject" default=
""/>
18124 <method name=
"SetForegroundColour" type=
"bool" overloaded=
"no">
18125 <autodoc>SetForegroundColour(Colour col) -
> bool
</autodoc>
18126 <docstring>Sets the foreground colour of the window. Returns True is the colour
18127 was changed. The interpretation of foreground colour is dependent on
18128 the window class; it may be the text colour or other colour, or it may
18129 not be used at all.
</docstring>
18131 <param name=
"col" type=
"Colour" default=
""/>
18134 <method name=
"SetBackgroundColour" type=
"bool" overloaded=
"no">
18135 <autodoc>SetBackgroundColour(Colour col) -
> bool
</autodoc>
18136 <docstring>Sets the background colour of the window. Returns True if the colour
18137 was changed. The background colour is usually painted by the default
18138 EVT_ERASE_BACKGROUND event handler function under Windows and
18139 automatically under GTK.
18141 Note that setting the background colour does not cause an immediate
18142 refresh, so you may wish to call ClearBackground or Refresh after
18143 calling this function.
18145 Use this function with care under GTK+ as the new appearance of the
18146 window might not look equally well when used with themes, i.e GTK+'s
18147 ability to change its look as the user wishes with run-time loadable
18148 modules.
</docstring>
18150 <param name=
"col" type=
"Colour" default=
""/>
18153 <method name=
"GetColumn" type=
"ListItem" overloaded=
"no">
18154 <autodoc>GetColumn(int col) -
> ListItem
</autodoc>
18156 <param name=
"col" type=
"int" default=
""/>
18159 <method name=
"SetColumn" type=
"bool" overloaded=
"no">
18160 <autodoc>SetColumn(int col, ListItem item) -
> bool
</autodoc>
18162 <param name=
"col" type=
"int" default=
""/>
18163 <param name=
"item" type=
"ListItem" default=
""/>
18166 <method name=
"GetColumnWidth" type=
"int" overloaded=
"no">
18167 <autodoc>GetColumnWidth(int col) -
> int
</autodoc>
18169 <param name=
"col" type=
"int" default=
""/>
18172 <method name=
"SetColumnWidth" type=
"bool" overloaded=
"no">
18173 <autodoc>SetColumnWidth(int col, int width) -
> bool
</autodoc>
18175 <param name=
"col" type=
"int" default=
""/>
18176 <param name=
"width" type=
"int" default=
""/>
18179 <method name=
"GetCountPerPage" type=
"int" overloaded=
"no">
18180 <autodoc>GetCountPerPage() -
> int
</autodoc>
18182 <method name=
"GetViewRect" type=
"Rect" overloaded=
"no">
18183 <autodoc>GetViewRect() -
> Rect
</autodoc>
18185 <method name=
"GetItem" type=
"ListItem" overloaded=
"no">
18186 <autodoc>GetItem(long itemId, int col=
0) -
> ListItem
</autodoc>
18188 <param name=
"itemId" type=
"long" default=
""/>
18189 <param name=
"col" type=
"int" default=
"0"/>
18192 <method name=
"SetItem" type=
"bool" overloaded=
"no">
18193 <autodoc>SetItem(ListItem info) -
> bool
</autodoc>
18195 <param name=
"info" type=
"ListItem" default=
""/>
18198 <method name=
"SetStringItem" type=
"long" overloaded=
"no">
18199 <autodoc>SetStringItem(long index, int col, String label, int imageId=-
1) -
> long
</autodoc>
18201 <param name=
"index" type=
"long" default=
""/>
18202 <param name=
"col" type=
"int" default=
""/>
18203 <param name=
"label" type=
"String" default=
""/>
18204 <param name=
"imageId" type=
"int" default=
"-1"/>
18207 <method name=
"GetItemState" type=
"int" overloaded=
"no">
18208 <autodoc>GetItemState(long item, long stateMask) -
> int
</autodoc>
18210 <param name=
"item" type=
"long" default=
""/>
18211 <param name=
"stateMask" type=
"long" default=
""/>
18214 <method name=
"SetItemState" type=
"bool" overloaded=
"no">
18215 <autodoc>SetItemState(long item, long state, long stateMask) -
> bool
</autodoc>
18217 <param name=
"item" type=
"long" default=
""/>
18218 <param name=
"state" type=
"long" default=
""/>
18219 <param name=
"stateMask" type=
"long" default=
""/>
18222 <method name=
"SetItemImage" type=
"bool" overloaded=
"no">
18223 <autodoc>SetItemImage(long item, int image, int selImage) -
> bool
</autodoc>
18225 <param name=
"item" type=
"long" default=
""/>
18226 <param name=
"image" type=
"int" default=
""/>
18227 <param name=
"selImage" type=
"int" default=
""/>
18230 <method name=
"GetItemText" type=
"String" overloaded=
"no">
18231 <autodoc>GetItemText(long item) -
> String
</autodoc>
18233 <param name=
"item" type=
"long" default=
""/>
18236 <method name=
"SetItemText" type=
"" overloaded=
"no">
18237 <autodoc>SetItemText(long item, String str)
</autodoc>
18239 <param name=
"item" type=
"long" default=
""/>
18240 <param name=
"str" type=
"String" default=
""/>
18243 <method name=
"GetItemData" type=
"long" overloaded=
"no">
18244 <autodoc>GetItemData(long item) -
> long
</autodoc>
18246 <param name=
"item" type=
"long" default=
""/>
18249 <method name=
"SetItemData" type=
"bool" overloaded=
"no">
18250 <autodoc>SetItemData(long item, long data) -
> bool
</autodoc>
18252 <param name=
"item" type=
"long" default=
""/>
18253 <param name=
"data" type=
"long" default=
""/>
18256 <method name=
"GetItemPosition" type=
"Point" overloaded=
"no">
18257 <autodoc>GetItemPosition(long item) -
> Point
</autodoc>
18259 <param name=
"item" type=
"long" default=
""/>
18262 <method name=
"GetItemRect" type=
"Rect" overloaded=
"no">
18263 <autodoc>GetItemRect(long item, int code=LIST_RECT_BOUNDS) -
> Rect
</autodoc>
18265 <param name=
"item" type=
"long" default=
""/>
18266 <param name=
"code" type=
"int" default=
"wxLIST_RECT_BOUNDS"/>
18269 <method name=
"SetItemPosition" type=
"bool" overloaded=
"no">
18270 <autodoc>SetItemPosition(long item, Point pos) -
> bool
</autodoc>
18272 <param name=
"item" type=
"long" default=
""/>
18273 <param name=
"pos" type=
"Point" default=
""/>
18276 <method name=
"GetItemCount" type=
"int" overloaded=
"no">
18277 <autodoc>GetItemCount() -
> int
</autodoc>
18279 <method name=
"GetColumnCount" type=
"int" overloaded=
"no">
18280 <autodoc>GetColumnCount() -
> int
</autodoc>
18282 <method name=
"GetItemSpacing" type=
"Size" overloaded=
"no">
18283 <autodoc>GetItemSpacing() -
> Size
</autodoc>
18285 <method name=
"SetItemSpacing" type=
"" overloaded=
"no">
18286 <autodoc>SetItemSpacing(int spacing, bool isSmall=False)
</autodoc>
18288 <param name=
"spacing" type=
"int" default=
""/>
18289 <param name=
"isSmall" type=
"bool" default=
"False"/>
18292 <method name=
"GetSelectedItemCount" type=
"int" overloaded=
"no">
18293 <autodoc>GetSelectedItemCount() -
> int
</autodoc>
18295 <method name=
"GetTextColour" type=
"Colour" overloaded=
"no">
18296 <autodoc>GetTextColour() -
> Colour
</autodoc>
18298 <method name=
"SetTextColour" type=
"" overloaded=
"no">
18299 <autodoc>SetTextColour(Colour col)
</autodoc>
18301 <param name=
"col" type=
"Colour" default=
""/>
18304 <method name=
"GetTopItem" type=
"long" overloaded=
"no">
18305 <autodoc>GetTopItem() -
> long
</autodoc>
18307 <method name=
"SetSingleStyle" type=
"" overloaded=
"no">
18308 <autodoc>SetSingleStyle(long style, bool add=True)
</autodoc>
18310 <param name=
"style" type=
"long" default=
""/>
18311 <param name=
"add" type=
"bool" default=
"True"/>
18314 <method name=
"SetWindowStyleFlag" type=
"" overloaded=
"no">
18315 <autodoc>SetWindowStyleFlag(long style)
</autodoc>
18316 <docstring>Sets the style of the window. Please note that some styles cannot be
18317 changed after the window creation and that Refresh() might be called
18318 after changing the others for the change to take place immediately.
</docstring>
18320 <param name=
"style" type=
"long" default=
""/>
18323 <method name=
"GetNextItem" type=
"long" overloaded=
"no">
18324 <autodoc>GetNextItem(long item, int geometry=LIST_NEXT_ALL, int state=LIST_STATE_DONTCARE) -
> long
</autodoc>
18326 <param name=
"item" type=
"long" default=
""/>
18327 <param name=
"geometry" type=
"int" default=
"wxLIST_NEXT_ALL"/>
18328 <param name=
"state" type=
"int" default=
"wxLIST_STATE_DONTCARE"/>
18331 <method name=
"GetImageList" type=
"ImageList" overloaded=
"no">
18332 <autodoc>GetImageList(int which) -
> ImageList
</autodoc>
18334 <param name=
"which" type=
"int" default=
""/>
18337 <method name=
"SetImageList" type=
"" overloaded=
"no">
18338 <autodoc>SetImageList(ImageList imageList, int which)
</autodoc>
18340 <param name=
"imageList" type=
"ImageList" default=
""/>
18341 <param name=
"which" type=
"int" default=
""/>
18344 <method name=
"AssignImageList" type=
"" overloaded=
"no">
18345 <autodoc>AssignImageList(ImageList imageList, int which)
</autodoc>
18347 <param name=
"imageList" type=
"ImageList" default=
""/>
18348 <param name=
"which" type=
"int" default=
""/>
18351 <method name=
"InReportView" type=
"bool" overloaded=
"no">
18352 <autodoc>InReportView() -
> bool
</autodoc>
18354 <method name=
"IsVirtual" type=
"bool" overloaded=
"no">
18355 <autodoc>IsVirtual() -
> bool
</autodoc>
18357 <method name=
"RefreshItem" type=
"" overloaded=
"no">
18358 <autodoc>RefreshItem(long item)
</autodoc>
18360 <param name=
"item" type=
"long" default=
""/>
18363 <method name=
"RefreshItems" type=
"" overloaded=
"no">
18364 <autodoc>RefreshItems(long itemFrom, long itemTo)
</autodoc>
18366 <param name=
"itemFrom" type=
"long" default=
""/>
18367 <param name=
"itemTo" type=
"long" default=
""/>
18370 <method name=
"Arrange" type=
"bool" overloaded=
"no">
18371 <autodoc>Arrange(int flag=LIST_ALIGN_DEFAULT) -
> bool
</autodoc>
18373 <param name=
"flag" type=
"int" default=
"wxLIST_ALIGN_DEFAULT"/>
18376 <method name=
"DeleteItem" type=
"bool" overloaded=
"no">
18377 <autodoc>DeleteItem(long item) -
> bool
</autodoc>
18379 <param name=
"item" type=
"long" default=
""/>
18382 <method name=
"DeleteAllItems" type=
"bool" overloaded=
"no">
18383 <autodoc>DeleteAllItems() -
> bool
</autodoc>
18385 <method name=
"DeleteColumn" type=
"bool" overloaded=
"no">
18386 <autodoc>DeleteColumn(int col) -
> bool
</autodoc>
18388 <param name=
"col" type=
"int" default=
""/>
18391 <method name=
"DeleteAllColumns" type=
"bool" overloaded=
"no">
18392 <autodoc>DeleteAllColumns() -
> bool
</autodoc>
18394 <method name=
"ClearAll" type=
"" overloaded=
"no">
18395 <autodoc>ClearAll()
</autodoc>
18397 <method name=
"EditLabel" type=
"" overloaded=
"no">
18398 <autodoc>EditLabel(long item)
</autodoc>
18400 <param name=
"item" type=
"long" default=
""/>
18403 <method name=
"EnsureVisible" type=
"bool" overloaded=
"no">
18404 <autodoc>EnsureVisible(long item) -
> bool
</autodoc>
18406 <param name=
"item" type=
"long" default=
""/>
18409 <method name=
"FindItem" type=
"long" overloaded=
"no">
18410 <autodoc>FindItem(long start, String str, bool partial=False) -
> long
</autodoc>
18412 <param name=
"start" type=
"long" default=
""/>
18413 <param name=
"str" type=
"String" default=
""/>
18414 <param name=
"partial" type=
"bool" default=
"False"/>
18417 <method name=
"FindItemData" type=
"long" overloaded=
"no">
18418 <autodoc>FindItemData(long start, long data) -
> long
</autodoc>
18420 <param name=
"start" type=
"long" default=
""/>
18421 <param name=
"data" type=
"long" default=
""/>
18424 <method name=
"FindItemAtPos" type=
"long" overloaded=
"no">
18425 <autodoc>FindItemAtPos(long start, Point pt, int direction) -
> long
</autodoc>
18427 <param name=
"start" type=
"long" default=
""/>
18428 <param name=
"pt" type=
"Point" default=
""/>
18429 <param name=
"direction" type=
"int" default=
""/>
18432 <method name=
"HitTest" type=
"long" overloaded=
"no">
18433 <autodoc>HitTest(Point point) -
> (item, where)
</autodoc>
18434 <docstring>Determines which item (if any) is at the specified point,
18435 giving details in the second return value (see wxLIST_HITTEST_... flags.)
</docstring>
18437 <param name=
"point" type=
"Point" default=
""/>
18438 <param name=
"OUTPUT" type=
"int" default=
""/>
18441 <method name=
"InsertItem" type=
"long" overloaded=
"no">
18442 <autodoc>InsertItem(ListItem info) -
> long
</autodoc>
18444 <param name=
"info" type=
"ListItem" default=
""/>
18447 <method name=
"InsertStringItem" type=
"long" overloaded=
"no">
18448 <autodoc>InsertStringItem(long index, String label) -
> long
</autodoc>
18450 <param name=
"index" type=
"long" default=
""/>
18451 <param name=
"label" type=
"String" default=
""/>
18454 <method name=
"InsertImageItem" type=
"long" overloaded=
"no">
18455 <autodoc>InsertImageItem(long index, int imageIndex) -
> long
</autodoc>
18457 <param name=
"index" type=
"long" default=
""/>
18458 <param name=
"imageIndex" type=
"int" default=
""/>
18461 <method name=
"InsertImageStringItem" type=
"long" overloaded=
"no">
18462 <autodoc>InsertImageStringItem(long index, String label, int imageIndex) -
> long
</autodoc>
18464 <param name=
"index" type=
"long" default=
""/>
18465 <param name=
"label" type=
"String" default=
""/>
18466 <param name=
"imageIndex" type=
"int" default=
""/>
18469 <method name=
"InsertColumnInfo" type=
"long" overloaded=
"no">
18470 <autodoc>InsertColumnInfo(long col, ListItem info) -
> long
</autodoc>
18472 <param name=
"col" type=
"long" default=
""/>
18473 <param name=
"info" type=
"ListItem" default=
""/>
18476 <method name=
"InsertColumn" type=
"long" overloaded=
"no">
18477 <autodoc>InsertColumn(long col, String heading, int format=LIST_FORMAT_LEFT,
18478 int width=-
1) -
> long
</autodoc>
18480 <param name=
"col" type=
"long" default=
""/>
18481 <param name=
"heading" type=
"String" default=
""/>
18482 <param name=
"format" type=
"int" default=
"wxLIST_FORMAT_LEFT"/>
18483 <param name=
"width" type=
"int" default=
"-1"/>
18486 <method name=
"SetItemCount" type=
"" overloaded=
"no">
18487 <autodoc>SetItemCount(long count)
</autodoc>
18489 <param name=
"count" type=
"long" default=
""/>
18492 <method name=
"ScrollList" type=
"bool" overloaded=
"no">
18493 <autodoc>ScrollList(int dx, int dy) -
> bool
</autodoc>
18495 <param name=
"dx" type=
"int" default=
""/>
18496 <param name=
"dy" type=
"int" default=
""/>
18499 <method name=
"SetItemTextColour" type=
"" overloaded=
"no">
18500 <autodoc>SetItemTextColour(long item, Colour col)
</autodoc>
18502 <param name=
"item" type=
"long" default=
""/>
18503 <param name=
"col" type=
"Colour" default=
""/>
18506 <method name=
"GetItemTextColour" type=
"Colour" overloaded=
"no">
18507 <autodoc>GetItemTextColour(long item) -
> Colour
</autodoc>
18509 <param name=
"item" type=
"long" default=
""/>
18512 <method name=
"SetItemBackgroundColour" type=
"" overloaded=
"no">
18513 <autodoc>SetItemBackgroundColour(long item, Colour col)
</autodoc>
18515 <param name=
"item" type=
"long" default=
""/>
18516 <param name=
"col" type=
"Colour" default=
""/>
18519 <method name=
"GetItemBackgroundColour" type=
"Colour" overloaded=
"no">
18520 <autodoc>GetItemBackgroundColour(long item) -
> Colour
</autodoc>
18522 <param name=
"item" type=
"long" default=
""/>
18525 <method name=
"SortItems" type=
"bool" overloaded=
"no">
18526 <autodoc>SortItems(PyObject func) -
> bool
</autodoc>
18528 <param name=
"func" type=
"PyObject" default=
""/>
18531 <method name=
"GetMainWindow" type=
"Window" overloaded=
"no">
18532 <autodoc>GetMainWindow() -
> Window
</autodoc>
18536 #---------------------------------------------------------------------------
18538 <class name=
"ListView" oldname=
"wxListView" module=
"controls">
18539 <baseclass name=
"ListCtrl"/>
18540 <constructor name=
"ListView" overloaded=
"no">
18541 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
18542 Size size=DefaultSize, long style=LC_REPORT,
18543 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -
> ListView
</autodoc>
18545 <param name=
"parent" type=
"Window" default=
""/>
18546 <param name=
"id" type=
"int" default=
"-1"/>
18547 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
18548 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
18549 <param name=
"style" type=
"long" default=
"wxLC_REPORT"/>
18550 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
18551 <param name=
"name" type=
"String" default=
"wxPyListCtrlNameStr"/>
18554 <constructor name=
"PreListView" overloaded=
"no">
18555 <autodoc>PreListView() -
> ListView
</autodoc>
18557 <method name=
"Create" type=
"bool" overloaded=
"no">
18558 <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition,
18559 Size size=DefaultSize, long style=LC_REPORT,
18560 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -
> bool
</autodoc>
18561 <docstring>Do the
2nd phase and create the GUI control.
</docstring>
18563 <param name=
"parent" type=
"Window" default=
""/>
18564 <param name=
"id" type=
"int" default=
"-1"/>
18565 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
18566 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
18567 <param name=
"style" type=
"long" default=
"wxLC_REPORT"/>
18568 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
18569 <param name=
"name" type=
"String" default=
"wxPyListCtrlNameStr"/>
18572 <method name=
"Select" type=
"" overloaded=
"no">
18573 <autodoc>Select(long n, bool on=True)
</autodoc>
18575 <param name=
"n" type=
"long" default=
""/>
18576 <param name=
"on" type=
"bool" default=
"True"/>
18579 <method name=
"Focus" type=
"" overloaded=
"no">
18580 <autodoc>Focus(long index)
</autodoc>
18582 <param name=
"index" type=
"long" default=
""/>
18585 <method name=
"GetFocusedItem" type=
"long" overloaded=
"no">
18586 <autodoc>GetFocusedItem() -
> long
</autodoc>
18588 <method name=
"GetNextSelected" type=
"long" overloaded=
"no">
18589 <autodoc>GetNextSelected(long item) -
> long
</autodoc>
18591 <param name=
"item" type=
"long" default=
""/>
18594 <method name=
"GetFirstSelected" type=
"long" overloaded=
"no">
18595 <autodoc>GetFirstSelected() -
> long
</autodoc>
18597 <method name=
"IsSelected" type=
"bool" overloaded=
"no">
18598 <autodoc>IsSelected(long index) -
> bool
</autodoc>
18600 <param name=
"index" type=
"long" default=
""/>
18603 <method name=
"SetColumnImage" type=
"" overloaded=
"no">
18604 <autodoc>SetColumnImage(int col, int image)
</autodoc>
18606 <param name=
"col" type=
"int" default=
""/>
18607 <param name=
"image" type=
"int" default=
""/>
18610 <method name=
"ClearColumnImage" type=
"" overloaded=
"no">
18611 <autodoc>ClearColumnImage(int col)
</autodoc>
18613 <param name=
"col" type=
"int" default=
""/>
18618 #---------------------------------------------------------------------------
18621 #---------------------------------------------------------------------------
18623 <class name=
"TreeItemId" oldname=
"wxTreeItemId" module=
"controls">
18624 <constructor name=
"TreeItemId" overloaded=
"no">
18625 <autodoc>__init__() -
> TreeItemId
</autodoc>
18627 <destructor name=
"~wxTreeItemId" overloaded=
"no">
18628 <autodoc>__del__()
</autodoc>
18630 <method name=
"IsOk" type=
"bool" overloaded=
"no">
18631 <autodoc>IsOk() -
> bool
</autodoc>
18633 <method name=
"__eq__" type=
"bool" overloaded=
"no">
18634 <autodoc>__eq__(TreeItemId other) -
> bool
</autodoc>
18636 <param name=
"other" type=
"TreeItemId" default=
""/>
18639 <method name=
"__ne__" type=
"bool" overloaded=
"no">
18640 <autodoc>__ne__(TreeItemId other) -
> bool
</autodoc>
18642 <param name=
"other" type=
"TreeItemId" default=
""/>
18645 <property name=
"m_pItem" type=
"" readonly=
"no"/>
18647 <class name=
"TreeItemData" oldname=
"wxPyTreeItemData" module=
"controls">
18648 <constructor name=
"wxPyTreeItemData" overloaded=
"no">
18649 <autodoc>__init__(PyObject obj=None) -
> TreeItemData
</autodoc>
18651 <param name=
"obj" type=
"PyObject" default=
"NULL"/>
18654 <method name=
"GetData" type=
"PyObject" overloaded=
"no">
18655 <autodoc>GetData() -
> PyObject
</autodoc>
18657 <method name=
"SetData" type=
"" overloaded=
"no">
18658 <autodoc>SetData(PyObject obj)
</autodoc>
18660 <param name=
"obj" type=
"PyObject" default=
""/>
18663 <method name=
"GetId" type=
"TreeItemId" overloaded=
"no">
18664 <autodoc>GetId() -
> TreeItemId
</autodoc>
18666 <method name=
"SetId" type=
"" overloaded=
"no">
18667 <autodoc>SetId(TreeItemId id)
</autodoc>
18669 <param name=
"id" type=
"TreeItemId" default=
""/>
18672 <method name=
"Destroy" type=
"" overloaded=
"no">
18673 <autodoc>Destroy()
</autodoc>
18677 #---------------------------------------------------------------------------
18681 EVT_TREE_BEGIN_DRAG = wx.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_DRAG ,
1)
18682 EVT_TREE_BEGIN_RDRAG = wx.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_RDRAG ,
1)
18683 EVT_TREE_BEGIN_LABEL_EDIT = wx.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT ,
1)
18684 EVT_TREE_END_LABEL_EDIT = wx.PyEventBinder(wxEVT_COMMAND_TREE_END_LABEL_EDIT ,
1)
18685 EVT_TREE_DELETE_ITEM = wx.PyEventBinder(wxEVT_COMMAND_TREE_DELETE_ITEM ,
1)
18686 EVT_TREE_GET_INFO = wx.PyEventBinder(wxEVT_COMMAND_TREE_GET_INFO ,
1)
18687 EVT_TREE_SET_INFO = wx.PyEventBinder(wxEVT_COMMAND_TREE_SET_INFO ,
1)
18688 EVT_TREE_ITEM_EXPANDED = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_EXPANDED ,
1)
18689 EVT_TREE_ITEM_EXPANDING = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_EXPANDING ,
1)
18690 EVT_TREE_ITEM_COLLAPSED = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_COLLAPSED ,
1)
18691 EVT_TREE_ITEM_COLLAPSING = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_COLLAPSING ,
1)
18692 EVT_TREE_SEL_CHANGED = wx.PyEventBinder(wxEVT_COMMAND_TREE_SEL_CHANGED ,
1)
18693 EVT_TREE_SEL_CHANGING = wx.PyEventBinder(wxEVT_COMMAND_TREE_SEL_CHANGING ,
1)
18694 EVT_TREE_KEY_DOWN = wx.PyEventBinder(wxEVT_COMMAND_TREE_KEY_DOWN ,
1)
18695 EVT_TREE_ITEM_ACTIVATED = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_ACTIVATED ,
1)
18696 EVT_TREE_ITEM_RIGHT_CLICK = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK ,
1)
18697 EVT_TREE_ITEM_MIDDLE_CLICK = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK,
1)
18698 EVT_TREE_END_DRAG = wx.PyEventBinder(wxEVT_COMMAND_TREE_END_DRAG ,
1)
18699 EVT_TREE_STATE_IMAGE_CLICK = wx.PyEventBinder(wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK,
1)
18700 EVT_TREE_ITEM_GETTOOLTIP = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP,
1)
18702 <class name=
"TreeEvent" oldname=
"wxTreeEvent" module=
"controls">
18703 <baseclass name=
"NotifyEvent"/>
18704 <constructor name=
"TreeEvent" overloaded=
"no">
18705 <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int id=
0) -
> TreeEvent
</autodoc>
18707 <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/>
18708 <param name=
"id" type=
"int" default=
"0"/>
18711 <method name=
"GetItem" type=
"TreeItemId" overloaded=
"no">
18712 <autodoc>GetItem() -
> TreeItemId
</autodoc>
18714 <method name=
"SetItem" type=
"" overloaded=
"no">
18715 <autodoc>SetItem(TreeItemId item)
</autodoc>
18717 <param name=
"item" type=
"TreeItemId" default=
""/>
18720 <method name=
"GetOldItem" type=
"TreeItemId" overloaded=
"no">
18721 <autodoc>GetOldItem() -
> TreeItemId
</autodoc>
18723 <method name=
"SetOldItem" type=
"" overloaded=
"no">
18724 <autodoc>SetOldItem(TreeItemId item)
</autodoc>
18726 <param name=
"item" type=
"TreeItemId" default=
""/>
18729 <method name=
"GetPoint" type=
"Point" overloaded=
"no">
18730 <autodoc>GetPoint() -
> Point
</autodoc>
18732 <method name=
"SetPoint" type=
"" overloaded=
"no">
18733 <autodoc>SetPoint(Point pt)
</autodoc>
18735 <param name=
"pt" type=
"Point" default=
""/>
18738 <method name=
"GetKeyEvent" type=
"KeyEvent" overloaded=
"no">
18739 <autodoc>GetKeyEvent() -
> KeyEvent
</autodoc>
18741 <method name=
"GetKeyCode" type=
"int" overloaded=
"no">
18742 <autodoc>GetKeyCode() -
> int
</autodoc>
18744 <method name=
"SetKeyEvent" type=
"" overloaded=
"no">
18745 <autodoc>SetKeyEvent(KeyEvent evt)
</autodoc>
18747 <param name=
"evt" type=
"KeyEvent" default=
""/>
18750 <method name=
"GetLabel" type=
"String" overloaded=
"no">
18751 <autodoc>GetLabel() -
> String
</autodoc>
18753 <method name=
"SetLabel" type=
"" overloaded=
"no">
18754 <autodoc>SetLabel(String label)
</autodoc>
18756 <param name=
"label" type=
"String" default=
""/>
18759 <method name=
"IsEditCancelled" type=
"bool" overloaded=
"no">
18760 <autodoc>IsEditCancelled() -
> bool
</autodoc>
18762 <method name=
"SetEditCanceled" type=
"" overloaded=
"no">
18763 <autodoc>SetEditCanceled(bool editCancelled)
</autodoc>
18765 <param name=
"editCancelled" type=
"bool" default=
""/>
18768 <method name=
"SetToolTip" type=
"" overloaded=
"no">
18769 <autodoc>SetToolTip(String toolTip)
</autodoc>
18771 <param name=
"toolTip" type=
"String" default=
""/>
18776 #---------------------------------------------------------------------------
18778 <class name=
"TreeCtrl" oldname=
"wxPyTreeCtrl" module=
"controls">
18779 <baseclass name=
"Control"/>
18780 <constructor name=
"wxPyTreeCtrl" overloaded=
"no">
18781 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
18782 Size size=DefaultSize, long style=TR_DEFAULT_STYLE,
18783 Validator validator=DefaultValidator,
18784 String name=TreeCtrlNameStr) -
> TreeCtrl
</autodoc>
18786 <param name=
"parent" type=
"Window" default=
""/>
18787 <param name=
"id" type=
"int" default=
"-1"/>
18788 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
18789 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
18790 <param name=
"style" type=
"long" default=
"wxTR_DEFAULT_STYLE"/>
18791 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
18792 <param name=
"name" type=
"String" default=
"wxPyTreeCtrlNameStr"/>
18795 <constructor name=
"PreTreeCtrl" overloaded=
"no">
18796 <autodoc>PreTreeCtrl() -
> TreeCtrl
</autodoc>
18798 <method name=
"Create" type=
"bool" overloaded=
"no">
18799 <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition,
18800 Size size=DefaultSize, long style=TR_DEFAULT_STYLE,
18801 Validator validator=DefaultValidator,
18802 String name=TreeCtrlNameStr) -
> bool
</autodoc>
18803 <docstring>Do the
2nd phase and create the GUI control.
</docstring>
18805 <param name=
"parent" type=
"Window" default=
""/>
18806 <param name=
"id" type=
"int" default=
"-1"/>
18807 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
18808 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
18809 <param name=
"style" type=
"long" default=
"wxTR_DEFAULT_STYLE"/>
18810 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
18811 <param name=
"name" type=
"String" default=
"wxPyTreeCtrlNameStr"/>
18814 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
18815 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
18817 <param name=
"self" type=
"PyObject" default=
""/>
18818 <param name=
"_class" type=
"PyObject" default=
""/>
18821 <method name=
"GetCount" type=
"size_t" overloaded=
"no">
18822 <autodoc>GetCount() -
> size_t
</autodoc>
18824 <method name=
"GetIndent" type=
"unsigned int" overloaded=
"no">
18825 <autodoc>GetIndent() -
> unsigned int
</autodoc>
18827 <method name=
"SetIndent" type=
"" overloaded=
"no">
18828 <autodoc>SetIndent(unsigned int indent)
</autodoc>
18830 <param name=
"indent" type=
"unsigned int" default=
""/>
18833 <method name=
"GetSpacing" type=
"unsigned int" overloaded=
"no">
18834 <autodoc>GetSpacing() -
> unsigned int
</autodoc>
18836 <method name=
"SetSpacing" type=
"" overloaded=
"no">
18837 <autodoc>SetSpacing(unsigned int spacing)
</autodoc>
18839 <param name=
"spacing" type=
"unsigned int" default=
""/>
18842 <method name=
"GetImageList" type=
"ImageList" overloaded=
"no">
18843 <autodoc>GetImageList() -
> ImageList
</autodoc>
18845 <method name=
"GetStateImageList" type=
"ImageList" overloaded=
"no">
18846 <autodoc>GetStateImageList() -
> ImageList
</autodoc>
18848 <method name=
"SetImageList" type=
"" overloaded=
"no">
18849 <autodoc>SetImageList(ImageList imageList)
</autodoc>
18851 <param name=
"imageList" type=
"ImageList" default=
""/>
18854 <method name=
"SetStateImageList" type=
"" overloaded=
"no">
18855 <autodoc>SetStateImageList(ImageList imageList)
</autodoc>
18857 <param name=
"imageList" type=
"ImageList" default=
""/>
18860 <method name=
"AssignImageList" type=
"" overloaded=
"no">
18861 <autodoc>AssignImageList(ImageList imageList)
</autodoc>
18863 <param name=
"imageList" type=
"ImageList" default=
""/>
18866 <method name=
"AssignStateImageList" type=
"" overloaded=
"no">
18867 <autodoc>AssignStateImageList(ImageList imageList)
</autodoc>
18869 <param name=
"imageList" type=
"ImageList" default=
""/>
18872 <method name=
"GetItemText" type=
"String" overloaded=
"no">
18873 <autodoc>GetItemText(TreeItemId item) -
> String
</autodoc>
18875 <param name=
"item" type=
"TreeItemId" default=
""/>
18878 <method name=
"GetItemImage" type=
"int" overloaded=
"no">
18879 <autodoc>GetItemImage(TreeItemId item, int which=TreeItemIcon_Normal) -
> int
</autodoc>
18881 <param name=
"item" type=
"TreeItemId" default=
""/>
18882 <param name=
"which" type=
"wxTreeItemIcon" default=
"wxTreeItemIcon_Normal"/>
18885 <method name=
"GetItemData" type=
"TreeItemData" overloaded=
"no">
18886 <autodoc>GetItemData(TreeItemId item) -
> TreeItemData
</autodoc>
18888 <param name=
"item" type=
"TreeItemId" default=
""/>
18891 <method name=
"GetItemPyData" type=
"PyObject" overloaded=
"no">
18892 <autodoc>GetItemPyData(TreeItemId item) -
> PyObject
</autodoc>
18894 <param name=
"item" type=
"TreeItemId" default=
""/>
18897 <method name=
"GetItemTextColour" type=
"Colour" overloaded=
"no">
18898 <autodoc>GetItemTextColour(TreeItemId item) -
> Colour
</autodoc>
18900 <param name=
"item" type=
"TreeItemId" default=
""/>
18903 <method name=
"GetItemBackgroundColour" type=
"Colour" overloaded=
"no">
18904 <autodoc>GetItemBackgroundColour(TreeItemId item) -
> Colour
</autodoc>
18906 <param name=
"item" type=
"TreeItemId" default=
""/>
18909 <method name=
"GetItemFont" type=
"Font" overloaded=
"no">
18910 <autodoc>GetItemFont(TreeItemId item) -
> Font
</autodoc>
18912 <param name=
"item" type=
"TreeItemId" default=
""/>
18915 <method name=
"SetItemText" type=
"" overloaded=
"no">
18916 <autodoc>SetItemText(TreeItemId item, String text)
</autodoc>
18918 <param name=
"item" type=
"TreeItemId" default=
""/>
18919 <param name=
"text" type=
"String" default=
""/>
18922 <method name=
"SetItemImage" type=
"" overloaded=
"no">
18923 <autodoc>SetItemImage(TreeItemId item, int image, int which=TreeItemIcon_Normal)
</autodoc>
18925 <param name=
"item" type=
"TreeItemId" default=
""/>
18926 <param name=
"image" type=
"int" default=
""/>
18927 <param name=
"which" type=
"wxTreeItemIcon" default=
"wxTreeItemIcon_Normal"/>
18930 <method name=
"SetItemData" type=
"" overloaded=
"no">
18931 <autodoc>SetItemData(TreeItemId item, TreeItemData data)
</autodoc>
18933 <param name=
"item" type=
"TreeItemId" default=
""/>
18934 <param name=
"data" type=
"TreeItemData" default=
""/>
18937 <method name=
"SetItemPyData" type=
"" overloaded=
"no">
18938 <autodoc>SetItemPyData(TreeItemId item, PyObject obj)
</autodoc>
18940 <param name=
"item" type=
"TreeItemId" default=
""/>
18941 <param name=
"obj" type=
"PyObject" default=
""/>
18944 <method name=
"SetItemHasChildren" type=
"" overloaded=
"no">
18945 <autodoc>SetItemHasChildren(TreeItemId item, bool has=True)
</autodoc>
18947 <param name=
"item" type=
"TreeItemId" default=
""/>
18948 <param name=
"has" type=
"bool" default=
"True"/>
18951 <method name=
"SetItemBold" type=
"" overloaded=
"no">
18952 <autodoc>SetItemBold(TreeItemId item, bool bold=True)
</autodoc>
18954 <param name=
"item" type=
"TreeItemId" default=
""/>
18955 <param name=
"bold" type=
"bool" default=
"True"/>
18958 <method name=
"SetItemTextColour" type=
"" overloaded=
"no">
18959 <autodoc>SetItemTextColour(TreeItemId item, Colour col)
</autodoc>
18961 <param name=
"item" type=
"TreeItemId" default=
""/>
18962 <param name=
"col" type=
"Colour" default=
""/>
18965 <method name=
"SetItemBackgroundColour" type=
"" overloaded=
"no">
18966 <autodoc>SetItemBackgroundColour(TreeItemId item, Colour col)
</autodoc>
18968 <param name=
"item" type=
"TreeItemId" default=
""/>
18969 <param name=
"col" type=
"Colour" default=
""/>
18972 <method name=
"SetItemFont" type=
"" overloaded=
"no">
18973 <autodoc>SetItemFont(TreeItemId item, Font font)
</autodoc>
18975 <param name=
"item" type=
"TreeItemId" default=
""/>
18976 <param name=
"font" type=
"Font" default=
""/>
18979 <method name=
"IsVisible" type=
"bool" overloaded=
"no">
18980 <autodoc>IsVisible(TreeItemId item) -
> bool
</autodoc>
18982 <param name=
"item" type=
"TreeItemId" default=
""/>
18985 <method name=
"ItemHasChildren" type=
"bool" overloaded=
"no">
18986 <autodoc>ItemHasChildren(TreeItemId item) -
> bool
</autodoc>
18988 <param name=
"item" type=
"TreeItemId" default=
""/>
18991 <method name=
"IsExpanded" type=
"bool" overloaded=
"no">
18992 <autodoc>IsExpanded(TreeItemId item) -
> bool
</autodoc>
18994 <param name=
"item" type=
"TreeItemId" default=
""/>
18997 <method name=
"IsSelected" type=
"bool" overloaded=
"no">
18998 <autodoc>IsSelected(TreeItemId item) -
> bool
</autodoc>
19000 <param name=
"item" type=
"TreeItemId" default=
""/>
19003 <method name=
"IsBold" type=
"bool" overloaded=
"no">
19004 <autodoc>IsBold(TreeItemId item) -
> bool
</autodoc>
19006 <param name=
"item" type=
"TreeItemId" default=
""/>
19009 <method name=
"GetChildrenCount" type=
"size_t" overloaded=
"no">
19010 <autodoc>GetChildrenCount(TreeItemId item, bool recursively=True) -
> size_t
</autodoc>
19012 <param name=
"item" type=
"TreeItemId" default=
""/>
19013 <param name=
"recursively" type=
"bool" default=
"True"/>
19016 <method name=
"GetRootItem" type=
"TreeItemId" overloaded=
"no">
19017 <autodoc>GetRootItem() -
> TreeItemId
</autodoc>
19019 <method name=
"GetSelection" type=
"TreeItemId" overloaded=
"no">
19020 <autodoc>GetSelection() -
> TreeItemId
</autodoc>
19022 <method name=
"GetSelections" type=
"PyObject" overloaded=
"no">
19023 <autodoc>GetSelections() -
> PyObject
</autodoc>
19025 <method name=
"GetItemParent" type=
"TreeItemId" overloaded=
"no">
19026 <autodoc>GetItemParent(TreeItemId item) -
> TreeItemId
</autodoc>
19028 <param name=
"item" type=
"TreeItemId" default=
""/>
19031 <method name=
"GetFirstChild" type=
"PyObject" overloaded=
"no">
19032 <autodoc>GetFirstChild(TreeItemId item) -
> PyObject
</autodoc>
19034 <param name=
"item" type=
"TreeItemId" default=
""/>
19037 <method name=
"GetNextChild" type=
"PyObject" overloaded=
"no">
19038 <autodoc>GetNextChild(TreeItemId item, void cookie) -
> PyObject
</autodoc>
19040 <param name=
"item" type=
"TreeItemId" default=
""/>
19041 <param name=
"cookie" type=
"" default=
""/>
19044 <method name=
"GetLastChild" type=
"TreeItemId" overloaded=
"no">
19045 <autodoc>GetLastChild(TreeItemId item) -
> TreeItemId
</autodoc>
19047 <param name=
"item" type=
"TreeItemId" default=
""/>
19050 <method name=
"GetNextSibling" type=
"TreeItemId" overloaded=
"no">
19051 <autodoc>GetNextSibling(TreeItemId item) -
> TreeItemId
</autodoc>
19053 <param name=
"item" type=
"TreeItemId" default=
""/>
19056 <method name=
"GetPrevSibling" type=
"TreeItemId" overloaded=
"no">
19057 <autodoc>GetPrevSibling(TreeItemId item) -
> TreeItemId
</autodoc>
19059 <param name=
"item" type=
"TreeItemId" default=
""/>
19062 <method name=
"GetFirstVisibleItem" type=
"TreeItemId" overloaded=
"no">
19063 <autodoc>GetFirstVisibleItem() -
> TreeItemId
</autodoc>
19065 <method name=
"GetNextVisible" type=
"TreeItemId" overloaded=
"no">
19066 <autodoc>GetNextVisible(TreeItemId item) -
> TreeItemId
</autodoc>
19068 <param name=
"item" type=
"TreeItemId" default=
""/>
19071 <method name=
"GetPrevVisible" type=
"TreeItemId" overloaded=
"no">
19072 <autodoc>GetPrevVisible(TreeItemId item) -
> TreeItemId
</autodoc>
19074 <param name=
"item" type=
"TreeItemId" default=
""/>
19077 <method name=
"AddRoot" type=
"TreeItemId" overloaded=
"no">
19078 <autodoc>AddRoot(String text, int image=-
1, int selectedImage=-
1, TreeItemData data=None) -
> TreeItemId
</autodoc>
19080 <param name=
"text" type=
"String" default=
""/>
19081 <param name=
"image" type=
"int" default=
"-1"/>
19082 <param name=
"selectedImage" type=
"int" default=
"-1"/>
19083 <param name=
"data" type=
"TreeItemData" default=
"NULL"/>
19086 <method name=
"PrependItem" type=
"TreeItemId" overloaded=
"no">
19087 <autodoc>PrependItem(TreeItemId parent, String text, int image=-
1, int selectedImage=-
1,
19088 TreeItemData data=None) -
> TreeItemId
</autodoc>
19090 <param name=
"parent" type=
"TreeItemId" default=
""/>
19091 <param name=
"text" type=
"String" default=
""/>
19092 <param name=
"image" type=
"int" default=
"-1"/>
19093 <param name=
"selectedImage" type=
"int" default=
"-1"/>
19094 <param name=
"data" type=
"TreeItemData" default=
"NULL"/>
19097 <method name=
"InsertItem" type=
"TreeItemId" overloaded=
"no">
19098 <autodoc>InsertItem(TreeItemId parent, TreeItemId idPrevious, String text,
19099 int image=-
1, int selectedImage=-
1, TreeItemData data=None) -
> TreeItemId
</autodoc>
19101 <param name=
"parent" type=
"TreeItemId" default=
""/>
19102 <param name=
"idPrevious" type=
"TreeItemId" default=
""/>
19103 <param name=
"text" type=
"String" default=
""/>
19104 <param name=
"image" type=
"int" default=
"-1"/>
19105 <param name=
"selectedImage" type=
"int" default=
"-1"/>
19106 <param name=
"data" type=
"TreeItemData" default=
"NULL"/>
19109 <method name=
"InsertItemBefore" type=
"TreeItemId" overloaded=
"no">
19110 <autodoc>InsertItemBefore(TreeItemId parent, size_t index, String text, int image=-
1,
19111 int selectedImage=-
1, TreeItemData data=None) -
> TreeItemId
</autodoc>
19113 <param name=
"parent" type=
"TreeItemId" default=
""/>
19114 <param name=
"index" type=
"size_t" default=
""/>
19115 <param name=
"text" type=
"String" default=
""/>
19116 <param name=
"image" type=
"int" default=
"-1"/>
19117 <param name=
"selectedImage" type=
"int" default=
"-1"/>
19118 <param name=
"data" type=
"TreeItemData" default=
"NULL"/>
19121 <method name=
"AppendItem" type=
"TreeItemId" overloaded=
"no">
19122 <autodoc>AppendItem(TreeItemId parent, String text, int image=-
1, int selectedImage=-
1,
19123 TreeItemData data=None) -
> TreeItemId
</autodoc>
19125 <param name=
"parent" type=
"TreeItemId" default=
""/>
19126 <param name=
"text" type=
"String" default=
""/>
19127 <param name=
"image" type=
"int" default=
"-1"/>
19128 <param name=
"selectedImage" type=
"int" default=
"-1"/>
19129 <param name=
"data" type=
"TreeItemData" default=
"NULL"/>
19132 <method name=
"Delete" type=
"" overloaded=
"no">
19133 <autodoc>Delete(TreeItemId item)
</autodoc>
19135 <param name=
"item" type=
"TreeItemId" default=
""/>
19138 <method name=
"DeleteChildren" type=
"" overloaded=
"no">
19139 <autodoc>DeleteChildren(TreeItemId item)
</autodoc>
19141 <param name=
"item" type=
"TreeItemId" default=
""/>
19144 <method name=
"DeleteAllItems" type=
"" overloaded=
"no">
19145 <autodoc>DeleteAllItems()
</autodoc>
19147 <method name=
"Expand" type=
"" overloaded=
"no">
19148 <autodoc>Expand(TreeItemId item)
</autodoc>
19150 <param name=
"item" type=
"TreeItemId" default=
""/>
19153 <method name=
"Collapse" type=
"" overloaded=
"no">
19154 <autodoc>Collapse(TreeItemId item)
</autodoc>
19156 <param name=
"item" type=
"TreeItemId" default=
""/>
19159 <method name=
"CollapseAndReset" type=
"" overloaded=
"no">
19160 <autodoc>CollapseAndReset(TreeItemId item)
</autodoc>
19162 <param name=
"item" type=
"TreeItemId" default=
""/>
19165 <method name=
"Toggle" type=
"" overloaded=
"no">
19166 <autodoc>Toggle(TreeItemId item)
</autodoc>
19168 <param name=
"item" type=
"TreeItemId" default=
""/>
19171 <method name=
"Unselect" type=
"" overloaded=
"no">
19172 <autodoc>Unselect()
</autodoc>
19174 <method name=
"UnselectItem" type=
"" overloaded=
"no">
19175 <autodoc>UnselectItem(TreeItemId item)
</autodoc>
19177 <param name=
"item" type=
"TreeItemId" default=
""/>
19180 <method name=
"UnselectAll" type=
"" overloaded=
"no">
19181 <autodoc>UnselectAll()
</autodoc>
19183 <method name=
"SelectItem" type=
"" overloaded=
"no">
19184 <autodoc>SelectItem(TreeItemId item, bool select=True)
</autodoc>
19186 <param name=
"item" type=
"TreeItemId" default=
""/>
19187 <param name=
"select" type=
"bool" default=
"True"/>
19190 <method name=
"ToggleItemSelection" type=
"" overloaded=
"no">
19191 <autodoc>ToggleItemSelection(TreeItemId item)
</autodoc>
19193 <param name=
"item" type=
"TreeItemId" default=
""/>
19196 <method name=
"EnsureVisible" type=
"" overloaded=
"no">
19197 <autodoc>EnsureVisible(TreeItemId item)
</autodoc>
19199 <param name=
"item" type=
"TreeItemId" default=
""/>
19202 <method name=
"ScrollTo" type=
"" overloaded=
"no">
19203 <autodoc>ScrollTo(TreeItemId item)
</autodoc>
19205 <param name=
"item" type=
"TreeItemId" default=
""/>
19208 <method name=
"EditLabel" type=
"" overloaded=
"no">
19209 <autodoc>EditLabel(TreeItemId item)
</autodoc>
19211 <param name=
"item" type=
"TreeItemId" default=
""/>
19214 <method name=
"GetEditControl" type=
"TextCtrl" overloaded=
"no">
19215 <autodoc>GetEditControl() -
> TextCtrl
</autodoc>
19217 <method name=
"SortChildren" type=
"" overloaded=
"no">
19218 <autodoc>SortChildren(TreeItemId item)
</autodoc>
19220 <param name=
"item" type=
"TreeItemId" default=
""/>
19223 <method name=
"HitTest" type=
"TreeItemId" overloaded=
"no">
19224 <autodoc>HitTest(Point point) -
> (item, where)
</autodoc>
19225 <docstring>Determine which item (if any) belongs the given point. The
19226 coordinates specified are relative to the client area of tree ctrl
19227 and the where return value is set to a bitmask of wxTREE_HITTEST_xxx
19231 <param name=
"point" type=
"Point" default=
""/>
19232 <param name=
"OUTPUT" type=
"int" default=
""/>
19235 <method name=
"GetBoundingRect" type=
"PyObject" overloaded=
"no">
19236 <autodoc>GetBoundingRect(TreeItemId item, bool textOnly=False) -
> PyObject
</autodoc>
19238 <param name=
"item" type=
"TreeItemId" default=
""/>
19239 <param name=
"textOnly" type=
"bool" default=
"False"/>
19244 #---------------------------------------------------------------------------
19246 <class name=
"GenericDirCtrl" oldname=
"wxGenericDirCtrl" module=
"controls">
19247 <baseclass name=
"Control"/>
19248 <constructor name=
"GenericDirCtrl" overloaded=
"no">
19249 <autodoc>__init__(Window parent, int id=-
1, String dir=DirDialogDefaultFolderStr,
19250 Point pos=DefaultPosition, Size size=DefaultSize,
19251 long style=wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER,
19252 String filter=EmptyString,
19253 int defaultFilter=
0, String name=TreeCtrlNameStr) -
> GenericDirCtrl
</autodoc>
19255 <param name=
"parent" type=
"Window" default=
""/>
19256 <param name=
"id" type=
"int" default=
"-1"/>
19257 <param name=
"dir" type=
"String" default=
"wxPyDirDialogDefaultFolderStr"/>
19258 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
19259 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
19260 <param name=
"style" type=
"long" default=
"wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER"/>
19261 <param name=
"filter" type=
"String" default=
"wxPyEmptyString"/>
19262 <param name=
"defaultFilter" type=
"int" default=
"0"/>
19263 <param name=
"name" type=
"String" default=
"wxPyTreeCtrlNameStr"/>
19266 <constructor name=
"PreGenericDirCtrl" overloaded=
"no">
19267 <autodoc>PreGenericDirCtrl() -
> GenericDirCtrl
</autodoc>
19269 <method name=
"Create" type=
"bool" overloaded=
"no">
19270 <autodoc>Create(Window parent, int id=-
1, String dir=DirDialogDefaultFolderStr,
19271 Point pos=DefaultPosition, Size size=DefaultSize,
19272 long style=wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER,
19273 String filter=EmptyString,
19274 int defaultFilter=
0, String name=TreeCtrlNameStr) -
> bool
</autodoc>
19276 <param name=
"parent" type=
"Window" default=
""/>
19277 <param name=
"id" type=
"int" default=
"-1"/>
19278 <param name=
"dir" type=
"String" default=
"wxPyDirDialogDefaultFolderStr"/>
19279 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
19280 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
19281 <param name=
"style" type=
"long" default=
"wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER"/>
19282 <param name=
"filter" type=
"String" default=
"wxPyEmptyString"/>
19283 <param name=
"defaultFilter" type=
"int" default=
"0"/>
19284 <param name=
"name" type=
"String" default=
"wxPyTreeCtrlNameStr"/>
19287 <method name=
"ExpandPath" type=
"bool" overloaded=
"no">
19288 <autodoc>ExpandPath(String path) -
> bool
</autodoc>
19290 <param name=
"path" type=
"String" default=
""/>
19293 <method name=
"GetDefaultPath" type=
"String" overloaded=
"no">
19294 <autodoc>GetDefaultPath() -
> String
</autodoc>
19296 <method name=
"SetDefaultPath" type=
"" overloaded=
"no">
19297 <autodoc>SetDefaultPath(String path)
</autodoc>
19299 <param name=
"path" type=
"String" default=
""/>
19302 <method name=
"GetPath" type=
"String" overloaded=
"no">
19303 <autodoc>GetPath() -
> String
</autodoc>
19305 <method name=
"GetFilePath" type=
"String" overloaded=
"no">
19306 <autodoc>GetFilePath() -
> String
</autodoc>
19308 <method name=
"SetPath" type=
"" overloaded=
"no">
19309 <autodoc>SetPath(String path)
</autodoc>
19311 <param name=
"path" type=
"String" default=
""/>
19314 <method name=
"ShowHidden" type=
"" overloaded=
"no">
19315 <autodoc>ShowHidden(bool show)
</autodoc>
19317 <param name=
"show" type=
"bool" default=
""/>
19320 <method name=
"GetShowHidden" type=
"bool" overloaded=
"no">
19321 <autodoc>GetShowHidden() -
> bool
</autodoc>
19323 <method name=
"GetFilter" type=
"String" overloaded=
"no">
19324 <autodoc>GetFilter() -
> String
</autodoc>
19326 <method name=
"SetFilter" type=
"" overloaded=
"no">
19327 <autodoc>SetFilter(String filter)
</autodoc>
19329 <param name=
"filter" type=
"String" default=
""/>
19332 <method name=
"GetFilterIndex" type=
"int" overloaded=
"no">
19333 <autodoc>GetFilterIndex() -
> int
</autodoc>
19335 <method name=
"SetFilterIndex" type=
"" overloaded=
"no">
19336 <autodoc>SetFilterIndex(int n)
</autodoc>
19338 <param name=
"n" type=
"int" default=
""/>
19341 <method name=
"GetRootId" type=
"TreeItemId" overloaded=
"no">
19342 <autodoc>GetRootId() -
> TreeItemId
</autodoc>
19344 <method name=
"GetTreeCtrl" type=
"TreeCtrl" overloaded=
"no">
19345 <autodoc>GetTreeCtrl() -
> TreeCtrl
</autodoc>
19347 <method name=
"GetFilterListCtrl" type=
"wxDirFilterListCtrl" overloaded=
"no">
19348 <autodoc>GetFilterListCtrl() -
> DirFilterListCtrl
</autodoc>
19350 <method name=
"FindChild" type=
"TreeItemId" overloaded=
"no">
19351 <autodoc>FindChild(wxTreeItemId parentId, wxString path) -
> (item, done)
</autodoc>
19352 <docstring>Find the child that matches the first part of 'path'. E.g. if a child path is
19353 "/usr" and 'path' is "/usr/include" then the child for /usr is returned.
19354 If the path string has been used (we're at the leaf), done is set to True
19357 <param name=
"parentId" type=
"TreeItemId" default=
""/>
19358 <param name=
"path" type=
"String" default=
""/>
19359 <param name=
"OUTPUT" type=
"bool" default=
""/>
19362 <method name=
"DoResize" type=
"" overloaded=
"no">
19363 <autodoc>DoResize()
</autodoc>
19365 <method name=
"ReCreateTree" type=
"" overloaded=
"no">
19366 <autodoc>ReCreateTree()
</autodoc>
19369 <class name=
"DirFilterListCtrl" oldname=
"wxDirFilterListCtrl" module=
"controls">
19370 <baseclass name=
"Choice"/>
19371 <constructor name=
"DirFilterListCtrl" overloaded=
"no">
19372 <autodoc>__init__(GenericDirCtrl parent, int id=-
1, Point pos=DefaultPosition,
19373 Size size=DefaultSize, long style=
0) -
> DirFilterListCtrl
</autodoc>
19375 <param name=
"parent" type=
"GenericDirCtrl" default=
""/>
19376 <param name=
"id" type=
"int" default=
"-1"/>
19377 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
19378 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
19379 <param name=
"style" type=
"long" default=
"0"/>
19382 <constructor name=
"PreDirFilterListCtrl" overloaded=
"no">
19383 <autodoc>PreDirFilterListCtrl() -
> DirFilterListCtrl
</autodoc>
19385 <method name=
"Create" type=
"bool" overloaded=
"no">
19386 <autodoc>Create(GenericDirCtrl parent, int id=-
1, Point pos=DefaultPosition,
19387 Size size=DefaultSize, long style=
0) -
> bool
</autodoc>
19389 <param name=
"parent" type=
"GenericDirCtrl" default=
""/>
19390 <param name=
"id" type=
"int" default=
"-1"/>
19391 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
19392 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
19393 <param name=
"style" type=
"long" default=
"0"/>
19396 <method name=
"FillFilterList" type=
"" overloaded=
"no">
19397 <autodoc>FillFilterList(String filter, int defaultFilter)
</autodoc>
19399 <param name=
"filter" type=
"String" default=
""/>
19400 <param name=
"defaultFilter" type=
"int" default=
""/>
19405 #---------------------------------------------------------------------------
19407 <class name=
"PyControl" oldname=
"wxPyControl" module=
"controls">
19408 <baseclass name=
"Control"/>
19409 <constructor name=
"PyControl" overloaded=
"no">
19410 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
19411 long style=
0, Validator validator=DefaultValidator,
19412 String name=ControlNameStr) -
> PyControl
</autodoc>
19414 <param name=
"parent" type=
"Window" default=
""/>
19415 <param name=
"id" type=
"int" default=
""/>
19416 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
19417 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
19418 <param name=
"style" type=
"long" default=
"0"/>
19419 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
19420 <param name=
"name" type=
"String" default=
"wxPyControlNameStr"/>
19423 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
19424 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
19426 <param name=
"self" type=
"PyObject" default=
""/>
19427 <param name=
"_class" type=
"PyObject" default=
""/>
19430 <method name=
"base_DoMoveWindow" type=
"" overloaded=
"no">
19431 <autodoc>base_DoMoveWindow(int x, int y, int width, int height)
</autodoc>
19433 <param name=
"x" type=
"int" default=
""/>
19434 <param name=
"y" type=
"int" default=
""/>
19435 <param name=
"width" type=
"int" default=
""/>
19436 <param name=
"height" type=
"int" default=
""/>
19439 <method name=
"base_DoSetSize" type=
"" overloaded=
"no">
19440 <autodoc>base_DoSetSize(int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)
</autodoc>
19442 <param name=
"x" type=
"int" default=
""/>
19443 <param name=
"y" type=
"int" default=
""/>
19444 <param name=
"width" type=
"int" default=
""/>
19445 <param name=
"height" type=
"int" default=
""/>
19446 <param name=
"sizeFlags" type=
"int" default=
"wxSIZE_AUTO"/>
19449 <method name=
"base_DoSetClientSize" type=
"" overloaded=
"no">
19450 <autodoc>base_DoSetClientSize(int width, int height)
</autodoc>
19452 <param name=
"width" type=
"int" default=
""/>
19453 <param name=
"height" type=
"int" default=
""/>
19456 <method name=
"base_DoSetVirtualSize" type=
"" overloaded=
"no">
19457 <autodoc>base_DoSetVirtualSize(int x, int y)
</autodoc>
19459 <param name=
"x" type=
"int" default=
""/>
19460 <param name=
"y" type=
"int" default=
""/>
19463 <method name=
"base_DoGetSize" type=
"" overloaded=
"no">
19464 <autodoc>base_DoGetSize() -
> (width, height)
</autodoc>
19466 <param name=
"OUTPUT" type=
"int" default=
""/>
19467 <param name=
"OUTPUT" type=
"int" default=
""/>
19470 <method name=
"base_DoGetClientSize" type=
"" overloaded=
"no">
19471 <autodoc>base_DoGetClientSize() -
> (width, height)
</autodoc>
19473 <param name=
"OUTPUT" type=
"int" default=
""/>
19474 <param name=
"OUTPUT" type=
"int" default=
""/>
19477 <method name=
"base_DoGetPosition" type=
"" overloaded=
"no">
19478 <autodoc>base_DoGetPosition() -
> (x,y)
</autodoc>
19480 <param name=
"OUTPUT" type=
"int" default=
""/>
19481 <param name=
"OUTPUT" type=
"int" default=
""/>
19484 <method name=
"base_DoGetVirtualSize" type=
"Size" overloaded=
"no">
19485 <autodoc>base_DoGetVirtualSize() -
> Size
</autodoc>
19487 <method name=
"base_DoGetBestSize" type=
"Size" overloaded=
"no">
19488 <autodoc>base_DoGetBestSize() -
> Size
</autodoc>
19490 <method name=
"base_InitDialog" type=
"" overloaded=
"no">
19491 <autodoc>base_InitDialog()
</autodoc>
19493 <method name=
"base_TransferDataToWindow" type=
"bool" overloaded=
"no">
19494 <autodoc>base_TransferDataToWindow() -
> bool
</autodoc>
19496 <method name=
"base_TransferDataFromWindow" type=
"bool" overloaded=
"no">
19497 <autodoc>base_TransferDataFromWindow() -
> bool
</autodoc>
19499 <method name=
"base_Validate" type=
"bool" overloaded=
"no">
19500 <autodoc>base_Validate() -
> bool
</autodoc>
19502 <method name=
"base_AcceptsFocus" type=
"bool" overloaded=
"no">
19503 <autodoc>base_AcceptsFocus() -
> bool
</autodoc>
19505 <method name=
"base_AcceptsFocusFromKeyboard" type=
"bool" overloaded=
"no">
19506 <autodoc>base_AcceptsFocusFromKeyboard() -
> bool
</autodoc>
19508 <method name=
"base_GetMaxSize" type=
"Size" overloaded=
"no">
19509 <autodoc>base_GetMaxSize() -
> Size
</autodoc>
19511 <method name=
"base_AddChild" type=
"" overloaded=
"no">
19512 <autodoc>base_AddChild(Window child)
</autodoc>
19514 <param name=
"child" type=
"Window" default=
""/>
19517 <method name=
"base_RemoveChild" type=
"" overloaded=
"no">
19518 <autodoc>base_RemoveChild(Window child)
</autodoc>
19520 <param name=
"child" type=
"Window" default=
""/>
19525 #---------------------------------------------------------------------------
19528 EVT_HELP = wx.PyEventBinder( wxEVT_HELP,
1)
19529 EVT_HELP_RANGE = wx.PyEventBinder( wxEVT_HELP,
2)
19530 EVT_DETAILED_HELP = wx.PyEventBinder( wxEVT_DETAILED_HELP,
1)
19531 EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP,
2)
19533 <class name=
"HelpEvent" oldname=
"wxHelpEvent" module=
"controls">
19534 <docstring>A help event is sent when the user has requested
19535 context-sensitive help. This can either be caused by the
19536 application requesting context-sensitive help mode via
19537 wx.ContextHelp, or (on MS Windows) by the system generating a
19538 WM_HELP message when the user pressed F1 or clicked on the query
19539 button in a dialog caption.
19541 A help event is sent to the window that the user clicked on, and
19542 is propagated up the window hierarchy until the event is
19543 processed or there are no more event handlers. The application
19544 should call event.GetId to check the identity of the clicked-on
19545 window, and then either show some suitable help or call
19546 event.Skip if the identifier is unrecognised. Calling Skip is
19547 important because it allows wxWindows to generate further events
19548 for ancestors of the clicked-on window. Otherwise it would be
19549 impossible to show help for container windows, since processing
19550 would stop after the first window found.
19553 EVT_HELP Sent when the user has requested context-
19555 EVT_HELP_RANGE Allows to catch EVT_HELP for a range of IDs
19557 <baseclass name=
"CommandEvent"/>
19558 <constructor name=
"HelpEvent" overloaded=
"no">
19559 <autodoc>__init__(wxEventType type=wxEVT_NULL, int winid=
0, Point pt=DefaultPosition) -
> HelpEvent
</autodoc>
19561 <param name=
"type" type=
"wxEventType" default=
"wxEVT_NULL"/>
19562 <param name=
"winid" type=
"int" default=
"0"/>
19563 <param name=
"pt" type=
"Point" default=
"wxDefaultPosition"/>
19566 <method name=
"GetPosition" type=
"Point" overloaded=
"no">
19567 <autodoc>GetPosition() -
> Point
</autodoc>
19568 <docstring>Returns the left-click position of the mouse, in screen
19569 coordinates. This allows the application to position the help
19570 appropriately.
</docstring>
19572 <method name=
"SetPosition" type=
"" overloaded=
"no">
19573 <autodoc>SetPosition(Point pos)
</autodoc>
19574 <docstring>Sets the left-click position of the mouse, in screen coordinates.
</docstring>
19576 <param name=
"pos" type=
"Point" default=
""/>
19579 <method name=
"GetLink" type=
"String" overloaded=
"no">
19580 <autodoc>GetLink() -
> String
</autodoc>
19581 <docstring>Get an optional link to further help
</docstring>
19583 <method name=
"SetLink" type=
"" overloaded=
"no">
19584 <autodoc>SetLink(String link)
</autodoc>
19585 <docstring>Set an optional link to further help
</docstring>
19587 <param name=
"link" type=
"String" default=
""/>
19590 <method name=
"GetTarget" type=
"String" overloaded=
"no">
19591 <autodoc>GetTarget() -
> String
</autodoc>
19592 <docstring>Get an optional target to display help in. E.g. a window specification
</docstring>
19594 <method name=
"SetTarget" type=
"" overloaded=
"no">
19595 <autodoc>SetTarget(String target)
</autodoc>
19596 <docstring>Set an optional target to display help in. E.g. a window specification
</docstring>
19598 <param name=
"target" type=
"String" default=
""/>
19602 <class name=
"ContextHelp" oldname=
"wxContextHelp" module=
"controls">
19603 <docstring>This class changes the cursor to a query and puts the application
19604 into a 'context-sensitive help mode'. When the user left-clicks
19605 on a window within the specified window, a EVT_HELP event is sent
19606 to that control, and the application may respond to it by popping
19609 There are a couple of ways to invoke this behaviour implicitly:
19611 * Use the wx.DIALOG_EX_CONTEXTHELP extended style for a
19612 dialog (Windows only). This will put a question mark in the
19613 titlebar, and Windows will put the application into
19614 context-sensitive help mode automatically, with further
19617 * Create a wx.ContextHelpButton, whose predefined behaviour
19618 is to create a context help object. Normally you will write
19619 your application so that this button is only added to a
19620 dialog for non-Windows platforms (use
19621 wx.DIALOG_EX_CONTEXTHELP on Windows).
19623 <baseclass name=
"Object"/>
19624 <constructor name=
"ContextHelp" overloaded=
"no">
19625 <autodoc>__init__(Window window=None, bool doNow=True) -
> ContextHelp
</autodoc>
19626 <docstring>Constructs a context help object, calling BeginContextHelp if
19627 doNow is true (the default).
19629 If window is None, the top window is used.
</docstring>
19631 <param name=
"window" type=
"Window" default=
"NULL"/>
19632 <param name=
"doNow" type=
"bool" default=
"True"/>
19635 <destructor name=
"~wxContextHelp" overloaded=
"no">
19636 <autodoc>__del__()
</autodoc>
19638 <method name=
"BeginContextHelp" type=
"bool" overloaded=
"no">
19639 <autodoc>BeginContextHelp(Window window=None) -
> bool
</autodoc>
19640 <docstring>Puts the application into context-sensitive help mode. window is
19641 the window which will be used to catch events; if NULL, the top
19642 window will be used.
19644 Returns true if the application was successfully put into
19645 context-sensitive help mode. This function only returns when the
19646 event loop has finished.
</docstring>
19648 <param name=
"window" type=
"Window" default=
"NULL"/>
19651 <method name=
"EndContextHelp" type=
"bool" overloaded=
"no">
19652 <autodoc>EndContextHelp() -
> bool
</autodoc>
19653 <docstring>Ends context-sensitive help mode. Not normally called by the
19654 application.
</docstring>
19657 <class name=
"ContextHelpButton" oldname=
"wxContextHelpButton" module=
"controls">
19658 <docstring>Instances of this class may be used to add a question mark button
19659 that when pressed, puts the application into context-help
19660 mode. It does this by creating a wx.ContextHelp object which
19661 itself generates a EVT_HELP event when the user clicks on a
19664 On Windows, you may add a question-mark icon to a dialog by use
19665 of the wx.DIALOG_EX_CONTEXTHELP extra style, but on other
19666 platforms you will have to add a button explicitly, usually next
19667 to OK, Cancel or similar buttons.
19669 <baseclass name=
"BitmapButton"/>
19670 <constructor name=
"ContextHelpButton" overloaded=
"no">
19671 <autodoc>__init__(Window parent, int id=ID_CONTEXT_HELP, Point pos=DefaultPosition,
19672 Size size=DefaultSize, long style=BU_AUTODRAW) -
> ContextHelpButton
</autodoc>
19673 <docstring>Constructor, creating and showing a context help button.
</docstring>
19675 <param name=
"parent" type=
"Window" default=
""/>
19676 <param name=
"id" type=
"int" default=
"wxID_CONTEXT_HELP"/>
19677 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
19678 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
19679 <param name=
"style" type=
"long" default=
"wxBU_AUTODRAW"/>
19683 <class name=
"HelpProvider" oldname=
"wxHelpProvider" module=
"controls">
19684 <docstring>wx.HelpProvider is an abstract class used by a program
19685 implementing context-sensitive help to show the help text for the
19688 The current help provider must be explicitly set by the
19689 application using wx.HelpProvider.Set().
</docstring>
19690 <staticmethod name=
"Set" type=
"HelpProvider" overloaded=
"no">
19691 <autodoc>Set(HelpProvider helpProvider) -
> HelpProvider
</autodoc>
19692 <docstring>Sset the current, application-wide help provider. Returns the
19693 previous one. Unlike some other classes, the help provider is
19694 not created on demand. This must be explicitly done by the
19695 application.
</docstring>
19697 <param name=
"helpProvider" type=
"HelpProvider" default=
""/>
19700 <staticmethod name=
"Get" type=
"HelpProvider" overloaded=
"no">
19701 <autodoc>Get() -
> HelpProvider
</autodoc>
19702 <docstring>Return the current application-wide help provider.
</docstring>
19704 <method name=
"GetHelp" type=
"String" overloaded=
"no">
19705 <autodoc>GetHelp(Window window) -
> String
</autodoc>
19706 <docstring>Gets the help string for this window. Its interpretation is
19707 dependent on the help provider except that empty string always
19708 means that no help is associated with the window.
</docstring>
19710 <param name=
"window" type=
"Window" default=
""/>
19713 <method name=
"ShowHelp" type=
"bool" overloaded=
"no">
19714 <autodoc>ShowHelp(Window window) -
> bool
</autodoc>
19715 <docstring>Shows help for the given window. Uses GetHelp internally if
19718 Returns true if it was done, or false if no help was available
19719 for this window.
</docstring>
19721 <param name=
"window" type=
"Window" default=
""/>
19724 <method name=
"AddHelp" type=
"" overloaded=
"no">
19725 <autodoc>AddHelp(Window window, String text)
</autodoc>
19726 <docstring>Associates the text with the given window.
</docstring>
19728 <param name=
"window" type=
"Window" default=
""/>
19729 <param name=
"text" type=
"String" default=
""/>
19732 <method name=
"AddHelpById" type=
"" overloaded=
"no">
19733 <autodoc>AddHelpById(int id, String text)
</autodoc>
19734 <docstring>This version associates the given text with all windows with this
19735 id. May be used to set the same help string for all Cancel
19736 buttons in the application, for example.
</docstring>
19738 <param name=
"id" type=
"int" default=
""/>
19739 <param name=
"text" type=
"String" default=
""/>
19742 <method name=
"RemoveHelp" type=
"" overloaded=
"no">
19743 <autodoc>RemoveHelp(Window window)
</autodoc>
19744 <docstring>Removes the association between the window pointer and the help
19745 text. This is called by the wx.Window destructor. Without this,
19746 the table of help strings will fill up and when window pointers
19747 are reused, the wrong help string will be found.
</docstring>
19749 <param name=
"window" type=
"Window" default=
""/>
19752 <method name=
"Destroy" type=
"" overloaded=
"no">
19753 <autodoc>Destroy()
</autodoc>
19756 <class name=
"SimpleHelpProvider" oldname=
"wxSimpleHelpProvider" module=
"controls">
19757 <docstring>wx.SimpleHelpProvider is an implementation of wx.HelpProvider
19758 which supports only plain text help strings, and shows the string
19759 associated with the control (if any) in a tooltip.
</docstring>
19760 <baseclass name=
"HelpProvider"/>
19761 <constructor name=
"SimpleHelpProvider" overloaded=
"no">
19762 <autodoc>__init__() -
> SimpleHelpProvider
</autodoc>
19763 <docstring>wx.SimpleHelpProvider is an implementation of wx.HelpProvider
19764 which supports only plain text help strings, and shows the string
19765 associated with the control (if any) in a tooltip.
</docstring>
19769 #---------------------------------------------------------------------------
19771 <class name=
"DragImage" oldname=
"wxGenericDragImage" module=
"controls">
19772 <baseclass name=
"Object"/>
19773 <constructor name=
"wxGenericDragImage" overloaded=
"no">
19774 <autodoc>__init__(Bitmap image, Cursor cursor=wxNullCursor) -
> DragImage
</autodoc>
19776 <param name=
"image" type=
"Bitmap" default=
""/>
19777 <param name=
"cursor" type=
"Cursor" default=
"wxNullCursor"/>
19780 <constructor name=
"DragIcon" overloaded=
"no">
19781 <autodoc>DragIcon(Icon image, Cursor cursor=wxNullCursor) -
> DragImage
</autodoc>
19783 <param name=
"image" type=
"Icon" default=
""/>
19784 <param name=
"cursor" type=
"Cursor" default=
"wxNullCursor"/>
19787 <constructor name=
"DragString" overloaded=
"no">
19788 <autodoc>DragString(String str, Cursor cursor=wxNullCursor) -
> DragImage
</autodoc>
19790 <param name=
"str" type=
"String" default=
""/>
19791 <param name=
"cursor" type=
"Cursor" default=
"wxNullCursor"/>
19794 <constructor name=
"DragTreeItem" overloaded=
"no">
19795 <autodoc>DragTreeItem(TreeCtrl treeCtrl, TreeItemId id) -
> DragImage
</autodoc>
19797 <param name=
"treeCtrl" type=
"TreeCtrl" default=
""/>
19798 <param name=
"id" type=
"TreeItemId" default=
""/>
19801 <constructor name=
"DragListItem" overloaded=
"no">
19802 <autodoc>DragListItem(ListCtrl listCtrl, long id) -
> DragImage
</autodoc>
19804 <param name=
"listCtrl" type=
"ListCtrl" default=
""/>
19805 <param name=
"id" type=
"long" default=
""/>
19808 <destructor name=
"~wxGenericDragImage" overloaded=
"no">
19809 <autodoc>__del__()
</autodoc>
19811 <method name=
"SetBackingBitmap" type=
"" overloaded=
"no">
19812 <autodoc>SetBackingBitmap(Bitmap bitmap)
</autodoc>
19814 <param name=
"bitmap" type=
"Bitmap" default=
""/>
19817 <method name=
"BeginDrag" type=
"bool" overloaded=
"no">
19818 <autodoc>BeginDrag(Point hotspot, Window window, bool fullScreen=False,
19819 Rect rect=None) -
> bool
</autodoc>
19821 <param name=
"hotspot" type=
"Point" default=
""/>
19822 <param name=
"window" type=
"Window" default=
""/>
19823 <param name=
"fullScreen" type=
"bool" default=
"False"/>
19824 <param name=
"rect" type=
"Rect" default=
"NULL"/>
19827 <method name=
"BeginDragBounded" type=
"bool" overloaded=
"no">
19828 <autodoc>BeginDragBounded(Point hotspot, Window window, Window boundingWindow) -
> bool
</autodoc>
19830 <param name=
"hotspot" type=
"Point" default=
""/>
19831 <param name=
"window" type=
"Window" default=
""/>
19832 <param name=
"boundingWindow" type=
"Window" default=
""/>
19835 <method name=
"EndDrag" type=
"bool" overloaded=
"no">
19836 <autodoc>EndDrag() -
> bool
</autodoc>
19838 <method name=
"Move" type=
"bool" overloaded=
"no">
19839 <autodoc>Move(Point pt) -
> bool
</autodoc>
19841 <param name=
"pt" type=
"Point" default=
""/>
19844 <method name=
"Show" type=
"bool" overloaded=
"no">
19845 <autodoc>Show() -
> bool
</autodoc>
19847 <method name=
"Hide" type=
"bool" overloaded=
"no">
19848 <autodoc>Hide() -
> bool
</autodoc>
19850 <method name=
"GetImageRect" type=
"Rect" overloaded=
"no">
19851 <autodoc>GetImageRect(Point pos) -
> Rect
</autodoc>
19853 <param name=
"pos" type=
"Point" default=
""/>
19856 <method name=
"DoDrawImage" type=
"bool" overloaded=
"no">
19857 <autodoc>DoDrawImage(DC dc, Point pos) -
> bool
</autodoc>
19859 <param name=
"dc" type=
"DC" default=
""/>
19860 <param name=
"pos" type=
"Point" default=
""/>
19863 <method name=
"UpdateBackingFromWindow" type=
"bool" overloaded=
"no">
19864 <autodoc>UpdateBackingFromWindow(DC windowDC, MemoryDC destDC, Rect sourceRect, Rect destRect) -
> bool
</autodoc>
19866 <param name=
"windowDC" type=
"DC" default=
""/>
19867 <param name=
"destDC" type=
"MemoryDC" default=
""/>
19868 <param name=
"sourceRect" type=
"Rect" default=
""/>
19869 <param name=
"destRect" type=
"Rect" default=
""/>
19872 <method name=
"RedrawImage" type=
"bool" overloaded=
"no">
19873 <autodoc>RedrawImage(Point oldPos, Point newPos, bool eraseOld, bool drawNew) -
> bool
</autodoc>
19875 <param name=
"oldPos" type=
"Point" default=
""/>
19876 <param name=
"newPos" type=
"Point" default=
""/>
19877 <param name=
"eraseOld" type=
"bool" default=
""/>
19878 <param name=
"drawNew" type=
"bool" default=
""/>
19883 <module name=
"misc">
19884 <import name=
"core"/>
19885 <pythoncode> wx = core
</pythoncode>
19887 #---------------------------------------------------------------------------
19889 <class name=
"SystemSettings" oldname=
"wxSystemSettings" module=
"misc">
19890 <staticmethod name=
"GetColour" type=
"Colour" overloaded=
"no">
19891 <autodoc>GetColour(int index) -
> Colour
</autodoc>
19893 <param name=
"index" type=
"wxSystemColour" default=
""/>
19896 <staticmethod name=
"GetFont" type=
"Font" overloaded=
"no">
19897 <autodoc>GetFont(int index) -
> Font
</autodoc>
19899 <param name=
"index" type=
"wxSystemFont" default=
""/>
19902 <staticmethod name=
"GetMetric" type=
"int" overloaded=
"no">
19903 <autodoc>GetMetric(int index) -
> int
</autodoc>
19905 <param name=
"index" type=
"wxSystemMetric" default=
""/>
19908 <staticmethod name=
"HasFeature" type=
"bool" overloaded=
"no">
19909 <autodoc>HasFeature(int index) -
> bool
</autodoc>
19911 <param name=
"index" type=
"wxSystemFeature" default=
""/>
19914 <staticmethod name=
"GetScreenType" type=
"wxSystemScreenType" overloaded=
"no">
19915 <autodoc>GetScreenType() -
> int
</autodoc>
19917 <staticmethod name=
"SetScreenType" type=
"" overloaded=
"no">
19918 <autodoc>SetScreenType(int screen)
</autodoc>
19920 <param name=
"screen" type=
"wxSystemScreenType" default=
""/>
19924 <class name=
"SystemOptions" oldname=
"wxSystemOptions" module=
"misc">
19925 <baseclass name=
"Object"/>
19926 <constructor name=
"SystemOptions" overloaded=
"no">
19927 <autodoc>__init__() -
> SystemOptions
</autodoc>
19929 <staticmethod name=
"SetOption" type=
"" overloaded=
"no">
19930 <autodoc>SetOption(String name, String value)
</autodoc>
19932 <param name=
"name" type=
"String" default=
""/>
19933 <param name=
"value" type=
"String" default=
""/>
19936 <staticmethod name=
"SetOptionInt" type=
"" overloaded=
"no">
19937 <autodoc>SetOptionInt(String name, int value)
</autodoc>
19939 <param name=
"name" type=
"String" default=
""/>
19940 <param name=
"value" type=
"int" default=
""/>
19943 <staticmethod name=
"GetOption" type=
"String" overloaded=
"no">
19944 <autodoc>GetOption(String name) -
> String
</autodoc>
19946 <param name=
"name" type=
"String" default=
""/>
19949 <staticmethod name=
"GetOptionInt" type=
"int" overloaded=
"no">
19950 <autodoc>GetOptionInt(String name) -
> int
</autodoc>
19952 <param name=
"name" type=
"String" default=
""/>
19955 <staticmethod name=
"HasOption" type=
"bool" overloaded=
"no">
19956 <autodoc>HasOption(String name) -
> bool
</autodoc>
19958 <param name=
"name" type=
"String" default=
""/>
19963 #---------------------------------------------------------------------------
19965 <method name=
"NewId" oldname=
"wxNewId" type=
"long" overloaded=
"no">
19966 <autodoc>NewId() -
> long
</autodoc>
19968 <method name=
"RegisterId" oldname=
"wxRegisterId" type=
"" overloaded=
"no">
19969 <autodoc>RegisterId(long id)
</autodoc>
19971 <param name=
"id" type=
"long" default=
""/>
19974 <method name=
"GetCurrentId" oldname=
"wxGetCurrentId" type=
"long" overloaded=
"no">
19975 <autodoc>GetCurrentId() -
> long
</autodoc>
19977 <method name=
"Bell" oldname=
"wxBell" type=
"" overloaded=
"no">
19978 <autodoc>Bell()
</autodoc>
19980 <method name=
"EndBusyCursor" oldname=
"wxEndBusyCursor" type=
"" overloaded=
"no">
19981 <autodoc>EndBusyCursor()
</autodoc>
19983 <method name=
"GetElapsedTime" oldname=
"wxGetElapsedTime" type=
"long" overloaded=
"no">
19984 <autodoc>GetElapsedTime(bool resetTimer=True) -
> long
</autodoc>
19986 <param name=
"resetTimer" type=
"bool" default=
"True"/>
19989 <method name=
"GetMousePosition" oldname=
"wxGetMousePosition" type=
"" overloaded=
"no">
19990 <autodoc>GetMousePosition() -
> (x,y)
</autodoc>
19992 <param name=
"OUTPUT" type=
"int" default=
""/>
19993 <param name=
"OUTPUT" type=
"int" default=
""/>
19996 <method name=
"IsBusy" oldname=
"wxIsBusy" type=
"bool" overloaded=
"no">
19997 <autodoc>IsBusy() -
> bool
</autodoc>
19999 <method name=
"Now" oldname=
"wxNow" type=
"String" overloaded=
"no">
20000 <autodoc>Now() -
> String
</autodoc>
20002 <method name=
"Shell" oldname=
"wxShell" type=
"bool" overloaded=
"no">
20003 <autodoc>Shell(String command=EmptyString) -
> bool
</autodoc>
20005 <param name=
"command" type=
"String" default=
"wxPyEmptyString"/>
20008 <method name=
"StartTimer" oldname=
"wxStartTimer" type=
"" overloaded=
"no">
20009 <autodoc>StartTimer()
</autodoc>
20011 <method name=
"GetOsVersion" oldname=
"wxGetOsVersion" type=
"int" overloaded=
"no">
20012 <autodoc>GetOsVersion() -
> (platform, major, minor)
</autodoc>
20014 <param name=
"OUTPUT" type=
"int" default=
""/>
20015 <param name=
"OUTPUT" type=
"int" default=
""/>
20018 <method name=
"GetOsDescription" oldname=
"wxGetOsDescription" type=
"String" overloaded=
"no">
20019 <autodoc>GetOsDescription() -
> String
</autodoc>
20021 <method name=
"GetFreeMemory" oldname=
"wxGetFreeMemory" type=
"long" overloaded=
"no">
20022 <autodoc>GetFreeMemory() -
> long
</autodoc>
20024 <method name=
"Shutdown" oldname=
"wxShutdown" type=
"bool" overloaded=
"no">
20025 <autodoc>Shutdown(int wFlags) -
> bool
</autodoc>
20027 <param name=
"wFlags" type=
"wxShutdownFlags" default=
""/>
20030 <method name=
"Sleep" oldname=
"wxSleep" type=
"" overloaded=
"no">
20031 <autodoc>Sleep(int secs)
</autodoc>
20033 <param name=
"secs" type=
"int" default=
""/>
20036 <method name=
"Usleep" oldname=
"wxUsleep" type=
"" overloaded=
"no">
20037 <autodoc>Usleep(unsigned long milliseconds)
</autodoc>
20039 <param name=
"milliseconds" type=
"unsigned long" default=
""/>
20042 <method name=
"EnableTopLevelWindows" oldname=
"wxEnableTopLevelWindows" type=
"" overloaded=
"no">
20043 <autodoc>EnableTopLevelWindows(bool enable)
</autodoc>
20045 <param name=
"enable" type=
"bool" default=
""/>
20048 <method name=
"StripMenuCodes" oldname=
"wxStripMenuCodes" type=
"String" overloaded=
"no">
20049 <autodoc>StripMenuCodes(String in) -
> String
</autodoc>
20051 <param name=
"in" type=
"String" default=
""/>
20054 <method name=
"GetEmailAddress" oldname=
"wxGetEmailAddress" type=
"String" overloaded=
"no">
20055 <autodoc>GetEmailAddress() -
> String
</autodoc>
20057 <method name=
"GetHostName" oldname=
"wxGetHostName" type=
"String" overloaded=
"no">
20058 <autodoc>GetHostName() -
> String
</autodoc>
20060 <method name=
"GetFullHostName" oldname=
"wxGetFullHostName" type=
"String" overloaded=
"no">
20061 <autodoc>GetFullHostName() -
> String
</autodoc>
20063 <method name=
"GetUserId" oldname=
"wxGetUserId" type=
"String" overloaded=
"no">
20064 <autodoc>GetUserId() -
> String
</autodoc>
20066 <method name=
"GetUserName" oldname=
"wxGetUserName" type=
"String" overloaded=
"no">
20067 <autodoc>GetUserName() -
> String
</autodoc>
20069 <method name=
"GetHomeDir" oldname=
"wxGetHomeDir" type=
"String" overloaded=
"no">
20070 <autodoc>GetHomeDir() -
> String
</autodoc>
20072 <method name=
"GetUserHome" oldname=
"wxGetUserHome" type=
"String" overloaded=
"no">
20073 <autodoc>GetUserHome(String user=EmptyString) -
> String
</autodoc>
20075 <param name=
"user" type=
"String" default=
"wxPyEmptyString"/>
20078 <method name=
"GetProcessId" oldname=
"wxGetProcessId" type=
"unsigned long" overloaded=
"no">
20079 <autodoc>GetProcessId() -
> unsigned long
</autodoc>
20081 <method name=
"Trap" oldname=
"wxTrap" type=
"" overloaded=
"no">
20082 <autodoc>Trap()
</autodoc>
20084 <method name=
"FileSelector" oldname=
"wxFileSelector" type=
"String" overloaded=
"no">
20085 <autodoc>FileSelector(String message=FileSelectorPromptStr, String default_path=EmptyString,
20086 String default_filename=EmptyString,
20087 String default_extension=EmptyString,
20088 String wildcard=FileSelectorDefaultWildcardStr,
20089 int flags=
0, Window parent=None, int x=-
1,
20090 int y=-
1) -
> String
</autodoc>
20092 <param name=
"message" type=
"String" default=
"wxPyFileSelectorPromptStr"/>
20093 <param name=
"default_path" type=
"String" default=
"wxPyEmptyString"/>
20094 <param name=
"default_filename" type=
"String" default=
"wxPyEmptyString"/>
20095 <param name=
"default_extension" type=
"String" default=
"wxPyEmptyString"/>
20096 <param name=
"wildcard" type=
"String" default=
"wxPyFileSelectorDefaultWildcardStr"/>
20097 <param name=
"flags" type=
"int" default=
"0"/>
20098 <param name=
"parent" type=
"Window" default=
"NULL"/>
20099 <param name=
"x" type=
"int" default=
"-1"/>
20100 <param name=
"y" type=
"int" default=
"-1"/>
20103 <method name=
"LoadFileSelector" oldname=
"wxLoadFileSelector" type=
"String" overloaded=
"no">
20104 <autodoc>LoadFileSelector(String what, String extension, String default_name=EmptyString,
20105 Window parent=None) -
> String
</autodoc>
20107 <param name=
"what" type=
"String" default=
""/>
20108 <param name=
"extension" type=
"String" default=
""/>
20109 <param name=
"default_name" type=
"String" default=
"wxPyEmptyString"/>
20110 <param name=
"parent" type=
"Window" default=
"NULL"/>
20113 <method name=
"SaveFileSelector" oldname=
"wxSaveFileSelector" type=
"String" overloaded=
"no">
20114 <autodoc>SaveFileSelector(String what, String extension, String default_name=EmptyString,
20115 Window parent=None) -
> String
</autodoc>
20117 <param name=
"what" type=
"String" default=
""/>
20118 <param name=
"extension" type=
"String" default=
""/>
20119 <param name=
"default_name" type=
"String" default=
"wxPyEmptyString"/>
20120 <param name=
"parent" type=
"Window" default=
"NULL"/>
20123 <method name=
"DirSelector" oldname=
"wxDirSelector" type=
"String" overloaded=
"no">
20124 <autodoc>DirSelector(String message=DirSelectorPromptStr, String defaultPath=EmptyString,
20125 long style=DD_DEFAULT_STYLE,
20126 Point pos=DefaultPosition, Window parent=None) -
> String
</autodoc>
20128 <param name=
"message" type=
"String" default=
"wxPyDirSelectorPromptStr"/>
20129 <param name=
"defaultPath" type=
"String" default=
"wxPyEmptyString"/>
20130 <param name=
"style" type=
"long" default=
"wxDD_DEFAULT_STYLE"/>
20131 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
20132 <param name=
"parent" type=
"Window" default=
"NULL"/>
20135 <method name=
"GetTextFromUser" oldname=
"wxGetTextFromUser" type=
"String" overloaded=
"no">
20136 <autodoc>GetTextFromUser(String message, String caption=EmptyString, String default_value=EmptyString,
20137 Window parent=None,
20138 int x=-
1, int y=-
1, bool centre=True) -
> String
</autodoc>
20140 <param name=
"message" type=
"String" default=
""/>
20141 <param name=
"caption" type=
"String" default=
"wxPyEmptyString"/>
20142 <param name=
"default_value" type=
"String" default=
"wxPyEmptyString"/>
20143 <param name=
"parent" type=
"Window" default=
"NULL"/>
20144 <param name=
"x" type=
"int" default=
"-1"/>
20145 <param name=
"y" type=
"int" default=
"-1"/>
20146 <param name=
"centre" type=
"bool" default=
"True"/>
20149 <method name=
"GetPasswordFromUser" oldname=
"wxGetPasswordFromUser" type=
"String" overloaded=
"no">
20150 <autodoc>GetPasswordFromUser(String message, String caption=EmptyString, String default_value=EmptyString,
20151 Window parent=None) -
> String
</autodoc>
20153 <param name=
"message" type=
"String" default=
""/>
20154 <param name=
"caption" type=
"String" default=
"wxPyEmptyString"/>
20155 <param name=
"default_value" type=
"String" default=
"wxPyEmptyString"/>
20156 <param name=
"parent" type=
"Window" default=
"NULL"/>
20159 <method name=
"GetSingleChoice" oldname=
"wxGetSingleChoice" type=
"String" overloaded=
"no">
20160 <autodoc>GetSingleChoice(String message, String caption, int choices, String choices_array,
20161 Window parent=None, int x=-
1,
20162 int y=-
1, bool centre=True, int width=
150, int height=
200) -
> String
</autodoc>
20164 <param name=
"message" type=
"String" default=
""/>
20165 <param name=
"caption" type=
"String" default=
""/>
20166 <param name=
"choices" type=
"int" default=
""/>
20167 <param name=
"choices_array" type=
"String" default=
""/>
20168 <param name=
"parent" type=
"Window" default=
"NULL"/>
20169 <param name=
"x" type=
"int" default=
"-1"/>
20170 <param name=
"y" type=
"int" default=
"-1"/>
20171 <param name=
"centre" type=
"bool" default=
"True"/>
20172 <param name=
"width" type=
"int" default=
"150"/>
20173 <param name=
"height" type=
"int" default=
"200"/>
20176 <method name=
"GetSingleChoiceIndex" oldname=
"wxGetSingleChoiceIndex" type=
"int" overloaded=
"no">
20177 <autodoc>GetSingleChoiceIndex(String message, String caption, int choices, String choices_array,
20178 Window parent=None, int x=-
1,
20179 int y=-
1, bool centre=True, int width=
150, int height=
200) -
> int
</autodoc>
20181 <param name=
"message" type=
"String" default=
""/>
20182 <param name=
"caption" type=
"String" default=
""/>
20183 <param name=
"choices" type=
"int" default=
""/>
20184 <param name=
"choices_array" type=
"String" default=
""/>
20185 <param name=
"parent" type=
"Window" default=
"NULL"/>
20186 <param name=
"x" type=
"int" default=
"-1"/>
20187 <param name=
"y" type=
"int" default=
"-1"/>
20188 <param name=
"centre" type=
"bool" default=
"True"/>
20189 <param name=
"width" type=
"int" default=
"150"/>
20190 <param name=
"height" type=
"int" default=
"200"/>
20193 <method name=
"MessageBox" oldname=
"wxMessageBox" type=
"int" overloaded=
"no">
20194 <autodoc>MessageBox(String message, String caption=EmptyString, int style=wxOK|wxCENTRE,
20195 Window parent=None, int x=-
1,
20196 int y=-
1) -
> int
</autodoc>
20198 <param name=
"message" type=
"String" default=
""/>
20199 <param name=
"caption" type=
"String" default=
"wxPyEmptyString"/>
20200 <param name=
"style" type=
"int" default=
"wxOK|wxCENTRE"/>
20201 <param name=
"parent" type=
"Window" default=
"NULL"/>
20202 <param name=
"x" type=
"int" default=
"-1"/>
20203 <param name=
"y" type=
"int" default=
"-1"/>
20206 <method name=
"GetNumberFromUser" oldname=
"wxGetNumberFromUser" type=
"long" overloaded=
"no">
20207 <autodoc>GetNumberFromUser(String message, String prompt, String caption, long value,
20208 long min=
0, long max=
100, Window parent=None,
20209 Point pos=DefaultPosition) -
> long
</autodoc>
20211 <param name=
"message" type=
"String" default=
""/>
20212 <param name=
"prompt" type=
"String" default=
""/>
20213 <param name=
"caption" type=
"String" default=
""/>
20214 <param name=
"value" type=
"long" default=
""/>
20215 <param name=
"min" type=
"long" default=
"0"/>
20216 <param name=
"max" type=
"long" default=
"100"/>
20217 <param name=
"parent" type=
"Window" default=
"NULL"/>
20218 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
20221 <method name=
"ColourDisplay" oldname=
"wxColourDisplay" type=
"bool" overloaded=
"no">
20222 <autodoc>ColourDisplay() -
> bool
</autodoc>
20224 <method name=
"DisplayDepth" oldname=
"wxDisplayDepth" type=
"int" overloaded=
"no">
20225 <autodoc>DisplayDepth() -
> int
</autodoc>
20227 <method name=
"GetDisplayDepth" oldname=
"wxGetDisplayDepth" type=
"int" overloaded=
"no">
20228 <autodoc>GetDisplayDepth() -
> int
</autodoc>
20230 <method name=
"DisplaySize" oldname=
"wxDisplaySize" type=
"" overloaded=
"no">
20231 <autodoc>DisplaySize() -
> (width, height)
</autodoc>
20233 <param name=
"OUTPUT" type=
"int" default=
""/>
20234 <param name=
"OUTPUT" type=
"int" default=
""/>
20237 <method name=
"GetDisplaySize" oldname=
"wxGetDisplaySize" type=
"Size" overloaded=
"no">
20238 <autodoc>GetDisplaySize() -
> Size
</autodoc>
20240 <method name=
"DisplaySizeMM" oldname=
"wxDisplaySizeMM" type=
"" overloaded=
"no">
20241 <autodoc>DisplaySizeMM() -
> (width, height)
</autodoc>
20243 <param name=
"OUTPUT" type=
"int" default=
""/>
20244 <param name=
"OUTPUT" type=
"int" default=
""/>
20247 <method name=
"GetDisplaySizeMM" oldname=
"wxGetDisplaySizeMM" type=
"Size" overloaded=
"no">
20248 <autodoc>GetDisplaySizeMM() -
> Size
</autodoc>
20250 <method name=
"ClientDisplayRect" oldname=
"wxClientDisplayRect" type=
"" overloaded=
"no">
20251 <autodoc>ClientDisplayRect() -
> (x, y, width, height)
</autodoc>
20253 <param name=
"OUTPUT" type=
"int" default=
""/>
20254 <param name=
"OUTPUT" type=
"int" default=
""/>
20255 <param name=
"OUTPUT" type=
"int" default=
""/>
20256 <param name=
"OUTPUT" type=
"int" default=
""/>
20259 <method name=
"GetClientDisplayRect" oldname=
"wxGetClientDisplayRect" type=
"Rect" overloaded=
"no">
20260 <autodoc>GetClientDisplayRect() -
> Rect
</autodoc>
20262 <method name=
"SetCursor" oldname=
"wxSetCursor" type=
"" overloaded=
"no">
20263 <autodoc>SetCursor(Cursor cursor)
</autodoc>
20265 <param name=
"cursor" type=
"Cursor" default=
""/>
20268 <method name=
"BeginBusyCursor" oldname=
"wxBeginBusyCursor" type=
"" overloaded=
"no">
20269 <autodoc>BeginBusyCursor(Cursor cursor=wxHOURGLASS_CURSOR)
</autodoc>
20271 <param name=
"cursor" type=
"Cursor" default=
"wxHOURGLASS_CURSOR"/>
20274 <method name=
"GetActiveWindow" oldname=
"wxGetActiveWindow" type=
"Window" overloaded=
"no">
20275 <autodoc>GetActiveWindow() -
> Window
</autodoc>
20277 <method name=
"GenericFindWindowAtPoint" oldname=
"wxGenericFindWindowAtPoint" type=
"Window" overloaded=
"no">
20278 <autodoc>GenericFindWindowAtPoint(Point pt) -
> Window
</autodoc>
20280 <param name=
"pt" type=
"Point" default=
""/>
20283 <method name=
"FindWindowAtPoint" oldname=
"wxFindWindowAtPoint" type=
"Window" overloaded=
"no">
20284 <autodoc>FindWindowAtPoint(Point pt) -
> Window
</autodoc>
20286 <param name=
"pt" type=
"Point" default=
""/>
20289 <method name=
"GetTopLevelParent" oldname=
"wxGetTopLevelParent" type=
"Window" overloaded=
"no">
20290 <autodoc>GetTopLevelParent(Window win) -
> Window
</autodoc>
20292 <param name=
"win" type=
"Window" default=
""/>
20295 <method name=
"GetKeyState" oldname=
"wxGetKeyState" type=
"bool" overloaded=
"no">
20296 <autodoc>GetKeyState(int key) -
> bool
</autodoc>
20298 <param name=
"key" type=
"wxKeyCode" default=
""/>
20301 <method name=
"WakeUpMainThread" oldname=
"wxWakeUpMainThread" type=
"" overloaded=
"no">
20302 <autodoc>WakeUpMainThread()
</autodoc>
20304 <method name=
"MutexGuiEnter" oldname=
"wxMutexGuiEnter" type=
"" overloaded=
"no">
20305 <autodoc>MutexGuiEnter()
</autodoc>
20307 <method name=
"MutexGuiLeave" oldname=
"wxMutexGuiLeave" type=
"" overloaded=
"no">
20308 <autodoc>MutexGuiLeave()
</autodoc>
20310 <class name=
"MutexGuiLocker" oldname=
"wxMutexGuiLocker" module=
"misc">
20311 <constructor name=
"MutexGuiLocker" overloaded=
"no">
20312 <autodoc>__init__() -
> MutexGuiLocker
</autodoc>
20314 <destructor name=
"~wxMutexGuiLocker" overloaded=
"no">
20315 <autodoc>__del__()
</autodoc>
20318 <method name=
"Thread_IsMain" oldname=
"wxThread_IsMain" type=
"bool" overloaded=
"no">
20319 <autodoc>Thread_IsMain() -
> bool
</autodoc>
20322 #---------------------------------------------------------------------------
20324 <class name=
"ToolTip" oldname=
"wxToolTip" module=
"misc">
20325 <baseclass name=
"Object"/>
20326 <constructor name=
"ToolTip" overloaded=
"no">
20327 <autodoc>__init__(String tip) -
> ToolTip
</autodoc>
20329 <param name=
"tip" type=
"String" default=
""/>
20332 <method name=
"SetTip" type=
"" overloaded=
"no">
20333 <autodoc>SetTip(String tip)
</autodoc>
20335 <param name=
"tip" type=
"String" default=
""/>
20338 <method name=
"GetTip" type=
"String" overloaded=
"no">
20339 <autodoc>GetTip() -
> String
</autodoc>
20341 <method name=
"GetWindow" type=
"Window" overloaded=
"no">
20342 <autodoc>GetWindow() -
> Window
</autodoc>
20344 <staticmethod name=
"Enable" type=
"" overloaded=
"no">
20345 <autodoc>Enable(bool flag)
</autodoc>
20347 <param name=
"flag" type=
"bool" default=
""/>
20350 <staticmethod name=
"SetDelay" type=
"" overloaded=
"no">
20351 <autodoc>SetDelay(long milliseconds)
</autodoc>
20353 <param name=
"milliseconds" type=
"long" default=
""/>
20357 <class name=
"Caret" oldname=
"wxCaret" module=
"misc">
20358 <constructor name=
"Caret" overloaded=
"no">
20359 <autodoc>__init__(Window window, Size size) -
> Caret
</autodoc>
20361 <param name=
"window" type=
"Window" default=
""/>
20362 <param name=
"size" type=
"Size" default=
""/>
20365 <destructor name=
"~wxCaret" overloaded=
"no">
20366 <autodoc>__del__()
</autodoc>
20368 <method name=
"IsOk" type=
"bool" overloaded=
"no">
20369 <autodoc>IsOk() -
> bool
</autodoc>
20371 <method name=
"IsVisible" type=
"bool" overloaded=
"no">
20372 <autodoc>IsVisible() -
> bool
</autodoc>
20374 <method name=
"GetPosition" type=
"Point" overloaded=
"no">
20375 <autodoc>GetPosition() -
> Point
</autodoc>
20377 <method name=
"GetPositionTuple" type=
"" overloaded=
"no">
20378 <autodoc>GetPositionTuple() -
> (x,y)
</autodoc>
20380 <param name=
"OUTPUT" type=
"int" default=
""/>
20381 <param name=
"OUTPUT" type=
"int" default=
""/>
20384 <method name=
"GetSize" type=
"Size" overloaded=
"no">
20385 <autodoc>GetSize() -
> Size
</autodoc>
20387 <method name=
"GetSizeTuple" type=
"" overloaded=
"no">
20388 <autodoc>GetSizeTuple() -
> (width, height)
</autodoc>
20390 <param name=
"OUTPUT" type=
"int" default=
""/>
20391 <param name=
"OUTPUT" type=
"int" default=
""/>
20394 <method name=
"GetWindow" type=
"Window" overloaded=
"no">
20395 <autodoc>GetWindow() -
> Window
</autodoc>
20397 <method name=
"MoveXY" type=
"" overloaded=
"no">
20398 <autodoc>MoveXY(int x, int y)
</autodoc>
20400 <param name=
"x" type=
"int" default=
""/>
20401 <param name=
"y" type=
"int" default=
""/>
20404 <method name=
"Move" type=
"" overloaded=
"no">
20405 <autodoc>Move(Point pt)
</autodoc>
20407 <param name=
"pt" type=
"Point" default=
""/>
20410 <method name=
"SetSizeWH" type=
"" overloaded=
"no">
20411 <autodoc>SetSizeWH(int width, int height)
</autodoc>
20413 <param name=
"width" type=
"int" default=
""/>
20414 <param name=
"height" type=
"int" default=
""/>
20417 <method name=
"SetSize" type=
"" overloaded=
"no">
20418 <autodoc>SetSize(Size size)
</autodoc>
20420 <param name=
"size" type=
"Size" default=
""/>
20423 <method name=
"Show" type=
"" overloaded=
"no">
20424 <autodoc>Show(int show=True)
</autodoc>
20426 <param name=
"show" type=
"int" default=
"True"/>
20429 <method name=
"Hide" type=
"" overloaded=
"no">
20430 <autodoc>Hide()
</autodoc>
20433 <method name=
"Caret_GetBlinkTime" oldname=
"wxCaret_GetBlinkTime" type=
"int" overloaded=
"no">
20434 <autodoc>Caret_GetBlinkTime() -
> int
</autodoc>
20436 <method name=
"Caret_SetBlinkTime" oldname=
"wxCaret_SetBlinkTime" type=
"" overloaded=
"no">
20437 <autodoc>Caret_SetBlinkTime(int milliseconds)
</autodoc>
20439 <param name=
"milliseconds" type=
"int" default=
""/>
20442 <class name=
"BusyCursor" oldname=
"wxBusyCursor" module=
"misc">
20443 <constructor name=
"BusyCursor" overloaded=
"no">
20444 <autodoc>__init__(Cursor cursor=wxHOURGLASS_CURSOR) -
> BusyCursor
</autodoc>
20446 <param name=
"cursor" type=
"Cursor" default=
"wxHOURGLASS_CURSOR"/>
20449 <destructor name=
"~wxBusyCursor" overloaded=
"no">
20450 <autodoc>__del__()
</autodoc>
20453 <class name=
"WindowDisabler" oldname=
"wxWindowDisabler" module=
"misc">
20454 <constructor name=
"WindowDisabler" overloaded=
"no">
20455 <autodoc>__init__(Window winToSkip=None) -
> WindowDisabler
</autodoc>
20457 <param name=
"winToSkip" type=
"Window" default=
"NULL"/>
20460 <destructor name=
"~wxWindowDisabler" overloaded=
"no">
20461 <autodoc>__del__()
</autodoc>
20464 <class name=
"BusyInfo" oldname=
"wxBusyInfo" module=
"misc">
20465 <baseclass name=
"Object"/>
20466 <constructor name=
"BusyInfo" overloaded=
"no">
20467 <autodoc>__init__(String message) -
> BusyInfo
</autodoc>
20469 <param name=
"message" type=
"String" default=
""/>
20472 <destructor name=
"~wxBusyInfo" overloaded=
"no">
20473 <autodoc>__del__()
</autodoc>
20476 <class name=
"StopWatch" oldname=
"wxStopWatch" module=
"misc">
20477 <constructor name=
"StopWatch" overloaded=
"no">
20478 <autodoc>__init__() -
> StopWatch
</autodoc>
20480 <method name=
"Start" type=
"" overloaded=
"no">
20481 <autodoc>Start(long t0=
0)
</autodoc>
20483 <param name=
"t0" type=
"long" default=
"0"/>
20486 <method name=
"Pause" type=
"" overloaded=
"no">
20487 <autodoc>Pause()
</autodoc>
20489 <method name=
"Resume" type=
"" overloaded=
"no">
20490 <autodoc>Resume()
</autodoc>
20492 <method name=
"Time" type=
"long" overloaded=
"no">
20493 <autodoc>Time() -
> long
</autodoc>
20496 <class name=
"FileHistory" oldname=
"wxFileHistory" module=
"misc">
20497 <baseclass name=
"Object"/>
20498 <constructor name=
"FileHistory" overloaded=
"no">
20499 <autodoc>__init__(int maxFiles=
9) -
> FileHistory
</autodoc>
20501 <param name=
"maxFiles" type=
"int" default=
"9"/>
20504 <destructor name=
"~wxFileHistory" overloaded=
"no">
20505 <autodoc>__del__()
</autodoc>
20507 <method name=
"AddFileToHistory" type=
"" overloaded=
"no">
20508 <autodoc>AddFileToHistory(String file)
</autodoc>
20510 <param name=
"file" type=
"String" default=
""/>
20513 <method name=
"RemoveFileFromHistory" type=
"" overloaded=
"no">
20514 <autodoc>RemoveFileFromHistory(int i)
</autodoc>
20516 <param name=
"i" type=
"int" default=
""/>
20519 <method name=
"GetMaxFiles" type=
"int" overloaded=
"no">
20520 <autodoc>GetMaxFiles() -
> int
</autodoc>
20522 <method name=
"UseMenu" type=
"" overloaded=
"no">
20523 <autodoc>UseMenu(Menu menu)
</autodoc>
20525 <param name=
"menu" type=
"Menu" default=
""/>
20528 <method name=
"RemoveMenu" type=
"" overloaded=
"no">
20529 <autodoc>RemoveMenu(Menu menu)
</autodoc>
20531 <param name=
"menu" type=
"Menu" default=
""/>
20534 <method name=
"Load" type=
"" overloaded=
"no">
20535 <autodoc>Load(ConfigBase config)
</autodoc>
20537 <param name=
"config" type=
"wxConfigBase" default=
""/>
20540 <method name=
"Save" type=
"" overloaded=
"no">
20541 <autodoc>Save(ConfigBase config)
</autodoc>
20543 <param name=
"config" type=
"wxConfigBase" default=
""/>
20546 <method name=
"AddFilesToMenu" type=
"" overloaded=
"no">
20547 <autodoc>AddFilesToMenu()
</autodoc>
20549 <method name=
"AddFilesToThisMenu" type=
"" overloaded=
"no">
20550 <autodoc>AddFilesToThisMenu(Menu menu)
</autodoc>
20552 <param name=
"menu" type=
"Menu" default=
""/>
20555 <method name=
"GetHistoryFile" type=
"String" overloaded=
"no">
20556 <autodoc>GetHistoryFile(int i) -
> String
</autodoc>
20558 <param name=
"i" type=
"int" default=
""/>
20561 <method name=
"GetCount" type=
"int" overloaded=
"no">
20562 <autodoc>GetCount() -
> int
</autodoc>
20565 <class name=
"SingleInstanceChecker" oldname=
"wxSingleInstanceChecker" module=
"misc">
20566 <constructor name=
"SingleInstanceChecker" overloaded=
"no">
20567 <autodoc>__init__(String name, String path=EmptyString) -
> SingleInstanceChecker
</autodoc>
20569 <param name=
"name" type=
"String" default=
""/>
20570 <param name=
"path" type=
"String" default=
"wxPyEmptyString"/>
20573 <constructor name=
"PreSingleInstanceChecker" overloaded=
"no">
20574 <autodoc>PreSingleInstanceChecker() -
> SingleInstanceChecker
</autodoc>
20576 <destructor name=
"~wxSingleInstanceChecker" overloaded=
"no">
20577 <autodoc>__del__()
</autodoc>
20579 <method name=
"Create" type=
"bool" overloaded=
"no">
20580 <autodoc>Create(String name, String path=EmptyString) -
> bool
</autodoc>
20582 <param name=
"name" type=
"String" default=
""/>
20583 <param name=
"path" type=
"String" default=
"wxPyEmptyString"/>
20586 <method name=
"IsAnotherRunning" type=
"bool" overloaded=
"no">
20587 <autodoc>IsAnotherRunning() -
> bool
</autodoc>
20590 <method name=
"DrawWindowOnDC" oldname=
"wxDrawWindowOnDC" type=
"" overloaded=
"no">
20591 <autodoc>DrawWindowOnDC(Window window, DC dc, int method)
</autodoc>
20593 <param name=
"window" type=
"Window" default=
""/>
20594 <param name=
"dc" type=
"DC" default=
""/>
20595 <param name=
"method" type=
"int" default=
""/>
20599 #---------------------------------------------------------------------------
20601 <class name=
"TipProvider" oldname=
"wxTipProvider" module=
"misc">
20602 <destructor name=
"~wxTipProvider" overloaded=
"no">
20603 <autodoc>__del__()
</autodoc>
20605 <method name=
"GetTip" type=
"String" overloaded=
"no">
20606 <autodoc>GetTip() -
> String
</autodoc>
20608 <method name=
"GetCurrentTip" type=
"size_t" overloaded=
"no">
20609 <autodoc>GetCurrentTip() -
> size_t
</autodoc>
20611 <method name=
"PreprocessTip" type=
"String" overloaded=
"no">
20612 <autodoc>PreprocessTip(String tip) -
> String
</autodoc>
20614 <param name=
"tip" type=
"String" default=
""/>
20618 <class name=
"PyTipProvider" oldname=
"wxPyTipProvider" module=
"misc">
20619 <baseclass name=
"TipProvider"/>
20620 <constructor name=
"PyTipProvider" overloaded=
"no">
20621 <autodoc>__init__(size_t currentTip) -
> PyTipProvider
</autodoc>
20623 <param name=
"currentTip" type=
"size_t" default=
""/>
20626 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
20627 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
20629 <param name=
"self" type=
"PyObject" default=
""/>
20630 <param name=
"_class" type=
"PyObject" default=
""/>
20634 <method name=
"ShowTip" oldname=
"wxShowTip" type=
"bool" overloaded=
"no">
20635 <autodoc>ShowTip(Window parent, TipProvider tipProvider, bool showAtStartup=True) -
> bool
</autodoc>
20637 <param name=
"parent" type=
"Window" default=
""/>
20638 <param name=
"tipProvider" type=
"TipProvider" default=
""/>
20639 <param name=
"showAtStartup" type=
"bool" default=
"True"/>
20642 <method name=
"CreateFileTipProvider" oldname=
"wxCreateFileTipProvider" type=
"TipProvider" overloaded=
"no">
20643 <autodoc>CreateFileTipProvider(String filename, size_t currentTip) -
> TipProvider
</autodoc>
20645 <param name=
"filename" type=
"String" default=
""/>
20646 <param name=
"currentTip" type=
"size_t" default=
""/>
20650 #---------------------------------------------------------------------------
20652 <class name=
"Timer" oldname=
"wxPyTimer" module=
"misc">
20653 <baseclass name=
"EvtHandler"/>
20654 <constructor name=
"wxPyTimer" overloaded=
"no">
20655 <autodoc>__init__(EvtHandler owner=None, int id=-
1) -
> Timer
</autodoc>
20657 <param name=
"owner" type=
"EvtHandler" default=
"NULL"/>
20658 <param name=
"id" type=
"int" default=
"-1"/>
20661 <destructor name=
"~wxPyTimer" overloaded=
"no">
20662 <autodoc>__del__()
</autodoc>
20664 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
20665 <autodoc>_setCallbackInfo(PyObject self, PyObject _class, int incref=
1)
</autodoc>
20667 <param name=
"self" type=
"PyObject" default=
""/>
20668 <param name=
"_class" type=
"PyObject" default=
""/>
20669 <param name=
"incref" type=
"int" default=
"1"/>
20672 <method name=
"SetOwner" type=
"" overloaded=
"no">
20673 <autodoc>SetOwner(EvtHandler owner, int id=-
1)
</autodoc>
20675 <param name=
"owner" type=
"EvtHandler" default=
""/>
20676 <param name=
"id" type=
"int" default=
"-1"/>
20679 <method name=
"Start" type=
"bool" overloaded=
"no">
20680 <autodoc>Start(int milliseconds=-
1, bool oneShot=False) -
> bool
</autodoc>
20682 <param name=
"milliseconds" type=
"int" default=
"-1"/>
20683 <param name=
"oneShot" type=
"bool" default=
"False"/>
20686 <method name=
"Stop" type=
"" overloaded=
"no">
20687 <autodoc>Stop()
</autodoc>
20689 <method name=
"IsRunning" type=
"bool" overloaded=
"no">
20690 <autodoc>IsRunning() -
> bool
</autodoc>
20692 <method name=
"GetInterval" type=
"int" overloaded=
"no">
20693 <autodoc>GetInterval() -
> int
</autodoc>
20695 <method name=
"IsOneShot" type=
"bool" overloaded=
"no">
20696 <autodoc>IsOneShot() -
> bool
</autodoc>
20698 <method name=
"GetId" type=
"int" overloaded=
"no">
20699 <autodoc>GetId() -
> int
</autodoc>
20703 # For backwards compatibility with
2.4
20704 class PyTimer(Timer):
20705 def __init__(self, notify):
20706 Timer.__init__(self)
20707 self.notify = notify
20714 EVT_TIMER = wx.PyEventBinder( wxEVT_TIMER,
1 )
20717 <class name=
"TimerEvent" oldname=
"wxTimerEvent" module=
"misc">
20718 <baseclass name=
"Event"/>
20719 <constructor name=
"TimerEvent" overloaded=
"no">
20720 <autodoc>__init__(int timerid=
0, int interval=
0) -
> TimerEvent
</autodoc>
20722 <param name=
"timerid" type=
"int" default=
"0"/>
20723 <param name=
"interval" type=
"int" default=
"0"/>
20726 <method name=
"GetInterval" type=
"int" overloaded=
"no">
20727 <autodoc>GetInterval() -
> int
</autodoc>
20730 <class name=
"TimerRunner" oldname=
"wxTimerRunner" module=
"misc">
20731 <constructor name=
"TimerRunner" overloaded=
"yes">
20733 <param name=
"timer" type=
"wxTimer" default=
""/>
20736 <constructor name=
"TimerRunner" overloaded=
"yes">
20737 <autodoc>__init__(wxTimer timer) -
> TimerRunner
20738 __init__(wxTimer timer, int milli, bool oneShot=False) -
> TimerRunner
</autodoc>
20740 <param name=
"timer" type=
"wxTimer" default=
""/>
20741 <param name=
"milli" type=
"int" default=
""/>
20742 <param name=
"oneShot" type=
"bool" default=
"False"/>
20745 <destructor name=
"~wxTimerRunner" overloaded=
"no">
20746 <autodoc>__del__()
</autodoc>
20748 <method name=
"Start" type=
"" overloaded=
"no">
20749 <autodoc>Start(int milli, bool oneShot=False)
</autodoc>
20751 <param name=
"milli" type=
"int" default=
""/>
20752 <param name=
"oneShot" type=
"bool" default=
"False"/>
20757 #---------------------------------------------------------------------------
20759 <class name=
"Log" oldname=
"wxLog" module=
"misc">
20760 <constructor name=
"Log" overloaded=
"no">
20761 <autodoc>__init__() -
> Log
</autodoc>
20763 <staticmethod name=
"IsEnabled" type=
"bool" overloaded=
"no">
20764 <autodoc>IsEnabled() -
> bool
</autodoc>
20766 <staticmethod name=
"EnableLogging" type=
"bool" overloaded=
"no">
20767 <autodoc>EnableLogging(bool doIt=True) -
> bool
</autodoc>
20769 <param name=
"doIt" type=
"bool" default=
"True"/>
20772 <staticmethod name=
"OnLog" type=
"" overloaded=
"no">
20773 <autodoc>OnLog(wxLogLevel level, wxChar szString, time_t t)
</autodoc>
20775 <param name=
"level" type=
"wxLogLevel" default=
""/>
20776 <param name=
"szString" type=
"wxChar" default=
""/>
20777 <param name=
"t" type=
"time_t" default=
""/>
20780 <method name=
"Flush" type=
"" overloaded=
"no">
20781 <autodoc>Flush()
</autodoc>
20783 <staticmethod name=
"FlushActive" type=
"" overloaded=
"no">
20784 <autodoc>FlushActive()
</autodoc>
20786 <staticmethod name=
"GetActiveTarget" type=
"Log" overloaded=
"no">
20787 <autodoc>GetActiveTarget() -
> Log
</autodoc>
20789 <staticmethod name=
"SetActiveTarget" type=
"Log" overloaded=
"no">
20790 <autodoc>SetActiveTarget(Log pLogger) -
> Log
</autodoc>
20792 <param name=
"pLogger" type=
"Log" default=
""/>
20795 <staticmethod name=
"Suspend" type=
"" overloaded=
"no">
20796 <autodoc>Suspend()
</autodoc>
20798 <staticmethod name=
"Resume" type=
"" overloaded=
"no">
20799 <autodoc>Resume()
</autodoc>
20801 <staticmethod name=
"SetVerbose" type=
"" overloaded=
"no">
20802 <autodoc>SetVerbose(bool bVerbose=True)
</autodoc>
20804 <param name=
"bVerbose" type=
"bool" default=
"True"/>
20807 <staticmethod name=
"SetLogLevel" type=
"" overloaded=
"no">
20808 <autodoc>SetLogLevel(wxLogLevel logLevel)
</autodoc>
20810 <param name=
"logLevel" type=
"wxLogLevel" default=
""/>
20813 <staticmethod name=
"DontCreateOnDemand" type=
"" overloaded=
"no">
20814 <autodoc>DontCreateOnDemand()
</autodoc>
20816 <staticmethod name=
"SetTraceMask" type=
"" overloaded=
"no">
20817 <autodoc>SetTraceMask(wxTraceMask ulMask)
</autodoc>
20819 <param name=
"ulMask" type=
"wxTraceMask" default=
""/>
20822 <staticmethod name=
"AddTraceMask" type=
"" overloaded=
"no">
20823 <autodoc>AddTraceMask(String str)
</autodoc>
20825 <param name=
"str" type=
"String" default=
""/>
20828 <staticmethod name=
"RemoveTraceMask" type=
"" overloaded=
"no">
20829 <autodoc>RemoveTraceMask(String str)
</autodoc>
20831 <param name=
"str" type=
"String" default=
""/>
20834 <staticmethod name=
"ClearTraceMasks" type=
"" overloaded=
"no">
20835 <autodoc>ClearTraceMasks()
</autodoc>
20837 <staticmethod name=
"GetTraceMasks" type=
"wxArrayString" overloaded=
"no">
20838 <autodoc>GetTraceMasks() -
> wxArrayString
</autodoc>
20840 <staticmethod name=
"SetTimestamp" type=
"" overloaded=
"no">
20841 <autodoc>SetTimestamp(wxChar ts)
</autodoc>
20843 <param name=
"ts" type=
"wxChar" default=
""/>
20846 <staticmethod name=
"GetVerbose" type=
"bool" overloaded=
"no">
20847 <autodoc>GetVerbose() -
> bool
</autodoc>
20849 <staticmethod name=
"GetTraceMask" type=
"wxTraceMask" overloaded=
"no">
20850 <autodoc>GetTraceMask() -
> wxTraceMask
</autodoc>
20852 <staticmethod name=
"IsAllowedTraceMask" type=
"bool" overloaded=
"no">
20853 <autodoc>IsAllowedTraceMask(wxChar mask) -
> bool
</autodoc>
20855 <param name=
"mask" type=
"wxChar" default=
""/>
20858 <staticmethod name=
"GetLogLevel" type=
"wxLogLevel" overloaded=
"no">
20859 <autodoc>GetLogLevel() -
> wxLogLevel
</autodoc>
20861 <staticmethod name=
"GetTimestamp" type=
"wxChar" overloaded=
"no">
20862 <autodoc>GetTimestamp() -
> wxChar
</autodoc>
20864 <staticmethod name=
"TimeStamp" type=
"String" overloaded=
"no">
20865 <autodoc>TimeStamp() -
> String
</autodoc>
20867 <method name=
"Destroy" type=
"" overloaded=
"no">
20868 <autodoc>Destroy()
</autodoc>
20871 <class name=
"LogStderr" oldname=
"wxLogStderr" module=
"misc">
20872 <baseclass name=
"Log"/>
20873 <constructor name=
"LogStderr" overloaded=
"no">
20874 <autodoc>__init__() -
> LogStderr
</autodoc>
20877 <class name=
"LogTextCtrl" oldname=
"wxLogTextCtrl" module=
"misc">
20878 <baseclass name=
"Log"/>
20879 <constructor name=
"LogTextCtrl" overloaded=
"no">
20880 <autodoc>__init__(wxTextCtrl pTextCtrl) -
> LogTextCtrl
</autodoc>
20882 <param name=
"pTextCtrl" type=
"TextCtrl" default=
""/>
20886 <class name=
"LogGui" oldname=
"wxLogGui" module=
"misc">
20887 <baseclass name=
"Log"/>
20888 <constructor name=
"LogGui" overloaded=
"no">
20889 <autodoc>__init__() -
> LogGui
</autodoc>
20892 <class name=
"LogWindow" oldname=
"wxLogWindow" module=
"misc">
20893 <baseclass name=
"Log"/>
20894 <constructor name=
"LogWindow" overloaded=
"no">
20895 <autodoc>__init__(wxFrame pParent, String szTitle, bool bShow=True, bool bPassToOld=True) -
> LogWindow
</autodoc>
20897 <param name=
"pParent" type=
"Frame" default=
""/>
20898 <param name=
"szTitle" type=
"String" default=
""/>
20899 <param name=
"bShow" type=
"bool" default=
"True"/>
20900 <param name=
"bPassToOld" type=
"bool" default=
"True"/>
20903 <method name=
"Show" type=
"" overloaded=
"no">
20904 <autodoc>Show(bool bShow=True)
</autodoc>
20906 <param name=
"bShow" type=
"bool" default=
"True"/>
20909 <method name=
"GetFrame" type=
"Frame" overloaded=
"no">
20910 <autodoc>GetFrame() -
> wxFrame
</autodoc>
20912 <method name=
"GetOldLog" type=
"Log" overloaded=
"no">
20913 <autodoc>GetOldLog() -
> Log
</autodoc>
20915 <method name=
"IsPassingMessages" type=
"bool" overloaded=
"no">
20916 <autodoc>IsPassingMessages() -
> bool
</autodoc>
20918 <method name=
"PassMessages" type=
"" overloaded=
"no">
20919 <autodoc>PassMessages(bool bDoPass)
</autodoc>
20921 <param name=
"bDoPass" type=
"bool" default=
""/>
20925 <class name=
"LogChain" oldname=
"wxLogChain" module=
"misc">
20926 <baseclass name=
"Log"/>
20927 <constructor name=
"LogChain" overloaded=
"no">
20928 <autodoc>__init__(Log logger) -
> LogChain
</autodoc>
20930 <param name=
"logger" type=
"Log" default=
""/>
20933 <method name=
"SetLog" type=
"" overloaded=
"no">
20934 <autodoc>SetLog(Log logger)
</autodoc>
20936 <param name=
"logger" type=
"Log" default=
""/>
20939 <method name=
"PassMessages" type=
"" overloaded=
"no">
20940 <autodoc>PassMessages(bool bDoPass)
</autodoc>
20942 <param name=
"bDoPass" type=
"bool" default=
""/>
20945 <method name=
"IsPassingMessages" type=
"bool" overloaded=
"no">
20946 <autodoc>IsPassingMessages() -
> bool
</autodoc>
20948 <method name=
"GetOldLog" type=
"Log" overloaded=
"no">
20949 <autodoc>GetOldLog() -
> Log
</autodoc>
20952 <method name=
"SysErrorCode" oldname=
"wxSysErrorCode" type=
"unsigned long" overloaded=
"no">
20953 <autodoc>SysErrorCode() -
> unsigned long
</autodoc>
20955 <method name=
"SysErrorMsg" oldname=
"wxSysErrorMsg" type=
"String" overloaded=
"no">
20956 <autodoc>SysErrorMsg(unsigned long nErrCode=
0) -
> String
</autodoc>
20958 <param name=
"nErrCode" type=
"unsigned long" default=
"0"/>
20961 <method name=
"LogFatalError" oldname=
"wxLogFatalError" type=
"" overloaded=
"no">
20962 <autodoc>LogFatalError(String msg)
</autodoc>
20964 <param name=
"msg" type=
"String" default=
""/>
20967 <method name=
"LogError" oldname=
"wxLogError" type=
"" overloaded=
"no">
20968 <autodoc>LogError(String msg)
</autodoc>
20970 <param name=
"msg" type=
"String" default=
""/>
20973 <method name=
"LogWarning" oldname=
"wxLogWarning" type=
"" overloaded=
"no">
20974 <autodoc>LogWarning(String msg)
</autodoc>
20976 <param name=
"msg" type=
"String" default=
""/>
20979 <method name=
"LogMessage" oldname=
"wxLogMessage" type=
"" overloaded=
"no">
20980 <autodoc>LogMessage(String msg)
</autodoc>
20982 <param name=
"msg" type=
"String" default=
""/>
20985 <method name=
"LogInfo" oldname=
"wxLogInfo" type=
"" overloaded=
"no">
20986 <autodoc>LogInfo(String msg)
</autodoc>
20988 <param name=
"msg" type=
"String" default=
""/>
20991 <method name=
"LogDebug" oldname=
"wxLogDebug" type=
"" overloaded=
"no">
20992 <autodoc>LogDebug(String msg)
</autodoc>
20994 <param name=
"msg" type=
"String" default=
""/>
20997 <method name=
"LogVerbose" oldname=
"wxLogVerbose" type=
"" overloaded=
"no">
20998 <autodoc>LogVerbose(String msg)
</autodoc>
21000 <param name=
"msg" type=
"String" default=
""/>
21003 <method name=
"LogStatus" oldname=
"wxLogStatus" type=
"" overloaded=
"no">
21004 <autodoc>LogStatus(String msg)
</autodoc>
21006 <param name=
"msg" type=
"String" default=
""/>
21009 <method name=
"LogStatusFrame" oldname=
"wxLogStatus" type=
"" overloaded=
"no">
21010 <autodoc>LogStatusFrame(wxFrame pFrame, String msg)
</autodoc>
21012 <param name=
"pFrame" type=
"Frame" default=
""/>
21013 <param name=
"msg" type=
"String" default=
""/>
21016 <method name=
"LogSysError" oldname=
"wxLogSysError" type=
"" overloaded=
"no">
21017 <autodoc>LogSysError(String msg)
</autodoc>
21019 <param name=
"msg" type=
"String" default=
""/>
21022 <method name=
"LogTrace" oldname=
"wxLogTrace" type=
"" overloaded=
"yes">
21024 <param name=
"mask" type=
"unsigned long" default=
""/>
21025 <param name=
"msg" type=
"String" default=
""/>
21028 <method name=
"LogTrace" oldname=
"wxLogTrace" type=
"" overloaded=
"yes">
21029 <autodoc>LogTrace(unsigned long mask, String msg)
21030 LogTrace(String mask, String msg)
</autodoc>
21032 <param name=
"mask" type=
"String" default=
""/>
21033 <param name=
"msg" type=
"String" default=
""/>
21036 <method name=
"LogGeneric" oldname=
"wxLogGeneric" type=
"" overloaded=
"no">
21037 <autodoc>LogGeneric(unsigned long level, String msg)
</autodoc>
21039 <param name=
"level" type=
"unsigned long" default=
""/>
21040 <param name=
"msg" type=
"String" default=
""/>
21043 <method name=
"SafeShowMessage" oldname=
"wxSafeShowMessage" type=
"" overloaded=
"no">
21044 <autodoc>SafeShowMessage(String title, String text)
</autodoc>
21046 <param name=
"title" type=
"String" default=
""/>
21047 <param name=
"text" type=
"String" default=
""/>
21050 <class name=
"LogNull" oldname=
"wxLogNull" module=
"misc">
21051 <constructor name=
"LogNull" overloaded=
"no">
21052 <autodoc>__init__() -
> LogNull
</autodoc>
21054 <destructor name=
"~wxLogNull" overloaded=
"no">
21055 <autodoc>__del__()
</autodoc>
21058 <class name=
"PyLog" oldname=
"wxPyLog" module=
"misc">
21059 <baseclass name=
"Log"/>
21060 <constructor name=
"PyLog" overloaded=
"no">
21061 <autodoc>__init__() -
> PyLog
</autodoc>
21063 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
21064 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
21066 <param name=
"self" type=
"PyObject" default=
""/>
21067 <param name=
"_class" type=
"PyObject" default=
""/>
21072 #---------------------------------------------------------------------------
21074 <class name=
"Process" oldname=
"wxPyProcess" module=
"misc">
21075 <baseclass name=
"EvtHandler"/>
21076 <constructor name=
"wxPyProcess" overloaded=
"no">
21077 <autodoc>__init__(EvtHandler parent=None, int id=-
1) -
> Process
</autodoc>
21079 <param name=
"parent" type=
"EvtHandler" default=
"NULL"/>
21080 <param name=
"id" type=
"int" default=
"-1"/>
21083 <staticmethod name=
"Kill" type=
"wxKillError" overloaded=
"no">
21084 <autodoc>Kill(int pid, int sig=SIGTERM) -
> int
</autodoc>
21086 <param name=
"pid" type=
"int" default=
""/>
21087 <param name=
"sig" type=
"wxSignal" default=
"wxSIGTERM"/>
21090 <staticmethod name=
"Exists" type=
"bool" overloaded=
"no">
21091 <autodoc>Exists(int pid) -
> bool
</autodoc>
21093 <param name=
"pid" type=
"int" default=
""/>
21096 <staticmethod name=
"Open" type=
"Process" overloaded=
"no">
21097 <autodoc>Open(String cmd, int flags=EXEC_ASYNC) -
> Process
</autodoc>
21099 <param name=
"cmd" type=
"String" default=
""/>
21100 <param name=
"flags" type=
"int" default=
"wxEXEC_ASYNC"/>
21103 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
21104 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
21106 <param name=
"self" type=
"PyObject" default=
""/>
21107 <param name=
"_class" type=
"PyObject" default=
""/>
21110 <method name=
"base_OnTerminate" type=
"" overloaded=
"no">
21111 <autodoc>base_OnTerminate(int pid, int status)
</autodoc>
21113 <param name=
"pid" type=
"int" default=
""/>
21114 <param name=
"status" type=
"int" default=
""/>
21117 <method name=
"Redirect" type=
"" overloaded=
"no">
21118 <autodoc>Redirect()
</autodoc>
21120 <method name=
"IsRedirected" type=
"bool" overloaded=
"no">
21121 <autodoc>IsRedirected() -
> bool
</autodoc>
21123 <method name=
"Detach" type=
"" overloaded=
"no">
21124 <autodoc>Detach()
</autodoc>
21126 <method name=
"GetInputStream" type=
"wxInputStream" overloaded=
"no">
21127 <autodoc>GetInputStream() -
> InputStream
</autodoc>
21129 <method name=
"GetErrorStream" type=
"wxInputStream" overloaded=
"no">
21130 <autodoc>GetErrorStream() -
> InputStream
</autodoc>
21132 <method name=
"GetOutputStream" type=
"OutputStream" overloaded=
"no">
21133 <autodoc>GetOutputStream() -
> OutputStream
</autodoc>
21135 <method name=
"CloseOutput" type=
"" overloaded=
"no">
21136 <autodoc>CloseOutput()
</autodoc>
21138 <method name=
"IsInputOpened" type=
"bool" overloaded=
"no">
21139 <autodoc>IsInputOpened() -
> bool
</autodoc>
21141 <method name=
"IsInputAvailable" type=
"bool" overloaded=
"no">
21142 <autodoc>IsInputAvailable() -
> bool
</autodoc>
21144 <method name=
"IsErrorAvailable" type=
"bool" overloaded=
"no">
21145 <autodoc>IsErrorAvailable() -
> bool
</autodoc>
21148 <class name=
"ProcessEvent" oldname=
"wxProcessEvent" module=
"misc">
21149 <baseclass name=
"Event"/>
21150 <constructor name=
"ProcessEvent" overloaded=
"no">
21151 <autodoc>__init__(int id=
0, int pid=
0, int exitcode=
0) -
> ProcessEvent
</autodoc>
21153 <param name=
"id" type=
"int" default=
"0"/>
21154 <param name=
"pid" type=
"int" default=
"0"/>
21155 <param name=
"exitcode" type=
"int" default=
"0"/>
21158 <method name=
"GetPid" type=
"int" overloaded=
"no">
21159 <autodoc>GetPid() -
> int
</autodoc>
21161 <method name=
"GetExitCode" type=
"int" overloaded=
"no">
21162 <autodoc>GetExitCode() -
> int
</autodoc>
21164 <property name=
"m_pid" type=
"int" readonly=
"no"/>
21165 <property name=
"m_exitcode" type=
"int" readonly=
"no"/>
21168 EVT_END_PROCESS = wx.PyEventBinder( wxEVT_END_PROCESS,
1 )
21170 <method name=
"Execute" oldname=
"wxExecute" type=
"long" overloaded=
"no">
21171 <autodoc>Execute(String command, int flags=EXEC_ASYNC, Process process=None) -
> long
</autodoc>
21173 <param name=
"command" type=
"String" default=
""/>
21174 <param name=
"flags" type=
"int" default=
"wxEXEC_ASYNC"/>
21175 <param name=
"process" type=
"Process" default=
"NULL"/>
21179 #---------------------------------------------------------------------------
21181 <class name=
"Joystick" oldname=
"wxJoystick" module=
"misc">
21182 <constructor name=
"Joystick" overloaded=
"no">
21183 <autodoc>__init__(int joystick=JOYSTICK1) -
> Joystick
</autodoc>
21185 <param name=
"joystick" type=
"int" default=
"wxJOYSTICK1"/>
21188 <destructor name=
"~wxJoystick" overloaded=
"no">
21189 <autodoc>__del__()
</autodoc>
21191 <method name=
"GetPosition" type=
"Point" overloaded=
"no">
21192 <autodoc>GetPosition() -
> Point
</autodoc>
21194 <method name=
"GetZPosition" type=
"int" overloaded=
"no">
21195 <autodoc>GetZPosition() -
> int
</autodoc>
21197 <method name=
"GetButtonState" type=
"int" overloaded=
"no">
21198 <autodoc>GetButtonState() -
> int
</autodoc>
21200 <method name=
"GetPOVPosition" type=
"int" overloaded=
"no">
21201 <autodoc>GetPOVPosition() -
> int
</autodoc>
21203 <method name=
"GetPOVCTSPosition" type=
"int" overloaded=
"no">
21204 <autodoc>GetPOVCTSPosition() -
> int
</autodoc>
21206 <method name=
"GetRudderPosition" type=
"int" overloaded=
"no">
21207 <autodoc>GetRudderPosition() -
> int
</autodoc>
21209 <method name=
"GetUPosition" type=
"int" overloaded=
"no">
21210 <autodoc>GetUPosition() -
> int
</autodoc>
21212 <method name=
"GetVPosition" type=
"int" overloaded=
"no">
21213 <autodoc>GetVPosition() -
> int
</autodoc>
21215 <method name=
"GetMovementThreshold" type=
"int" overloaded=
"no">
21216 <autodoc>GetMovementThreshold() -
> int
</autodoc>
21218 <method name=
"SetMovementThreshold" type=
"" overloaded=
"no">
21219 <autodoc>SetMovementThreshold(int threshold)
</autodoc>
21221 <param name=
"threshold" type=
"int" default=
""/>
21224 <method name=
"IsOk" type=
"bool" overloaded=
"no">
21225 <autodoc>IsOk() -
> bool
</autodoc>
21227 <method name=
"GetNumberJoysticks" type=
"int" overloaded=
"no">
21228 <autodoc>GetNumberJoysticks() -
> int
</autodoc>
21230 <method name=
"GetManufacturerId" type=
"int" overloaded=
"no">
21231 <autodoc>GetManufacturerId() -
> int
</autodoc>
21233 <method name=
"GetProductId" type=
"int" overloaded=
"no">
21234 <autodoc>GetProductId() -
> int
</autodoc>
21236 <method name=
"GetProductName" type=
"String" overloaded=
"no">
21237 <autodoc>GetProductName() -
> String
</autodoc>
21239 <method name=
"GetXMin" type=
"int" overloaded=
"no">
21240 <autodoc>GetXMin() -
> int
</autodoc>
21242 <method name=
"GetYMin" type=
"int" overloaded=
"no">
21243 <autodoc>GetYMin() -
> int
</autodoc>
21245 <method name=
"GetZMin" type=
"int" overloaded=
"no">
21246 <autodoc>GetZMin() -
> int
</autodoc>
21248 <method name=
"GetXMax" type=
"int" overloaded=
"no">
21249 <autodoc>GetXMax() -
> int
</autodoc>
21251 <method name=
"GetYMax" type=
"int" overloaded=
"no">
21252 <autodoc>GetYMax() -
> int
</autodoc>
21254 <method name=
"GetZMax" type=
"int" overloaded=
"no">
21255 <autodoc>GetZMax() -
> int
</autodoc>
21257 <method name=
"GetNumberButtons" type=
"int" overloaded=
"no">
21258 <autodoc>GetNumberButtons() -
> int
</autodoc>
21260 <method name=
"GetNumberAxes" type=
"int" overloaded=
"no">
21261 <autodoc>GetNumberAxes() -
> int
</autodoc>
21263 <method name=
"GetMaxButtons" type=
"int" overloaded=
"no">
21264 <autodoc>GetMaxButtons() -
> int
</autodoc>
21266 <method name=
"GetMaxAxes" type=
"int" overloaded=
"no">
21267 <autodoc>GetMaxAxes() -
> int
</autodoc>
21269 <method name=
"GetPollingMin" type=
"int" overloaded=
"no">
21270 <autodoc>GetPollingMin() -
> int
</autodoc>
21272 <method name=
"GetPollingMax" type=
"int" overloaded=
"no">
21273 <autodoc>GetPollingMax() -
> int
</autodoc>
21275 <method name=
"GetRudderMin" type=
"int" overloaded=
"no">
21276 <autodoc>GetRudderMin() -
> int
</autodoc>
21278 <method name=
"GetRudderMax" type=
"int" overloaded=
"no">
21279 <autodoc>GetRudderMax() -
> int
</autodoc>
21281 <method name=
"GetUMin" type=
"int" overloaded=
"no">
21282 <autodoc>GetUMin() -
> int
</autodoc>
21284 <method name=
"GetUMax" type=
"int" overloaded=
"no">
21285 <autodoc>GetUMax() -
> int
</autodoc>
21287 <method name=
"GetVMin" type=
"int" overloaded=
"no">
21288 <autodoc>GetVMin() -
> int
</autodoc>
21290 <method name=
"GetVMax" type=
"int" overloaded=
"no">
21291 <autodoc>GetVMax() -
> int
</autodoc>
21293 <method name=
"HasRudder" type=
"bool" overloaded=
"no">
21294 <autodoc>HasRudder() -
> bool
</autodoc>
21296 <method name=
"HasZ" type=
"bool" overloaded=
"no">
21297 <autodoc>HasZ() -
> bool
</autodoc>
21299 <method name=
"HasU" type=
"bool" overloaded=
"no">
21300 <autodoc>HasU() -
> bool
</autodoc>
21302 <method name=
"HasV" type=
"bool" overloaded=
"no">
21303 <autodoc>HasV() -
> bool
</autodoc>
21305 <method name=
"HasPOV" type=
"bool" overloaded=
"no">
21306 <autodoc>HasPOV() -
> bool
</autodoc>
21308 <method name=
"HasPOV4Dir" type=
"bool" overloaded=
"no">
21309 <autodoc>HasPOV4Dir() -
> bool
</autodoc>
21311 <method name=
"HasPOVCTS" type=
"bool" overloaded=
"no">
21312 <autodoc>HasPOVCTS() -
> bool
</autodoc>
21314 <method name=
"SetCapture" type=
"bool" overloaded=
"no">
21315 <autodoc>SetCapture(Window win, int pollingFreq=
0) -
> bool
</autodoc>
21317 <param name=
"win" type=
"Window" default=
""/>
21318 <param name=
"pollingFreq" type=
"int" default=
"0"/>
21321 <method name=
"ReleaseCapture" type=
"bool" overloaded=
"no">
21322 <autodoc>ReleaseCapture() -
> bool
</autodoc>
21325 <class name=
"JoystickEvent" oldname=
"wxJoystickEvent" module=
"misc">
21326 <baseclass name=
"Event"/>
21327 <constructor name=
"JoystickEvent" overloaded=
"no">
21328 <autodoc>__init__(wxEventType type=wxEVT_NULL, int state=
0, int joystick=JOYSTICK1,
21329 int change=
0) -
> JoystickEvent
</autodoc>
21331 <param name=
"type" type=
"wxEventType" default=
"wxEVT_NULL"/>
21332 <param name=
"state" type=
"int" default=
"0"/>
21333 <param name=
"joystick" type=
"int" default=
"wxJOYSTICK1"/>
21334 <param name=
"change" type=
"int" default=
"0"/>
21337 <property name=
"m_pos" type=
"Point" readonly=
"no"/>
21338 <property name=
"m_zPosition" type=
"int" readonly=
"no"/>
21339 <property name=
"m_buttonChange" type=
"int" readonly=
"no"/>
21340 <property name=
"m_buttonState" type=
"int" readonly=
"no"/>
21341 <property name=
"m_joyStick" type=
"int" readonly=
"no"/>
21342 <method name=
"GetPosition" type=
"Point" overloaded=
"no">
21343 <autodoc>GetPosition() -
> Point
</autodoc>
21345 <method name=
"GetZPosition" type=
"int" overloaded=
"no">
21346 <autodoc>GetZPosition() -
> int
</autodoc>
21348 <method name=
"GetButtonState" type=
"int" overloaded=
"no">
21349 <autodoc>GetButtonState() -
> int
</autodoc>
21351 <method name=
"GetButtonChange" type=
"int" overloaded=
"no">
21352 <autodoc>GetButtonChange() -
> int
</autodoc>
21354 <method name=
"GetJoystick" type=
"int" overloaded=
"no">
21355 <autodoc>GetJoystick() -
> int
</autodoc>
21357 <method name=
"SetJoystick" type=
"" overloaded=
"no">
21358 <autodoc>SetJoystick(int stick)
</autodoc>
21360 <param name=
"stick" type=
"int" default=
""/>
21363 <method name=
"SetButtonState" type=
"" overloaded=
"no">
21364 <autodoc>SetButtonState(int state)
</autodoc>
21366 <param name=
"state" type=
"int" default=
""/>
21369 <method name=
"SetButtonChange" type=
"" overloaded=
"no">
21370 <autodoc>SetButtonChange(int change)
</autodoc>
21372 <param name=
"change" type=
"int" default=
""/>
21375 <method name=
"SetPosition" type=
"" overloaded=
"no">
21376 <autodoc>SetPosition(Point pos)
</autodoc>
21378 <param name=
"pos" type=
"Point" default=
""/>
21381 <method name=
"SetZPosition" type=
"" overloaded=
"no">
21382 <autodoc>SetZPosition(int zPos)
</autodoc>
21384 <param name=
"zPos" type=
"int" default=
""/>
21387 <method name=
"IsButton" type=
"bool" overloaded=
"no">
21388 <autodoc>IsButton() -
> bool
</autodoc>
21390 <method name=
"IsMove" type=
"bool" overloaded=
"no">
21391 <autodoc>IsMove() -
> bool
</autodoc>
21393 <method name=
"IsZMove" type=
"bool" overloaded=
"no">
21394 <autodoc>IsZMove() -
> bool
</autodoc>
21396 <method name=
"ButtonDown" type=
"bool" overloaded=
"no">
21397 <autodoc>ButtonDown(int but=JOY_BUTTON_ANY) -
> bool
</autodoc>
21399 <param name=
"but" type=
"int" default=
"wxJOY_BUTTON_ANY"/>
21402 <method name=
"ButtonUp" type=
"bool" overloaded=
"no">
21403 <autodoc>ButtonUp(int but=JOY_BUTTON_ANY) -
> bool
</autodoc>
21405 <param name=
"but" type=
"int" default=
"wxJOY_BUTTON_ANY"/>
21408 <method name=
"ButtonIsDown" type=
"bool" overloaded=
"no">
21409 <autodoc>ButtonIsDown(int but=JOY_BUTTON_ANY) -
> bool
</autodoc>
21411 <param name=
"but" type=
"int" default=
"wxJOY_BUTTON_ANY"/>
21416 EVT_JOY_BUTTON_DOWN = wx.PyEventBinder( wxEVT_JOY_BUTTON_DOWN )
21417 EVT_JOY_BUTTON_UP = wx.PyEventBinder( wxEVT_JOY_BUTTON_UP )
21418 EVT_JOY_MOVE = wx.PyEventBinder( wxEVT_JOY_MOVE )
21419 EVT_JOY_ZMOVE = wx.PyEventBinder( wxEVT_JOY_ZMOVE )
21421 EVT_JOYSTICK_EVENTS = wx.PyEventBinder([ wxEVT_JOY_BUTTON_DOWN,
21422 wxEVT_JOY_BUTTON_UP,
21429 #---------------------------------------------------------------------------
21431 <class name=
"Sound" oldname=
"wxSound" module=
"misc">
21432 <constructor name=
"Sound" overloaded=
"yes"/>
21433 <constructor name=
"Sound" overloaded=
"yes">
21435 <param name=
"fileName" type=
"String" default=
""/>
21436 <param name=
"isResource" type=
"bool" default=
"false"/>
21439 <constructor name=
"Sound" overloaded=
"yes">
21440 <autodoc>__init__() -
> Sound
21441 __init__(String fileName, bool isResource=false) -
> Sound
21442 __init__(int size, wxByte data) -
> Sound
</autodoc>
21444 <param name=
"size" type=
"int" default=
""/>
21445 <param name=
"data" type=
"wxByte" default=
""/>
21448 <destructor name=
"~wxSound" overloaded=
"no">
21449 <autodoc>__del__()
</autodoc>
21451 <method name=
"Create" type=
"bool" overloaded=
"yes">
21453 <param name=
"fileName" type=
"String" default=
""/>
21454 <param name=
"isResource" type=
"bool" default=
"false"/>
21457 <method name=
"Create" type=
"bool" overloaded=
"yes">
21458 <autodoc>Create(String fileName, bool isResource=false) -
> bool
21459 Create(int size, wxByte data) -
> bool
</autodoc>
21461 <param name=
"size" type=
"int" default=
""/>
21462 <param name=
"data" type=
"wxByte" default=
""/>
21465 <method name=
"IsOk" type=
"bool" overloaded=
"no">
21466 <autodoc>IsOk() -
> bool
</autodoc>
21468 <method name=
"Play" type=
"bool" overloaded=
"no">
21469 <autodoc>Play(unsigned int flags=SOUND_ASYNC) -
> bool
</autodoc>
21471 <param name=
"flags" type=
"unsigned int" default=
"wxSOUND_ASYNC"/>
21474 <staticmethod name=
"PlaySound" type=
"bool" overloaded=
"no">
21475 <autodoc>PlaySound(String filename, unsigned int flags=SOUND_ASYNC) -
> bool
</autodoc>
21477 <param name=
"filename" type=
"String" default=
""/>
21478 <param name=
"flags" type=
"unsigned int" default=
"wxSOUND_ASYNC"/>
21481 <staticmethod name=
"Stop" type=
"" overloaded=
"no">
21482 <autodoc>Stop()
</autodoc>
21486 #---------------------------------------------------------------------------
21488 <class name=
"FileTypeInfo" oldname=
"wxFileTypeInfo" module=
"misc">
21489 <constructor name=
"FileTypeInfo" overloaded=
"no">
21490 <autodoc>__init__(String mimeType, String openCmd, String printCmd, String desc) -
> FileTypeInfo
</autodoc>
21492 <param name=
"mimeType" type=
"String" default=
""/>
21493 <param name=
"openCmd" type=
"String" default=
""/>
21494 <param name=
"printCmd" type=
"String" default=
""/>
21495 <param name=
"desc" type=
"String" default=
""/>
21498 <constructor name=
"FileTypeInfoSequence" overloaded=
"no">
21499 <autodoc>FileTypeInfoSequence(wxArrayString sArray) -
> FileTypeInfo
</autodoc>
21501 <param name=
"sArray" type=
"wxArrayString" default=
""/>
21504 <constructor name=
"NullFileTypeInfo" overloaded=
"no">
21505 <autodoc>NullFileTypeInfo() -
> FileTypeInfo
</autodoc>
21507 <method name=
"IsValid" type=
"bool" overloaded=
"no">
21508 <autodoc>IsValid() -
> bool
</autodoc>
21510 <method name=
"SetIcon" type=
"" overloaded=
"no">
21511 <autodoc>SetIcon(String iconFile, int iconIndex=
0)
</autodoc>
21513 <param name=
"iconFile" type=
"String" default=
""/>
21514 <param name=
"iconIndex" type=
"int" default=
"0"/>
21517 <method name=
"SetShortDesc" type=
"" overloaded=
"no">
21518 <autodoc>SetShortDesc(String shortDesc)
</autodoc>
21520 <param name=
"shortDesc" type=
"String" default=
""/>
21523 <method name=
"GetMimeType" type=
"String" overloaded=
"no">
21524 <autodoc>GetMimeType() -
> String
</autodoc>
21526 <method name=
"GetOpenCommand" type=
"String" overloaded=
"no">
21527 <autodoc>GetOpenCommand() -
> String
</autodoc>
21529 <method name=
"GetPrintCommand" type=
"String" overloaded=
"no">
21530 <autodoc>GetPrintCommand() -
> String
</autodoc>
21532 <method name=
"GetShortDesc" type=
"String" overloaded=
"no">
21533 <autodoc>GetShortDesc() -
> String
</autodoc>
21535 <method name=
"GetDescription" type=
"String" overloaded=
"no">
21536 <autodoc>GetDescription() -
> String
</autodoc>
21538 <method name=
"GetExtensions" type=
"wxArrayString" overloaded=
"no">
21539 <autodoc>GetExtensions() -
> wxArrayString
</autodoc>
21541 <method name=
"GetExtensionsCount" type=
"int" overloaded=
"no">
21542 <autodoc>GetExtensionsCount() -
> int
</autodoc>
21544 <method name=
"GetIconFile" type=
"String" overloaded=
"no">
21545 <autodoc>GetIconFile() -
> String
</autodoc>
21547 <method name=
"GetIconIndex" type=
"int" overloaded=
"no">
21548 <autodoc>GetIconIndex() -
> int
</autodoc>
21551 <class name=
"FileType" oldname=
"wxFileType" module=
"misc">
21552 <constructor name=
"FileType" overloaded=
"no">
21553 <autodoc>__init__(FileTypeInfo ftInfo) -
> FileType
</autodoc>
21555 <param name=
"ftInfo" type=
"FileTypeInfo" default=
""/>
21558 <destructor name=
"~wxFileType" overloaded=
"no">
21559 <autodoc>__del__()
</autodoc>
21561 <method name=
"GetMimeType" type=
"PyObject" overloaded=
"no">
21562 <autodoc>GetMimeType() -
> PyObject
</autodoc>
21564 <method name=
"GetMimeTypes" type=
"PyObject" overloaded=
"no">
21565 <autodoc>GetMimeTypes() -
> PyObject
</autodoc>
21567 <method name=
"GetExtensions" type=
"PyObject" overloaded=
"no">
21568 <autodoc>GetExtensions() -
> PyObject
</autodoc>
21570 <method name=
"GetIcon" type=
"Icon" overloaded=
"no">
21571 <autodoc>GetIcon() -
> Icon
</autodoc>
21573 <method name=
"GetIconInfo" type=
"PyObject" overloaded=
"no">
21574 <autodoc>GetIconInfo() -
> PyObject
</autodoc>
21576 <method name=
"GetDescription" type=
"PyObject" overloaded=
"no">
21577 <autodoc>GetDescription() -
> PyObject
</autodoc>
21579 <method name=
"GetOpenCommand" type=
"PyObject" overloaded=
"no">
21580 <autodoc>GetOpenCommand(String filename, String mimetype=EmptyString) -
> PyObject
</autodoc>
21582 <param name=
"filename" type=
"String" default=
""/>
21583 <param name=
"mimetype" type=
"String" default=
"wxPyEmptyString"/>
21586 <method name=
"GetPrintCommand" type=
"PyObject" overloaded=
"no">
21587 <autodoc>GetPrintCommand(String filename, String mimetype=EmptyString) -
> PyObject
</autodoc>
21589 <param name=
"filename" type=
"String" default=
""/>
21590 <param name=
"mimetype" type=
"String" default=
"wxPyEmptyString"/>
21593 <method name=
"GetAllCommands" type=
"PyObject" overloaded=
"no">
21594 <autodoc>GetAllCommands(String filename, String mimetype=EmptyString) -
> PyObject
</autodoc>
21596 <param name=
"filename" type=
"String" default=
""/>
21597 <param name=
"mimetype" type=
"String" default=
"wxPyEmptyString"/>
21600 <method name=
"SetCommand" type=
"bool" overloaded=
"no">
21601 <autodoc>SetCommand(String cmd, String verb, bool overwriteprompt=True) -
> bool
</autodoc>
21603 <param name=
"cmd" type=
"String" default=
""/>
21604 <param name=
"verb" type=
"String" default=
""/>
21605 <param name=
"overwriteprompt" type=
"bool" default=
"True"/>
21608 <method name=
"SetDefaultIcon" type=
"bool" overloaded=
"no">
21609 <autodoc>SetDefaultIcon(String cmd=EmptyString, int index=
0) -
> bool
</autodoc>
21611 <param name=
"cmd" type=
"String" default=
"wxPyEmptyString"/>
21612 <param name=
"index" type=
"int" default=
"0"/>
21615 <method name=
"Unassociate" type=
"bool" overloaded=
"no">
21616 <autodoc>Unassociate() -
> bool
</autodoc>
21618 <staticmethod name=
"ExpandCommand" type=
"String" overloaded=
"no">
21619 <autodoc>ExpandCommand(String command, String filename, String mimetype=EmptyString) -
> String
</autodoc>
21621 <param name=
"command" type=
"String" default=
""/>
21622 <param name=
"filename" type=
"String" default=
""/>
21623 <param name=
"mimetype" type=
"String" default=
"wxPyEmptyString"/>
21627 <class name=
"MimeTypesManager" oldname=
"wxMimeTypesManager" module=
"misc">
21628 <constructor name=
"MimeTypesManager" overloaded=
"no">
21629 <autodoc>__init__() -
> MimeTypesManager
</autodoc>
21631 <destructor name=
"~wxMimeTypesManager" overloaded=
"no">
21632 <autodoc>__del__()
</autodoc>
21634 <staticmethod name=
"IsOfType" type=
"bool" overloaded=
"no">
21635 <autodoc>IsOfType(String mimeType, String wildcard) -
> bool
</autodoc>
21637 <param name=
"mimeType" type=
"String" default=
""/>
21638 <param name=
"wildcard" type=
"String" default=
""/>
21641 <method name=
"Initialize" type=
"" overloaded=
"no">
21642 <autodoc>Initialize(int mailcapStyle=MAILCAP_ALL, String extraDir=EmptyString)
</autodoc>
21644 <param name=
"mailcapStyle" type=
"int" default=
"wxMAILCAP_ALL"/>
21645 <param name=
"extraDir" type=
"String" default=
"wxPyEmptyString"/>
21648 <method name=
"ClearData" type=
"" overloaded=
"no">
21649 <autodoc>ClearData()
</autodoc>
21651 <method name=
"GetFileTypeFromExtension" type=
"FileType" overloaded=
"no">
21652 <autodoc>GetFileTypeFromExtension(String ext) -
> FileType
</autodoc>
21654 <param name=
"ext" type=
"String" default=
""/>
21657 <method name=
"GetFileTypeFromMimeType" type=
"FileType" overloaded=
"no">
21658 <autodoc>GetFileTypeFromMimeType(String mimeType) -
> FileType
</autodoc>
21660 <param name=
"mimeType" type=
"String" default=
""/>
21663 <method name=
"ReadMailcap" type=
"bool" overloaded=
"no">
21664 <autodoc>ReadMailcap(String filename, bool fallback=False) -
> bool
</autodoc>
21666 <param name=
"filename" type=
"String" default=
""/>
21667 <param name=
"fallback" type=
"bool" default=
"False"/>
21670 <method name=
"ReadMimeTypes" type=
"bool" overloaded=
"no">
21671 <autodoc>ReadMimeTypes(String filename) -
> bool
</autodoc>
21673 <param name=
"filename" type=
"String" default=
""/>
21676 <method name=
"EnumAllFileTypes" type=
"PyObject" overloaded=
"no">
21677 <autodoc>EnumAllFileTypes() -
> PyObject
</autodoc>
21679 <method name=
"AddFallback" type=
"" overloaded=
"no">
21680 <autodoc>AddFallback(FileTypeInfo ft)
</autodoc>
21682 <param name=
"ft" type=
"FileTypeInfo" default=
""/>
21685 <method name=
"Associate" type=
"FileType" overloaded=
"no">
21686 <autodoc>Associate(FileTypeInfo ftInfo) -
> FileType
</autodoc>
21688 <param name=
"ftInfo" type=
"FileTypeInfo" default=
""/>
21691 <method name=
"Unassociate" type=
"bool" overloaded=
"no">
21692 <autodoc>Unassociate(FileType ft) -
> bool
</autodoc>
21694 <param name=
"ft" type=
"FileType" default=
""/>
21699 #---------------------------------------------------------------------------
21701 <class name=
"ArtProvider" oldname=
"wxPyArtProvider" module=
"misc">
21702 <constructor name=
"wxPyArtProvider" overloaded=
"no">
21703 <autodoc>__init__() -
> ArtProvider
</autodoc>
21705 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
21706 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
21708 <param name=
"self" type=
"PyObject" default=
""/>
21709 <param name=
"_class" type=
"PyObject" default=
""/>
21712 <staticmethod name=
"PushProvider" type=
"" overloaded=
"no">
21713 <autodoc>PushProvider(ArtProvider provider)
</autodoc>
21714 <docstring>Add new provider to the top of providers stack.
</docstring>
21716 <param name=
"provider" type=
"ArtProvider" default=
""/>
21719 <staticmethod name=
"PopProvider" type=
"bool" overloaded=
"no">
21720 <autodoc>PopProvider() -
> bool
</autodoc>
21721 <docstring>Remove latest added provider and delete it.
</docstring>
21723 <staticmethod name=
"RemoveProvider" type=
"bool" overloaded=
"no">
21724 <autodoc>RemoveProvider(ArtProvider provider) -
> bool
</autodoc>
21725 <docstring>Remove provider. The provider must have been added previously!
21726 The provider is _not_ deleted.
</docstring>
21728 <param name=
"provider" type=
"ArtProvider" default=
""/>
21731 <staticmethod name=
"GetBitmap" type=
"Bitmap" overloaded=
"no">
21732 <autodoc>GetBitmap(String id, String client=ART_OTHER, Size size=DefaultSize) -
> Bitmap
</autodoc>
21733 <docstring>Query the providers for bitmap with given ID and return it. Return
21734 wx.NullBitmap if no provider provides it.
</docstring>
21736 <param name=
"id" type=
"String" default=
""/>
21737 <param name=
"client" type=
"String" default=
"wxPyART_OTHER"/>
21738 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
21741 <staticmethod name=
"GetIcon" type=
"Icon" overloaded=
"no">
21742 <autodoc>GetIcon(String id, String client=ART_OTHER, Size size=DefaultSize) -
> Icon
</autodoc>
21743 <docstring>Query the providers for icon with given ID and return it. Return
21744 wx.NullIcon if no provider provides it.
</docstring>
21746 <param name=
"id" type=
"String" default=
""/>
21747 <param name=
"client" type=
"String" default=
"wxPyART_OTHER"/>
21748 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
21751 <method name=
"Destroy" type=
"" overloaded=
"no">
21752 <autodoc>Destroy()
</autodoc>
21756 #---------------------------------------------------------------------------
21758 <class name=
"ConfigBase" oldname=
"wxConfigBase" module=
"misc">
21759 <docstring>wx.ConfigBase class defines the basic interface of all config
21760 classes. It can not be used by itself (it is an abstract base
21761 class) and you will always use one of its derivations: wx.Config
21764 wx.ConfigBase organizes the items in a tree-like structure,
21765 modeled after the Unix/Dos filesystem. There are groups that act
21766 like directories and entries, key/value pairs that act like
21767 files. There is always one current group given by the current
21768 path. As in the file system case, to specify a key in the config
21769 class you must use a path to it. Config classes also support the
21770 notion of the current group, which makes it possible to use
21773 Keys are pairs "key_name = value" where value may be of string,
21774 integer floating point or boolean, you can not store binary data
21775 without first encoding it as a string. For performance reasons
21776 items should be kept small, no more than a couple kilobytes.
21778 <destructor name=
"~wxConfigBase" overloaded=
"no">
21779 <autodoc>__del__()
</autodoc>
21781 <staticmethod name=
"Set" type=
"ConfigBase" overloaded=
"no">
21782 <autodoc>Set(ConfigBase config) -
> ConfigBase
</autodoc>
21783 <docstring>Sets the global config object (the one returned by Get) and
21784 returns a reference to the previous global config object.
</docstring>
21786 <param name=
"config" type=
"ConfigBase" default=
""/>
21789 <staticmethod name=
"Get" type=
"ConfigBase" overloaded=
"no">
21790 <autodoc>Get(bool createOnDemand=True) -
> ConfigBase
</autodoc>
21791 <docstring>Returns the current global config object, creating one if neccessary.
</docstring>
21793 <param name=
"createOnDemand" type=
"bool" default=
"True"/>
21796 <staticmethod name=
"Create" type=
"ConfigBase" overloaded=
"no">
21797 <autodoc>Create() -
> ConfigBase
</autodoc>
21798 <docstring>Create and return a new global config object. This function will
21799 create the "best" implementation of wx.Config available for the
21800 current platform.
</docstring>
21802 <staticmethod name=
"DontCreateOnDemand" type=
"" overloaded=
"no">
21803 <autodoc>DontCreateOnDemand()
</autodoc>
21804 <docstring>Should Get() try to create a new log object if there isn't a current one?
</docstring>
21806 <method name=
"SetPath" type=
"" overloaded=
"no">
21807 <autodoc>SetPath(String path)
</autodoc>
21808 <docstring>Set current path: if the first character is '/', it's the absolute path,
21809 otherwise it's a relative path. '..' is supported. If the strPath
21810 doesn't exist it is created.
</docstring>
21812 <param name=
"path" type=
"String" default=
""/>
21815 <method name=
"GetPath" type=
"String" overloaded=
"no">
21816 <autodoc>GetPath() -
> String
</autodoc>
21817 <docstring>Retrieve the current path (always as absolute path)
</docstring>
21819 <method name=
"GetFirstGroup" type=
"PyObject" overloaded=
"no">
21820 <autodoc>GetFirstGroup() -
> (more, value, index)
</autodoc>
21821 <docstring>Allows enumerating the subgroups in a config object. Returns
21822 a tuple containing a flag indicating there are more items, the
21823 name of the current item, and an index to pass to GetNextGroup to
21824 fetch the next item.
</docstring>
21826 <method name=
"GetNextGroup" type=
"PyObject" overloaded=
"no">
21827 <autodoc>GetNextGroup(long index) -
> (more, value, index)
</autodoc>
21828 <docstring>Allows enumerating the subgroups in a config object. Returns
21829 a tuple containing a flag indicating there are more items, the
21830 name of the current item, and an index to pass to GetNextGroup to
21831 fetch the next item.
</docstring>
21833 <param name=
"index" type=
"long" default=
""/>
21836 <method name=
"GetFirstEntry" type=
"PyObject" overloaded=
"no">
21837 <autodoc>GetFirstEntry() -
> (more, value, index)
</autodoc>
21838 <docstring>Allows enumerating the entries in the current group in a config
21839 object. Returns a tuple containing a flag indicating there are
21840 more items, the name of the current item, and an index to pass to
21841 GetNextGroup to fetch the next item.
</docstring>
21843 <method name=
"GetNextEntry" type=
"PyObject" overloaded=
"no">
21844 <autodoc>GetNextEntry(long index) -
> (more, value, index)
</autodoc>
21845 <docstring>Allows enumerating the entries in the current group in a config
21846 object. Returns a tuple containing a flag indicating there are
21847 more items, the name of the current item, and an index to pass to
21848 GetNextGroup to fetch the next item.
</docstring>
21850 <param name=
"index" type=
"long" default=
""/>
21853 <method name=
"GetNumberOfEntries" type=
"size_t" overloaded=
"no">
21854 <autodoc>GetNumberOfEntries(bool recursive=False) -
> size_t
</autodoc>
21855 <docstring>Get the number of entries in the current group, with or
21856 without its subgroups.
</docstring>
21858 <param name=
"recursive" type=
"bool" default=
"False"/>
21861 <method name=
"GetNumberOfGroups" type=
"size_t" overloaded=
"no">
21862 <autodoc>GetNumberOfGroups(bool recursive=False) -
> size_t
</autodoc>
21863 <docstring>Get the number of subgroups in the current group, with or
21864 without its subgroups.
</docstring>
21866 <param name=
"recursive" type=
"bool" default=
"False"/>
21869 <method name=
"HasGroup" type=
"bool" overloaded=
"no">
21870 <autodoc>HasGroup(String name) -
> bool
</autodoc>
21871 <docstring>Returns True if the group by this name exists
</docstring>
21873 <param name=
"name" type=
"String" default=
""/>
21876 <method name=
"HasEntry" type=
"bool" overloaded=
"no">
21877 <autodoc>HasEntry(String name) -
> bool
</autodoc>
21878 <docstring>Returns True if the entry by this name exists
</docstring>
21880 <param name=
"name" type=
"String" default=
""/>
21883 <method name=
"Exists" type=
"bool" overloaded=
"no">
21884 <autodoc>Exists(String name) -
> bool
</autodoc>
21885 <docstring>Returns True if either a group or an entry with a given name exists
</docstring>
21887 <param name=
"name" type=
"String" default=
""/>
21890 <method name=
"GetEntryType" type=
"wxConfigBase::EntryType" overloaded=
"no">
21891 <autodoc>GetEntryType(String name) -
> int
</autodoc>
21892 <docstring>Get the type of the entry. Returns one of the wx.Config.Type_XXX values.
</docstring>
21894 <param name=
"name" type=
"String" default=
""/>
21897 <method name=
"Read" type=
"String" overloaded=
"no">
21898 <autodoc>Read(String key, String defaultVal=EmptyString) -
> String
</autodoc>
21899 <docstring>Returns the value of key if it exists, defaultVal otherwise.
</docstring>
21901 <param name=
"key" type=
"String" default=
""/>
21902 <param name=
"defaultVal" type=
"String" default=
"wxPyEmptyString"/>
21905 <method name=
"ReadInt" type=
"long" overloaded=
"no">
21906 <autodoc>ReadInt(String key, long defaultVal=
0) -
> long
</autodoc>
21907 <docstring>Returns the value of key if it exists, defaultVal otherwise.
</docstring>
21909 <param name=
"key" type=
"String" default=
""/>
21910 <param name=
"defaultVal" type=
"long" default=
"0"/>
21913 <method name=
"ReadFloat" type=
"double" overloaded=
"no">
21914 <autodoc>ReadFloat(String key, double defaultVal=
0.0) -
> double
</autodoc>
21915 <docstring>Returns the value of key if it exists, defaultVal otherwise.
</docstring>
21917 <param name=
"key" type=
"String" default=
""/>
21918 <param name=
"defaultVal" type=
"double" default=
"0.0"/>
21921 <method name=
"ReadBool" type=
"bool" overloaded=
"no">
21922 <autodoc>ReadBool(String key, bool defaultVal=False) -
> bool
</autodoc>
21923 <docstring>Returns the value of key if it exists, defaultVal otherwise.
</docstring>
21925 <param name=
"key" type=
"String" default=
""/>
21926 <param name=
"defaultVal" type=
"bool" default=
"False"/>
21929 <method name=
"Write" type=
"bool" overloaded=
"no">
21930 <autodoc>Write(String key, String value) -
> bool
</autodoc>
21931 <docstring>write the value (return True on success)
</docstring>
21933 <param name=
"key" type=
"String" default=
""/>
21934 <param name=
"value" type=
"String" default=
""/>
21937 <method name=
"WriteInt" type=
"bool" overloaded=
"no">
21938 <autodoc>WriteInt(String key, long value) -
> bool
</autodoc>
21939 <docstring>write the value (return True on success)
</docstring>
21941 <param name=
"key" type=
"String" default=
""/>
21942 <param name=
"value" type=
"long" default=
""/>
21945 <method name=
"WriteFloat" type=
"bool" overloaded=
"no">
21946 <autodoc>WriteFloat(String key, double value) -
> bool
</autodoc>
21947 <docstring>write the value (return True on success)
</docstring>
21949 <param name=
"key" type=
"String" default=
""/>
21950 <param name=
"value" type=
"double" default=
""/>
21953 <method name=
"WriteBool" type=
"bool" overloaded=
"no">
21954 <autodoc>WriteBool(String key, bool value) -
> bool
</autodoc>
21955 <docstring>write the value (return True on success)
</docstring>
21957 <param name=
"key" type=
"String" default=
""/>
21958 <param name=
"value" type=
"bool" default=
""/>
21961 <method name=
"Flush" type=
"bool" overloaded=
"no">
21962 <autodoc>Flush(bool currentOnly=False) -
> bool
</autodoc>
21963 <docstring>permanently writes all changes
</docstring>
21965 <param name=
"currentOnly" type=
"bool" default=
"False"/>
21968 <method name=
"RenameEntry" type=
"bool" overloaded=
"no">
21969 <autodoc>RenameEntry(String oldName, String newName) -
> bool
</autodoc>
21970 <docstring>Rename an entry. Returns False on failure (probably because the new
21971 name is already taken by an existing entry)
</docstring>
21973 <param name=
"oldName" type=
"String" default=
""/>
21974 <param name=
"newName" type=
"String" default=
""/>
21977 <method name=
"RenameGroup" type=
"bool" overloaded=
"no">
21978 <autodoc>RenameGroup(String oldName, String newName) -
> bool
</autodoc>
21979 <docstring>Rename aa group. Returns False on failure (probably because the new
21980 name is already taken by an existing entry)
</docstring>
21982 <param name=
"oldName" type=
"String" default=
""/>
21983 <param name=
"newName" type=
"String" default=
""/>
21986 <method name=
"DeleteEntry" type=
"bool" overloaded=
"no">
21987 <autodoc>DeleteEntry(String key, bool deleteGroupIfEmpty=True) -
> bool
</autodoc>
21988 <docstring>Deletes the specified entry and the group it belongs to if
21989 it was the last key in it and the second parameter is True
</docstring>
21991 <param name=
"key" type=
"String" default=
""/>
21992 <param name=
"deleteGroupIfEmpty" type=
"bool" default=
"True"/>
21995 <method name=
"DeleteGroup" type=
"bool" overloaded=
"no">
21996 <autodoc>DeleteGroup(String key) -
> bool
</autodoc>
21997 <docstring>Delete the group (with all subgroups)
</docstring>
21999 <param name=
"key" type=
"String" default=
""/>
22002 <method name=
"DeleteAll" type=
"bool" overloaded=
"no">
22003 <autodoc>DeleteAll() -
> bool
</autodoc>
22004 <docstring>Delete the whole underlying object (disk file, registry key, ...)
22005 primarly intended for use by desinstallation routine.
</docstring>
22007 <method name=
"SetExpandEnvVars" type=
"" overloaded=
"no">
22008 <autodoc>SetExpandEnvVars(bool doIt=True)
</autodoc>
22009 <docstring>We can automatically expand environment variables in the config entries
22010 (this option is on by default, you can turn it on/off at any time)
</docstring>
22012 <param name=
"doIt" type=
"bool" default=
"True"/>
22015 <method name=
"IsExpandingEnvVars" type=
"bool" overloaded=
"no">
22016 <autodoc>IsExpandingEnvVars() -
> bool
</autodoc>
22017 <docstring>Are we currently expanding environment variables?
</docstring>
22019 <method name=
"SetRecordDefaults" type=
"" overloaded=
"no">
22020 <autodoc>SetRecordDefaults(bool doIt=True)
</autodoc>
22021 <docstring>Set whether the config objec should record default values.
</docstring>
22023 <param name=
"doIt" type=
"bool" default=
"True"/>
22026 <method name=
"IsRecordingDefaults" type=
"bool" overloaded=
"no">
22027 <autodoc>IsRecordingDefaults() -
> bool
</autodoc>
22028 <docstring>Are we currently recording default values?
</docstring>
22030 <method name=
"ExpandEnvVars" type=
"String" overloaded=
"no">
22031 <autodoc>ExpandEnvVars(String str) -
> String
</autodoc>
22032 <docstring>Expand any environment variables in str and return the result
</docstring>
22034 <param name=
"str" type=
"String" default=
""/>
22037 <method name=
"GetAppName" type=
"String" overloaded=
"no">
22038 <autodoc>GetAppName() -
> String
</autodoc>
22040 <method name=
"GetVendorName" type=
"String" overloaded=
"no">
22041 <autodoc>GetVendorName() -
> String
</autodoc>
22043 <method name=
"SetAppName" type=
"" overloaded=
"no">
22044 <autodoc>SetAppName(String appName)
</autodoc>
22046 <param name=
"appName" type=
"String" default=
""/>
22049 <method name=
"SetVendorName" type=
"" overloaded=
"no">
22050 <autodoc>SetVendorName(String vendorName)
</autodoc>
22052 <param name=
"vendorName" type=
"String" default=
""/>
22055 <method name=
"SetStyle" type=
"" overloaded=
"no">
22056 <autodoc>SetStyle(long style)
</autodoc>
22058 <param name=
"style" type=
"long" default=
""/>
22061 <method name=
"GetStyle" type=
"long" overloaded=
"no">
22062 <autodoc>GetStyle() -
> long
</autodoc>
22065 <class name=
"Config" oldname=
"wxConfig" module=
"misc">
22066 <docstring>This ConfigBase-derived class will use the registry on Windows,
22067 and will be a wx.FileConfig on other platforms.
</docstring>
22068 <baseclass name=
"ConfigBase"/>
22069 <constructor name=
"Config" overloaded=
"no">
22070 <autodoc>__init__(String appName=EmptyString, String vendorName=EmptyString,
22071 String localFilename=EmptyString, String globalFilename=EmptyString,
22072 long style=
0) -
> Config
</autodoc>
22074 <param name=
"appName" type=
"String" default=
"wxPyEmptyString"/>
22075 <param name=
"vendorName" type=
"String" default=
"wxPyEmptyString"/>
22076 <param name=
"localFilename" type=
"String" default=
"wxPyEmptyString"/>
22077 <param name=
"globalFilename" type=
"String" default=
"wxPyEmptyString"/>
22078 <param name=
"style" type=
"long" default=
"0"/>
22081 <destructor name=
"~wxConfig" overloaded=
"no">
22082 <autodoc>__del__()
</autodoc>
22085 <class name=
"FileConfig" oldname=
"wxFileConfig" module=
"misc">
22086 <docstring>This config class will use a file for storage on all platforms.
</docstring>
22087 <baseclass name=
"ConfigBase"/>
22088 <constructor name=
"FileConfig" overloaded=
"no">
22089 <autodoc>__init__(String appName=EmptyString, String vendorName=EmptyString,
22090 String localFilename=EmptyString, String globalFilename=EmptyString,
22091 long style=wxCONFIG_USE_LOCAL_FILE|wxCONFIG_USE_GLOBAL_FILE) -
> FileConfig
</autodoc>
22093 <param name=
"appName" type=
"String" default=
"wxPyEmptyString"/>
22094 <param name=
"vendorName" type=
"String" default=
"wxPyEmptyString"/>
22095 <param name=
"localFilename" type=
"String" default=
"wxPyEmptyString"/>
22096 <param name=
"globalFilename" type=
"String" default=
"wxPyEmptyString"/>
22097 <param name=
"style" type=
"long" default=
"wxCONFIG_USE_LOCAL_FILE|wxCONFIG_USE_GLOBAL_FILE"/>
22100 <destructor name=
"~wxFileConfig" overloaded=
"no">
22101 <autodoc>__del__()
</autodoc>
22104 <class name=
"ConfigPathChanger" oldname=
"wxConfigPathChanger" module=
"misc">
22105 <docstring>A handy little class which changes current path to the path of
22106 given entry and restores it in the destructoir: so if you declare
22107 a local variable of this type, you work in the entry directory
22108 and the path is automatically restored when the function returns.
</docstring>
22109 <constructor name=
"ConfigPathChanger" overloaded=
"no">
22110 <autodoc>__init__(ConfigBase config, String entry) -
> ConfigPathChanger
</autodoc>
22112 <param name=
"config" type=
"ConfigBase" default=
""/>
22113 <param name=
"entry" type=
"String" default=
""/>
22116 <destructor name=
"~wxConfigPathChanger" overloaded=
"no">
22117 <autodoc>__del__()
</autodoc>
22119 <method name=
"Name" type=
"String" overloaded=
"no">
22120 <autodoc>Name() -
> String
</autodoc>
22121 <docstring>Get the key name
</docstring>
22124 <method name=
"ExpandEnvVars" oldname=
"wxExpandEnvVars" type=
"String" overloaded=
"no">
22125 <autodoc>ExpandEnvVars(String sz) -
> String
</autodoc>
22126 <docstring>Replace environment variables ($SOMETHING) with their values. The
22127 format is $VARNAME or ${VARNAME} where VARNAME contains
22128 alphanumeric characters and '_' only. '$' must be escaped ('\\$')
22129 in order to be taken literally.
</docstring>
22131 <param name=
"sz" type=
"String" default=
""/>
22135 #---------------------------------------------------------------------------
22137 <class name=
"DateTime" oldname=
"wxDateTime" module=
"misc">
22138 <constructor name=
"DateTime" overloaded=
"no">
22139 <autodoc>__init__() -
> DateTime
</autodoc>
22141 <constructor name=
"DateTimeFromTimeT" overloaded=
"no">
22142 <autodoc>DateTimeFromTimeT(time_t timet) -
> DateTime
</autodoc>
22144 <param name=
"timet" type=
"time_t" default=
""/>
22147 <constructor name=
"DateTimeFromJDN" overloaded=
"no">
22148 <autodoc>DateTimeFromJDN(double jdn) -
> DateTime
</autodoc>
22150 <param name=
"jdn" type=
"double" default=
""/>
22153 <constructor name=
"DateTimeFromHMS" overloaded=
"no">
22154 <autodoc>DateTimeFromHMS(int hour, int minute=
0, int second=
0, int millisec=
0) -
> DateTime
</autodoc>
22156 <param name=
"hour" type=
"int" default=
""/>
22157 <param name=
"minute" type=
"int" default=
"0"/>
22158 <param name=
"second" type=
"int" default=
"0"/>
22159 <param name=
"millisec" type=
"int" default=
"0"/>
22162 <constructor name=
"DateTimeFromDMY" overloaded=
"no">
22163 <autodoc>DateTimeFromDMY(int day, int month=Inv_Month, int year=Inv_Year, int hour=
0,
22164 int minute=
0, int second=
0, int millisec=
0) -
> DateTime
</autodoc>
22166 <param name=
"day" type=
"int" default=
""/>
22167 <param name=
"month" type=
"wxDateTime::Month" default=
"wxDateTime::Inv_Month"/>
22168 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
22169 <param name=
"hour" type=
"int" default=
"0"/>
22170 <param name=
"minute" type=
"int" default=
"0"/>
22171 <param name=
"second" type=
"int" default=
"0"/>
22172 <param name=
"millisec" type=
"int" default=
"0"/>
22175 <destructor name=
"~wxDateTime" overloaded=
"no">
22176 <autodoc>__del__()
</autodoc>
22178 <staticmethod name=
"SetCountry" type=
"" overloaded=
"no">
22179 <autodoc>SetCountry(int country)
</autodoc>
22181 <param name=
"country" type=
"wxDateTime::Country" default=
""/>
22184 <staticmethod name=
"GetCountry" type=
"wxDateTime::Country" overloaded=
"no">
22185 <autodoc>GetCountry() -
> int
</autodoc>
22187 <staticmethod name=
"IsWestEuropeanCountry" type=
"bool" overloaded=
"no">
22188 <autodoc>IsWestEuropeanCountry(int country=Country_Default) -
> bool
</autodoc>
22190 <param name=
"country" type=
"wxDateTime::Country" default=
"wxDateTime::Country_Default"/>
22193 <staticmethod name=
"GetCurrentYear" type=
"int" overloaded=
"no">
22194 <autodoc>GetCurrentYear(int cal=Gregorian) -
> int
</autodoc>
22196 <param name=
"cal" type=
"wxDateTime::Calendar" default=
"wxDateTime::Gregorian"/>
22199 <staticmethod name=
"ConvertYearToBC" type=
"int" overloaded=
"no">
22200 <autodoc>ConvertYearToBC(int year) -
> int
</autodoc>
22202 <param name=
"year" type=
"int" default=
""/>
22205 <staticmethod name=
"GetCurrentMonth" type=
"wxDateTime::Month" overloaded=
"no">
22206 <autodoc>GetCurrentMonth(int cal=Gregorian) -
> int
</autodoc>
22208 <param name=
"cal" type=
"wxDateTime::Calendar" default=
"wxDateTime::Gregorian"/>
22211 <staticmethod name=
"IsLeapYear" type=
"bool" overloaded=
"no">
22212 <autodoc>IsLeapYear(int year=Inv_Year, int cal=Gregorian) -
> bool
</autodoc>
22214 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
22215 <param name=
"cal" type=
"wxDateTime::Calendar" default=
"wxDateTime::Gregorian"/>
22218 <staticmethod name=
"GetCentury" type=
"int" overloaded=
"no">
22219 <autodoc>GetCentury(int year=Inv_Year) -
> int
</autodoc>
22221 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
22224 <staticmethod name=
"GetNumberOfDaysinYear" type=
"int" overloaded=
"no">
22225 <autodoc>GetNumberOfDaysinYear(int year, int cal=Gregorian) -
> int
</autodoc>
22227 <param name=
"year" type=
"int" default=
""/>
22228 <param name=
"cal" type=
"wxDateTime::Calendar" default=
"wxDateTime::Gregorian"/>
22231 <staticmethod name=
"GetNumberOfDaysInMonth" type=
"int" overloaded=
"no">
22232 <autodoc>GetNumberOfDaysInMonth(int month, int year=Inv_Year, int cal=Gregorian) -
> int
</autodoc>
22234 <param name=
"month" type=
"wxDateTime::Month" default=
""/>
22235 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
22236 <param name=
"cal" type=
"wxDateTime::Calendar" default=
"wxDateTime::Gregorian"/>
22239 <staticmethod name=
"GetMonthName" type=
"String" overloaded=
"no">
22240 <autodoc>GetMonthName(int month, int flags=Name_Full) -
> String
</autodoc>
22242 <param name=
"month" type=
"wxDateTime::Month" default=
""/>
22243 <param name=
"flags" type=
"wxDateTime::NameFlags" default=
"wxDateTime::Name_Full"/>
22246 <staticmethod name=
"GetWeekDayName" type=
"String" overloaded=
"no">
22247 <autodoc>GetWeekDayName(int weekday, int flags=Name_Full) -
> String
</autodoc>
22249 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/>
22250 <param name=
"flags" type=
"wxDateTime::NameFlags" default=
"wxDateTime::Name_Full"/>
22253 <staticmethod name=
"GetAmPmStrings" type=
"" overloaded=
"no">
22254 <autodoc>GetAmPmStrings() -
> (am, pm)
</autodoc>
22255 <docstring>Get the AM and PM strings in the current locale (may be empty)
</docstring>
22257 <param name=
"OUTPUT" type=
"String" default=
""/>
22258 <param name=
"OUTPUT" type=
"String" default=
""/>
22261 <staticmethod name=
"IsDSTApplicable" type=
"bool" overloaded=
"no">
22262 <autodoc>IsDSTApplicable(int year=Inv_Year, int country=Country_Default) -
> bool
</autodoc>
22264 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
22265 <param name=
"country" type=
"wxDateTime::Country" default=
"wxDateTime::Country_Default"/>
22268 <staticmethod name=
"GetBeginDST" type=
"DateTime" overloaded=
"no">
22269 <autodoc>GetBeginDST(int year=Inv_Year, int country=Country_Default) -
> DateTime
</autodoc>
22271 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
22272 <param name=
"country" type=
"wxDateTime::Country" default=
"wxDateTime::Country_Default"/>
22275 <staticmethod name=
"GetEndDST" type=
"DateTime" overloaded=
"no">
22276 <autodoc>GetEndDST(int year=Inv_Year, int country=Country_Default) -
> DateTime
</autodoc>
22278 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
22279 <param name=
"country" type=
"wxDateTime::Country" default=
"wxDateTime::Country_Default"/>
22282 <staticmethod name=
"Now" type=
"DateTime" overloaded=
"no">
22283 <autodoc>Now() -
> DateTime
</autodoc>
22285 <staticmethod name=
"UNow" type=
"DateTime" overloaded=
"no">
22286 <autodoc>UNow() -
> DateTime
</autodoc>
22288 <staticmethod name=
"Today" type=
"DateTime" overloaded=
"no">
22289 <autodoc>Today() -
> DateTime
</autodoc>
22291 <method name=
"SetToCurrent" type=
"DateTime" overloaded=
"no">
22292 <autodoc>SetToCurrent() -
> DateTime
</autodoc>
22294 <method name=
"SetTimeT" type=
"DateTime" overloaded=
"no">
22295 <autodoc>SetTimeT(time_t timet) -
> DateTime
</autodoc>
22297 <param name=
"timet" type=
"time_t" default=
""/>
22300 <method name=
"SetJDN" type=
"DateTime" overloaded=
"no">
22301 <autodoc>SetJDN(double jdn) -
> DateTime
</autodoc>
22303 <param name=
"jdn" type=
"double" default=
""/>
22306 <method name=
"SetHMS" type=
"DateTime" overloaded=
"no">
22307 <autodoc>SetHMS(int hour, int minute=
0, int second=
0, int millisec=
0) -
> DateTime
</autodoc>
22309 <param name=
"hour" type=
"int" default=
""/>
22310 <param name=
"minute" type=
"int" default=
"0"/>
22311 <param name=
"second" type=
"int" default=
"0"/>
22312 <param name=
"millisec" type=
"int" default=
"0"/>
22315 <method name=
"Set" type=
"DateTime" overloaded=
"no">
22316 <autodoc>Set(int day, int month=Inv_Month, int year=Inv_Year, int hour=
0,
22317 int minute=
0, int second=
0, int millisec=
0) -
> DateTime
</autodoc>
22319 <param name=
"day" type=
"int" default=
""/>
22320 <param name=
"month" type=
"wxDateTime::Month" default=
"wxDateTime::Inv_Month"/>
22321 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
22322 <param name=
"hour" type=
"int" default=
"0"/>
22323 <param name=
"minute" type=
"int" default=
"0"/>
22324 <param name=
"second" type=
"int" default=
"0"/>
22325 <param name=
"millisec" type=
"int" default=
"0"/>
22328 <method name=
"ResetTime" type=
"DateTime" overloaded=
"no">
22329 <autodoc>ResetTime() -
> DateTime
</autodoc>
22331 <method name=
"SetYear" type=
"DateTime" overloaded=
"no">
22332 <autodoc>SetYear(int year) -
> DateTime
</autodoc>
22334 <param name=
"year" type=
"int" default=
""/>
22337 <method name=
"SetMonth" type=
"DateTime" overloaded=
"no">
22338 <autodoc>SetMonth(int month) -
> DateTime
</autodoc>
22340 <param name=
"month" type=
"wxDateTime::Month" default=
""/>
22343 <method name=
"SetDay" type=
"DateTime" overloaded=
"no">
22344 <autodoc>SetDay(int day) -
> DateTime
</autodoc>
22346 <param name=
"day" type=
"int" default=
""/>
22349 <method name=
"SetHour" type=
"DateTime" overloaded=
"no">
22350 <autodoc>SetHour(int hour) -
> DateTime
</autodoc>
22352 <param name=
"hour" type=
"int" default=
""/>
22355 <method name=
"SetMinute" type=
"DateTime" overloaded=
"no">
22356 <autodoc>SetMinute(int minute) -
> DateTime
</autodoc>
22358 <param name=
"minute" type=
"int" default=
""/>
22361 <method name=
"SetSecond" type=
"DateTime" overloaded=
"no">
22362 <autodoc>SetSecond(int second) -
> DateTime
</autodoc>
22364 <param name=
"second" type=
"int" default=
""/>
22367 <method name=
"SetMillisecond" type=
"DateTime" overloaded=
"no">
22368 <autodoc>SetMillisecond(int millisecond) -
> DateTime
</autodoc>
22370 <param name=
"millisecond" type=
"int" default=
""/>
22373 <method name=
"SetToWeekDayInSameWeek" type=
"DateTime" overloaded=
"no">
22374 <autodoc>SetToWeekDayInSameWeek(int weekday, int flags=Monday_First) -
> DateTime
</autodoc>
22376 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/>
22377 <param name=
"flags" type=
"wxDateTime::WeekFlags" default=
"wxDateTime::Monday_First"/>
22380 <method name=
"GetWeekDayInSameWeek" type=
"DateTime" overloaded=
"no">
22381 <autodoc>GetWeekDayInSameWeek(int weekday, int flags=Monday_First) -
> DateTime
</autodoc>
22383 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/>
22384 <param name=
"flags" type=
"wxDateTime::WeekFlags" default=
"wxDateTime::Monday_First"/>
22387 <method name=
"SetToNextWeekDay" type=
"DateTime" overloaded=
"no">
22388 <autodoc>SetToNextWeekDay(int weekday) -
> DateTime
</autodoc>
22390 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/>
22393 <method name=
"GetNextWeekDay" type=
"DateTime" overloaded=
"no">
22394 <autodoc>GetNextWeekDay(int weekday) -
> DateTime
</autodoc>
22396 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/>
22399 <method name=
"SetToPrevWeekDay" type=
"DateTime" overloaded=
"no">
22400 <autodoc>SetToPrevWeekDay(int weekday) -
> DateTime
</autodoc>
22402 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/>
22405 <method name=
"GetPrevWeekDay" type=
"DateTime" overloaded=
"no">
22406 <autodoc>GetPrevWeekDay(int weekday) -
> DateTime
</autodoc>
22408 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/>
22411 <method name=
"SetToWeekDay" type=
"bool" overloaded=
"no">
22412 <autodoc>SetToWeekDay(int weekday, int n=
1, int month=Inv_Month, int year=Inv_Year) -
> bool
</autodoc>
22414 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/>
22415 <param name=
"n" type=
"int" default=
"1"/>
22416 <param name=
"month" type=
"wxDateTime::Month" default=
"wxDateTime::Inv_Month"/>
22417 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
22420 <method name=
"SetToLastWeekDay" type=
"bool" overloaded=
"no">
22421 <autodoc>SetToLastWeekDay(int weekday, int month=Inv_Month, int year=Inv_Year) -
> bool
</autodoc>
22423 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/>
22424 <param name=
"month" type=
"wxDateTime::Month" default=
"wxDateTime::Inv_Month"/>
22425 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
22428 <method name=
"GetLastWeekDay" type=
"DateTime" overloaded=
"no">
22429 <autodoc>GetLastWeekDay(int weekday, int month=Inv_Month, int year=Inv_Year) -
> DateTime
</autodoc>
22431 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/>
22432 <param name=
"month" type=
"wxDateTime::Month" default=
"wxDateTime::Inv_Month"/>
22433 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
22436 <method name=
"SetToTheWeek" type=
"bool" overloaded=
"no">
22437 <autodoc>SetToTheWeek(int numWeek, int weekday=Mon, int flags=Monday_First) -
> bool
</autodoc>
22439 <param name=
"numWeek" type=
"int" default=
""/>
22440 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
"wxDateTime::Mon"/>
22441 <param name=
"flags" type=
"wxDateTime::WeekFlags" default=
"wxDateTime::Monday_First"/>
22444 <method name=
"GetWeek" type=
"DateTime" overloaded=
"no">
22445 <autodoc>GetWeek(int numWeek, int weekday=Mon, int flags=Monday_First) -
> DateTime
</autodoc>
22447 <param name=
"numWeek" type=
"int" default=
""/>
22448 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
"wxDateTime::Mon"/>
22449 <param name=
"flags" type=
"wxDateTime::WeekFlags" default=
"wxDateTime::Monday_First"/>
22452 <method name=
"SetToLastMonthDay" type=
"DateTime" overloaded=
"no">
22453 <autodoc>SetToLastMonthDay(int month=Inv_Month, int year=Inv_Year) -
> DateTime
</autodoc>
22455 <param name=
"month" type=
"wxDateTime::Month" default=
"wxDateTime::Inv_Month"/>
22456 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
22459 <method name=
"GetLastMonthDay" type=
"DateTime" overloaded=
"no">
22460 <autodoc>GetLastMonthDay(int month=Inv_Month, int year=Inv_Year) -
> DateTime
</autodoc>
22462 <param name=
"month" type=
"wxDateTime::Month" default=
"wxDateTime::Inv_Month"/>
22463 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
22466 <method name=
"SetToYearDay" type=
"DateTime" overloaded=
"no">
22467 <autodoc>SetToYearDay(int yday) -
> DateTime
</autodoc>
22469 <param name=
"yday" type=
"int" default=
""/>
22472 <method name=
"GetYearDay" type=
"DateTime" overloaded=
"no">
22473 <autodoc>GetYearDay(int yday) -
> DateTime
</autodoc>
22475 <param name=
"yday" type=
"int" default=
""/>
22478 <method name=
"GetJulianDayNumber" type=
"double" overloaded=
"no">
22479 <autodoc>GetJulianDayNumber() -
> double
</autodoc>
22481 <method name=
"GetJDN" type=
"double" overloaded=
"no">
22482 <autodoc>GetJDN() -
> double
</autodoc>
22484 <method name=
"GetModifiedJulianDayNumber" type=
"double" overloaded=
"no">
22485 <autodoc>GetModifiedJulianDayNumber() -
> double
</autodoc>
22487 <method name=
"GetMJD" type=
"double" overloaded=
"no">
22488 <autodoc>GetMJD() -
> double
</autodoc>
22490 <method name=
"GetRataDie" type=
"double" overloaded=
"no">
22491 <autodoc>GetRataDie() -
> double
</autodoc>
22493 <method name=
"ToTimezone" type=
"DateTime" overloaded=
"no">
22494 <autodoc>ToTimezone(wxDateTime::TimeZone tz, bool noDST=False) -
> DateTime
</autodoc>
22496 <param name=
"tz" type=
"wxDateTime::TimeZone" default=
""/>
22497 <param name=
"noDST" type=
"bool" default=
"False"/>
22500 <method name=
"MakeTimezone" type=
"DateTime" overloaded=
"no">
22501 <autodoc>MakeTimezone(wxDateTime::TimeZone tz, bool noDST=False) -
> DateTime
</autodoc>
22503 <param name=
"tz" type=
"wxDateTime::TimeZone" default=
""/>
22504 <param name=
"noDST" type=
"bool" default=
"False"/>
22507 <method name=
"ToGMT" type=
"DateTime" overloaded=
"no">
22508 <autodoc>ToGMT(bool noDST=False) -
> DateTime
</autodoc>
22510 <param name=
"noDST" type=
"bool" default=
"False"/>
22513 <method name=
"MakeGMT" type=
"DateTime" overloaded=
"no">
22514 <autodoc>MakeGMT(bool noDST=False) -
> DateTime
</autodoc>
22516 <param name=
"noDST" type=
"bool" default=
"False"/>
22519 <method name=
"IsDST" type=
"int" overloaded=
"no">
22520 <autodoc>IsDST(int country=Country_Default) -
> int
</autodoc>
22522 <param name=
"country" type=
"wxDateTime::Country" default=
"wxDateTime::Country_Default"/>
22525 <method name=
"IsValid" type=
"bool" overloaded=
"no">
22526 <autodoc>IsValid() -
> bool
</autodoc>
22528 <method name=
"GetTicks" type=
"time_t" overloaded=
"no">
22529 <autodoc>GetTicks() -
> time_t
</autodoc>
22531 <method name=
"GetYear" type=
"int" overloaded=
"no">
22532 <autodoc>GetYear(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc>
22534 <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
22537 <method name=
"GetMonth" type=
"wxDateTime::Month" overloaded=
"no">
22538 <autodoc>GetMonth(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc>
22540 <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
22543 <method name=
"GetDay" type=
"int" overloaded=
"no">
22544 <autodoc>GetDay(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc>
22546 <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
22549 <method name=
"GetWeekDay" type=
"wxDateTime::WeekDay" overloaded=
"no">
22550 <autodoc>GetWeekDay(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc>
22552 <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
22555 <method name=
"GetHour" type=
"int" overloaded=
"no">
22556 <autodoc>GetHour(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc>
22558 <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
22561 <method name=
"GetMinute" type=
"int" overloaded=
"no">
22562 <autodoc>GetMinute(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc>
22564 <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
22567 <method name=
"GetSecond" type=
"int" overloaded=
"no">
22568 <autodoc>GetSecond(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc>
22570 <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
22573 <method name=
"GetMillisecond" type=
"int" overloaded=
"no">
22574 <autodoc>GetMillisecond(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc>
22576 <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
22579 <method name=
"GetDayOfYear" type=
"int" overloaded=
"no">
22580 <autodoc>GetDayOfYear(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc>
22582 <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
22585 <method name=
"GetWeekOfYear" type=
"int" overloaded=
"no">
22586 <autodoc>GetWeekOfYear(int flags=Monday_First, wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc>
22588 <param name=
"flags" type=
"wxDateTime::WeekFlags" default=
"wxDateTime::Monday_First"/>
22589 <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
22592 <method name=
"GetWeekOfMonth" type=
"int" overloaded=
"no">
22593 <autodoc>GetWeekOfMonth(int flags=Monday_First, wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc>
22595 <param name=
"flags" type=
"wxDateTime::WeekFlags" default=
"wxDateTime::Monday_First"/>
22596 <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
22599 <method name=
"IsWorkDay" type=
"bool" overloaded=
"no">
22600 <autodoc>IsWorkDay(int country=Country_Default) -
> bool
</autodoc>
22602 <param name=
"country" type=
"wxDateTime::Country" default=
"wxDateTime::Country_Default"/>
22605 <method name=
"IsEqualTo" type=
"bool" overloaded=
"no">
22606 <autodoc>IsEqualTo(DateTime datetime) -
> bool
</autodoc>
22608 <param name=
"datetime" type=
"DateTime" default=
""/>
22611 <method name=
"IsEarlierThan" type=
"bool" overloaded=
"no">
22612 <autodoc>IsEarlierThan(DateTime datetime) -
> bool
</autodoc>
22614 <param name=
"datetime" type=
"DateTime" default=
""/>
22617 <method name=
"IsLaterThan" type=
"bool" overloaded=
"no">
22618 <autodoc>IsLaterThan(DateTime datetime) -
> bool
</autodoc>
22620 <param name=
"datetime" type=
"DateTime" default=
""/>
22623 <method name=
"IsStrictlyBetween" type=
"bool" overloaded=
"no">
22624 <autodoc>IsStrictlyBetween(DateTime t1, DateTime t2) -
> bool
</autodoc>
22626 <param name=
"t1" type=
"DateTime" default=
""/>
22627 <param name=
"t2" type=
"DateTime" default=
""/>
22630 <method name=
"IsBetween" type=
"bool" overloaded=
"no">
22631 <autodoc>IsBetween(DateTime t1, DateTime t2) -
> bool
</autodoc>
22633 <param name=
"t1" type=
"DateTime" default=
""/>
22634 <param name=
"t2" type=
"DateTime" default=
""/>
22637 <method name=
"IsSameDate" type=
"bool" overloaded=
"no">
22638 <autodoc>IsSameDate(DateTime dt) -
> bool
</autodoc>
22640 <param name=
"dt" type=
"DateTime" default=
""/>
22643 <method name=
"IsSameTime" type=
"bool" overloaded=
"no">
22644 <autodoc>IsSameTime(DateTime dt) -
> bool
</autodoc>
22646 <param name=
"dt" type=
"DateTime" default=
""/>
22649 <method name=
"IsEqualUpTo" type=
"bool" overloaded=
"no">
22650 <autodoc>IsEqualUpTo(DateTime dt, TimeSpan ts) -
> bool
</autodoc>
22652 <param name=
"dt" type=
"DateTime" default=
""/>
22653 <param name=
"ts" type=
"wxTimeSpan" default=
""/>
22656 <method name=
"AddTS" type=
"DateTime" overloaded=
"no">
22657 <autodoc>AddTS(TimeSpan diff) -
> DateTime
</autodoc>
22659 <param name=
"diff" type=
"wxTimeSpan" default=
""/>
22662 <method name=
"AddDS" type=
"DateTime" overloaded=
"no">
22663 <autodoc>AddDS(DateSpan diff) -
> DateTime
</autodoc>
22665 <param name=
"diff" type=
"wxDateSpan" default=
""/>
22668 <method name=
"SubtractTS" type=
"DateTime" overloaded=
"no">
22669 <autodoc>SubtractTS(TimeSpan diff) -
> DateTime
</autodoc>
22671 <param name=
"diff" type=
"wxTimeSpan" default=
""/>
22674 <method name=
"SubtractDS" type=
"DateTime" overloaded=
"no">
22675 <autodoc>SubtractDS(DateSpan diff) -
> DateTime
</autodoc>
22677 <param name=
"diff" type=
"wxDateSpan" default=
""/>
22680 <method name=
"Subtract" type=
"wxTimeSpan" overloaded=
"no">
22681 <autodoc>Subtract(DateTime dt) -
> TimeSpan
</autodoc>
22683 <param name=
"dt" type=
"DateTime" default=
""/>
22686 <method name=
"__iadd__" type=
"DateTime" overloaded=
"yes">
22688 <param name=
"diff" type=
"wxTimeSpan" default=
""/>
22691 <method name=
"__iadd__" type=
"DateTime" overloaded=
"yes">
22692 <autodoc>__iadd__(TimeSpan diff) -
> DateTime
22693 __iadd__(DateSpan diff) -
> DateTime
</autodoc>
22695 <param name=
"diff" type=
"wxDateSpan" default=
""/>
22698 <method name=
"__isub__" type=
"DateTime" overloaded=
"yes">
22700 <param name=
"diff" type=
"wxTimeSpan" default=
""/>
22703 <method name=
"__isub__" type=
"DateTime" overloaded=
"yes">
22704 <autodoc>__isub__(TimeSpan diff) -
> DateTime
22705 __isub__(DateSpan diff) -
> DateTime
</autodoc>
22707 <param name=
"diff" type=
"wxDateSpan" default=
""/>
22710 <method name=
"__add__" type=
"DateTime" overloaded=
"yes">
22712 <param name=
"other" type=
"wxTimeSpan" default=
""/>
22715 <method name=
"__add__" type=
"DateTime" overloaded=
"yes">
22716 <autodoc>__add__(TimeSpan other) -
> DateTime
22717 __add__(DateSpan other) -
> DateTime
</autodoc>
22719 <param name=
"other" type=
"wxDateSpan" default=
""/>
22722 <method name=
"__sub__" type=
"wxTimeSpan" overloaded=
"yes">
22724 <param name=
"other" type=
"DateTime" default=
""/>
22727 <method name=
"__sub__" type=
"DateTime" overloaded=
"yes">
22729 <param name=
"other" type=
"wxTimeSpan" default=
""/>
22732 <method name=
"__sub__" type=
"DateTime" overloaded=
"yes">
22733 <autodoc>__sub__(DateTime other) -
> TimeSpan
22734 __sub__(TimeSpan other) -
> DateTime
22735 __sub__(DateSpan other) -
> DateTime
</autodoc>
22737 <param name=
"other" type=
"wxDateSpan" default=
""/>
22740 <method name=
"__lt__" type=
"bool" overloaded=
"no">
22741 <autodoc>__lt__(DateTime other) -
> bool
</autodoc>
22743 <param name=
"other" type=
"DateTime" default=
""/>
22746 <method name=
"__le__" type=
"bool" overloaded=
"no">
22747 <autodoc>__le__(DateTime other) -
> bool
</autodoc>
22749 <param name=
"other" type=
"DateTime" default=
""/>
22752 <method name=
"__gt__" type=
"bool" overloaded=
"no">
22753 <autodoc>__gt__(DateTime other) -
> bool
</autodoc>
22755 <param name=
"other" type=
"DateTime" default=
""/>
22758 <method name=
"__ge__" type=
"bool" overloaded=
"no">
22759 <autodoc>__ge__(DateTime other) -
> bool
</autodoc>
22761 <param name=
"other" type=
"DateTime" default=
""/>
22764 <method name=
"__eq__" type=
"bool" overloaded=
"no">
22765 <autodoc>__eq__(DateTime other) -
> bool
</autodoc>
22767 <param name=
"other" type=
"DateTime" default=
""/>
22770 <method name=
"__ne__" type=
"bool" overloaded=
"no">
22771 <autodoc>__ne__(DateTime other) -
> bool
</autodoc>
22773 <param name=
"other" type=
"DateTime" default=
""/>
22776 <method name=
"ParseRfc822Date" type=
"int" overloaded=
"no">
22777 <autodoc>ParseRfc822Date(String date) -
> int
</autodoc>
22779 <param name=
"date" type=
"String" default=
""/>
22782 <method name=
"ParseFormat" type=
"int" overloaded=
"no">
22783 <autodoc>ParseFormat(String date, String format=DateFormatStr, DateTime dateDef=DefaultDateTime) -
> int
</autodoc>
22785 <param name=
"date" type=
"String" default=
""/>
22786 <param name=
"format" type=
"String" default=
"wxPyDateFormatStr"/>
22787 <param name=
"dateDef" type=
"DateTime" default=
"wxDefaultDateTime"/>
22790 <method name=
"ParseDateTime" type=
"int" overloaded=
"no">
22791 <autodoc>ParseDateTime(String datetime) -
> int
</autodoc>
22793 <param name=
"datetime" type=
"String" default=
""/>
22796 <method name=
"ParseDate" type=
"int" overloaded=
"no">
22797 <autodoc>ParseDate(String date) -
> int
</autodoc>
22799 <param name=
"date" type=
"String" default=
""/>
22802 <method name=
"ParseTime" type=
"int" overloaded=
"no">
22803 <autodoc>ParseTime(String time) -
> int
</autodoc>
22805 <param name=
"time" type=
"String" default=
""/>
22808 <method name=
"Format" type=
"String" overloaded=
"no">
22809 <autodoc>Format(String format=DateFormatStr, wxDateTime::TimeZone tz=LOCAL_TZ) -
> String
</autodoc>
22811 <param name=
"format" type=
"String" default=
"wxPyDateFormatStr"/>
22812 <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
22815 <method name=
"FormatDate" type=
"String" overloaded=
"no">
22816 <autodoc>FormatDate() -
> String
</autodoc>
22818 <method name=
"FormatTime" type=
"String" overloaded=
"no">
22819 <autodoc>FormatTime() -
> String
</autodoc>
22821 <method name=
"FormatISODate" type=
"String" overloaded=
"no">
22822 <autodoc>FormatISODate() -
> String
</autodoc>
22824 <method name=
"FormatISOTime" type=
"String" overloaded=
"no">
22825 <autodoc>FormatISOTime() -
> String
</autodoc>
22828 <class name=
"TimeSpan" oldname=
"wxTimeSpan" module=
"misc">
22829 <constructor name=
"TimeSpan" overloaded=
"no">
22830 <autodoc>__init__(long hours=
0, long minutes=
0, long seconds=
0, long milliseconds=
0) -
> TimeSpan
</autodoc>
22832 <param name=
"hours" type=
"long" default=
"0"/>
22833 <param name=
"minutes" type=
"long" default=
"0"/>
22834 <param name=
"seconds" type=
"long" default=
"0"/>
22835 <param name=
"milliseconds" type=
"long" default=
"0"/>
22838 <destructor name=
"~wxTimeSpan" overloaded=
"no">
22839 <autodoc>__del__()
</autodoc>
22841 <staticmethod name=
"Seconds" type=
"TimeSpan" overloaded=
"no">
22842 <autodoc>Seconds(long sec) -
> TimeSpan
</autodoc>
22844 <param name=
"sec" type=
"long" default=
""/>
22847 <staticmethod name=
"Second" type=
"TimeSpan" overloaded=
"no">
22848 <autodoc>Second() -
> TimeSpan
</autodoc>
22850 <staticmethod name=
"Minutes" type=
"TimeSpan" overloaded=
"no">
22851 <autodoc>Minutes(long min) -
> TimeSpan
</autodoc>
22853 <param name=
"min" type=
"long" default=
""/>
22856 <staticmethod name=
"Minute" type=
"TimeSpan" overloaded=
"no">
22857 <autodoc>Minute() -
> TimeSpan
</autodoc>
22859 <staticmethod name=
"Hours" type=
"TimeSpan" overloaded=
"no">
22860 <autodoc>Hours(long hours) -
> TimeSpan
</autodoc>
22862 <param name=
"hours" type=
"long" default=
""/>
22865 <staticmethod name=
"Hour" type=
"TimeSpan" overloaded=
"no">
22866 <autodoc>Hour() -
> TimeSpan
</autodoc>
22868 <staticmethod name=
"Days" type=
"TimeSpan" overloaded=
"no">
22869 <autodoc>Days(long days) -
> TimeSpan
</autodoc>
22871 <param name=
"days" type=
"long" default=
""/>
22874 <staticmethod name=
"Day" type=
"TimeSpan" overloaded=
"no">
22875 <autodoc>Day() -
> TimeSpan
</autodoc>
22877 <staticmethod name=
"Weeks" type=
"TimeSpan" overloaded=
"no">
22878 <autodoc>Weeks(long days) -
> TimeSpan
</autodoc>
22880 <param name=
"days" type=
"long" default=
""/>
22883 <staticmethod name=
"Week" type=
"TimeSpan" overloaded=
"no">
22884 <autodoc>Week() -
> TimeSpan
</autodoc>
22886 <method name=
"Add" type=
"TimeSpan" overloaded=
"no">
22887 <autodoc>Add(TimeSpan diff) -
> TimeSpan
</autodoc>
22889 <param name=
"diff" type=
"TimeSpan" default=
""/>
22892 <method name=
"Subtract" type=
"TimeSpan" overloaded=
"no">
22893 <autodoc>Subtract(TimeSpan diff) -
> TimeSpan
</autodoc>
22895 <param name=
"diff" type=
"TimeSpan" default=
""/>
22898 <method name=
"Multiply" type=
"TimeSpan" overloaded=
"no">
22899 <autodoc>Multiply(int n) -
> TimeSpan
</autodoc>
22901 <param name=
"n" type=
"int" default=
""/>
22904 <method name=
"Neg" type=
"TimeSpan" overloaded=
"no">
22905 <autodoc>Neg() -
> TimeSpan
</autodoc>
22907 <method name=
"Abs" type=
"TimeSpan" overloaded=
"no">
22908 <autodoc>Abs() -
> TimeSpan
</autodoc>
22910 <method name=
"__iadd__" type=
"TimeSpan" overloaded=
"no">
22911 <autodoc>__iadd__(TimeSpan diff) -
> TimeSpan
</autodoc>
22913 <param name=
"diff" type=
"TimeSpan" default=
""/>
22916 <method name=
"__isub__" type=
"TimeSpan" overloaded=
"no">
22917 <autodoc>__isub__(TimeSpan diff) -
> TimeSpan
</autodoc>
22919 <param name=
"diff" type=
"TimeSpan" default=
""/>
22922 <method name=
"__imul__" type=
"TimeSpan" overloaded=
"no">
22923 <autodoc>__imul__(int n) -
> TimeSpan
</autodoc>
22925 <param name=
"n" type=
"int" default=
""/>
22928 <method name=
"__neg__" type=
"TimeSpan" overloaded=
"no">
22929 <autodoc>__neg__() -
> TimeSpan
</autodoc>
22931 <method name=
"__add__" type=
"TimeSpan" overloaded=
"no">
22932 <autodoc>__add__(TimeSpan other) -
> TimeSpan
</autodoc>
22934 <param name=
"other" type=
"TimeSpan" default=
""/>
22937 <method name=
"__sub__" type=
"TimeSpan" overloaded=
"no">
22938 <autodoc>__sub__(TimeSpan other) -
> TimeSpan
</autodoc>
22940 <param name=
"other" type=
"TimeSpan" default=
""/>
22943 <method name=
"__mul__" type=
"TimeSpan" overloaded=
"no">
22944 <autodoc>__mul__(int n) -
> TimeSpan
</autodoc>
22946 <param name=
"n" type=
"int" default=
""/>
22949 <method name=
"__rmul__" type=
"TimeSpan" overloaded=
"no">
22950 <autodoc>__rmul__(int n) -
> TimeSpan
</autodoc>
22952 <param name=
"n" type=
"int" default=
""/>
22955 <method name=
"__lt__" type=
"bool" overloaded=
"no">
22956 <autodoc>__lt__(TimeSpan other) -
> bool
</autodoc>
22958 <param name=
"other" type=
"TimeSpan" default=
""/>
22961 <method name=
"__le__" type=
"bool" overloaded=
"no">
22962 <autodoc>__le__(TimeSpan other) -
> bool
</autodoc>
22964 <param name=
"other" type=
"TimeSpan" default=
""/>
22967 <method name=
"__gt__" type=
"bool" overloaded=
"no">
22968 <autodoc>__gt__(TimeSpan other) -
> bool
</autodoc>
22970 <param name=
"other" type=
"TimeSpan" default=
""/>
22973 <method name=
"__ge__" type=
"bool" overloaded=
"no">
22974 <autodoc>__ge__(TimeSpan other) -
> bool
</autodoc>
22976 <param name=
"other" type=
"TimeSpan" default=
""/>
22979 <method name=
"__eq__" type=
"bool" overloaded=
"no">
22980 <autodoc>__eq__(TimeSpan other) -
> bool
</autodoc>
22982 <param name=
"other" type=
"TimeSpan" default=
""/>
22985 <method name=
"__ne__" type=
"bool" overloaded=
"no">
22986 <autodoc>__ne__(TimeSpan other) -
> bool
</autodoc>
22988 <param name=
"other" type=
"TimeSpan" default=
""/>
22991 <method name=
"IsNull" type=
"bool" overloaded=
"no">
22992 <autodoc>IsNull() -
> bool
</autodoc>
22994 <method name=
"IsPositive" type=
"bool" overloaded=
"no">
22995 <autodoc>IsPositive() -
> bool
</autodoc>
22997 <method name=
"IsNegative" type=
"bool" overloaded=
"no">
22998 <autodoc>IsNegative() -
> bool
</autodoc>
23000 <method name=
"IsEqualTo" type=
"bool" overloaded=
"no">
23001 <autodoc>IsEqualTo(TimeSpan ts) -
> bool
</autodoc>
23003 <param name=
"ts" type=
"TimeSpan" default=
""/>
23006 <method name=
"IsLongerThan" type=
"bool" overloaded=
"no">
23007 <autodoc>IsLongerThan(TimeSpan ts) -
> bool
</autodoc>
23009 <param name=
"ts" type=
"TimeSpan" default=
""/>
23012 <method name=
"IsShorterThan" type=
"bool" overloaded=
"no">
23013 <autodoc>IsShorterThan(TimeSpan t) -
> bool
</autodoc>
23015 <param name=
"t" type=
"TimeSpan" default=
""/>
23018 <method name=
"GetWeeks" type=
"int" overloaded=
"no">
23019 <autodoc>GetWeeks() -
> int
</autodoc>
23021 <method name=
"GetDays" type=
"int" overloaded=
"no">
23022 <autodoc>GetDays() -
> int
</autodoc>
23024 <method name=
"GetHours" type=
"int" overloaded=
"no">
23025 <autodoc>GetHours() -
> int
</autodoc>
23027 <method name=
"GetMinutes" type=
"int" overloaded=
"no">
23028 <autodoc>GetMinutes() -
> int
</autodoc>
23030 <method name=
"GetSeconds" type=
"wxLongLong" overloaded=
"no">
23031 <autodoc>GetSeconds() -
> wxLongLong
</autodoc>
23033 <method name=
"GetMilliseconds" type=
"wxLongLong" overloaded=
"no">
23034 <autodoc>GetMilliseconds() -
> wxLongLong
</autodoc>
23036 <method name=
"Format" type=
"String" overloaded=
"no">
23037 <autodoc>Format(String format=TimeSpanFormatStr) -
> String
</autodoc>
23039 <param name=
"format" type=
"String" default=
"wxPyTimeSpanFormatStr"/>
23043 <class name=
"DateSpan" oldname=
"wxDateSpan" module=
"misc">
23044 <constructor name=
"DateSpan" overloaded=
"no">
23045 <autodoc>__init__(int years=
0, int months=
0, int weeks=
0, int days=
0) -
> DateSpan
</autodoc>
23047 <param name=
"years" type=
"int" default=
"0"/>
23048 <param name=
"months" type=
"int" default=
"0"/>
23049 <param name=
"weeks" type=
"int" default=
"0"/>
23050 <param name=
"days" type=
"int" default=
"0"/>
23053 <destructor name=
"~wxDateSpan" overloaded=
"no">
23054 <autodoc>__del__()
</autodoc>
23056 <staticmethod name=
"Days" type=
"DateSpan" overloaded=
"no">
23057 <autodoc>Days(int days) -
> DateSpan
</autodoc>
23059 <param name=
"days" type=
"int" default=
""/>
23062 <staticmethod name=
"Day" type=
"DateSpan" overloaded=
"no">
23063 <autodoc>Day() -
> DateSpan
</autodoc>
23065 <staticmethod name=
"Weeks" type=
"DateSpan" overloaded=
"no">
23066 <autodoc>Weeks(int weeks) -
> DateSpan
</autodoc>
23068 <param name=
"weeks" type=
"int" default=
""/>
23071 <staticmethod name=
"Week" type=
"DateSpan" overloaded=
"no">
23072 <autodoc>Week() -
> DateSpan
</autodoc>
23074 <staticmethod name=
"Months" type=
"DateSpan" overloaded=
"no">
23075 <autodoc>Months(int mon) -
> DateSpan
</autodoc>
23077 <param name=
"mon" type=
"int" default=
""/>
23080 <staticmethod name=
"Month" type=
"DateSpan" overloaded=
"no">
23081 <autodoc>Month() -
> DateSpan
</autodoc>
23083 <staticmethod name=
"Years" type=
"DateSpan" overloaded=
"no">
23084 <autodoc>Years(int years) -
> DateSpan
</autodoc>
23086 <param name=
"years" type=
"int" default=
""/>
23089 <staticmethod name=
"Year" type=
"DateSpan" overloaded=
"no">
23090 <autodoc>Year() -
> DateSpan
</autodoc>
23092 <method name=
"SetYears" type=
"DateSpan" overloaded=
"no">
23093 <autodoc>SetYears(int n) -
> DateSpan
</autodoc>
23095 <param name=
"n" type=
"int" default=
""/>
23098 <method name=
"SetMonths" type=
"DateSpan" overloaded=
"no">
23099 <autodoc>SetMonths(int n) -
> DateSpan
</autodoc>
23101 <param name=
"n" type=
"int" default=
""/>
23104 <method name=
"SetWeeks" type=
"DateSpan" overloaded=
"no">
23105 <autodoc>SetWeeks(int n) -
> DateSpan
</autodoc>
23107 <param name=
"n" type=
"int" default=
""/>
23110 <method name=
"SetDays" type=
"DateSpan" overloaded=
"no">
23111 <autodoc>SetDays(int n) -
> DateSpan
</autodoc>
23113 <param name=
"n" type=
"int" default=
""/>
23116 <method name=
"GetYears" type=
"int" overloaded=
"no">
23117 <autodoc>GetYears() -
> int
</autodoc>
23119 <method name=
"GetMonths" type=
"int" overloaded=
"no">
23120 <autodoc>GetMonths() -
> int
</autodoc>
23122 <method name=
"GetWeeks" type=
"int" overloaded=
"no">
23123 <autodoc>GetWeeks() -
> int
</autodoc>
23125 <method name=
"GetDays" type=
"int" overloaded=
"no">
23126 <autodoc>GetDays() -
> int
</autodoc>
23128 <method name=
"GetTotalDays" type=
"int" overloaded=
"no">
23129 <autodoc>GetTotalDays() -
> int
</autodoc>
23131 <method name=
"Add" type=
"DateSpan" overloaded=
"no">
23132 <autodoc>Add(DateSpan other) -
> DateSpan
</autodoc>
23134 <param name=
"other" type=
"DateSpan" default=
""/>
23137 <method name=
"Subtract" type=
"DateSpan" overloaded=
"no">
23138 <autodoc>Subtract(DateSpan other) -
> DateSpan
</autodoc>
23140 <param name=
"other" type=
"DateSpan" default=
""/>
23143 <method name=
"Neg" type=
"DateSpan" overloaded=
"no">
23144 <autodoc>Neg() -
> DateSpan
</autodoc>
23146 <method name=
"Multiply" type=
"DateSpan" overloaded=
"no">
23147 <autodoc>Multiply(int factor) -
> DateSpan
</autodoc>
23149 <param name=
"factor" type=
"int" default=
""/>
23152 <method name=
"__iadd__" type=
"DateSpan" overloaded=
"no">
23153 <autodoc>__iadd__(DateSpan other) -
> DateSpan
</autodoc>
23155 <param name=
"other" type=
"DateSpan" default=
""/>
23158 <method name=
"__isub__" type=
"DateSpan" overloaded=
"no">
23159 <autodoc>__isub__(DateSpan other) -
> DateSpan
</autodoc>
23161 <param name=
"other" type=
"DateSpan" default=
""/>
23164 <method name=
"__neg__" type=
"DateSpan" overloaded=
"no">
23165 <autodoc>__neg__() -
> DateSpan
</autodoc>
23167 <method name=
"__imul__" type=
"DateSpan" overloaded=
"no">
23168 <autodoc>__imul__(int factor) -
> DateSpan
</autodoc>
23170 <param name=
"factor" type=
"int" default=
""/>
23173 <method name=
"__add__" type=
"DateSpan" overloaded=
"no">
23174 <autodoc>__add__(DateSpan other) -
> DateSpan
</autodoc>
23176 <param name=
"other" type=
"DateSpan" default=
""/>
23179 <method name=
"__sub__" type=
"DateSpan" overloaded=
"no">
23180 <autodoc>__sub__(DateSpan other) -
> DateSpan
</autodoc>
23182 <param name=
"other" type=
"DateSpan" default=
""/>
23185 <method name=
"__mul__" type=
"DateSpan" overloaded=
"no">
23186 <autodoc>__mul__(int n) -
> DateSpan
</autodoc>
23188 <param name=
"n" type=
"int" default=
""/>
23191 <method name=
"__rmul__" type=
"DateSpan" overloaded=
"no">
23192 <autodoc>__rmul__(int n) -
> DateSpan
</autodoc>
23194 <param name=
"n" type=
"int" default=
""/>
23197 <method name=
"__eq__" type=
"bool" overloaded=
"no">
23198 <autodoc>__eq__(DateSpan other) -
> bool
</autodoc>
23200 <param name=
"other" type=
"DateSpan" default=
""/>
23203 <method name=
"__ne__" type=
"bool" overloaded=
"no">
23204 <autodoc>__ne__(DateSpan other) -
> bool
</autodoc>
23206 <param name=
"other" type=
"DateSpan" default=
""/>
23210 <method name=
"GetLocalTime" oldname=
"wxGetLocalTime" type=
"long" overloaded=
"no">
23211 <autodoc>GetLocalTime() -
> long
</autodoc>
23213 <method name=
"GetUTCTime" oldname=
"wxGetUTCTime" type=
"long" overloaded=
"no">
23214 <autodoc>GetUTCTime() -
> long
</autodoc>
23216 <method name=
"GetCurrentTime" oldname=
"wxGetCurrentTime" type=
"long" overloaded=
"no">
23217 <autodoc>GetCurrentTime() -
> long
</autodoc>
23219 <method name=
"GetLocalTimeMillis" oldname=
"wxGetLocalTimeMillis" type=
"wxLongLong" overloaded=
"no">
23220 <autodoc>GetLocalTimeMillis() -
> wxLongLong
</autodoc>
23223 #---------------------------------------------------------------------------
23225 <class name=
"DataFormat" oldname=
"wxDataFormat" module=
"misc">
23226 <docstring>A wx.DataFormat is an encapsulation of a platform-specific format
23227 handle which is used by the system for the clipboard and drag and
23228 drop operations. The applications are usually only interested in,
23229 for example, pasting data from the clipboard only if the data is
23230 in a format the program understands. A data format is is used to
23231 uniquely identify this format.
23233 On the system level, a data format is usually just a number
23234 (CLIPFORMAT under Windows or Atom under X11, for example).
</docstring>
23235 <constructor name=
"DataFormat" overloaded=
"no">
23236 <autodoc>__init__(int type) -
> DataFormat
</autodoc>
23237 <docstring>Constructs a data format object for one of the standard data
23238 formats or an empty data object (use SetType or SetId later in
23239 this case)
</docstring>
23241 <param name=
"type" type=
"wxDataFormatId" default=
""/>
23244 <constructor name=
"CustomDataFormat" overloaded=
"no">
23245 <autodoc>CustomDataFormat(String format) -
> DataFormat
</autodoc>
23246 <docstring>Constructs a data format object for a custom format identified by its name.
</docstring>
23248 <param name=
"format" type=
"String" default=
""/>
23251 <destructor name=
"~wxDataFormat" overloaded=
"no">
23252 <autodoc>__del__()
</autodoc>
23254 <method name=
"__eq__" type=
"bool" overloaded=
"yes">
23256 <param name=
"format" type=
"wxDataFormatId" default=
""/>
23259 <method name=
"__ne__" type=
"bool" overloaded=
"yes">
23261 <param name=
"format" type=
"wxDataFormatId" default=
""/>
23264 <method name=
"__eq__" type=
"bool" overloaded=
"yes">
23265 <autodoc>__eq__(int format) -
> bool
23266 __eq__(DataFormat format) -
> bool
</autodoc>
23268 <param name=
"format" type=
"DataFormat" default=
""/>
23271 <method name=
"__ne__" type=
"bool" overloaded=
"yes">
23272 <autodoc>__ne__(int format) -
> bool
23273 __ne__(DataFormat format) -
> bool
</autodoc>
23275 <param name=
"format" type=
"DataFormat" default=
""/>
23278 <method name=
"SetType" type=
"" overloaded=
"no">
23279 <autodoc>SetType(int format)
</autodoc>
23280 <docstring>Sets the format to the given value, which should be one of wx.DF_XXX constants.
</docstring>
23282 <param name=
"format" type=
"wxDataFormatId" default=
""/>
23285 <method name=
"GetType" type=
"wxDataFormatId" overloaded=
"no">
23286 <autodoc>GetType() -
> int
</autodoc>
23287 <docstring>Returns the platform-specific number identifying the format.
</docstring>
23289 <method name=
"GetId" type=
"String" overloaded=
"no">
23290 <autodoc>GetId() -
> String
</autodoc>
23291 <docstring>Returns the name of a custom format (this function will fail for a standard format).
</docstring>
23293 <method name=
"SetId" type=
"" overloaded=
"no">
23294 <autodoc>SetId(String format)
</autodoc>
23295 <docstring>Sets the format to be the custom format identified by the given name.
</docstring>
23297 <param name=
"format" type=
"String" default=
""/>
23301 <class name=
"DataObject" oldname=
"wxDataObject" module=
"misc">
23302 <destructor name=
"~wxDataObject" overloaded=
"no">
23303 <autodoc>__del__()
</autodoc>
23305 <method name=
"GetPreferredFormat" type=
"DataFormat" overloaded=
"no">
23306 <autodoc>GetPreferredFormat(int dir=Get) -
> DataFormat
</autodoc>
23308 <param name=
"dir" type=
"wxDataObject::Direction" default=
"wxDataObject::Get"/>
23311 <method name=
"GetFormatCount" type=
"size_t" overloaded=
"no">
23312 <autodoc>GetFormatCount(int dir=Get) -
> size_t
</autodoc>
23314 <param name=
"dir" type=
"wxDataObject::Direction" default=
"wxDataObject::Get"/>
23317 <method name=
"IsSupported" type=
"bool" overloaded=
"no">
23318 <autodoc>IsSupported(DataFormat format, int dir=Get) -
> bool
</autodoc>
23320 <param name=
"format" type=
"DataFormat" default=
""/>
23321 <param name=
"dir" type=
"wxDataObject::Direction" default=
"wxDataObject::Get"/>
23324 <method name=
"GetDataSize" type=
"size_t" overloaded=
"no">
23325 <autodoc>GetDataSize(DataFormat format) -
> size_t
</autodoc>
23327 <param name=
"format" type=
"DataFormat" default=
""/>
23330 <method name=
"GetAllFormats" type=
"" overloaded=
"no">
23331 <autodoc>GetAllFormats(DataFormat formats, int dir=Get)
</autodoc>
23333 <param name=
"formats" type=
"DataFormat" default=
""/>
23334 <param name=
"dir" type=
"wxDataObject::Direction" default=
"wxDataObject::Get"/>
23337 <method name=
"GetDataHere" type=
"bool" overloaded=
"no">
23338 <autodoc>GetDataHere(DataFormat format, void buf) -
> bool
</autodoc>
23340 <param name=
"format" type=
"DataFormat" default=
""/>
23341 <param name=
"buf" type=
"" default=
""/>
23344 <method name=
"SetData" type=
"bool" overloaded=
"no">
23345 <autodoc>SetData(DataFormat format, size_t len, void buf) -
> bool
</autodoc>
23347 <param name=
"format" type=
"DataFormat" default=
""/>
23348 <param name=
"len" type=
"size_t" default=
""/>
23349 <param name=
"buf" type=
"" default=
""/>
23353 <class name=
"DataObjectSimple" oldname=
"wxDataObjectSimple" module=
"misc">
23354 <baseclass name=
"DataObject"/>
23355 <constructor name=
"DataObjectSimple" overloaded=
"no">
23356 <autodoc>__init__(DataFormat format=FormatInvalid) -
> DataObjectSimple
</autodoc>
23358 <param name=
"format" type=
"DataFormat" default=
"wxFormatInvalid"/>
23361 <method name=
"GetFormat" type=
"DataFormat" overloaded=
"no">
23362 <autodoc>GetFormat() -
> DataFormat
</autodoc>
23364 <method name=
"SetFormat" type=
"" overloaded=
"no">
23365 <autodoc>SetFormat(DataFormat format)
</autodoc>
23367 <param name=
"format" type=
"DataFormat" default=
""/>
23371 <class name=
"PyDataObjectSimple" oldname=
"wxPyDataObjectSimple" module=
"misc">
23372 <baseclass name=
"DataObjectSimple"/>
23373 <constructor name=
"PyDataObjectSimple" overloaded=
"no">
23374 <autodoc>__init__(DataFormat format=FormatInvalid) -
> PyDataObjectSimple
</autodoc>
23376 <param name=
"format" type=
"DataFormat" default=
"wxFormatInvalid"/>
23379 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
23380 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
23382 <param name=
"self" type=
"PyObject" default=
""/>
23383 <param name=
"_class" type=
"PyObject" default=
""/>
23387 <class name=
"DataObjectComposite" oldname=
"wxDataObjectComposite" module=
"misc">
23388 <baseclass name=
"DataObject"/>
23389 <constructor name=
"DataObjectComposite" overloaded=
"no">
23390 <autodoc>__init__() -
> DataObjectComposite
</autodoc>
23392 <method name=
"Add" type=
"" overloaded=
"no">
23393 <autodoc>Add(DataObjectSimple dataObject, int preferred=False)
</autodoc>
23395 <param name=
"dataObject" type=
"DataObjectSimple" default=
""/>
23396 <param name=
"preferred" type=
"int" default=
"False"/>
23400 <class name=
"TextDataObject" oldname=
"wxTextDataObject" module=
"misc">
23401 <baseclass name=
"DataObjectSimple"/>
23402 <constructor name=
"TextDataObject" overloaded=
"no">
23403 <autodoc>__init__(String text=EmptyString) -
> TextDataObject
</autodoc>
23405 <param name=
"text" type=
"String" default=
"wxPyEmptyString"/>
23408 <method name=
"GetTextLength" type=
"size_t" overloaded=
"no">
23409 <autodoc>GetTextLength() -
> size_t
</autodoc>
23411 <method name=
"GetText" type=
"String" overloaded=
"no">
23412 <autodoc>GetText() -
> String
</autodoc>
23414 <method name=
"SetText" type=
"" overloaded=
"no">
23415 <autodoc>SetText(String text)
</autodoc>
23417 <param name=
"text" type=
"String" default=
""/>
23421 <class name=
"PyTextDataObject" oldname=
"wxPyTextDataObject" module=
"misc">
23422 <baseclass name=
"TextDataObject"/>
23423 <constructor name=
"PyTextDataObject" overloaded=
"no">
23424 <autodoc>__init__(String text=EmptyString) -
> PyTextDataObject
</autodoc>
23426 <param name=
"text" type=
"String" default=
"wxPyEmptyString"/>
23429 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
23430 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
23432 <param name=
"self" type=
"PyObject" default=
""/>
23433 <param name=
"_class" type=
"PyObject" default=
""/>
23437 <class name=
"BitmapDataObject" oldname=
"wxBitmapDataObject" module=
"misc">
23438 <baseclass name=
"DataObjectSimple"/>
23439 <constructor name=
"BitmapDataObject" overloaded=
"no">
23440 <autodoc>__init__(Bitmap bitmap=wxNullBitmap) -
> BitmapDataObject
</autodoc>
23442 <param name=
"bitmap" type=
"Bitmap" default=
"wxNullBitmap"/>
23445 <method name=
"GetBitmap" type=
"Bitmap" overloaded=
"no">
23446 <autodoc>GetBitmap() -
> Bitmap
</autodoc>
23448 <method name=
"SetBitmap" type=
"" overloaded=
"no">
23449 <autodoc>SetBitmap(Bitmap bitmap)
</autodoc>
23451 <param name=
"bitmap" type=
"Bitmap" default=
""/>
23455 <class name=
"PyBitmapDataObject" oldname=
"wxPyBitmapDataObject" module=
"misc">
23456 <baseclass name=
"BitmapDataObject"/>
23457 <constructor name=
"PyBitmapDataObject" overloaded=
"no">
23458 <autodoc>__init__(Bitmap bitmap=wxNullBitmap) -
> PyBitmapDataObject
</autodoc>
23460 <param name=
"bitmap" type=
"Bitmap" default=
"wxNullBitmap"/>
23463 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
23464 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
23466 <param name=
"self" type=
"PyObject" default=
""/>
23467 <param name=
"_class" type=
"PyObject" default=
""/>
23471 <class name=
"FileDataObject" oldname=
"wxFileDataObject" module=
"misc">
23472 <baseclass name=
"DataObjectSimple"/>
23473 <constructor name=
"FileDataObject" overloaded=
"no">
23474 <autodoc>__init__() -
> FileDataObject
</autodoc>
23476 <method name=
"GetFilenames" type=
"wxArrayString" overloaded=
"no">
23477 <autodoc>GetFilenames() -
> wxArrayString
</autodoc>
23479 <method name=
"AddFile" type=
"" overloaded=
"no">
23480 <autodoc>AddFile(String filename)
</autodoc>
23482 <param name=
"filename" type=
"String" default=
""/>
23486 <class name=
"CustomDataObject" oldname=
"wxCustomDataObject" module=
"misc">
23487 <baseclass name=
"DataObjectSimple"/>
23488 <constructor name=
"CustomDataObject" overloaded=
"no">
23489 <autodoc>__init__(DataFormat format=FormatInvalid) -
> CustomDataObject
</autodoc>
23491 <param name=
"format" type=
"DataFormat" default=
"wxFormatInvalid"/>
23494 <method name=
"TakeData" type=
"" overloaded=
"no">
23495 <autodoc>TakeData(PyObject data)
</autodoc>
23497 <param name=
"data" type=
"PyObject" default=
""/>
23500 <method name=
"SetData" type=
"bool" overloaded=
"no">
23501 <autodoc>SetData(PyObject data) -
> bool
</autodoc>
23503 <param name=
"data" type=
"PyObject" default=
""/>
23506 <method name=
"GetSize" type=
"size_t" overloaded=
"no">
23507 <autodoc>GetSize() -
> size_t
</autodoc>
23509 <method name=
"GetData" type=
"PyObject" overloaded=
"no">
23510 <autodoc>GetData() -
> PyObject
</autodoc>
23513 <class name=
"URLDataObject" oldname=
"wxURLDataObject" module=
"misc">
23514 <baseclass name=
"DataObjectComposite"/>
23515 <constructor name=
"URLDataObject" overloaded=
"no">
23516 <autodoc>__init__() -
> URLDataObject
</autodoc>
23518 <method name=
"GetURL" type=
"String" overloaded=
"no">
23519 <autodoc>GetURL() -
> String
</autodoc>
23521 <method name=
"SetURL" type=
"" overloaded=
"no">
23522 <autodoc>SetURL(String url)
</autodoc>
23524 <param name=
"url" type=
"String" default=
""/>
23528 <class name=
"MetafileDataObject" oldname=
"wxMetafileDataObject" module=
"misc">
23529 <baseclass name=
"DataObjectSimple"/>
23530 <constructor name=
"MetafileDataObject" overloaded=
"no">
23531 <autodoc>__init__() -
> MetafileDataObject
</autodoc>
23535 #---------------------------------------------------------------------------
23537 <method name=
"IsDragResultOk" oldname=
"wxIsDragResultOk" type=
"bool" overloaded=
"no">
23538 <autodoc>IsDragResultOk(int res) -
> bool
</autodoc>
23540 <param name=
"res" type=
"wxDragResult" default=
""/>
23543 <class name=
"DropSource" oldname=
"wxPyDropSource" module=
"misc">
23544 <constructor name=
"wxPyDropSource" overloaded=
"no">
23545 <autodoc>__init__(Window win, Icon copy=wxNullIcon, Icon move=wxNullIcon,
23546 Icon none=wxNullIcon) -
> DropSource
</autodoc>
23548 <param name=
"win" type=
"Window" default=
""/>
23549 <param name=
"copy" type=
"Icon" default=
"wxNullIcon"/>
23550 <param name=
"move" type=
"Icon" default=
"wxNullIcon"/>
23551 <param name=
"none" type=
"Icon" default=
"wxNullIcon"/>
23554 <destructor name=
"~wxPyDropSource" overloaded=
"no">
23555 <autodoc>__del__()
</autodoc>
23557 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
23558 <autodoc>_setCallbackInfo(PyObject self, PyObject _class, int incref)
</autodoc>
23560 <param name=
"self" type=
"PyObject" default=
""/>
23561 <param name=
"_class" type=
"PyObject" default=
""/>
23562 <param name=
"incref" type=
"int" default=
""/>
23565 <method name=
"SetData" type=
"" overloaded=
"no">
23566 <autodoc>SetData(DataObject data)
</autodoc>
23568 <param name=
"data" type=
"DataObject" default=
""/>
23571 <method name=
"GetDataObject" type=
"DataObject" overloaded=
"no">
23572 <autodoc>GetDataObject() -
> DataObject
</autodoc>
23574 <method name=
"SetCursor" type=
"" overloaded=
"no">
23575 <autodoc>SetCursor(int res, Cursor cursor)
</autodoc>
23577 <param name=
"res" type=
"wxDragResult" default=
""/>
23578 <param name=
"cursor" type=
"Cursor" default=
""/>
23581 <method name=
"DoDragDrop" type=
"wxDragResult" overloaded=
"no">
23582 <autodoc>DoDragDrop(int flags=Drag_CopyOnly) -
> int
</autodoc>
23584 <param name=
"flags" type=
"int" default=
"wxDrag_CopyOnly"/>
23587 <method name=
"base_GiveFeedback" type=
"bool" overloaded=
"no">
23588 <autodoc>base_GiveFeedback(int effect) -
> bool
</autodoc>
23590 <param name=
"effect" type=
"wxDragResult" default=
""/>
23594 <class name=
"DropTarget" oldname=
"wxPyDropTarget" module=
"misc">
23595 <constructor name=
"DropTarget" overloaded=
"no">
23596 <autodoc>__init__(DataObject dataObject=None) -
> DropTarget
</autodoc>
23598 <param name=
"dataObject" type=
"DataObject" default=
"NULL"/>
23601 <destructor name=
"~wxPyDropTarget" overloaded=
"no">
23602 <autodoc>__del__()
</autodoc>
23604 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
23605 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
23607 <param name=
"self" type=
"PyObject" default=
""/>
23608 <param name=
"_class" type=
"PyObject" default=
""/>
23611 <method name=
"GetDataObject" type=
"DataObject" overloaded=
"no">
23612 <autodoc>GetDataObject() -
> DataObject
</autodoc>
23614 <method name=
"SetDataObject" type=
"" overloaded=
"no">
23615 <autodoc>SetDataObject(DataObject dataObject)
</autodoc>
23617 <param name=
"dataObject" type=
"DataObject" default=
""/>
23620 <method name=
"base_OnEnter" type=
"wxDragResult" overloaded=
"no">
23621 <autodoc>base_OnEnter(int x, int y, int def) -
> int
</autodoc>
23623 <param name=
"x" type=
"int" default=
""/>
23624 <param name=
"y" type=
"int" default=
""/>
23625 <param name=
"def" type=
"wxDragResult" default=
""/>
23628 <method name=
"base_OnDragOver" type=
"wxDragResult" overloaded=
"no">
23629 <autodoc>base_OnDragOver(int x, int y, int def) -
> int
</autodoc>
23631 <param name=
"x" type=
"int" default=
""/>
23632 <param name=
"y" type=
"int" default=
""/>
23633 <param name=
"def" type=
"wxDragResult" default=
""/>
23636 <method name=
"base_OnLeave" type=
"" overloaded=
"no">
23637 <autodoc>base_OnLeave()
</autodoc>
23639 <method name=
"base_OnDrop" type=
"bool" overloaded=
"no">
23640 <autodoc>base_OnDrop(int x, int y) -
> bool
</autodoc>
23642 <param name=
"x" type=
"int" default=
""/>
23643 <param name=
"y" type=
"int" default=
""/>
23646 <method name=
"GetData" type=
"bool" overloaded=
"no">
23647 <autodoc>GetData() -
> bool
</autodoc>
23650 <pythoncode> PyDropTarget = DropTarget
</pythoncode>
23651 <class name=
"TextDropTarget" oldname=
"wxPyTextDropTarget" module=
"misc">
23652 <baseclass name=
"DropTarget"/>
23653 <constructor name=
"wxPyTextDropTarget" overloaded=
"no">
23654 <autodoc>__init__() -
> TextDropTarget
</autodoc>
23656 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
23657 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
23659 <param name=
"self" type=
"PyObject" default=
""/>
23660 <param name=
"_class" type=
"PyObject" default=
""/>
23663 <method name=
"base_OnEnter" type=
"wxDragResult" overloaded=
"no">
23664 <autodoc>base_OnEnter(int x, int y, int def) -
> int
</autodoc>
23666 <param name=
"x" type=
"int" default=
""/>
23667 <param name=
"y" type=
"int" default=
""/>
23668 <param name=
"def" type=
"wxDragResult" default=
""/>
23671 <method name=
"base_OnDragOver" type=
"wxDragResult" overloaded=
"no">
23672 <autodoc>base_OnDragOver(int x, int y, int def) -
> int
</autodoc>
23674 <param name=
"x" type=
"int" default=
""/>
23675 <param name=
"y" type=
"int" default=
""/>
23676 <param name=
"def" type=
"wxDragResult" default=
""/>
23679 <method name=
"base_OnLeave" type=
"" overloaded=
"no">
23680 <autodoc>base_OnLeave()
</autodoc>
23682 <method name=
"base_OnDrop" type=
"bool" overloaded=
"no">
23683 <autodoc>base_OnDrop(int x, int y) -
> bool
</autodoc>
23685 <param name=
"x" type=
"int" default=
""/>
23686 <param name=
"y" type=
"int" default=
""/>
23689 <method name=
"base_OnData" type=
"wxDragResult" overloaded=
"no">
23690 <autodoc>base_OnData(int x, int y, int def) -
> int
</autodoc>
23692 <param name=
"x" type=
"int" default=
""/>
23693 <param name=
"y" type=
"int" default=
""/>
23694 <param name=
"def" type=
"wxDragResult" default=
""/>
23698 <class name=
"FileDropTarget" oldname=
"wxPyFileDropTarget" module=
"misc">
23699 <baseclass name=
"DropTarget"/>
23700 <constructor name=
"wxPyFileDropTarget" overloaded=
"no">
23701 <autodoc>__init__() -
> FileDropTarget
</autodoc>
23703 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
23704 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
23706 <param name=
"self" type=
"PyObject" default=
""/>
23707 <param name=
"_class" type=
"PyObject" default=
""/>
23710 <method name=
"base_OnEnter" type=
"wxDragResult" overloaded=
"no">
23711 <autodoc>base_OnEnter(int x, int y, int def) -
> int
</autodoc>
23713 <param name=
"x" type=
"int" default=
""/>
23714 <param name=
"y" type=
"int" default=
""/>
23715 <param name=
"def" type=
"wxDragResult" default=
""/>
23718 <method name=
"base_OnDragOver" type=
"wxDragResult" overloaded=
"no">
23719 <autodoc>base_OnDragOver(int x, int y, int def) -
> int
</autodoc>
23721 <param name=
"x" type=
"int" default=
""/>
23722 <param name=
"y" type=
"int" default=
""/>
23723 <param name=
"def" type=
"wxDragResult" default=
""/>
23726 <method name=
"base_OnLeave" type=
"" overloaded=
"no">
23727 <autodoc>base_OnLeave()
</autodoc>
23729 <method name=
"base_OnDrop" type=
"bool" overloaded=
"no">
23730 <autodoc>base_OnDrop(int x, int y) -
> bool
</autodoc>
23732 <param name=
"x" type=
"int" default=
""/>
23733 <param name=
"y" type=
"int" default=
""/>
23736 <method name=
"base_OnData" type=
"wxDragResult" overloaded=
"no">
23737 <autodoc>base_OnData(int x, int y, int def) -
> int
</autodoc>
23739 <param name=
"x" type=
"int" default=
""/>
23740 <param name=
"y" type=
"int" default=
""/>
23741 <param name=
"def" type=
"wxDragResult" default=
""/>
23746 #---------------------------------------------------------------------------
23748 <class name=
"Clipboard" oldname=
"wxClipboard" module=
"misc">
23749 <docstring>wx.Clipboard represents the system clipboard and provides methods to copy data
23750 to or paste data from it. Normally, you should only use wx.TheClipboard which
23751 is a reference to a global wx.Clipboard instance.
23753 Call wx.TheClipboard.Open to get ownership of the clipboard. If this operation
23754 returns True, you now own the clipboard. Call wx.TheClipboard.SetData to put
23755 data on the clipboard, or wx.TheClipboard.GetData to retrieve data from the
23756 clipboard. Call wx.TheClipboard.Close to close the clipboard and relinquish
23757 ownership. You should keep the clipboard open only momentarily.
23759 <baseclass name=
"Object"/>
23760 <constructor name=
"Clipboard" overloaded=
"no">
23761 <autodoc>__init__() -
> Clipboard
</autodoc>
23763 <destructor name=
"~wxClipboard" overloaded=
"no">
23764 <autodoc>__del__()
</autodoc>
23766 <method name=
"Open" type=
"bool" overloaded=
"no">
23767 <autodoc>Open() -
> bool
</autodoc>
23768 <docstring>Call this function to open the clipboard before calling SetData
23769 and GetData. Call Close when you have finished with the clipboard.
23770 You should keep the clipboard open for only a very short time.
23771 Returns true on success.
</docstring>
23773 <method name=
"Close" type=
"" overloaded=
"no">
23774 <autodoc>Close()
</autodoc>
23775 <docstring>Closes the clipboard.
</docstring>
23777 <method name=
"IsOpened" type=
"bool" overloaded=
"no">
23778 <autodoc>IsOpened() -
> bool
</autodoc>
23779 <docstring>Query whether the clipboard is opened
</docstring>
23781 <method name=
"AddData" type=
"bool" overloaded=
"no">
23782 <autodoc>AddData(DataObject data) -
> bool
</autodoc>
23783 <docstring>Call this function to add the data object to the clipboard. You
23784 may call this function repeatedly after having cleared the clipboard.
23785 After this function has been called, the clipboard owns the data, so
23786 do not delete the data explicitly.
</docstring>
23788 <param name=
"data" type=
"DataObject" default=
""/>
23791 <method name=
"SetData" type=
"bool" overloaded=
"no">
23792 <autodoc>SetData(DataObject data) -
> bool
</autodoc>
23793 <docstring>Set the clipboard data, this is the same as Clear followed by AddData.
</docstring>
23795 <param name=
"data" type=
"DataObject" default=
""/>
23798 <method name=
"IsSupported" type=
"bool" overloaded=
"no">
23799 <autodoc>IsSupported(DataFormat format) -
> bool
</autodoc>
23800 <docstring>Returns True if the given format is available in the data object(s) on
23801 the clipboard.
</docstring>
23803 <param name=
"format" type=
"DataFormat" default=
""/>
23806 <method name=
"GetData" type=
"bool" overloaded=
"no">
23807 <autodoc>GetData(DataObject data) -
> bool
</autodoc>
23808 <docstring>Call this function to fill data with data on the clipboard, if available
23809 in the required format. Returns true on success.
</docstring>
23811 <param name=
"data" type=
"DataObject" default=
""/>
23814 <method name=
"Clear" type=
"" overloaded=
"no">
23815 <autodoc>Clear()
</autodoc>
23816 <docstring>Clears data from the clipboard object and also the system's clipboard
23817 if possible.
</docstring>
23819 <method name=
"Flush" type=
"bool" overloaded=
"no">
23820 <autodoc>Flush() -
> bool
</autodoc>
23821 <docstring>Flushes the clipboard: this means that the data which is currently on
23822 clipboard will stay available even after the application exits (possibly
23823 eating memory), otherwise the clipboard will be emptied on exit.
23824 Returns False if the operation is unsuccesful for any reason.
</docstring>
23826 <method name=
"UsePrimarySelection" type=
"" overloaded=
"no">
23827 <autodoc>UsePrimarySelection(bool primary=True)
</autodoc>
23828 <docstring>On platforms supporting it (the X11 based platforms), selects the so
23829 called PRIMARY SELECTION as the clipboard as opposed to the normal
23830 clipboard, if primary is True.
</docstring>
23832 <param name=
"primary" type=
"bool" default=
"True"/>
23836 <class name=
"ClipboardLocker" oldname=
"wxClipboardLocker" module=
"misc">
23837 <docstring>A helpful class for opening the clipboard and automatically closing it when
23838 the locker is destroyed.
</docstring>
23839 <constructor name=
"ClipboardLocker" overloaded=
"no">
23840 <autodoc>__init__(Clipboard clipboard=None) -
> ClipboardLocker
</autodoc>
23841 <docstring>A helpful class for opening the clipboard and automatically closing it when
23842 the locker is destroyed.
</docstring>
23844 <param name=
"clipboard" type=
"Clipboard" default=
"NULL"/>
23847 <destructor name=
"~wxClipboardLocker" overloaded=
"no">
23848 <autodoc>__del__()
</autodoc>
23850 <method name=
"__nonzero__" type=
"bool" overloaded=
"no">
23851 <autodoc>__nonzero__() -
> bool
</autodoc>
23852 <docstring>A ClipboardLocker instance evaluates to True if the clipboard was
23853 successfully opened.
</docstring>
23857 #---------------------------------------------------------------------------
23859 <class name=
"VideoMode" oldname=
"wxVideoMode" module=
"misc">
23860 <docstring>A simple struct containing video mode parameters for a display
</docstring>
23861 <constructor name=
"VideoMode" overloaded=
"no">
23862 <autodoc>__init__(int width=
0, int height=
0, int depth=
0, int freq=
0) -
> VideoMode
</autodoc>
23863 <docstring>A simple struct containing video mode parameters for a display
</docstring>
23865 <param name=
"width" type=
"int" default=
"0"/>
23866 <param name=
"height" type=
"int" default=
"0"/>
23867 <param name=
"depth" type=
"int" default=
"0"/>
23868 <param name=
"freq" type=
"int" default=
"0"/>
23871 <destructor name=
"~wxVideoMode" overloaded=
"no">
23872 <autodoc>__del__()
</autodoc>
23874 <method name=
"Matches" type=
"bool" overloaded=
"no">
23875 <autodoc>Matches(VideoMode other) -
> bool
</autodoc>
23876 <docstring>Returns true if this mode matches the other one in the sense that
23877 all non zero fields of the other mode have the same value in this
23878 one (except for refresh which is allowed to have a greater value)
</docstring>
23880 <param name=
"other" type=
"VideoMode" default=
""/>
23883 <method name=
"GetWidth" type=
"int" overloaded=
"no">
23884 <autodoc>GetWidth() -
> int
</autodoc>
23885 <docstring>Returns the screen width in pixels (e.g.
640*
480),
0 means
23886 unspecified
</docstring>
23888 <method name=
"GetHeight" type=
"int" overloaded=
"no">
23889 <autodoc>GetHeight() -
> int
</autodoc>
23890 <docstring>Returns the screen width in pixels (e.g.
640*
480),
0 means
23891 unspecified
</docstring>
23893 <method name=
"GetDepth" type=
"int" overloaded=
"no">
23894 <autodoc>GetDepth() -
> int
</autodoc>
23895 <docstring>Returns the screen's bits per pixel (e.g.
32),
1 is monochrome
23896 and
0 means unspecified/known
</docstring>
23898 <method name=
"IsOk" type=
"bool" overloaded=
"no">
23899 <autodoc>IsOk() -
> bool
</autodoc>
23900 <docstring>returns true if the object has been initialized
</docstring>
23902 <method name=
"__eq__" type=
"bool" overloaded=
"no">
23903 <autodoc>__eq__(VideoMode other) -
> bool
</autodoc>
23905 <param name=
"other" type=
"VideoMode" default=
""/>
23908 <method name=
"__ne__" type=
"bool" overloaded=
"no">
23909 <autodoc>__ne__(VideoMode other) -
> bool
</autodoc>
23911 <param name=
"other" type=
"VideoMode" default=
""/>
23914 <property name=
"w" type=
"int" readonly=
"no"/>
23915 <property name=
"h" type=
"int" readonly=
"no"/>
23916 <property name=
"bpp" type=
"int" readonly=
"no"/>
23917 <property name=
"refresh" type=
"int" readonly=
"no"/>
23919 <class name=
"Display" oldname=
"wxDisplay" module=
"misc">
23920 <docstring>Represents a display/monitor attached to the system
</docstring>
23921 <constructor name=
"Display" overloaded=
"no">
23922 <autodoc>__init__(size_t index=
0) -
> Display
</autodoc>
23923 <docstring>Set up a Display instance with the specified display. The
23924 displays are numbered from
0 to GetCount() -
1,
0 is always the
23925 primary display and the only one which is always supported
</docstring>
23927 <param name=
"index" type=
"size_t" default=
"0"/>
23930 <destructor name=
"~wxDisplay" overloaded=
"no">
23931 <autodoc>__del__()
</autodoc>
23933 <staticmethod name=
"GetCount" type=
"size_t" overloaded=
"no">
23934 <autodoc>GetCount() -
> size_t
</autodoc>
23935 <docstring>Return the number of available displays.
</docstring>
23937 <staticmethod name=
"GetFromPoint" type=
"int" overloaded=
"no">
23938 <autodoc>GetFromPoint(Point pt) -
> int
</autodoc>
23939 <docstring>Find the display where the given point lies, return wx.NOT_FOUND
23940 if it doesn't belong to any display
</docstring>
23942 <param name=
"pt" type=
"Point" default=
""/>
23945 <staticmethod name=
"GetFromWindow" type=
"int" overloaded=
"no">
23946 <autodoc>GetFromWindow(Window window) -
> int
</autodoc>
23947 <docstring>Find the display where the given window lies, return wx.NOT_FOUND
23948 if it is not shown at all.
</docstring>
23950 <param name=
"window" type=
"Window" default=
""/>
23953 <method name=
"IsOk" type=
"bool" overloaded=
"no">
23954 <autodoc>IsOk() -
> bool
</autodoc>
23955 <docstring>Return true if the object was initialized successfully
</docstring>
23957 <method name=
"GetGeometry" type=
"Rect" overloaded=
"no">
23958 <autodoc>GetGeometry() -
> Rect
</autodoc>
23959 <docstring>Returns the bounding rectangle of the display whose index was
23960 passed to the constructor.
</docstring>
23962 <method name=
"GetName" type=
"String" overloaded=
"no">
23963 <autodoc>GetName() -
> String
</autodoc>
23964 <docstring>Returns the display's name. A name is not available on all platforms.
</docstring>
23966 <method name=
"IsPrimary" type=
"bool" overloaded=
"no">
23967 <autodoc>IsPrimary() -
> bool
</autodoc>
23968 <docstring>Returns true if the display is the primary display. The primary
23969 display is the one whose index is
0.
</docstring>
23971 <method name=
"GetModes" type=
"PyObject" overloaded=
"no">
23972 <autodoc>GetModes(VideoMode mode=DefaultVideoMode) -
> [videoMode...]
</autodoc>
23973 <docstring>Enumerate all video modes supported by this display matching the
23974 given one (in the sense of VideoMode.Match()).
23976 As any mode matches the default value of the argument and there
23977 is always at least one video mode supported by display, the
23978 returned array is only empty for the default value of the
23979 argument if this function is not supported at all on this
23980 platform.
</docstring>
23982 <param name=
"mode" type=
"VideoMode" default=
"wxDefaultVideoMode"/>
23985 <method name=
"GetCurrentMode" type=
"VideoMode" overloaded=
"no">
23986 <autodoc>GetCurrentMode() -
> VideoMode
</autodoc>
23987 <docstring>Get the current video mode.
</docstring>
23989 <method name=
"ChangeMode" type=
"bool" overloaded=
"no">
23990 <autodoc>ChangeMode(VideoMode mode=DefaultVideoMode) -
> bool
</autodoc>
23991 <docstring>Change current mode, return true if succeeded, false otherwise
</docstring>
23993 <param name=
"mode" type=
"VideoMode" default=
"wxDefaultVideoMode"/>
23996 <method name=
"ResetMode" type=
"" overloaded=
"no">
23997 <autodoc>ResetMode()
</autodoc>
23998 <docstring>Restore the default video mode (just a more readable synonym)
</docstring>
24002 <module name=
"calendar">
24003 <import name=
"misc"/>
24004 <pythoncode> wx = core
</pythoncode>
24005 <class name=
"CalendarDateAttr" oldname=
"wxCalendarDateAttr" module=
"calendar">
24006 <docstring>A set of customization attributes for a calendar date, which can be used to
24007 control the look of the Calendar object.
</docstring>
24008 <constructor name=
"CalendarDateAttr" overloaded=
"no">
24009 <autodoc>__init__(Colour colText=wxNullColour, Colour colBack=wxNullColour,
24010 Colour colBorder=wxNullColour, Font font=wxNullFont,
24011 int border=CAL_BORDER_NONE) -
> CalendarDateAttr
</autodoc>
24012 <docstring>Create a CalendarDateAttr.
</docstring>
24014 <param name=
"colText" type=
"Colour" default=
"wxNullColour"/>
24015 <param name=
"colBack" type=
"Colour" default=
"wxNullColour"/>
24016 <param name=
"colBorder" type=
"Colour" default=
"wxNullColour"/>
24017 <param name=
"font" type=
"Font" default=
"wxNullFont"/>
24018 <param name=
"border" type=
"wxCalendarDateBorder" default=
"wxCAL_BORDER_NONE"/>
24021 <method name=
"SetTextColour" type=
"" overloaded=
"no">
24022 <autodoc>SetTextColour(Colour colText)
</autodoc>
24024 <param name=
"colText" type=
"Colour" default=
""/>
24027 <method name=
"SetBackgroundColour" type=
"" overloaded=
"no">
24028 <autodoc>SetBackgroundColour(Colour colBack)
</autodoc>
24030 <param name=
"colBack" type=
"Colour" default=
""/>
24033 <method name=
"SetBorderColour" type=
"" overloaded=
"no">
24034 <autodoc>SetBorderColour(Colour col)
</autodoc>
24036 <param name=
"col" type=
"Colour" default=
""/>
24039 <method name=
"SetFont" type=
"" overloaded=
"no">
24040 <autodoc>SetFont(Font font)
</autodoc>
24042 <param name=
"font" type=
"Font" default=
""/>
24045 <method name=
"SetBorder" type=
"" overloaded=
"no">
24046 <autodoc>SetBorder(int border)
</autodoc>
24048 <param name=
"border" type=
"wxCalendarDateBorder" default=
""/>
24051 <method name=
"SetHoliday" type=
"" overloaded=
"no">
24052 <autodoc>SetHoliday(bool holiday)
</autodoc>
24054 <param name=
"holiday" type=
"bool" default=
""/>
24057 <method name=
"HasTextColour" type=
"bool" overloaded=
"no">
24058 <autodoc>HasTextColour() -
> bool
</autodoc>
24060 <method name=
"HasBackgroundColour" type=
"bool" overloaded=
"no">
24061 <autodoc>HasBackgroundColour() -
> bool
</autodoc>
24063 <method name=
"HasBorderColour" type=
"bool" overloaded=
"no">
24064 <autodoc>HasBorderColour() -
> bool
</autodoc>
24066 <method name=
"HasFont" type=
"bool" overloaded=
"no">
24067 <autodoc>HasFont() -
> bool
</autodoc>
24069 <method name=
"HasBorder" type=
"bool" overloaded=
"no">
24070 <autodoc>HasBorder() -
> bool
</autodoc>
24072 <method name=
"IsHoliday" type=
"bool" overloaded=
"no">
24073 <autodoc>IsHoliday() -
> bool
</autodoc>
24075 <method name=
"GetTextColour" type=
"Colour" overloaded=
"no">
24076 <autodoc>GetTextColour() -
> Colour
</autodoc>
24078 <method name=
"GetBackgroundColour" type=
"Colour" overloaded=
"no">
24079 <autodoc>GetBackgroundColour() -
> Colour
</autodoc>
24081 <method name=
"GetBorderColour" type=
"Colour" overloaded=
"no">
24082 <autodoc>GetBorderColour() -
> Colour
</autodoc>
24084 <method name=
"GetFont" type=
"Font" overloaded=
"no">
24085 <autodoc>GetFont() -
> Font
</autodoc>
24087 <method name=
"GetBorder" type=
"wxCalendarDateBorder" overloaded=
"no">
24088 <autodoc>GetBorder() -
> int
</autodoc>
24091 <class name=
"CalendarEvent" oldname=
"wxCalendarEvent" module=
"calendar">
24092 <baseclass name=
"CommandEvent"/>
24093 <constructor name=
"CalendarEvent" overloaded=
"no">
24094 <autodoc>__init__(CalendarCtrl cal, wxEventType type) -
> CalendarEvent
</autodoc>
24096 <param name=
"cal" type=
"wxCalendarCtrl" default=
""/>
24097 <param name=
"type" type=
"wxEventType" default=
""/>
24100 <method name=
"GetDate" type=
"DateTime" overloaded=
"no">
24101 <autodoc>GetDate() -
> DateTime
</autodoc>
24103 <method name=
"SetDate" type=
"" overloaded=
"no">
24104 <autodoc>SetDate(DateTime date)
</autodoc>
24106 <param name=
"date" type=
"DateTime" default=
""/>
24109 <method name=
"SetWeekDay" type=
"" overloaded=
"no">
24110 <autodoc>SetWeekDay(int wd)
</autodoc>
24112 <param name=
"wd" type=
"wxDateTime::WeekDay" default=
""/>
24115 <method name=
"GetWeekDay" type=
"wxDateTime::WeekDay" overloaded=
"no">
24116 <autodoc>GetWeekDay() -
> int
</autodoc>
24120 EVT_CALENDAR = wx.PyEventBinder( wxEVT_CALENDAR_DOUBLECLICKED,
1)
24121 EVT_CALENDAR_SEL_CHANGED = wx.PyEventBinder( wxEVT_CALENDAR_SEL_CHANGED,
1)
24122 EVT_CALENDAR_DAY = wx.PyEventBinder( wxEVT_CALENDAR_DAY_CHANGED,
1)
24123 EVT_CALENDAR_MONTH = wx.PyEventBinder( wxEVT_CALENDAR_MONTH_CHANGED,
1)
24124 EVT_CALENDAR_YEAR = wx.PyEventBinder( wxEVT_CALENDAR_YEAR_CHANGED,
1)
24125 EVT_CALENDAR_WEEKDAY_CLICKED = wx.PyEventBinder( wxEVT_CALENDAR_WEEKDAY_CLICKED,
1)
24127 <class name=
"CalendarCtrl" oldname=
"wxCalendarCtrl" module=
"calendar">
24128 <docstring>The calendar control allows the user to pick a date interactively.
</docstring>
24129 <refdoc>The CalendarCtrl displays a window containing several parts: the control to
24130 pick the month and the year at the top (either or both of them may be
24131 disabled) and a month area below them which shows all the days in the
24132 month. The user can move the current selection using the keyboard and select
24133 the date (generating EVT_CALENDAR event) by pressing
<Return
> or double
24136 It has advanced possibilities for the customization of its display. All global
24137 settings (such as colours and fonts used) can, of course, be changed. But
24138 also, the display style for each day in the month can be set independently
24139 using CalendarDateAttr class.
24141 An item without custom attributes is drawn with the default colours and font
24142 and without border, but setting custom attributes with SetAttr allows to
24143 modify its appearance. Just create a custom attribute object and set it for
24144 the day you want to be displayed specially A day may be marked as being a
24145 holiday, (even if it is not recognized as one by wx.DateTime) by using the
24148 As the attributes are specified for each day, they may change when the month
24149 is changed, so you will often want to update them in an EVT_CALENDAR_MONTH
24153 CAL_SUNDAY_FIRST: Show Sunday as the first day in the week
24154 CAL_MONDAY_FIRST: Show Monday as the first day in the week
24155 CAL_SHOW_HOLIDAYS: Highlight holidays in the calendar
24156 CAL_NO_YEAR_CHANGE: Disable the year changing
24157 CAL_NO_MONTH_CHANGE: Disable the month (and, implicitly, the year) changing
24158 CAL_SHOW_SURROUNDING_WEEKS: Show the neighbouring weeks in the previous and next months
24159 CAL_SEQUENTIAL_MONTH_SELECTION: Use alternative, more compact, style for the month and year selection controls.
24161 The default calendar style is wxCAL_SHOW_HOLIDAYS.
24164 EVT_CALENDAR: A day was double clicked in the calendar.
24165 EVT_CALENDAR_SEL_CHANGED: The selected date changed.
24166 EVT_CALENDAR_DAY: The selected day changed.
24167 EVT_CALENDAR_MONTH: The selected month changed.
24168 EVT_CALENDAR_YEAR: The selected year changed.
24169 EVT_CALENDAR_WEEKDAY_CLICKED: User clicked on the week day header
24171 Note that changing the selected date will result in either of
24172 EVT_CALENDAR_DAY, MONTH or YEAR events and an EVT_CALENDAR_SEL_CHANGED event.
24175 <baseclass name=
"Control"/>
24176 <constructor name=
"CalendarCtrl" overloaded=
"no">
24177 <autodoc>__init__(Window parent, int id, DateTime date=DefaultDateTime,
24178 Point pos=DefaultPosition, Size size=DefaultSize,
24179 long style=wxCAL_SHOW_HOLIDAYS|wxWANTS_CHARS,
24180 String name=CalendarNameStr) -
> CalendarCtrl
</autodoc>
24181 <docstring>Create and show a calendar control.
</docstring>
24182 <refdoc>The CalendarCtrl displays a window containing several parts: the control to
24183 pick the month and the year at the top (either or both of them may be
24184 disabled) and a month area below them which shows all the days in the
24185 month. The user can move the current selection using the keyboard and select
24186 the date (generating EVT_CALENDAR event) by pressing
<Return
> or double
24189 It has advanced possibilities for the customization of its display. All global
24190 settings (such as colours and fonts used) can, of course, be changed. But
24191 also, the display style for each day in the month can be set independently
24192 using CalendarDateAttr class.
24194 An item without custom attributes is drawn with the default colours and font
24195 and without border, but setting custom attributes with SetAttr allows to
24196 modify its appearance. Just create a custom attribute object and set it for
24197 the day you want to be displayed specially A day may be marked as being a
24198 holiday, (even if it is not recognized as one by wx.DateTime) by using the
24201 As the attributes are specified for each day, they may change when the month
24202 is changed, so you will often want to update them in an EVT_CALENDAR_MONTH
24206 CAL_SUNDAY_FIRST: Show Sunday as the first day in the week
24207 CAL_MONDAY_FIRST: Show Monday as the first day in the week
24208 CAL_SHOW_HOLIDAYS: Highlight holidays in the calendar
24209 CAL_NO_YEAR_CHANGE: Disable the year changing
24210 CAL_NO_MONTH_CHANGE: Disable the month (and, implicitly, the year) changing
24211 CAL_SHOW_SURROUNDING_WEEKS: Show the neighbouring weeks in the previous and next months
24212 CAL_SEQUENTIAL_MONTH_SELECTION: Use alternative, more compact, style for the month and year selection controls.
24214 The default calendar style is wxCAL_SHOW_HOLIDAYS.
24217 EVT_CALENDAR: A day was double clicked in the calendar.
24218 EVT_CALENDAR_SEL_CHANGED: The selected date changed.
24219 EVT_CALENDAR_DAY: The selected day changed.
24220 EVT_CALENDAR_MONTH: The selected month changed.
24221 EVT_CALENDAR_YEAR: The selected year changed.
24222 EVT_CALENDAR_WEEKDAY_CLICKED: User clicked on the week day header
24224 Note that changing the selected date will result in either of
24225 EVT_CALENDAR_DAY, MONTH or YEAR events and an EVT_CALENDAR_SEL_CHANGED event.
24229 <param name=
"parent" type=
"Window" default=
""/>
24230 <param name=
"id" type=
"int" default=
""/>
24231 <param name=
"date" type=
"DateTime" default=
"wxDefaultDateTime"/>
24232 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
24233 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
24234 <param name=
"style" type=
"long" default=
"wxCAL_SHOW_HOLIDAYS|wxWANTS_CHARS"/>
24235 <param name=
"name" type=
"String" default=
"wxPyCalendarNameStr"/>
24238 <constructor name=
"PreCalendarCtrl" overloaded=
"no">
24239 <autodoc>PreCalendarCtrl() -
> CalendarCtrl
</autodoc>
24240 <docstring>Precreate a CalendarCtrl for
2-phase creation.
</docstring>
24241 <refdoc>The CalendarCtrl displays a window containing several parts: the control to
24242 pick the month and the year at the top (either or both of them may be
24243 disabled) and a month area below them which shows all the days in the
24244 month. The user can move the current selection using the keyboard and select
24245 the date (generating EVT_CALENDAR event) by pressing
<Return
> or double
24248 It has advanced possibilities for the customization of its display. All global
24249 settings (such as colours and fonts used) can, of course, be changed. But
24250 also, the display style for each day in the month can be set independently
24251 using CalendarDateAttr class.
24253 An item without custom attributes is drawn with the default colours and font
24254 and without border, but setting custom attributes with SetAttr allows to
24255 modify its appearance. Just create a custom attribute object and set it for
24256 the day you want to be displayed specially A day may be marked as being a
24257 holiday, (even if it is not recognized as one by wx.DateTime) by using the
24260 As the attributes are specified for each day, they may change when the month
24261 is changed, so you will often want to update them in an EVT_CALENDAR_MONTH
24265 CAL_SUNDAY_FIRST: Show Sunday as the first day in the week
24266 CAL_MONDAY_FIRST: Show Monday as the first day in the week
24267 CAL_SHOW_HOLIDAYS: Highlight holidays in the calendar
24268 CAL_NO_YEAR_CHANGE: Disable the year changing
24269 CAL_NO_MONTH_CHANGE: Disable the month (and, implicitly, the year) changing
24270 CAL_SHOW_SURROUNDING_WEEKS: Show the neighbouring weeks in the previous and next months
24271 CAL_SEQUENTIAL_MONTH_SELECTION: Use alternative, more compact, style for the month and year selection controls.
24273 The default calendar style is wxCAL_SHOW_HOLIDAYS.
24276 EVT_CALENDAR: A day was double clicked in the calendar.
24277 EVT_CALENDAR_SEL_CHANGED: The selected date changed.
24278 EVT_CALENDAR_DAY: The selected day changed.
24279 EVT_CALENDAR_MONTH: The selected month changed.
24280 EVT_CALENDAR_YEAR: The selected year changed.
24281 EVT_CALENDAR_WEEKDAY_CLICKED: User clicked on the week day header
24283 Note that changing the selected date will result in either of
24284 EVT_CALENDAR_DAY, MONTH or YEAR events and an EVT_CALENDAR_SEL_CHANGED event.
24288 <method name=
"Create" type=
"bool" overloaded=
"no">
24289 <autodoc>Create(Window parent, int id, DateTime date=DefaultDateTime,
24290 Point pos=DefaultPosition, Size size=DefaultSize,
24291 long style=wxCAL_SHOW_HOLIDAYS|wxWANTS_CHARS,
24292 String name=CalendarNameStr) -
> bool
</autodoc>
24293 <docstring>Acutally create the GUI portion of the CalendarCtrl for
2-phase creation.
</docstring>
24295 <param name=
"parent" type=
"Window" default=
""/>
24296 <param name=
"id" type=
"int" default=
""/>
24297 <param name=
"date" type=
"DateTime" default=
"wxDefaultDateTime"/>
24298 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
24299 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
24300 <param name=
"style" type=
"long" default=
"wxCAL_SHOW_HOLIDAYS|wxWANTS_CHARS"/>
24301 <param name=
"name" type=
"String" default=
"wxPyCalendarNameStr"/>
24304 <method name=
"SetDate" type=
"" overloaded=
"no">
24305 <autodoc>SetDate(DateTime date)
</autodoc>
24306 <docstring>Sets the current date.
</docstring>
24308 <param name=
"date" type=
"DateTime" default=
""/>
24311 <method name=
"GetDate" type=
"DateTime" overloaded=
"no">
24312 <autodoc>GetDate() -
> DateTime
</autodoc>
24313 <docstring>Gets the currently selected date.
</docstring>
24315 <method name=
"SetLowerDateLimit" type=
"bool" overloaded=
"no">
24316 <autodoc>SetLowerDateLimit(DateTime date=DefaultDateTime) -
> bool
</autodoc>
24317 <docstring>set the range in which selection can occur
</docstring>
24319 <param name=
"date" type=
"DateTime" default=
"wxDefaultDateTime"/>
24322 <method name=
"SetUpperDateLimit" type=
"bool" overloaded=
"no">
24323 <autodoc>SetUpperDateLimit(DateTime date=DefaultDateTime) -
> bool
</autodoc>
24324 <docstring>set the range in which selection can occur
</docstring>
24326 <param name=
"date" type=
"DateTime" default=
"wxDefaultDateTime"/>
24329 <method name=
"GetLowerDateLimit" type=
"DateTime" overloaded=
"no">
24330 <autodoc>GetLowerDateLimit() -
> DateTime
</autodoc>
24331 <docstring>get the range in which selection can occur
</docstring>
24333 <method name=
"GetUpperDateLimit" type=
"DateTime" overloaded=
"no">
24334 <autodoc>GetUpperDateLimit() -
> DateTime
</autodoc>
24335 <docstring>get the range in which selection can occur
</docstring>
24337 <method name=
"SetDateRange" type=
"bool" overloaded=
"no">
24338 <autodoc>SetDateRange(DateTime lowerdate=DefaultDateTime, DateTime upperdate=DefaultDateTime) -
> bool
</autodoc>
24339 <docstring>set the range in which selection can occur
</docstring>
24341 <param name=
"lowerdate" type=
"DateTime" default=
"wxDefaultDateTime"/>
24342 <param name=
"upperdate" type=
"DateTime" default=
"wxDefaultDateTime"/>
24345 <method name=
"EnableYearChange" type=
"" overloaded=
"no">
24346 <autodoc>EnableYearChange(bool enable=True)
</autodoc>
24347 <docstring>This function should be used instead of changing CAL_NO_YEAR_CHANGE
24348 style bit directly. It allows or disallows the user to change the year
24349 interactively.
</docstring>
24351 <param name=
"enable" type=
"bool" default=
"True"/>
24354 <method name=
"EnableMonthChange" type=
"" overloaded=
"no">
24355 <autodoc>EnableMonthChange(bool enable=True)
</autodoc>
24356 <docstring>This function should be used instead of changing CAL_NO_MONTH_CHANGE style
24357 bit. It allows or disallows the user to change the month interactively. Note
24358 that if the month can not be changed, the year can not be changed either.
</docstring>
24360 <param name=
"enable" type=
"bool" default=
"True"/>
24363 <method name=
"EnableHolidayDisplay" type=
"" overloaded=
"no">
24364 <autodoc>EnableHolidayDisplay(bool display=True)
</autodoc>
24365 <docstring>This function should be used instead of changing CAL_SHOW_HOLIDAYS style
24366 bit directly. It enables or disables the special highlighting of the holidays.
</docstring>
24368 <param name=
"display" type=
"bool" default=
"True"/>
24371 <method name=
"SetHeaderColours" type=
"" overloaded=
"no">
24372 <autodoc>SetHeaderColours(Colour colFg, Colour colBg)
</autodoc>
24373 <docstring>header colours are used for painting the weekdays at the top
</docstring>
24375 <param name=
"colFg" type=
"Colour" default=
""/>
24376 <param name=
"colBg" type=
"Colour" default=
""/>
24379 <method name=
"GetHeaderColourFg" type=
"Colour" overloaded=
"no">
24380 <autodoc>GetHeaderColourFg() -
> Colour
</autodoc>
24381 <docstring>header colours are used for painting the weekdays at the top
</docstring>
24383 <method name=
"GetHeaderColourBg" type=
"Colour" overloaded=
"no">
24384 <autodoc>GetHeaderColourBg() -
> Colour
</autodoc>
24385 <docstring>header colours are used for painting the weekdays at the top
</docstring>
24387 <method name=
"SetHighlightColours" type=
"" overloaded=
"no">
24388 <autodoc>SetHighlightColours(Colour colFg, Colour colBg)
</autodoc>
24389 <docstring>highlight colour is used for the currently selected date
</docstring>
24391 <param name=
"colFg" type=
"Colour" default=
""/>
24392 <param name=
"colBg" type=
"Colour" default=
""/>
24395 <method name=
"GetHighlightColourFg" type=
"Colour" overloaded=
"no">
24396 <autodoc>GetHighlightColourFg() -
> Colour
</autodoc>
24397 <docstring>highlight colour is used for the currently selected date
</docstring>
24399 <method name=
"GetHighlightColourBg" type=
"Colour" overloaded=
"no">
24400 <autodoc>GetHighlightColourBg() -
> Colour
</autodoc>
24401 <docstring>highlight colour is used for the currently selected date
</docstring>
24403 <method name=
"SetHolidayColours" type=
"" overloaded=
"no">
24404 <autodoc>SetHolidayColours(Colour colFg, Colour colBg)
</autodoc>
24405 <docstring>holiday colour is used for the holidays (if CAL_SHOW_HOLIDAYS style is used)
</docstring>
24407 <param name=
"colFg" type=
"Colour" default=
""/>
24408 <param name=
"colBg" type=
"Colour" default=
""/>
24411 <method name=
"GetHolidayColourFg" type=
"Colour" overloaded=
"no">
24412 <autodoc>GetHolidayColourFg() -
> Colour
</autodoc>
24413 <docstring>holiday colour is used for the holidays (if CAL_SHOW_HOLIDAYS style is used)
</docstring>
24415 <method name=
"GetHolidayColourBg" type=
"Colour" overloaded=
"no">
24416 <autodoc>GetHolidayColourBg() -
> Colour
</autodoc>
24417 <docstring>holiday colour is used for the holidays (if CAL_SHOW_HOLIDAYS style is used)
</docstring>
24419 <method name=
"GetAttr" type=
"CalendarDateAttr" overloaded=
"no">
24420 <autodoc>GetAttr(size_t day) -
> CalendarDateAttr
</autodoc>
24421 <docstring>Returns the attribute for the given date (should be in the range
1..
.31).
24422 The returned value may be None
</docstring>
24424 <param name=
"day" type=
"size_t" default=
""/>
24427 <method name=
"SetAttr" type=
"" overloaded=
"no">
24428 <autodoc>SetAttr(size_t day, CalendarDateAttr attr)
</autodoc>
24429 <docstring>Associates the attribute with the specified date (in the range
1..
.31).
24430 If the attribute passed is None, the items attribute is cleared.
</docstring>
24432 <param name=
"day" type=
"size_t" default=
""/>
24433 <param name=
"attr" type=
"CalendarDateAttr" default=
""/>
24436 <method name=
"SetHoliday" type=
"" overloaded=
"no">
24437 <autodoc>SetHoliday(size_t day)
</autodoc>
24438 <docstring>Marks the specified day as being a holiday in the current month.
</docstring>
24440 <param name=
"day" type=
"size_t" default=
""/>
24443 <method name=
"ResetAttr" type=
"" overloaded=
"no">
24444 <autodoc>ResetAttr(size_t day)
</autodoc>
24445 <docstring>Clears any attributes associated with the given day (in the range
1..
.31).
</docstring>
24447 <param name=
"day" type=
"size_t" default=
""/>
24450 <method name=
"HitTest" type=
"PyObject" overloaded=
"no">
24451 <autodoc>HitTest(Point pos) -
> (result, date, weekday)
</autodoc>
24452 <docstring>Returns
3-tuple with information about the given position on the calendar
24453 control. The first value of the tuple is a result code and determines the
24454 validity of the remaining two values. The result codes are:
24456 CAL_HITTEST_NOWHERE: hit outside of anything
24457 CAL_HITTEST_HEADER: hit on the header, weekday is valid
24458 CAL_HITTEST_DAY: hit on a day in the calendar, date is set.
24461 <param name=
"pos" type=
"Point" default=
""/>
24464 <method name=
"GetMonthControl" type=
"Control" overloaded=
"no">
24465 <autodoc>GetMonthControl() -
> Control
</autodoc>
24466 <docstring>get the currently shown control for month
</docstring>
24468 <method name=
"GetYearControl" type=
"Control" overloaded=
"no">
24469 <autodoc>GetYearControl() -
> Control
</autodoc>
24470 <docstring>get the currently shown control for year
</docstring>
24474 <module name=
"grid">
24475 <import name=
"windows"/>
24476 <pythoncode> wx = core
</pythoncode>
24477 <class name=
"GridCellRenderer" oldname=
"wxGridCellRenderer" module=
"grid">
24478 <method name=
"_setOORInfo" type=
"" overloaded=
"no">
24479 <autodoc>_setOORInfo(PyObject _self)
</autodoc>
24481 <param name=
"_self" type=
"PyObject" default=
""/>
24484 <method name=
"SetParameters" type=
"" overloaded=
"no">
24485 <autodoc>SetParameters(String params)
</autodoc>
24487 <param name=
"params" type=
"String" default=
""/>
24490 <method name=
"IncRef" type=
"" overloaded=
"no">
24491 <autodoc>IncRef()
</autodoc>
24493 <method name=
"DecRef" type=
"" overloaded=
"no">
24494 <autodoc>DecRef()
</autodoc>
24496 <method name=
"Draw" type=
"" overloaded=
"no">
24497 <autodoc>Draw(Grid grid, GridCellAttr attr, DC dc, Rect rect, int row,
24498 int col, bool isSelected)
</autodoc>
24500 <param name=
"grid" type=
"wxGrid" default=
""/>
24501 <param name=
"attr" type=
"wxGridCellAttr" default=
""/>
24502 <param name=
"dc" type=
"DC" default=
""/>
24503 <param name=
"rect" type=
"Rect" default=
""/>
24504 <param name=
"row" type=
"int" default=
""/>
24505 <param name=
"col" type=
"int" default=
""/>
24506 <param name=
"isSelected" type=
"bool" default=
""/>
24509 <method name=
"GetBestSize" type=
"Size" overloaded=
"no">
24510 <autodoc>GetBestSize(Grid grid, GridCellAttr attr, DC dc, int row, int col) -
> Size
</autodoc>
24512 <param name=
"grid" type=
"wxGrid" default=
""/>
24513 <param name=
"attr" type=
"wxGridCellAttr" default=
""/>
24514 <param name=
"dc" type=
"DC" default=
""/>
24515 <param name=
"row" type=
"int" default=
""/>
24516 <param name=
"col" type=
"int" default=
""/>
24519 <method name=
"Clone" type=
"GridCellRenderer" overloaded=
"no">
24520 <autodoc>Clone() -
> GridCellRenderer
</autodoc>
24523 <class name=
"PyGridCellRenderer" oldname=
"wxPyGridCellRenderer" module=
"grid">
24524 <baseclass name=
"GridCellRenderer"/>
24525 <constructor name=
"PyGridCellRenderer" overloaded=
"no">
24526 <autodoc>__init__() -
> PyGridCellRenderer
</autodoc>
24528 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
24529 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
24531 <param name=
"self" type=
"PyObject" default=
""/>
24532 <param name=
"_class" type=
"PyObject" default=
""/>
24535 <method name=
"base_SetParameters" type=
"" overloaded=
"no">
24536 <autodoc>base_SetParameters(String params)
</autodoc>
24538 <param name=
"params" type=
"String" default=
""/>
24542 <class name=
"GridCellStringRenderer" oldname=
"wxGridCellStringRenderer" module=
"grid">
24543 <baseclass name=
"GridCellRenderer"/>
24544 <constructor name=
"GridCellStringRenderer" overloaded=
"no">
24545 <autodoc>__init__() -
> GridCellStringRenderer
</autodoc>
24548 <class name=
"GridCellNumberRenderer" oldname=
"wxGridCellNumberRenderer" module=
"grid">
24549 <baseclass name=
"GridCellStringRenderer"/>
24550 <constructor name=
"GridCellNumberRenderer" overloaded=
"no">
24551 <autodoc>__init__() -
> GridCellNumberRenderer
</autodoc>
24554 <class name=
"GridCellFloatRenderer" oldname=
"wxGridCellFloatRenderer" module=
"grid">
24555 <baseclass name=
"GridCellStringRenderer"/>
24556 <constructor name=
"GridCellFloatRenderer" overloaded=
"no">
24557 <autodoc>__init__(int width=-
1, int precision=-
1) -
> GridCellFloatRenderer
</autodoc>
24559 <param name=
"width" type=
"int" default=
"-1"/>
24560 <param name=
"precision" type=
"int" default=
"-1"/>
24563 <method name=
"GetWidth" type=
"int" overloaded=
"no">
24564 <autodoc>GetWidth() -
> int
</autodoc>
24566 <method name=
"SetWidth" type=
"" overloaded=
"no">
24567 <autodoc>SetWidth(int width)
</autodoc>
24569 <param name=
"width" type=
"int" default=
""/>
24572 <method name=
"GetPrecision" type=
"int" overloaded=
"no">
24573 <autodoc>GetPrecision() -
> int
</autodoc>
24575 <method name=
"SetPrecision" type=
"" overloaded=
"no">
24576 <autodoc>SetPrecision(int precision)
</autodoc>
24578 <param name=
"precision" type=
"int" default=
""/>
24582 <class name=
"GridCellBoolRenderer" oldname=
"wxGridCellBoolRenderer" module=
"grid">
24583 <baseclass name=
"GridCellRenderer"/>
24584 <constructor name=
"GridCellBoolRenderer" overloaded=
"no">
24585 <autodoc>__init__() -
> GridCellBoolRenderer
</autodoc>
24588 <class name=
"GridCellDateTimeRenderer" oldname=
"wxGridCellDateTimeRenderer" module=
"grid">
24589 <baseclass name=
"GridCellStringRenderer"/>
24590 <constructor name=
"GridCellDateTimeRenderer" overloaded=
"no">
24591 <autodoc>__init__(String outformat=DateTimeFormatStr, String informat=DateTimeFormatStr) -
> GridCellDateTimeRenderer
</autodoc>
24593 <param name=
"outformat" type=
"String" default=
"wxPyDateTimeFormatStr"/>
24594 <param name=
"informat" type=
"String" default=
"wxPyDateTimeFormatStr"/>
24598 <class name=
"GridCellEnumRenderer" oldname=
"wxGridCellEnumRenderer" module=
"grid">
24599 <baseclass name=
"GridCellStringRenderer"/>
24600 <constructor name=
"GridCellEnumRenderer" overloaded=
"no">
24601 <autodoc>__init__(String choices=EmptyString) -
> GridCellEnumRenderer
</autodoc>
24603 <param name=
"choices" type=
"String" default=
"wxPyEmptyString"/>
24607 <class name=
"GridCellAutoWrapStringRenderer" oldname=
"wxGridCellAutoWrapStringRenderer" module=
"grid">
24608 <baseclass name=
"GridCellStringRenderer"/>
24609 <constructor name=
"GridCellAutoWrapStringRenderer" overloaded=
"no">
24610 <autodoc>__init__() -
> GridCellAutoWrapStringRenderer
</autodoc>
24613 <class name=
"GridCellEditor" oldname=
"wxGridCellEditor" module=
"grid">
24614 <method name=
"_setOORInfo" type=
"" overloaded=
"no">
24615 <autodoc>_setOORInfo(PyObject _self)
</autodoc>
24617 <param name=
"_self" type=
"PyObject" default=
""/>
24620 <method name=
"IsCreated" type=
"bool" overloaded=
"no">
24621 <autodoc>IsCreated() -
> bool
</autodoc>
24623 <method name=
"GetControl" type=
"Control" overloaded=
"no">
24624 <autodoc>GetControl() -
> Control
</autodoc>
24626 <method name=
"SetControl" type=
"" overloaded=
"no">
24627 <autodoc>SetControl(Control control)
</autodoc>
24629 <param name=
"control" type=
"Control" default=
""/>
24632 <method name=
"GetCellAttr" type=
"wxGridCellAttr" overloaded=
"no">
24633 <autodoc>GetCellAttr() -
> GridCellAttr
</autodoc>
24635 <method name=
"SetCellAttr" type=
"" overloaded=
"no">
24636 <autodoc>SetCellAttr(GridCellAttr attr)
</autodoc>
24638 <param name=
"attr" type=
"wxGridCellAttr" default=
""/>
24641 <method name=
"SetParameters" type=
"" overloaded=
"no">
24642 <autodoc>SetParameters(String params)
</autodoc>
24644 <param name=
"params" type=
"String" default=
""/>
24647 <method name=
"IncRef" type=
"" overloaded=
"no">
24648 <autodoc>IncRef()
</autodoc>
24650 <method name=
"DecRef" type=
"" overloaded=
"no">
24651 <autodoc>DecRef()
</autodoc>
24653 <method name=
"Create" type=
"" overloaded=
"no">
24654 <autodoc>Create(Window parent, int id, EvtHandler evtHandler)
</autodoc>
24656 <param name=
"parent" type=
"Window" default=
""/>
24657 <param name=
"id" type=
"int" default=
""/>
24658 <param name=
"evtHandler" type=
"EvtHandler" default=
""/>
24661 <method name=
"BeginEdit" type=
"" overloaded=
"no">
24662 <autodoc>BeginEdit(int row, int col, Grid grid)
</autodoc>
24664 <param name=
"row" type=
"int" default=
""/>
24665 <param name=
"col" type=
"int" default=
""/>
24666 <param name=
"grid" type=
"wxGrid" default=
""/>
24669 <method name=
"EndEdit" type=
"bool" overloaded=
"no">
24670 <autodoc>EndEdit(int row, int col, Grid grid) -
> bool
</autodoc>
24672 <param name=
"row" type=
"int" default=
""/>
24673 <param name=
"col" type=
"int" default=
""/>
24674 <param name=
"grid" type=
"wxGrid" default=
""/>
24677 <method name=
"Reset" type=
"" overloaded=
"no">
24678 <autodoc>Reset()
</autodoc>
24680 <method name=
"Clone" type=
"GridCellEditor" overloaded=
"no">
24681 <autodoc>Clone() -
> GridCellEditor
</autodoc>
24683 <method name=
"SetSize" type=
"" overloaded=
"no">
24684 <autodoc>SetSize(Rect rect)
</autodoc>
24686 <param name=
"rect" type=
"Rect" default=
""/>
24689 <method name=
"Show" type=
"" overloaded=
"no">
24690 <autodoc>Show(bool show, GridCellAttr attr=None)
</autodoc>
24692 <param name=
"show" type=
"bool" default=
""/>
24693 <param name=
"attr" type=
"wxGridCellAttr" default=
"NULL"/>
24696 <method name=
"PaintBackground" type=
"" overloaded=
"no">
24697 <autodoc>PaintBackground(Rect rectCell, GridCellAttr attr)
</autodoc>
24699 <param name=
"rectCell" type=
"Rect" default=
""/>
24700 <param name=
"attr" type=
"wxGridCellAttr" default=
""/>
24703 <method name=
"IsAcceptedKey" type=
"bool" overloaded=
"no">
24704 <autodoc>IsAcceptedKey(KeyEvent event) -
> bool
</autodoc>
24706 <param name=
"event" type=
"KeyEvent" default=
""/>
24709 <method name=
"StartingKey" type=
"" overloaded=
"no">
24710 <autodoc>StartingKey(KeyEvent event)
</autodoc>
24712 <param name=
"event" type=
"KeyEvent" default=
""/>
24715 <method name=
"StartingClick" type=
"" overloaded=
"no">
24716 <autodoc>StartingClick()
</autodoc>
24718 <method name=
"HandleReturn" type=
"" overloaded=
"no">
24719 <autodoc>HandleReturn(KeyEvent event)
</autodoc>
24721 <param name=
"event" type=
"KeyEvent" default=
""/>
24724 <method name=
"Destroy" type=
"" overloaded=
"no">
24725 <autodoc>Destroy()
</autodoc>
24728 <class name=
"PyGridCellEditor" oldname=
"wxPyGridCellEditor" module=
"grid">
24729 <baseclass name=
"GridCellEditor"/>
24730 <constructor name=
"PyGridCellEditor" overloaded=
"no">
24731 <autodoc>__init__() -
> PyGridCellEditor
</autodoc>
24733 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
24734 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
24736 <param name=
"self" type=
"PyObject" default=
""/>
24737 <param name=
"_class" type=
"PyObject" default=
""/>
24740 <method name=
"base_SetSize" type=
"" overloaded=
"no">
24741 <autodoc>base_SetSize(Rect rect)
</autodoc>
24743 <param name=
"rect" type=
"Rect" default=
""/>
24746 <method name=
"base_Show" type=
"" overloaded=
"no">
24747 <autodoc>base_Show(bool show, GridCellAttr attr=None)
</autodoc>
24749 <param name=
"show" type=
"bool" default=
""/>
24750 <param name=
"attr" type=
"wxGridCellAttr" default=
"NULL"/>
24753 <method name=
"base_PaintBackground" type=
"" overloaded=
"no">
24754 <autodoc>base_PaintBackground(Rect rectCell, GridCellAttr attr)
</autodoc>
24756 <param name=
"rectCell" type=
"Rect" default=
""/>
24757 <param name=
"attr" type=
"wxGridCellAttr" default=
""/>
24760 <method name=
"base_IsAcceptedKey" type=
"bool" overloaded=
"no">
24761 <autodoc>base_IsAcceptedKey(KeyEvent event) -
> bool
</autodoc>
24763 <param name=
"event" type=
"KeyEvent" default=
""/>
24766 <method name=
"base_StartingKey" type=
"" overloaded=
"no">
24767 <autodoc>base_StartingKey(KeyEvent event)
</autodoc>
24769 <param name=
"event" type=
"KeyEvent" default=
""/>
24772 <method name=
"base_StartingClick" type=
"" overloaded=
"no">
24773 <autodoc>base_StartingClick()
</autodoc>
24775 <method name=
"base_HandleReturn" type=
"" overloaded=
"no">
24776 <autodoc>base_HandleReturn(KeyEvent event)
</autodoc>
24778 <param name=
"event" type=
"KeyEvent" default=
""/>
24781 <method name=
"base_Destroy" type=
"" overloaded=
"no">
24782 <autodoc>base_Destroy()
</autodoc>
24784 <method name=
"base_SetParameters" type=
"" overloaded=
"no">
24785 <autodoc>base_SetParameters(String params)
</autodoc>
24787 <param name=
"params" type=
"String" default=
""/>
24791 <class name=
"GridCellTextEditor" oldname=
"wxGridCellTextEditor" module=
"grid">
24792 <baseclass name=
"GridCellEditor"/>
24793 <constructor name=
"GridCellTextEditor" overloaded=
"no">
24794 <autodoc>__init__() -
> GridCellTextEditor
</autodoc>
24796 <method name=
"GetValue" type=
"String" overloaded=
"no">
24797 <autodoc>GetValue() -
> String
</autodoc>
24800 <class name=
"GridCellNumberEditor" oldname=
"wxGridCellNumberEditor" module=
"grid">
24801 <baseclass name=
"GridCellTextEditor"/>
24802 <constructor name=
"GridCellNumberEditor" overloaded=
"no">
24803 <autodoc>__init__(int min=-
1, int max=-
1) -
> GridCellNumberEditor
</autodoc>
24805 <param name=
"min" type=
"int" default=
"-1"/>
24806 <param name=
"max" type=
"int" default=
"-1"/>
24809 <method name=
"GetValue" type=
"String" overloaded=
"no">
24810 <autodoc>GetValue() -
> String
</autodoc>
24813 <class name=
"GridCellFloatEditor" oldname=
"wxGridCellFloatEditor" module=
"grid">
24814 <baseclass name=
"GridCellTextEditor"/>
24815 <constructor name=
"GridCellFloatEditor" overloaded=
"no">
24816 <autodoc>__init__() -
> GridCellFloatEditor
</autodoc>
24818 <method name=
"GetValue" type=
"String" overloaded=
"no">
24819 <autodoc>GetValue() -
> String
</autodoc>
24822 <class name=
"GridCellBoolEditor" oldname=
"wxGridCellBoolEditor" module=
"grid">
24823 <baseclass name=
"GridCellEditor"/>
24824 <constructor name=
"GridCellBoolEditor" overloaded=
"no">
24825 <autodoc>__init__() -
> GridCellBoolEditor
</autodoc>
24827 <method name=
"GetValue" type=
"String" overloaded=
"no">
24828 <autodoc>GetValue() -
> String
</autodoc>
24831 <class name=
"GridCellChoiceEditor" oldname=
"wxGridCellChoiceEditor" module=
"grid">
24832 <baseclass name=
"GridCellEditor"/>
24833 <constructor name=
"GridCellChoiceEditor" overloaded=
"no">
24834 <autodoc>__init__(int choices=
0, String choices_array=None, bool allowOthers=False) -
> GridCellChoiceEditor
</autodoc>
24836 <param name=
"choices" type=
"int" default=
"0"/>
24837 <param name=
"choices_array" type=
"String" default=
"NULL"/>
24838 <param name=
"allowOthers" type=
"bool" default=
"False"/>
24841 <method name=
"GetValue" type=
"String" overloaded=
"no">
24842 <autodoc>GetValue() -
> String
</autodoc>
24845 <class name=
"GridCellEnumEditor" oldname=
"wxGridCellEnumEditor" module=
"grid">
24846 <baseclass name=
"GridCellChoiceEditor"/>
24847 <constructor name=
"GridCellEnumEditor" overloaded=
"no">
24848 <autodoc>__init__(String choices=EmptyString) -
> GridCellEnumEditor
</autodoc>
24850 <param name=
"choices" type=
"String" default=
"wxPyEmptyString"/>
24853 <method name=
"GetValue" type=
"String" overloaded=
"no">
24854 <autodoc>GetValue() -
> String
</autodoc>
24857 <class name=
"GridCellAutoWrapStringEditor" oldname=
"wxGridCellAutoWrapStringEditor" module=
"grid">
24858 <baseclass name=
"GridCellTextEditor"/>
24859 <constructor name=
"GridCellAutoWrapStringEditor" overloaded=
"no">
24860 <autodoc>__init__() -
> GridCellAutoWrapStringEditor
</autodoc>
24862 <method name=
"GetValue" type=
"String" overloaded=
"no">
24863 <autodoc>GetValue() -
> String
</autodoc>
24866 <class name=
"GridCellAttr" oldname=
"wxGridCellAttr" module=
"grid">
24867 <constructor name=
"GridCellAttr" overloaded=
"no">
24868 <autodoc>__init__(GridCellAttr attrDefault=None) -
> GridCellAttr
</autodoc>
24870 <param name=
"attrDefault" type=
"GridCellAttr" default=
"NULL"/>
24873 <method name=
"_setOORInfo" type=
"" overloaded=
"no">
24874 <autodoc>_setOORInfo(PyObject _self)
</autodoc>
24876 <param name=
"_self" type=
"PyObject" default=
""/>
24879 <method name=
"Clone" type=
"GridCellAttr" overloaded=
"no">
24880 <autodoc>Clone() -
> GridCellAttr
</autodoc>
24882 <method name=
"MergeWith" type=
"" overloaded=
"no">
24883 <autodoc>MergeWith(GridCellAttr mergefrom)
</autodoc>
24885 <param name=
"mergefrom" type=
"GridCellAttr" default=
""/>
24888 <method name=
"IncRef" type=
"" overloaded=
"no">
24889 <autodoc>IncRef()
</autodoc>
24891 <method name=
"DecRef" type=
"" overloaded=
"no">
24892 <autodoc>DecRef()
</autodoc>
24894 <method name=
"SetTextColour" type=
"" overloaded=
"no">
24895 <autodoc>SetTextColour(Colour colText)
</autodoc>
24897 <param name=
"colText" type=
"Colour" default=
""/>
24900 <method name=
"SetBackgroundColour" type=
"" overloaded=
"no">
24901 <autodoc>SetBackgroundColour(Colour colBack)
</autodoc>
24903 <param name=
"colBack" type=
"Colour" default=
""/>
24906 <method name=
"SetFont" type=
"" overloaded=
"no">
24907 <autodoc>SetFont(Font font)
</autodoc>
24909 <param name=
"font" type=
"Font" default=
""/>
24912 <method name=
"SetAlignment" type=
"" overloaded=
"no">
24913 <autodoc>SetAlignment(int hAlign, int vAlign)
</autodoc>
24915 <param name=
"hAlign" type=
"int" default=
""/>
24916 <param name=
"vAlign" type=
"int" default=
""/>
24919 <method name=
"SetSize" type=
"" overloaded=
"no">
24920 <autodoc>SetSize(int num_rows, int num_cols)
</autodoc>
24922 <param name=
"num_rows" type=
"int" default=
""/>
24923 <param name=
"num_cols" type=
"int" default=
""/>
24926 <method name=
"SetOverflow" type=
"" overloaded=
"no">
24927 <autodoc>SetOverflow(bool allow=True)
</autodoc>
24929 <param name=
"allow" type=
"bool" default=
"True"/>
24932 <method name=
"SetReadOnly" type=
"" overloaded=
"no">
24933 <autodoc>SetReadOnly(bool isReadOnly=True)
</autodoc>
24935 <param name=
"isReadOnly" type=
"bool" default=
"True"/>
24938 <method name=
"SetRenderer" type=
"" overloaded=
"no">
24939 <autodoc>SetRenderer(GridCellRenderer renderer)
</autodoc>
24941 <param name=
"renderer" type=
"GridCellRenderer" default=
""/>
24944 <method name=
"SetEditor" type=
"" overloaded=
"no">
24945 <autodoc>SetEditor(GridCellEditor editor)
</autodoc>
24947 <param name=
"editor" type=
"GridCellEditor" default=
""/>
24950 <method name=
"SetKind" type=
"" overloaded=
"no">
24951 <autodoc>SetKind(int kind)
</autodoc>
24953 <param name=
"kind" type=
"wxGridCellAttr::wxAttrKind" default=
""/>
24956 <method name=
"HasTextColour" type=
"bool" overloaded=
"no">
24957 <autodoc>HasTextColour() -
> bool
</autodoc>
24959 <method name=
"HasBackgroundColour" type=
"bool" overloaded=
"no">
24960 <autodoc>HasBackgroundColour() -
> bool
</autodoc>
24962 <method name=
"HasFont" type=
"bool" overloaded=
"no">
24963 <autodoc>HasFont() -
> bool
</autodoc>
24965 <method name=
"HasAlignment" type=
"bool" overloaded=
"no">
24966 <autodoc>HasAlignment() -
> bool
</autodoc>
24968 <method name=
"HasRenderer" type=
"bool" overloaded=
"no">
24969 <autodoc>HasRenderer() -
> bool
</autodoc>
24971 <method name=
"HasEditor" type=
"bool" overloaded=
"no">
24972 <autodoc>HasEditor() -
> bool
</autodoc>
24974 <method name=
"HasReadWriteMode" type=
"bool" overloaded=
"no">
24975 <autodoc>HasReadWriteMode() -
> bool
</autodoc>
24977 <method name=
"HasOverflowMode" type=
"bool" overloaded=
"no">
24978 <autodoc>HasOverflowMode() -
> bool
</autodoc>
24980 <method name=
"GetTextColour" type=
"Colour" overloaded=
"no">
24981 <autodoc>GetTextColour() -
> Colour
</autodoc>
24983 <method name=
"GetBackgroundColour" type=
"Colour" overloaded=
"no">
24984 <autodoc>GetBackgroundColour() -
> Colour
</autodoc>
24986 <method name=
"GetFont" type=
"Font" overloaded=
"no">
24987 <autodoc>GetFont() -
> Font
</autodoc>
24989 <method name=
"GetAlignment" type=
"" overloaded=
"no">
24990 <autodoc>GetAlignment() -
> (hAlign, vAlign)
</autodoc>
24992 <param name=
"OUTPUT" type=
"int" default=
""/>
24993 <param name=
"OUTPUT" type=
"int" default=
""/>
24996 <method name=
"GetSize" type=
"" overloaded=
"no">
24997 <autodoc>GetSize() -
> (num_rows, num_cols)
</autodoc>
24999 <param name=
"OUTPUT" type=
"int" default=
""/>
25000 <param name=
"OUTPUT" type=
"int" default=
""/>
25003 <method name=
"GetOverflow" type=
"bool" overloaded=
"no">
25004 <autodoc>GetOverflow() -
> bool
</autodoc>
25006 <method name=
"GetRenderer" type=
"GridCellRenderer" overloaded=
"no">
25007 <autodoc>GetRenderer(Grid grid, int row, int col) -
> GridCellRenderer
</autodoc>
25009 <param name=
"grid" type=
"wxGrid" default=
""/>
25010 <param name=
"row" type=
"int" default=
""/>
25011 <param name=
"col" type=
"int" default=
""/>
25014 <method name=
"GetEditor" type=
"GridCellEditor" overloaded=
"no">
25015 <autodoc>GetEditor(Grid grid, int row, int col) -
> GridCellEditor
</autodoc>
25017 <param name=
"grid" type=
"wxGrid" default=
""/>
25018 <param name=
"row" type=
"int" default=
""/>
25019 <param name=
"col" type=
"int" default=
""/>
25022 <method name=
"IsReadOnly" type=
"bool" overloaded=
"no">
25023 <autodoc>IsReadOnly() -
> bool
</autodoc>
25025 <method name=
"SetDefAttr" type=
"" overloaded=
"no">
25026 <autodoc>SetDefAttr(GridCellAttr defAttr)
</autodoc>
25028 <param name=
"defAttr" type=
"GridCellAttr" default=
""/>
25032 <class name=
"GridCellAttrProvider" oldname=
"wxGridCellAttrProvider" module=
"grid">
25033 <constructor name=
"GridCellAttrProvider" overloaded=
"no">
25034 <autodoc>__init__() -
> GridCellAttrProvider
</autodoc>
25036 <method name=
"_setOORInfo" type=
"" overloaded=
"no">
25037 <autodoc>_setOORInfo(PyObject _self)
</autodoc>
25039 <param name=
"_self" type=
"PyObject" default=
""/>
25042 <method name=
"GetAttr" type=
"GridCellAttr" overloaded=
"no">
25043 <autodoc>GetAttr(int row, int col, int kind) -
> GridCellAttr
</autodoc>
25045 <param name=
"row" type=
"int" default=
""/>
25046 <param name=
"col" type=
"int" default=
""/>
25047 <param name=
"kind" type=
"wxGridCellAttr::wxAttrKind" default=
""/>
25050 <method name=
"SetAttr" type=
"" overloaded=
"no">
25051 <autodoc>SetAttr(GridCellAttr attr, int row, int col)
</autodoc>
25053 <param name=
"attr" type=
"GridCellAttr" default=
""/>
25054 <param name=
"row" type=
"int" default=
""/>
25055 <param name=
"col" type=
"int" default=
""/>
25058 <method name=
"SetRowAttr" type=
"" overloaded=
"no">
25059 <autodoc>SetRowAttr(GridCellAttr attr, int row)
</autodoc>
25061 <param name=
"attr" type=
"GridCellAttr" default=
""/>
25062 <param name=
"row" type=
"int" default=
""/>
25065 <method name=
"SetColAttr" type=
"" overloaded=
"no">
25066 <autodoc>SetColAttr(GridCellAttr attr, int col)
</autodoc>
25068 <param name=
"attr" type=
"GridCellAttr" default=
""/>
25069 <param name=
"col" type=
"int" default=
""/>
25072 <method name=
"UpdateAttrRows" type=
"" overloaded=
"no">
25073 <autodoc>UpdateAttrRows(size_t pos, int numRows)
</autodoc>
25075 <param name=
"pos" type=
"size_t" default=
""/>
25076 <param name=
"numRows" type=
"int" default=
""/>
25079 <method name=
"UpdateAttrCols" type=
"" overloaded=
"no">
25080 <autodoc>UpdateAttrCols(size_t pos, int numCols)
</autodoc>
25082 <param name=
"pos" type=
"size_t" default=
""/>
25083 <param name=
"numCols" type=
"int" default=
""/>
25087 <class name=
"PyGridCellAttrProvider" oldname=
"wxPyGridCellAttrProvider" module=
"grid">
25088 <baseclass name=
"GridCellAttrProvider"/>
25089 <constructor name=
"PyGridCellAttrProvider" overloaded=
"no">
25090 <autodoc>__init__() -
> PyGridCellAttrProvider
</autodoc>
25092 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
25093 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
25095 <param name=
"self" type=
"PyObject" default=
""/>
25096 <param name=
"_class" type=
"PyObject" default=
""/>
25099 <method name=
"base_GetAttr" type=
"GridCellAttr" overloaded=
"no">
25100 <autodoc>base_GetAttr(int row, int col, int kind) -
> GridCellAttr
</autodoc>
25102 <param name=
"row" type=
"int" default=
""/>
25103 <param name=
"col" type=
"int" default=
""/>
25104 <param name=
"kind" type=
"wxGridCellAttr::wxAttrKind" default=
""/>
25107 <method name=
"base_SetAttr" type=
"" overloaded=
"no">
25108 <autodoc>base_SetAttr(GridCellAttr attr, int row, int col)
</autodoc>
25110 <param name=
"attr" type=
"GridCellAttr" default=
""/>
25111 <param name=
"row" type=
"int" default=
""/>
25112 <param name=
"col" type=
"int" default=
""/>
25115 <method name=
"base_SetRowAttr" type=
"" overloaded=
"no">
25116 <autodoc>base_SetRowAttr(GridCellAttr attr, int row)
</autodoc>
25118 <param name=
"attr" type=
"GridCellAttr" default=
""/>
25119 <param name=
"row" type=
"int" default=
""/>
25122 <method name=
"base_SetColAttr" type=
"" overloaded=
"no">
25123 <autodoc>base_SetColAttr(GridCellAttr attr, int col)
</autodoc>
25125 <param name=
"attr" type=
"GridCellAttr" default=
""/>
25126 <param name=
"col" type=
"int" default=
""/>
25130 <class name=
"GridTableBase" oldname=
"wxGridTableBase" module=
"grid">
25131 <baseclass name=
"Object"/>
25132 <method name=
"_setOORInfo" type=
"" overloaded=
"no">
25133 <autodoc>_setOORInfo(PyObject _self)
</autodoc>
25135 <param name=
"_self" type=
"PyObject" default=
""/>
25138 <method name=
"SetAttrProvider" type=
"" overloaded=
"no">
25139 <autodoc>SetAttrProvider(GridCellAttrProvider attrProvider)
</autodoc>
25141 <param name=
"attrProvider" type=
"GridCellAttrProvider" default=
""/>
25144 <method name=
"GetAttrProvider" type=
"GridCellAttrProvider" overloaded=
"no">
25145 <autodoc>GetAttrProvider() -
> GridCellAttrProvider
</autodoc>
25147 <method name=
"SetView" type=
"" overloaded=
"no">
25148 <autodoc>SetView(Grid grid)
</autodoc>
25150 <param name=
"grid" type=
"wxGrid" default=
""/>
25153 <method name=
"GetView" type=
"wxGrid" overloaded=
"no">
25154 <autodoc>GetView() -
> Grid
</autodoc>
25156 <method name=
"GetNumberRows" type=
"int" overloaded=
"no">
25157 <autodoc>GetNumberRows() -
> int
</autodoc>
25159 <method name=
"GetNumberCols" type=
"int" overloaded=
"no">
25160 <autodoc>GetNumberCols() -
> int
</autodoc>
25162 <method name=
"IsEmptyCell" type=
"bool" overloaded=
"no">
25163 <autodoc>IsEmptyCell(int row, int col) -
> bool
</autodoc>
25165 <param name=
"row" type=
"int" default=
""/>
25166 <param name=
"col" type=
"int" default=
""/>
25169 <method name=
"GetValue" type=
"String" overloaded=
"no">
25170 <autodoc>GetValue(int row, int col) -
> String
</autodoc>
25172 <param name=
"row" type=
"int" default=
""/>
25173 <param name=
"col" type=
"int" default=
""/>
25176 <method name=
"SetValue" type=
"" overloaded=
"no">
25177 <autodoc>SetValue(int row, int col, String value)
</autodoc>
25179 <param name=
"row" type=
"int" default=
""/>
25180 <param name=
"col" type=
"int" default=
""/>
25181 <param name=
"value" type=
"String" default=
""/>
25184 <method name=
"GetTypeName" type=
"String" overloaded=
"no">
25185 <autodoc>GetTypeName(int row, int col) -
> String
</autodoc>
25187 <param name=
"row" type=
"int" default=
""/>
25188 <param name=
"col" type=
"int" default=
""/>
25191 <method name=
"CanGetValueAs" type=
"bool" overloaded=
"no">
25192 <autodoc>CanGetValueAs(int row, int col, String typeName) -
> bool
</autodoc>
25194 <param name=
"row" type=
"int" default=
""/>
25195 <param name=
"col" type=
"int" default=
""/>
25196 <param name=
"typeName" type=
"String" default=
""/>
25199 <method name=
"CanSetValueAs" type=
"bool" overloaded=
"no">
25200 <autodoc>CanSetValueAs(int row, int col, String typeName) -
> bool
</autodoc>
25202 <param name=
"row" type=
"int" default=
""/>
25203 <param name=
"col" type=
"int" default=
""/>
25204 <param name=
"typeName" type=
"String" default=
""/>
25207 <method name=
"GetValueAsLong" type=
"long" overloaded=
"no">
25208 <autodoc>GetValueAsLong(int row, int col) -
> long
</autodoc>
25210 <param name=
"row" type=
"int" default=
""/>
25211 <param name=
"col" type=
"int" default=
""/>
25214 <method name=
"GetValueAsDouble" type=
"double" overloaded=
"no">
25215 <autodoc>GetValueAsDouble(int row, int col) -
> double
</autodoc>
25217 <param name=
"row" type=
"int" default=
""/>
25218 <param name=
"col" type=
"int" default=
""/>
25221 <method name=
"GetValueAsBool" type=
"bool" overloaded=
"no">
25222 <autodoc>GetValueAsBool(int row, int col) -
> bool
</autodoc>
25224 <param name=
"row" type=
"int" default=
""/>
25225 <param name=
"col" type=
"int" default=
""/>
25228 <method name=
"SetValueAsLong" type=
"" overloaded=
"no">
25229 <autodoc>SetValueAsLong(int row, int col, long value)
</autodoc>
25231 <param name=
"row" type=
"int" default=
""/>
25232 <param name=
"col" type=
"int" default=
""/>
25233 <param name=
"value" type=
"long" default=
""/>
25236 <method name=
"SetValueAsDouble" type=
"" overloaded=
"no">
25237 <autodoc>SetValueAsDouble(int row, int col, double value)
</autodoc>
25239 <param name=
"row" type=
"int" default=
""/>
25240 <param name=
"col" type=
"int" default=
""/>
25241 <param name=
"value" type=
"double" default=
""/>
25244 <method name=
"SetValueAsBool" type=
"" overloaded=
"no">
25245 <autodoc>SetValueAsBool(int row, int col, bool value)
</autodoc>
25247 <param name=
"row" type=
"int" default=
""/>
25248 <param name=
"col" type=
"int" default=
""/>
25249 <param name=
"value" type=
"bool" default=
""/>
25252 <method name=
"Clear" type=
"" overloaded=
"no">
25253 <autodoc>Clear()
</autodoc>
25255 <method name=
"InsertRows" type=
"bool" overloaded=
"no">
25256 <autodoc>InsertRows(size_t pos=
0, size_t numRows=
1) -
> bool
</autodoc>
25258 <param name=
"pos" type=
"size_t" default=
"0"/>
25259 <param name=
"numRows" type=
"size_t" default=
"1"/>
25262 <method name=
"AppendRows" type=
"bool" overloaded=
"no">
25263 <autodoc>AppendRows(size_t numRows=
1) -
> bool
</autodoc>
25265 <param name=
"numRows" type=
"size_t" default=
"1"/>
25268 <method name=
"DeleteRows" type=
"bool" overloaded=
"no">
25269 <autodoc>DeleteRows(size_t pos=
0, size_t numRows=
1) -
> bool
</autodoc>
25271 <param name=
"pos" type=
"size_t" default=
"0"/>
25272 <param name=
"numRows" type=
"size_t" default=
"1"/>
25275 <method name=
"InsertCols" type=
"bool" overloaded=
"no">
25276 <autodoc>InsertCols(size_t pos=
0, size_t numCols=
1) -
> bool
</autodoc>
25278 <param name=
"pos" type=
"size_t" default=
"0"/>
25279 <param name=
"numCols" type=
"size_t" default=
"1"/>
25282 <method name=
"AppendCols" type=
"bool" overloaded=
"no">
25283 <autodoc>AppendCols(size_t numCols=
1) -
> bool
</autodoc>
25285 <param name=
"numCols" type=
"size_t" default=
"1"/>
25288 <method name=
"DeleteCols" type=
"bool" overloaded=
"no">
25289 <autodoc>DeleteCols(size_t pos=
0, size_t numCols=
1) -
> bool
</autodoc>
25291 <param name=
"pos" type=
"size_t" default=
"0"/>
25292 <param name=
"numCols" type=
"size_t" default=
"1"/>
25295 <method name=
"GetRowLabelValue" type=
"String" overloaded=
"no">
25296 <autodoc>GetRowLabelValue(int row) -
> String
</autodoc>
25298 <param name=
"row" type=
"int" default=
""/>
25301 <method name=
"GetColLabelValue" type=
"String" overloaded=
"no">
25302 <autodoc>GetColLabelValue(int col) -
> String
</autodoc>
25304 <param name=
"col" type=
"int" default=
""/>
25307 <method name=
"SetRowLabelValue" type=
"" overloaded=
"no">
25308 <autodoc>SetRowLabelValue(int row, String value)
</autodoc>
25310 <param name=
"row" type=
"int" default=
""/>
25311 <param name=
"value" type=
"String" default=
""/>
25314 <method name=
"SetColLabelValue" type=
"" overloaded=
"no">
25315 <autodoc>SetColLabelValue(int col, String value)
</autodoc>
25317 <param name=
"col" type=
"int" default=
""/>
25318 <param name=
"value" type=
"String" default=
""/>
25321 <method name=
"CanHaveAttributes" type=
"bool" overloaded=
"no">
25322 <autodoc>CanHaveAttributes() -
> bool
</autodoc>
25324 <method name=
"GetAttr" type=
"GridCellAttr" overloaded=
"no">
25325 <autodoc>GetAttr(int row, int col, int kind) -
> GridCellAttr
</autodoc>
25327 <param name=
"row" type=
"int" default=
""/>
25328 <param name=
"col" type=
"int" default=
""/>
25329 <param name=
"kind" type=
"wxGridCellAttr::wxAttrKind" default=
""/>
25332 <method name=
"SetAttr" type=
"" overloaded=
"no">
25333 <autodoc>SetAttr(GridCellAttr attr, int row, int col)
</autodoc>
25335 <param name=
"attr" type=
"GridCellAttr" default=
""/>
25336 <param name=
"row" type=
"int" default=
""/>
25337 <param name=
"col" type=
"int" default=
""/>
25340 <method name=
"SetRowAttr" type=
"" overloaded=
"no">
25341 <autodoc>SetRowAttr(GridCellAttr attr, int row)
</autodoc>
25343 <param name=
"attr" type=
"GridCellAttr" default=
""/>
25344 <param name=
"row" type=
"int" default=
""/>
25347 <method name=
"SetColAttr" type=
"" overloaded=
"no">
25348 <autodoc>SetColAttr(GridCellAttr attr, int col)
</autodoc>
25350 <param name=
"attr" type=
"GridCellAttr" default=
""/>
25351 <param name=
"col" type=
"int" default=
""/>
25355 <class name=
"PyGridTableBase" oldname=
"wxPyGridTableBase" module=
"grid">
25356 <baseclass name=
"GridTableBase"/>
25357 <constructor name=
"PyGridTableBase" overloaded=
"no">
25358 <autodoc>__init__() -
> PyGridTableBase
</autodoc>
25360 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
25361 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
25363 <param name=
"self" type=
"PyObject" default=
""/>
25364 <param name=
"_class" type=
"PyObject" default=
""/>
25367 <method name=
"Destroy" type=
"" overloaded=
"no">
25368 <autodoc>Destroy()
</autodoc>
25369 <docstring>Deletes the C++ object this Python object is a proxy for.
</docstring>
25371 <method name=
"base_GetTypeName" type=
"String" overloaded=
"no">
25372 <autodoc>base_GetTypeName(int row, int col) -
> String
</autodoc>
25374 <param name=
"row" type=
"int" default=
""/>
25375 <param name=
"col" type=
"int" default=
""/>
25378 <method name=
"base_CanGetValueAs" type=
"bool" overloaded=
"no">
25379 <autodoc>base_CanGetValueAs(int row, int col, String typeName) -
> bool
</autodoc>
25381 <param name=
"row" type=
"int" default=
""/>
25382 <param name=
"col" type=
"int" default=
""/>
25383 <param name=
"typeName" type=
"String" default=
""/>
25386 <method name=
"base_CanSetValueAs" type=
"bool" overloaded=
"no">
25387 <autodoc>base_CanSetValueAs(int row, int col, String typeName) -
> bool
</autodoc>
25389 <param name=
"row" type=
"int" default=
""/>
25390 <param name=
"col" type=
"int" default=
""/>
25391 <param name=
"typeName" type=
"String" default=
""/>
25394 <method name=
"base_Clear" type=
"" overloaded=
"no">
25395 <autodoc>base_Clear()
</autodoc>
25397 <method name=
"base_InsertRows" type=
"bool" overloaded=
"no">
25398 <autodoc>base_InsertRows(size_t pos=
0, size_t numRows=
1) -
> bool
</autodoc>
25400 <param name=
"pos" type=
"size_t" default=
"0"/>
25401 <param name=
"numRows" type=
"size_t" default=
"1"/>
25404 <method name=
"base_AppendRows" type=
"bool" overloaded=
"no">
25405 <autodoc>base_AppendRows(size_t numRows=
1) -
> bool
</autodoc>
25407 <param name=
"numRows" type=
"size_t" default=
"1"/>
25410 <method name=
"base_DeleteRows" type=
"bool" overloaded=
"no">
25411 <autodoc>base_DeleteRows(size_t pos=
0, size_t numRows=
1) -
> bool
</autodoc>
25413 <param name=
"pos" type=
"size_t" default=
"0"/>
25414 <param name=
"numRows" type=
"size_t" default=
"1"/>
25417 <method name=
"base_InsertCols" type=
"bool" overloaded=
"no">
25418 <autodoc>base_InsertCols(size_t pos=
0, size_t numCols=
1) -
> bool
</autodoc>
25420 <param name=
"pos" type=
"size_t" default=
"0"/>
25421 <param name=
"numCols" type=
"size_t" default=
"1"/>
25424 <method name=
"base_AppendCols" type=
"bool" overloaded=
"no">
25425 <autodoc>base_AppendCols(size_t numCols=
1) -
> bool
</autodoc>
25427 <param name=
"numCols" type=
"size_t" default=
"1"/>
25430 <method name=
"base_DeleteCols" type=
"bool" overloaded=
"no">
25431 <autodoc>base_DeleteCols(size_t pos=
0, size_t numCols=
1) -
> bool
</autodoc>
25433 <param name=
"pos" type=
"size_t" default=
"0"/>
25434 <param name=
"numCols" type=
"size_t" default=
"1"/>
25437 <method name=
"base_GetRowLabelValue" type=
"String" overloaded=
"no">
25438 <autodoc>base_GetRowLabelValue(int row) -
> String
</autodoc>
25440 <param name=
"row" type=
"int" default=
""/>
25443 <method name=
"base_GetColLabelValue" type=
"String" overloaded=
"no">
25444 <autodoc>base_GetColLabelValue(int col) -
> String
</autodoc>
25446 <param name=
"col" type=
"int" default=
""/>
25449 <method name=
"base_SetRowLabelValue" type=
"" overloaded=
"no">
25450 <autodoc>base_SetRowLabelValue(int row, String value)
</autodoc>
25452 <param name=
"row" type=
"int" default=
""/>
25453 <param name=
"value" type=
"String" default=
""/>
25456 <method name=
"base_SetColLabelValue" type=
"" overloaded=
"no">
25457 <autodoc>base_SetColLabelValue(int col, String value)
</autodoc>
25459 <param name=
"col" type=
"int" default=
""/>
25460 <param name=
"value" type=
"String" default=
""/>
25463 <method name=
"base_CanHaveAttributes" type=
"bool" overloaded=
"no">
25464 <autodoc>base_CanHaveAttributes() -
> bool
</autodoc>
25466 <method name=
"base_GetAttr" type=
"GridCellAttr" overloaded=
"no">
25467 <autodoc>base_GetAttr(int row, int col, int kind) -
> GridCellAttr
</autodoc>
25469 <param name=
"row" type=
"int" default=
""/>
25470 <param name=
"col" type=
"int" default=
""/>
25471 <param name=
"kind" type=
"wxGridCellAttr::wxAttrKind" default=
""/>
25474 <method name=
"base_SetAttr" type=
"" overloaded=
"no">
25475 <autodoc>base_SetAttr(GridCellAttr attr, int row, int col)
</autodoc>
25477 <param name=
"attr" type=
"GridCellAttr" default=
""/>
25478 <param name=
"row" type=
"int" default=
""/>
25479 <param name=
"col" type=
"int" default=
""/>
25482 <method name=
"base_SetRowAttr" type=
"" overloaded=
"no">
25483 <autodoc>base_SetRowAttr(GridCellAttr attr, int row)
</autodoc>
25485 <param name=
"attr" type=
"GridCellAttr" default=
""/>
25486 <param name=
"row" type=
"int" default=
""/>
25489 <method name=
"base_SetColAttr" type=
"" overloaded=
"no">
25490 <autodoc>base_SetColAttr(GridCellAttr attr, int col)
</autodoc>
25492 <param name=
"attr" type=
"GridCellAttr" default=
""/>
25493 <param name=
"col" type=
"int" default=
""/>
25497 <class name=
"GridStringTable" oldname=
"wxGridStringTable" module=
"grid">
25498 <baseclass name=
"GridTableBase"/>
25499 <constructor name=
"GridStringTable" overloaded=
"no">
25500 <autodoc>__init__(int numRows=
0, int numCols=
0) -
> GridStringTable
</autodoc>
25502 <param name=
"numRows" type=
"int" default=
"0"/>
25503 <param name=
"numCols" type=
"int" default=
"0"/>
25507 <class name=
"GridTableMessage" oldname=
"wxGridTableMessage" module=
"grid">
25508 <constructor name=
"GridTableMessage" overloaded=
"no">
25509 <autodoc>__init__(GridTableBase table, int id, int comInt1=-
1, int comInt2=-
1) -
> GridTableMessage
</autodoc>
25511 <param name=
"table" type=
"GridTableBase" default=
""/>
25512 <param name=
"id" type=
"int" default=
""/>
25513 <param name=
"comInt1" type=
"int" default=
"-1"/>
25514 <param name=
"comInt2" type=
"int" default=
"-1"/>
25517 <destructor name=
"~wxGridTableMessage" overloaded=
"no">
25518 <autodoc>__del__()
</autodoc>
25520 <method name=
"SetTableObject" type=
"" overloaded=
"no">
25521 <autodoc>SetTableObject(GridTableBase table)
</autodoc>
25523 <param name=
"table" type=
"GridTableBase" default=
""/>
25526 <method name=
"GetTableObject" type=
"GridTableBase" overloaded=
"no">
25527 <autodoc>GetTableObject() -
> GridTableBase
</autodoc>
25529 <method name=
"SetId" type=
"" overloaded=
"no">
25530 <autodoc>SetId(int id)
</autodoc>
25532 <param name=
"id" type=
"int" default=
""/>
25535 <method name=
"GetId" type=
"int" overloaded=
"no">
25536 <autodoc>GetId() -
> int
</autodoc>
25538 <method name=
"SetCommandInt" type=
"" overloaded=
"no">
25539 <autodoc>SetCommandInt(int comInt1)
</autodoc>
25541 <param name=
"comInt1" type=
"int" default=
""/>
25544 <method name=
"GetCommandInt" type=
"int" overloaded=
"no">
25545 <autodoc>GetCommandInt() -
> int
</autodoc>
25547 <method name=
"SetCommandInt2" type=
"" overloaded=
"no">
25548 <autodoc>SetCommandInt2(int comInt2)
</autodoc>
25550 <param name=
"comInt2" type=
"int" default=
""/>
25553 <method name=
"GetCommandInt2" type=
"int" overloaded=
"no">
25554 <autodoc>GetCommandInt2() -
> int
</autodoc>
25557 <class name=
"GridCellCoords" oldname=
"wxGridCellCoords" module=
"grid">
25558 <constructor name=
"GridCellCoords" overloaded=
"no">
25559 <autodoc>__init__(int r=-
1, int c=-
1) -
> GridCellCoords
</autodoc>
25561 <param name=
"r" type=
"int" default=
"-1"/>
25562 <param name=
"c" type=
"int" default=
"-1"/>
25565 <destructor name=
"~wxGridCellCoords" overloaded=
"no">
25566 <autodoc>__del__()
</autodoc>
25568 <method name=
"GetRow" type=
"int" overloaded=
"no">
25569 <autodoc>GetRow() -
> int
</autodoc>
25571 <method name=
"SetRow" type=
"" overloaded=
"no">
25572 <autodoc>SetRow(int n)
</autodoc>
25574 <param name=
"n" type=
"int" default=
""/>
25577 <method name=
"GetCol" type=
"int" overloaded=
"no">
25578 <autodoc>GetCol() -
> int
</autodoc>
25580 <method name=
"SetCol" type=
"" overloaded=
"no">
25581 <autodoc>SetCol(int n)
</autodoc>
25583 <param name=
"n" type=
"int" default=
""/>
25586 <method name=
"Set" type=
"" overloaded=
"no">
25587 <autodoc>Set(int row, int col)
</autodoc>
25589 <param name=
"row" type=
"int" default=
""/>
25590 <param name=
"col" type=
"int" default=
""/>
25593 <method name=
"__eq__" type=
"bool" overloaded=
"no">
25594 <autodoc>__eq__(GridCellCoords other) -
> bool
</autodoc>
25596 <param name=
"other" type=
"GridCellCoords" default=
""/>
25599 <method name=
"__ne__" type=
"bool" overloaded=
"no">
25600 <autodoc>__ne__(GridCellCoords other) -
> bool
</autodoc>
25602 <param name=
"other" type=
"GridCellCoords" default=
""/>
25605 <method name=
"asTuple" type=
"PyObject" overloaded=
"no">
25606 <autodoc>asTuple() -
> PyObject
</autodoc>
25609 <class name=
"Grid" oldname=
"wxGrid" module=
"grid">
25610 <baseclass name=
"ScrolledWindow"/>
25611 <constructor name=
"Grid" overloaded=
"no">
25612 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
25613 long style=WANTS_CHARS,
25614 String name=PanelNameStr) -
> Grid
</autodoc>
25616 <param name=
"parent" type=
"Window" default=
""/>
25617 <param name=
"id" type=
"int" default=
""/>
25618 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
25619 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
25620 <param name=
"style" type=
"long" default=
"wxWANTS_CHARS"/>
25621 <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/>
25624 <method name=
"CreateGrid" type=
"bool" overloaded=
"no">
25625 <autodoc>CreateGrid(int numRows, int numCols, WXGRIDSELECTIONMODES selmode=wxGridSelectCells) -
> bool
</autodoc>
25627 <param name=
"numRows" type=
"int" default=
""/>
25628 <param name=
"numCols" type=
"int" default=
""/>
25629 <param name=
"selmode" type=
"WXGRIDSELECTIONMODES" default=
"wxGrid::wxGridSelectCells"/>
25632 <method name=
"SetSelectionMode" type=
"" overloaded=
"no">
25633 <autodoc>SetSelectionMode(WXGRIDSELECTIONMODES selmode)
</autodoc>
25635 <param name=
"selmode" type=
"WXGRIDSELECTIONMODES" default=
""/>
25638 <method name=
"GetSelectionMode" type=
"WXGRIDSELECTIONMODES" overloaded=
"no">
25639 <autodoc>GetSelectionMode() -
> WXGRIDSELECTIONMODES
</autodoc>
25641 <method name=
"GetNumberRows" type=
"int" overloaded=
"no">
25642 <autodoc>GetNumberRows() -
> int
</autodoc>
25644 <method name=
"GetNumberCols" type=
"int" overloaded=
"no">
25645 <autodoc>GetNumberCols() -
> int
</autodoc>
25647 <method name=
"ProcessTableMessage" type=
"bool" overloaded=
"no">
25648 <autodoc>ProcessTableMessage(GridTableMessage ??) -
> bool
</autodoc>
25650 <param name=
"" type=
"GridTableMessage" default=
""/>
25653 <method name=
"GetTable" type=
"GridTableBase" overloaded=
"no">
25654 <autodoc>GetTable() -
> GridTableBase
</autodoc>
25656 <method name=
"SetTable" type=
"bool" overloaded=
"no">
25657 <autodoc>SetTable(GridTableBase table, bool takeOwnership=False, WXGRIDSELECTIONMODES selmode=wxGridSelectCells) -
> bool
</autodoc>
25659 <param name=
"table" type=
"GridTableBase" default=
""/>
25660 <param name=
"takeOwnership" type=
"bool" default=
"False"/>
25661 <param name=
"selmode" type=
"WXGRIDSELECTIONMODES" default=
"wxGrid::wxGridSelectCells"/>
25664 <method name=
"ClearGrid" type=
"" overloaded=
"no">
25665 <autodoc>ClearGrid()
</autodoc>
25667 <method name=
"InsertRows" type=
"bool" overloaded=
"no">
25668 <autodoc>InsertRows(int pos=
0, int numRows=
1, bool updateLabels=True) -
> bool
</autodoc>
25670 <param name=
"pos" type=
"int" default=
"0"/>
25671 <param name=
"numRows" type=
"int" default=
"1"/>
25672 <param name=
"updateLabels" type=
"bool" default=
"True"/>
25675 <method name=
"AppendRows" type=
"bool" overloaded=
"no">
25676 <autodoc>AppendRows(int numRows=
1, bool updateLabels=True) -
> bool
</autodoc>
25678 <param name=
"numRows" type=
"int" default=
"1"/>
25679 <param name=
"updateLabels" type=
"bool" default=
"True"/>
25682 <method name=
"DeleteRows" type=
"bool" overloaded=
"no">
25683 <autodoc>DeleteRows(int pos=
0, int numRows=
1, bool updateLabels=True) -
> bool
</autodoc>
25685 <param name=
"pos" type=
"int" default=
"0"/>
25686 <param name=
"numRows" type=
"int" default=
"1"/>
25687 <param name=
"updateLabels" type=
"bool" default=
"True"/>
25690 <method name=
"InsertCols" type=
"bool" overloaded=
"no">
25691 <autodoc>InsertCols(int pos=
0, int numCols=
1, bool updateLabels=True) -
> bool
</autodoc>
25693 <param name=
"pos" type=
"int" default=
"0"/>
25694 <param name=
"numCols" type=
"int" default=
"1"/>
25695 <param name=
"updateLabels" type=
"bool" default=
"True"/>
25698 <method name=
"AppendCols" type=
"bool" overloaded=
"no">
25699 <autodoc>AppendCols(int numCols=
1, bool updateLabels=True) -
> bool
</autodoc>
25701 <param name=
"numCols" type=
"int" default=
"1"/>
25702 <param name=
"updateLabels" type=
"bool" default=
"True"/>
25705 <method name=
"DeleteCols" type=
"bool" overloaded=
"no">
25706 <autodoc>DeleteCols(int pos=
0, int numCols=
1, bool updateLabels=True) -
> bool
</autodoc>
25708 <param name=
"pos" type=
"int" default=
"0"/>
25709 <param name=
"numCols" type=
"int" default=
"1"/>
25710 <param name=
"updateLabels" type=
"bool" default=
"True"/>
25713 <method name=
"DrawCellHighlight" type=
"" overloaded=
"no">
25714 <autodoc>DrawCellHighlight(DC dc, GridCellAttr attr)
</autodoc>
25716 <param name=
"dc" type=
"DC" default=
""/>
25717 <param name=
"attr" type=
"GridCellAttr" default=
""/>
25720 <method name=
"DrawTextRectangle" type=
"" overloaded=
"no">
25721 <autodoc>DrawTextRectangle(DC dc, String ??, Rect ??, int horizontalAlignment=LEFT,
25722 int verticalAlignment=TOP, int textOrientation=HORIZONTAL)
</autodoc>
25724 <param name=
"dc" type=
"DC" default=
""/>
25725 <param name=
"" type=
"String" default=
""/>
25726 <param name=
"" type=
"Rect" default=
""/>
25727 <param name=
"horizontalAlignment" type=
"int" default=
"wxLEFT"/>
25728 <param name=
"verticalAlignment" type=
"int" default=
"wxTOP"/>
25729 <param name=
"textOrientation" type=
"int" default=
"wxHORIZONTAL"/>
25732 <method name=
"GetTextBoxSize" type=
"" overloaded=
"no">
25733 <autodoc>GetTextBoxSize(DC dc, list lines) -
> (width, height)
</autodoc>
25735 <param name=
"dc" type=
"DC" default=
""/>
25736 <param name=
"lines" type=
"wxArrayString" default=
""/>
25737 <param name=
"OUTPUT" type=
"long" default=
""/>
25738 <param name=
"OUTPUT" type=
"long" default=
""/>
25741 <method name=
"BeginBatch" type=
"" overloaded=
"no">
25742 <autodoc>BeginBatch()
</autodoc>
25744 <method name=
"EndBatch" type=
"" overloaded=
"no">
25745 <autodoc>EndBatch()
</autodoc>
25747 <method name=
"GetBatchCount" type=
"int" overloaded=
"no">
25748 <autodoc>GetBatchCount() -
> int
</autodoc>
25750 <method name=
"ForceRefresh" type=
"" overloaded=
"no">
25751 <autodoc>ForceRefresh()
</autodoc>
25753 <method name=
"IsEditable" type=
"bool" overloaded=
"no">
25754 <autodoc>IsEditable() -
> bool
</autodoc>
25756 <method name=
"EnableEditing" type=
"" overloaded=
"no">
25757 <autodoc>EnableEditing(bool edit)
</autodoc>
25759 <param name=
"edit" type=
"bool" default=
""/>
25762 <method name=
"EnableCellEditControl" type=
"" overloaded=
"no">
25763 <autodoc>EnableCellEditControl(bool enable=True)
</autodoc>
25765 <param name=
"enable" type=
"bool" default=
"True"/>
25768 <method name=
"DisableCellEditControl" type=
"" overloaded=
"no">
25769 <autodoc>DisableCellEditControl()
</autodoc>
25771 <method name=
"CanEnableCellControl" type=
"bool" overloaded=
"no">
25772 <autodoc>CanEnableCellControl() -
> bool
</autodoc>
25774 <method name=
"IsCellEditControlEnabled" type=
"bool" overloaded=
"no">
25775 <autodoc>IsCellEditControlEnabled() -
> bool
</autodoc>
25777 <method name=
"IsCellEditControlShown" type=
"bool" overloaded=
"no">
25778 <autodoc>IsCellEditControlShown() -
> bool
</autodoc>
25780 <method name=
"IsCurrentCellReadOnly" type=
"bool" overloaded=
"no">
25781 <autodoc>IsCurrentCellReadOnly() -
> bool
</autodoc>
25783 <method name=
"ShowCellEditControl" type=
"" overloaded=
"no">
25784 <autodoc>ShowCellEditControl()
</autodoc>
25786 <method name=
"HideCellEditControl" type=
"" overloaded=
"no">
25787 <autodoc>HideCellEditControl()
</autodoc>
25789 <method name=
"SaveEditControlValue" type=
"" overloaded=
"no">
25790 <autodoc>SaveEditControlValue()
</autodoc>
25792 <method name=
"XYToCell" type=
"GridCellCoords" overloaded=
"no">
25793 <autodoc>XYToCell(int x, int y) -
> GridCellCoords
</autodoc>
25795 <param name=
"x" type=
"int" default=
""/>
25796 <param name=
"y" type=
"int" default=
""/>
25799 <method name=
"YToRow" type=
"int" overloaded=
"no">
25800 <autodoc>YToRow(int y) -
> int
</autodoc>
25802 <param name=
"y" type=
"int" default=
""/>
25805 <method name=
"XToCol" type=
"int" overloaded=
"no">
25806 <autodoc>XToCol(int x) -
> int
</autodoc>
25808 <param name=
"x" type=
"int" default=
""/>
25811 <method name=
"YToEdgeOfRow" type=
"int" overloaded=
"no">
25812 <autodoc>YToEdgeOfRow(int y) -
> int
</autodoc>
25814 <param name=
"y" type=
"int" default=
""/>
25817 <method name=
"XToEdgeOfCol" type=
"int" overloaded=
"no">
25818 <autodoc>XToEdgeOfCol(int x) -
> int
</autodoc>
25820 <param name=
"x" type=
"int" default=
""/>
25823 <method name=
"CellToRect" type=
"Rect" overloaded=
"no">
25824 <autodoc>CellToRect(int row, int col) -
> Rect
</autodoc>
25826 <param name=
"row" type=
"int" default=
""/>
25827 <param name=
"col" type=
"int" default=
""/>
25830 <method name=
"GetGridCursorRow" type=
"int" overloaded=
"no">
25831 <autodoc>GetGridCursorRow() -
> int
</autodoc>
25833 <method name=
"GetGridCursorCol" type=
"int" overloaded=
"no">
25834 <autodoc>GetGridCursorCol() -
> int
</autodoc>
25836 <method name=
"IsVisible" type=
"bool" overloaded=
"no">
25837 <autodoc>IsVisible(int row, int col, bool wholeCellVisible=True) -
> bool
</autodoc>
25839 <param name=
"row" type=
"int" default=
""/>
25840 <param name=
"col" type=
"int" default=
""/>
25841 <param name=
"wholeCellVisible" type=
"bool" default=
"True"/>
25844 <method name=
"MakeCellVisible" type=
"" overloaded=
"no">
25845 <autodoc>MakeCellVisible(int row, int col)
</autodoc>
25847 <param name=
"row" type=
"int" default=
""/>
25848 <param name=
"col" type=
"int" default=
""/>
25851 <method name=
"SetGridCursor" type=
"" overloaded=
"no">
25852 <autodoc>SetGridCursor(int row, int col)
</autodoc>
25854 <param name=
"row" type=
"int" default=
""/>
25855 <param name=
"col" type=
"int" default=
""/>
25858 <method name=
"MoveCursorUp" type=
"bool" overloaded=
"no">
25859 <autodoc>MoveCursorUp(bool expandSelection) -
> bool
</autodoc>
25861 <param name=
"expandSelection" type=
"bool" default=
""/>
25864 <method name=
"MoveCursorDown" type=
"bool" overloaded=
"no">
25865 <autodoc>MoveCursorDown(bool expandSelection) -
> bool
</autodoc>
25867 <param name=
"expandSelection" type=
"bool" default=
""/>
25870 <method name=
"MoveCursorLeft" type=
"bool" overloaded=
"no">
25871 <autodoc>MoveCursorLeft(bool expandSelection) -
> bool
</autodoc>
25873 <param name=
"expandSelection" type=
"bool" default=
""/>
25876 <method name=
"MoveCursorRight" type=
"bool" overloaded=
"no">
25877 <autodoc>MoveCursorRight(bool expandSelection) -
> bool
</autodoc>
25879 <param name=
"expandSelection" type=
"bool" default=
""/>
25882 <method name=
"MovePageDown" type=
"bool" overloaded=
"no">
25883 <autodoc>MovePageDown() -
> bool
</autodoc>
25885 <method name=
"MovePageUp" type=
"bool" overloaded=
"no">
25886 <autodoc>MovePageUp() -
> bool
</autodoc>
25888 <method name=
"MoveCursorUpBlock" type=
"bool" overloaded=
"no">
25889 <autodoc>MoveCursorUpBlock(bool expandSelection) -
> bool
</autodoc>
25891 <param name=
"expandSelection" type=
"bool" default=
""/>
25894 <method name=
"MoveCursorDownBlock" type=
"bool" overloaded=
"no">
25895 <autodoc>MoveCursorDownBlock(bool expandSelection) -
> bool
</autodoc>
25897 <param name=
"expandSelection" type=
"bool" default=
""/>
25900 <method name=
"MoveCursorLeftBlock" type=
"bool" overloaded=
"no">
25901 <autodoc>MoveCursorLeftBlock(bool expandSelection) -
> bool
</autodoc>
25903 <param name=
"expandSelection" type=
"bool" default=
""/>
25906 <method name=
"MoveCursorRightBlock" type=
"bool" overloaded=
"no">
25907 <autodoc>MoveCursorRightBlock(bool expandSelection) -
> bool
</autodoc>
25909 <param name=
"expandSelection" type=
"bool" default=
""/>
25912 <method name=
"GetDefaultRowLabelSize" type=
"int" overloaded=
"no">
25913 <autodoc>GetDefaultRowLabelSize() -
> int
</autodoc>
25915 <method name=
"GetRowLabelSize" type=
"int" overloaded=
"no">
25916 <autodoc>GetRowLabelSize() -
> int
</autodoc>
25918 <method name=
"GetDefaultColLabelSize" type=
"int" overloaded=
"no">
25919 <autodoc>GetDefaultColLabelSize() -
> int
</autodoc>
25921 <method name=
"GetColLabelSize" type=
"int" overloaded=
"no">
25922 <autodoc>GetColLabelSize() -
> int
</autodoc>
25924 <method name=
"GetLabelBackgroundColour" type=
"Colour" overloaded=
"no">
25925 <autodoc>GetLabelBackgroundColour() -
> Colour
</autodoc>
25927 <method name=
"GetLabelTextColour" type=
"Colour" overloaded=
"no">
25928 <autodoc>GetLabelTextColour() -
> Colour
</autodoc>
25930 <method name=
"GetLabelFont" type=
"Font" overloaded=
"no">
25931 <autodoc>GetLabelFont() -
> Font
</autodoc>
25933 <method name=
"GetRowLabelAlignment" type=
"" overloaded=
"no">
25934 <autodoc>GetRowLabelAlignment() -
> (horiz, vert)
</autodoc>
25936 <param name=
"OUTPUT" type=
"int" default=
""/>
25937 <param name=
"OUTPUT" type=
"int" default=
""/>
25940 <method name=
"GetColLabelAlignment" type=
"" overloaded=
"no">
25941 <autodoc>GetColLabelAlignment() -
> (horiz, vert)
</autodoc>
25943 <param name=
"OUTPUT" type=
"int" default=
""/>
25944 <param name=
"OUTPUT" type=
"int" default=
""/>
25947 <method name=
"GetColLabelTextOrientation" type=
"int" overloaded=
"no">
25948 <autodoc>GetColLabelTextOrientation() -
> int
</autodoc>
25950 <method name=
"GetRowLabelValue" type=
"String" overloaded=
"no">
25951 <autodoc>GetRowLabelValue(int row) -
> String
</autodoc>
25953 <param name=
"row" type=
"int" default=
""/>
25956 <method name=
"GetColLabelValue" type=
"String" overloaded=
"no">
25957 <autodoc>GetColLabelValue(int col) -
> String
</autodoc>
25959 <param name=
"col" type=
"int" default=
""/>
25962 <method name=
"GetGridLineColour" type=
"Colour" overloaded=
"no">
25963 <autodoc>GetGridLineColour() -
> Colour
</autodoc>
25965 <method name=
"GetCellHighlightColour" type=
"Colour" overloaded=
"no">
25966 <autodoc>GetCellHighlightColour() -
> Colour
</autodoc>
25968 <method name=
"GetCellHighlightPenWidth" type=
"int" overloaded=
"no">
25969 <autodoc>GetCellHighlightPenWidth() -
> int
</autodoc>
25971 <method name=
"GetCellHighlightROPenWidth" type=
"int" overloaded=
"no">
25972 <autodoc>GetCellHighlightROPenWidth() -
> int
</autodoc>
25974 <method name=
"SetRowLabelSize" type=
"" overloaded=
"no">
25975 <autodoc>SetRowLabelSize(int width)
</autodoc>
25977 <param name=
"width" type=
"int" default=
""/>
25980 <method name=
"SetColLabelSize" type=
"" overloaded=
"no">
25981 <autodoc>SetColLabelSize(int height)
</autodoc>
25983 <param name=
"height" type=
"int" default=
""/>
25986 <method name=
"SetLabelBackgroundColour" type=
"" overloaded=
"no">
25987 <autodoc>SetLabelBackgroundColour(Colour ??)
</autodoc>
25989 <param name=
"" type=
"Colour" default=
""/>
25992 <method name=
"SetLabelTextColour" type=
"" overloaded=
"no">
25993 <autodoc>SetLabelTextColour(Colour ??)
</autodoc>
25995 <param name=
"" type=
"Colour" default=
""/>
25998 <method name=
"SetLabelFont" type=
"" overloaded=
"no">
25999 <autodoc>SetLabelFont(Font ??)
</autodoc>
26001 <param name=
"" type=
"Font" default=
""/>
26004 <method name=
"SetRowLabelAlignment" type=
"" overloaded=
"no">
26005 <autodoc>SetRowLabelAlignment(int horiz, int vert)
</autodoc>
26007 <param name=
"horiz" type=
"int" default=
""/>
26008 <param name=
"vert" type=
"int" default=
""/>
26011 <method name=
"SetColLabelAlignment" type=
"" overloaded=
"no">
26012 <autodoc>SetColLabelAlignment(int horiz, int vert)
</autodoc>
26014 <param name=
"horiz" type=
"int" default=
""/>
26015 <param name=
"vert" type=
"int" default=
""/>
26018 <method name=
"SetColLabelTextOrientation" type=
"" overloaded=
"no">
26019 <autodoc>SetColLabelTextOrientation(int textOrientation)
</autodoc>
26021 <param name=
"textOrientation" type=
"int" default=
""/>
26024 <method name=
"SetRowLabelValue" type=
"" overloaded=
"no">
26025 <autodoc>SetRowLabelValue(int row, String ??)
</autodoc>
26027 <param name=
"row" type=
"int" default=
""/>
26028 <param name=
"" type=
"String" default=
""/>
26031 <method name=
"SetColLabelValue" type=
"" overloaded=
"no">
26032 <autodoc>SetColLabelValue(int col, String ??)
</autodoc>
26034 <param name=
"col" type=
"int" default=
""/>
26035 <param name=
"" type=
"String" default=
""/>
26038 <method name=
"SetGridLineColour" type=
"" overloaded=
"no">
26039 <autodoc>SetGridLineColour(Colour ??)
</autodoc>
26041 <param name=
"" type=
"Colour" default=
""/>
26044 <method name=
"SetCellHighlightColour" type=
"" overloaded=
"no">
26045 <autodoc>SetCellHighlightColour(Colour ??)
</autodoc>
26047 <param name=
"" type=
"Colour" default=
""/>
26050 <method name=
"SetCellHighlightPenWidth" type=
"" overloaded=
"no">
26051 <autodoc>SetCellHighlightPenWidth(int width)
</autodoc>
26053 <param name=
"width" type=
"int" default=
""/>
26056 <method name=
"SetCellHighlightROPenWidth" type=
"" overloaded=
"no">
26057 <autodoc>SetCellHighlightROPenWidth(int width)
</autodoc>
26059 <param name=
"width" type=
"int" default=
""/>
26062 <method name=
"EnableDragRowSize" type=
"" overloaded=
"no">
26063 <autodoc>EnableDragRowSize(bool enable=True)
</autodoc>
26065 <param name=
"enable" type=
"bool" default=
"True"/>
26068 <method name=
"DisableDragRowSize" type=
"" overloaded=
"no">
26069 <autodoc>DisableDragRowSize()
</autodoc>
26071 <method name=
"CanDragRowSize" type=
"bool" overloaded=
"no">
26072 <autodoc>CanDragRowSize() -
> bool
</autodoc>
26074 <method name=
"EnableDragColSize" type=
"" overloaded=
"no">
26075 <autodoc>EnableDragColSize(bool enable=True)
</autodoc>
26077 <param name=
"enable" type=
"bool" default=
"True"/>
26080 <method name=
"DisableDragColSize" type=
"" overloaded=
"no">
26081 <autodoc>DisableDragColSize()
</autodoc>
26083 <method name=
"CanDragColSize" type=
"bool" overloaded=
"no">
26084 <autodoc>CanDragColSize() -
> bool
</autodoc>
26086 <method name=
"EnableDragGridSize" type=
"" overloaded=
"no">
26087 <autodoc>EnableDragGridSize(bool enable=True)
</autodoc>
26089 <param name=
"enable" type=
"bool" default=
"True"/>
26092 <method name=
"DisableDragGridSize" type=
"" overloaded=
"no">
26093 <autodoc>DisableDragGridSize()
</autodoc>
26095 <method name=
"CanDragGridSize" type=
"bool" overloaded=
"no">
26096 <autodoc>CanDragGridSize() -
> bool
</autodoc>
26098 <method name=
"SetAttr" type=
"" overloaded=
"no">
26099 <autodoc>SetAttr(int row, int col, GridCellAttr attr)
</autodoc>
26101 <param name=
"row" type=
"int" default=
""/>
26102 <param name=
"col" type=
"int" default=
""/>
26103 <param name=
"attr" type=
"GridCellAttr" default=
""/>
26106 <method name=
"SetRowAttr" type=
"" overloaded=
"no">
26107 <autodoc>SetRowAttr(int row, GridCellAttr attr)
</autodoc>
26109 <param name=
"row" type=
"int" default=
""/>
26110 <param name=
"attr" type=
"GridCellAttr" default=
""/>
26113 <method name=
"SetColAttr" type=
"" overloaded=
"no">
26114 <autodoc>SetColAttr(int col, GridCellAttr attr)
</autodoc>
26116 <param name=
"col" type=
"int" default=
""/>
26117 <param name=
"attr" type=
"GridCellAttr" default=
""/>
26120 <method name=
"SetColFormatBool" type=
"" overloaded=
"no">
26121 <autodoc>SetColFormatBool(int col)
</autodoc>
26123 <param name=
"col" type=
"int" default=
""/>
26126 <method name=
"SetColFormatNumber" type=
"" overloaded=
"no">
26127 <autodoc>SetColFormatNumber(int col)
</autodoc>
26129 <param name=
"col" type=
"int" default=
""/>
26132 <method name=
"SetColFormatFloat" type=
"" overloaded=
"no">
26133 <autodoc>SetColFormatFloat(int col, int width=-
1, int precision=-
1)
</autodoc>
26135 <param name=
"col" type=
"int" default=
""/>
26136 <param name=
"width" type=
"int" default=
"-1"/>
26137 <param name=
"precision" type=
"int" default=
"-1"/>
26140 <method name=
"SetColFormatCustom" type=
"" overloaded=
"no">
26141 <autodoc>SetColFormatCustom(int col, String typeName)
</autodoc>
26143 <param name=
"col" type=
"int" default=
""/>
26144 <param name=
"typeName" type=
"String" default=
""/>
26147 <method name=
"EnableGridLines" type=
"" overloaded=
"no">
26148 <autodoc>EnableGridLines(bool enable=True)
</autodoc>
26150 <param name=
"enable" type=
"bool" default=
"True"/>
26153 <method name=
"GridLinesEnabled" type=
"bool" overloaded=
"no">
26154 <autodoc>GridLinesEnabled() -
> bool
</autodoc>
26156 <method name=
"GetDefaultRowSize" type=
"int" overloaded=
"no">
26157 <autodoc>GetDefaultRowSize() -
> int
</autodoc>
26159 <method name=
"GetRowSize" type=
"int" overloaded=
"no">
26160 <autodoc>GetRowSize(int row) -
> int
</autodoc>
26162 <param name=
"row" type=
"int" default=
""/>
26165 <method name=
"GetDefaultColSize" type=
"int" overloaded=
"no">
26166 <autodoc>GetDefaultColSize() -
> int
</autodoc>
26168 <method name=
"GetColSize" type=
"int" overloaded=
"no">
26169 <autodoc>GetColSize(int col) -
> int
</autodoc>
26171 <param name=
"col" type=
"int" default=
""/>
26174 <method name=
"GetDefaultCellBackgroundColour" type=
"Colour" overloaded=
"no">
26175 <autodoc>GetDefaultCellBackgroundColour() -
> Colour
</autodoc>
26177 <method name=
"GetCellBackgroundColour" type=
"Colour" overloaded=
"no">
26178 <autodoc>GetCellBackgroundColour(int row, int col) -
> Colour
</autodoc>
26180 <param name=
"row" type=
"int" default=
""/>
26181 <param name=
"col" type=
"int" default=
""/>
26184 <method name=
"GetDefaultCellTextColour" type=
"Colour" overloaded=
"no">
26185 <autodoc>GetDefaultCellTextColour() -
> Colour
</autodoc>
26187 <method name=
"GetCellTextColour" type=
"Colour" overloaded=
"no">
26188 <autodoc>GetCellTextColour(int row, int col) -
> Colour
</autodoc>
26190 <param name=
"row" type=
"int" default=
""/>
26191 <param name=
"col" type=
"int" default=
""/>
26194 <method name=
"GetDefaultCellFont" type=
"Font" overloaded=
"no">
26195 <autodoc>GetDefaultCellFont() -
> Font
</autodoc>
26197 <method name=
"GetCellFont" type=
"Font" overloaded=
"no">
26198 <autodoc>GetCellFont(int row, int col) -
> Font
</autodoc>
26200 <param name=
"row" type=
"int" default=
""/>
26201 <param name=
"col" type=
"int" default=
""/>
26204 <method name=
"GetDefaultCellAlignment" type=
"" overloaded=
"no">
26205 <autodoc>GetDefaultCellAlignment() -
> (horiz, vert)
</autodoc>
26207 <param name=
"OUTPUT" type=
"int" default=
""/>
26208 <param name=
"OUTPUT" type=
"int" default=
""/>
26211 <method name=
"GetCellAlignment" type=
"" overloaded=
"no">
26212 <autodoc>GetCellAlignment() -
> (horiz, vert)
</autodoc>
26214 <param name=
"row" type=
"int" default=
""/>
26215 <param name=
"col" type=
"int" default=
""/>
26216 <param name=
"OUTPUT" type=
"int" default=
""/>
26217 <param name=
"OUTPUT" type=
"int" default=
""/>
26220 <method name=
"GetDefaultCellOverflow" type=
"bool" overloaded=
"no">
26221 <autodoc>GetDefaultCellOverflow() -
> bool
</autodoc>
26223 <method name=
"GetCellOverflow" type=
"bool" overloaded=
"no">
26224 <autodoc>GetCellOverflow(int row, int col) -
> bool
</autodoc>
26226 <param name=
"row" type=
"int" default=
""/>
26227 <param name=
"col" type=
"int" default=
""/>
26230 <method name=
"GetCellSize" type=
"" overloaded=
"no">
26231 <autodoc>GetCellSize(int row, int col) -
> (num_rows, num_cols)
</autodoc>
26233 <param name=
"row" type=
"int" default=
""/>
26234 <param name=
"col" type=
"int" default=
""/>
26235 <param name=
"OUTPUT" type=
"int" default=
""/>
26236 <param name=
"OUTPUT" type=
"int" default=
""/>
26239 <method name=
"SetDefaultRowSize" type=
"" overloaded=
"no">
26240 <autodoc>SetDefaultRowSize(int height, bool resizeExistingRows=False)
</autodoc>
26242 <param name=
"height" type=
"int" default=
""/>
26243 <param name=
"resizeExistingRows" type=
"bool" default=
"False"/>
26246 <method name=
"SetRowSize" type=
"" overloaded=
"no">
26247 <autodoc>SetRowSize(int row, int height)
</autodoc>
26249 <param name=
"row" type=
"int" default=
""/>
26250 <param name=
"height" type=
"int" default=
""/>
26253 <method name=
"SetDefaultColSize" type=
"" overloaded=
"no">
26254 <autodoc>SetDefaultColSize(int width, bool resizeExistingCols=False)
</autodoc>
26256 <param name=
"width" type=
"int" default=
""/>
26257 <param name=
"resizeExistingCols" type=
"bool" default=
"False"/>
26260 <method name=
"SetColSize" type=
"" overloaded=
"no">
26261 <autodoc>SetColSize(int col, int width)
</autodoc>
26263 <param name=
"col" type=
"int" default=
""/>
26264 <param name=
"width" type=
"int" default=
""/>
26267 <method name=
"AutoSizeColumn" type=
"" overloaded=
"no">
26268 <autodoc>AutoSizeColumn(int col, bool setAsMin=True)
</autodoc>
26270 <param name=
"col" type=
"int" default=
""/>
26271 <param name=
"setAsMin" type=
"bool" default=
"True"/>
26274 <method name=
"AutoSizeRow" type=
"" overloaded=
"no">
26275 <autodoc>AutoSizeRow(int row, bool setAsMin=True)
</autodoc>
26277 <param name=
"row" type=
"int" default=
""/>
26278 <param name=
"setAsMin" type=
"bool" default=
"True"/>
26281 <method name=
"AutoSizeColumns" type=
"" overloaded=
"no">
26282 <autodoc>AutoSizeColumns(bool setAsMin=True)
</autodoc>
26284 <param name=
"setAsMin" type=
"bool" default=
"True"/>
26287 <method name=
"AutoSizeRows" type=
"" overloaded=
"no">
26288 <autodoc>AutoSizeRows(bool setAsMin=True)
</autodoc>
26290 <param name=
"setAsMin" type=
"bool" default=
"True"/>
26293 <method name=
"AutoSize" type=
"" overloaded=
"no">
26294 <autodoc>AutoSize()
</autodoc>
26296 <method name=
"AutoSizeRowLabelSize" type=
"" overloaded=
"no">
26297 <autodoc>AutoSizeRowLabelSize(int row)
</autodoc>
26299 <param name=
"row" type=
"int" default=
""/>
26302 <method name=
"AutoSizeColLabelSize" type=
"" overloaded=
"no">
26303 <autodoc>AutoSizeColLabelSize(int col)
</autodoc>
26305 <param name=
"col" type=
"int" default=
""/>
26308 <method name=
"SetColMinimalWidth" type=
"" overloaded=
"no">
26309 <autodoc>SetColMinimalWidth(int col, int width)
</autodoc>
26311 <param name=
"col" type=
"int" default=
""/>
26312 <param name=
"width" type=
"int" default=
""/>
26315 <method name=
"SetRowMinimalHeight" type=
"" overloaded=
"no">
26316 <autodoc>SetRowMinimalHeight(int row, int width)
</autodoc>
26318 <param name=
"row" type=
"int" default=
""/>
26319 <param name=
"width" type=
"int" default=
""/>
26322 <method name=
"SetColMinimalAcceptableWidth" type=
"" overloaded=
"no">
26323 <autodoc>SetColMinimalAcceptableWidth(int width)
</autodoc>
26325 <param name=
"width" type=
"int" default=
""/>
26328 <method name=
"SetRowMinimalAcceptableHeight" type=
"" overloaded=
"no">
26329 <autodoc>SetRowMinimalAcceptableHeight(int width)
</autodoc>
26331 <param name=
"width" type=
"int" default=
""/>
26334 <method name=
"GetColMinimalAcceptableWidth" type=
"int" overloaded=
"no">
26335 <autodoc>GetColMinimalAcceptableWidth() -
> int
</autodoc>
26337 <method name=
"GetRowMinimalAcceptableHeight" type=
"int" overloaded=
"no">
26338 <autodoc>GetRowMinimalAcceptableHeight() -
> int
</autodoc>
26340 <method name=
"SetDefaultCellBackgroundColour" type=
"" overloaded=
"no">
26341 <autodoc>SetDefaultCellBackgroundColour(Colour ??)
</autodoc>
26343 <param name=
"" type=
"Colour" default=
""/>
26346 <method name=
"SetCellBackgroundColour" type=
"" overloaded=
"no">
26347 <autodoc>SetCellBackgroundColour(int row, int col, Colour ??)
</autodoc>
26349 <param name=
"row" type=
"int" default=
""/>
26350 <param name=
"col" type=
"int" default=
""/>
26351 <param name=
"" type=
"Colour" default=
""/>
26354 <method name=
"SetDefaultCellTextColour" type=
"" overloaded=
"no">
26355 <autodoc>SetDefaultCellTextColour(Colour ??)
</autodoc>
26357 <param name=
"" type=
"Colour" default=
""/>
26360 <method name=
"SetCellTextColour" type=
"" overloaded=
"no">
26361 <autodoc>SetCellTextColour(int row, int col, Colour ??)
</autodoc>
26363 <param name=
"row" type=
"int" default=
""/>
26364 <param name=
"col" type=
"int" default=
""/>
26365 <param name=
"" type=
"Colour" default=
""/>
26368 <method name=
"SetDefaultCellFont" type=
"" overloaded=
"no">
26369 <autodoc>SetDefaultCellFont(Font ??)
</autodoc>
26371 <param name=
"" type=
"Font" default=
""/>
26374 <method name=
"SetCellFont" type=
"" overloaded=
"no">
26375 <autodoc>SetCellFont(int row, int col, Font ??)
</autodoc>
26377 <param name=
"row" type=
"int" default=
""/>
26378 <param name=
"col" type=
"int" default=
""/>
26379 <param name=
"" type=
"Font" default=
""/>
26382 <method name=
"SetDefaultCellAlignment" type=
"" overloaded=
"no">
26383 <autodoc>SetDefaultCellAlignment(int horiz, int vert)
</autodoc>
26385 <param name=
"horiz" type=
"int" default=
""/>
26386 <param name=
"vert" type=
"int" default=
""/>
26389 <method name=
"SetCellAlignment" type=
"" overloaded=
"no">
26390 <autodoc>SetCellAlignment(int row, int col, int horiz, int vert)
</autodoc>
26392 <param name=
"row" type=
"int" default=
""/>
26393 <param name=
"col" type=
"int" default=
""/>
26394 <param name=
"horiz" type=
"int" default=
""/>
26395 <param name=
"vert" type=
"int" default=
""/>
26398 <method name=
"SetDefaultCellOverflow" type=
"" overloaded=
"no">
26399 <autodoc>SetDefaultCellOverflow(bool allow)
</autodoc>
26401 <param name=
"allow" type=
"bool" default=
""/>
26404 <method name=
"SetCellOverflow" type=
"" overloaded=
"no">
26405 <autodoc>SetCellOverflow(int row, int col, bool allow)
</autodoc>
26407 <param name=
"row" type=
"int" default=
""/>
26408 <param name=
"col" type=
"int" default=
""/>
26409 <param name=
"allow" type=
"bool" default=
""/>
26412 <method name=
"SetCellSize" type=
"" overloaded=
"no">
26413 <autodoc>SetCellSize(int row, int col, int num_rows, int num_cols)
</autodoc>
26415 <param name=
"row" type=
"int" default=
""/>
26416 <param name=
"col" type=
"int" default=
""/>
26417 <param name=
"num_rows" type=
"int" default=
""/>
26418 <param name=
"num_cols" type=
"int" default=
""/>
26421 <method name=
"SetDefaultRenderer" type=
"" overloaded=
"no">
26422 <autodoc>SetDefaultRenderer(GridCellRenderer renderer)
</autodoc>
26424 <param name=
"renderer" type=
"GridCellRenderer" default=
""/>
26427 <method name=
"SetCellRenderer" type=
"" overloaded=
"no">
26428 <autodoc>SetCellRenderer(int row, int col, GridCellRenderer renderer)
</autodoc>
26430 <param name=
"row" type=
"int" default=
""/>
26431 <param name=
"col" type=
"int" default=
""/>
26432 <param name=
"renderer" type=
"GridCellRenderer" default=
""/>
26435 <method name=
"GetDefaultRenderer" type=
"GridCellRenderer" overloaded=
"no">
26436 <autodoc>GetDefaultRenderer() -
> GridCellRenderer
</autodoc>
26438 <method name=
"GetCellRenderer" type=
"GridCellRenderer" overloaded=
"no">
26439 <autodoc>GetCellRenderer(int row, int col) -
> GridCellRenderer
</autodoc>
26441 <param name=
"row" type=
"int" default=
""/>
26442 <param name=
"col" type=
"int" default=
""/>
26445 <method name=
"SetDefaultEditor" type=
"" overloaded=
"no">
26446 <autodoc>SetDefaultEditor(GridCellEditor editor)
</autodoc>
26448 <param name=
"editor" type=
"GridCellEditor" default=
""/>
26451 <method name=
"SetCellEditor" type=
"" overloaded=
"no">
26452 <autodoc>SetCellEditor(int row, int col, GridCellEditor editor)
</autodoc>
26454 <param name=
"row" type=
"int" default=
""/>
26455 <param name=
"col" type=
"int" default=
""/>
26456 <param name=
"editor" type=
"GridCellEditor" default=
""/>
26459 <method name=
"GetDefaultEditor" type=
"GridCellEditor" overloaded=
"no">
26460 <autodoc>GetDefaultEditor() -
> GridCellEditor
</autodoc>
26462 <method name=
"GetCellEditor" type=
"GridCellEditor" overloaded=
"no">
26463 <autodoc>GetCellEditor(int row, int col) -
> GridCellEditor
</autodoc>
26465 <param name=
"row" type=
"int" default=
""/>
26466 <param name=
"col" type=
"int" default=
""/>
26469 <method name=
"GetCellValue" type=
"String" overloaded=
"no">
26470 <autodoc>GetCellValue(int row, int col) -
> String
</autodoc>
26472 <param name=
"row" type=
"int" default=
""/>
26473 <param name=
"col" type=
"int" default=
""/>
26476 <method name=
"SetCellValue" type=
"" overloaded=
"no">
26477 <autodoc>SetCellValue(int row, int col, String s)
</autodoc>
26479 <param name=
"row" type=
"int" default=
""/>
26480 <param name=
"col" type=
"int" default=
""/>
26481 <param name=
"s" type=
"String" default=
""/>
26484 <method name=
"IsReadOnly" type=
"bool" overloaded=
"no">
26485 <autodoc>IsReadOnly(int row, int col) -
> bool
</autodoc>
26487 <param name=
"row" type=
"int" default=
""/>
26488 <param name=
"col" type=
"int" default=
""/>
26491 <method name=
"SetReadOnly" type=
"" overloaded=
"no">
26492 <autodoc>SetReadOnly(int row, int col, bool isReadOnly=True)
</autodoc>
26494 <param name=
"row" type=
"int" default=
""/>
26495 <param name=
"col" type=
"int" default=
""/>
26496 <param name=
"isReadOnly" type=
"bool" default=
"True"/>
26499 <method name=
"SelectRow" type=
"" overloaded=
"no">
26500 <autodoc>SelectRow(int row, bool addToSelected=False)
</autodoc>
26502 <param name=
"row" type=
"int" default=
""/>
26503 <param name=
"addToSelected" type=
"bool" default=
"False"/>
26506 <method name=
"SelectCol" type=
"" overloaded=
"no">
26507 <autodoc>SelectCol(int col, bool addToSelected=False)
</autodoc>
26509 <param name=
"col" type=
"int" default=
""/>
26510 <param name=
"addToSelected" type=
"bool" default=
"False"/>
26513 <method name=
"SelectBlock" type=
"" overloaded=
"no">
26514 <autodoc>SelectBlock(int topRow, int leftCol, int bottomRow, int rightCol,
26515 bool addToSelected=False)
</autodoc>
26517 <param name=
"topRow" type=
"int" default=
""/>
26518 <param name=
"leftCol" type=
"int" default=
""/>
26519 <param name=
"bottomRow" type=
"int" default=
""/>
26520 <param name=
"rightCol" type=
"int" default=
""/>
26521 <param name=
"addToSelected" type=
"bool" default=
"False"/>
26524 <method name=
"SelectAll" type=
"" overloaded=
"no">
26525 <autodoc>SelectAll()
</autodoc>
26527 <method name=
"IsSelection" type=
"bool" overloaded=
"no">
26528 <autodoc>IsSelection() -
> bool
</autodoc>
26530 <method name=
"ClearSelection" type=
"" overloaded=
"no">
26531 <autodoc>ClearSelection()
</autodoc>
26533 <method name=
"IsInSelection" type=
"bool" overloaded=
"no">
26534 <autodoc>IsInSelection(int row, int col) -
> bool
</autodoc>
26536 <param name=
"row" type=
"int" default=
""/>
26537 <param name=
"col" type=
"int" default=
""/>
26540 <method name=
"GetSelectedCells" type=
"wxGridCellCoordsArray" overloaded=
"no">
26541 <autodoc>GetSelectedCells() -
> wxGridCellCoordsArray
</autodoc>
26543 <method name=
"GetSelectionBlockTopLeft" type=
"wxGridCellCoordsArray" overloaded=
"no">
26544 <autodoc>GetSelectionBlockTopLeft() -
> wxGridCellCoordsArray
</autodoc>
26546 <method name=
"GetSelectionBlockBottomRight" type=
"wxGridCellCoordsArray" overloaded=
"no">
26547 <autodoc>GetSelectionBlockBottomRight() -
> wxGridCellCoordsArray
</autodoc>
26549 <method name=
"GetSelectedRows" type=
"wxArrayInt" overloaded=
"no">
26550 <autodoc>GetSelectedRows() -
> wxArrayInt
</autodoc>
26552 <method name=
"GetSelectedCols" type=
"wxArrayInt" overloaded=
"no">
26553 <autodoc>GetSelectedCols() -
> wxArrayInt
</autodoc>
26555 <method name=
"DeselectRow" type=
"" overloaded=
"no">
26556 <autodoc>DeselectRow(int row)
</autodoc>
26558 <param name=
"row" type=
"int" default=
""/>
26561 <method name=
"DeselectCol" type=
"" overloaded=
"no">
26562 <autodoc>DeselectCol(int col)
</autodoc>
26564 <param name=
"col" type=
"int" default=
""/>
26567 <method name=
"DeselectCell" type=
"" overloaded=
"no">
26568 <autodoc>DeselectCell(int row, int col)
</autodoc>
26570 <param name=
"row" type=
"int" default=
""/>
26571 <param name=
"col" type=
"int" default=
""/>
26574 <method name=
"BlockToDeviceRect" type=
"Rect" overloaded=
"no">
26575 <autodoc>BlockToDeviceRect(GridCellCoords topLeft, GridCellCoords bottomRight) -
> Rect
</autodoc>
26577 <param name=
"topLeft" type=
"GridCellCoords" default=
""/>
26578 <param name=
"bottomRight" type=
"GridCellCoords" default=
""/>
26581 <method name=
"GetSelectionBackground" type=
"Colour" overloaded=
"no">
26582 <autodoc>GetSelectionBackground() -
> Colour
</autodoc>
26584 <method name=
"GetSelectionForeground" type=
"Colour" overloaded=
"no">
26585 <autodoc>GetSelectionForeground() -
> Colour
</autodoc>
26587 <method name=
"SetSelectionBackground" type=
"" overloaded=
"no">
26588 <autodoc>SetSelectionBackground(Colour c)
</autodoc>
26590 <param name=
"c" type=
"Colour" default=
""/>
26593 <method name=
"SetSelectionForeground" type=
"" overloaded=
"no">
26594 <autodoc>SetSelectionForeground(Colour c)
</autodoc>
26596 <param name=
"c" type=
"Colour" default=
""/>
26599 <method name=
"RegisterDataType" type=
"" overloaded=
"no">
26600 <autodoc>RegisterDataType(String typeName, GridCellRenderer renderer, GridCellEditor editor)
</autodoc>
26602 <param name=
"typeName" type=
"String" default=
""/>
26603 <param name=
"renderer" type=
"GridCellRenderer" default=
""/>
26604 <param name=
"editor" type=
"GridCellEditor" default=
""/>
26607 <method name=
"GetDefaultEditorForCell" type=
"GridCellEditor" overloaded=
"no">
26608 <autodoc>GetDefaultEditorForCell(int row, int col) -
> GridCellEditor
</autodoc>
26610 <param name=
"row" type=
"int" default=
""/>
26611 <param name=
"col" type=
"int" default=
""/>
26614 <method name=
"GetDefaultRendererForCell" type=
"GridCellRenderer" overloaded=
"no">
26615 <autodoc>GetDefaultRendererForCell(int row, int col) -
> GridCellRenderer
</autodoc>
26617 <param name=
"row" type=
"int" default=
""/>
26618 <param name=
"col" type=
"int" default=
""/>
26621 <method name=
"GetDefaultEditorForType" type=
"GridCellEditor" overloaded=
"no">
26622 <autodoc>GetDefaultEditorForType(String typeName) -
> GridCellEditor
</autodoc>
26624 <param name=
"typeName" type=
"String" default=
""/>
26627 <method name=
"GetDefaultRendererForType" type=
"GridCellRenderer" overloaded=
"no">
26628 <autodoc>GetDefaultRendererForType(String typeName) -
> GridCellRenderer
</autodoc>
26630 <param name=
"typeName" type=
"String" default=
""/>
26633 <method name=
"SetMargins" type=
"" overloaded=
"no">
26634 <autodoc>SetMargins(int extraWidth, int extraHeight)
</autodoc>
26636 <param name=
"extraWidth" type=
"int" default=
""/>
26637 <param name=
"extraHeight" type=
"int" default=
""/>
26640 <method name=
"GetGridWindow" type=
"Window" overloaded=
"no">
26641 <autodoc>GetGridWindow() -
> Window
</autodoc>
26643 <method name=
"GetGridRowLabelWindow" type=
"Window" overloaded=
"no">
26644 <autodoc>GetGridRowLabelWindow() -
> Window
</autodoc>
26646 <method name=
"GetGridColLabelWindow" type=
"Window" overloaded=
"no">
26647 <autodoc>GetGridColLabelWindow() -
> Window
</autodoc>
26649 <method name=
"GetGridCornerLabelWindow" type=
"Window" overloaded=
"no">
26650 <autodoc>GetGridCornerLabelWindow() -
> Window
</autodoc>
26653 <class name=
"GridEvent" oldname=
"wxGridEvent" module=
"grid">
26654 <baseclass name=
"NotifyEvent"/>
26655 <constructor name=
"GridEvent" overloaded=
"no">
26656 <autodoc>__init__(int id, wxEventType type, Grid obj, int row=-
1, int col=-
1,
26657 int x=-
1, int y=-
1, bool sel=True, bool control=False,
26658 bool shift=False, bool alt=False,
26659 bool meta=False) -
> GridEvent
</autodoc>
26661 <param name=
"id" type=
"int" default=
""/>
26662 <param name=
"type" type=
"wxEventType" default=
""/>
26663 <param name=
"obj" type=
"Grid" default=
""/>
26664 <param name=
"row" type=
"int" default=
"-1"/>
26665 <param name=
"col" type=
"int" default=
"-1"/>
26666 <param name=
"x" type=
"int" default=
"-1"/>
26667 <param name=
"y" type=
"int" default=
"-1"/>
26668 <param name=
"sel" type=
"bool" default=
"True"/>
26669 <param name=
"control" type=
"bool" default=
"False"/>
26670 <param name=
"shift" type=
"bool" default=
"False"/>
26671 <param name=
"alt" type=
"bool" default=
"False"/>
26672 <param name=
"meta" type=
"bool" default=
"False"/>
26675 <method name=
"GetRow" type=
"int" overloaded=
"no">
26676 <autodoc>GetRow() -
> int
</autodoc>
26678 <method name=
"GetCol" type=
"int" overloaded=
"no">
26679 <autodoc>GetCol() -
> int
</autodoc>
26681 <method name=
"GetPosition" type=
"Point" overloaded=
"no">
26682 <autodoc>GetPosition() -
> Point
</autodoc>
26684 <method name=
"Selecting" type=
"bool" overloaded=
"no">
26685 <autodoc>Selecting() -
> bool
</autodoc>
26687 <method name=
"ControlDown" type=
"bool" overloaded=
"no">
26688 <autodoc>ControlDown() -
> bool
</autodoc>
26690 <method name=
"MetaDown" type=
"bool" overloaded=
"no">
26691 <autodoc>MetaDown() -
> bool
</autodoc>
26693 <method name=
"ShiftDown" type=
"bool" overloaded=
"no">
26694 <autodoc>ShiftDown() -
> bool
</autodoc>
26696 <method name=
"AltDown" type=
"bool" overloaded=
"no">
26697 <autodoc>AltDown() -
> bool
</autodoc>
26700 <class name=
"GridSizeEvent" oldname=
"wxGridSizeEvent" module=
"grid">
26701 <baseclass name=
"NotifyEvent"/>
26702 <constructor name=
"GridSizeEvent" overloaded=
"no">
26703 <autodoc>__init__(int id, wxEventType type, Grid obj, int rowOrCol=-
1,
26704 int x=-
1, int y=-
1, bool control=False, bool shift=False,
26705 bool alt=False, bool meta=False) -
> GridSizeEvent
</autodoc>
26707 <param name=
"id" type=
"int" default=
""/>
26708 <param name=
"type" type=
"wxEventType" default=
""/>
26709 <param name=
"obj" type=
"Grid" default=
""/>
26710 <param name=
"rowOrCol" type=
"int" default=
"-1"/>
26711 <param name=
"x" type=
"int" default=
"-1"/>
26712 <param name=
"y" type=
"int" default=
"-1"/>
26713 <param name=
"control" type=
"bool" default=
"False"/>
26714 <param name=
"shift" type=
"bool" default=
"False"/>
26715 <param name=
"alt" type=
"bool" default=
"False"/>
26716 <param name=
"meta" type=
"bool" default=
"False"/>
26719 <method name=
"GetRowOrCol" type=
"int" overloaded=
"no">
26720 <autodoc>GetRowOrCol() -
> int
</autodoc>
26722 <method name=
"GetPosition" type=
"Point" overloaded=
"no">
26723 <autodoc>GetPosition() -
> Point
</autodoc>
26725 <method name=
"ControlDown" type=
"bool" overloaded=
"no">
26726 <autodoc>ControlDown() -
> bool
</autodoc>
26728 <method name=
"MetaDown" type=
"bool" overloaded=
"no">
26729 <autodoc>MetaDown() -
> bool
</autodoc>
26731 <method name=
"ShiftDown" type=
"bool" overloaded=
"no">
26732 <autodoc>ShiftDown() -
> bool
</autodoc>
26734 <method name=
"AltDown" type=
"bool" overloaded=
"no">
26735 <autodoc>AltDown() -
> bool
</autodoc>
26738 <class name=
"GridRangeSelectEvent" oldname=
"wxGridRangeSelectEvent" module=
"grid">
26739 <baseclass name=
"NotifyEvent"/>
26740 <constructor name=
"GridRangeSelectEvent" overloaded=
"no">
26741 <autodoc>__init__(int id, wxEventType type, Grid obj, GridCellCoords topLeft,
26742 GridCellCoords bottomRight, bool sel=True,
26743 bool control=False, bool shift=False,
26744 bool alt=False, bool meta=False) -
> GridRangeSelectEvent
</autodoc>
26746 <param name=
"id" type=
"int" default=
""/>
26747 <param name=
"type" type=
"wxEventType" default=
""/>
26748 <param name=
"obj" type=
"Grid" default=
""/>
26749 <param name=
"topLeft" type=
"GridCellCoords" default=
""/>
26750 <param name=
"bottomRight" type=
"GridCellCoords" default=
""/>
26751 <param name=
"sel" type=
"bool" default=
"True"/>
26752 <param name=
"control" type=
"bool" default=
"False"/>
26753 <param name=
"shift" type=
"bool" default=
"False"/>
26754 <param name=
"alt" type=
"bool" default=
"False"/>
26755 <param name=
"meta" type=
"bool" default=
"False"/>
26758 <method name=
"GetTopLeftCoords" type=
"GridCellCoords" overloaded=
"no">
26759 <autodoc>GetTopLeftCoords() -
> GridCellCoords
</autodoc>
26761 <method name=
"GetBottomRightCoords" type=
"GridCellCoords" overloaded=
"no">
26762 <autodoc>GetBottomRightCoords() -
> GridCellCoords
</autodoc>
26764 <method name=
"GetTopRow" type=
"int" overloaded=
"no">
26765 <autodoc>GetTopRow() -
> int
</autodoc>
26767 <method name=
"GetBottomRow" type=
"int" overloaded=
"no">
26768 <autodoc>GetBottomRow() -
> int
</autodoc>
26770 <method name=
"GetLeftCol" type=
"int" overloaded=
"no">
26771 <autodoc>GetLeftCol() -
> int
</autodoc>
26773 <method name=
"GetRightCol" type=
"int" overloaded=
"no">
26774 <autodoc>GetRightCol() -
> int
</autodoc>
26776 <method name=
"Selecting" type=
"bool" overloaded=
"no">
26777 <autodoc>Selecting() -
> bool
</autodoc>
26779 <method name=
"ControlDown" type=
"bool" overloaded=
"no">
26780 <autodoc>ControlDown() -
> bool
</autodoc>
26782 <method name=
"MetaDown" type=
"bool" overloaded=
"no">
26783 <autodoc>MetaDown() -
> bool
</autodoc>
26785 <method name=
"ShiftDown" type=
"bool" overloaded=
"no">
26786 <autodoc>ShiftDown() -
> bool
</autodoc>
26788 <method name=
"AltDown" type=
"bool" overloaded=
"no">
26789 <autodoc>AltDown() -
> bool
</autodoc>
26792 <class name=
"GridEditorCreatedEvent" oldname=
"wxGridEditorCreatedEvent" module=
"grid">
26793 <baseclass name=
"CommandEvent"/>
26794 <constructor name=
"GridEditorCreatedEvent" overloaded=
"no">
26795 <autodoc>__init__(int id, wxEventType type, Object obj, int row, int col,
26796 Control ctrl) -
> GridEditorCreatedEvent
</autodoc>
26798 <param name=
"id" type=
"int" default=
""/>
26799 <param name=
"type" type=
"wxEventType" default=
""/>
26800 <param name=
"obj" type=
"Object" default=
""/>
26801 <param name=
"row" type=
"int" default=
""/>
26802 <param name=
"col" type=
"int" default=
""/>
26803 <param name=
"ctrl" type=
"Control" default=
""/>
26806 <method name=
"GetRow" type=
"int" overloaded=
"no">
26807 <autodoc>GetRow() -
> int
</autodoc>
26809 <method name=
"GetCol" type=
"int" overloaded=
"no">
26810 <autodoc>GetCol() -
> int
</autodoc>
26812 <method name=
"GetControl" type=
"Control" overloaded=
"no">
26813 <autodoc>GetControl() -
> Control
</autodoc>
26815 <method name=
"SetRow" type=
"" overloaded=
"no">
26816 <autodoc>SetRow(int row)
</autodoc>
26818 <param name=
"row" type=
"int" default=
""/>
26821 <method name=
"SetCol" type=
"" overloaded=
"no">
26822 <autodoc>SetCol(int col)
</autodoc>
26824 <param name=
"col" type=
"int" default=
""/>
26827 <method name=
"SetControl" type=
"" overloaded=
"no">
26828 <autodoc>SetControl(Control ctrl)
</autodoc>
26830 <param name=
"ctrl" type=
"Control" default=
""/>
26835 EVT_GRID_CELL_LEFT_CLICK = wx.PyEventBinder( wxEVT_GRID_CELL_LEFT_CLICK )
26836 EVT_GRID_CELL_RIGHT_CLICK = wx.PyEventBinder( wxEVT_GRID_CELL_RIGHT_CLICK )
26837 EVT_GRID_CELL_LEFT_DCLICK = wx.PyEventBinder( wxEVT_GRID_CELL_LEFT_DCLICK )
26838 EVT_GRID_CELL_RIGHT_DCLICK = wx.PyEventBinder( wxEVT_GRID_CELL_RIGHT_DCLICK )
26839 EVT_GRID_LABEL_LEFT_CLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_LEFT_CLICK )
26840 EVT_GRID_LABEL_RIGHT_CLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_RIGHT_CLICK )
26841 EVT_GRID_LABEL_LEFT_DCLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_LEFT_DCLICK )
26842 EVT_GRID_LABEL_RIGHT_DCLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_RIGHT_DCLICK )
26843 EVT_GRID_ROW_SIZE = wx.PyEventBinder( wxEVT_GRID_ROW_SIZE )
26844 EVT_GRID_COL_SIZE = wx.PyEventBinder( wxEVT_GRID_COL_SIZE )
26845 EVT_GRID_RANGE_SELECT = wx.PyEventBinder( wxEVT_GRID_RANGE_SELECT )
26846 EVT_GRID_CELL_CHANGE = wx.PyEventBinder( wxEVT_GRID_CELL_CHANGE )
26847 EVT_GRID_SELECT_CELL = wx.PyEventBinder( wxEVT_GRID_SELECT_CELL )
26848 EVT_GRID_EDITOR_SHOWN = wx.PyEventBinder( wxEVT_GRID_EDITOR_SHOWN )
26849 EVT_GRID_EDITOR_HIDDEN = wx.PyEventBinder( wxEVT_GRID_EDITOR_HIDDEN )
26850 EVT_GRID_EDITOR_CREATED = wx.PyEventBinder( wxEVT_GRID_EDITOR_CREATED )
26853 <module name=
"html">
26854 <import name=
"windows"/>
26855 <pythoncode> wx = core
</pythoncode>
26857 #---------------------------------------------------------------------------
26859 <class name=
"HtmlLinkInfo" oldname=
"wxHtmlLinkInfo" module=
"html">
26860 <baseclass name=
"Object"/>
26861 <constructor name=
"HtmlLinkInfo" overloaded=
"no">
26862 <autodoc>__init__(String href, String target=EmptyString) -
> HtmlLinkInfo
</autodoc>
26864 <param name=
"href" type=
"String" default=
""/>
26865 <param name=
"target" type=
"String" default=
"wxPyEmptyString"/>
26868 <method name=
"GetHref" type=
"String" overloaded=
"no">
26869 <autodoc>GetHref() -
> String
</autodoc>
26871 <method name=
"GetTarget" type=
"String" overloaded=
"no">
26872 <autodoc>GetTarget() -
> String
</autodoc>
26874 <method name=
"GetEvent" type=
"MouseEvent" overloaded=
"no">
26875 <autodoc>GetEvent() -
> MouseEvent
</autodoc>
26877 <method name=
"GetHtmlCell" type=
"wxHtmlCell" overloaded=
"no">
26878 <autodoc>GetHtmlCell() -
> HtmlCell
</autodoc>
26880 <method name=
"SetEvent" type=
"" overloaded=
"no">
26881 <autodoc>SetEvent(MouseEvent e)
</autodoc>
26883 <param name=
"e" type=
"MouseEvent" default=
""/>
26886 <method name=
"SetHtmlCell" type=
"" overloaded=
"no">
26887 <autodoc>SetHtmlCell(HtmlCell e)
</autodoc>
26889 <param name=
"e" type=
"wxHtmlCell" default=
""/>
26893 <class name=
"HtmlTag" oldname=
"wxHtmlTag" module=
"html">
26894 <baseclass name=
"Object"/>
26895 <method name=
"GetName" type=
"String" overloaded=
"no">
26896 <autodoc>GetName() -
> String
</autodoc>
26898 <method name=
"HasParam" type=
"bool" overloaded=
"no">
26899 <autodoc>HasParam(String par) -
> bool
</autodoc>
26901 <param name=
"par" type=
"String" default=
""/>
26904 <method name=
"GetParam" type=
"String" overloaded=
"no">
26905 <autodoc>GetParam(String par, int with_commas=False) -
> String
</autodoc>
26907 <param name=
"par" type=
"String" default=
""/>
26908 <param name=
"with_commas" type=
"int" default=
"False"/>
26911 <method name=
"GetAllParams" type=
"String" overloaded=
"no">
26912 <autodoc>GetAllParams() -
> String
</autodoc>
26914 <method name=
"HasEnding" type=
"bool" overloaded=
"no">
26915 <autodoc>HasEnding() -
> bool
</autodoc>
26917 <method name=
"GetBeginPos" type=
"int" overloaded=
"no">
26918 <autodoc>GetBeginPos() -
> int
</autodoc>
26920 <method name=
"GetEndPos1" type=
"int" overloaded=
"no">
26921 <autodoc>GetEndPos1() -
> int
</autodoc>
26923 <method name=
"GetEndPos2" type=
"int" overloaded=
"no">
26924 <autodoc>GetEndPos2() -
> int
</autodoc>
26927 <class name=
"HtmlParser" oldname=
"wxHtmlParser" module=
"html">
26928 <baseclass name=
"Object"/>
26929 <method name=
"SetFS" type=
"" overloaded=
"no">
26930 <autodoc>SetFS(FileSystem fs)
</autodoc>
26932 <param name=
"fs" type=
"FileSystem" default=
""/>
26935 <method name=
"GetFS" type=
"FileSystem" overloaded=
"no">
26936 <autodoc>GetFS() -
> FileSystem
</autodoc>
26938 <method name=
"Parse" type=
"Object" overloaded=
"no">
26939 <autodoc>Parse(String source) -
> Object
</autodoc>
26941 <param name=
"source" type=
"String" default=
""/>
26944 <method name=
"InitParser" type=
"" overloaded=
"no">
26945 <autodoc>InitParser(String source)
</autodoc>
26947 <param name=
"source" type=
"String" default=
""/>
26950 <method name=
"DoneParser" type=
"" overloaded=
"no">
26951 <autodoc>DoneParser()
</autodoc>
26953 <method name=
"DoParsing" type=
"" overloaded=
"no">
26954 <autodoc>DoParsing(int begin_pos, int end_pos)
</autodoc>
26956 <param name=
"begin_pos" type=
"int" default=
""/>
26957 <param name=
"end_pos" type=
"int" default=
""/>
26960 <method name=
"StopParsing" type=
"" overloaded=
"no">
26961 <autodoc>StopParsing()
</autodoc>
26963 <method name=
"AddTagHandler" type=
"" overloaded=
"no">
26964 <autodoc>AddTagHandler(HtmlTagHandler handler)
</autodoc>
26966 <param name=
"handler" type=
"wxHtmlTagHandler" default=
""/>
26969 <method name=
"GetSource" type=
"String" overloaded=
"no">
26970 <autodoc>GetSource() -
> String
</autodoc>
26972 <method name=
"PushTagHandler" type=
"" overloaded=
"no">
26973 <autodoc>PushTagHandler(HtmlTagHandler handler, String tags)
</autodoc>
26975 <param name=
"handler" type=
"wxHtmlTagHandler" default=
""/>
26976 <param name=
"tags" type=
"String" default=
""/>
26979 <method name=
"PopTagHandler" type=
"" overloaded=
"no">
26980 <autodoc>PopTagHandler()
</autodoc>
26983 <class name=
"HtmlWinParser" oldname=
"wxHtmlWinParser" module=
"html">
26984 <baseclass name=
"HtmlParser"/>
26985 <constructor name=
"HtmlWinParser" overloaded=
"no">
26986 <autodoc>__init__(HtmlWindow wnd=None) -
> HtmlWinParser
</autodoc>
26988 <param name=
"wnd" type=
"wxPyHtmlWindow" default=
"NULL"/>
26991 <method name=
"SetDC" type=
"" overloaded=
"no">
26992 <autodoc>SetDC(DC dc)
</autodoc>
26994 <param name=
"dc" type=
"DC" default=
""/>
26997 <method name=
"GetDC" type=
"DC" overloaded=
"no">
26998 <autodoc>GetDC() -
> DC
</autodoc>
27000 <method name=
"GetCharHeight" type=
"int" overloaded=
"no">
27001 <autodoc>GetCharHeight() -
> int
</autodoc>
27003 <method name=
"GetCharWidth" type=
"int" overloaded=
"no">
27004 <autodoc>GetCharWidth() -
> int
</autodoc>
27006 <method name=
"GetWindow" type=
"wxPyHtmlWindow" overloaded=
"no">
27007 <autodoc>GetWindow() -
> HtmlWindow
</autodoc>
27009 <method name=
"SetFonts" type=
"" overloaded=
"no">
27010 <autodoc>SetFonts(String normal_face, String fixed_face, PyObject sizes=None)
</autodoc>
27012 <param name=
"normal_face" type=
"String" default=
""/>
27013 <param name=
"fixed_face" type=
"String" default=
""/>
27014 <param name=
"sizes" type=
"PyObject" default=
"NULL"/>
27017 <method name=
"GetContainer" type=
"wxHtmlContainerCell" overloaded=
"no">
27018 <autodoc>GetContainer() -
> HtmlContainerCell
</autodoc>
27020 <method name=
"OpenContainer" type=
"wxHtmlContainerCell" overloaded=
"no">
27021 <autodoc>OpenContainer() -
> HtmlContainerCell
</autodoc>
27023 <method name=
"SetContainer" type=
"wxHtmlContainerCell" overloaded=
"no">
27024 <autodoc>SetContainer(HtmlContainerCell c) -
> HtmlContainerCell
</autodoc>
27026 <param name=
"c" type=
"wxHtmlContainerCell" default=
""/>
27029 <method name=
"CloseContainer" type=
"wxHtmlContainerCell" overloaded=
"no">
27030 <autodoc>CloseContainer() -
> HtmlContainerCell
</autodoc>
27032 <method name=
"GetFontSize" type=
"int" overloaded=
"no">
27033 <autodoc>GetFontSize() -
> int
</autodoc>
27035 <method name=
"SetFontSize" type=
"" overloaded=
"no">
27036 <autodoc>SetFontSize(int s)
</autodoc>
27038 <param name=
"s" type=
"int" default=
""/>
27041 <method name=
"GetFontBold" type=
"int" overloaded=
"no">
27042 <autodoc>GetFontBold() -
> int
</autodoc>
27044 <method name=
"SetFontBold" type=
"" overloaded=
"no">
27045 <autodoc>SetFontBold(int x)
</autodoc>
27047 <param name=
"x" type=
"int" default=
""/>
27050 <method name=
"GetFontItalic" type=
"int" overloaded=
"no">
27051 <autodoc>GetFontItalic() -
> int
</autodoc>
27053 <method name=
"SetFontItalic" type=
"" overloaded=
"no">
27054 <autodoc>SetFontItalic(int x)
</autodoc>
27056 <param name=
"x" type=
"int" default=
""/>
27059 <method name=
"GetFontUnderlined" type=
"int" overloaded=
"no">
27060 <autodoc>GetFontUnderlined() -
> int
</autodoc>
27062 <method name=
"SetFontUnderlined" type=
"" overloaded=
"no">
27063 <autodoc>SetFontUnderlined(int x)
</autodoc>
27065 <param name=
"x" type=
"int" default=
""/>
27068 <method name=
"GetFontFixed" type=
"int" overloaded=
"no">
27069 <autodoc>GetFontFixed() -
> int
</autodoc>
27071 <method name=
"SetFontFixed" type=
"" overloaded=
"no">
27072 <autodoc>SetFontFixed(int x)
</autodoc>
27074 <param name=
"x" type=
"int" default=
""/>
27077 <method name=
"GetAlign" type=
"int" overloaded=
"no">
27078 <autodoc>GetAlign() -
> int
</autodoc>
27080 <method name=
"SetAlign" type=
"" overloaded=
"no">
27081 <autodoc>SetAlign(int a)
</autodoc>
27083 <param name=
"a" type=
"int" default=
""/>
27086 <method name=
"GetLinkColor" type=
"Colour" overloaded=
"no">
27087 <autodoc>GetLinkColor() -
> Colour
</autodoc>
27089 <method name=
"SetLinkColor" type=
"" overloaded=
"no">
27090 <autodoc>SetLinkColor(Colour clr)
</autodoc>
27092 <param name=
"clr" type=
"Colour" default=
""/>
27095 <method name=
"GetActualColor" type=
"Colour" overloaded=
"no">
27096 <autodoc>GetActualColor() -
> Colour
</autodoc>
27098 <method name=
"SetActualColor" type=
"" overloaded=
"no">
27099 <autodoc>SetActualColor(Colour clr)
</autodoc>
27101 <param name=
"clr" type=
"Colour" default=
""/>
27104 <method name=
"SetLink" type=
"" overloaded=
"no">
27105 <autodoc>SetLink(String link)
</autodoc>
27107 <param name=
"link" type=
"String" default=
""/>
27110 <method name=
"CreateCurrentFont" type=
"Font" overloaded=
"no">
27111 <autodoc>CreateCurrentFont() -
> Font
</autodoc>
27113 <method name=
"GetLink" type=
"HtmlLinkInfo" overloaded=
"no">
27114 <autodoc>GetLink() -
> HtmlLinkInfo
</autodoc>
27117 <class name=
"HtmlTagHandler" oldname=
"wxPyHtmlTagHandler" module=
"html">
27118 <baseclass name=
"Object"/>
27119 <constructor name=
"wxPyHtmlTagHandler" overloaded=
"no">
27120 <autodoc>__init__() -
> HtmlTagHandler
</autodoc>
27122 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
27123 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
27125 <param name=
"self" type=
"PyObject" default=
""/>
27126 <param name=
"_class" type=
"PyObject" default=
""/>
27129 <method name=
"SetParser" type=
"" overloaded=
"no">
27130 <autodoc>SetParser(HtmlParser parser)
</autodoc>
27132 <param name=
"parser" type=
"HtmlParser" default=
""/>
27135 <method name=
"GetParser" type=
"HtmlParser" overloaded=
"no">
27136 <autodoc>GetParser() -
> HtmlParser
</autodoc>
27138 <method name=
"ParseInner" type=
"" overloaded=
"no">
27139 <autodoc>ParseInner(HtmlTag tag)
</autodoc>
27141 <param name=
"tag" type=
"HtmlTag" default=
""/>
27145 <class name=
"HtmlWinTagHandler" oldname=
"wxPyHtmlWinTagHandler" module=
"html">
27146 <baseclass name=
"HtmlTagHandler"/>
27147 <constructor name=
"wxPyHtmlWinTagHandler" overloaded=
"no">
27148 <autodoc>__init__() -
> HtmlWinTagHandler
</autodoc>
27150 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
27151 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
27153 <param name=
"self" type=
"PyObject" default=
""/>
27154 <param name=
"_class" type=
"PyObject" default=
""/>
27157 <method name=
"SetParser" type=
"" overloaded=
"no">
27158 <autodoc>SetParser(HtmlParser parser)
</autodoc>
27160 <param name=
"parser" type=
"HtmlParser" default=
""/>
27163 <method name=
"GetParser" type=
"HtmlWinParser" overloaded=
"no">
27164 <autodoc>GetParser() -
> HtmlWinParser
</autodoc>
27166 <method name=
"ParseInner" type=
"" overloaded=
"no">
27167 <autodoc>ParseInner(HtmlTag tag)
</autodoc>
27169 <param name=
"tag" type=
"HtmlTag" default=
""/>
27173 <method name=
"HtmlWinParser_AddTagHandler" oldname=
"wxHtmlWinParser_AddTagHandler" type=
"" overloaded=
"no">
27174 <autodoc>HtmlWinParser_AddTagHandler(PyObject tagHandlerClass)
</autodoc>
27176 <param name=
"tagHandlerClass" type=
"PyObject" default=
""/>
27180 #---------------------------------------------------------------------------
27182 <class name=
"HtmlSelection" oldname=
"wxHtmlSelection" module=
"html">
27183 <constructor name=
"HtmlSelection" overloaded=
"no">
27184 <autodoc>__init__() -
> HtmlSelection
</autodoc>
27186 <destructor name=
"~wxHtmlSelection" overloaded=
"no">
27187 <autodoc>__del__()
</autodoc>
27189 <method name=
"Set" type=
"" overloaded=
"no">
27190 <autodoc>Set(Point fromPos, HtmlCell fromCell, Point toPos, HtmlCell toCell)
</autodoc>
27192 <param name=
"fromPos" type=
"Point" default=
""/>
27193 <param name=
"fromCell" type=
"wxHtmlCell" default=
""/>
27194 <param name=
"toPos" type=
"Point" default=
""/>
27195 <param name=
"toCell" type=
"wxHtmlCell" default=
""/>
27198 <method name=
"SetCells" type=
"" overloaded=
"no">
27199 <autodoc>SetCells(HtmlCell fromCell, HtmlCell toCell)
</autodoc>
27201 <param name=
"fromCell" type=
"wxHtmlCell" default=
""/>
27202 <param name=
"toCell" type=
"wxHtmlCell" default=
""/>
27205 <method name=
"GetFromCell" type=
"wxHtmlCell" overloaded=
"no">
27206 <autodoc>GetFromCell() -
> HtmlCell
</autodoc>
27208 <method name=
"GetToCell" type=
"wxHtmlCell" overloaded=
"no">
27209 <autodoc>GetToCell() -
> HtmlCell
</autodoc>
27211 <method name=
"GetFromPos" type=
"Point" overloaded=
"no">
27212 <autodoc>GetFromPos() -
> Point
</autodoc>
27214 <method name=
"GetToPos" type=
"Point" overloaded=
"no">
27215 <autodoc>GetToPos() -
> Point
</autodoc>
27217 <method name=
"GetFromPrivPos" type=
"Point" overloaded=
"no">
27218 <autodoc>GetFromPrivPos() -
> Point
</autodoc>
27220 <method name=
"GetToPrivPos" type=
"Point" overloaded=
"no">
27221 <autodoc>GetToPrivPos() -
> Point
</autodoc>
27223 <method name=
"SetFromPrivPos" type=
"" overloaded=
"no">
27224 <autodoc>SetFromPrivPos(Point pos)
</autodoc>
27226 <param name=
"pos" type=
"Point" default=
""/>
27229 <method name=
"SetToPrivPos" type=
"" overloaded=
"no">
27230 <autodoc>SetToPrivPos(Point pos)
</autodoc>
27232 <param name=
"pos" type=
"Point" default=
""/>
27235 <method name=
"ClearPrivPos" type=
"" overloaded=
"no">
27236 <autodoc>ClearPrivPos()
</autodoc>
27238 <method name=
"IsEmpty" type=
"bool" overloaded=
"no">
27239 <autodoc>IsEmpty() -
> bool
</autodoc>
27242 <class name=
"HtmlRenderingState" oldname=
"wxHtmlRenderingState" module=
"html">
27243 <constructor name=
"HtmlRenderingState" overloaded=
"no">
27244 <autodoc>__init__() -
> HtmlRenderingState
</autodoc>
27246 <destructor name=
"~wxHtmlRenderingState" overloaded=
"no">
27247 <autodoc>__del__()
</autodoc>
27249 <method name=
"SetSelectionState" type=
"" overloaded=
"no">
27250 <autodoc>SetSelectionState(int s)
</autodoc>
27252 <param name=
"s" type=
"wxHtmlSelectionState" default=
""/>
27255 <method name=
"GetSelectionState" type=
"wxHtmlSelectionState" overloaded=
"no">
27256 <autodoc>GetSelectionState() -
> int
</autodoc>
27258 <method name=
"SetFgColour" type=
"" overloaded=
"no">
27259 <autodoc>SetFgColour(Colour c)
</autodoc>
27261 <param name=
"c" type=
"Colour" default=
""/>
27264 <method name=
"GetFgColour" type=
"Colour" overloaded=
"no">
27265 <autodoc>GetFgColour() -
> Colour
</autodoc>
27267 <method name=
"SetBgColour" type=
"" overloaded=
"no">
27268 <autodoc>SetBgColour(Colour c)
</autodoc>
27270 <param name=
"c" type=
"Colour" default=
""/>
27273 <method name=
"GetBgColour" type=
"Colour" overloaded=
"no">
27274 <autodoc>GetBgColour() -
> Colour
</autodoc>
27277 <class name=
"HtmlRenderingStyle" oldname=
"wxHtmlRenderingStyle" module=
"html">
27278 <method name=
"GetSelectedTextColour" type=
"Colour" overloaded=
"no">
27279 <autodoc>GetSelectedTextColour(Colour clr) -
> Colour
</autodoc>
27281 <param name=
"clr" type=
"Colour" default=
""/>
27284 <method name=
"GetSelectedTextBgColour" type=
"Colour" overloaded=
"no">
27285 <autodoc>GetSelectedTextBgColour(Colour clr) -
> Colour
</autodoc>
27287 <param name=
"clr" type=
"Colour" default=
""/>
27291 <class name=
"DefaultHtmlRenderingStyle" oldname=
"wxDefaultHtmlRenderingStyle" module=
"html">
27292 <baseclass name=
"HtmlRenderingStyle"/>
27293 <method name=
"GetSelectedTextColour" type=
"Colour" overloaded=
"no">
27294 <autodoc>GetSelectedTextColour(Colour clr) -
> Colour
</autodoc>
27296 <param name=
"clr" type=
"Colour" default=
""/>
27299 <method name=
"GetSelectedTextBgColour" type=
"Colour" overloaded=
"no">
27300 <autodoc>GetSelectedTextBgColour(Colour clr) -
> Colour
</autodoc>
27302 <param name=
"clr" type=
"Colour" default=
""/>
27306 <class name=
"HtmlRenderingInfo" oldname=
"wxHtmlRenderingInfo" module=
"html">
27307 <constructor name=
"HtmlRenderingInfo" overloaded=
"no">
27308 <autodoc>__init__() -
> HtmlRenderingInfo
</autodoc>
27310 <destructor name=
"~wxHtmlRenderingInfo" overloaded=
"no">
27311 <autodoc>__del__()
</autodoc>
27313 <method name=
"SetSelection" type=
"" overloaded=
"no">
27314 <autodoc>SetSelection(HtmlSelection s)
</autodoc>
27316 <param name=
"s" type=
"HtmlSelection" default=
""/>
27319 <method name=
"GetSelection" type=
"HtmlSelection" overloaded=
"no">
27320 <autodoc>GetSelection() -
> HtmlSelection
</autodoc>
27322 <method name=
"SetStyle" type=
"" overloaded=
"no">
27323 <autodoc>SetStyle(HtmlRenderingStyle style)
</autodoc>
27325 <param name=
"style" type=
"HtmlRenderingStyle" default=
""/>
27328 <method name=
"GetStyle" type=
"HtmlRenderingStyle" overloaded=
"no">
27329 <autodoc>GetStyle() -
> HtmlRenderingStyle
</autodoc>
27331 <method name=
"GetState" type=
"HtmlRenderingState" overloaded=
"no">
27332 <autodoc>GetState() -
> HtmlRenderingState
</autodoc>
27336 #---------------------------------------------------------------------------
27338 <class name=
"HtmlCell" oldname=
"wxHtmlCell" module=
"html">
27339 <baseclass name=
"Object"/>
27340 <constructor name=
"HtmlCell" overloaded=
"no">
27341 <autodoc>__init__() -
> HtmlCell
</autodoc>
27343 <method name=
"GetPosX" type=
"int" overloaded=
"no">
27344 <autodoc>GetPosX() -
> int
</autodoc>
27346 <method name=
"GetPosY" type=
"int" overloaded=
"no">
27347 <autodoc>GetPosY() -
> int
</autodoc>
27349 <method name=
"GetWidth" type=
"int" overloaded=
"no">
27350 <autodoc>GetWidth() -
> int
</autodoc>
27352 <method name=
"GetHeight" type=
"int" overloaded=
"no">
27353 <autodoc>GetHeight() -
> int
</autodoc>
27355 <method name=
"GetDescent" type=
"int" overloaded=
"no">
27356 <autodoc>GetDescent() -
> int
</autodoc>
27358 <method name=
"GetId" type=
"String" overloaded=
"no">
27359 <autodoc>GetId() -
> String
</autodoc>
27361 <method name=
"SetId" type=
"" overloaded=
"no">
27362 <autodoc>SetId(String id)
</autodoc>
27364 <param name=
"id" type=
"String" default=
""/>
27367 <method name=
"GetLink" type=
"HtmlLinkInfo" overloaded=
"no">
27368 <autodoc>GetLink(int x=
0, int y=
0) -
> HtmlLinkInfo
</autodoc>
27370 <param name=
"x" type=
"int" default=
"0"/>
27371 <param name=
"y" type=
"int" default=
"0"/>
27374 <method name=
"GetNext" type=
"HtmlCell" overloaded=
"no">
27375 <autodoc>GetNext() -
> HtmlCell
</autodoc>
27377 <method name=
"GetParent" type=
"wxHtmlContainerCell" overloaded=
"no">
27378 <autodoc>GetParent() -
> HtmlContainerCell
</autodoc>
27380 <method name=
"GetFirstChild" type=
"HtmlCell" overloaded=
"no">
27381 <autodoc>GetFirstChild() -
> HtmlCell
</autodoc>
27383 <method name=
"GetCursor" type=
"Cursor" overloaded=
"no">
27384 <autodoc>GetCursor() -
> Cursor
</autodoc>
27386 <method name=
"IsFormattingCell" type=
"bool" overloaded=
"no">
27387 <autodoc>IsFormattingCell() -
> bool
</autodoc>
27389 <method name=
"SetLink" type=
"" overloaded=
"no">
27390 <autodoc>SetLink(HtmlLinkInfo link)
</autodoc>
27392 <param name=
"link" type=
"HtmlLinkInfo" default=
""/>
27395 <method name=
"SetNext" type=
"" overloaded=
"no">
27396 <autodoc>SetNext(HtmlCell cell)
</autodoc>
27398 <param name=
"cell" type=
"HtmlCell" default=
""/>
27401 <method name=
"SetParent" type=
"" overloaded=
"no">
27402 <autodoc>SetParent(HtmlContainerCell p)
</autodoc>
27404 <param name=
"p" type=
"wxHtmlContainerCell" default=
""/>
27407 <method name=
"SetPos" type=
"" overloaded=
"no">
27408 <autodoc>SetPos(int x, int y)
</autodoc>
27410 <param name=
"x" type=
"int" default=
""/>
27411 <param name=
"y" type=
"int" default=
""/>
27414 <method name=
"Layout" type=
"" overloaded=
"no">
27415 <autodoc>Layout(int w)
</autodoc>
27417 <param name=
"w" type=
"int" default=
""/>
27420 <method name=
"Draw" type=
"" overloaded=
"no">
27421 <autodoc>Draw(DC dc, int x, int y, int view_y1, int view_y2, HtmlRenderingInfo info)
</autodoc>
27423 <param name=
"dc" type=
"DC" default=
""/>
27424 <param name=
"x" type=
"int" default=
""/>
27425 <param name=
"y" type=
"int" default=
""/>
27426 <param name=
"view_y1" type=
"int" default=
""/>
27427 <param name=
"view_y2" type=
"int" default=
""/>
27428 <param name=
"info" type=
"HtmlRenderingInfo" default=
""/>
27431 <method name=
"DrawInvisible" type=
"" overloaded=
"no">
27432 <autodoc>DrawInvisible(DC dc, int x, int y, HtmlRenderingInfo info)
</autodoc>
27434 <param name=
"dc" type=
"DC" default=
""/>
27435 <param name=
"x" type=
"int" default=
""/>
27436 <param name=
"y" type=
"int" default=
""/>
27437 <param name=
"info" type=
"HtmlRenderingInfo" default=
""/>
27440 <method name=
"Find" type=
"HtmlCell" overloaded=
"no">
27441 <autodoc>Find(int condition, void param) -
> HtmlCell
</autodoc>
27443 <param name=
"condition" type=
"int" default=
""/>
27444 <param name=
"param" type=
"" default=
""/>
27447 <method name=
"AdjustPagebreak" type=
"bool" overloaded=
"no">
27448 <autodoc>AdjustPagebreak(int INOUT) -
> bool
</autodoc>
27450 <param name=
"INOUT" type=
"int" default=
""/>
27453 <method name=
"SetCanLiveOnPagebreak" type=
"" overloaded=
"no">
27454 <autodoc>SetCanLiveOnPagebreak(bool can)
</autodoc>
27456 <param name=
"can" type=
"bool" default=
""/>
27459 <method name=
"IsLinebreakAllowed" type=
"bool" overloaded=
"no">
27460 <autodoc>IsLinebreakAllowed() -
> bool
</autodoc>
27462 <method name=
"IsTerminalCell" type=
"bool" overloaded=
"no">
27463 <autodoc>IsTerminalCell() -
> bool
</autodoc>
27465 <method name=
"FindCellByPos" type=
"HtmlCell" overloaded=
"no">
27466 <autodoc>FindCellByPos(int x, int y, unsigned int flags=HTML_FIND_EXACT) -
> HtmlCell
</autodoc>
27468 <param name=
"x" type=
"int" default=
""/>
27469 <param name=
"y" type=
"int" default=
""/>
27470 <param name=
"flags" type=
"unsigned int" default=
"wxHTML_FIND_EXACT"/>
27473 <method name=
"GetAbsPos" type=
"Point" overloaded=
"no">
27474 <autodoc>GetAbsPos() -
> Point
</autodoc>
27476 <method name=
"GetFirstTerminal" type=
"HtmlCell" overloaded=
"no">
27477 <autodoc>GetFirstTerminal() -
> HtmlCell
</autodoc>
27479 <method name=
"GetLastTerminal" type=
"HtmlCell" overloaded=
"no">
27480 <autodoc>GetLastTerminal() -
> HtmlCell
</autodoc>
27482 <method name=
"GetDepth" type=
"unsigned int" overloaded=
"no">
27483 <autodoc>GetDepth() -
> unsigned int
</autodoc>
27485 <method name=
"IsBefore" type=
"bool" overloaded=
"no">
27486 <autodoc>IsBefore(HtmlCell cell) -
> bool
</autodoc>
27488 <param name=
"cell" type=
"HtmlCell" default=
""/>
27491 <method name=
"ConvertToText" type=
"String" overloaded=
"no">
27492 <autodoc>ConvertToText(HtmlSelection sel) -
> String
</autodoc>
27494 <param name=
"sel" type=
"HtmlSelection" default=
""/>
27498 <class name=
"HtmlWordCell" oldname=
"wxHtmlWordCell" module=
"html">
27499 <baseclass name=
"HtmlCell"/>
27500 <constructor name=
"HtmlWordCell" overloaded=
"no">
27501 <autodoc>__init__(String word, DC dc) -
> HtmlWordCell
</autodoc>
27503 <param name=
"word" type=
"String" default=
""/>
27504 <param name=
"dc" type=
"DC" default=
""/>
27508 <class name=
"HtmlContainerCell" oldname=
"wxHtmlContainerCell" module=
"html">
27509 <baseclass name=
"HtmlCell"/>
27510 <constructor name=
"HtmlContainerCell" overloaded=
"no">
27511 <autodoc>__init__(HtmlContainerCell parent) -
> HtmlContainerCell
</autodoc>
27513 <param name=
"parent" type=
"HtmlContainerCell" default=
""/>
27516 <method name=
"InsertCell" type=
"" overloaded=
"no">
27517 <autodoc>InsertCell(HtmlCell cell)
</autodoc>
27519 <param name=
"cell" type=
"HtmlCell" default=
""/>
27522 <method name=
"SetAlignHor" type=
"" overloaded=
"no">
27523 <autodoc>SetAlignHor(int al)
</autodoc>
27525 <param name=
"al" type=
"int" default=
""/>
27528 <method name=
"GetAlignHor" type=
"int" overloaded=
"no">
27529 <autodoc>GetAlignHor() -
> int
</autodoc>
27531 <method name=
"SetAlignVer" type=
"" overloaded=
"no">
27532 <autodoc>SetAlignVer(int al)
</autodoc>
27534 <param name=
"al" type=
"int" default=
""/>
27537 <method name=
"GetAlignVer" type=
"int" overloaded=
"no">
27538 <autodoc>GetAlignVer() -
> int
</autodoc>
27540 <method name=
"SetIndent" type=
"" overloaded=
"no">
27541 <autodoc>SetIndent(int i, int what, int units=HTML_UNITS_PIXELS)
</autodoc>
27543 <param name=
"i" type=
"int" default=
""/>
27544 <param name=
"what" type=
"int" default=
""/>
27545 <param name=
"units" type=
"int" default=
"wxHTML_UNITS_PIXELS"/>
27548 <method name=
"GetIndent" type=
"int" overloaded=
"no">
27549 <autodoc>GetIndent(int ind) -
> int
</autodoc>
27551 <param name=
"ind" type=
"int" default=
""/>
27554 <method name=
"GetIndentUnits" type=
"int" overloaded=
"no">
27555 <autodoc>GetIndentUnits(int ind) -
> int
</autodoc>
27557 <param name=
"ind" type=
"int" default=
""/>
27560 <method name=
"SetAlign" type=
"" overloaded=
"no">
27561 <autodoc>SetAlign(HtmlTag tag)
</autodoc>
27563 <param name=
"tag" type=
"HtmlTag" default=
""/>
27566 <method name=
"SetWidthFloat" type=
"" overloaded=
"no">
27567 <autodoc>SetWidthFloat(int w, int units)
</autodoc>
27569 <param name=
"w" type=
"int" default=
""/>
27570 <param name=
"units" type=
"int" default=
""/>
27573 <method name=
"SetWidthFloatFromTag" type=
"" overloaded=
"no">
27574 <autodoc>SetWidthFloatFromTag(HtmlTag tag)
</autodoc>
27576 <param name=
"tag" type=
"HtmlTag" default=
""/>
27579 <method name=
"SetMinHeight" type=
"" overloaded=
"no">
27580 <autodoc>SetMinHeight(int h, int align=HTML_ALIGN_TOP)
</autodoc>
27582 <param name=
"h" type=
"int" default=
""/>
27583 <param name=
"align" type=
"int" default=
"wxHTML_ALIGN_TOP"/>
27586 <method name=
"SetBackgroundColour" type=
"" overloaded=
"no">
27587 <autodoc>SetBackgroundColour(Colour clr)
</autodoc>
27589 <param name=
"clr" type=
"Colour" default=
""/>
27592 <method name=
"GetBackgroundColour" type=
"Colour" overloaded=
"no">
27593 <autodoc>GetBackgroundColour() -
> Colour
</autodoc>
27595 <method name=
"SetBorder" type=
"" overloaded=
"no">
27596 <autodoc>SetBorder(Colour clr1, Colour clr2)
</autodoc>
27598 <param name=
"clr1" type=
"Colour" default=
""/>
27599 <param name=
"clr2" type=
"Colour" default=
""/>
27602 <method name=
"GetFirstChild" type=
"HtmlCell" overloaded=
"no">
27603 <autodoc>GetFirstChild() -
> HtmlCell
</autodoc>
27606 <class name=
"HtmlColourCell" oldname=
"wxHtmlColourCell" module=
"html">
27607 <baseclass name=
"HtmlCell"/>
27608 <constructor name=
"HtmlColourCell" overloaded=
"no">
27609 <autodoc>__init__(Colour clr, int flags=HTML_CLR_FOREGROUND) -
> HtmlColourCell
</autodoc>
27611 <param name=
"clr" type=
"Colour" default=
""/>
27612 <param name=
"flags" type=
"int" default=
"wxHTML_CLR_FOREGROUND"/>
27616 <class name=
"HtmlFontCell" oldname=
"wxHtmlFontCell" module=
"html">
27617 <baseclass name=
"HtmlCell"/>
27618 <constructor name=
"HtmlFontCell" overloaded=
"no">
27619 <autodoc>__init__(Font font) -
> HtmlFontCell
</autodoc>
27621 <param name=
"font" type=
"Font" default=
""/>
27625 <class name=
"HtmlWidgetCell" oldname=
"wxHtmlWidgetCell" module=
"html">
27626 <baseclass name=
"HtmlCell"/>
27627 <constructor name=
"HtmlWidgetCell" overloaded=
"no">
27628 <autodoc>__init__(Window wnd, int w=
0) -
> HtmlWidgetCell
</autodoc>
27630 <param name=
"wnd" type=
"Window" default=
""/>
27631 <param name=
"w" type=
"int" default=
"0"/>
27636 #---------------------------------------------------------------------------
27638 <class name=
"HtmlFilter" oldname=
"wxPyHtmlFilter" module=
"html">
27639 <baseclass name=
"Object"/>
27640 <constructor name=
"wxPyHtmlFilter" overloaded=
"no">
27641 <autodoc>__init__() -
> HtmlFilter
</autodoc>
27643 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
27644 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
27646 <param name=
"self" type=
"PyObject" default=
""/>
27647 <param name=
"_class" type=
"PyObject" default=
""/>
27652 #---------------------------------------------------------------------------
27654 <class name=
"HtmlWindow" oldname=
"wxPyHtmlWindow" module=
"html">
27655 <baseclass name=
"ScrolledWindow"/>
27656 <constructor name=
"wxPyHtmlWindow" overloaded=
"no">
27657 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
27658 Size size=DefaultSize, int style=HW_DEFAULT_STYLE,
27659 String name=HtmlWindowNameStr) -
> HtmlWindow
</autodoc>
27661 <param name=
"parent" type=
"Window" default=
""/>
27662 <param name=
"id" type=
"int" default=
"-1"/>
27663 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
27664 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
27665 <param name=
"style" type=
"int" default=
"wxHW_DEFAULT_STYLE"/>
27666 <param name=
"name" type=
"String" default=
"wxPyHtmlWindowNameStr"/>
27669 <constructor name=
"PreHtmlWindow" overloaded=
"no">
27670 <autodoc>PreHtmlWindow() -
> HtmlWindow
</autodoc>
27672 <method name=
"Create" type=
"bool" overloaded=
"no">
27673 <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition,
27674 Size size=DefaultSize, int style=HW_SCROLLBAR_AUTO,
27675 String name=HtmlWindowNameStr) -
> bool
</autodoc>
27677 <param name=
"parent" type=
"Window" default=
""/>
27678 <param name=
"id" type=
"int" default=
"-1"/>
27679 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
27680 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
27681 <param name=
"style" type=
"int" default=
"wxHW_SCROLLBAR_AUTO"/>
27682 <param name=
"name" type=
"String" default=
"wxPyHtmlWindowNameStr"/>
27685 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
27686 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
27688 <param name=
"self" type=
"PyObject" default=
""/>
27689 <param name=
"_class" type=
"PyObject" default=
""/>
27692 <method name=
"SetPage" type=
"bool" overloaded=
"no">
27693 <autodoc>SetPage(String source) -
> bool
</autodoc>
27695 <param name=
"source" type=
"String" default=
""/>
27698 <method name=
"LoadPage" type=
"bool" overloaded=
"no">
27699 <autodoc>LoadPage(String location) -
> bool
</autodoc>
27701 <param name=
"location" type=
"String" default=
""/>
27704 <method name=
"LoadFile" type=
"bool" overloaded=
"no">
27705 <autodoc>LoadFile(String filename) -
> bool
</autodoc>
27707 <param name=
"filename" type=
"String" default=
""/>
27710 <method name=
"AppendToPage" type=
"bool" overloaded=
"no">
27711 <autodoc>AppendToPage(String source) -
> bool
</autodoc>
27713 <param name=
"source" type=
"String" default=
""/>
27716 <method name=
"GetOpenedPage" type=
"String" overloaded=
"no">
27717 <autodoc>GetOpenedPage() -
> String
</autodoc>
27719 <method name=
"GetOpenedAnchor" type=
"String" overloaded=
"no">
27720 <autodoc>GetOpenedAnchor() -
> String
</autodoc>
27722 <method name=
"GetOpenedPageTitle" type=
"String" overloaded=
"no">
27723 <autodoc>GetOpenedPageTitle() -
> String
</autodoc>
27725 <method name=
"SetRelatedFrame" type=
"" overloaded=
"no">
27726 <autodoc>SetRelatedFrame(Frame frame, String format)
</autodoc>
27728 <param name=
"frame" type=
"Frame" default=
""/>
27729 <param name=
"format" type=
"String" default=
""/>
27732 <method name=
"GetRelatedFrame" type=
"Frame" overloaded=
"no">
27733 <autodoc>GetRelatedFrame() -
> Frame
</autodoc>
27735 <method name=
"SetRelatedStatusBar" type=
"" overloaded=
"no">
27736 <autodoc>SetRelatedStatusBar(int bar)
</autodoc>
27738 <param name=
"bar" type=
"int" default=
""/>
27741 <method name=
"SetFonts" type=
"" overloaded=
"no">
27742 <autodoc>SetFonts(String normal_face, String fixed_face, PyObject sizes=None)
</autodoc>
27744 <param name=
"normal_face" type=
"String" default=
""/>
27745 <param name=
"fixed_face" type=
"String" default=
""/>
27746 <param name=
"sizes" type=
"PyObject" default=
"NULL"/>
27749 <method name=
"SetTitle" type=
"" overloaded=
"no">
27750 <autodoc>SetTitle(String title)
</autodoc>
27752 <param name=
"title" type=
"String" default=
""/>
27755 <method name=
"SetBorders" type=
"" overloaded=
"no">
27756 <autodoc>SetBorders(int b)
</autodoc>
27758 <param name=
"b" type=
"int" default=
""/>
27761 <method name=
"ReadCustomization" type=
"" overloaded=
"no">
27762 <autodoc>ReadCustomization(ConfigBase cfg, String path=EmptyString)
</autodoc>
27764 <param name=
"cfg" type=
"ConfigBase" default=
""/>
27765 <param name=
"path" type=
"String" default=
"wxPyEmptyString"/>
27768 <method name=
"WriteCustomization" type=
"" overloaded=
"no">
27769 <autodoc>WriteCustomization(ConfigBase cfg, String path=EmptyString)
</autodoc>
27771 <param name=
"cfg" type=
"ConfigBase" default=
""/>
27772 <param name=
"path" type=
"String" default=
"wxPyEmptyString"/>
27775 <method name=
"HistoryBack" type=
"bool" overloaded=
"no">
27776 <autodoc>HistoryBack() -
> bool
</autodoc>
27778 <method name=
"HistoryForward" type=
"bool" overloaded=
"no">
27779 <autodoc>HistoryForward() -
> bool
</autodoc>
27781 <method name=
"HistoryCanBack" type=
"bool" overloaded=
"no">
27782 <autodoc>HistoryCanBack() -
> bool
</autodoc>
27784 <method name=
"HistoryCanForward" type=
"bool" overloaded=
"no">
27785 <autodoc>HistoryCanForward() -
> bool
</autodoc>
27787 <method name=
"HistoryClear" type=
"" overloaded=
"no">
27788 <autodoc>HistoryClear()
</autodoc>
27790 <method name=
"GetInternalRepresentation" type=
"HtmlContainerCell" overloaded=
"no">
27791 <autodoc>GetInternalRepresentation() -
> HtmlContainerCell
</autodoc>
27793 <method name=
"GetParser" type=
"HtmlWinParser" overloaded=
"no">
27794 <autodoc>GetParser() -
> HtmlWinParser
</autodoc>
27796 <method name=
"ScrollToAnchor" type=
"bool" overloaded=
"no">
27797 <autodoc>ScrollToAnchor(String anchor) -
> bool
</autodoc>
27799 <param name=
"anchor" type=
"String" default=
""/>
27802 <method name=
"HasAnchor" type=
"bool" overloaded=
"no">
27803 <autodoc>HasAnchor(String anchor) -
> bool
</autodoc>
27805 <param name=
"anchor" type=
"String" default=
""/>
27808 <staticmethod name=
"AddFilter" type=
"" overloaded=
"no">
27809 <autodoc>AddFilter(HtmlFilter filter)
</autodoc>
27811 <param name=
"filter" type=
"HtmlFilter" default=
""/>
27814 <method name=
"SelectWord" type=
"" overloaded=
"no">
27815 <autodoc>SelectWord(Point pos)
</autodoc>
27817 <param name=
"pos" type=
"Point" default=
""/>
27820 <method name=
"SelectLine" type=
"" overloaded=
"no">
27821 <autodoc>SelectLine(Point pos)
</autodoc>
27823 <param name=
"pos" type=
"Point" default=
""/>
27826 <method name=
"SelectAll" type=
"" overloaded=
"no">
27827 <autodoc>SelectAll()
</autodoc>
27829 <method name=
"base_OnLinkClicked" type=
"" overloaded=
"no">
27830 <autodoc>base_OnLinkClicked(HtmlLinkInfo link)
</autodoc>
27832 <param name=
"link" type=
"HtmlLinkInfo" default=
""/>
27835 <method name=
"base_OnSetTitle" type=
"" overloaded=
"no">
27836 <autodoc>base_OnSetTitle(String title)
</autodoc>
27838 <param name=
"title" type=
"String" default=
""/>
27841 <method name=
"base_OnCellMouseHover" type=
"" overloaded=
"no">
27842 <autodoc>base_OnCellMouseHover(HtmlCell cell, int x, int y)
</autodoc>
27844 <param name=
"cell" type=
"HtmlCell" default=
""/>
27845 <param name=
"x" type=
"int" default=
""/>
27846 <param name=
"y" type=
"int" default=
""/>
27849 <method name=
"base_OnCellClicked" type=
"" overloaded=
"no">
27850 <autodoc>base_OnCellClicked(HtmlCell cell, int x, int y, MouseEvent event)
</autodoc>
27852 <param name=
"cell" type=
"HtmlCell" default=
""/>
27853 <param name=
"x" type=
"int" default=
""/>
27854 <param name=
"y" type=
"int" default=
""/>
27855 <param name=
"event" type=
"MouseEvent" default=
""/>
27860 #---------------------------------------------------------------------------
27862 <class name=
"HtmlDCRenderer" oldname=
"wxHtmlDCRenderer" module=
"html">
27863 <baseclass name=
"Object"/>
27864 <constructor name=
"HtmlDCRenderer" overloaded=
"no">
27865 <autodoc>__init__() -
> HtmlDCRenderer
</autodoc>
27867 <destructor name=
"~wxHtmlDCRenderer" overloaded=
"no">
27868 <autodoc>__del__()
</autodoc>
27870 <method name=
"SetDC" type=
"" overloaded=
"no">
27871 <autodoc>SetDC(DC dc, int maxwidth)
</autodoc>
27873 <param name=
"dc" type=
"DC" default=
""/>
27874 <param name=
"maxwidth" type=
"int" default=
""/>
27877 <method name=
"SetSize" type=
"" overloaded=
"no">
27878 <autodoc>SetSize(int width, int height)
</autodoc>
27880 <param name=
"width" type=
"int" default=
""/>
27881 <param name=
"height" type=
"int" default=
""/>
27884 <method name=
"SetHtmlText" type=
"" overloaded=
"no">
27885 <autodoc>SetHtmlText(String html, String basepath=EmptyString, bool isdir=True)
</autodoc>
27887 <param name=
"html" type=
"String" default=
""/>
27888 <param name=
"basepath" type=
"String" default=
"wxPyEmptyString"/>
27889 <param name=
"isdir" type=
"bool" default=
"True"/>
27892 <method name=
"SetFonts" type=
"" overloaded=
"no">
27893 <autodoc>SetFonts(String normal_face, String fixed_face, PyObject sizes=None)
</autodoc>
27895 <param name=
"normal_face" type=
"String" default=
""/>
27896 <param name=
"fixed_face" type=
"String" default=
""/>
27897 <param name=
"sizes" type=
"PyObject" default=
"NULL"/>
27900 <method name=
"Render" type=
"int" overloaded=
"no">
27901 <autodoc>Render(int x, int y, int from=
0, int dont_render=False, int to=INT_MAX,
27902 int choices=None, int LCOUNT=
0) -
> int
</autodoc>
27904 <param name=
"x" type=
"int" default=
""/>
27905 <param name=
"y" type=
"int" default=
""/>
27906 <param name=
"from" type=
"int" default=
"0"/>
27907 <param name=
"dont_render" type=
"int" default=
"False"/>
27908 <param name=
"to" type=
"int" default=
"INT_MAX"/>
27909 <param name=
"choices" type=
"int" default=
"NULL"/>
27910 <param name=
"LCOUNT" type=
"int" default=
"0"/>
27913 <method name=
"GetTotalHeight" type=
"int" overloaded=
"no">
27914 <autodoc>GetTotalHeight() -
> int
</autodoc>
27917 <class name=
"HtmlPrintout" oldname=
"wxHtmlPrintout" module=
"html">
27918 <baseclass name=
"Printout"/>
27919 <constructor name=
"HtmlPrintout" overloaded=
"no">
27920 <autodoc>__init__(String title=HtmlPrintoutTitleStr) -
> HtmlPrintout
</autodoc>
27922 <param name=
"title" type=
"String" default=
"wxPyHtmlPrintoutTitleStr"/>
27925 <method name=
"SetHtmlText" type=
"" overloaded=
"no">
27926 <autodoc>SetHtmlText(String html, String basepath=EmptyString, bool isdir=True)
</autodoc>
27928 <param name=
"html" type=
"String" default=
""/>
27929 <param name=
"basepath" type=
"String" default=
"wxPyEmptyString"/>
27930 <param name=
"isdir" type=
"bool" default=
"True"/>
27933 <method name=
"SetHtmlFile" type=
"" overloaded=
"no">
27934 <autodoc>SetHtmlFile(String htmlfile)
</autodoc>
27936 <param name=
"htmlfile" type=
"String" default=
""/>
27939 <method name=
"SetHeader" type=
"" overloaded=
"no">
27940 <autodoc>SetHeader(String header, int pg=PAGE_ALL)
</autodoc>
27942 <param name=
"header" type=
"String" default=
""/>
27943 <param name=
"pg" type=
"int" default=
"wxPAGE_ALL"/>
27946 <method name=
"SetFooter" type=
"" overloaded=
"no">
27947 <autodoc>SetFooter(String footer, int pg=PAGE_ALL)
</autodoc>
27949 <param name=
"footer" type=
"String" default=
""/>
27950 <param name=
"pg" type=
"int" default=
"wxPAGE_ALL"/>
27953 <method name=
"SetFonts" type=
"" overloaded=
"no">
27954 <autodoc>SetFonts(String normal_face, String fixed_face, PyObject sizes=None)
</autodoc>
27956 <param name=
"normal_face" type=
"String" default=
""/>
27957 <param name=
"fixed_face" type=
"String" default=
""/>
27958 <param name=
"sizes" type=
"PyObject" default=
"NULL"/>
27961 <method name=
"SetMargins" type=
"" overloaded=
"no">
27962 <autodoc>SetMargins(float top=
25.2, float bottom=
25.2, float left=
25.2,
27963 float right=
25.2, float spaces=
5)
</autodoc>
27965 <param name=
"top" type=
"float" default=
"25.2"/>
27966 <param name=
"bottom" type=
"float" default=
"25.2"/>
27967 <param name=
"left" type=
"float" default=
"25.2"/>
27968 <param name=
"right" type=
"float" default=
"25.2"/>
27969 <param name=
"spaces" type=
"float" default=
"5"/>
27972 <staticmethod name=
"AddFilter" type=
"" overloaded=
"no">
27973 <autodoc>AddFilter(wxHtmlFilter filter)
</autodoc>
27975 <param name=
"filter" type=
"wxHtmlFilter" default=
""/>
27978 <staticmethod name=
"CleanUpStatics" type=
"" overloaded=
"no">
27979 <autodoc>CleanUpStatics()
</autodoc>
27982 <class name=
"HtmlEasyPrinting" oldname=
"wxHtmlEasyPrinting" module=
"html">
27983 <baseclass name=
"Object"/>
27984 <constructor name=
"HtmlEasyPrinting" overloaded=
"no">
27985 <autodoc>__init__(String name=HtmlPrintingTitleStr, Window parentWindow=None) -
> HtmlEasyPrinting
</autodoc>
27987 <param name=
"name" type=
"String" default=
"wxPyHtmlPrintingTitleStr"/>
27988 <param name=
"parentWindow" type=
"Window" default=
"NULL"/>
27991 <destructor name=
"~wxHtmlEasyPrinting" overloaded=
"no">
27992 <autodoc>__del__()
</autodoc>
27994 <method name=
"PreviewFile" type=
"" overloaded=
"no">
27995 <autodoc>PreviewFile(String htmlfile)
</autodoc>
27997 <param name=
"htmlfile" type=
"String" default=
""/>
28000 <method name=
"PreviewText" type=
"" overloaded=
"no">
28001 <autodoc>PreviewText(String htmltext, String basepath=EmptyString)
</autodoc>
28003 <param name=
"htmltext" type=
"String" default=
""/>
28004 <param name=
"basepath" type=
"String" default=
"wxPyEmptyString"/>
28007 <method name=
"PrintFile" type=
"" overloaded=
"no">
28008 <autodoc>PrintFile(String htmlfile)
</autodoc>
28010 <param name=
"htmlfile" type=
"String" default=
""/>
28013 <method name=
"PrintText" type=
"" overloaded=
"no">
28014 <autodoc>PrintText(String htmltext, String basepath=EmptyString)
</autodoc>
28016 <param name=
"htmltext" type=
"String" default=
""/>
28017 <param name=
"basepath" type=
"String" default=
"wxPyEmptyString"/>
28020 <method name=
"PrinterSetup" type=
"" overloaded=
"no">
28021 <autodoc>PrinterSetup()
</autodoc>
28023 <method name=
"PageSetup" type=
"" overloaded=
"no">
28024 <autodoc>PageSetup()
</autodoc>
28026 <method name=
"SetHeader" type=
"" overloaded=
"no">
28027 <autodoc>SetHeader(String header, int pg=PAGE_ALL)
</autodoc>
28029 <param name=
"header" type=
"String" default=
""/>
28030 <param name=
"pg" type=
"int" default=
"wxPAGE_ALL"/>
28033 <method name=
"SetFooter" type=
"" overloaded=
"no">
28034 <autodoc>SetFooter(String footer, int pg=PAGE_ALL)
</autodoc>
28036 <param name=
"footer" type=
"String" default=
""/>
28037 <param name=
"pg" type=
"int" default=
"wxPAGE_ALL"/>
28040 <method name=
"SetFonts" type=
"" overloaded=
"no">
28041 <autodoc>SetFonts(String normal_face, String fixed_face, PyObject sizes=None)
</autodoc>
28043 <param name=
"normal_face" type=
"String" default=
""/>
28044 <param name=
"fixed_face" type=
"String" default=
""/>
28045 <param name=
"sizes" type=
"PyObject" default=
"NULL"/>
28048 <method name=
"GetPrintData" type=
"PrintData" overloaded=
"no">
28049 <autodoc>GetPrintData() -
> PrintData
</autodoc>
28051 <method name=
"GetPageSetupData" type=
"PageSetupDialogData" overloaded=
"no">
28052 <autodoc>GetPageSetupData() -
> PageSetupDialogData
</autodoc>
28056 #---------------------------------------------------------------------------
28058 <class name=
"HtmlBookRecord" oldname=
"wxHtmlBookRecord" module=
"html">
28059 <constructor name=
"HtmlBookRecord" overloaded=
"no">
28060 <autodoc>__init__(String bookfile, String basepath, String title, String start) -
> HtmlBookRecord
</autodoc>
28062 <param name=
"bookfile" type=
"String" default=
""/>
28063 <param name=
"basepath" type=
"String" default=
""/>
28064 <param name=
"title" type=
"String" default=
""/>
28065 <param name=
"start" type=
"String" default=
""/>
28068 <method name=
"GetBookFile" type=
"String" overloaded=
"no">
28069 <autodoc>GetBookFile() -
> String
</autodoc>
28071 <method name=
"GetTitle" type=
"String" overloaded=
"no">
28072 <autodoc>GetTitle() -
> String
</autodoc>
28074 <method name=
"GetStart" type=
"String" overloaded=
"no">
28075 <autodoc>GetStart() -
> String
</autodoc>
28077 <method name=
"GetBasePath" type=
"String" overloaded=
"no">
28078 <autodoc>GetBasePath() -
> String
</autodoc>
28080 <method name=
"SetContentsRange" type=
"" overloaded=
"no">
28081 <autodoc>SetContentsRange(int start, int end)
</autodoc>
28083 <param name=
"start" type=
"int" default=
""/>
28084 <param name=
"end" type=
"int" default=
""/>
28087 <method name=
"GetContentsStart" type=
"int" overloaded=
"no">
28088 <autodoc>GetContentsStart() -
> int
</autodoc>
28090 <method name=
"GetContentsEnd" type=
"int" overloaded=
"no">
28091 <autodoc>GetContentsEnd() -
> int
</autodoc>
28093 <method name=
"SetTitle" type=
"" overloaded=
"no">
28094 <autodoc>SetTitle(String title)
</autodoc>
28096 <param name=
"title" type=
"String" default=
""/>
28099 <method name=
"SetBasePath" type=
"" overloaded=
"no">
28100 <autodoc>SetBasePath(String path)
</autodoc>
28102 <param name=
"path" type=
"String" default=
""/>
28105 <method name=
"SetStart" type=
"" overloaded=
"no">
28106 <autodoc>SetStart(String start)
</autodoc>
28108 <param name=
"start" type=
"String" default=
""/>
28111 <method name=
"GetFullPath" type=
"String" overloaded=
"no">
28112 <autodoc>GetFullPath(String page) -
> String
</autodoc>
28114 <param name=
"page" type=
"String" default=
""/>
28118 <class name=
"HtmlContentsItem" oldname=
"wxHtmlContentsItem" module=
"html">
28119 <method name=
"GetLevel" type=
"int" overloaded=
"no">
28120 <autodoc>GetLevel() -
> int
</autodoc>
28122 <method name=
"GetID" type=
"int" overloaded=
"no">
28123 <autodoc>GetID() -
> int
</autodoc>
28125 <method name=
"GetName" type=
"String" overloaded=
"no">
28126 <autodoc>GetName() -
> String
</autodoc>
28128 <method name=
"GetPage" type=
"String" overloaded=
"no">
28129 <autodoc>GetPage() -
> String
</autodoc>
28131 <method name=
"GetBook" type=
"HtmlBookRecord" overloaded=
"no">
28132 <autodoc>GetBook() -
> HtmlBookRecord
</autodoc>
28135 <class name=
"HtmlSearchStatus" oldname=
"wxHtmlSearchStatus" module=
"html">
28136 <method name=
"Search" type=
"bool" overloaded=
"no">
28137 <autodoc>Search() -
> bool
</autodoc>
28139 <method name=
"IsActive" type=
"bool" overloaded=
"no">
28140 <autodoc>IsActive() -
> bool
</autodoc>
28142 <method name=
"GetCurIndex" type=
"int" overloaded=
"no">
28143 <autodoc>GetCurIndex() -
> int
</autodoc>
28145 <method name=
"GetMaxIndex" type=
"int" overloaded=
"no">
28146 <autodoc>GetMaxIndex() -
> int
</autodoc>
28148 <method name=
"GetName" type=
"String" overloaded=
"no">
28149 <autodoc>GetName() -
> String
</autodoc>
28151 <method name=
"GetContentsItem" type=
"HtmlContentsItem" overloaded=
"no">
28152 <autodoc>GetContentsItem() -
> HtmlContentsItem
</autodoc>
28155 <class name=
"HtmlHelpData" oldname=
"wxHtmlHelpData" module=
"html">
28156 <constructor name=
"HtmlHelpData" overloaded=
"no">
28157 <autodoc>__init__() -
> HtmlHelpData
</autodoc>
28159 <destructor name=
"~wxHtmlHelpData" overloaded=
"no">
28160 <autodoc>__del__()
</autodoc>
28162 <method name=
"SetTempDir" type=
"" overloaded=
"no">
28163 <autodoc>SetTempDir(String path)
</autodoc>
28165 <param name=
"path" type=
"String" default=
""/>
28168 <method name=
"AddBook" type=
"bool" overloaded=
"no">
28169 <autodoc>AddBook(String book) -
> bool
</autodoc>
28171 <param name=
"book" type=
"String" default=
""/>
28174 <method name=
"FindPageByName" type=
"String" overloaded=
"no">
28175 <autodoc>FindPageByName(String page) -
> String
</autodoc>
28177 <param name=
"page" type=
"String" default=
""/>
28180 <method name=
"FindPageById" type=
"String" overloaded=
"no">
28181 <autodoc>FindPageById(int id) -
> String
</autodoc>
28183 <param name=
"id" type=
"int" default=
""/>
28186 <method name=
"GetBookRecArray" type=
"wxHtmlBookRecArray" overloaded=
"no">
28187 <autodoc>GetBookRecArray() -
> wxHtmlBookRecArray
</autodoc>
28189 <method name=
"GetContents" type=
"HtmlContentsItem" overloaded=
"no">
28190 <autodoc>GetContents() -
> HtmlContentsItem
</autodoc>
28192 <method name=
"GetContentsCnt" type=
"int" overloaded=
"no">
28193 <autodoc>GetContentsCnt() -
> int
</autodoc>
28195 <method name=
"GetIndex" type=
"HtmlContentsItem" overloaded=
"no">
28196 <autodoc>GetIndex() -
> HtmlContentsItem
</autodoc>
28198 <method name=
"GetIndexCnt" type=
"int" overloaded=
"no">
28199 <autodoc>GetIndexCnt() -
> int
</autodoc>
28202 <class name=
"HtmlHelpFrame" oldname=
"wxHtmlHelpFrame" module=
"html">
28203 <baseclass name=
"Frame"/>
28204 <constructor name=
"HtmlHelpFrame" overloaded=
"no">
28205 <autodoc>__init__(Window parent, int ??, String title=EmptyString, int style=HF_DEFAULTSTYLE,
28206 HtmlHelpData data=None) -
> HtmlHelpFrame
</autodoc>
28208 <param name=
"parent" type=
"Window" default=
""/>
28209 <param name=
"" type=
"int" default=
""/>
28210 <param name=
"title" type=
"String" default=
"wxPyEmptyString"/>
28211 <param name=
"style" type=
"int" default=
"wxHF_DEFAULTSTYLE"/>
28212 <param name=
"data" type=
"HtmlHelpData" default=
"NULL"/>
28215 <method name=
"GetData" type=
"HtmlHelpData" overloaded=
"no">
28216 <autodoc>GetData() -
> HtmlHelpData
</autodoc>
28218 <method name=
"SetTitleFormat" type=
"" overloaded=
"no">
28219 <autodoc>SetTitleFormat(String format)
</autodoc>
28221 <param name=
"format" type=
"String" default=
""/>
28224 <method name=
"Display" type=
"" overloaded=
"no">
28225 <autodoc>Display(String x)
</autodoc>
28227 <param name=
"x" type=
"String" default=
""/>
28230 <method name=
"DisplayID" type=
"" overloaded=
"no">
28231 <autodoc>DisplayID(int id)
</autodoc>
28233 <param name=
"id" type=
"int" default=
""/>
28236 <method name=
"DisplayContents" type=
"" overloaded=
"no">
28237 <autodoc>DisplayContents()
</autodoc>
28239 <method name=
"DisplayIndex" type=
"" overloaded=
"no">
28240 <autodoc>DisplayIndex()
</autodoc>
28242 <method name=
"KeywordSearch" type=
"bool" overloaded=
"no">
28243 <autodoc>KeywordSearch(String keyword) -
> bool
</autodoc>
28245 <param name=
"keyword" type=
"String" default=
""/>
28248 <method name=
"UseConfig" type=
"" overloaded=
"no">
28249 <autodoc>UseConfig(ConfigBase config, String rootpath=EmptyString)
</autodoc>
28251 <param name=
"config" type=
"ConfigBase" default=
""/>
28252 <param name=
"rootpath" type=
"String" default=
"wxPyEmptyString"/>
28255 <method name=
"ReadCustomization" type=
"" overloaded=
"no">
28256 <autodoc>ReadCustomization(ConfigBase cfg, String path=EmptyString)
</autodoc>
28258 <param name=
"cfg" type=
"ConfigBase" default=
""/>
28259 <param name=
"path" type=
"String" default=
"wxPyEmptyString"/>
28262 <method name=
"WriteCustomization" type=
"" overloaded=
"no">
28263 <autodoc>WriteCustomization(ConfigBase cfg, String path=EmptyString)
</autodoc>
28265 <param name=
"cfg" type=
"ConfigBase" default=
""/>
28266 <param name=
"path" type=
"String" default=
"wxPyEmptyString"/>
28270 <class name=
"HtmlHelpController" oldname=
"wxHtmlHelpController" module=
"html">
28271 <baseclass name=
"EvtHandler"/>
28272 <constructor name=
"HtmlHelpController" overloaded=
"no">
28273 <autodoc>__init__(int style=HF_DEFAULTSTYLE) -
> HtmlHelpController
</autodoc>
28275 <param name=
"style" type=
"int" default=
"wxHF_DEFAULTSTYLE"/>
28278 <destructor name=
"~wxHtmlHelpController" overloaded=
"no">
28279 <autodoc>__del__()
</autodoc>
28281 <method name=
"SetTitleFormat" type=
"" overloaded=
"no">
28282 <autodoc>SetTitleFormat(String format)
</autodoc>
28284 <param name=
"format" type=
"String" default=
""/>
28287 <method name=
"SetTempDir" type=
"" overloaded=
"no">
28288 <autodoc>SetTempDir(String path)
</autodoc>
28290 <param name=
"path" type=
"String" default=
""/>
28293 <method name=
"AddBook" type=
"bool" overloaded=
"no">
28294 <autodoc>AddBook(String book, int show_wait_msg=False) -
> bool
</autodoc>
28296 <param name=
"book" type=
"String" default=
""/>
28297 <param name=
"show_wait_msg" type=
"int" default=
"False"/>
28300 <method name=
"Display" type=
"" overloaded=
"no">
28301 <autodoc>Display(String x)
</autodoc>
28303 <param name=
"x" type=
"String" default=
""/>
28306 <method name=
"DisplayID" type=
"" overloaded=
"no">
28307 <autodoc>DisplayID(int id)
</autodoc>
28309 <param name=
"id" type=
"int" default=
""/>
28312 <method name=
"DisplayContents" type=
"" overloaded=
"no">
28313 <autodoc>DisplayContents()
</autodoc>
28315 <method name=
"DisplayIndex" type=
"" overloaded=
"no">
28316 <autodoc>DisplayIndex()
</autodoc>
28318 <method name=
"KeywordSearch" type=
"bool" overloaded=
"no">
28319 <autodoc>KeywordSearch(String keyword) -
> bool
</autodoc>
28321 <param name=
"keyword" type=
"String" default=
""/>
28324 <method name=
"UseConfig" type=
"" overloaded=
"no">
28325 <autodoc>UseConfig(ConfigBase config, String rootpath=EmptyString)
</autodoc>
28327 <param name=
"config" type=
"ConfigBase" default=
""/>
28328 <param name=
"rootpath" type=
"String" default=
"wxPyEmptyString"/>
28331 <method name=
"ReadCustomization" type=
"" overloaded=
"no">
28332 <autodoc>ReadCustomization(ConfigBase cfg, String path=EmptyString)
</autodoc>
28334 <param name=
"cfg" type=
"ConfigBase" default=
""/>
28335 <param name=
"path" type=
"String" default=
"wxPyEmptyString"/>
28338 <method name=
"WriteCustomization" type=
"" overloaded=
"no">
28339 <autodoc>WriteCustomization(ConfigBase cfg, String path=EmptyString)
</autodoc>
28341 <param name=
"cfg" type=
"ConfigBase" default=
""/>
28342 <param name=
"path" type=
"String" default=
"wxPyEmptyString"/>
28345 <method name=
"GetFrame" type=
"HtmlHelpFrame" overloaded=
"no">
28346 <autodoc>GetFrame() -
> HtmlHelpFrame
</autodoc>
28350 <module name=
"wizard">
28351 <import name=
"windows"/>
28352 <pythoncode> wx = core
</pythoncode>
28354 EVT_WIZARD_PAGE_CHANGED = wx.PyEventBinder( wxEVT_WIZARD_PAGE_CHANGED,
1)
28355 EVT_WIZARD_PAGE_CHANGING = wx.PyEventBinder( wxEVT_WIZARD_PAGE_CHANGING,
1)
28356 EVT_WIZARD_CANCEL = wx.PyEventBinder( wxEVT_WIZARD_CANCEL,
1)
28357 EVT_WIZARD_HELP = wx.PyEventBinder( wxEVT_WIZARD_HELP,
1)
28358 EVT_WIZARD_FINISHED = wx.PyEventBinder( wxEVT_WIZARD_FINISHED,
1)
28360 <class name=
"WizardEvent" oldname=
"wxWizardEvent" module=
"wizard">
28361 <baseclass name=
"NotifyEvent"/>
28362 <constructor name=
"WizardEvent" overloaded=
"no">
28363 <autodoc>__init__(wxEventType type=wxEVT_NULL, int id=-
1, bool direction=True,
28364 WizardPage page=None) -
> WizardEvent
</autodoc>
28366 <param name=
"type" type=
"wxEventType" default=
"wxEVT_NULL"/>
28367 <param name=
"id" type=
"int" default=
"-1"/>
28368 <param name=
"direction" type=
"bool" default=
"True"/>
28369 <param name=
"page" type=
"wxWizardPage" default=
"NULL"/>
28372 <method name=
"GetDirection" type=
"bool" overloaded=
"no">
28373 <autodoc>GetDirection() -
> bool
</autodoc>
28375 <method name=
"GetPage" type=
"wxWizardPage" overloaded=
"no">
28376 <autodoc>GetPage() -
> WizardPage
</autodoc>
28379 <class name=
"WizardPage" oldname=
"wxWizardPage" module=
"wizard">
28380 <baseclass name=
"Panel"/>
28381 <method name=
"Create" type=
"bool" overloaded=
"no">
28382 <autodoc>Create(Wizard parent, Bitmap bitmap=wxNullBitmap, String resource=EmptyString) -
> bool
</autodoc>
28384 <param name=
"parent" type=
"wxWizard" default=
""/>
28385 <param name=
"bitmap" type=
"Bitmap" default=
"wxNullBitmap"/>
28386 <param name=
"resource" type=
"String" default=
"wxPyEmptyString"/>
28389 <method name=
"GetPrev" type=
"WizardPage" overloaded=
"no">
28390 <autodoc>GetPrev() -
> WizardPage
</autodoc>
28392 <method name=
"GetNext" type=
"WizardPage" overloaded=
"no">
28393 <autodoc>GetNext() -
> WizardPage
</autodoc>
28395 <method name=
"GetBitmap" type=
"Bitmap" overloaded=
"no">
28396 <autodoc>GetBitmap() -
> Bitmap
</autodoc>
28399 <class name=
"PyWizardPage" oldname=
"wxPyWizardPage" module=
"wizard">
28400 <baseclass name=
"WizardPage"/>
28401 <constructor name=
"PyWizardPage" overloaded=
"no">
28402 <autodoc>__init__(Wizard parent, Bitmap bitmap=
&wxNullBitmap, String resource=
&wxPyEmptyString) -
> PyWizardPage
</autodoc>
28404 <param name=
"parent" type=
"wxWizard" default=
""/>
28405 <param name=
"bitmap" type=
"Bitmap" default=
"&wxNullBitmap"/>
28406 <param name=
"resource" type=
"String" default=
"&wxPyEmptyString"/>
28409 <constructor name=
"PrePyWizardPage" overloaded=
"no">
28410 <autodoc>PrePyWizardPage() -
> PyWizardPage
</autodoc>
28412 <method name=
"Create" type=
"bool" overloaded=
"no">
28413 <autodoc>Create(Wizard parent, Bitmap bitmap=wxNullBitmap, String resource=EmptyString) -
> bool
</autodoc>
28415 <param name=
"parent" type=
"wxWizard" default=
""/>
28416 <param name=
"bitmap" type=
"Bitmap" default=
"wxNullBitmap"/>
28417 <param name=
"resource" type=
"String" default=
"wxPyEmptyString"/>
28420 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
28421 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
28423 <param name=
"self" type=
"PyObject" default=
""/>
28424 <param name=
"_class" type=
"PyObject" default=
""/>
28427 <method name=
"base_DoMoveWindow" type=
"" overloaded=
"no">
28428 <autodoc>base_DoMoveWindow(int x, int y, int width, int height)
</autodoc>
28430 <param name=
"x" type=
"int" default=
""/>
28431 <param name=
"y" type=
"int" default=
""/>
28432 <param name=
"width" type=
"int" default=
""/>
28433 <param name=
"height" type=
"int" default=
""/>
28436 <method name=
"base_DoSetSize" type=
"" overloaded=
"no">
28437 <autodoc>base_DoSetSize(int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)
</autodoc>
28439 <param name=
"x" type=
"int" default=
""/>
28440 <param name=
"y" type=
"int" default=
""/>
28441 <param name=
"width" type=
"int" default=
""/>
28442 <param name=
"height" type=
"int" default=
""/>
28443 <param name=
"sizeFlags" type=
"int" default=
"wxSIZE_AUTO"/>
28446 <method name=
"base_DoSetClientSize" type=
"" overloaded=
"no">
28447 <autodoc>base_DoSetClientSize(int width, int height)
</autodoc>
28449 <param name=
"width" type=
"int" default=
""/>
28450 <param name=
"height" type=
"int" default=
""/>
28453 <method name=
"base_DoSetVirtualSize" type=
"" overloaded=
"no">
28454 <autodoc>base_DoSetVirtualSize(int x, int y)
</autodoc>
28456 <param name=
"x" type=
"int" default=
""/>
28457 <param name=
"y" type=
"int" default=
""/>
28460 <method name=
"base_DoGetSize" type=
"" overloaded=
"no">
28461 <autodoc>base_DoGetSize() -
> (width, height)
</autodoc>
28463 <param name=
"OUTPUT" type=
"int" default=
""/>
28464 <param name=
"OUTPUT" type=
"int" default=
""/>
28467 <method name=
"base_DoGetClientSize" type=
"" overloaded=
"no">
28468 <autodoc>base_DoGetClientSize() -
> (width, height)
</autodoc>
28470 <param name=
"OUTPUT" type=
"int" default=
""/>
28471 <param name=
"OUTPUT" type=
"int" default=
""/>
28474 <method name=
"base_DoGetPosition" type=
"" overloaded=
"no">
28475 <autodoc>base_DoGetPosition() -
> (x,y)
</autodoc>
28477 <param name=
"OUTPUT" type=
"int" default=
""/>
28478 <param name=
"OUTPUT" type=
"int" default=
""/>
28481 <method name=
"base_DoGetVirtualSize" type=
"Size" overloaded=
"no">
28482 <autodoc>base_DoGetVirtualSize() -
> Size
</autodoc>
28484 <method name=
"base_DoGetBestSize" type=
"Size" overloaded=
"no">
28485 <autodoc>base_DoGetBestSize() -
> Size
</autodoc>
28487 <method name=
"base_InitDialog" type=
"" overloaded=
"no">
28488 <autodoc>base_InitDialog()
</autodoc>
28490 <method name=
"base_TransferDataToWindow" type=
"bool" overloaded=
"no">
28491 <autodoc>base_TransferDataToWindow() -
> bool
</autodoc>
28493 <method name=
"base_TransferDataFromWindow" type=
"bool" overloaded=
"no">
28494 <autodoc>base_TransferDataFromWindow() -
> bool
</autodoc>
28496 <method name=
"base_Validate" type=
"bool" overloaded=
"no">
28497 <autodoc>base_Validate() -
> bool
</autodoc>
28499 <method name=
"base_AcceptsFocus" type=
"bool" overloaded=
"no">
28500 <autodoc>base_AcceptsFocus() -
> bool
</autodoc>
28502 <method name=
"base_AcceptsFocusFromKeyboard" type=
"bool" overloaded=
"no">
28503 <autodoc>base_AcceptsFocusFromKeyboard() -
> bool
</autodoc>
28505 <method name=
"base_GetMaxSize" type=
"Size" overloaded=
"no">
28506 <autodoc>base_GetMaxSize() -
> Size
</autodoc>
28508 <method name=
"base_AddChild" type=
"" overloaded=
"no">
28509 <autodoc>base_AddChild(Window child)
</autodoc>
28511 <param name=
"child" type=
"Window" default=
""/>
28514 <method name=
"base_RemoveChild" type=
"" overloaded=
"no">
28515 <autodoc>base_RemoveChild(Window child)
</autodoc>
28517 <param name=
"child" type=
"Window" default=
""/>
28521 <class name=
"WizardPageSimple" oldname=
"wxWizardPageSimple" module=
"wizard">
28522 <baseclass name=
"WizardPage"/>
28523 <constructor name=
"WizardPageSimple" overloaded=
"no">
28524 <autodoc>__init__(Wizard parent, WizardPage prev=None, WizardPage next=None,
28525 Bitmap bitmap=wxNullBitmap, wxChar resource=None) -
> WizardPageSimple
</autodoc>
28527 <param name=
"parent" type=
"wxWizard" default=
""/>
28528 <param name=
"prev" type=
"WizardPage" default=
"NULL"/>
28529 <param name=
"next" type=
"WizardPage" default=
"NULL"/>
28530 <param name=
"bitmap" type=
"Bitmap" default=
"wxNullBitmap"/>
28531 <param name=
"resource" type=
"wxChar" default=
"NULL"/>
28534 <constructor name=
"PreWizardPageSimple" overloaded=
"no">
28535 <autodoc>PreWizardPageSimple() -
> WizardPageSimple
</autodoc>
28537 <method name=
"Create" type=
"bool" overloaded=
"no">
28538 <autodoc>Create(Wizard parent=None, WizardPage prev=None, WizardPage next=None,
28539 Bitmap bitmap=wxNullBitmap, wxChar resource=None) -
> bool
</autodoc>
28541 <param name=
"parent" type=
"wxWizard" default=
"NULL"/>
28542 <param name=
"prev" type=
"WizardPage" default=
"NULL"/>
28543 <param name=
"next" type=
"WizardPage" default=
"NULL"/>
28544 <param name=
"bitmap" type=
"Bitmap" default=
"wxNullBitmap"/>
28545 <param name=
"resource" type=
"wxChar" default=
"NULL"/>
28548 <method name=
"SetPrev" type=
"" overloaded=
"no">
28549 <autodoc>SetPrev(WizardPage prev)
</autodoc>
28551 <param name=
"prev" type=
"WizardPage" default=
""/>
28554 <method name=
"SetNext" type=
"" overloaded=
"no">
28555 <autodoc>SetNext(WizardPage next)
</autodoc>
28557 <param name=
"next" type=
"WizardPage" default=
""/>
28560 <staticmethod name=
"Chain" type=
"" overloaded=
"no">
28561 <autodoc>Chain(WizardPageSimple first, WizardPageSimple second)
</autodoc>
28563 <param name=
"first" type=
"WizardPageSimple" default=
""/>
28564 <param name=
"second" type=
"WizardPageSimple" default=
""/>
28568 <class name=
"Wizard" oldname=
"wxWizard" module=
"wizard">
28569 <baseclass name=
"Dialog"/>
28570 <constructor name=
"Wizard" overloaded=
"no">
28571 <autodoc>__init__(Window parent, int id=-
1, String title=EmptyString,
28572 Bitmap bitmap=wxNullBitmap, Point pos=DefaultPosition,
28573 long style=DEFAULT_DIALOG_STYLE) -
> Wizard
</autodoc>
28575 <param name=
"parent" type=
"Window" default=
""/>
28576 <param name=
"id" type=
"int" default=
"-1"/>
28577 <param name=
"title" type=
"String" default=
"wxPyEmptyString"/>
28578 <param name=
"bitmap" type=
"Bitmap" default=
"wxNullBitmap"/>
28579 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
28580 <param name=
"style" type=
"long" default=
"wxDEFAULT_DIALOG_STYLE"/>
28583 <constructor name=
"PreWizard" overloaded=
"no">
28584 <autodoc>PreWizard() -
> Wizard
</autodoc>
28586 <method name=
"Create" type=
"bool" overloaded=
"no">
28587 <autodoc>Create(Window parent, int id=-
1, String title=EmptyString,
28588 Bitmap bitmap=wxNullBitmap, Point pos=DefaultPosition) -
> bool
</autodoc>
28590 <param name=
"parent" type=
"Window" default=
""/>
28591 <param name=
"id" type=
"int" default=
"-1"/>
28592 <param name=
"title" type=
"String" default=
"wxPyEmptyString"/>
28593 <param name=
"bitmap" type=
"Bitmap" default=
"wxNullBitmap"/>
28594 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
28597 <method name=
"Init" type=
"" overloaded=
"no">
28598 <autodoc>Init()
</autodoc>
28600 <method name=
"RunWizard" type=
"bool" overloaded=
"no">
28601 <autodoc>RunWizard(WizardPage firstPage) -
> bool
</autodoc>
28603 <param name=
"firstPage" type=
"WizardPage" default=
""/>
28606 <method name=
"GetCurrentPage" type=
"WizardPage" overloaded=
"no">
28607 <autodoc>GetCurrentPage() -
> WizardPage
</autodoc>
28609 <method name=
"SetPageSize" type=
"" overloaded=
"no">
28610 <autodoc>SetPageSize(Size size)
</autodoc>
28612 <param name=
"size" type=
"Size" default=
""/>
28615 <method name=
"GetPageSize" type=
"Size" overloaded=
"no">
28616 <autodoc>GetPageSize() -
> Size
</autodoc>
28618 <method name=
"FitToPage" type=
"" overloaded=
"no">
28619 <autodoc>FitToPage(WizardPage firstPage)
</autodoc>
28621 <param name=
"firstPage" type=
"WizardPage" default=
""/>
28624 <method name=
"GetPageAreaSizer" type=
"Sizer" overloaded=
"no">
28625 <autodoc>GetPageAreaSizer() -
> Sizer
</autodoc>
28627 <method name=
"SetBorder" type=
"" overloaded=
"no">
28628 <autodoc>SetBorder(int border)
</autodoc>
28630 <param name=
"border" type=
"int" default=
""/>
28633 <method name=
"IsRunning" type=
"bool" overloaded=
"no">
28634 <autodoc>IsRunning() -
> bool
</autodoc>
28636 <method name=
"ShowPage" type=
"bool" overloaded=
"no">
28637 <autodoc>ShowPage(WizardPage page, bool goingForward=True) -
> bool
</autodoc>
28639 <param name=
"page" type=
"WizardPage" default=
""/>
28640 <param name=
"goingForward" type=
"bool" default=
"True"/>
28643 <method name=
"HasNextPage" type=
"bool" overloaded=
"no">
28644 <autodoc>HasNextPage(WizardPage page) -
> bool
</autodoc>
28646 <param name=
"page" type=
"WizardPage" default=
""/>
28649 <method name=
"HasPrevPage" type=
"bool" overloaded=
"no">
28650 <autodoc>HasPrevPage(WizardPage page) -
> bool
</autodoc>
28652 <param name=
"page" type=
"WizardPage" default=
""/>
28657 <module name=
"glcanvas">
28658 <import name=
"core"/>
28659 <pythoncode> wx = core
</pythoncode>
28660 <class name=
"GLContext" oldname=
"wxGLContext" module=
"glcanvas">
28661 <baseclass name=
"Object"/>
28662 <constructor name=
"GLContext" overloaded=
"no">
28663 <autodoc>__init__(bool isRGB, GLCanvas win, wxPalette palette=wxNullPalette,
28664 GLContext other=None) -
> GLContext
</autodoc>
28666 <param name=
"isRGB" type=
"bool" default=
""/>
28667 <param name=
"win" type=
"wxGLCanvas" default=
""/>
28668 <param name=
"palette" type=
"Palette" default=
"wxNullPalette"/>
28669 <param name=
"other" type=
"GLContext" default=
"NULL"/>
28672 <destructor name=
"~wxGLContext" overloaded=
"no">
28673 <autodoc>__del__()
</autodoc>
28675 <method name=
"SetCurrent" type=
"" overloaded=
"no">
28676 <autodoc>SetCurrent()
</autodoc>
28678 <method name=
"SetColour" type=
"" overloaded=
"no">
28679 <autodoc>SetColour(String colour)
</autodoc>
28681 <param name=
"colour" type=
"String" default=
""/>
28684 <method name=
"SwapBuffers" type=
"" overloaded=
"no">
28685 <autodoc>SwapBuffers()
</autodoc>
28687 <method name=
"SetupPixelFormat" type=
"" overloaded=
"no">
28688 <autodoc>SetupPixelFormat()
</autodoc>
28690 <method name=
"SetupPalette" type=
"" overloaded=
"no">
28691 <autodoc>SetupPalette(wxPalette palette)
</autodoc>
28693 <param name=
"palette" type=
"Palette" default=
""/>
28696 <method name=
"CreateDefaultPalette" type=
"Palette" overloaded=
"no">
28697 <autodoc>CreateDefaultPalette() -
> wxPalette
</autodoc>
28699 <method name=
"GetPalette" type=
"Palette" overloaded=
"no">
28700 <autodoc>GetPalette() -
> wxPalette
</autodoc>
28702 <method name=
"GetWindow" type=
"Window" overloaded=
"no">
28703 <autodoc>GetWindow() -
> Window
</autodoc>
28706 <class name=
"GLCanvas" oldname=
"wxGLCanvas" module=
"glcanvas">
28707 <baseclass name=
"Window"/>
28708 <constructor name=
"GLCanvas" overloaded=
"no">
28709 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
28710 Size size=DefaultSize, long style=
0, String name=GLCanvasNameStr,
28711 int attribList=None, wxPalette palette=wxNullPalette) -
> GLCanvas
</autodoc>
28713 <param name=
"parent" type=
"Window" default=
""/>
28714 <param name=
"id" type=
"int" default=
"-1"/>
28715 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
28716 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
28717 <param name=
"style" type=
"long" default=
"0"/>
28718 <param name=
"name" type=
"String" default=
"wxPyGLCanvasNameStr"/>
28719 <param name=
"attribList" type=
"int" default=
"NULL"/>
28720 <param name=
"palette" type=
"Palette" default=
"wxNullPalette"/>
28723 <constructor name=
"GLCanvasWithContext" overloaded=
"no">
28724 <autodoc>GLCanvasWithContext(Window parent, GLContext shared=None, int id=-
1, Point pos=DefaultPosition,
28725 Size size=DefaultSize,
28726 long style=
0, String name=GLCanvasNameStr,
28727 int attribList=None, wxPalette palette=wxNullPalette) -
> GLCanvas
</autodoc>
28729 <param name=
"parent" type=
"Window" default=
""/>
28730 <param name=
"shared" type=
"GLContext" default=
"NULL"/>
28731 <param name=
"id" type=
"int" default=
"-1"/>
28732 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
28733 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
28734 <param name=
"style" type=
"long" default=
"0"/>
28735 <param name=
"name" type=
"String" default=
"wxPyGLCanvasNameStr"/>
28736 <param name=
"attribList" type=
"int" default=
"NULL"/>
28737 <param name=
"palette" type=
"Palette" default=
"wxNullPalette"/>
28740 <method name=
"SetCurrent" type=
"" overloaded=
"no">
28741 <autodoc>SetCurrent()
</autodoc>
28743 <method name=
"SetColour" type=
"" overloaded=
"no">
28744 <autodoc>SetColour(String colour)
</autodoc>
28746 <param name=
"colour" type=
"String" default=
""/>
28749 <method name=
"SwapBuffers" type=
"" overloaded=
"no">
28750 <autodoc>SwapBuffers()
</autodoc>
28752 <method name=
"GetContext" type=
"GLContext" overloaded=
"no">
28753 <autodoc>GetContext() -
> GLContext
</autodoc>
28757 <module name=
"ogl">
28758 <import name=
"windows"/>
28759 <pythoncode> wx = core
</pythoncode>
28761 #---------------------------------------------------------------------------
28763 <class name=
"ShapeRegion" oldname=
"wxShapeRegion" module=
"ogl">
28764 <baseclass name=
"Object"/>
28765 <constructor name=
"ShapeRegion" overloaded=
"no">
28766 <autodoc>__init__() -
> ShapeRegion
</autodoc>
28768 <method name=
"SetText" type=
"" overloaded=
"no">
28769 <autodoc>SetText(String s)
</autodoc>
28771 <param name=
"s" type=
"String" default=
""/>
28774 <method name=
"SetFont" type=
"" overloaded=
"no">
28775 <autodoc>SetFont(Font f)
</autodoc>
28777 <param name=
"f" type=
"Font" default=
""/>
28780 <method name=
"SetMinSize" type=
"" overloaded=
"no">
28781 <autodoc>SetMinSize(double w, double h)
</autodoc>
28783 <param name=
"w" type=
"double" default=
""/>
28784 <param name=
"h" type=
"double" default=
""/>
28787 <method name=
"SetSize" type=
"" overloaded=
"no">
28788 <autodoc>SetSize(double w, double h)
</autodoc>
28790 <param name=
"w" type=
"double" default=
""/>
28791 <param name=
"h" type=
"double" default=
""/>
28794 <method name=
"SetPosition" type=
"" overloaded=
"no">
28795 <autodoc>SetPosition(double x, double y)
</autodoc>
28797 <param name=
"x" type=
"double" default=
""/>
28798 <param name=
"y" type=
"double" default=
""/>
28801 <method name=
"SetProportions" type=
"" overloaded=
"no">
28802 <autodoc>SetProportions(double x, double y)
</autodoc>
28804 <param name=
"x" type=
"double" default=
""/>
28805 <param name=
"y" type=
"double" default=
""/>
28808 <method name=
"SetFormatMode" type=
"" overloaded=
"no">
28809 <autodoc>SetFormatMode(int mode)
</autodoc>
28811 <param name=
"mode" type=
"int" default=
""/>
28814 <method name=
"SetName" type=
"" overloaded=
"no">
28815 <autodoc>SetName(String s)
</autodoc>
28817 <param name=
"s" type=
"String" default=
""/>
28820 <method name=
"SetColour" type=
"" overloaded=
"no">
28821 <autodoc>SetColour(String col)
</autodoc>
28823 <param name=
"col" type=
"String" default=
""/>
28826 <method name=
"GetText" type=
"String" overloaded=
"no">
28827 <autodoc>GetText() -
> String
</autodoc>
28829 <method name=
"GetFont" type=
"Font" overloaded=
"no">
28830 <autodoc>GetFont() -
> Font
</autodoc>
28832 <method name=
"GetMinSize" type=
"" overloaded=
"no">
28833 <autodoc>GetMinSize(double OUTPUT, double OUTPUT)
</autodoc>
28835 <param name=
"OUTPUT" type=
"double" default=
""/>
28836 <param name=
"OUTPUT" type=
"double" default=
""/>
28839 <method name=
"GetProportion" type=
"" overloaded=
"no">
28840 <autodoc>GetProportion(double OUTPUT, double OUTPUT)
</autodoc>
28842 <param name=
"OUTPUT" type=
"double" default=
""/>
28843 <param name=
"OUTPUT" type=
"double" default=
""/>
28846 <method name=
"GetSize" type=
"" overloaded=
"no">
28847 <autodoc>GetSize(double OUTPUT, double OUTPUT)
</autodoc>
28849 <param name=
"OUTPUT" type=
"double" default=
""/>
28850 <param name=
"OUTPUT" type=
"double" default=
""/>
28853 <method name=
"GetPosition" type=
"" overloaded=
"no">
28854 <autodoc>GetPosition(double OUTPUT, double OUTPUT)
</autodoc>
28856 <param name=
"OUTPUT" type=
"double" default=
""/>
28857 <param name=
"OUTPUT" type=
"double" default=
""/>
28860 <method name=
"GetFormatMode" type=
"int" overloaded=
"no">
28861 <autodoc>GetFormatMode() -
> int
</autodoc>
28863 <method name=
"GetName" type=
"String" overloaded=
"no">
28864 <autodoc>GetName() -
> String
</autodoc>
28866 <method name=
"GetColour" type=
"String" overloaded=
"no">
28867 <autodoc>GetColour() -
> String
</autodoc>
28869 <method name=
"GetActualColourObject" type=
"Colour" overloaded=
"no">
28870 <autodoc>GetActualColourObject() -
> Colour
</autodoc>
28872 <method name=
"GetFormattedText" type=
"wxList" overloaded=
"no">
28873 <autodoc>GetFormattedText() -
> wxList
</autodoc>
28875 <method name=
"GetPenColour" type=
"String" overloaded=
"no">
28876 <autodoc>GetPenColour() -
> String
</autodoc>
28878 <method name=
"GetPenStyle" type=
"int" overloaded=
"no">
28879 <autodoc>GetPenStyle() -
> int
</autodoc>
28881 <method name=
"SetPenStyle" type=
"" overloaded=
"no">
28882 <autodoc>SetPenStyle(int style)
</autodoc>
28884 <param name=
"style" type=
"int" default=
""/>
28887 <method name=
"SetPenColour" type=
"" overloaded=
"no">
28888 <autodoc>SetPenColour(String col)
</autodoc>
28890 <param name=
"col" type=
"String" default=
""/>
28893 <method name=
"GetActualPen" type=
"Pen" overloaded=
"no">
28894 <autodoc>GetActualPen() -
> wxPen
</autodoc>
28896 <method name=
"GetWidth" type=
"double" overloaded=
"no">
28897 <autodoc>GetWidth() -
> double
</autodoc>
28899 <method name=
"GetHeight" type=
"double" overloaded=
"no">
28900 <autodoc>GetHeight() -
> double
</autodoc>
28902 <method name=
"ClearText" type=
"" overloaded=
"no">
28903 <autodoc>ClearText()
</autodoc>
28906 <class name=
"AttachmentPoint" oldname=
"wxAttachmentPoint" module=
"ogl">
28907 <baseclass name=
"Object"/>
28908 <constructor name=
"AttachmentPoint" overloaded=
"no">
28909 <autodoc>__init__(int id=
0, double x=
0.0, double y=
0.0) -
> AttachmentPoint
</autodoc>
28911 <param name=
"id" type=
"int" default=
"0"/>
28912 <param name=
"x" type=
"double" default=
"0.0"/>
28913 <param name=
"y" type=
"double" default=
"0.0"/>
28916 <property name=
"m_id" type=
"int" readonly=
"no"/>
28917 <property name=
"m_x" type=
"double" readonly=
"no"/>
28918 <property name=
"m_y" type=
"double" readonly=
"no"/>
28920 <class name=
"PyShapeEvtHandler" oldname=
"wxPyShapeEvtHandler" module=
"ogl">
28921 <baseclass name=
"Object"/>
28922 <constructor name=
"PyShapeEvtHandler" overloaded=
"no">
28923 <autodoc>__init__(PyShapeEvtHandler prev=None, PyShape shape=None) -
> PyShapeEvtHandler
</autodoc>
28925 <param name=
"prev" type=
"PyShapeEvtHandler" default=
"NULL"/>
28926 <param name=
"shape" type=
"wxPyShape" default=
"NULL"/>
28929 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
28930 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
28932 <param name=
"self" type=
"PyObject" default=
""/>
28933 <param name=
"_class" type=
"PyObject" default=
""/>
28936 <method name=
"_setOORInfo" type=
"" overloaded=
"no">
28937 <autodoc>_setOORInfo(PyObject _self)
</autodoc>
28939 <param name=
"_self" type=
"PyObject" default=
""/>
28942 <method name=
"SetShape" type=
"" overloaded=
"no">
28943 <autodoc>SetShape(PyShape sh)
</autodoc>
28945 <param name=
"sh" type=
"wxPyShape" default=
""/>
28948 <method name=
"GetShape" type=
"wxPyShape" overloaded=
"no">
28949 <autodoc>GetShape() -
> PyShape
</autodoc>
28951 <method name=
"SetPreviousHandler" type=
"" overloaded=
"no">
28952 <autodoc>SetPreviousHandler(PyShapeEvtHandler handler)
</autodoc>
28954 <param name=
"handler" type=
"PyShapeEvtHandler" default=
""/>
28957 <method name=
"GetPreviousHandler" type=
"PyShapeEvtHandler" overloaded=
"no">
28958 <autodoc>GetPreviousHandler() -
> PyShapeEvtHandler
</autodoc>
28960 <method name=
"CreateNewCopy" type=
"PyShapeEvtHandler" overloaded=
"no">
28961 <autodoc>CreateNewCopy() -
> PyShapeEvtHandler
</autodoc>
28963 <method name=
"base_OnDelete" type=
"" overloaded=
"no">
28964 <autodoc>base_OnDelete()
</autodoc>
28966 <method name=
"base_OnDraw" type=
"" overloaded=
"no">
28967 <autodoc>base_OnDraw(DC dc)
</autodoc>
28969 <param name=
"dc" type=
"DC" default=
""/>
28972 <method name=
"base_OnDrawContents" type=
"" overloaded=
"no">
28973 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
28975 <param name=
"dc" type=
"DC" default=
""/>
28978 <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no">
28979 <autodoc>base_OnDrawBranches(DC dc, bool erase=False)
</autodoc>
28981 <param name=
"dc" type=
"DC" default=
""/>
28982 <param name=
"erase" type=
"bool" default=
"False"/>
28985 <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no">
28986 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
28988 <param name=
"dc" type=
"DC" default=
""/>
28991 <method name=
"base_OnErase" type=
"" overloaded=
"no">
28992 <autodoc>base_OnErase(DC dc)
</autodoc>
28994 <param name=
"dc" type=
"DC" default=
""/>
28997 <method name=
"base_OnEraseContents" type=
"" overloaded=
"no">
28998 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
29000 <param name=
"dc" type=
"DC" default=
""/>
29003 <method name=
"base_OnHighlight" type=
"" overloaded=
"no">
29004 <autodoc>base_OnHighlight(DC dc)
</autodoc>
29006 <param name=
"dc" type=
"DC" default=
""/>
29009 <method name=
"base_OnLeftClick" type=
"" overloaded=
"no">
29010 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29012 <param name=
"x" type=
"double" default=
""/>
29013 <param name=
"y" type=
"double" default=
""/>
29014 <param name=
"keys" type=
"int" default=
"0"/>
29015 <param name=
"attachment" type=
"int" default=
"0"/>
29018 <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no">
29019 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29021 <param name=
"x" type=
"double" default=
""/>
29022 <param name=
"y" type=
"double" default=
""/>
29023 <param name=
"keys" type=
"int" default=
"0"/>
29024 <param name=
"attachment" type=
"int" default=
"0"/>
29027 <method name=
"base_OnRightClick" type=
"" overloaded=
"no">
29028 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29030 <param name=
"x" type=
"double" default=
""/>
29031 <param name=
"y" type=
"double" default=
""/>
29032 <param name=
"keys" type=
"int" default=
"0"/>
29033 <param name=
"attachment" type=
"int" default=
"0"/>
29036 <method name=
"base_OnSize" type=
"" overloaded=
"no">
29037 <autodoc>base_OnSize(double x, double y)
</autodoc>
29039 <param name=
"x" type=
"double" default=
""/>
29040 <param name=
"y" type=
"double" default=
""/>
29043 <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no">
29044 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
29045 bool display=True) -
> bool
</autodoc>
29047 <param name=
"dc" type=
"DC" default=
""/>
29048 <param name=
"x" type=
"double" default=
""/>
29049 <param name=
"y" type=
"double" default=
""/>
29050 <param name=
"old_x" type=
"double" default=
""/>
29051 <param name=
"old_y" type=
"double" default=
""/>
29052 <param name=
"display" type=
"bool" default=
"True"/>
29055 <method name=
"base_OnMovePost" type=
"" overloaded=
"no">
29056 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
29057 bool display=True)
</autodoc>
29059 <param name=
"dc" type=
"DC" default=
""/>
29060 <param name=
"x" type=
"double" default=
""/>
29061 <param name=
"y" type=
"double" default=
""/>
29062 <param name=
"old_x" type=
"double" default=
""/>
29063 <param name=
"old_y" type=
"double" default=
""/>
29064 <param name=
"display" type=
"bool" default=
"True"/>
29067 <method name=
"base_OnDragLeft" type=
"" overloaded=
"no">
29068 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29070 <param name=
"draw" type=
"bool" default=
""/>
29071 <param name=
"x" type=
"double" default=
""/>
29072 <param name=
"y" type=
"double" default=
""/>
29073 <param name=
"keys" type=
"int" default=
"0"/>
29074 <param name=
"attachment" type=
"int" default=
"0"/>
29077 <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no">
29078 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29080 <param name=
"x" type=
"double" default=
""/>
29081 <param name=
"y" type=
"double" default=
""/>
29082 <param name=
"keys" type=
"int" default=
"0"/>
29083 <param name=
"attachment" type=
"int" default=
"0"/>
29086 <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no">
29087 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29089 <param name=
"x" type=
"double" default=
""/>
29090 <param name=
"y" type=
"double" default=
""/>
29091 <param name=
"keys" type=
"int" default=
"0"/>
29092 <param name=
"attachment" type=
"int" default=
"0"/>
29095 <method name=
"base_OnDragRight" type=
"" overloaded=
"no">
29096 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29098 <param name=
"draw" type=
"bool" default=
""/>
29099 <param name=
"x" type=
"double" default=
""/>
29100 <param name=
"y" type=
"double" default=
""/>
29101 <param name=
"keys" type=
"int" default=
"0"/>
29102 <param name=
"attachment" type=
"int" default=
"0"/>
29105 <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no">
29106 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29108 <param name=
"x" type=
"double" default=
""/>
29109 <param name=
"y" type=
"double" default=
""/>
29110 <param name=
"keys" type=
"int" default=
"0"/>
29111 <param name=
"attachment" type=
"int" default=
"0"/>
29114 <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no">
29115 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29117 <param name=
"x" type=
"double" default=
""/>
29118 <param name=
"y" type=
"double" default=
""/>
29119 <param name=
"keys" type=
"int" default=
"0"/>
29120 <param name=
"attachment" type=
"int" default=
"0"/>
29123 <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no">
29124 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
29126 <param name=
"dc" type=
"DC" default=
""/>
29127 <param name=
"x" type=
"double" default=
""/>
29128 <param name=
"y" type=
"double" default=
""/>
29129 <param name=
"w" type=
"double" default=
""/>
29130 <param name=
"h" type=
"double" default=
""/>
29133 <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no">
29134 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
29136 <param name=
"dc" type=
"DC" default=
""/>
29139 <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no">
29140 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
29142 <param name=
"dc" type=
"DC" default=
""/>
29145 <method name=
"base_OnMoveLink" type=
"" overloaded=
"no">
29146 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
29148 <param name=
"dc" type=
"DC" default=
""/>
29149 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
29152 <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no">
29153 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
29154 int attachment=
0)
</autodoc>
29156 <param name=
"pt" type=
"wxPyControlPoint" default=
""/>
29157 <param name=
"draw" type=
"bool" default=
""/>
29158 <param name=
"x" type=
"double" default=
""/>
29159 <param name=
"y" type=
"double" default=
""/>
29160 <param name=
"keys" type=
"int" default=
"0"/>
29161 <param name=
"attachment" type=
"int" default=
"0"/>
29164 <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no">
29165 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
29166 int attachment=
0)
</autodoc>
29168 <param name=
"pt" type=
"wxPyControlPoint" default=
""/>
29169 <param name=
"x" type=
"double" default=
""/>
29170 <param name=
"y" type=
"double" default=
""/>
29171 <param name=
"keys" type=
"int" default=
"0"/>
29172 <param name=
"attachment" type=
"int" default=
"0"/>
29175 <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no">
29176 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
29177 int attachment=
0)
</autodoc>
29179 <param name=
"pt" type=
"wxPyControlPoint" default=
""/>
29180 <param name=
"x" type=
"double" default=
""/>
29181 <param name=
"y" type=
"double" default=
""/>
29182 <param name=
"keys" type=
"int" default=
"0"/>
29183 <param name=
"attachment" type=
"int" default=
"0"/>
29186 <method name=
"base_OnBeginSize" type=
"" overloaded=
"no">
29187 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
29189 <param name=
"w" type=
"double" default=
""/>
29190 <param name=
"h" type=
"double" default=
""/>
29193 <method name=
"base_OnEndSize" type=
"" overloaded=
"no">
29194 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
29196 <param name=
"w" type=
"double" default=
""/>
29197 <param name=
"h" type=
"double" default=
""/>
29201 <class name=
"PyShape" oldname=
"wxPyShape" module=
"ogl">
29202 <baseclass name=
"PyShapeEvtHandler"/>
29203 <constructor name=
"PyShape" overloaded=
"no">
29204 <autodoc>__init__(PyShapeCanvas can=None) -
> PyShape
</autodoc>
29206 <param name=
"can" type=
"wxPyShapeCanvas" default=
"NULL"/>
29209 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
29210 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
29212 <param name=
"self" type=
"PyObject" default=
""/>
29213 <param name=
"_class" type=
"PyObject" default=
""/>
29216 <method name=
"GetBoundingBoxMax" type=
"" overloaded=
"no">
29217 <autodoc>GetBoundingBoxMax(double OUTPUT, double OUTPUT)
</autodoc>
29219 <param name=
"OUTPUT" type=
"double" default=
""/>
29220 <param name=
"OUTPUT" type=
"double" default=
""/>
29223 <method name=
"GetBoundingBoxMin" type=
"" overloaded=
"no">
29224 <autodoc>GetBoundingBoxMin(double OUTPUT, double OUTPUT)
</autodoc>
29226 <param name=
"OUTPUT" type=
"double" default=
""/>
29227 <param name=
"OUTPUT" type=
"double" default=
""/>
29230 <method name=
"GetPerimeterPoint" type=
"bool" overloaded=
"no">
29231 <autodoc>GetPerimeterPoint(double x1, double y1, double x2, double y2, double OUTPUT,
29232 double OUTPUT) -
> bool
</autodoc>
29234 <param name=
"x1" type=
"double" default=
""/>
29235 <param name=
"y1" type=
"double" default=
""/>
29236 <param name=
"x2" type=
"double" default=
""/>
29237 <param name=
"y2" type=
"double" default=
""/>
29238 <param name=
"OUTPUT" type=
"double" default=
""/>
29239 <param name=
"OUTPUT" type=
"double" default=
""/>
29242 <method name=
"GetCanvas" type=
"wxPyShapeCanvas" overloaded=
"no">
29243 <autodoc>GetCanvas() -
> PyShapeCanvas
</autodoc>
29245 <method name=
"SetCanvas" type=
"" overloaded=
"no">
29246 <autodoc>SetCanvas(PyShapeCanvas the_canvas)
</autodoc>
29248 <param name=
"the_canvas" type=
"wxPyShapeCanvas" default=
""/>
29251 <method name=
"AddToCanvas" type=
"" overloaded=
"no">
29252 <autodoc>AddToCanvas(PyShapeCanvas the_canvas, PyShape addAfter=None)
</autodoc>
29254 <param name=
"the_canvas" type=
"wxPyShapeCanvas" default=
""/>
29255 <param name=
"addAfter" type=
"PyShape" default=
"NULL"/>
29258 <method name=
"InsertInCanvas" type=
"" overloaded=
"no">
29259 <autodoc>InsertInCanvas(PyShapeCanvas the_canvas)
</autodoc>
29261 <param name=
"the_canvas" type=
"wxPyShapeCanvas" default=
""/>
29264 <method name=
"RemoveFromCanvas" type=
"" overloaded=
"no">
29265 <autodoc>RemoveFromCanvas(PyShapeCanvas the_canvas)
</autodoc>
29267 <param name=
"the_canvas" type=
"wxPyShapeCanvas" default=
""/>
29270 <method name=
"GetX" type=
"double" overloaded=
"no">
29271 <autodoc>GetX() -
> double
</autodoc>
29273 <method name=
"GetY" type=
"double" overloaded=
"no">
29274 <autodoc>GetY() -
> double
</autodoc>
29276 <method name=
"SetX" type=
"" overloaded=
"no">
29277 <autodoc>SetX(double x)
</autodoc>
29279 <param name=
"x" type=
"double" default=
""/>
29282 <method name=
"SetY" type=
"" overloaded=
"no">
29283 <autodoc>SetY(double y)
</autodoc>
29285 <param name=
"y" type=
"double" default=
""/>
29288 <method name=
"GetParent" type=
"PyShape" overloaded=
"no">
29289 <autodoc>GetParent() -
> PyShape
</autodoc>
29291 <method name=
"SetParent" type=
"" overloaded=
"no">
29292 <autodoc>SetParent(PyShape p)
</autodoc>
29294 <param name=
"p" type=
"PyShape" default=
""/>
29297 <method name=
"GetTopAncestor" type=
"PyShape" overloaded=
"no">
29298 <autodoc>GetTopAncestor() -
> PyShape
</autodoc>
29300 <method name=
"GetChildren" type=
"PyObject" overloaded=
"no">
29301 <autodoc>GetChildren() -
> PyObject
</autodoc>
29303 <method name=
"Unlink" type=
"" overloaded=
"no">
29304 <autodoc>Unlink()
</autodoc>
29306 <method name=
"SetDrawHandles" type=
"" overloaded=
"no">
29307 <autodoc>SetDrawHandles(bool drawH)
</autodoc>
29309 <param name=
"drawH" type=
"bool" default=
""/>
29312 <method name=
"GetDrawHandles" type=
"bool" overloaded=
"no">
29313 <autodoc>GetDrawHandles() -
> bool
</autodoc>
29315 <method name=
"MakeControlPoints" type=
"" overloaded=
"no">
29316 <autodoc>MakeControlPoints()
</autodoc>
29318 <method name=
"DeleteControlPoints" type=
"" overloaded=
"no">
29319 <autodoc>DeleteControlPoints(DC dc=None)
</autodoc>
29321 <param name=
"dc" type=
"DC" default=
"NULL"/>
29324 <method name=
"ResetControlPoints" type=
"" overloaded=
"no">
29325 <autodoc>ResetControlPoints()
</autodoc>
29327 <method name=
"GetEventHandler" type=
"PyShapeEvtHandler" overloaded=
"no">
29328 <autodoc>GetEventHandler() -
> PyShapeEvtHandler
</autodoc>
29330 <method name=
"SetEventHandler" type=
"" overloaded=
"no">
29331 <autodoc>SetEventHandler(PyShapeEvtHandler handler)
</autodoc>
29333 <param name=
"handler" type=
"PyShapeEvtHandler" default=
""/>
29336 <method name=
"MakeMandatoryControlPoints" type=
"" overloaded=
"no">
29337 <autodoc>MakeMandatoryControlPoints()
</autodoc>
29339 <method name=
"ResetMandatoryControlPoints" type=
"" overloaded=
"no">
29340 <autodoc>ResetMandatoryControlPoints()
</autodoc>
29342 <method name=
"Recompute" type=
"bool" overloaded=
"no">
29343 <autodoc>Recompute() -
> bool
</autodoc>
29345 <method name=
"CalculateSize" type=
"" overloaded=
"no">
29346 <autodoc>CalculateSize()
</autodoc>
29348 <method name=
"Select" type=
"" overloaded=
"no">
29349 <autodoc>Select(bool select=True, DC dc=None)
</autodoc>
29351 <param name=
"select" type=
"bool" default=
"True"/>
29352 <param name=
"dc" type=
"DC" default=
"NULL"/>
29355 <method name=
"SetHighlight" type=
"" overloaded=
"no">
29356 <autodoc>SetHighlight(bool hi=True, bool recurse=False)
</autodoc>
29358 <param name=
"hi" type=
"bool" default=
"True"/>
29359 <param name=
"recurse" type=
"bool" default=
"False"/>
29362 <method name=
"IsHighlighted" type=
"bool" overloaded=
"no">
29363 <autodoc>IsHighlighted() -
> bool
</autodoc>
29365 <method name=
"Selected" type=
"bool" overloaded=
"no">
29366 <autodoc>Selected() -
> bool
</autodoc>
29368 <method name=
"AncestorSelected" type=
"bool" overloaded=
"no">
29369 <autodoc>AncestorSelected() -
> bool
</autodoc>
29371 <method name=
"SetSensitivityFilter" type=
"" overloaded=
"no">
29372 <autodoc>SetSensitivityFilter(int sens=OP_ALL, bool recursive=False)
</autodoc>
29374 <param name=
"sens" type=
"int" default=
"OP_ALL"/>
29375 <param name=
"recursive" type=
"bool" default=
"False"/>
29378 <method name=
"GetSensitivityFilter" type=
"int" overloaded=
"no">
29379 <autodoc>GetSensitivityFilter() -
> int
</autodoc>
29381 <method name=
"SetDraggable" type=
"" overloaded=
"no">
29382 <autodoc>SetDraggable(bool drag, bool recursive=False)
</autodoc>
29384 <param name=
"drag" type=
"bool" default=
""/>
29385 <param name=
"recursive" type=
"bool" default=
"False"/>
29388 <method name=
"SetFixedSize" type=
"" overloaded=
"no">
29389 <autodoc>SetFixedSize(bool x, bool y)
</autodoc>
29391 <param name=
"x" type=
"bool" default=
""/>
29392 <param name=
"y" type=
"bool" default=
""/>
29395 <method name=
"GetFixedSize" type=
"" overloaded=
"no">
29396 <autodoc>GetFixedSize(bool OUTPUT, bool OUTPUT)
</autodoc>
29398 <param name=
"OUTPUT" type=
"bool" default=
""/>
29399 <param name=
"OUTPUT" type=
"bool" default=
""/>
29402 <method name=
"GetFixedWidth" type=
"bool" overloaded=
"no">
29403 <autodoc>GetFixedWidth() -
> bool
</autodoc>
29405 <method name=
"GetFixedHeight" type=
"bool" overloaded=
"no">
29406 <autodoc>GetFixedHeight() -
> bool
</autodoc>
29408 <method name=
"SetSpaceAttachments" type=
"" overloaded=
"no">
29409 <autodoc>SetSpaceAttachments(bool sp)
</autodoc>
29411 <param name=
"sp" type=
"bool" default=
""/>
29414 <method name=
"GetSpaceAttachments" type=
"bool" overloaded=
"no">
29415 <autodoc>GetSpaceAttachments() -
> bool
</autodoc>
29417 <method name=
"SetShadowMode" type=
"" overloaded=
"no">
29418 <autodoc>SetShadowMode(int mode, bool redraw=False)
</autodoc>
29420 <param name=
"mode" type=
"int" default=
""/>
29421 <param name=
"redraw" type=
"bool" default=
"False"/>
29424 <method name=
"GetShadowMode" type=
"int" overloaded=
"no">
29425 <autodoc>GetShadowMode() -
> int
</autodoc>
29427 <method name=
"HitTest" type=
"bool" overloaded=
"no">
29428 <autodoc>HitTest(double x, double y, int OUTPUT, double OUTPUT) -
> bool
</autodoc>
29430 <param name=
"x" type=
"double" default=
""/>
29431 <param name=
"y" type=
"double" default=
""/>
29432 <param name=
"OUTPUT" type=
"int" default=
""/>
29433 <param name=
"OUTPUT" type=
"double" default=
""/>
29436 <method name=
"SetCentreResize" type=
"" overloaded=
"no">
29437 <autodoc>SetCentreResize(bool cr)
</autodoc>
29439 <param name=
"cr" type=
"bool" default=
""/>
29442 <method name=
"GetCentreResize" type=
"bool" overloaded=
"no">
29443 <autodoc>GetCentreResize() -
> bool
</autodoc>
29445 <method name=
"SetMaintainAspectRatio" type=
"" overloaded=
"no">
29446 <autodoc>SetMaintainAspectRatio(bool ar)
</autodoc>
29448 <param name=
"ar" type=
"bool" default=
""/>
29451 <method name=
"GetMaintainAspectRatio" type=
"bool" overloaded=
"no">
29452 <autodoc>GetMaintainAspectRatio() -
> bool
</autodoc>
29454 <method name=
"GetLines" type=
"PyObject" overloaded=
"no">
29455 <autodoc>GetLines() -
> PyObject
</autodoc>
29457 <method name=
"SetDisableLabel" type=
"" overloaded=
"no">
29458 <autodoc>SetDisableLabel(bool flag)
</autodoc>
29460 <param name=
"flag" type=
"bool" default=
""/>
29463 <method name=
"GetDisableLabel" type=
"bool" overloaded=
"no">
29464 <autodoc>GetDisableLabel() -
> bool
</autodoc>
29466 <method name=
"SetAttachmentMode" type=
"" overloaded=
"no">
29467 <autodoc>SetAttachmentMode(int mode)
</autodoc>
29469 <param name=
"mode" type=
"int" default=
""/>
29472 <method name=
"GetAttachmentMode" type=
"int" overloaded=
"no">
29473 <autodoc>GetAttachmentMode() -
> int
</autodoc>
29475 <method name=
"SetId" type=
"" overloaded=
"no">
29476 <autodoc>SetId(long i)
</autodoc>
29478 <param name=
"i" type=
"long" default=
""/>
29481 <method name=
"GetId" type=
"long" overloaded=
"no">
29482 <autodoc>GetId() -
> long
</autodoc>
29484 <method name=
"SetPen" type=
"" overloaded=
"no">
29485 <autodoc>SetPen(wxPen pen)
</autodoc>
29487 <param name=
"pen" type=
"Pen" default=
""/>
29490 <method name=
"SetBrush" type=
"" overloaded=
"no">
29491 <autodoc>SetBrush(wxBrush brush)
</autodoc>
29493 <param name=
"brush" type=
"Brush" default=
""/>
29496 <method name=
"Show" type=
"" overloaded=
"no">
29497 <autodoc>Show(bool show)
</autodoc>
29499 <param name=
"show" type=
"bool" default=
""/>
29502 <method name=
"IsShown" type=
"bool" overloaded=
"no">
29503 <autodoc>IsShown() -
> bool
</autodoc>
29505 <method name=
"Move" type=
"" overloaded=
"no">
29506 <autodoc>Move(DC dc, double x1, double y1, bool display=True)
</autodoc>
29508 <param name=
"dc" type=
"DC" default=
""/>
29509 <param name=
"x1" type=
"double" default=
""/>
29510 <param name=
"y1" type=
"double" default=
""/>
29511 <param name=
"display" type=
"bool" default=
"True"/>
29514 <method name=
"Erase" type=
"" overloaded=
"no">
29515 <autodoc>Erase(DC dc)
</autodoc>
29517 <param name=
"dc" type=
"DC" default=
""/>
29520 <method name=
"EraseContents" type=
"" overloaded=
"no">
29521 <autodoc>EraseContents(DC dc)
</autodoc>
29523 <param name=
"dc" type=
"DC" default=
""/>
29526 <method name=
"Draw" type=
"" overloaded=
"no">
29527 <autodoc>Draw(DC dc)
</autodoc>
29529 <param name=
"dc" type=
"DC" default=
""/>
29532 <method name=
"Flash" type=
"" overloaded=
"no">
29533 <autodoc>Flash()
</autodoc>
29535 <method name=
"MoveLinks" type=
"" overloaded=
"no">
29536 <autodoc>MoveLinks(DC dc)
</autodoc>
29538 <param name=
"dc" type=
"DC" default=
""/>
29541 <method name=
"DrawContents" type=
"" overloaded=
"no">
29542 <autodoc>DrawContents(DC dc)
</autodoc>
29544 <param name=
"dc" type=
"DC" default=
""/>
29547 <method name=
"SetSize" type=
"" overloaded=
"no">
29548 <autodoc>SetSize(double x, double y, bool recursive=True)
</autodoc>
29550 <param name=
"x" type=
"double" default=
""/>
29551 <param name=
"y" type=
"double" default=
""/>
29552 <param name=
"recursive" type=
"bool" default=
"True"/>
29555 <method name=
"SetAttachmentSize" type=
"" overloaded=
"no">
29556 <autodoc>SetAttachmentSize(double x, double y)
</autodoc>
29558 <param name=
"x" type=
"double" default=
""/>
29559 <param name=
"y" type=
"double" default=
""/>
29562 <method name=
"Attach" type=
"" overloaded=
"no">
29563 <autodoc>Attach(PyShapeCanvas can)
</autodoc>
29565 <param name=
"can" type=
"wxPyShapeCanvas" default=
""/>
29568 <method name=
"Detach" type=
"" overloaded=
"no">
29569 <autodoc>Detach()
</autodoc>
29571 <method name=
"Constrain" type=
"bool" overloaded=
"no">
29572 <autodoc>Constrain() -
> bool
</autodoc>
29574 <method name=
"AddLine" type=
"" overloaded=
"no">
29575 <autodoc>AddLine(PyLineShape line, PyShape other, int attachFrom=
0,
29576 int attachTo=
0, int positionFrom=-
1, int positionTo=-
1)
</autodoc>
29578 <param name=
"line" type=
"wxPyLineShape" default=
""/>
29579 <param name=
"other" type=
"PyShape" default=
""/>
29580 <param name=
"attachFrom" type=
"int" default=
"0"/>
29581 <param name=
"attachTo" type=
"int" default=
"0"/>
29582 <param name=
"positionFrom" type=
"int" default=
"-1"/>
29583 <param name=
"positionTo" type=
"int" default=
"-1"/>
29586 <method name=
"GetLinePosition" type=
"int" overloaded=
"no">
29587 <autodoc>GetLinePosition(PyLineShape line) -
> int
</autodoc>
29589 <param name=
"line" type=
"wxPyLineShape" default=
""/>
29592 <method name=
"AddText" type=
"" overloaded=
"no">
29593 <autodoc>AddText(String string)
</autodoc>
29595 <param name=
"string" type=
"String" default=
""/>
29598 <method name=
"GetPen" type=
"Pen" overloaded=
"no">
29599 <autodoc>GetPen() -
> wxPen
</autodoc>
29601 <method name=
"GetBrush" type=
"Brush" overloaded=
"no">
29602 <autodoc>GetBrush() -
> wxBrush
</autodoc>
29604 <method name=
"SetDefaultRegionSize" type=
"" overloaded=
"no">
29605 <autodoc>SetDefaultRegionSize()
</autodoc>
29607 <method name=
"FormatText" type=
"" overloaded=
"no">
29608 <autodoc>FormatText(DC dc, String s, int regionId=
0)
</autodoc>
29610 <param name=
"dc" type=
"DC" default=
""/>
29611 <param name=
"s" type=
"String" default=
""/>
29612 <param name=
"regionId" type=
"int" default=
"0"/>
29615 <method name=
"SetFormatMode" type=
"" overloaded=
"no">
29616 <autodoc>SetFormatMode(int mode, int regionId=
0)
</autodoc>
29618 <param name=
"mode" type=
"int" default=
""/>
29619 <param name=
"regionId" type=
"int" default=
"0"/>
29622 <method name=
"GetFormatMode" type=
"int" overloaded=
"no">
29623 <autodoc>GetFormatMode(int regionId=
0) -
> int
</autodoc>
29625 <param name=
"regionId" type=
"int" default=
"0"/>
29628 <method name=
"SetFont" type=
"" overloaded=
"no">
29629 <autodoc>SetFont(Font font, int regionId=
0)
</autodoc>
29631 <param name=
"font" type=
"Font" default=
""/>
29632 <param name=
"regionId" type=
"int" default=
"0"/>
29635 <method name=
"GetFont" type=
"Font" overloaded=
"no">
29636 <autodoc>GetFont(int regionId=
0) -
> Font
</autodoc>
29638 <param name=
"regionId" type=
"int" default=
"0"/>
29641 <method name=
"SetTextColour" type=
"" overloaded=
"no">
29642 <autodoc>SetTextColour(String colour, int regionId=
0)
</autodoc>
29644 <param name=
"colour" type=
"String" default=
""/>
29645 <param name=
"regionId" type=
"int" default=
"0"/>
29648 <method name=
"GetTextColour" type=
"String" overloaded=
"no">
29649 <autodoc>GetTextColour(int regionId=
0) -
> String
</autodoc>
29651 <param name=
"regionId" type=
"int" default=
"0"/>
29654 <method name=
"GetNumberOfTextRegions" type=
"int" overloaded=
"no">
29655 <autodoc>GetNumberOfTextRegions() -
> int
</autodoc>
29657 <method name=
"SetRegionName" type=
"" overloaded=
"no">
29658 <autodoc>SetRegionName(String name, int regionId=
0)
</autodoc>
29660 <param name=
"name" type=
"String" default=
""/>
29661 <param name=
"regionId" type=
"int" default=
"0"/>
29664 <method name=
"GetRegionName" type=
"String" overloaded=
"no">
29665 <autodoc>GetRegionName(int regionId) -
> String
</autodoc>
29667 <param name=
"regionId" type=
"int" default=
""/>
29670 <method name=
"GetRegionId" type=
"int" overloaded=
"no">
29671 <autodoc>GetRegionId(String name) -
> int
</autodoc>
29673 <param name=
"name" type=
"String" default=
""/>
29676 <method name=
"NameRegions" type=
"" overloaded=
"no">
29677 <autodoc>NameRegions(String parentName=EmptyString)
</autodoc>
29679 <param name=
"parentName" type=
"String" default=
"wxPyEmptyString"/>
29682 <method name=
"GetRegions" type=
"PyObject" overloaded=
"no">
29683 <autodoc>GetRegions() -
> PyObject
</autodoc>
29685 <method name=
"AddRegion" type=
"" overloaded=
"no">
29686 <autodoc>AddRegion(ShapeRegion region)
</autodoc>
29688 <param name=
"region" type=
"ShapeRegion" default=
""/>
29691 <method name=
"ClearRegions" type=
"" overloaded=
"no">
29692 <autodoc>ClearRegions()
</autodoc>
29694 <method name=
"AssignNewIds" type=
"" overloaded=
"no">
29695 <autodoc>AssignNewIds()
</autodoc>
29697 <method name=
"FindRegion" type=
"PyShape" overloaded=
"no">
29698 <autodoc>FindRegion(String regionName, int OUTPUT) -
> PyShape
</autodoc>
29700 <param name=
"regionName" type=
"String" default=
""/>
29701 <param name=
"OUTPUT" type=
"int" default=
""/>
29704 <method name=
"FindRegionNames" type=
"" overloaded=
"no">
29705 <autodoc>FindRegionNames(wxStringList list)
</autodoc>
29707 <param name=
"list" type=
"wxStringList" default=
""/>
29710 <method name=
"ClearText" type=
"" overloaded=
"no">
29711 <autodoc>ClearText(int regionId=
0)
</autodoc>
29713 <param name=
"regionId" type=
"int" default=
"0"/>
29716 <method name=
"RemoveLine" type=
"" overloaded=
"no">
29717 <autodoc>RemoveLine(PyLineShape line)
</autodoc>
29719 <param name=
"line" type=
"wxPyLineShape" default=
""/>
29722 <method name=
"GetAttachmentPosition" type=
"bool" overloaded=
"no">
29723 <autodoc>GetAttachmentPosition(int attachment, double OUTPUT, double OUTPUT, int nth=
0,
29724 int no_arcs=
1, PyLineShape line=None) -
> bool
</autodoc>
29726 <param name=
"attachment" type=
"int" default=
""/>
29727 <param name=
"OUTPUT" type=
"double" default=
""/>
29728 <param name=
"OUTPUT" type=
"double" default=
""/>
29729 <param name=
"nth" type=
"int" default=
"0"/>
29730 <param name=
"no_arcs" type=
"int" default=
"1"/>
29731 <param name=
"line" type=
"wxPyLineShape" default=
"NULL"/>
29734 <method name=
"GetNumberOfAttachments" type=
"int" overloaded=
"no">
29735 <autodoc>GetNumberOfAttachments() -
> int
</autodoc>
29737 <method name=
"AttachmentIsValid" type=
"bool" overloaded=
"no">
29738 <autodoc>AttachmentIsValid(int attachment) -
> bool
</autodoc>
29740 <param name=
"attachment" type=
"int" default=
""/>
29743 <method name=
"GetAttachments" type=
"PyObject" overloaded=
"no">
29744 <autodoc>GetAttachments() -
> PyObject
</autodoc>
29746 <method name=
"GetAttachmentPositionEdge" type=
"bool" overloaded=
"no">
29747 <autodoc>GetAttachmentPositionEdge(int attachment, double OUTPUT, double OUTPUT, int nth=
0,
29748 int no_arcs=
1, PyLineShape line=None) -
> bool
</autodoc>
29750 <param name=
"attachment" type=
"int" default=
""/>
29751 <param name=
"OUTPUT" type=
"double" default=
""/>
29752 <param name=
"OUTPUT" type=
"double" default=
""/>
29753 <param name=
"nth" type=
"int" default=
"0"/>
29754 <param name=
"no_arcs" type=
"int" default=
"1"/>
29755 <param name=
"line" type=
"wxPyLineShape" default=
"NULL"/>
29758 <method name=
"CalcSimpleAttachment" type=
"RealPoint" overloaded=
"no">
29759 <autodoc>CalcSimpleAttachment(RealPoint pt1, RealPoint pt2, int nth, int noArcs,
29760 PyLineShape line) -
> RealPoint
</autodoc>
29762 <param name=
"pt1" type=
"RealPoint" default=
""/>
29763 <param name=
"pt2" type=
"RealPoint" default=
""/>
29764 <param name=
"nth" type=
"int" default=
""/>
29765 <param name=
"noArcs" type=
"int" default=
""/>
29766 <param name=
"line" type=
"wxPyLineShape" default=
""/>
29769 <method name=
"AttachmentSortTest" type=
"bool" overloaded=
"no">
29770 <autodoc>AttachmentSortTest(int attachmentPoint, RealPoint pt1, RealPoint pt2) -
> bool
</autodoc>
29772 <param name=
"attachmentPoint" type=
"int" default=
""/>
29773 <param name=
"pt1" type=
"RealPoint" default=
""/>
29774 <param name=
"pt2" type=
"RealPoint" default=
""/>
29777 <method name=
"EraseLinks" type=
"" overloaded=
"no">
29778 <autodoc>EraseLinks(DC dc, int attachment=-
1, bool recurse=False)
</autodoc>
29780 <param name=
"dc" type=
"DC" default=
""/>
29781 <param name=
"attachment" type=
"int" default=
"-1"/>
29782 <param name=
"recurse" type=
"bool" default=
"False"/>
29785 <method name=
"DrawLinks" type=
"" overloaded=
"no">
29786 <autodoc>DrawLinks(DC dc, int attachment=-
1, bool recurse=False)
</autodoc>
29788 <param name=
"dc" type=
"DC" default=
""/>
29789 <param name=
"attachment" type=
"int" default=
"-1"/>
29790 <param name=
"recurse" type=
"bool" default=
"False"/>
29793 <method name=
"MoveLineToNewAttachment" type=
"bool" overloaded=
"no">
29794 <autodoc>MoveLineToNewAttachment(DC dc, PyLineShape to_move, double x, double y) -
> bool
</autodoc>
29796 <param name=
"dc" type=
"DC" default=
""/>
29797 <param name=
"to_move" type=
"wxPyLineShape" default=
""/>
29798 <param name=
"x" type=
"double" default=
""/>
29799 <param name=
"y" type=
"double" default=
""/>
29802 <method name=
"ApplyAttachmentOrdering" type=
"" overloaded=
"no">
29803 <autodoc>ApplyAttachmentOrdering(PyObject linesToSort)
</autodoc>
29805 <param name=
"linesToSort" type=
"PyObject" default=
""/>
29808 <method name=
"GetBranchingAttachmentRoot" type=
"RealPoint" overloaded=
"no">
29809 <autodoc>GetBranchingAttachmentRoot(int attachment) -
> RealPoint
</autodoc>
29811 <param name=
"attachment" type=
"int" default=
""/>
29814 <method name=
"GetBranchingAttachmentInfo" type=
"bool" overloaded=
"no">
29815 <autodoc>GetBranchingAttachmentInfo(int attachment, RealPoint root, RealPoint neck, RealPoint shoulder1,
29816 RealPoint shoulder2) -
> bool
</autodoc>
29818 <param name=
"attachment" type=
"int" default=
""/>
29819 <param name=
"root" type=
"RealPoint" default=
""/>
29820 <param name=
"neck" type=
"RealPoint" default=
""/>
29821 <param name=
"shoulder1" type=
"RealPoint" default=
""/>
29822 <param name=
"shoulder2" type=
"RealPoint" default=
""/>
29825 <method name=
"GetBranchingAttachmentPoint" type=
"bool" overloaded=
"no">
29826 <autodoc>GetBranchingAttachmentPoint(int attachment, int n, RealPoint attachmentPoint, RealPoint stemPoint) -
> bool
</autodoc>
29828 <param name=
"attachment" type=
"int" default=
""/>
29829 <param name=
"n" type=
"int" default=
""/>
29830 <param name=
"attachmentPoint" type=
"RealPoint" default=
""/>
29831 <param name=
"stemPoint" type=
"RealPoint" default=
""/>
29834 <method name=
"GetAttachmentLineCount" type=
"int" overloaded=
"no">
29835 <autodoc>GetAttachmentLineCount(int attachment) -
> int
</autodoc>
29837 <param name=
"attachment" type=
"int" default=
""/>
29840 <method name=
"SetBranchNeckLength" type=
"" overloaded=
"no">
29841 <autodoc>SetBranchNeckLength(int len)
</autodoc>
29843 <param name=
"len" type=
"int" default=
""/>
29846 <method name=
"GetBranchNeckLength" type=
"int" overloaded=
"no">
29847 <autodoc>GetBranchNeckLength() -
> int
</autodoc>
29849 <method name=
"SetBranchStemLength" type=
"" overloaded=
"no">
29850 <autodoc>SetBranchStemLength(int len)
</autodoc>
29852 <param name=
"len" type=
"int" default=
""/>
29855 <method name=
"GetBranchStemLength" type=
"int" overloaded=
"no">
29856 <autodoc>GetBranchStemLength() -
> int
</autodoc>
29858 <method name=
"SetBranchSpacing" type=
"" overloaded=
"no">
29859 <autodoc>SetBranchSpacing(int len)
</autodoc>
29861 <param name=
"len" type=
"int" default=
""/>
29864 <method name=
"GetBranchSpacing" type=
"int" overloaded=
"no">
29865 <autodoc>GetBranchSpacing() -
> int
</autodoc>
29867 <method name=
"SetBranchStyle" type=
"" overloaded=
"no">
29868 <autodoc>SetBranchStyle(long style)
</autodoc>
29870 <param name=
"style" type=
"long" default=
""/>
29873 <method name=
"GetBranchStyle" type=
"long" overloaded=
"no">
29874 <autodoc>GetBranchStyle() -
> long
</autodoc>
29876 <method name=
"PhysicalToLogicalAttachment" type=
"int" overloaded=
"no">
29877 <autodoc>PhysicalToLogicalAttachment(int physicalAttachment) -
> int
</autodoc>
29879 <param name=
"physicalAttachment" type=
"int" default=
""/>
29882 <method name=
"LogicalToPhysicalAttachment" type=
"int" overloaded=
"no">
29883 <autodoc>LogicalToPhysicalAttachment(int logicalAttachment) -
> int
</autodoc>
29885 <param name=
"logicalAttachment" type=
"int" default=
""/>
29888 <method name=
"Draggable" type=
"bool" overloaded=
"no">
29889 <autodoc>Draggable() -
> bool
</autodoc>
29891 <method name=
"HasDescendant" type=
"bool" overloaded=
"no">
29892 <autodoc>HasDescendant(PyShape image) -
> bool
</autodoc>
29894 <param name=
"image" type=
"PyShape" default=
""/>
29897 <method name=
"CreateNewCopy" type=
"PyShape" overloaded=
"no">
29898 <autodoc>CreateNewCopy(bool resetMapping=True, bool recompute=True) -
> PyShape
</autodoc>
29900 <param name=
"resetMapping" type=
"bool" default=
"True"/>
29901 <param name=
"recompute" type=
"bool" default=
"True"/>
29904 <method name=
"Copy" type=
"" overloaded=
"no">
29905 <autodoc>Copy(PyShape copy)
</autodoc>
29907 <param name=
"copy" type=
"PyShape" default=
""/>
29910 <method name=
"CopyWithHandler" type=
"" overloaded=
"no">
29911 <autodoc>CopyWithHandler(PyShape copy)
</autodoc>
29913 <param name=
"copy" type=
"PyShape" default=
""/>
29916 <method name=
"Rotate" type=
"" overloaded=
"no">
29917 <autodoc>Rotate(double x, double y, double theta)
</autodoc>
29919 <param name=
"x" type=
"double" default=
""/>
29920 <param name=
"y" type=
"double" default=
""/>
29921 <param name=
"theta" type=
"double" default=
""/>
29924 <method name=
"GetRotation" type=
"double" overloaded=
"no">
29925 <autodoc>GetRotation() -
> double
</autodoc>
29927 <method name=
"SetRotation" type=
"" overloaded=
"no">
29928 <autodoc>SetRotation(double rotation)
</autodoc>
29930 <param name=
"rotation" type=
"double" default=
""/>
29933 <method name=
"ClearAttachments" type=
"" overloaded=
"no">
29934 <autodoc>ClearAttachments()
</autodoc>
29936 <method name=
"Recentre" type=
"" overloaded=
"no">
29937 <autodoc>Recentre(DC dc)
</autodoc>
29939 <param name=
"dc" type=
"DC" default=
""/>
29942 <method name=
"ClearPointList" type=
"" overloaded=
"no">
29943 <autodoc>ClearPointList(wxList list)
</autodoc>
29945 <param name=
"list" type=
"wxList" default=
""/>
29948 <method name=
"GetBackgroundPen" type=
"Pen" overloaded=
"no">
29949 <autodoc>GetBackgroundPen() -
> wxPen
</autodoc>
29951 <method name=
"GetBackgroundBrush" type=
"Brush" overloaded=
"no">
29952 <autodoc>GetBackgroundBrush() -
> wxBrush
</autodoc>
29954 <method name=
"base_OnDelete" type=
"" overloaded=
"no">
29955 <autodoc>base_OnDelete()
</autodoc>
29957 <method name=
"base_OnDraw" type=
"" overloaded=
"no">
29958 <autodoc>base_OnDraw(DC dc)
</autodoc>
29960 <param name=
"dc" type=
"DC" default=
""/>
29963 <method name=
"base_OnDrawContents" type=
"" overloaded=
"no">
29964 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
29966 <param name=
"dc" type=
"DC" default=
""/>
29969 <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no">
29970 <autodoc>base_OnDrawBranches(DC dc, bool erase=False)
</autodoc>
29972 <param name=
"dc" type=
"DC" default=
""/>
29973 <param name=
"erase" type=
"bool" default=
"False"/>
29976 <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no">
29977 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
29979 <param name=
"dc" type=
"DC" default=
""/>
29982 <method name=
"base_OnErase" type=
"" overloaded=
"no">
29983 <autodoc>base_OnErase(DC dc)
</autodoc>
29985 <param name=
"dc" type=
"DC" default=
""/>
29988 <method name=
"base_OnEraseContents" type=
"" overloaded=
"no">
29989 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
29991 <param name=
"dc" type=
"DC" default=
""/>
29994 <method name=
"base_OnHighlight" type=
"" overloaded=
"no">
29995 <autodoc>base_OnHighlight(DC dc)
</autodoc>
29997 <param name=
"dc" type=
"DC" default=
""/>
30000 <method name=
"base_OnLeftClick" type=
"" overloaded=
"no">
30001 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30003 <param name=
"x" type=
"double" default=
""/>
30004 <param name=
"y" type=
"double" default=
""/>
30005 <param name=
"keys" type=
"int" default=
"0"/>
30006 <param name=
"attachment" type=
"int" default=
"0"/>
30009 <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no">
30010 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30012 <param name=
"x" type=
"double" default=
""/>
30013 <param name=
"y" type=
"double" default=
""/>
30014 <param name=
"keys" type=
"int" default=
"0"/>
30015 <param name=
"attachment" type=
"int" default=
"0"/>
30018 <method name=
"base_OnRightClick" type=
"" overloaded=
"no">
30019 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30021 <param name=
"x" type=
"double" default=
""/>
30022 <param name=
"y" type=
"double" default=
""/>
30023 <param name=
"keys" type=
"int" default=
"0"/>
30024 <param name=
"attachment" type=
"int" default=
"0"/>
30027 <method name=
"base_OnSize" type=
"" overloaded=
"no">
30028 <autodoc>base_OnSize(double x, double y)
</autodoc>
30030 <param name=
"x" type=
"double" default=
""/>
30031 <param name=
"y" type=
"double" default=
""/>
30034 <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no">
30035 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
30036 bool display=True) -
> bool
</autodoc>
30038 <param name=
"dc" type=
"DC" default=
""/>
30039 <param name=
"x" type=
"double" default=
""/>
30040 <param name=
"y" type=
"double" default=
""/>
30041 <param name=
"old_x" type=
"double" default=
""/>
30042 <param name=
"old_y" type=
"double" default=
""/>
30043 <param name=
"display" type=
"bool" default=
"True"/>
30046 <method name=
"base_OnMovePost" type=
"" overloaded=
"no">
30047 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
30048 bool display=True)
</autodoc>
30050 <param name=
"dc" type=
"DC" default=
""/>
30051 <param name=
"x" type=
"double" default=
""/>
30052 <param name=
"y" type=
"double" default=
""/>
30053 <param name=
"old_x" type=
"double" default=
""/>
30054 <param name=
"old_y" type=
"double" default=
""/>
30055 <param name=
"display" type=
"bool" default=
"True"/>
30058 <method name=
"base_OnDragLeft" type=
"" overloaded=
"no">
30059 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30061 <param name=
"draw" type=
"bool" default=
""/>
30062 <param name=
"x" type=
"double" default=
""/>
30063 <param name=
"y" type=
"double" default=
""/>
30064 <param name=
"keys" type=
"int" default=
"0"/>
30065 <param name=
"attachment" type=
"int" default=
"0"/>
30068 <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no">
30069 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30071 <param name=
"x" type=
"double" default=
""/>
30072 <param name=
"y" type=
"double" default=
""/>
30073 <param name=
"keys" type=
"int" default=
"0"/>
30074 <param name=
"attachment" type=
"int" default=
"0"/>
30077 <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no">
30078 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30080 <param name=
"x" type=
"double" default=
""/>
30081 <param name=
"y" type=
"double" default=
""/>
30082 <param name=
"keys" type=
"int" default=
"0"/>
30083 <param name=
"attachment" type=
"int" default=
"0"/>
30086 <method name=
"base_OnDragRight" type=
"" overloaded=
"no">
30087 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30089 <param name=
"draw" type=
"bool" default=
""/>
30090 <param name=
"x" type=
"double" default=
""/>
30091 <param name=
"y" type=
"double" default=
""/>
30092 <param name=
"keys" type=
"int" default=
"0"/>
30093 <param name=
"attachment" type=
"int" default=
"0"/>
30096 <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no">
30097 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30099 <param name=
"x" type=
"double" default=
""/>
30100 <param name=
"y" type=
"double" default=
""/>
30101 <param name=
"keys" type=
"int" default=
"0"/>
30102 <param name=
"attachment" type=
"int" default=
"0"/>
30105 <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no">
30106 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30108 <param name=
"x" type=
"double" default=
""/>
30109 <param name=
"y" type=
"double" default=
""/>
30110 <param name=
"keys" type=
"int" default=
"0"/>
30111 <param name=
"attachment" type=
"int" default=
"0"/>
30114 <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no">
30115 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
30117 <param name=
"dc" type=
"DC" default=
""/>
30118 <param name=
"x" type=
"double" default=
""/>
30119 <param name=
"y" type=
"double" default=
""/>
30120 <param name=
"w" type=
"double" default=
""/>
30121 <param name=
"h" type=
"double" default=
""/>
30124 <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no">
30125 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
30127 <param name=
"dc" type=
"DC" default=
""/>
30130 <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no">
30131 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
30133 <param name=
"dc" type=
"DC" default=
""/>
30136 <method name=
"base_OnMoveLink" type=
"" overloaded=
"no">
30137 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
30139 <param name=
"dc" type=
"DC" default=
""/>
30140 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
30143 <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no">
30144 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
30145 int attachment=
0)
</autodoc>
30147 <param name=
"pt" type=
"wxPyControlPoint" default=
""/>
30148 <param name=
"draw" type=
"bool" default=
""/>
30149 <param name=
"x" type=
"double" default=
""/>
30150 <param name=
"y" type=
"double" default=
""/>
30151 <param name=
"keys" type=
"int" default=
"0"/>
30152 <param name=
"attachment" type=
"int" default=
"0"/>
30155 <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no">
30156 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
30157 int attachment=
0)
</autodoc>
30159 <param name=
"pt" type=
"wxPyControlPoint" default=
""/>
30160 <param name=
"x" type=
"double" default=
""/>
30161 <param name=
"y" type=
"double" default=
""/>
30162 <param name=
"keys" type=
"int" default=
"0"/>
30163 <param name=
"attachment" type=
"int" default=
"0"/>
30166 <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no">
30167 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
30168 int attachment=
0)
</autodoc>
30170 <param name=
"pt" type=
"wxPyControlPoint" default=
""/>
30171 <param name=
"x" type=
"double" default=
""/>
30172 <param name=
"y" type=
"double" default=
""/>
30173 <param name=
"keys" type=
"int" default=
"0"/>
30174 <param name=
"attachment" type=
"int" default=
"0"/>
30177 <method name=
"base_OnBeginSize" type=
"" overloaded=
"no">
30178 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
30180 <param name=
"w" type=
"double" default=
""/>
30181 <param name=
"h" type=
"double" default=
""/>
30184 <method name=
"base_OnEndSize" type=
"" overloaded=
"no">
30185 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
30187 <param name=
"w" type=
"double" default=
""/>
30188 <param name=
"h" type=
"double" default=
""/>
30192 <class name=
"PseudoMetaFile" oldname=
"wxPseudoMetaFile" module=
"ogl">
30193 <baseclass name=
"Object"/>
30194 <constructor name=
"PseudoMetaFile" overloaded=
"no">
30195 <autodoc>__init__() -
> PseudoMetaFile
</autodoc>
30197 <destructor name=
"~wxPseudoMetaFile" overloaded=
"no">
30198 <autodoc>__del__()
</autodoc>
30200 <method name=
"Draw" type=
"" overloaded=
"no">
30201 <autodoc>Draw(DC dc, double xoffset, double yoffset)
</autodoc>
30203 <param name=
"dc" type=
"DC" default=
""/>
30204 <param name=
"xoffset" type=
"double" default=
""/>
30205 <param name=
"yoffset" type=
"double" default=
""/>
30208 <method name=
"Clear" type=
"" overloaded=
"no">
30209 <autodoc>Clear()
</autodoc>
30211 <method name=
"Copy" type=
"" overloaded=
"no">
30212 <autodoc>Copy(PseudoMetaFile copy)
</autodoc>
30214 <param name=
"copy" type=
"PseudoMetaFile" default=
""/>
30217 <method name=
"Scale" type=
"" overloaded=
"no">
30218 <autodoc>Scale(double sx, double sy)
</autodoc>
30220 <param name=
"sx" type=
"double" default=
""/>
30221 <param name=
"sy" type=
"double" default=
""/>
30224 <method name=
"ScaleTo" type=
"" overloaded=
"no">
30225 <autodoc>ScaleTo(double w, double h)
</autodoc>
30227 <param name=
"w" type=
"double" default=
""/>
30228 <param name=
"h" type=
"double" default=
""/>
30231 <method name=
"Translate" type=
"" overloaded=
"no">
30232 <autodoc>Translate(double x, double y)
</autodoc>
30234 <param name=
"x" type=
"double" default=
""/>
30235 <param name=
"y" type=
"double" default=
""/>
30238 <method name=
"Rotate" type=
"" overloaded=
"no">
30239 <autodoc>Rotate(double x, double y, double theta)
</autodoc>
30241 <param name=
"x" type=
"double" default=
""/>
30242 <param name=
"y" type=
"double" default=
""/>
30243 <param name=
"theta" type=
"double" default=
""/>
30246 <method name=
"LoadFromMetaFile" type=
"bool" overloaded=
"no">
30247 <autodoc>LoadFromMetaFile(String filename, double width, double height) -
> bool
</autodoc>
30249 <param name=
"filename" type=
"String" default=
""/>
30250 <param name=
"width" type=
"double" default=
""/>
30251 <param name=
"height" type=
"double" default=
""/>
30254 <method name=
"GetBounds" type=
"" overloaded=
"no">
30255 <autodoc>GetBounds(double minX, double minY, double maxX, double maxY)
</autodoc>
30257 <param name=
"minX" type=
"double" default=
""/>
30258 <param name=
"minY" type=
"double" default=
""/>
30259 <param name=
"maxX" type=
"double" default=
""/>
30260 <param name=
"maxY" type=
"double" default=
""/>
30263 <method name=
"CalculateSize" type=
"" overloaded=
"no">
30264 <autodoc>CalculateSize(PyDrawnShape shape)
</autodoc>
30266 <param name=
"shape" type=
"wxPyDrawnShape" default=
""/>
30269 <method name=
"SetRotateable" type=
"" overloaded=
"no">
30270 <autodoc>SetRotateable(bool rot)
</autodoc>
30272 <param name=
"rot" type=
"bool" default=
""/>
30275 <method name=
"GetRotateable" type=
"bool" overloaded=
"no">
30276 <autodoc>GetRotateable() -
> bool
</autodoc>
30278 <method name=
"SetSize" type=
"" overloaded=
"no">
30279 <autodoc>SetSize(double w, double h)
</autodoc>
30281 <param name=
"w" type=
"double" default=
""/>
30282 <param name=
"h" type=
"double" default=
""/>
30285 <method name=
"SetFillBrush" type=
"" overloaded=
"no">
30286 <autodoc>SetFillBrush(wxBrush brush)
</autodoc>
30288 <param name=
"brush" type=
"Brush" default=
""/>
30291 <method name=
"GetFillBrush" type=
"Brush" overloaded=
"no">
30292 <autodoc>GetFillBrush() -
> wxBrush
</autodoc>
30294 <method name=
"SetOutlinePen" type=
"" overloaded=
"no">
30295 <autodoc>SetOutlinePen(wxPen pen)
</autodoc>
30297 <param name=
"pen" type=
"Pen" default=
""/>
30300 <method name=
"GetOutlinePen" type=
"Pen" overloaded=
"no">
30301 <autodoc>GetOutlinePen() -
> wxPen
</autodoc>
30303 <method name=
"SetOutlineOp" type=
"" overloaded=
"no">
30304 <autodoc>SetOutlineOp(int op)
</autodoc>
30306 <param name=
"op" type=
"int" default=
""/>
30309 <method name=
"GetOutlineOp" type=
"int" overloaded=
"no">
30310 <autodoc>GetOutlineOp() -
> int
</autodoc>
30312 <method name=
"IsValid" type=
"bool" overloaded=
"no">
30313 <autodoc>IsValid() -
> bool
</autodoc>
30315 <method name=
"DrawLine" type=
"" overloaded=
"no">
30316 <autodoc>DrawLine(Point pt1, Point pt2)
</autodoc>
30318 <param name=
"pt1" type=
"Point" default=
""/>
30319 <param name=
"pt2" type=
"Point" default=
""/>
30322 <method name=
"DrawRectangle" type=
"" overloaded=
"no">
30323 <autodoc>DrawRectangle(Rect rect)
</autodoc>
30325 <param name=
"rect" type=
"Rect" default=
""/>
30328 <method name=
"DrawRoundedRectangle" type=
"" overloaded=
"no">
30329 <autodoc>DrawRoundedRectangle(Rect rect, double radius)
</autodoc>
30331 <param name=
"rect" type=
"Rect" default=
""/>
30332 <param name=
"radius" type=
"double" default=
""/>
30335 <method name=
"DrawArc" type=
"" overloaded=
"no">
30336 <autodoc>DrawArc(Point centrePt, Point startPt, Point endPt)
</autodoc>
30338 <param name=
"centrePt" type=
"Point" default=
""/>
30339 <param name=
"startPt" type=
"Point" default=
""/>
30340 <param name=
"endPt" type=
"Point" default=
""/>
30343 <method name=
"DrawEllipticArc" type=
"" overloaded=
"no">
30344 <autodoc>DrawEllipticArc(Rect rect, double startAngle, double endAngle)
</autodoc>
30346 <param name=
"rect" type=
"Rect" default=
""/>
30347 <param name=
"startAngle" type=
"double" default=
""/>
30348 <param name=
"endAngle" type=
"double" default=
""/>
30351 <method name=
"DrawEllipse" type=
"" overloaded=
"no">
30352 <autodoc>DrawEllipse(Rect rect)
</autodoc>
30354 <param name=
"rect" type=
"Rect" default=
""/>
30357 <method name=
"DrawPoint" type=
"" overloaded=
"no">
30358 <autodoc>DrawPoint(Point pt)
</autodoc>
30360 <param name=
"pt" type=
"Point" default=
""/>
30363 <method name=
"DrawText" type=
"" overloaded=
"no">
30364 <autodoc>DrawText(String text, Point pt)
</autodoc>
30366 <param name=
"text" type=
"String" default=
""/>
30367 <param name=
"pt" type=
"Point" default=
""/>
30370 <method name=
"DrawLines" type=
"" overloaded=
"no">
30371 <autodoc>DrawLines(int PCOUNT, Point points)
</autodoc>
30373 <param name=
"PCOUNT" type=
"int" default=
""/>
30374 <param name=
"points" type=
"Point" default=
""/>
30377 <method name=
"DrawPolygon" type=
"" overloaded=
"no">
30378 <autodoc>DrawPolygon(int PCOUNT, Point points, int flags=
0)
</autodoc>
30380 <param name=
"PCOUNT" type=
"int" default=
""/>
30381 <param name=
"points" type=
"Point" default=
""/>
30382 <param name=
"flags" type=
"int" default=
"0"/>
30385 <method name=
"DrawSpline" type=
"" overloaded=
"no">
30386 <autodoc>DrawSpline(int PCOUNT, Point points)
</autodoc>
30388 <param name=
"PCOUNT" type=
"int" default=
""/>
30389 <param name=
"points" type=
"Point" default=
""/>
30392 <method name=
"SetClippingRect" type=
"" overloaded=
"no">
30393 <autodoc>SetClippingRect(Rect rect)
</autodoc>
30395 <param name=
"rect" type=
"Rect" default=
""/>
30398 <method name=
"DestroyClippingRect" type=
"" overloaded=
"no">
30399 <autodoc>DestroyClippingRect()
</autodoc>
30401 <method name=
"SetPen" type=
"" overloaded=
"no">
30402 <autodoc>SetPen(wxPen pen, bool isOutline=FALSE)
</autodoc>
30404 <param name=
"pen" type=
"Pen" default=
""/>
30405 <param name=
"isOutline" type=
"bool" default=
"FALSE"/>
30408 <method name=
"SetBrush" type=
"" overloaded=
"no">
30409 <autodoc>SetBrush(wxBrush brush, bool isFill=FALSE)
</autodoc>
30411 <param name=
"brush" type=
"Brush" default=
""/>
30412 <param name=
"isFill" type=
"bool" default=
"FALSE"/>
30415 <method name=
"SetFont" type=
"" overloaded=
"no">
30416 <autodoc>SetFont(Font font)
</autodoc>
30418 <param name=
"font" type=
"Font" default=
""/>
30421 <method name=
"SetTextColour" type=
"" overloaded=
"no">
30422 <autodoc>SetTextColour(Colour colour)
</autodoc>
30424 <param name=
"colour" type=
"Colour" default=
""/>
30427 <method name=
"SetBackgroundColour" type=
"" overloaded=
"no">
30428 <autodoc>SetBackgroundColour(Colour colour)
</autodoc>
30430 <param name=
"colour" type=
"Colour" default=
""/>
30433 <method name=
"SetBackgroundMode" type=
"" overloaded=
"no">
30434 <autodoc>SetBackgroundMode(int mode)
</autodoc>
30436 <param name=
"mode" type=
"int" default=
""/>
30440 <class name=
"PyRectangleShape" oldname=
"wxPyRectangleShape" module=
"ogl">
30441 <baseclass name=
"PyShape"/>
30442 <constructor name=
"PyRectangleShape" overloaded=
"no">
30443 <autodoc>__init__(double width=
0.0, double height=
0.0) -
> PyRectangleShape
</autodoc>
30445 <param name=
"width" type=
"double" default=
"0.0"/>
30446 <param name=
"height" type=
"double" default=
"0.0"/>
30449 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
30450 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
30452 <param name=
"self" type=
"PyObject" default=
""/>
30453 <param name=
"_class" type=
"PyObject" default=
""/>
30456 <method name=
"SetCornerRadius" type=
"" overloaded=
"no">
30457 <autodoc>SetCornerRadius(double radius)
</autodoc>
30459 <param name=
"radius" type=
"double" default=
""/>
30462 <method name=
"GetCornerRadius" type=
"double" overloaded=
"no">
30463 <autodoc>GetCornerRadius() -
> double
</autodoc>
30465 <method name=
"base_OnDelete" type=
"" overloaded=
"no">
30466 <autodoc>base_OnDelete()
</autodoc>
30468 <method name=
"base_OnDraw" type=
"" overloaded=
"no">
30469 <autodoc>base_OnDraw(DC dc)
</autodoc>
30471 <param name=
"dc" type=
"DC" default=
""/>
30474 <method name=
"base_OnDrawContents" type=
"" overloaded=
"no">
30475 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
30477 <param name=
"dc" type=
"DC" default=
""/>
30480 <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no">
30481 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
30483 <param name=
"dc" type=
"DC" default=
""/>
30484 <param name=
"erase" type=
"bool" default=
"FALSE"/>
30487 <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no">
30488 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
30490 <param name=
"dc" type=
"DC" default=
""/>
30493 <method name=
"base_OnErase" type=
"" overloaded=
"no">
30494 <autodoc>base_OnErase(DC dc)
</autodoc>
30496 <param name=
"dc" type=
"DC" default=
""/>
30499 <method name=
"base_OnEraseContents" type=
"" overloaded=
"no">
30500 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
30502 <param name=
"dc" type=
"DC" default=
""/>
30505 <method name=
"base_OnHighlight" type=
"" overloaded=
"no">
30506 <autodoc>base_OnHighlight(DC dc)
</autodoc>
30508 <param name=
"dc" type=
"DC" default=
""/>
30511 <method name=
"base_OnLeftClick" type=
"" overloaded=
"no">
30512 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30514 <param name=
"x" type=
"double" default=
""/>
30515 <param name=
"y" type=
"double" default=
""/>
30516 <param name=
"keys" type=
"int" default=
"0"/>
30517 <param name=
"attachment" type=
"int" default=
"0"/>
30520 <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no">
30521 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30523 <param name=
"x" type=
"double" default=
""/>
30524 <param name=
"y" type=
"double" default=
""/>
30525 <param name=
"keys" type=
"int" default=
"0"/>
30526 <param name=
"attachment" type=
"int" default=
"0"/>
30529 <method name=
"base_OnRightClick" type=
"" overloaded=
"no">
30530 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30532 <param name=
"x" type=
"double" default=
""/>
30533 <param name=
"y" type=
"double" default=
""/>
30534 <param name=
"keys" type=
"int" default=
"0"/>
30535 <param name=
"attachment" type=
"int" default=
"0"/>
30538 <method name=
"base_OnSize" type=
"" overloaded=
"no">
30539 <autodoc>base_OnSize(double x, double y)
</autodoc>
30541 <param name=
"x" type=
"double" default=
""/>
30542 <param name=
"y" type=
"double" default=
""/>
30545 <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no">
30546 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
30547 bool display=True) -
> bool
</autodoc>
30549 <param name=
"dc" type=
"DC" default=
""/>
30550 <param name=
"x" type=
"double" default=
""/>
30551 <param name=
"y" type=
"double" default=
""/>
30552 <param name=
"old_x" type=
"double" default=
""/>
30553 <param name=
"old_y" type=
"double" default=
""/>
30554 <param name=
"display" type=
"bool" default=
"True"/>
30557 <method name=
"base_OnMovePost" type=
"" overloaded=
"no">
30558 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
30559 bool display=True)
</autodoc>
30561 <param name=
"dc" type=
"DC" default=
""/>
30562 <param name=
"x" type=
"double" default=
""/>
30563 <param name=
"y" type=
"double" default=
""/>
30564 <param name=
"old_x" type=
"double" default=
""/>
30565 <param name=
"old_y" type=
"double" default=
""/>
30566 <param name=
"display" type=
"bool" default=
"True"/>
30569 <method name=
"base_OnDragLeft" type=
"" overloaded=
"no">
30570 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30572 <param name=
"draw" type=
"bool" default=
""/>
30573 <param name=
"x" type=
"double" default=
""/>
30574 <param name=
"y" type=
"double" default=
""/>
30575 <param name=
"keys" type=
"int" default=
"0"/>
30576 <param name=
"attachment" type=
"int" default=
"0"/>
30579 <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no">
30580 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30582 <param name=
"x" type=
"double" default=
""/>
30583 <param name=
"y" type=
"double" default=
""/>
30584 <param name=
"keys" type=
"int" default=
"0"/>
30585 <param name=
"attachment" type=
"int" default=
"0"/>
30588 <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no">
30589 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30591 <param name=
"x" type=
"double" default=
""/>
30592 <param name=
"y" type=
"double" default=
""/>
30593 <param name=
"keys" type=
"int" default=
"0"/>
30594 <param name=
"attachment" type=
"int" default=
"0"/>
30597 <method name=
"base_OnDragRight" type=
"" overloaded=
"no">
30598 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30600 <param name=
"draw" type=
"bool" default=
""/>
30601 <param name=
"x" type=
"double" default=
""/>
30602 <param name=
"y" type=
"double" default=
""/>
30603 <param name=
"keys" type=
"int" default=
"0"/>
30604 <param name=
"attachment" type=
"int" default=
"0"/>
30607 <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no">
30608 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30610 <param name=
"x" type=
"double" default=
""/>
30611 <param name=
"y" type=
"double" default=
""/>
30612 <param name=
"keys" type=
"int" default=
"0"/>
30613 <param name=
"attachment" type=
"int" default=
"0"/>
30616 <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no">
30617 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30619 <param name=
"x" type=
"double" default=
""/>
30620 <param name=
"y" type=
"double" default=
""/>
30621 <param name=
"keys" type=
"int" default=
"0"/>
30622 <param name=
"attachment" type=
"int" default=
"0"/>
30625 <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no">
30626 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
30628 <param name=
"dc" type=
"DC" default=
""/>
30629 <param name=
"x" type=
"double" default=
""/>
30630 <param name=
"y" type=
"double" default=
""/>
30631 <param name=
"w" type=
"double" default=
""/>
30632 <param name=
"h" type=
"double" default=
""/>
30635 <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no">
30636 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
30638 <param name=
"dc" type=
"DC" default=
""/>
30641 <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no">
30642 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
30644 <param name=
"dc" type=
"DC" default=
""/>
30647 <method name=
"base_OnMoveLink" type=
"" overloaded=
"no">
30648 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
30650 <param name=
"dc" type=
"DC" default=
""/>
30651 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
30654 <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no">
30655 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
30656 int attachment=
0)
</autodoc>
30658 <param name=
"pt" type=
"wxPyControlPoint" default=
""/>
30659 <param name=
"draw" type=
"bool" default=
""/>
30660 <param name=
"x" type=
"double" default=
""/>
30661 <param name=
"y" type=
"double" default=
""/>
30662 <param name=
"keys" type=
"int" default=
"0"/>
30663 <param name=
"attachment" type=
"int" default=
"0"/>
30666 <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no">
30667 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
30668 int attachment=
0)
</autodoc>
30670 <param name=
"pt" type=
"wxPyControlPoint" 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_OnSizingEndDragLeft" type=
"" overloaded=
"no">
30678 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
30679 int attachment=
0)
</autodoc>
30681 <param name=
"pt" type=
"wxPyControlPoint" default=
""/>
30682 <param name=
"x" type=
"double" default=
""/>
30683 <param name=
"y" type=
"double" default=
""/>
30684 <param name=
"keys" type=
"int" default=
"0"/>
30685 <param name=
"attachment" type=
"int" default=
"0"/>
30688 <method name=
"base_OnBeginSize" type=
"" overloaded=
"no">
30689 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
30691 <param name=
"w" type=
"double" default=
""/>
30692 <param name=
"h" type=
"double" default=
""/>
30695 <method name=
"base_OnEndSize" type=
"" overloaded=
"no">
30696 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
30698 <param name=
"w" type=
"double" default=
""/>
30699 <param name=
"h" type=
"double" default=
""/>
30703 <class name=
"PyControlPoint" oldname=
"wxPyControlPoint" module=
"ogl">
30704 <baseclass name=
"PyRectangleShape"/>
30705 <constructor name=
"PyControlPoint" overloaded=
"no">
30706 <autodoc>__init__(PyShapeCanvas the_canvas=None, PyShape object=None,
30707 double size=
0.0, double the_xoffset=
0.0, double the_yoffset=
0.0,
30708 int the_type=
0) -
> PyControlPoint
</autodoc>
30710 <param name=
"the_canvas" type=
"wxPyShapeCanvas" default=
"NULL"/>
30711 <param name=
"object" type=
"PyShape" default=
"NULL"/>
30712 <param name=
"size" type=
"double" default=
"0.0"/>
30713 <param name=
"the_xoffset" type=
"double" default=
"0.0"/>
30714 <param name=
"the_yoffset" type=
"double" default=
"0.0"/>
30715 <param name=
"the_type" type=
"int" default=
"0"/>
30718 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
30719 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
30721 <param name=
"self" type=
"PyObject" default=
""/>
30722 <param name=
"_class" type=
"PyObject" default=
""/>
30725 <method name=
"SetCornerRadius" type=
"" overloaded=
"no">
30726 <autodoc>SetCornerRadius(double radius)
</autodoc>
30728 <param name=
"radius" type=
"double" default=
""/>
30731 <method name=
"base_OnDelete" type=
"" overloaded=
"no">
30732 <autodoc>base_OnDelete()
</autodoc>
30734 <method name=
"base_OnDraw" type=
"" overloaded=
"no">
30735 <autodoc>base_OnDraw(DC dc)
</autodoc>
30737 <param name=
"dc" type=
"DC" default=
""/>
30740 <method name=
"base_OnDrawContents" type=
"" overloaded=
"no">
30741 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
30743 <param name=
"dc" type=
"DC" default=
""/>
30746 <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no">
30747 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
30749 <param name=
"dc" type=
"DC" default=
""/>
30750 <param name=
"erase" type=
"bool" default=
"FALSE"/>
30753 <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no">
30754 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
30756 <param name=
"dc" type=
"DC" default=
""/>
30759 <method name=
"base_OnErase" type=
"" overloaded=
"no">
30760 <autodoc>base_OnErase(DC dc)
</autodoc>
30762 <param name=
"dc" type=
"DC" default=
""/>
30765 <method name=
"base_OnEraseContents" type=
"" overloaded=
"no">
30766 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
30768 <param name=
"dc" type=
"DC" default=
""/>
30771 <method name=
"base_OnHighlight" type=
"" overloaded=
"no">
30772 <autodoc>base_OnHighlight(DC dc)
</autodoc>
30774 <param name=
"dc" type=
"DC" default=
""/>
30777 <method name=
"base_OnLeftClick" type=
"" overloaded=
"no">
30778 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30780 <param name=
"x" type=
"double" default=
""/>
30781 <param name=
"y" type=
"double" default=
""/>
30782 <param name=
"keys" type=
"int" default=
"0"/>
30783 <param name=
"attachment" type=
"int" default=
"0"/>
30786 <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no">
30787 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30789 <param name=
"x" type=
"double" default=
""/>
30790 <param name=
"y" type=
"double" default=
""/>
30791 <param name=
"keys" type=
"int" default=
"0"/>
30792 <param name=
"attachment" type=
"int" default=
"0"/>
30795 <method name=
"base_OnRightClick" type=
"" overloaded=
"no">
30796 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30798 <param name=
"x" type=
"double" default=
""/>
30799 <param name=
"y" type=
"double" default=
""/>
30800 <param name=
"keys" type=
"int" default=
"0"/>
30801 <param name=
"attachment" type=
"int" default=
"0"/>
30804 <method name=
"base_OnSize" type=
"" overloaded=
"no">
30805 <autodoc>base_OnSize(double x, double y)
</autodoc>
30807 <param name=
"x" type=
"double" default=
""/>
30808 <param name=
"y" type=
"double" default=
""/>
30811 <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no">
30812 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
30813 bool display=True) -
> bool
</autodoc>
30815 <param name=
"dc" type=
"DC" default=
""/>
30816 <param name=
"x" type=
"double" default=
""/>
30817 <param name=
"y" type=
"double" default=
""/>
30818 <param name=
"old_x" type=
"double" default=
""/>
30819 <param name=
"old_y" type=
"double" default=
""/>
30820 <param name=
"display" type=
"bool" default=
"True"/>
30823 <method name=
"base_OnMovePost" type=
"" overloaded=
"no">
30824 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
30825 bool display=True)
</autodoc>
30827 <param name=
"dc" type=
"DC" default=
""/>
30828 <param name=
"x" type=
"double" default=
""/>
30829 <param name=
"y" type=
"double" default=
""/>
30830 <param name=
"old_x" type=
"double" default=
""/>
30831 <param name=
"old_y" type=
"double" default=
""/>
30832 <param name=
"display" type=
"bool" default=
"True"/>
30835 <method name=
"base_OnDragLeft" type=
"" overloaded=
"no">
30836 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30838 <param name=
"draw" type=
"bool" default=
""/>
30839 <param name=
"x" type=
"double" default=
""/>
30840 <param name=
"y" type=
"double" default=
""/>
30841 <param name=
"keys" type=
"int" default=
"0"/>
30842 <param name=
"attachment" type=
"int" default=
"0"/>
30845 <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no">
30846 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30848 <param name=
"x" type=
"double" default=
""/>
30849 <param name=
"y" type=
"double" default=
""/>
30850 <param name=
"keys" type=
"int" default=
"0"/>
30851 <param name=
"attachment" type=
"int" default=
"0"/>
30854 <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no">
30855 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30857 <param name=
"x" type=
"double" default=
""/>
30858 <param name=
"y" type=
"double" default=
""/>
30859 <param name=
"keys" type=
"int" default=
"0"/>
30860 <param name=
"attachment" type=
"int" default=
"0"/>
30863 <method name=
"base_OnDragRight" type=
"" overloaded=
"no">
30864 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30866 <param name=
"draw" type=
"bool" default=
""/>
30867 <param name=
"x" type=
"double" default=
""/>
30868 <param name=
"y" type=
"double" default=
""/>
30869 <param name=
"keys" type=
"int" default=
"0"/>
30870 <param name=
"attachment" type=
"int" default=
"0"/>
30873 <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no">
30874 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30876 <param name=
"x" type=
"double" default=
""/>
30877 <param name=
"y" type=
"double" default=
""/>
30878 <param name=
"keys" type=
"int" default=
"0"/>
30879 <param name=
"attachment" type=
"int" default=
"0"/>
30882 <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no">
30883 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30885 <param name=
"x" type=
"double" default=
""/>
30886 <param name=
"y" type=
"double" default=
""/>
30887 <param name=
"keys" type=
"int" default=
"0"/>
30888 <param name=
"attachment" type=
"int" default=
"0"/>
30891 <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no">
30892 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
30894 <param name=
"dc" type=
"DC" default=
""/>
30895 <param name=
"x" type=
"double" default=
""/>
30896 <param name=
"y" type=
"double" default=
""/>
30897 <param name=
"w" type=
"double" default=
""/>
30898 <param name=
"h" type=
"double" default=
""/>
30901 <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no">
30902 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
30904 <param name=
"dc" type=
"DC" default=
""/>
30907 <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no">
30908 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
30910 <param name=
"dc" type=
"DC" default=
""/>
30913 <method name=
"base_OnMoveLink" type=
"" overloaded=
"no">
30914 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
30916 <param name=
"dc" type=
"DC" default=
""/>
30917 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
30920 <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no">
30921 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
30922 int attachment=
0)
</autodoc>
30924 <param name=
"pt" type=
"PyControlPoint" default=
""/>
30925 <param name=
"draw" type=
"bool" default=
""/>
30926 <param name=
"x" type=
"double" default=
""/>
30927 <param name=
"y" type=
"double" default=
""/>
30928 <param name=
"keys" type=
"int" default=
"0"/>
30929 <param name=
"attachment" type=
"int" default=
"0"/>
30932 <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no">
30933 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
30934 int attachment=
0)
</autodoc>
30936 <param name=
"pt" type=
"PyControlPoint" default=
""/>
30937 <param name=
"x" type=
"double" default=
""/>
30938 <param name=
"y" type=
"double" default=
""/>
30939 <param name=
"keys" type=
"int" default=
"0"/>
30940 <param name=
"attachment" type=
"int" default=
"0"/>
30943 <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no">
30944 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
30945 int attachment=
0)
</autodoc>
30947 <param name=
"pt" type=
"PyControlPoint" default=
""/>
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_OnBeginSize" type=
"" overloaded=
"no">
30955 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
30957 <param name=
"w" type=
"double" default=
""/>
30958 <param name=
"h" type=
"double" default=
""/>
30961 <method name=
"base_OnEndSize" type=
"" overloaded=
"no">
30962 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
30964 <param name=
"w" type=
"double" default=
""/>
30965 <param name=
"h" type=
"double" default=
""/>
30969 <class name=
"PyBitmapShape" oldname=
"wxPyBitmapShape" module=
"ogl">
30970 <baseclass name=
"PyRectangleShape"/>
30971 <constructor name=
"PyBitmapShape" overloaded=
"no">
30972 <autodoc>__init__() -
> PyBitmapShape
</autodoc>
30974 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
30975 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
30977 <param name=
"self" type=
"PyObject" default=
""/>
30978 <param name=
"_class" type=
"PyObject" default=
""/>
30981 <method name=
"GetBitmap" type=
"Bitmap" overloaded=
"no">
30982 <autodoc>GetBitmap() -
> Bitmap
</autodoc>
30984 <method name=
"GetFilename" type=
"String" overloaded=
"no">
30985 <autodoc>GetFilename() -
> String
</autodoc>
30987 <method name=
"SetBitmap" type=
"" overloaded=
"no">
30988 <autodoc>SetBitmap(Bitmap bitmap)
</autodoc>
30990 <param name=
"bitmap" type=
"Bitmap" default=
""/>
30993 <method name=
"SetFilename" type=
"" overloaded=
"no">
30994 <autodoc>SetFilename(String filename)
</autodoc>
30996 <param name=
"filename" type=
"String" default=
""/>
30999 <method name=
"base_OnDelete" type=
"" overloaded=
"no">
31000 <autodoc>base_OnDelete()
</autodoc>
31002 <method name=
"base_OnDraw" type=
"" overloaded=
"no">
31003 <autodoc>base_OnDraw(DC dc)
</autodoc>
31005 <param name=
"dc" type=
"DC" default=
""/>
31008 <method name=
"base_OnDrawContents" type=
"" overloaded=
"no">
31009 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
31011 <param name=
"dc" type=
"DC" default=
""/>
31014 <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no">
31015 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
31017 <param name=
"dc" type=
"DC" default=
""/>
31018 <param name=
"erase" type=
"bool" default=
"FALSE"/>
31021 <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no">
31022 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
31024 <param name=
"dc" type=
"DC" default=
""/>
31027 <method name=
"base_OnErase" type=
"" overloaded=
"no">
31028 <autodoc>base_OnErase(DC dc)
</autodoc>
31030 <param name=
"dc" type=
"DC" default=
""/>
31033 <method name=
"base_OnEraseContents" type=
"" overloaded=
"no">
31034 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
31036 <param name=
"dc" type=
"DC" default=
""/>
31039 <method name=
"base_OnHighlight" type=
"" overloaded=
"no">
31040 <autodoc>base_OnHighlight(DC dc)
</autodoc>
31042 <param name=
"dc" type=
"DC" default=
""/>
31045 <method name=
"base_OnLeftClick" type=
"" overloaded=
"no">
31046 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31048 <param name=
"x" type=
"double" default=
""/>
31049 <param name=
"y" type=
"double" default=
""/>
31050 <param name=
"keys" type=
"int" default=
"0"/>
31051 <param name=
"attachment" type=
"int" default=
"0"/>
31054 <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no">
31055 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31057 <param name=
"x" type=
"double" default=
""/>
31058 <param name=
"y" type=
"double" default=
""/>
31059 <param name=
"keys" type=
"int" default=
"0"/>
31060 <param name=
"attachment" type=
"int" default=
"0"/>
31063 <method name=
"base_OnRightClick" type=
"" overloaded=
"no">
31064 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31066 <param name=
"x" type=
"double" default=
""/>
31067 <param name=
"y" type=
"double" default=
""/>
31068 <param name=
"keys" type=
"int" default=
"0"/>
31069 <param name=
"attachment" type=
"int" default=
"0"/>
31072 <method name=
"base_OnSize" type=
"" overloaded=
"no">
31073 <autodoc>base_OnSize(double x, double y)
</autodoc>
31075 <param name=
"x" type=
"double" default=
""/>
31076 <param name=
"y" type=
"double" default=
""/>
31079 <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no">
31080 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
31081 bool display=True) -
> bool
</autodoc>
31083 <param name=
"dc" type=
"DC" default=
""/>
31084 <param name=
"x" type=
"double" default=
""/>
31085 <param name=
"y" type=
"double" default=
""/>
31086 <param name=
"old_x" type=
"double" default=
""/>
31087 <param name=
"old_y" type=
"double" default=
""/>
31088 <param name=
"display" type=
"bool" default=
"True"/>
31091 <method name=
"base_OnMovePost" type=
"" overloaded=
"no">
31092 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
31093 bool display=True)
</autodoc>
31095 <param name=
"dc" type=
"DC" default=
""/>
31096 <param name=
"x" type=
"double" default=
""/>
31097 <param name=
"y" type=
"double" default=
""/>
31098 <param name=
"old_x" type=
"double" default=
""/>
31099 <param name=
"old_y" type=
"double" default=
""/>
31100 <param name=
"display" type=
"bool" default=
"True"/>
31103 <method name=
"base_OnDragLeft" type=
"" overloaded=
"no">
31104 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31106 <param name=
"draw" type=
"bool" default=
""/>
31107 <param name=
"x" type=
"double" default=
""/>
31108 <param name=
"y" type=
"double" default=
""/>
31109 <param name=
"keys" type=
"int" default=
"0"/>
31110 <param name=
"attachment" type=
"int" default=
"0"/>
31113 <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no">
31114 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31116 <param name=
"x" type=
"double" default=
""/>
31117 <param name=
"y" type=
"double" default=
""/>
31118 <param name=
"keys" type=
"int" default=
"0"/>
31119 <param name=
"attachment" type=
"int" default=
"0"/>
31122 <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no">
31123 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31125 <param name=
"x" type=
"double" default=
""/>
31126 <param name=
"y" type=
"double" default=
""/>
31127 <param name=
"keys" type=
"int" default=
"0"/>
31128 <param name=
"attachment" type=
"int" default=
"0"/>
31131 <method name=
"base_OnDragRight" type=
"" overloaded=
"no">
31132 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31134 <param name=
"draw" type=
"bool" default=
""/>
31135 <param name=
"x" type=
"double" default=
""/>
31136 <param name=
"y" type=
"double" default=
""/>
31137 <param name=
"keys" type=
"int" default=
"0"/>
31138 <param name=
"attachment" type=
"int" default=
"0"/>
31141 <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no">
31142 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31144 <param name=
"x" type=
"double" default=
""/>
31145 <param name=
"y" type=
"double" default=
""/>
31146 <param name=
"keys" type=
"int" default=
"0"/>
31147 <param name=
"attachment" type=
"int" default=
"0"/>
31150 <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no">
31151 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31153 <param name=
"x" type=
"double" default=
""/>
31154 <param name=
"y" type=
"double" default=
""/>
31155 <param name=
"keys" type=
"int" default=
"0"/>
31156 <param name=
"attachment" type=
"int" default=
"0"/>
31159 <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no">
31160 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
31162 <param name=
"dc" type=
"DC" default=
""/>
31163 <param name=
"x" type=
"double" default=
""/>
31164 <param name=
"y" type=
"double" default=
""/>
31165 <param name=
"w" type=
"double" default=
""/>
31166 <param name=
"h" type=
"double" default=
""/>
31169 <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no">
31170 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
31172 <param name=
"dc" type=
"DC" default=
""/>
31175 <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no">
31176 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
31178 <param name=
"dc" type=
"DC" default=
""/>
31181 <method name=
"base_OnMoveLink" type=
"" overloaded=
"no">
31182 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
31184 <param name=
"dc" type=
"DC" default=
""/>
31185 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
31188 <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no">
31189 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
31190 int attachment=
0)
</autodoc>
31192 <param name=
"pt" type=
"PyControlPoint" default=
""/>
31193 <param name=
"draw" type=
"bool" default=
""/>
31194 <param name=
"x" type=
"double" default=
""/>
31195 <param name=
"y" type=
"double" default=
""/>
31196 <param name=
"keys" type=
"int" default=
"0"/>
31197 <param name=
"attachment" type=
"int" default=
"0"/>
31200 <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no">
31201 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
31202 int attachment=
0)
</autodoc>
31204 <param name=
"pt" type=
"PyControlPoint" default=
""/>
31205 <param name=
"x" type=
"double" default=
""/>
31206 <param name=
"y" type=
"double" default=
""/>
31207 <param name=
"keys" type=
"int" default=
"0"/>
31208 <param name=
"attachment" type=
"int" default=
"0"/>
31211 <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no">
31212 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
31213 int attachment=
0)
</autodoc>
31215 <param name=
"pt" type=
"PyControlPoint" default=
""/>
31216 <param name=
"x" type=
"double" default=
""/>
31217 <param name=
"y" type=
"double" default=
""/>
31218 <param name=
"keys" type=
"int" default=
"0"/>
31219 <param name=
"attachment" type=
"int" default=
"0"/>
31222 <method name=
"base_OnBeginSize" type=
"" overloaded=
"no">
31223 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
31225 <param name=
"w" type=
"double" default=
""/>
31226 <param name=
"h" type=
"double" default=
""/>
31229 <method name=
"base_OnEndSize" type=
"" overloaded=
"no">
31230 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
31232 <param name=
"w" type=
"double" default=
""/>
31233 <param name=
"h" type=
"double" default=
""/>
31237 <class name=
"PyDrawnShape" oldname=
"wxPyDrawnShape" module=
"ogl">
31238 <baseclass name=
"PyRectangleShape"/>
31239 <constructor name=
"PyDrawnShape" overloaded=
"no">
31240 <autodoc>__init__() -
> PyDrawnShape
</autodoc>
31242 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
31243 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
31245 <param name=
"self" type=
"PyObject" default=
""/>
31246 <param name=
"_class" type=
"PyObject" default=
""/>
31249 <method name=
"CalculateSize" type=
"" overloaded=
"no">
31250 <autodoc>CalculateSize()
</autodoc>
31252 <method name=
"DestroyClippingRect" type=
"" overloaded=
"no">
31253 <autodoc>DestroyClippingRect()
</autodoc>
31255 <method name=
"DrawArc" type=
"" overloaded=
"no">
31256 <autodoc>DrawArc(Point centrePoint, Point startPoint, Point endPoint)
</autodoc>
31258 <param name=
"centrePoint" type=
"Point" default=
""/>
31259 <param name=
"startPoint" type=
"Point" default=
""/>
31260 <param name=
"endPoint" type=
"Point" default=
""/>
31263 <method name=
"DrawAtAngle" type=
"" overloaded=
"no">
31264 <autodoc>DrawAtAngle(int angle)
</autodoc>
31266 <param name=
"angle" type=
"int" default=
""/>
31269 <method name=
"DrawEllipticArc" type=
"" overloaded=
"no">
31270 <autodoc>DrawEllipticArc(Rect rect, double startAngle, double endAngle)
</autodoc>
31272 <param name=
"rect" type=
"Rect" default=
""/>
31273 <param name=
"startAngle" type=
"double" default=
""/>
31274 <param name=
"endAngle" type=
"double" default=
""/>
31277 <method name=
"DrawLine" type=
"" overloaded=
"no">
31278 <autodoc>DrawLine(Point point1, Point point2)
</autodoc>
31280 <param name=
"point1" type=
"Point" default=
""/>
31281 <param name=
"point2" type=
"Point" default=
""/>
31284 <method name=
"DrawLines" type=
"" overloaded=
"no">
31285 <autodoc>DrawLines(int PCOUNT, Point points)
</autodoc>
31287 <param name=
"PCOUNT" type=
"int" default=
""/>
31288 <param name=
"points" type=
"Point" default=
""/>
31291 <method name=
"DrawPoint" type=
"" overloaded=
"no">
31292 <autodoc>DrawPoint(Point point)
</autodoc>
31294 <param name=
"point" type=
"Point" default=
""/>
31297 <method name=
"DrawPolygon" type=
"" overloaded=
"no">
31298 <autodoc>DrawPolygon(int PCOUNT, Point points, int flags=
0)
</autodoc>
31300 <param name=
"PCOUNT" type=
"int" default=
""/>
31301 <param name=
"points" type=
"Point" default=
""/>
31302 <param name=
"flags" type=
"int" default=
"0"/>
31305 <method name=
"DrawRectangle" type=
"" overloaded=
"no">
31306 <autodoc>DrawRectangle(Rect rect)
</autodoc>
31308 <param name=
"rect" type=
"Rect" default=
""/>
31311 <method name=
"DrawRoundedRectangle" type=
"" overloaded=
"no">
31312 <autodoc>DrawRoundedRectangle(Rect rect, double radius)
</autodoc>
31314 <param name=
"rect" type=
"Rect" default=
""/>
31315 <param name=
"radius" type=
"double" default=
""/>
31318 <method name=
"DrawSpline" type=
"" overloaded=
"no">
31319 <autodoc>DrawSpline(int PCOUNT, Point points)
</autodoc>
31321 <param name=
"PCOUNT" type=
"int" default=
""/>
31322 <param name=
"points" type=
"Point" default=
""/>
31325 <method name=
"DrawText" type=
"" overloaded=
"no">
31326 <autodoc>DrawText(String text, Point point)
</autodoc>
31328 <param name=
"text" type=
"String" default=
""/>
31329 <param name=
"point" type=
"Point" default=
""/>
31332 <method name=
"GetAngle" type=
"int" overloaded=
"no">
31333 <autodoc>GetAngle() -
> int
</autodoc>
31335 <method name=
"GetMetaFile" type=
"PseudoMetaFile" overloaded=
"no">
31336 <autodoc>GetMetaFile() -
> PseudoMetaFile
</autodoc>
31338 <method name=
"GetRotation" type=
"double" overloaded=
"no">
31339 <autodoc>GetRotation() -
> double
</autodoc>
31341 <method name=
"LoadFromMetaFile" type=
"bool" overloaded=
"no">
31342 <autodoc>LoadFromMetaFile(String filename) -
> bool
</autodoc>
31344 <param name=
"filename" type=
"String" default=
""/>
31347 <method name=
"Rotate" type=
"" overloaded=
"no">
31348 <autodoc>Rotate(double x, double y, double theta)
</autodoc>
31350 <param name=
"x" type=
"double" default=
""/>
31351 <param name=
"y" type=
"double" default=
""/>
31352 <param name=
"theta" type=
"double" default=
""/>
31355 <method name=
"SetClippingRect" type=
"" overloaded=
"no">
31356 <autodoc>SetClippingRect(Rect rect)
</autodoc>
31358 <param name=
"rect" type=
"Rect" default=
""/>
31361 <method name=
"SetDrawnBackgroundColour" type=
"" overloaded=
"no">
31362 <autodoc>SetDrawnBackgroundColour(Colour colour)
</autodoc>
31364 <param name=
"colour" type=
"Colour" default=
""/>
31367 <method name=
"SetDrawnBackgroundMode" type=
"" overloaded=
"no">
31368 <autodoc>SetDrawnBackgroundMode(int mode)
</autodoc>
31370 <param name=
"mode" type=
"int" default=
""/>
31373 <method name=
"SetDrawnBrush" type=
"" overloaded=
"no">
31374 <autodoc>SetDrawnBrush(wxBrush pen, bool isOutline=FALSE)
</autodoc>
31376 <param name=
"pen" type=
"Brush" default=
""/>
31377 <param name=
"isOutline" type=
"bool" default=
"FALSE"/>
31380 <method name=
"SetDrawnFont" type=
"" overloaded=
"no">
31381 <autodoc>SetDrawnFont(Font font)
</autodoc>
31383 <param name=
"font" type=
"Font" default=
""/>
31386 <method name=
"SetDrawnPen" type=
"" overloaded=
"no">
31387 <autodoc>SetDrawnPen(wxPen pen, bool isOutline=FALSE)
</autodoc>
31389 <param name=
"pen" type=
"Pen" default=
""/>
31390 <param name=
"isOutline" type=
"bool" default=
"FALSE"/>
31393 <method name=
"SetDrawnTextColour" type=
"" overloaded=
"no">
31394 <autodoc>SetDrawnTextColour(Colour colour)
</autodoc>
31396 <param name=
"colour" type=
"Colour" default=
""/>
31399 <method name=
"Scale" type=
"" overloaded=
"no">
31400 <autodoc>Scale(double sx, double sy)
</autodoc>
31402 <param name=
"sx" type=
"double" default=
""/>
31403 <param name=
"sy" type=
"double" default=
""/>
31406 <method name=
"SetSaveToFile" type=
"" overloaded=
"no">
31407 <autodoc>SetSaveToFile(bool save)
</autodoc>
31409 <param name=
"save" type=
"bool" default=
""/>
31412 <method name=
"Translate" type=
"" overloaded=
"no">
31413 <autodoc>Translate(double x, double y)
</autodoc>
31415 <param name=
"x" type=
"double" default=
""/>
31416 <param name=
"y" type=
"double" default=
""/>
31419 <method name=
"base_OnDelete" type=
"" overloaded=
"no">
31420 <autodoc>base_OnDelete()
</autodoc>
31422 <method name=
"base_OnDraw" type=
"" overloaded=
"no">
31423 <autodoc>base_OnDraw(DC dc)
</autodoc>
31425 <param name=
"dc" type=
"DC" default=
""/>
31428 <method name=
"base_OnDrawContents" type=
"" overloaded=
"no">
31429 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
31431 <param name=
"dc" type=
"DC" default=
""/>
31434 <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no">
31435 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
31437 <param name=
"dc" type=
"DC" default=
""/>
31438 <param name=
"erase" type=
"bool" default=
"FALSE"/>
31441 <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no">
31442 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
31444 <param name=
"dc" type=
"DC" default=
""/>
31447 <method name=
"base_OnErase" type=
"" overloaded=
"no">
31448 <autodoc>base_OnErase(DC dc)
</autodoc>
31450 <param name=
"dc" type=
"DC" default=
""/>
31453 <method name=
"base_OnEraseContents" type=
"" overloaded=
"no">
31454 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
31456 <param name=
"dc" type=
"DC" default=
""/>
31459 <method name=
"base_OnHighlight" type=
"" overloaded=
"no">
31460 <autodoc>base_OnHighlight(DC dc)
</autodoc>
31462 <param name=
"dc" type=
"DC" default=
""/>
31465 <method name=
"base_OnLeftClick" type=
"" overloaded=
"no">
31466 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31468 <param name=
"x" type=
"double" default=
""/>
31469 <param name=
"y" type=
"double" default=
""/>
31470 <param name=
"keys" type=
"int" default=
"0"/>
31471 <param name=
"attachment" type=
"int" default=
"0"/>
31474 <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no">
31475 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31477 <param name=
"x" type=
"double" default=
""/>
31478 <param name=
"y" type=
"double" default=
""/>
31479 <param name=
"keys" type=
"int" default=
"0"/>
31480 <param name=
"attachment" type=
"int" default=
"0"/>
31483 <method name=
"base_OnRightClick" type=
"" overloaded=
"no">
31484 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31486 <param name=
"x" type=
"double" default=
""/>
31487 <param name=
"y" type=
"double" default=
""/>
31488 <param name=
"keys" type=
"int" default=
"0"/>
31489 <param name=
"attachment" type=
"int" default=
"0"/>
31492 <method name=
"base_OnSize" type=
"" overloaded=
"no">
31493 <autodoc>base_OnSize(double x, double y)
</autodoc>
31495 <param name=
"x" type=
"double" default=
""/>
31496 <param name=
"y" type=
"double" default=
""/>
31499 <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no">
31500 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
31501 bool display=True) -
> bool
</autodoc>
31503 <param name=
"dc" type=
"DC" default=
""/>
31504 <param name=
"x" type=
"double" default=
""/>
31505 <param name=
"y" type=
"double" default=
""/>
31506 <param name=
"old_x" type=
"double" default=
""/>
31507 <param name=
"old_y" type=
"double" default=
""/>
31508 <param name=
"display" type=
"bool" default=
"True"/>
31511 <method name=
"base_OnMovePost" type=
"" overloaded=
"no">
31512 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
31513 bool display=True)
</autodoc>
31515 <param name=
"dc" type=
"DC" default=
""/>
31516 <param name=
"x" type=
"double" default=
""/>
31517 <param name=
"y" type=
"double" default=
""/>
31518 <param name=
"old_x" type=
"double" default=
""/>
31519 <param name=
"old_y" type=
"double" default=
""/>
31520 <param name=
"display" type=
"bool" default=
"True"/>
31523 <method name=
"base_OnDragLeft" type=
"" overloaded=
"no">
31524 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31526 <param name=
"draw" type=
"bool" default=
""/>
31527 <param name=
"x" type=
"double" default=
""/>
31528 <param name=
"y" type=
"double" default=
""/>
31529 <param name=
"keys" type=
"int" default=
"0"/>
31530 <param name=
"attachment" type=
"int" default=
"0"/>
31533 <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no">
31534 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31536 <param name=
"x" type=
"double" default=
""/>
31537 <param name=
"y" type=
"double" default=
""/>
31538 <param name=
"keys" type=
"int" default=
"0"/>
31539 <param name=
"attachment" type=
"int" default=
"0"/>
31542 <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no">
31543 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31545 <param name=
"x" type=
"double" default=
""/>
31546 <param name=
"y" type=
"double" default=
""/>
31547 <param name=
"keys" type=
"int" default=
"0"/>
31548 <param name=
"attachment" type=
"int" default=
"0"/>
31551 <method name=
"base_OnDragRight" type=
"" overloaded=
"no">
31552 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31554 <param name=
"draw" type=
"bool" default=
""/>
31555 <param name=
"x" type=
"double" default=
""/>
31556 <param name=
"y" type=
"double" default=
""/>
31557 <param name=
"keys" type=
"int" default=
"0"/>
31558 <param name=
"attachment" type=
"int" default=
"0"/>
31561 <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no">
31562 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31564 <param name=
"x" type=
"double" default=
""/>
31565 <param name=
"y" type=
"double" default=
""/>
31566 <param name=
"keys" type=
"int" default=
"0"/>
31567 <param name=
"attachment" type=
"int" default=
"0"/>
31570 <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no">
31571 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31573 <param name=
"x" type=
"double" default=
""/>
31574 <param name=
"y" type=
"double" default=
""/>
31575 <param name=
"keys" type=
"int" default=
"0"/>
31576 <param name=
"attachment" type=
"int" default=
"0"/>
31579 <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no">
31580 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
31582 <param name=
"dc" type=
"DC" default=
""/>
31583 <param name=
"x" type=
"double" default=
""/>
31584 <param name=
"y" type=
"double" default=
""/>
31585 <param name=
"w" type=
"double" default=
""/>
31586 <param name=
"h" type=
"double" default=
""/>
31589 <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no">
31590 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
31592 <param name=
"dc" type=
"DC" default=
""/>
31595 <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no">
31596 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
31598 <param name=
"dc" type=
"DC" default=
""/>
31601 <method name=
"base_OnMoveLink" type=
"" overloaded=
"no">
31602 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
31604 <param name=
"dc" type=
"DC" default=
""/>
31605 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
31608 <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no">
31609 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
31610 int attachment=
0)
</autodoc>
31612 <param name=
"pt" type=
"PyControlPoint" default=
""/>
31613 <param name=
"draw" type=
"bool" default=
""/>
31614 <param name=
"x" type=
"double" default=
""/>
31615 <param name=
"y" type=
"double" default=
""/>
31616 <param name=
"keys" type=
"int" default=
"0"/>
31617 <param name=
"attachment" type=
"int" default=
"0"/>
31620 <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no">
31621 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
31622 int attachment=
0)
</autodoc>
31624 <param name=
"pt" type=
"PyControlPoint" default=
""/>
31625 <param name=
"x" type=
"double" default=
""/>
31626 <param name=
"y" type=
"double" default=
""/>
31627 <param name=
"keys" type=
"int" default=
"0"/>
31628 <param name=
"attachment" type=
"int" default=
"0"/>
31631 <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no">
31632 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
31633 int attachment=
0)
</autodoc>
31635 <param name=
"pt" type=
"PyControlPoint" default=
""/>
31636 <param name=
"x" type=
"double" default=
""/>
31637 <param name=
"y" type=
"double" default=
""/>
31638 <param name=
"keys" type=
"int" default=
"0"/>
31639 <param name=
"attachment" type=
"int" default=
"0"/>
31642 <method name=
"base_OnBeginSize" type=
"" overloaded=
"no">
31643 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
31645 <param name=
"w" type=
"double" default=
""/>
31646 <param name=
"h" type=
"double" default=
""/>
31649 <method name=
"base_OnEndSize" type=
"" overloaded=
"no">
31650 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
31652 <param name=
"w" type=
"double" default=
""/>
31653 <param name=
"h" type=
"double" default=
""/>
31657 <class name=
"OGLConstraint" oldname=
"wxOGLConstraint" module=
"ogl">
31658 <baseclass name=
"Object"/>
31659 <constructor name=
"OGLConstraint" overloaded=
"no">
31660 <autodoc>__init__(int type, PyShape constraining, PyObject constrained) -
> OGLConstraint
</autodoc>
31662 <param name=
"type" type=
"int" default=
""/>
31663 <param name=
"constraining" type=
"PyShape" default=
""/>
31664 <param name=
"constrained" type=
"PyObject" default=
""/>
31667 <method name=
"Evaluate" type=
"bool" overloaded=
"no">
31668 <autodoc>Evaluate() -
> bool
</autodoc>
31670 <method name=
"SetSpacing" type=
"" overloaded=
"no">
31671 <autodoc>SetSpacing(double x, double y)
</autodoc>
31673 <param name=
"x" type=
"double" default=
""/>
31674 <param name=
"y" type=
"double" default=
""/>
31677 <method name=
"Equals" type=
"bool" overloaded=
"no">
31678 <autodoc>Equals(double a, double b) -
> bool
</autodoc>
31680 <param name=
"a" type=
"double" default=
""/>
31681 <param name=
"b" type=
"double" default=
""/>
31685 <class name=
"PyCompositeShape" oldname=
"wxPyCompositeShape" module=
"ogl">
31686 <baseclass name=
"PyRectangleShape"/>
31687 <constructor name=
"PyCompositeShape" overloaded=
"no">
31688 <autodoc>__init__() -
> PyCompositeShape
</autodoc>
31690 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
31691 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
31693 <param name=
"self" type=
"PyObject" default=
""/>
31694 <param name=
"_class" type=
"PyObject" default=
""/>
31697 <method name=
"AddChild" type=
"" overloaded=
"no">
31698 <autodoc>AddChild(PyShape child, PyShape addAfter=None)
</autodoc>
31700 <param name=
"child" type=
"PyShape" default=
""/>
31701 <param name=
"addAfter" type=
"PyShape" default=
"NULL"/>
31704 <method name=
"AddConstraint" type=
"OGLConstraint" overloaded=
"no">
31705 <autodoc>AddConstraint(OGLConstraint constraint) -
> OGLConstraint
</autodoc>
31707 <param name=
"constraint" type=
"OGLConstraint" default=
""/>
31710 <method name=
"AddConstrainedShapes" type=
"OGLConstraint" overloaded=
"no">
31711 <autodoc>AddConstrainedShapes(int type, PyShape constraining, PyObject constrained) -
> OGLConstraint
</autodoc>
31713 <param name=
"type" type=
"int" default=
""/>
31714 <param name=
"constraining" type=
"PyShape" default=
""/>
31715 <param name=
"constrained" type=
"PyObject" default=
""/>
31718 <method name=
"AddSimpleConstraint" type=
"OGLConstraint" overloaded=
"no">
31719 <autodoc>AddSimpleConstraint(int type, PyShape constraining, PyShape constrained) -
> OGLConstraint
</autodoc>
31721 <param name=
"type" type=
"int" default=
""/>
31722 <param name=
"constraining" type=
"PyShape" default=
""/>
31723 <param name=
"constrained" type=
"PyShape" default=
""/>
31726 <method name=
"CalculateSize" type=
"" overloaded=
"no">
31727 <autodoc>CalculateSize()
</autodoc>
31729 <method name=
"ContainsDivision" type=
"bool" overloaded=
"no">
31730 <autodoc>ContainsDivision(PyDivisionShape division) -
> bool
</autodoc>
31732 <param name=
"division" type=
"wxPyDivisionShape" default=
""/>
31735 <method name=
"DeleteConstraint" type=
"" overloaded=
"no">
31736 <autodoc>DeleteConstraint(OGLConstraint constraint)
</autodoc>
31738 <param name=
"constraint" type=
"OGLConstraint" default=
""/>
31741 <method name=
"DeleteConstraintsInvolvingChild" type=
"" overloaded=
"no">
31742 <autodoc>DeleteConstraintsInvolvingChild(PyShape child)
</autodoc>
31744 <param name=
"child" type=
"PyShape" default=
""/>
31747 <method name=
"FindContainerImage" type=
"PyShape" overloaded=
"no">
31748 <autodoc>FindContainerImage() -
> PyShape
</autodoc>
31750 <method name=
"GetConstraints" type=
"PyObject" overloaded=
"no">
31751 <autodoc>GetConstraints() -
> PyObject
</autodoc>
31753 <method name=
"GetDivisions" type=
"PyObject" overloaded=
"no">
31754 <autodoc>GetDivisions() -
> PyObject
</autodoc>
31756 <method name=
"MakeContainer" type=
"" overloaded=
"no">
31757 <autodoc>MakeContainer()
</autodoc>
31759 <method name=
"Recompute" type=
"bool" overloaded=
"no">
31760 <autodoc>Recompute() -
> bool
</autodoc>
31762 <method name=
"RemoveChild" type=
"" overloaded=
"no">
31763 <autodoc>RemoveChild(PyShape child)
</autodoc>
31765 <param name=
"child" type=
"PyShape" default=
""/>
31768 <method name=
"base_OnDelete" type=
"" overloaded=
"no">
31769 <autodoc>base_OnDelete()
</autodoc>
31771 <method name=
"base_OnDraw" type=
"" overloaded=
"no">
31772 <autodoc>base_OnDraw(DC dc)
</autodoc>
31774 <param name=
"dc" type=
"DC" default=
""/>
31777 <method name=
"base_OnDrawContents" type=
"" overloaded=
"no">
31778 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
31780 <param name=
"dc" type=
"DC" default=
""/>
31783 <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no">
31784 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
31786 <param name=
"dc" type=
"DC" default=
""/>
31787 <param name=
"erase" type=
"bool" default=
"FALSE"/>
31790 <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no">
31791 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
31793 <param name=
"dc" type=
"DC" default=
""/>
31796 <method name=
"base_OnErase" type=
"" overloaded=
"no">
31797 <autodoc>base_OnErase(DC dc)
</autodoc>
31799 <param name=
"dc" type=
"DC" default=
""/>
31802 <method name=
"base_OnEraseContents" type=
"" overloaded=
"no">
31803 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
31805 <param name=
"dc" type=
"DC" default=
""/>
31808 <method name=
"base_OnHighlight" type=
"" overloaded=
"no">
31809 <autodoc>base_OnHighlight(DC dc)
</autodoc>
31811 <param name=
"dc" type=
"DC" default=
""/>
31814 <method name=
"base_OnLeftClick" type=
"" overloaded=
"no">
31815 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31817 <param name=
"x" type=
"double" default=
""/>
31818 <param name=
"y" type=
"double" default=
""/>
31819 <param name=
"keys" type=
"int" default=
"0"/>
31820 <param name=
"attachment" type=
"int" default=
"0"/>
31823 <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no">
31824 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31826 <param name=
"x" type=
"double" default=
""/>
31827 <param name=
"y" type=
"double" default=
""/>
31828 <param name=
"keys" type=
"int" default=
"0"/>
31829 <param name=
"attachment" type=
"int" default=
"0"/>
31832 <method name=
"base_OnRightClick" type=
"" overloaded=
"no">
31833 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31835 <param name=
"x" type=
"double" default=
""/>
31836 <param name=
"y" type=
"double" default=
""/>
31837 <param name=
"keys" type=
"int" default=
"0"/>
31838 <param name=
"attachment" type=
"int" default=
"0"/>
31841 <method name=
"base_OnSize" type=
"" overloaded=
"no">
31842 <autodoc>base_OnSize(double x, double y)
</autodoc>
31844 <param name=
"x" type=
"double" default=
""/>
31845 <param name=
"y" type=
"double" default=
""/>
31848 <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no">
31849 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
31850 bool display=True) -
> bool
</autodoc>
31852 <param name=
"dc" type=
"DC" default=
""/>
31853 <param name=
"x" type=
"double" default=
""/>
31854 <param name=
"y" type=
"double" default=
""/>
31855 <param name=
"old_x" type=
"double" default=
""/>
31856 <param name=
"old_y" type=
"double" default=
""/>
31857 <param name=
"display" type=
"bool" default=
"True"/>
31860 <method name=
"base_OnMovePost" type=
"" overloaded=
"no">
31861 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
31862 bool display=True)
</autodoc>
31864 <param name=
"dc" type=
"DC" default=
""/>
31865 <param name=
"x" type=
"double" default=
""/>
31866 <param name=
"y" type=
"double" default=
""/>
31867 <param name=
"old_x" type=
"double" default=
""/>
31868 <param name=
"old_y" type=
"double" default=
""/>
31869 <param name=
"display" type=
"bool" default=
"True"/>
31872 <method name=
"base_OnDragLeft" type=
"" overloaded=
"no">
31873 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31875 <param name=
"draw" type=
"bool" default=
""/>
31876 <param name=
"x" type=
"double" default=
""/>
31877 <param name=
"y" type=
"double" default=
""/>
31878 <param name=
"keys" type=
"int" default=
"0"/>
31879 <param name=
"attachment" type=
"int" default=
"0"/>
31882 <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no">
31883 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31885 <param name=
"x" type=
"double" default=
""/>
31886 <param name=
"y" type=
"double" default=
""/>
31887 <param name=
"keys" type=
"int" default=
"0"/>
31888 <param name=
"attachment" type=
"int" default=
"0"/>
31891 <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no">
31892 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31894 <param name=
"x" type=
"double" default=
""/>
31895 <param name=
"y" type=
"double" default=
""/>
31896 <param name=
"keys" type=
"int" default=
"0"/>
31897 <param name=
"attachment" type=
"int" default=
"0"/>
31900 <method name=
"base_OnDragRight" type=
"" overloaded=
"no">
31901 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31903 <param name=
"draw" type=
"bool" default=
""/>
31904 <param name=
"x" type=
"double" default=
""/>
31905 <param name=
"y" type=
"double" default=
""/>
31906 <param name=
"keys" type=
"int" default=
"0"/>
31907 <param name=
"attachment" type=
"int" default=
"0"/>
31910 <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no">
31911 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31913 <param name=
"x" type=
"double" default=
""/>
31914 <param name=
"y" type=
"double" default=
""/>
31915 <param name=
"keys" type=
"int" default=
"0"/>
31916 <param name=
"attachment" type=
"int" default=
"0"/>
31919 <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no">
31920 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31922 <param name=
"x" type=
"double" default=
""/>
31923 <param name=
"y" type=
"double" default=
""/>
31924 <param name=
"keys" type=
"int" default=
"0"/>
31925 <param name=
"attachment" type=
"int" default=
"0"/>
31928 <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no">
31929 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
31931 <param name=
"dc" type=
"DC" default=
""/>
31932 <param name=
"x" type=
"double" default=
""/>
31933 <param name=
"y" type=
"double" default=
""/>
31934 <param name=
"w" type=
"double" default=
""/>
31935 <param name=
"h" type=
"double" default=
""/>
31938 <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no">
31939 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
31941 <param name=
"dc" type=
"DC" default=
""/>
31944 <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no">
31945 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
31947 <param name=
"dc" type=
"DC" default=
""/>
31950 <method name=
"base_OnMoveLink" type=
"" overloaded=
"no">
31951 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
31953 <param name=
"dc" type=
"DC" default=
""/>
31954 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
31957 <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no">
31958 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
31959 int attachment=
0)
</autodoc>
31961 <param name=
"pt" type=
"PyControlPoint" default=
""/>
31962 <param name=
"draw" type=
"bool" default=
""/>
31963 <param name=
"x" type=
"double" default=
""/>
31964 <param name=
"y" type=
"double" default=
""/>
31965 <param name=
"keys" type=
"int" default=
"0"/>
31966 <param name=
"attachment" type=
"int" default=
"0"/>
31969 <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no">
31970 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
31971 int attachment=
0)
</autodoc>
31973 <param name=
"pt" type=
"PyControlPoint" default=
""/>
31974 <param name=
"x" type=
"double" default=
""/>
31975 <param name=
"y" type=
"double" default=
""/>
31976 <param name=
"keys" type=
"int" default=
"0"/>
31977 <param name=
"attachment" type=
"int" default=
"0"/>
31980 <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no">
31981 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
31982 int attachment=
0)
</autodoc>
31984 <param name=
"pt" type=
"PyControlPoint" default=
""/>
31985 <param name=
"x" type=
"double" default=
""/>
31986 <param name=
"y" type=
"double" default=
""/>
31987 <param name=
"keys" type=
"int" default=
"0"/>
31988 <param name=
"attachment" type=
"int" default=
"0"/>
31991 <method name=
"base_OnBeginSize" type=
"" overloaded=
"no">
31992 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
31994 <param name=
"w" type=
"double" default=
""/>
31995 <param name=
"h" type=
"double" default=
""/>
31998 <method name=
"base_OnEndSize" type=
"" overloaded=
"no">
31999 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
32001 <param name=
"w" type=
"double" default=
""/>
32002 <param name=
"h" type=
"double" default=
""/>
32006 <class name=
"PyDividedShape" oldname=
"wxPyDividedShape" module=
"ogl">
32007 <baseclass name=
"PyRectangleShape"/>
32008 <constructor name=
"PyDividedShape" overloaded=
"no">
32009 <autodoc>__init__(double width=
0.0, double height=
0.0) -
> PyDividedShape
</autodoc>
32011 <param name=
"width" type=
"double" default=
"0.0"/>
32012 <param name=
"height" type=
"double" default=
"0.0"/>
32015 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
32016 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
32018 <param name=
"self" type=
"PyObject" default=
""/>
32019 <param name=
"_class" type=
"PyObject" default=
""/>
32022 <method name=
"EditRegions" type=
"" overloaded=
"no">
32023 <autodoc>EditRegions()
</autodoc>
32025 <method name=
"SetRegionSizes" type=
"" overloaded=
"no">
32026 <autodoc>SetRegionSizes()
</autodoc>
32028 <method name=
"base_OnDelete" type=
"" overloaded=
"no">
32029 <autodoc>base_OnDelete()
</autodoc>
32031 <method name=
"base_OnDraw" type=
"" overloaded=
"no">
32032 <autodoc>base_OnDraw(DC dc)
</autodoc>
32034 <param name=
"dc" type=
"DC" default=
""/>
32037 <method name=
"base_OnDrawContents" type=
"" overloaded=
"no">
32038 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
32040 <param name=
"dc" type=
"DC" default=
""/>
32043 <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no">
32044 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
32046 <param name=
"dc" type=
"DC" default=
""/>
32047 <param name=
"erase" type=
"bool" default=
"FALSE"/>
32050 <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no">
32051 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
32053 <param name=
"dc" type=
"DC" default=
""/>
32056 <method name=
"base_OnErase" type=
"" overloaded=
"no">
32057 <autodoc>base_OnErase(DC dc)
</autodoc>
32059 <param name=
"dc" type=
"DC" default=
""/>
32062 <method name=
"base_OnEraseContents" type=
"" overloaded=
"no">
32063 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
32065 <param name=
"dc" type=
"DC" default=
""/>
32068 <method name=
"base_OnHighlight" type=
"" overloaded=
"no">
32069 <autodoc>base_OnHighlight(DC dc)
</autodoc>
32071 <param name=
"dc" type=
"DC" default=
""/>
32074 <method name=
"base_OnLeftClick" type=
"" overloaded=
"no">
32075 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32077 <param name=
"x" type=
"double" default=
""/>
32078 <param name=
"y" type=
"double" default=
""/>
32079 <param name=
"keys" type=
"int" default=
"0"/>
32080 <param name=
"attachment" type=
"int" default=
"0"/>
32083 <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no">
32084 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32086 <param name=
"x" type=
"double" default=
""/>
32087 <param name=
"y" type=
"double" default=
""/>
32088 <param name=
"keys" type=
"int" default=
"0"/>
32089 <param name=
"attachment" type=
"int" default=
"0"/>
32092 <method name=
"base_OnRightClick" type=
"" overloaded=
"no">
32093 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32095 <param name=
"x" type=
"double" default=
""/>
32096 <param name=
"y" type=
"double" default=
""/>
32097 <param name=
"keys" type=
"int" default=
"0"/>
32098 <param name=
"attachment" type=
"int" default=
"0"/>
32101 <method name=
"base_OnSize" type=
"" overloaded=
"no">
32102 <autodoc>base_OnSize(double x, double y)
</autodoc>
32104 <param name=
"x" type=
"double" default=
""/>
32105 <param name=
"y" type=
"double" default=
""/>
32108 <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no">
32109 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
32110 bool display=True) -
> bool
</autodoc>
32112 <param name=
"dc" type=
"DC" default=
""/>
32113 <param name=
"x" type=
"double" default=
""/>
32114 <param name=
"y" type=
"double" default=
""/>
32115 <param name=
"old_x" type=
"double" default=
""/>
32116 <param name=
"old_y" type=
"double" default=
""/>
32117 <param name=
"display" type=
"bool" default=
"True"/>
32120 <method name=
"base_OnMovePost" type=
"" overloaded=
"no">
32121 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
32122 bool display=True)
</autodoc>
32124 <param name=
"dc" type=
"DC" default=
""/>
32125 <param name=
"x" type=
"double" default=
""/>
32126 <param name=
"y" type=
"double" default=
""/>
32127 <param name=
"old_x" type=
"double" default=
""/>
32128 <param name=
"old_y" type=
"double" default=
""/>
32129 <param name=
"display" type=
"bool" default=
"True"/>
32132 <method name=
"base_OnDragLeft" type=
"" overloaded=
"no">
32133 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32135 <param name=
"draw" type=
"bool" default=
""/>
32136 <param name=
"x" type=
"double" default=
""/>
32137 <param name=
"y" type=
"double" default=
""/>
32138 <param name=
"keys" type=
"int" default=
"0"/>
32139 <param name=
"attachment" type=
"int" default=
"0"/>
32142 <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no">
32143 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32145 <param name=
"x" type=
"double" default=
""/>
32146 <param name=
"y" type=
"double" default=
""/>
32147 <param name=
"keys" type=
"int" default=
"0"/>
32148 <param name=
"attachment" type=
"int" default=
"0"/>
32151 <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no">
32152 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32154 <param name=
"x" type=
"double" default=
""/>
32155 <param name=
"y" type=
"double" default=
""/>
32156 <param name=
"keys" type=
"int" default=
"0"/>
32157 <param name=
"attachment" type=
"int" default=
"0"/>
32160 <method name=
"base_OnDragRight" type=
"" overloaded=
"no">
32161 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32163 <param name=
"draw" type=
"bool" default=
""/>
32164 <param name=
"x" type=
"double" default=
""/>
32165 <param name=
"y" type=
"double" default=
""/>
32166 <param name=
"keys" type=
"int" default=
"0"/>
32167 <param name=
"attachment" type=
"int" default=
"0"/>
32170 <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no">
32171 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32173 <param name=
"x" type=
"double" default=
""/>
32174 <param name=
"y" type=
"double" default=
""/>
32175 <param name=
"keys" type=
"int" default=
"0"/>
32176 <param name=
"attachment" type=
"int" default=
"0"/>
32179 <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no">
32180 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32182 <param name=
"x" type=
"double" default=
""/>
32183 <param name=
"y" type=
"double" default=
""/>
32184 <param name=
"keys" type=
"int" default=
"0"/>
32185 <param name=
"attachment" type=
"int" default=
"0"/>
32188 <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no">
32189 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
32191 <param name=
"dc" type=
"DC" default=
""/>
32192 <param name=
"x" type=
"double" default=
""/>
32193 <param name=
"y" type=
"double" default=
""/>
32194 <param name=
"w" type=
"double" default=
""/>
32195 <param name=
"h" type=
"double" default=
""/>
32198 <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no">
32199 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
32201 <param name=
"dc" type=
"DC" default=
""/>
32204 <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no">
32205 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
32207 <param name=
"dc" type=
"DC" default=
""/>
32210 <method name=
"base_OnMoveLink" type=
"" overloaded=
"no">
32211 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
32213 <param name=
"dc" type=
"DC" default=
""/>
32214 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
32217 <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no">
32218 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
32219 int attachment=
0)
</autodoc>
32221 <param name=
"pt" type=
"PyControlPoint" default=
""/>
32222 <param name=
"draw" type=
"bool" default=
""/>
32223 <param name=
"x" type=
"double" default=
""/>
32224 <param name=
"y" type=
"double" default=
""/>
32225 <param name=
"keys" type=
"int" default=
"0"/>
32226 <param name=
"attachment" type=
"int" default=
"0"/>
32229 <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no">
32230 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
32231 int attachment=
0)
</autodoc>
32233 <param name=
"pt" type=
"PyControlPoint" default=
""/>
32234 <param name=
"x" type=
"double" default=
""/>
32235 <param name=
"y" type=
"double" default=
""/>
32236 <param name=
"keys" type=
"int" default=
"0"/>
32237 <param name=
"attachment" type=
"int" default=
"0"/>
32240 <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no">
32241 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
32242 int attachment=
0)
</autodoc>
32244 <param name=
"pt" type=
"PyControlPoint" default=
""/>
32245 <param name=
"x" type=
"double" default=
""/>
32246 <param name=
"y" type=
"double" default=
""/>
32247 <param name=
"keys" type=
"int" default=
"0"/>
32248 <param name=
"attachment" type=
"int" default=
"0"/>
32251 <method name=
"base_OnBeginSize" type=
"" overloaded=
"no">
32252 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
32254 <param name=
"w" type=
"double" default=
""/>
32255 <param name=
"h" type=
"double" default=
""/>
32258 <method name=
"base_OnEndSize" type=
"" overloaded=
"no">
32259 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
32261 <param name=
"w" type=
"double" default=
""/>
32262 <param name=
"h" type=
"double" default=
""/>
32266 <class name=
"PyDivisionShape" oldname=
"wxPyDivisionShape" module=
"ogl">
32267 <baseclass name=
"PyCompositeShape"/>
32268 <constructor name=
"PyDivisionShape" overloaded=
"no">
32269 <autodoc>__init__() -
> PyDivisionShape
</autodoc>
32271 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
32272 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
32274 <param name=
"self" type=
"PyObject" default=
""/>
32275 <param name=
"_class" type=
"PyObject" default=
""/>
32278 <method name=
"AdjustBottom" type=
"" overloaded=
"no">
32279 <autodoc>AdjustBottom(double bottom, bool test)
</autodoc>
32281 <param name=
"bottom" type=
"double" default=
""/>
32282 <param name=
"test" type=
"bool" default=
""/>
32285 <method name=
"AdjustLeft" type=
"" overloaded=
"no">
32286 <autodoc>AdjustLeft(double left, bool test)
</autodoc>
32288 <param name=
"left" type=
"double" default=
""/>
32289 <param name=
"test" type=
"bool" default=
""/>
32292 <method name=
"AdjustRight" type=
"" overloaded=
"no">
32293 <autodoc>AdjustRight(double right, bool test)
</autodoc>
32295 <param name=
"right" type=
"double" default=
""/>
32296 <param name=
"test" type=
"bool" default=
""/>
32299 <method name=
"AdjustTop" type=
"" overloaded=
"no">
32300 <autodoc>AdjustTop(double top, bool test)
</autodoc>
32302 <param name=
"top" type=
"double" default=
""/>
32303 <param name=
"test" type=
"bool" default=
""/>
32306 <method name=
"Divide" type=
"" overloaded=
"no">
32307 <autodoc>Divide(int direction)
</autodoc>
32309 <param name=
"direction" type=
"int" default=
""/>
32312 <method name=
"EditEdge" type=
"" overloaded=
"no">
32313 <autodoc>EditEdge(int side)
</autodoc>
32315 <param name=
"side" type=
"int" default=
""/>
32318 <method name=
"GetBottomSide" type=
"PyDivisionShape" overloaded=
"no">
32319 <autodoc>GetBottomSide() -
> PyDivisionShape
</autodoc>
32321 <method name=
"GetHandleSide" type=
"int" overloaded=
"no">
32322 <autodoc>GetHandleSide() -
> int
</autodoc>
32324 <method name=
"GetLeftSide" type=
"PyDivisionShape" overloaded=
"no">
32325 <autodoc>GetLeftSide() -
> PyDivisionShape
</autodoc>
32327 <method name=
"GetLeftSideColour" type=
"String" overloaded=
"no">
32328 <autodoc>GetLeftSideColour() -
> String
</autodoc>
32330 <method name=
"GetLeftSidePen" type=
"Pen" overloaded=
"no">
32331 <autodoc>GetLeftSidePen() -
> wxPen
</autodoc>
32333 <method name=
"GetRightSide" type=
"PyDivisionShape" overloaded=
"no">
32334 <autodoc>GetRightSide() -
> PyDivisionShape
</autodoc>
32336 <method name=
"GetTopSide" type=
"PyDivisionShape" overloaded=
"no">
32337 <autodoc>GetTopSide() -
> PyDivisionShape
</autodoc>
32339 <method name=
"GetTopSidePen" type=
"Pen" overloaded=
"no">
32340 <autodoc>GetTopSidePen() -
> wxPen
</autodoc>
32342 <method name=
"ResizeAdjoining" type=
"" overloaded=
"no">
32343 <autodoc>ResizeAdjoining(int side, double newPos, bool test)
</autodoc>
32345 <param name=
"side" type=
"int" default=
""/>
32346 <param name=
"newPos" type=
"double" default=
""/>
32347 <param name=
"test" type=
"bool" default=
""/>
32350 <method name=
"PopupMenu" type=
"" overloaded=
"no">
32351 <autodoc>PopupMenu(double x, double y)
</autodoc>
32353 <param name=
"x" type=
"double" default=
""/>
32354 <param name=
"y" type=
"double" default=
""/>
32357 <method name=
"SetBottomSide" type=
"" overloaded=
"no">
32358 <autodoc>SetBottomSide(PyDivisionShape shape)
</autodoc>
32360 <param name=
"shape" type=
"PyDivisionShape" default=
""/>
32363 <method name=
"SetHandleSide" type=
"" overloaded=
"no">
32364 <autodoc>SetHandleSide(int side)
</autodoc>
32366 <param name=
"side" type=
"int" default=
""/>
32369 <method name=
"SetLeftSide" type=
"" overloaded=
"no">
32370 <autodoc>SetLeftSide(PyDivisionShape shape)
</autodoc>
32372 <param name=
"shape" type=
"PyDivisionShape" default=
""/>
32375 <method name=
"SetLeftSideColour" type=
"" overloaded=
"no">
32376 <autodoc>SetLeftSideColour(String colour)
</autodoc>
32378 <param name=
"colour" type=
"String" default=
""/>
32381 <method name=
"SetLeftSidePen" type=
"" overloaded=
"no">
32382 <autodoc>SetLeftSidePen(wxPen pen)
</autodoc>
32384 <param name=
"pen" type=
"Pen" default=
""/>
32387 <method name=
"SetRightSide" type=
"" overloaded=
"no">
32388 <autodoc>SetRightSide(PyDivisionShape shape)
</autodoc>
32390 <param name=
"shape" type=
"PyDivisionShape" default=
""/>
32393 <method name=
"SetTopSide" type=
"" overloaded=
"no">
32394 <autodoc>SetTopSide(PyDivisionShape shape)
</autodoc>
32396 <param name=
"shape" type=
"PyDivisionShape" default=
""/>
32399 <method name=
"SetTopSideColour" type=
"" overloaded=
"no">
32400 <autodoc>SetTopSideColour(String colour)
</autodoc>
32402 <param name=
"colour" type=
"String" default=
""/>
32405 <method name=
"SetTopSidePen" type=
"" overloaded=
"no">
32406 <autodoc>SetTopSidePen(wxPen pen)
</autodoc>
32408 <param name=
"pen" type=
"Pen" default=
""/>
32411 <method name=
"base_OnDelete" type=
"" overloaded=
"no">
32412 <autodoc>base_OnDelete()
</autodoc>
32414 <method name=
"base_OnDraw" type=
"" overloaded=
"no">
32415 <autodoc>base_OnDraw(DC dc)
</autodoc>
32417 <param name=
"dc" type=
"DC" default=
""/>
32420 <method name=
"base_OnDrawContents" type=
"" overloaded=
"no">
32421 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
32423 <param name=
"dc" type=
"DC" default=
""/>
32426 <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no">
32427 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
32429 <param name=
"dc" type=
"DC" default=
""/>
32430 <param name=
"erase" type=
"bool" default=
"FALSE"/>
32433 <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no">
32434 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
32436 <param name=
"dc" type=
"DC" default=
""/>
32439 <method name=
"base_OnErase" type=
"" overloaded=
"no">
32440 <autodoc>base_OnErase(DC dc)
</autodoc>
32442 <param name=
"dc" type=
"DC" default=
""/>
32445 <method name=
"base_OnEraseContents" type=
"" overloaded=
"no">
32446 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
32448 <param name=
"dc" type=
"DC" default=
""/>
32451 <method name=
"base_OnHighlight" type=
"" overloaded=
"no">
32452 <autodoc>base_OnHighlight(DC dc)
</autodoc>
32454 <param name=
"dc" type=
"DC" default=
""/>
32457 <method name=
"base_OnLeftClick" type=
"" overloaded=
"no">
32458 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32460 <param name=
"x" type=
"double" default=
""/>
32461 <param name=
"y" type=
"double" default=
""/>
32462 <param name=
"keys" type=
"int" default=
"0"/>
32463 <param name=
"attachment" type=
"int" default=
"0"/>
32466 <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no">
32467 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32469 <param name=
"x" type=
"double" default=
""/>
32470 <param name=
"y" type=
"double" default=
""/>
32471 <param name=
"keys" type=
"int" default=
"0"/>
32472 <param name=
"attachment" type=
"int" default=
"0"/>
32475 <method name=
"base_OnRightClick" type=
"" overloaded=
"no">
32476 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32478 <param name=
"x" type=
"double" default=
""/>
32479 <param name=
"y" type=
"double" default=
""/>
32480 <param name=
"keys" type=
"int" default=
"0"/>
32481 <param name=
"attachment" type=
"int" default=
"0"/>
32484 <method name=
"base_OnSize" type=
"" overloaded=
"no">
32485 <autodoc>base_OnSize(double x, double y)
</autodoc>
32487 <param name=
"x" type=
"double" default=
""/>
32488 <param name=
"y" type=
"double" default=
""/>
32491 <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no">
32492 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
32493 bool display=True) -
> bool
</autodoc>
32495 <param name=
"dc" type=
"DC" default=
""/>
32496 <param name=
"x" type=
"double" default=
""/>
32497 <param name=
"y" type=
"double" default=
""/>
32498 <param name=
"old_x" type=
"double" default=
""/>
32499 <param name=
"old_y" type=
"double" default=
""/>
32500 <param name=
"display" type=
"bool" default=
"True"/>
32503 <method name=
"base_OnMovePost" type=
"" overloaded=
"no">
32504 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
32505 bool display=True)
</autodoc>
32507 <param name=
"dc" type=
"DC" default=
""/>
32508 <param name=
"x" type=
"double" default=
""/>
32509 <param name=
"y" type=
"double" default=
""/>
32510 <param name=
"old_x" type=
"double" default=
""/>
32511 <param name=
"old_y" type=
"double" default=
""/>
32512 <param name=
"display" type=
"bool" default=
"True"/>
32515 <method name=
"base_OnDragLeft" type=
"" overloaded=
"no">
32516 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32518 <param name=
"draw" type=
"bool" default=
""/>
32519 <param name=
"x" type=
"double" default=
""/>
32520 <param name=
"y" type=
"double" default=
""/>
32521 <param name=
"keys" type=
"int" default=
"0"/>
32522 <param name=
"attachment" type=
"int" default=
"0"/>
32525 <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no">
32526 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32528 <param name=
"x" type=
"double" default=
""/>
32529 <param name=
"y" type=
"double" default=
""/>
32530 <param name=
"keys" type=
"int" default=
"0"/>
32531 <param name=
"attachment" type=
"int" default=
"0"/>
32534 <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no">
32535 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32537 <param name=
"x" type=
"double" default=
""/>
32538 <param name=
"y" type=
"double" default=
""/>
32539 <param name=
"keys" type=
"int" default=
"0"/>
32540 <param name=
"attachment" type=
"int" default=
"0"/>
32543 <method name=
"base_OnDragRight" type=
"" overloaded=
"no">
32544 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32546 <param name=
"draw" type=
"bool" default=
""/>
32547 <param name=
"x" type=
"double" default=
""/>
32548 <param name=
"y" type=
"double" default=
""/>
32549 <param name=
"keys" type=
"int" default=
"0"/>
32550 <param name=
"attachment" type=
"int" default=
"0"/>
32553 <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no">
32554 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32556 <param name=
"x" type=
"double" default=
""/>
32557 <param name=
"y" type=
"double" default=
""/>
32558 <param name=
"keys" type=
"int" default=
"0"/>
32559 <param name=
"attachment" type=
"int" default=
"0"/>
32562 <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no">
32563 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32565 <param name=
"x" type=
"double" default=
""/>
32566 <param name=
"y" type=
"double" default=
""/>
32567 <param name=
"keys" type=
"int" default=
"0"/>
32568 <param name=
"attachment" type=
"int" default=
"0"/>
32571 <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no">
32572 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
32574 <param name=
"dc" type=
"DC" default=
""/>
32575 <param name=
"x" type=
"double" default=
""/>
32576 <param name=
"y" type=
"double" default=
""/>
32577 <param name=
"w" type=
"double" default=
""/>
32578 <param name=
"h" type=
"double" default=
""/>
32581 <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no">
32582 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
32584 <param name=
"dc" type=
"DC" default=
""/>
32587 <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no">
32588 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
32590 <param name=
"dc" type=
"DC" default=
""/>
32593 <method name=
"base_OnMoveLink" type=
"" overloaded=
"no">
32594 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
32596 <param name=
"dc" type=
"DC" default=
""/>
32597 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
32600 <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no">
32601 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
32602 int attachment=
0)
</autodoc>
32604 <param name=
"pt" type=
"PyControlPoint" default=
""/>
32605 <param name=
"draw" type=
"bool" default=
""/>
32606 <param name=
"x" type=
"double" default=
""/>
32607 <param name=
"y" type=
"double" default=
""/>
32608 <param name=
"keys" type=
"int" default=
"0"/>
32609 <param name=
"attachment" type=
"int" default=
"0"/>
32612 <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no">
32613 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
32614 int attachment=
0)
</autodoc>
32616 <param name=
"pt" type=
"PyControlPoint" default=
""/>
32617 <param name=
"x" type=
"double" default=
""/>
32618 <param name=
"y" type=
"double" default=
""/>
32619 <param name=
"keys" type=
"int" default=
"0"/>
32620 <param name=
"attachment" type=
"int" default=
"0"/>
32623 <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no">
32624 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
32625 int attachment=
0)
</autodoc>
32627 <param name=
"pt" type=
"PyControlPoint" default=
""/>
32628 <param name=
"x" type=
"double" default=
""/>
32629 <param name=
"y" type=
"double" default=
""/>
32630 <param name=
"keys" type=
"int" default=
"0"/>
32631 <param name=
"attachment" type=
"int" default=
"0"/>
32634 <method name=
"base_OnBeginSize" type=
"" overloaded=
"no">
32635 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
32637 <param name=
"w" type=
"double" default=
""/>
32638 <param name=
"h" type=
"double" default=
""/>
32641 <method name=
"base_OnEndSize" type=
"" overloaded=
"no">
32642 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
32644 <param name=
"w" type=
"double" default=
""/>
32645 <param name=
"h" type=
"double" default=
""/>
32649 <class name=
"PyEllipseShape" oldname=
"wxPyEllipseShape" module=
"ogl">
32650 <baseclass name=
"PyShape"/>
32651 <constructor name=
"PyEllipseShape" overloaded=
"no">
32652 <autodoc>__init__(double width=
0.0, double height=
0.0) -
> PyEllipseShape
</autodoc>
32654 <param name=
"width" type=
"double" default=
"0.0"/>
32655 <param name=
"height" type=
"double" default=
"0.0"/>
32658 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
32659 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
32661 <param name=
"self" type=
"PyObject" default=
""/>
32662 <param name=
"_class" type=
"PyObject" default=
""/>
32665 <method name=
"base_OnDraw" type=
"" overloaded=
"no">
32666 <autodoc>base_OnDraw(DC dc)
</autodoc>
32668 <param name=
"dc" type=
"DC" default=
""/>
32671 <method name=
"base_OnDrawContents" type=
"" overloaded=
"no">
32672 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
32674 <param name=
"dc" type=
"DC" default=
""/>
32677 <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no">
32678 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
32680 <param name=
"dc" type=
"DC" default=
""/>
32681 <param name=
"erase" type=
"bool" default=
"FALSE"/>
32684 <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no">
32685 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
32687 <param name=
"dc" type=
"DC" default=
""/>
32690 <method name=
"base_OnErase" type=
"" overloaded=
"no">
32691 <autodoc>base_OnErase(DC dc)
</autodoc>
32693 <param name=
"dc" type=
"DC" default=
""/>
32696 <method name=
"base_OnEraseContents" type=
"" overloaded=
"no">
32697 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
32699 <param name=
"dc" type=
"DC" default=
""/>
32702 <method name=
"base_OnHighlight" type=
"" overloaded=
"no">
32703 <autodoc>base_OnHighlight(DC dc)
</autodoc>
32705 <param name=
"dc" type=
"DC" default=
""/>
32708 <method name=
"base_OnLeftClick" type=
"" overloaded=
"no">
32709 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32711 <param name=
"x" type=
"double" default=
""/>
32712 <param name=
"y" type=
"double" default=
""/>
32713 <param name=
"keys" type=
"int" default=
"0"/>
32714 <param name=
"attachment" type=
"int" default=
"0"/>
32717 <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no">
32718 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32720 <param name=
"x" type=
"double" default=
""/>
32721 <param name=
"y" type=
"double" default=
""/>
32722 <param name=
"keys" type=
"int" default=
"0"/>
32723 <param name=
"attachment" type=
"int" default=
"0"/>
32726 <method name=
"base_OnRightClick" type=
"" overloaded=
"no">
32727 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32729 <param name=
"x" type=
"double" default=
""/>
32730 <param name=
"y" type=
"double" default=
""/>
32731 <param name=
"keys" type=
"int" default=
"0"/>
32732 <param name=
"attachment" type=
"int" default=
"0"/>
32735 <method name=
"base_OnSize" type=
"" overloaded=
"no">
32736 <autodoc>base_OnSize(double x, double y)
</autodoc>
32738 <param name=
"x" type=
"double" default=
""/>
32739 <param name=
"y" type=
"double" default=
""/>
32742 <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no">
32743 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
32744 bool display=True) -
> bool
</autodoc>
32746 <param name=
"dc" type=
"DC" default=
""/>
32747 <param name=
"x" type=
"double" default=
""/>
32748 <param name=
"y" type=
"double" default=
""/>
32749 <param name=
"old_x" type=
"double" default=
""/>
32750 <param name=
"old_y" type=
"double" default=
""/>
32751 <param name=
"display" type=
"bool" default=
"True"/>
32754 <method name=
"base_OnMovePost" type=
"" overloaded=
"no">
32755 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
32756 bool display=True)
</autodoc>
32758 <param name=
"dc" type=
"DC" default=
""/>
32759 <param name=
"x" type=
"double" default=
""/>
32760 <param name=
"y" type=
"double" default=
""/>
32761 <param name=
"old_x" type=
"double" default=
""/>
32762 <param name=
"old_y" type=
"double" default=
""/>
32763 <param name=
"display" type=
"bool" default=
"True"/>
32766 <method name=
"base_OnDragLeft" type=
"" overloaded=
"no">
32767 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32769 <param name=
"draw" type=
"bool" default=
""/>
32770 <param name=
"x" type=
"double" default=
""/>
32771 <param name=
"y" type=
"double" default=
""/>
32772 <param name=
"keys" type=
"int" default=
"0"/>
32773 <param name=
"attachment" type=
"int" default=
"0"/>
32776 <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no">
32777 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32779 <param name=
"x" type=
"double" default=
""/>
32780 <param name=
"y" type=
"double" default=
""/>
32781 <param name=
"keys" type=
"int" default=
"0"/>
32782 <param name=
"attachment" type=
"int" default=
"0"/>
32785 <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no">
32786 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32788 <param name=
"x" type=
"double" default=
""/>
32789 <param name=
"y" type=
"double" default=
""/>
32790 <param name=
"keys" type=
"int" default=
"0"/>
32791 <param name=
"attachment" type=
"int" default=
"0"/>
32794 <method name=
"base_OnDragRight" type=
"" overloaded=
"no">
32795 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32797 <param name=
"draw" type=
"bool" default=
""/>
32798 <param name=
"x" type=
"double" default=
""/>
32799 <param name=
"y" type=
"double" default=
""/>
32800 <param name=
"keys" type=
"int" default=
"0"/>
32801 <param name=
"attachment" type=
"int" default=
"0"/>
32804 <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no">
32805 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32807 <param name=
"x" type=
"double" default=
""/>
32808 <param name=
"y" type=
"double" default=
""/>
32809 <param name=
"keys" type=
"int" default=
"0"/>
32810 <param name=
"attachment" type=
"int" default=
"0"/>
32813 <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no">
32814 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32816 <param name=
"x" type=
"double" default=
""/>
32817 <param name=
"y" type=
"double" default=
""/>
32818 <param name=
"keys" type=
"int" default=
"0"/>
32819 <param name=
"attachment" type=
"int" default=
"0"/>
32822 <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no">
32823 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
32825 <param name=
"dc" type=
"DC" default=
""/>
32826 <param name=
"x" type=
"double" default=
""/>
32827 <param name=
"y" type=
"double" default=
""/>
32828 <param name=
"w" type=
"double" default=
""/>
32829 <param name=
"h" type=
"double" default=
""/>
32832 <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no">
32833 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
32835 <param name=
"dc" type=
"DC" default=
""/>
32838 <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no">
32839 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
32841 <param name=
"dc" type=
"DC" default=
""/>
32844 <method name=
"base_OnMoveLink" type=
"" overloaded=
"no">
32845 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
32847 <param name=
"dc" type=
"DC" default=
""/>
32848 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
32851 <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no">
32852 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
32853 int attachment=
0)
</autodoc>
32855 <param name=
"pt" type=
"PyControlPoint" default=
""/>
32856 <param name=
"draw" type=
"bool" default=
""/>
32857 <param name=
"x" type=
"double" default=
""/>
32858 <param name=
"y" type=
"double" default=
""/>
32859 <param name=
"keys" type=
"int" default=
"0"/>
32860 <param name=
"attachment" type=
"int" default=
"0"/>
32863 <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no">
32864 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
32865 int attachment=
0)
</autodoc>
32867 <param name=
"pt" type=
"PyControlPoint" default=
""/>
32868 <param name=
"x" type=
"double" default=
""/>
32869 <param name=
"y" type=
"double" default=
""/>
32870 <param name=
"keys" type=
"int" default=
"0"/>
32871 <param name=
"attachment" type=
"int" default=
"0"/>
32874 <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no">
32875 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
32876 int attachment=
0)
</autodoc>
32878 <param name=
"pt" type=
"PyControlPoint" default=
""/>
32879 <param name=
"x" type=
"double" default=
""/>
32880 <param name=
"y" type=
"double" default=
""/>
32881 <param name=
"keys" type=
"int" default=
"0"/>
32882 <param name=
"attachment" type=
"int" default=
"0"/>
32885 <method name=
"base_OnBeginSize" type=
"" overloaded=
"no">
32886 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
32888 <param name=
"w" type=
"double" default=
""/>
32889 <param name=
"h" type=
"double" default=
""/>
32892 <method name=
"base_OnEndSize" type=
"" overloaded=
"no">
32893 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
32895 <param name=
"w" type=
"double" default=
""/>
32896 <param name=
"h" type=
"double" default=
""/>
32900 <class name=
"PyCircleShape" oldname=
"wxPyCircleShape" module=
"ogl">
32901 <baseclass name=
"PyEllipseShape"/>
32902 <constructor name=
"PyCircleShape" overloaded=
"no">
32903 <autodoc>__init__(double width=
0.0) -
> PyCircleShape
</autodoc>
32905 <param name=
"width" type=
"double" default=
"0.0"/>
32908 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
32909 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
32911 <param name=
"self" type=
"PyObject" default=
""/>
32912 <param name=
"_class" type=
"PyObject" default=
""/>
32915 <method name=
"base_OnDraw" type=
"" overloaded=
"no">
32916 <autodoc>base_OnDraw(DC dc)
</autodoc>
32918 <param name=
"dc" type=
"DC" default=
""/>
32921 <method name=
"base_OnDrawContents" type=
"" overloaded=
"no">
32922 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
32924 <param name=
"dc" type=
"DC" default=
""/>
32927 <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no">
32928 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
32930 <param name=
"dc" type=
"DC" default=
""/>
32931 <param name=
"erase" type=
"bool" default=
"FALSE"/>
32934 <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no">
32935 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
32937 <param name=
"dc" type=
"DC" default=
""/>
32940 <method name=
"base_OnErase" type=
"" overloaded=
"no">
32941 <autodoc>base_OnErase(DC dc)
</autodoc>
32943 <param name=
"dc" type=
"DC" default=
""/>
32946 <method name=
"base_OnEraseContents" type=
"" overloaded=
"no">
32947 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
32949 <param name=
"dc" type=
"DC" default=
""/>
32952 <method name=
"base_OnHighlight" type=
"" overloaded=
"no">
32953 <autodoc>base_OnHighlight(DC dc)
</autodoc>
32955 <param name=
"dc" type=
"DC" default=
""/>
32958 <method name=
"base_OnLeftClick" type=
"" overloaded=
"no">
32959 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32961 <param name=
"x" type=
"double" default=
""/>
32962 <param name=
"y" type=
"double" default=
""/>
32963 <param name=
"keys" type=
"int" default=
"0"/>
32964 <param name=
"attachment" type=
"int" default=
"0"/>
32967 <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no">
32968 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32970 <param name=
"x" type=
"double" default=
""/>
32971 <param name=
"y" type=
"double" default=
""/>
32972 <param name=
"keys" type=
"int" default=
"0"/>
32973 <param name=
"attachment" type=
"int" default=
"0"/>
32976 <method name=
"base_OnRightClick" type=
"" overloaded=
"no">
32977 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32979 <param name=
"x" type=
"double" default=
""/>
32980 <param name=
"y" type=
"double" default=
""/>
32981 <param name=
"keys" type=
"int" default=
"0"/>
32982 <param name=
"attachment" type=
"int" default=
"0"/>
32985 <method name=
"base_OnSize" type=
"" overloaded=
"no">
32986 <autodoc>base_OnSize(double x, double y)
</autodoc>
32988 <param name=
"x" type=
"double" default=
""/>
32989 <param name=
"y" type=
"double" default=
""/>
32992 <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no">
32993 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
32994 bool display=True) -
> bool
</autodoc>
32996 <param name=
"dc" type=
"DC" default=
""/>
32997 <param name=
"x" type=
"double" default=
""/>
32998 <param name=
"y" type=
"double" default=
""/>
32999 <param name=
"old_x" type=
"double" default=
""/>
33000 <param name=
"old_y" type=
"double" default=
""/>
33001 <param name=
"display" type=
"bool" default=
"True"/>
33004 <method name=
"base_OnMovePost" type=
"" overloaded=
"no">
33005 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
33006 bool display=True)
</autodoc>
33008 <param name=
"dc" type=
"DC" default=
""/>
33009 <param name=
"x" type=
"double" default=
""/>
33010 <param name=
"y" type=
"double" default=
""/>
33011 <param name=
"old_x" type=
"double" default=
""/>
33012 <param name=
"old_y" type=
"double" default=
""/>
33013 <param name=
"display" type=
"bool" default=
"True"/>
33016 <method name=
"base_OnDragLeft" type=
"" overloaded=
"no">
33017 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33019 <param name=
"draw" type=
"bool" default=
""/>
33020 <param name=
"x" type=
"double" default=
""/>
33021 <param name=
"y" type=
"double" default=
""/>
33022 <param name=
"keys" type=
"int" default=
"0"/>
33023 <param name=
"attachment" type=
"int" default=
"0"/>
33026 <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no">
33027 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33029 <param name=
"x" type=
"double" default=
""/>
33030 <param name=
"y" type=
"double" default=
""/>
33031 <param name=
"keys" type=
"int" default=
"0"/>
33032 <param name=
"attachment" type=
"int" default=
"0"/>
33035 <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no">
33036 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33038 <param name=
"x" type=
"double" default=
""/>
33039 <param name=
"y" type=
"double" default=
""/>
33040 <param name=
"keys" type=
"int" default=
"0"/>
33041 <param name=
"attachment" type=
"int" default=
"0"/>
33044 <method name=
"base_OnDragRight" type=
"" overloaded=
"no">
33045 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33047 <param name=
"draw" type=
"bool" default=
""/>
33048 <param name=
"x" type=
"double" default=
""/>
33049 <param name=
"y" type=
"double" default=
""/>
33050 <param name=
"keys" type=
"int" default=
"0"/>
33051 <param name=
"attachment" type=
"int" default=
"0"/>
33054 <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no">
33055 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33057 <param name=
"x" type=
"double" default=
""/>
33058 <param name=
"y" type=
"double" default=
""/>
33059 <param name=
"keys" type=
"int" default=
"0"/>
33060 <param name=
"attachment" type=
"int" default=
"0"/>
33063 <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no">
33064 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33066 <param name=
"x" type=
"double" default=
""/>
33067 <param name=
"y" type=
"double" default=
""/>
33068 <param name=
"keys" type=
"int" default=
"0"/>
33069 <param name=
"attachment" type=
"int" default=
"0"/>
33072 <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no">
33073 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
33075 <param name=
"dc" type=
"DC" default=
""/>
33076 <param name=
"x" type=
"double" default=
""/>
33077 <param name=
"y" type=
"double" default=
""/>
33078 <param name=
"w" type=
"double" default=
""/>
33079 <param name=
"h" type=
"double" default=
""/>
33082 <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no">
33083 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
33085 <param name=
"dc" type=
"DC" default=
""/>
33088 <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no">
33089 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
33091 <param name=
"dc" type=
"DC" default=
""/>
33094 <method name=
"base_OnMoveLink" type=
"" overloaded=
"no">
33095 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
33097 <param name=
"dc" type=
"DC" default=
""/>
33098 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
33101 <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no">
33102 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
33103 int attachment=
0)
</autodoc>
33105 <param name=
"pt" type=
"PyControlPoint" default=
""/>
33106 <param name=
"draw" type=
"bool" default=
""/>
33107 <param name=
"x" type=
"double" default=
""/>
33108 <param name=
"y" type=
"double" default=
""/>
33109 <param name=
"keys" type=
"int" default=
"0"/>
33110 <param name=
"attachment" type=
"int" default=
"0"/>
33113 <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no">
33114 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
33115 int attachment=
0)
</autodoc>
33117 <param name=
"pt" type=
"PyControlPoint" default=
""/>
33118 <param name=
"x" type=
"double" default=
""/>
33119 <param name=
"y" type=
"double" default=
""/>
33120 <param name=
"keys" type=
"int" default=
"0"/>
33121 <param name=
"attachment" type=
"int" default=
"0"/>
33124 <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no">
33125 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
33126 int attachment=
0)
</autodoc>
33128 <param name=
"pt" type=
"PyControlPoint" default=
""/>
33129 <param name=
"x" type=
"double" default=
""/>
33130 <param name=
"y" type=
"double" default=
""/>
33131 <param name=
"keys" type=
"int" default=
"0"/>
33132 <param name=
"attachment" type=
"int" default=
"0"/>
33135 <method name=
"base_OnBeginSize" type=
"" overloaded=
"no">
33136 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
33138 <param name=
"w" type=
"double" default=
""/>
33139 <param name=
"h" type=
"double" default=
""/>
33142 <method name=
"base_OnEndSize" type=
"" overloaded=
"no">
33143 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
33145 <param name=
"w" type=
"double" default=
""/>
33146 <param name=
"h" type=
"double" default=
""/>
33150 <class name=
"ArrowHead" oldname=
"wxArrowHead" module=
"ogl">
33151 <baseclass name=
"Object"/>
33152 <constructor name=
"ArrowHead" overloaded=
"no">
33153 <autodoc>__init__(int type=
0, int end=
0, double size=
0.0, double dist=
0.0,
33154 String name=EmptyString, PseudoMetaFile mf=None,
33155 long arrowId=-
1) -
> ArrowHead
</autodoc>
33157 <param name=
"type" type=
"int" default=
"0"/>
33158 <param name=
"end" type=
"int" default=
"0"/>
33159 <param name=
"size" type=
"double" default=
"0.0"/>
33160 <param name=
"dist" type=
"double" default=
"0.0"/>
33161 <param name=
"name" type=
"String" default=
"wxPyEmptyString"/>
33162 <param name=
"mf" type=
"PseudoMetaFile" default=
"NULL"/>
33163 <param name=
"arrowId" type=
"long" default=
"-1"/>
33166 <destructor name=
"~wxArrowHead" overloaded=
"no">
33167 <autodoc>__del__()
</autodoc>
33169 <method name=
"_GetType" type=
"int" overloaded=
"no">
33170 <autodoc>_GetType() -
> int
</autodoc>
33172 <method name=
"GetPosition" type=
"int" overloaded=
"no">
33173 <autodoc>GetPosition() -
> int
</autodoc>
33175 <method name=
"SetPosition" type=
"" overloaded=
"no">
33176 <autodoc>SetPosition(int pos)
</autodoc>
33178 <param name=
"pos" type=
"int" default=
""/>
33181 <method name=
"GetXOffset" type=
"double" overloaded=
"no">
33182 <autodoc>GetXOffset() -
> double
</autodoc>
33184 <method name=
"GetYOffset" type=
"double" overloaded=
"no">
33185 <autodoc>GetYOffset() -
> double
</autodoc>
33187 <method name=
"GetSpacing" type=
"double" overloaded=
"no">
33188 <autodoc>GetSpacing() -
> double
</autodoc>
33190 <method name=
"GetSize" type=
"double" overloaded=
"no">
33191 <autodoc>GetSize() -
> double
</autodoc>
33193 <method name=
"GetName" type=
"String" overloaded=
"no">
33194 <autodoc>GetName() -
> String
</autodoc>
33196 <method name=
"SetXOffset" type=
"" overloaded=
"no">
33197 <autodoc>SetXOffset(double x)
</autodoc>
33199 <param name=
"x" type=
"double" default=
""/>
33202 <method name=
"SetYOffset" type=
"" overloaded=
"no">
33203 <autodoc>SetYOffset(double y)
</autodoc>
33205 <param name=
"y" type=
"double" default=
""/>
33208 <method name=
"GetMetaFile" type=
"PseudoMetaFile" overloaded=
"no">
33209 <autodoc>GetMetaFile() -
> PseudoMetaFile
</autodoc>
33211 <method name=
"GetId" type=
"long" overloaded=
"no">
33212 <autodoc>GetId() -
> long
</autodoc>
33214 <method name=
"GetArrowEnd" type=
"int" overloaded=
"no">
33215 <autodoc>GetArrowEnd() -
> int
</autodoc>
33217 <method name=
"GetArrowSize" type=
"double" overloaded=
"no">
33218 <autodoc>GetArrowSize() -
> double
</autodoc>
33220 <method name=
"SetSize" type=
"" overloaded=
"no">
33221 <autodoc>SetSize(double size)
</autodoc>
33223 <param name=
"size" type=
"double" default=
""/>
33226 <method name=
"SetSpacing" type=
"" overloaded=
"no">
33227 <autodoc>SetSpacing(double sp)
</autodoc>
33229 <param name=
"sp" type=
"double" default=
""/>
33233 <class name=
"PyLineShape" oldname=
"wxPyLineShape" module=
"ogl">
33234 <baseclass name=
"PyShape"/>
33235 <constructor name=
"PyLineShape" overloaded=
"no">
33236 <autodoc>__init__() -
> PyLineShape
</autodoc>
33238 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
33239 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
33241 <param name=
"self" type=
"PyObject" default=
""/>
33242 <param name=
"_class" type=
"PyObject" default=
""/>
33245 <method name=
"AddArrow" type=
"" overloaded=
"no">
33246 <autodoc>AddArrow(int type, int end=ARROW_POSITION_END, double arrowSize=
10.0,
33247 double xOffset=
0.0, String name=EmptyString,
33248 PseudoMetaFile mf=None, long arrowId=-
1)
</autodoc>
33250 <param name=
"type" type=
"int" default=
""/>
33251 <param name=
"end" type=
"int" default=
"ARROW_POSITION_END"/>
33252 <param name=
"arrowSize" type=
"double" default=
"10.0"/>
33253 <param name=
"xOffset" type=
"double" default=
"0.0"/>
33254 <param name=
"name" type=
"String" default=
"wxPyEmptyString"/>
33255 <param name=
"mf" type=
"PseudoMetaFile" default=
"NULL"/>
33256 <param name=
"arrowId" type=
"long" default=
"-1"/>
33259 <method name=
"AddArrowOrdered" type=
"" overloaded=
"no">
33260 <autodoc>AddArrowOrdered(ArrowHead arrow, PyObject referenceList, int end)
</autodoc>
33262 <param name=
"arrow" type=
"ArrowHead" default=
""/>
33263 <param name=
"referenceList" type=
"PyObject" default=
""/>
33264 <param name=
"end" type=
"int" default=
""/>
33267 <method name=
"ClearArrow" type=
"bool" overloaded=
"no">
33268 <autodoc>ClearArrow(String name) -
> bool
</autodoc>
33270 <param name=
"name" type=
"String" default=
""/>
33273 <method name=
"ClearArrowsAtPosition" type=
"" overloaded=
"no">
33274 <autodoc>ClearArrowsAtPosition(int position=-
1)
</autodoc>
33276 <param name=
"position" type=
"int" default=
"-1"/>
33279 <method name=
"DrawArrow" type=
"" overloaded=
"no">
33280 <autodoc>DrawArrow(DC dc, ArrowHead arrow, double xOffset, bool proportionalOffset)
</autodoc>
33282 <param name=
"dc" type=
"DC" default=
""/>
33283 <param name=
"arrow" type=
"ArrowHead" default=
""/>
33284 <param name=
"xOffset" type=
"double" default=
""/>
33285 <param name=
"proportionalOffset" type=
"bool" default=
""/>
33288 <method name=
"DeleteArrowHeadId" type=
"bool" overloaded=
"no">
33289 <autodoc>DeleteArrowHeadId(long arrowId) -
> bool
</autodoc>
33291 <param name=
"arrowId" type=
"long" default=
""/>
33294 <method name=
"DeleteArrowHead" type=
"bool" overloaded=
"no">
33295 <autodoc>DeleteArrowHead(int position, String name) -
> bool
</autodoc>
33297 <param name=
"position" type=
"int" default=
""/>
33298 <param name=
"name" type=
"String" default=
""/>
33301 <method name=
"DeleteLineControlPoint" type=
"bool" overloaded=
"no">
33302 <autodoc>DeleteLineControlPoint() -
> bool
</autodoc>
33304 <method name=
"DrawArrows" type=
"" overloaded=
"no">
33305 <autodoc>DrawArrows(DC dc)
</autodoc>
33307 <param name=
"dc" type=
"DC" default=
""/>
33310 <method name=
"DrawRegion" type=
"" overloaded=
"no">
33311 <autodoc>DrawRegion(DC dc, ShapeRegion region, double x, double y)
</autodoc>
33313 <param name=
"dc" type=
"DC" default=
""/>
33314 <param name=
"region" type=
"ShapeRegion" default=
""/>
33315 <param name=
"x" type=
"double" default=
""/>
33316 <param name=
"y" type=
"double" default=
""/>
33319 <method name=
"EraseRegion" type=
"" overloaded=
"no">
33320 <autodoc>EraseRegion(DC dc, ShapeRegion region, double x, double y)
</autodoc>
33322 <param name=
"dc" type=
"DC" default=
""/>
33323 <param name=
"region" type=
"ShapeRegion" default=
""/>
33324 <param name=
"x" type=
"double" default=
""/>
33325 <param name=
"y" type=
"double" default=
""/>
33328 <method name=
"FindArrowHeadId" type=
"ArrowHead" overloaded=
"no">
33329 <autodoc>FindArrowHeadId(long arrowId) -
> ArrowHead
</autodoc>
33331 <param name=
"arrowId" type=
"long" default=
""/>
33334 <method name=
"FindArrowHead" type=
"ArrowHead" overloaded=
"no">
33335 <autodoc>FindArrowHead(int position, String name) -
> ArrowHead
</autodoc>
33337 <param name=
"position" type=
"int" default=
""/>
33338 <param name=
"name" type=
"String" default=
""/>
33341 <method name=
"FindLineEndPoints" type=
"" overloaded=
"no">
33342 <autodoc>FindLineEndPoints(double OUTPUT, double OUTPUT, double OUTPUT, double OUTPUT)
</autodoc>
33344 <param name=
"OUTPUT" type=
"double" default=
""/>
33345 <param name=
"OUTPUT" type=
"double" default=
""/>
33346 <param name=
"OUTPUT" type=
"double" default=
""/>
33347 <param name=
"OUTPUT" type=
"double" default=
""/>
33350 <method name=
"FindLinePosition" type=
"int" overloaded=
"no">
33351 <autodoc>FindLinePosition(double x, double y) -
> int
</autodoc>
33353 <param name=
"x" type=
"double" default=
""/>
33354 <param name=
"y" type=
"double" default=
""/>
33357 <method name=
"FindMinimumWidth" type=
"double" overloaded=
"no">
33358 <autodoc>FindMinimumWidth() -
> double
</autodoc>
33360 <method name=
"FindNth" type=
"" overloaded=
"no">
33361 <autodoc>FindNth(PyShape image, int OUTPUT, int OUTPUT, bool incoming)
</autodoc>
33363 <param name=
"image" type=
"PyShape" default=
""/>
33364 <param name=
"OUTPUT" type=
"int" default=
""/>
33365 <param name=
"OUTPUT" type=
"int" default=
""/>
33366 <param name=
"incoming" type=
"bool" default=
""/>
33369 <method name=
"GetAttachmentFrom" type=
"int" overloaded=
"no">
33370 <autodoc>GetAttachmentFrom() -
> int
</autodoc>
33372 <method name=
"GetAttachmentTo" type=
"int" overloaded=
"no">
33373 <autodoc>GetAttachmentTo() -
> int
</autodoc>
33375 <method name=
"GetEnds" type=
"" overloaded=
"no">
33376 <autodoc>GetEnds(double OUTPUT, double OUTPUT, double OUTPUT, double OUTPUT)
</autodoc>
33378 <param name=
"OUTPUT" type=
"double" default=
""/>
33379 <param name=
"OUTPUT" type=
"double" default=
""/>
33380 <param name=
"OUTPUT" type=
"double" default=
""/>
33381 <param name=
"OUTPUT" type=
"double" default=
""/>
33384 <method name=
"GetFrom" type=
"PyShape" overloaded=
"no">
33385 <autodoc>GetFrom() -
> PyShape
</autodoc>
33387 <method name=
"GetLabelPosition" type=
"" overloaded=
"no">
33388 <autodoc>GetLabelPosition(int position, double OUTPUT, double OUTPUT)
</autodoc>
33390 <param name=
"position" type=
"int" default=
""/>
33391 <param name=
"OUTPUT" type=
"double" default=
""/>
33392 <param name=
"OUTPUT" type=
"double" default=
""/>
33395 <method name=
"GetNextControlPoint" type=
"RealPoint" overloaded=
"no">
33396 <autodoc>GetNextControlPoint(PyShape shape) -
> RealPoint
</autodoc>
33398 <param name=
"shape" type=
"PyShape" default=
""/>
33401 <method name=
"GetTo" type=
"PyShape" overloaded=
"no">
33402 <autodoc>GetTo() -
> PyShape
</autodoc>
33404 <method name=
"Initialise" type=
"" overloaded=
"no">
33405 <autodoc>Initialise()
</autodoc>
33407 <method name=
"InsertLineControlPoint" type=
"" overloaded=
"no">
33408 <autodoc>InsertLineControlPoint(DC dc)
</autodoc>
33410 <param name=
"dc" type=
"DC" default=
""/>
33413 <method name=
"IsEnd" type=
"bool" overloaded=
"no">
33414 <autodoc>IsEnd(PyShape shape) -
> bool
</autodoc>
33416 <param name=
"shape" type=
"PyShape" default=
""/>
33419 <method name=
"IsSpline" type=
"bool" overloaded=
"no">
33420 <autodoc>IsSpline() -
> bool
</autodoc>
33422 <method name=
"MakeLineControlPoints" type=
"" overloaded=
"no">
33423 <autodoc>MakeLineControlPoints(int n)
</autodoc>
33425 <param name=
"n" type=
"int" default=
""/>
33428 <method name=
"GetLineControlPoints" type=
"PyObject" overloaded=
"no">
33429 <autodoc>GetLineControlPoints() -
> PyObject
</autodoc>
33431 <method name=
"SetAttachmentFrom" type=
"" overloaded=
"no">
33432 <autodoc>SetAttachmentFrom(int fromAttach)
</autodoc>
33434 <param name=
"fromAttach" type=
"int" default=
""/>
33437 <method name=
"SetAttachments" type=
"" overloaded=
"no">
33438 <autodoc>SetAttachments(int fromAttach, int toAttach)
</autodoc>
33440 <param name=
"fromAttach" type=
"int" default=
""/>
33441 <param name=
"toAttach" type=
"int" default=
""/>
33444 <method name=
"SetAttachmentTo" type=
"" overloaded=
"no">
33445 <autodoc>SetAttachmentTo(int toAttach)
</autodoc>
33447 <param name=
"toAttach" type=
"int" default=
""/>
33450 <method name=
"SetEnds" type=
"" overloaded=
"no">
33451 <autodoc>SetEnds(double x1, double y1, double x2, double y2)
</autodoc>
33453 <param name=
"x1" type=
"double" default=
""/>
33454 <param name=
"y1" type=
"double" default=
""/>
33455 <param name=
"x2" type=
"double" default=
""/>
33456 <param name=
"y2" type=
"double" default=
""/>
33459 <method name=
"SetFrom" type=
"" overloaded=
"no">
33460 <autodoc>SetFrom(PyShape object)
</autodoc>
33462 <param name=
"object" type=
"PyShape" default=
""/>
33465 <method name=
"SetIgnoreOffsets" type=
"" overloaded=
"no">
33466 <autodoc>SetIgnoreOffsets(bool ignore)
</autodoc>
33468 <param name=
"ignore" type=
"bool" default=
""/>
33471 <method name=
"SetSpline" type=
"" overloaded=
"no">
33472 <autodoc>SetSpline(bool spline)
</autodoc>
33474 <param name=
"spline" type=
"bool" default=
""/>
33477 <method name=
"SetTo" type=
"" overloaded=
"no">
33478 <autodoc>SetTo(PyShape object)
</autodoc>
33480 <param name=
"object" type=
"PyShape" default=
""/>
33483 <method name=
"Straighten" type=
"" overloaded=
"no">
33484 <autodoc>Straighten(DC dc=None)
</autodoc>
33486 <param name=
"dc" type=
"DC" default=
"NULL"/>
33489 <method name=
"Unlink" type=
"" overloaded=
"no">
33490 <autodoc>Unlink()
</autodoc>
33492 <method name=
"SetAlignmentOrientation" type=
"" overloaded=
"no">
33493 <autodoc>SetAlignmentOrientation(bool isEnd, bool isHoriz)
</autodoc>
33495 <param name=
"isEnd" type=
"bool" default=
""/>
33496 <param name=
"isHoriz" type=
"bool" default=
""/>
33499 <method name=
"SetAlignmentType" type=
"" overloaded=
"no">
33500 <autodoc>SetAlignmentType(bool isEnd, int alignType)
</autodoc>
33502 <param name=
"isEnd" type=
"bool" default=
""/>
33503 <param name=
"alignType" type=
"int" default=
""/>
33506 <method name=
"GetAlignmentOrientation" type=
"bool" overloaded=
"no">
33507 <autodoc>GetAlignmentOrientation(bool isEnd) -
> bool
</autodoc>
33509 <param name=
"isEnd" type=
"bool" default=
""/>
33512 <method name=
"GetAlignmentType" type=
"int" overloaded=
"no">
33513 <autodoc>GetAlignmentType(bool isEnd) -
> int
</autodoc>
33515 <param name=
"isEnd" type=
"bool" default=
""/>
33518 <method name=
"GetAlignmentStart" type=
"int" overloaded=
"no">
33519 <autodoc>GetAlignmentStart() -
> int
</autodoc>
33521 <method name=
"GetAlignmentEnd" type=
"int" overloaded=
"no">
33522 <autodoc>GetAlignmentEnd() -
> int
</autodoc>
33524 <method name=
"base_OnDraw" type=
"" overloaded=
"no">
33525 <autodoc>base_OnDraw(DC dc)
</autodoc>
33527 <param name=
"dc" type=
"DC" default=
""/>
33530 <method name=
"base_OnDrawContents" type=
"" overloaded=
"no">
33531 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
33533 <param name=
"dc" type=
"DC" default=
""/>
33536 <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no">
33537 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
33539 <param name=
"dc" type=
"DC" default=
""/>
33540 <param name=
"erase" type=
"bool" default=
"FALSE"/>
33543 <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no">
33544 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
33546 <param name=
"dc" type=
"DC" default=
""/>
33549 <method name=
"base_OnErase" type=
"" overloaded=
"no">
33550 <autodoc>base_OnErase(DC dc)
</autodoc>
33552 <param name=
"dc" type=
"DC" default=
""/>
33555 <method name=
"base_OnEraseContents" type=
"" overloaded=
"no">
33556 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
33558 <param name=
"dc" type=
"DC" default=
""/>
33561 <method name=
"base_OnHighlight" type=
"" overloaded=
"no">
33562 <autodoc>base_OnHighlight(DC dc)
</autodoc>
33564 <param name=
"dc" type=
"DC" default=
""/>
33567 <method name=
"base_OnLeftClick" type=
"" overloaded=
"no">
33568 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33570 <param name=
"x" type=
"double" default=
""/>
33571 <param name=
"y" type=
"double" default=
""/>
33572 <param name=
"keys" type=
"int" default=
"0"/>
33573 <param name=
"attachment" type=
"int" default=
"0"/>
33576 <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no">
33577 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33579 <param name=
"x" type=
"double" default=
""/>
33580 <param name=
"y" type=
"double" default=
""/>
33581 <param name=
"keys" type=
"int" default=
"0"/>
33582 <param name=
"attachment" type=
"int" default=
"0"/>
33585 <method name=
"base_OnRightClick" type=
"" overloaded=
"no">
33586 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33588 <param name=
"x" type=
"double" default=
""/>
33589 <param name=
"y" type=
"double" default=
""/>
33590 <param name=
"keys" type=
"int" default=
"0"/>
33591 <param name=
"attachment" type=
"int" default=
"0"/>
33594 <method name=
"base_OnSize" type=
"" overloaded=
"no">
33595 <autodoc>base_OnSize(double x, double y)
</autodoc>
33597 <param name=
"x" type=
"double" default=
""/>
33598 <param name=
"y" type=
"double" default=
""/>
33601 <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no">
33602 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
33603 bool display=True) -
> bool
</autodoc>
33605 <param name=
"dc" type=
"DC" default=
""/>
33606 <param name=
"x" type=
"double" default=
""/>
33607 <param name=
"y" type=
"double" default=
""/>
33608 <param name=
"old_x" type=
"double" default=
""/>
33609 <param name=
"old_y" type=
"double" default=
""/>
33610 <param name=
"display" type=
"bool" default=
"True"/>
33613 <method name=
"base_OnMovePost" type=
"" overloaded=
"no">
33614 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
33615 bool display=True)
</autodoc>
33617 <param name=
"dc" type=
"DC" default=
""/>
33618 <param name=
"x" type=
"double" default=
""/>
33619 <param name=
"y" type=
"double" default=
""/>
33620 <param name=
"old_x" type=
"double" default=
""/>
33621 <param name=
"old_y" type=
"double" default=
""/>
33622 <param name=
"display" type=
"bool" default=
"True"/>
33625 <method name=
"base_OnDragLeft" type=
"" overloaded=
"no">
33626 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33628 <param name=
"draw" type=
"bool" default=
""/>
33629 <param name=
"x" type=
"double" default=
""/>
33630 <param name=
"y" type=
"double" default=
""/>
33631 <param name=
"keys" type=
"int" default=
"0"/>
33632 <param name=
"attachment" type=
"int" default=
"0"/>
33635 <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no">
33636 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33638 <param name=
"x" type=
"double" default=
""/>
33639 <param name=
"y" type=
"double" default=
""/>
33640 <param name=
"keys" type=
"int" default=
"0"/>
33641 <param name=
"attachment" type=
"int" default=
"0"/>
33644 <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no">
33645 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33647 <param name=
"x" type=
"double" default=
""/>
33648 <param name=
"y" type=
"double" default=
""/>
33649 <param name=
"keys" type=
"int" default=
"0"/>
33650 <param name=
"attachment" type=
"int" default=
"0"/>
33653 <method name=
"base_OnDragRight" type=
"" overloaded=
"no">
33654 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33656 <param name=
"draw" type=
"bool" default=
""/>
33657 <param name=
"x" type=
"double" default=
""/>
33658 <param name=
"y" type=
"double" default=
""/>
33659 <param name=
"keys" type=
"int" default=
"0"/>
33660 <param name=
"attachment" type=
"int" default=
"0"/>
33663 <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no">
33664 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33666 <param name=
"x" type=
"double" default=
""/>
33667 <param name=
"y" type=
"double" default=
""/>
33668 <param name=
"keys" type=
"int" default=
"0"/>
33669 <param name=
"attachment" type=
"int" default=
"0"/>
33672 <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no">
33673 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33675 <param name=
"x" type=
"double" default=
""/>
33676 <param name=
"y" type=
"double" default=
""/>
33677 <param name=
"keys" type=
"int" default=
"0"/>
33678 <param name=
"attachment" type=
"int" default=
"0"/>
33681 <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no">
33682 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
33684 <param name=
"dc" type=
"DC" default=
""/>
33685 <param name=
"x" type=
"double" default=
""/>
33686 <param name=
"y" type=
"double" default=
""/>
33687 <param name=
"w" type=
"double" default=
""/>
33688 <param name=
"h" type=
"double" default=
""/>
33691 <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no">
33692 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
33694 <param name=
"dc" type=
"DC" default=
""/>
33697 <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no">
33698 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
33700 <param name=
"dc" type=
"DC" default=
""/>
33703 <method name=
"base_OnMoveLink" type=
"" overloaded=
"no">
33704 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
33706 <param name=
"dc" type=
"DC" default=
""/>
33707 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
33710 <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no">
33711 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
33712 int attachment=
0)
</autodoc>
33714 <param name=
"pt" type=
"PyControlPoint" default=
""/>
33715 <param name=
"draw" type=
"bool" default=
""/>
33716 <param name=
"x" type=
"double" default=
""/>
33717 <param name=
"y" type=
"double" default=
""/>
33718 <param name=
"keys" type=
"int" default=
"0"/>
33719 <param name=
"attachment" type=
"int" default=
"0"/>
33722 <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no">
33723 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
33724 int attachment=
0)
</autodoc>
33726 <param name=
"pt" type=
"PyControlPoint" default=
""/>
33727 <param name=
"x" type=
"double" default=
""/>
33728 <param name=
"y" type=
"double" default=
""/>
33729 <param name=
"keys" type=
"int" default=
"0"/>
33730 <param name=
"attachment" type=
"int" default=
"0"/>
33733 <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no">
33734 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
33735 int attachment=
0)
</autodoc>
33737 <param name=
"pt" type=
"PyControlPoint" default=
""/>
33738 <param name=
"x" type=
"double" default=
""/>
33739 <param name=
"y" type=
"double" default=
""/>
33740 <param name=
"keys" type=
"int" default=
"0"/>
33741 <param name=
"attachment" type=
"int" default=
"0"/>
33744 <method name=
"base_OnBeginSize" type=
"" overloaded=
"no">
33745 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
33747 <param name=
"w" type=
"double" default=
""/>
33748 <param name=
"h" type=
"double" default=
""/>
33751 <method name=
"base_OnEndSize" type=
"" overloaded=
"no">
33752 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
33754 <param name=
"w" type=
"double" default=
""/>
33755 <param name=
"h" type=
"double" default=
""/>
33759 <class name=
"PyPolygonShape" oldname=
"wxPyPolygonShape" module=
"ogl">
33760 <baseclass name=
"PyShape"/>
33761 <constructor name=
"PyPolygonShape" overloaded=
"no">
33762 <autodoc>__init__() -
> PyPolygonShape
</autodoc>
33764 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
33765 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
33767 <param name=
"self" type=
"PyObject" default=
""/>
33768 <param name=
"_class" type=
"PyObject" default=
""/>
33771 <method name=
"Create" type=
"PyObject" overloaded=
"no">
33772 <autodoc>Create(PyObject points) -
> PyObject
</autodoc>
33774 <param name=
"points" type=
"PyObject" default=
""/>
33777 <method name=
"AddPolygonPoint" type=
"" overloaded=
"no">
33778 <autodoc>AddPolygonPoint(int pos=
0)
</autodoc>
33780 <param name=
"pos" type=
"int" default=
"0"/>
33783 <method name=
"CalculatePolygonCentre" type=
"" overloaded=
"no">
33784 <autodoc>CalculatePolygonCentre()
</autodoc>
33786 <method name=
"DeletePolygonPoint" type=
"" overloaded=
"no">
33787 <autodoc>DeletePolygonPoint(int pos=
0)
</autodoc>
33789 <param name=
"pos" type=
"int" default=
"0"/>
33792 <method name=
"GetPoints" type=
"PyObject" overloaded=
"no">
33793 <autodoc>GetPoints() -
> PyObject
</autodoc>
33795 <method name=
"GetOriginalPoints" type=
"PyObject" overloaded=
"no">
33796 <autodoc>GetOriginalPoints() -
> PyObject
</autodoc>
33798 <method name=
"GetOriginalWidth" type=
"double" overloaded=
"no">
33799 <autodoc>GetOriginalWidth() -
> double
</autodoc>
33801 <method name=
"GetOriginalHeight" type=
"double" overloaded=
"no">
33802 <autodoc>GetOriginalHeight() -
> double
</autodoc>
33804 <method name=
"SetOriginalWidth" type=
"" overloaded=
"no">
33805 <autodoc>SetOriginalWidth(double w)
</autodoc>
33807 <param name=
"w" type=
"double" default=
""/>
33810 <method name=
"SetOriginalHeight" type=
"" overloaded=
"no">
33811 <autodoc>SetOriginalHeight(double h)
</autodoc>
33813 <param name=
"h" type=
"double" default=
""/>
33816 <method name=
"UpdateOriginalPoints" type=
"" overloaded=
"no">
33817 <autodoc>UpdateOriginalPoints()
</autodoc>
33819 <method name=
"base_OnDraw" type=
"" overloaded=
"no">
33820 <autodoc>base_OnDraw(DC dc)
</autodoc>
33822 <param name=
"dc" type=
"DC" default=
""/>
33825 <method name=
"base_OnDrawContents" type=
"" overloaded=
"no">
33826 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
33828 <param name=
"dc" type=
"DC" default=
""/>
33831 <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no">
33832 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
33834 <param name=
"dc" type=
"DC" default=
""/>
33835 <param name=
"erase" type=
"bool" default=
"FALSE"/>
33838 <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no">
33839 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
33841 <param name=
"dc" type=
"DC" default=
""/>
33844 <method name=
"base_OnErase" type=
"" overloaded=
"no">
33845 <autodoc>base_OnErase(DC dc)
</autodoc>
33847 <param name=
"dc" type=
"DC" default=
""/>
33850 <method name=
"base_OnEraseContents" type=
"" overloaded=
"no">
33851 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
33853 <param name=
"dc" type=
"DC" default=
""/>
33856 <method name=
"base_OnHighlight" type=
"" overloaded=
"no">
33857 <autodoc>base_OnHighlight(DC dc)
</autodoc>
33859 <param name=
"dc" type=
"DC" default=
""/>
33862 <method name=
"base_OnLeftClick" type=
"" overloaded=
"no">
33863 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33865 <param name=
"x" type=
"double" default=
""/>
33866 <param name=
"y" type=
"double" default=
""/>
33867 <param name=
"keys" type=
"int" default=
"0"/>
33868 <param name=
"attachment" type=
"int" default=
"0"/>
33871 <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no">
33872 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33874 <param name=
"x" type=
"double" default=
""/>
33875 <param name=
"y" type=
"double" default=
""/>
33876 <param name=
"keys" type=
"int" default=
"0"/>
33877 <param name=
"attachment" type=
"int" default=
"0"/>
33880 <method name=
"base_OnRightClick" type=
"" overloaded=
"no">
33881 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33883 <param name=
"x" type=
"double" default=
""/>
33884 <param name=
"y" type=
"double" default=
""/>
33885 <param name=
"keys" type=
"int" default=
"0"/>
33886 <param name=
"attachment" type=
"int" default=
"0"/>
33889 <method name=
"base_OnSize" type=
"" overloaded=
"no">
33890 <autodoc>base_OnSize(double x, double y)
</autodoc>
33892 <param name=
"x" type=
"double" default=
""/>
33893 <param name=
"y" type=
"double" default=
""/>
33896 <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no">
33897 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
33898 bool display=True) -
> bool
</autodoc>
33900 <param name=
"dc" type=
"DC" default=
""/>
33901 <param name=
"x" type=
"double" default=
""/>
33902 <param name=
"y" type=
"double" default=
""/>
33903 <param name=
"old_x" type=
"double" default=
""/>
33904 <param name=
"old_y" type=
"double" default=
""/>
33905 <param name=
"display" type=
"bool" default=
"True"/>
33908 <method name=
"base_OnMovePost" type=
"" overloaded=
"no">
33909 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
33910 bool display=True)
</autodoc>
33912 <param name=
"dc" type=
"DC" default=
""/>
33913 <param name=
"x" type=
"double" default=
""/>
33914 <param name=
"y" type=
"double" default=
""/>
33915 <param name=
"old_x" type=
"double" default=
""/>
33916 <param name=
"old_y" type=
"double" default=
""/>
33917 <param name=
"display" type=
"bool" default=
"True"/>
33920 <method name=
"base_OnDragLeft" type=
"" overloaded=
"no">
33921 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33923 <param name=
"draw" type=
"bool" default=
""/>
33924 <param name=
"x" type=
"double" default=
""/>
33925 <param name=
"y" type=
"double" default=
""/>
33926 <param name=
"keys" type=
"int" default=
"0"/>
33927 <param name=
"attachment" type=
"int" default=
"0"/>
33930 <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no">
33931 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33933 <param name=
"x" type=
"double" default=
""/>
33934 <param name=
"y" type=
"double" default=
""/>
33935 <param name=
"keys" type=
"int" default=
"0"/>
33936 <param name=
"attachment" type=
"int" default=
"0"/>
33939 <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no">
33940 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33942 <param name=
"x" type=
"double" default=
""/>
33943 <param name=
"y" type=
"double" default=
""/>
33944 <param name=
"keys" type=
"int" default=
"0"/>
33945 <param name=
"attachment" type=
"int" default=
"0"/>
33948 <method name=
"base_OnDragRight" type=
"" overloaded=
"no">
33949 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33951 <param name=
"draw" type=
"bool" default=
""/>
33952 <param name=
"x" type=
"double" default=
""/>
33953 <param name=
"y" type=
"double" default=
""/>
33954 <param name=
"keys" type=
"int" default=
"0"/>
33955 <param name=
"attachment" type=
"int" default=
"0"/>
33958 <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no">
33959 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33961 <param name=
"x" type=
"double" default=
""/>
33962 <param name=
"y" type=
"double" default=
""/>
33963 <param name=
"keys" type=
"int" default=
"0"/>
33964 <param name=
"attachment" type=
"int" default=
"0"/>
33967 <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no">
33968 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33970 <param name=
"x" type=
"double" default=
""/>
33971 <param name=
"y" type=
"double" default=
""/>
33972 <param name=
"keys" type=
"int" default=
"0"/>
33973 <param name=
"attachment" type=
"int" default=
"0"/>
33976 <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no">
33977 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
33979 <param name=
"dc" type=
"DC" default=
""/>
33980 <param name=
"x" type=
"double" default=
""/>
33981 <param name=
"y" type=
"double" default=
""/>
33982 <param name=
"w" type=
"double" default=
""/>
33983 <param name=
"h" type=
"double" default=
""/>
33986 <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no">
33987 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
33989 <param name=
"dc" type=
"DC" default=
""/>
33992 <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no">
33993 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
33995 <param name=
"dc" type=
"DC" default=
""/>
33998 <method name=
"base_OnMoveLink" type=
"" overloaded=
"no">
33999 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
34001 <param name=
"dc" type=
"DC" default=
""/>
34002 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
34005 <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no">
34006 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
34007 int attachment=
0)
</autodoc>
34009 <param name=
"pt" type=
"PyControlPoint" default=
""/>
34010 <param name=
"draw" type=
"bool" default=
""/>
34011 <param name=
"x" type=
"double" default=
""/>
34012 <param name=
"y" type=
"double" default=
""/>
34013 <param name=
"keys" type=
"int" default=
"0"/>
34014 <param name=
"attachment" type=
"int" default=
"0"/>
34017 <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no">
34018 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
34019 int attachment=
0)
</autodoc>
34021 <param name=
"pt" type=
"PyControlPoint" default=
""/>
34022 <param name=
"x" type=
"double" default=
""/>
34023 <param name=
"y" type=
"double" default=
""/>
34024 <param name=
"keys" type=
"int" default=
"0"/>
34025 <param name=
"attachment" type=
"int" default=
"0"/>
34028 <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no">
34029 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
34030 int attachment=
0)
</autodoc>
34032 <param name=
"pt" type=
"PyControlPoint" default=
""/>
34033 <param name=
"x" type=
"double" default=
""/>
34034 <param name=
"y" type=
"double" default=
""/>
34035 <param name=
"keys" type=
"int" default=
"0"/>
34036 <param name=
"attachment" type=
"int" default=
"0"/>
34039 <method name=
"base_OnBeginSize" type=
"" overloaded=
"no">
34040 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
34042 <param name=
"w" type=
"double" default=
""/>
34043 <param name=
"h" type=
"double" default=
""/>
34046 <method name=
"base_OnEndSize" type=
"" overloaded=
"no">
34047 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
34049 <param name=
"w" type=
"double" default=
""/>
34050 <param name=
"h" type=
"double" default=
""/>
34054 <class name=
"PyTextShape" oldname=
"wxPyTextShape" module=
"ogl">
34055 <baseclass name=
"PyRectangleShape"/>
34056 <constructor name=
"PyTextShape" overloaded=
"no">
34057 <autodoc>__init__(double width=
0.0, double height=
0.0) -
> PyTextShape
</autodoc>
34059 <param name=
"width" type=
"double" default=
"0.0"/>
34060 <param name=
"height" type=
"double" default=
"0.0"/>
34063 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
34064 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
34066 <param name=
"self" type=
"PyObject" default=
""/>
34067 <param name=
"_class" type=
"PyObject" default=
""/>
34070 <method name=
"base_OnDelete" type=
"" overloaded=
"no">
34071 <autodoc>base_OnDelete()
</autodoc>
34073 <method name=
"base_OnDraw" type=
"" overloaded=
"no">
34074 <autodoc>base_OnDraw(DC dc)
</autodoc>
34076 <param name=
"dc" type=
"DC" default=
""/>
34079 <method name=
"base_OnDrawContents" type=
"" overloaded=
"no">
34080 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
34082 <param name=
"dc" type=
"DC" default=
""/>
34085 <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no">
34086 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
34088 <param name=
"dc" type=
"DC" default=
""/>
34089 <param name=
"erase" type=
"bool" default=
"FALSE"/>
34092 <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no">
34093 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
34095 <param name=
"dc" type=
"DC" default=
""/>
34098 <method name=
"base_OnErase" type=
"" overloaded=
"no">
34099 <autodoc>base_OnErase(DC dc)
</autodoc>
34101 <param name=
"dc" type=
"DC" default=
""/>
34104 <method name=
"base_OnEraseContents" type=
"" overloaded=
"no">
34105 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
34107 <param name=
"dc" type=
"DC" default=
""/>
34110 <method name=
"base_OnHighlight" type=
"" overloaded=
"no">
34111 <autodoc>base_OnHighlight(DC dc)
</autodoc>
34113 <param name=
"dc" type=
"DC" default=
""/>
34116 <method name=
"base_OnLeftClick" type=
"" overloaded=
"no">
34117 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
34119 <param name=
"x" type=
"double" default=
""/>
34120 <param name=
"y" type=
"double" default=
""/>
34121 <param name=
"keys" type=
"int" default=
"0"/>
34122 <param name=
"attachment" type=
"int" default=
"0"/>
34125 <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no">
34126 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
34128 <param name=
"x" type=
"double" default=
""/>
34129 <param name=
"y" type=
"double" default=
""/>
34130 <param name=
"keys" type=
"int" default=
"0"/>
34131 <param name=
"attachment" type=
"int" default=
"0"/>
34134 <method name=
"base_OnRightClick" type=
"" overloaded=
"no">
34135 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
34137 <param name=
"x" type=
"double" default=
""/>
34138 <param name=
"y" type=
"double" default=
""/>
34139 <param name=
"keys" type=
"int" default=
"0"/>
34140 <param name=
"attachment" type=
"int" default=
"0"/>
34143 <method name=
"base_OnSize" type=
"" overloaded=
"no">
34144 <autodoc>base_OnSize(double x, double y)
</autodoc>
34146 <param name=
"x" type=
"double" default=
""/>
34147 <param name=
"y" type=
"double" default=
""/>
34150 <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no">
34151 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
34152 bool display=True) -
> bool
</autodoc>
34154 <param name=
"dc" type=
"DC" default=
""/>
34155 <param name=
"x" type=
"double" default=
""/>
34156 <param name=
"y" type=
"double" default=
""/>
34157 <param name=
"old_x" type=
"double" default=
""/>
34158 <param name=
"old_y" type=
"double" default=
""/>
34159 <param name=
"display" type=
"bool" default=
"True"/>
34162 <method name=
"base_OnMovePost" type=
"" overloaded=
"no">
34163 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
34164 bool display=True)
</autodoc>
34166 <param name=
"dc" type=
"DC" default=
""/>
34167 <param name=
"x" type=
"double" default=
""/>
34168 <param name=
"y" type=
"double" default=
""/>
34169 <param name=
"old_x" type=
"double" default=
""/>
34170 <param name=
"old_y" type=
"double" default=
""/>
34171 <param name=
"display" type=
"bool" default=
"True"/>
34174 <method name=
"base_OnDragLeft" type=
"" overloaded=
"no">
34175 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
34177 <param name=
"draw" type=
"bool" default=
""/>
34178 <param name=
"x" type=
"double" default=
""/>
34179 <param name=
"y" type=
"double" default=
""/>
34180 <param name=
"keys" type=
"int" default=
"0"/>
34181 <param name=
"attachment" type=
"int" default=
"0"/>
34184 <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no">
34185 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
34187 <param name=
"x" type=
"double" default=
""/>
34188 <param name=
"y" type=
"double" default=
""/>
34189 <param name=
"keys" type=
"int" default=
"0"/>
34190 <param name=
"attachment" type=
"int" default=
"0"/>
34193 <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no">
34194 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
34196 <param name=
"x" type=
"double" default=
""/>
34197 <param name=
"y" type=
"double" default=
""/>
34198 <param name=
"keys" type=
"int" default=
"0"/>
34199 <param name=
"attachment" type=
"int" default=
"0"/>
34202 <method name=
"base_OnDragRight" type=
"" overloaded=
"no">
34203 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
34205 <param name=
"draw" type=
"bool" default=
""/>
34206 <param name=
"x" type=
"double" default=
""/>
34207 <param name=
"y" type=
"double" default=
""/>
34208 <param name=
"keys" type=
"int" default=
"0"/>
34209 <param name=
"attachment" type=
"int" default=
"0"/>
34212 <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no">
34213 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
34215 <param name=
"x" type=
"double" default=
""/>
34216 <param name=
"y" type=
"double" default=
""/>
34217 <param name=
"keys" type=
"int" default=
"0"/>
34218 <param name=
"attachment" type=
"int" default=
"0"/>
34221 <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no">
34222 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
34224 <param name=
"x" type=
"double" default=
""/>
34225 <param name=
"y" type=
"double" default=
""/>
34226 <param name=
"keys" type=
"int" default=
"0"/>
34227 <param name=
"attachment" type=
"int" default=
"0"/>
34230 <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no">
34231 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
34233 <param name=
"dc" type=
"DC" default=
""/>
34234 <param name=
"x" type=
"double" default=
""/>
34235 <param name=
"y" type=
"double" default=
""/>
34236 <param name=
"w" type=
"double" default=
""/>
34237 <param name=
"h" type=
"double" default=
""/>
34240 <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no">
34241 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
34243 <param name=
"dc" type=
"DC" default=
""/>
34246 <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no">
34247 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
34249 <param name=
"dc" type=
"DC" default=
""/>
34252 <method name=
"base_OnMoveLink" type=
"" overloaded=
"no">
34253 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
34255 <param name=
"dc" type=
"DC" default=
""/>
34256 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
34259 <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no">
34260 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
34261 int attachment=
0)
</autodoc>
34263 <param name=
"pt" type=
"PyControlPoint" default=
""/>
34264 <param name=
"draw" type=
"bool" default=
""/>
34265 <param name=
"x" type=
"double" default=
""/>
34266 <param name=
"y" type=
"double" default=
""/>
34267 <param name=
"keys" type=
"int" default=
"0"/>
34268 <param name=
"attachment" type=
"int" default=
"0"/>
34271 <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no">
34272 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
34273 int attachment=
0)
</autodoc>
34275 <param name=
"pt" type=
"PyControlPoint" default=
""/>
34276 <param name=
"x" type=
"double" default=
""/>
34277 <param name=
"y" type=
"double" default=
""/>
34278 <param name=
"keys" type=
"int" default=
"0"/>
34279 <param name=
"attachment" type=
"int" default=
"0"/>
34282 <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no">
34283 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
34284 int attachment=
0)
</autodoc>
34286 <param name=
"pt" type=
"PyControlPoint" default=
""/>
34287 <param name=
"x" type=
"double" default=
""/>
34288 <param name=
"y" type=
"double" default=
""/>
34289 <param name=
"keys" type=
"int" default=
"0"/>
34290 <param name=
"attachment" type=
"int" default=
"0"/>
34293 <method name=
"base_OnBeginSize" type=
"" overloaded=
"no">
34294 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
34296 <param name=
"w" type=
"double" default=
""/>
34297 <param name=
"h" type=
"double" default=
""/>
34300 <method name=
"base_OnEndSize" type=
"" overloaded=
"no">
34301 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
34303 <param name=
"w" type=
"double" default=
""/>
34304 <param name=
"h" type=
"double" default=
""/>
34308 <class name=
"Diagram" oldname=
"wxDiagram" module=
"ogl">
34309 <baseclass name=
"Object"/>
34310 <constructor name=
"Diagram" overloaded=
"no">
34311 <autodoc>__init__() -
> Diagram
</autodoc>
34313 <method name=
"AddShape" type=
"" overloaded=
"no">
34314 <autodoc>AddShape(PyShape shape, PyShape addAfter=None)
</autodoc>
34316 <param name=
"shape" type=
"PyShape" default=
""/>
34317 <param name=
"addAfter" type=
"PyShape" default=
"NULL"/>
34320 <method name=
"Clear" type=
"" overloaded=
"no">
34321 <autodoc>Clear(DC dc)
</autodoc>
34323 <param name=
"dc" type=
"DC" default=
""/>
34326 <method name=
"DeleteAllShapes" type=
"" overloaded=
"no">
34327 <autodoc>DeleteAllShapes()
</autodoc>
34329 <method name=
"DrawOutline" type=
"" overloaded=
"no">
34330 <autodoc>DrawOutline(DC dc, double x1, double y1, double x2, double y2)
</autodoc>
34332 <param name=
"dc" type=
"DC" default=
""/>
34333 <param name=
"x1" type=
"double" default=
""/>
34334 <param name=
"y1" type=
"double" default=
""/>
34335 <param name=
"x2" type=
"double" default=
""/>
34336 <param name=
"y2" type=
"double" default=
""/>
34339 <method name=
"FindShape" type=
"PyShape" overloaded=
"no">
34340 <autodoc>FindShape(long id) -
> PyShape
</autodoc>
34342 <param name=
"id" type=
"long" default=
""/>
34345 <method name=
"GetCanvas" type=
"wxPyShapeCanvas" overloaded=
"no">
34346 <autodoc>GetCanvas() -
> PyShapeCanvas
</autodoc>
34348 <method name=
"GetCount" type=
"int" overloaded=
"no">
34349 <autodoc>GetCount() -
> int
</autodoc>
34351 <method name=
"GetGridSpacing" type=
"double" overloaded=
"no">
34352 <autodoc>GetGridSpacing() -
> double
</autodoc>
34354 <method name=
"GetMouseTolerance" type=
"int" overloaded=
"no">
34355 <autodoc>GetMouseTolerance() -
> int
</autodoc>
34357 <method name=
"GetShapeList" type=
"PyObject" overloaded=
"no">
34358 <autodoc>GetShapeList() -
> PyObject
</autodoc>
34360 <method name=
"GetQuickEditMode" type=
"bool" overloaded=
"no">
34361 <autodoc>GetQuickEditMode() -
> bool
</autodoc>
34363 <method name=
"GetSnapToGrid" type=
"bool" overloaded=
"no">
34364 <autodoc>GetSnapToGrid() -
> bool
</autodoc>
34366 <method name=
"InsertShape" type=
"" overloaded=
"no">
34367 <autodoc>InsertShape(PyShape shape)
</autodoc>
34369 <param name=
"shape" type=
"PyShape" default=
""/>
34372 <method name=
"RecentreAll" type=
"" overloaded=
"no">
34373 <autodoc>RecentreAll(DC dc)
</autodoc>
34375 <param name=
"dc" type=
"DC" default=
""/>
34378 <method name=
"Redraw" type=
"" overloaded=
"no">
34379 <autodoc>Redraw(DC dc)
</autodoc>
34381 <param name=
"dc" type=
"DC" default=
""/>
34384 <method name=
"RemoveAllShapes" type=
"" overloaded=
"no">
34385 <autodoc>RemoveAllShapes()
</autodoc>
34387 <method name=
"RemoveShape" type=
"" overloaded=
"no">
34388 <autodoc>RemoveShape(PyShape shape)
</autodoc>
34390 <param name=
"shape" type=
"PyShape" default=
""/>
34393 <method name=
"SetCanvas" type=
"" overloaded=
"no">
34394 <autodoc>SetCanvas(PyShapeCanvas canvas)
</autodoc>
34396 <param name=
"canvas" type=
"wxPyShapeCanvas" default=
""/>
34399 <method name=
"SetGridSpacing" type=
"" overloaded=
"no">
34400 <autodoc>SetGridSpacing(double spacing)
</autodoc>
34402 <param name=
"spacing" type=
"double" default=
""/>
34405 <method name=
"SetMouseTolerance" type=
"" overloaded=
"no">
34406 <autodoc>SetMouseTolerance(int tolerance)
</autodoc>
34408 <param name=
"tolerance" type=
"int" default=
""/>
34411 <method name=
"SetQuickEditMode" type=
"" overloaded=
"no">
34412 <autodoc>SetQuickEditMode(bool mode)
</autodoc>
34414 <param name=
"mode" type=
"bool" default=
""/>
34417 <method name=
"SetSnapToGrid" type=
"" overloaded=
"no">
34418 <autodoc>SetSnapToGrid(bool snap)
</autodoc>
34420 <param name=
"snap" type=
"bool" default=
""/>
34423 <method name=
"ShowAll" type=
"" overloaded=
"no">
34424 <autodoc>ShowAll(bool show)
</autodoc>
34426 <param name=
"show" type=
"bool" default=
""/>
34429 <method name=
"Snap" type=
"" overloaded=
"no">
34430 <autodoc>Snap(double INOUT, double INOUT)
</autodoc>
34432 <param name=
"INOUT" type=
"double" default=
""/>
34433 <param name=
"INOUT" type=
"double" default=
""/>
34437 <class name=
"PyShapeCanvas" oldname=
"wxPyShapeCanvas" module=
"ogl">
34438 <baseclass name=
"ScrolledWindow"/>
34439 <constructor name=
"PyShapeCanvas" overloaded=
"no">
34440 <autodoc>__init__(Window parent=None, int id=-
1, Point pos=DefaultPosition,
34441 Size size=DefaultSize, long style=BORDER,
34442 String name=wxPyShapeCanvasNameStr) -
> PyShapeCanvas
</autodoc>
34444 <param name=
"parent" type=
"Window" default=
"NULL"/>
34445 <param name=
"id" type=
"int" default=
"-1"/>
34446 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
34447 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
34448 <param name=
"style" type=
"long" default=
"wxBORDER"/>
34449 <param name=
"name" type=
"String" default=
"wxPyShapeCanvasNameStr"/>
34452 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
34453 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
34455 <param name=
"self" type=
"PyObject" default=
""/>
34456 <param name=
"_class" type=
"PyObject" default=
""/>
34459 <method name=
"AddShape" type=
"" overloaded=
"no">
34460 <autodoc>AddShape(PyShape shape, PyShape addAfter=None)
</autodoc>
34462 <param name=
"shape" type=
"PyShape" default=
""/>
34463 <param name=
"addAfter" type=
"PyShape" default=
"NULL"/>
34466 <method name=
"FindShape" type=
"PyShape" overloaded=
"no">
34467 <autodoc>FindShape(double x1, double y, int OUTPUT, wxClassInfo info=None,
34468 PyShape notImage=None) -
> PyShape
</autodoc>
34470 <param name=
"x1" type=
"double" default=
""/>
34471 <param name=
"y" type=
"double" default=
""/>
34472 <param name=
"OUTPUT" type=
"int" default=
""/>
34473 <param name=
"info" type=
"wxClassInfo" default=
"NULL"/>
34474 <param name=
"notImage" type=
"PyShape" default=
"NULL"/>
34477 <method name=
"FindFirstSensitiveShape" type=
"PyShape" overloaded=
"no">
34478 <autodoc>FindFirstSensitiveShape(double x1, double y, int OUTPUT, int op) -
> PyShape
</autodoc>
34480 <param name=
"x1" type=
"double" default=
""/>
34481 <param name=
"y" type=
"double" default=
""/>
34482 <param name=
"OUTPUT" type=
"int" default=
""/>
34483 <param name=
"op" type=
"int" default=
""/>
34486 <method name=
"GetDiagram" type=
"Diagram" overloaded=
"no">
34487 <autodoc>GetDiagram() -
> Diagram
</autodoc>
34489 <method name=
"GetQuickEditMode" type=
"bool" overloaded=
"no">
34490 <autodoc>GetQuickEditMode() -
> bool
</autodoc>
34492 <method name=
"InsertShape" type=
"" overloaded=
"no">
34493 <autodoc>InsertShape(PyShape shape)
</autodoc>
34495 <param name=
"shape" type=
"PyShape" default=
""/>
34498 <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no">
34499 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0)
</autodoc>
34501 <param name=
"x" type=
"double" default=
""/>
34502 <param name=
"y" type=
"double" default=
""/>
34503 <param name=
"keys" type=
"int" default=
"0"/>
34506 <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no">
34507 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0)
</autodoc>
34509 <param name=
"x" type=
"double" default=
""/>
34510 <param name=
"y" type=
"double" default=
""/>
34511 <param name=
"keys" type=
"int" default=
"0"/>
34514 <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no">
34515 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0)
</autodoc>
34517 <param name=
"x" type=
"double" default=
""/>
34518 <param name=
"y" type=
"double" default=
""/>
34519 <param name=
"keys" type=
"int" default=
"0"/>
34522 <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no">
34523 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0)
</autodoc>
34525 <param name=
"x" type=
"double" default=
""/>
34526 <param name=
"y" type=
"double" default=
""/>
34527 <param name=
"keys" type=
"int" default=
"0"/>
34530 <method name=
"base_OnDragLeft" type=
"" overloaded=
"no">
34531 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0)
</autodoc>
34533 <param name=
"draw" type=
"bool" default=
""/>
34534 <param name=
"x" type=
"double" default=
""/>
34535 <param name=
"y" type=
"double" default=
""/>
34536 <param name=
"keys" type=
"int" default=
"0"/>
34539 <method name=
"base_OnDragRight" type=
"" overloaded=
"no">
34540 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0)
</autodoc>
34542 <param name=
"draw" type=
"bool" default=
""/>
34543 <param name=
"x" type=
"double" default=
""/>
34544 <param name=
"y" type=
"double" default=
""/>
34545 <param name=
"keys" type=
"int" default=
"0"/>
34548 <method name=
"base_OnLeftClick" type=
"" overloaded=
"no">
34549 <autodoc>base_OnLeftClick(double x, double y, int keys=
0)
</autodoc>
34551 <param name=
"x" type=
"double" default=
""/>
34552 <param name=
"y" type=
"double" default=
""/>
34553 <param name=
"keys" type=
"int" default=
"0"/>
34556 <method name=
"base_OnRightClick" type=
"" overloaded=
"no">
34557 <autodoc>base_OnRightClick(double x, double y, int keys=
0)
</autodoc>
34559 <param name=
"x" type=
"double" default=
""/>
34560 <param name=
"y" type=
"double" default=
""/>
34561 <param name=
"keys" type=
"int" default=
"0"/>
34564 <method name=
"Redraw" type=
"" overloaded=
"no">
34565 <autodoc>Redraw(DC dc)
</autodoc>
34567 <param name=
"dc" type=
"DC" default=
""/>
34570 <method name=
"RemoveShape" type=
"" overloaded=
"no">
34571 <autodoc>RemoveShape(PyShape shape)
</autodoc>
34573 <param name=
"shape" type=
"PyShape" default=
""/>
34576 <method name=
"SetDiagram" type=
"" overloaded=
"no">
34577 <autodoc>SetDiagram(Diagram diagram)
</autodoc>
34579 <param name=
"diagram" type=
"Diagram" default=
""/>
34582 <method name=
"Snap" type=
"" overloaded=
"no">
34583 <autodoc>Snap(double INOUT, double INOUT)
</autodoc>
34585 <param name=
"INOUT" type=
"double" default=
""/>
34586 <param name=
"INOUT" type=
"double" default=
""/>
34592 ShapeCanvas = PyShapeCanvas
34593 ShapeEvtHandler = PyShapeEvtHandler
34595 RectangleShape = PyRectangleShape
34596 BitmapShape = PyBitmapShape
34597 DrawnShape = PyDrawnShape
34598 CompositeShape = PyCompositeShape
34599 DividedShape = PyDividedShape
34600 DivisionShape = PyDivisionShape
34601 EllipseShape = PyEllipseShape
34602 CircleShape = PyCircleShape
34603 LineShape = PyLineShape
34604 PolygonShape = PyPolygonShape
34605 TextShape = PyTextShape
34606 ControlPoint = PyControlPoint
34608 <method name=
"OGLInitialize" oldname=
"wxOGLInitialize" type=
"" overloaded=
"no">
34609 <autodoc>OGLInitialize()
</autodoc>
34611 <method name=
"OGLCleanUp" oldname=
"wxOGLCleanUp" type=
"" overloaded=
"no">
34612 <autodoc>OGLCleanUp()
</autodoc>
34615 <module name=
"stc">
34616 <import name=
"core"/>
34617 <import name=
"misc"/>
34618 <pythoncode> wx = core
</pythoncode>
34619 <class name=
"StyledTextCtrl" oldname=
"wxStyledTextCtrl" module=
"stc">
34620 <baseclass name=
"Control"/>
34621 <constructor name=
"StyledTextCtrl" overloaded=
"no">
34622 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
34623 long style=
0, String name=STCNameStr) -
> StyledTextCtrl
</autodoc>
34625 <param name=
"parent" type=
"Window" default=
""/>
34626 <param name=
"id" type=
"int" default=
""/>
34627 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
34628 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
34629 <param name=
"style" type=
"long" default=
"0"/>
34630 <param name=
"name" type=
"String" default=
"wxPySTCNameStr"/>
34633 <constructor name=
"PreStyledTextCtrl" overloaded=
"no">
34634 <autodoc>PreStyledTextCtrl() -
> StyledTextCtrl
</autodoc>
34636 <method name=
"Create" type=
"" overloaded=
"no">
34637 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
34638 long style=
0, String name=wxSTCNameStr)
</autodoc>
34640 <param name=
"parent" type=
"Window" default=
""/>
34641 <param name=
"id" type=
"int" default=
""/>
34642 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
34643 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
34644 <param name=
"style" type=
"long" default=
"0"/>
34645 <param name=
"name" type=
"String" default=
"wxSTCNameStr"/>
34648 <method name=
"AddText" type=
"" overloaded=
"no">
34649 <autodoc>AddText(String text)
</autodoc>
34651 <param name=
"text" type=
"String" default=
""/>
34654 <method name=
"AddStyledText" type=
"" overloaded=
"no">
34655 <autodoc>AddStyledText(wxMemoryBuffer data)
</autodoc>
34657 <param name=
"data" type=
"wxMemoryBuffer" default=
""/>
34660 <method name=
"InsertText" type=
"" overloaded=
"no">
34661 <autodoc>InsertText(int pos, String text)
</autodoc>
34663 <param name=
"pos" type=
"int" default=
""/>
34664 <param name=
"text" type=
"String" default=
""/>
34667 <method name=
"ClearAll" type=
"" overloaded=
"no">
34668 <autodoc>ClearAll()
</autodoc>
34670 <method name=
"ClearDocumentStyle" type=
"" overloaded=
"no">
34671 <autodoc>ClearDocumentStyle()
</autodoc>
34673 <method name=
"GetLength" type=
"int" overloaded=
"no">
34674 <autodoc>GetLength() -
> int
</autodoc>
34676 <method name=
"GetCharAt" type=
"int" overloaded=
"no">
34677 <autodoc>GetCharAt(int pos) -
> int
</autodoc>
34679 <param name=
"pos" type=
"int" default=
""/>
34682 <method name=
"GetCurrentPos" type=
"int" overloaded=
"no">
34683 <autodoc>GetCurrentPos() -
> int
</autodoc>
34685 <method name=
"GetAnchor" type=
"int" overloaded=
"no">
34686 <autodoc>GetAnchor() -
> int
</autodoc>
34688 <method name=
"GetStyleAt" type=
"int" overloaded=
"no">
34689 <autodoc>GetStyleAt(int pos) -
> int
</autodoc>
34691 <param name=
"pos" type=
"int" default=
""/>
34694 <method name=
"Redo" type=
"" overloaded=
"no">
34695 <autodoc>Redo()
</autodoc>
34697 <method name=
"SetUndoCollection" type=
"" overloaded=
"no">
34698 <autodoc>SetUndoCollection(bool collectUndo)
</autodoc>
34700 <param name=
"collectUndo" type=
"bool" default=
""/>
34703 <method name=
"SelectAll" type=
"" overloaded=
"no">
34704 <autodoc>SelectAll()
</autodoc>
34706 <method name=
"SetSavePoint" type=
"" overloaded=
"no">
34707 <autodoc>SetSavePoint()
</autodoc>
34709 <method name=
"GetStyledText" type=
"wxMemoryBuffer" overloaded=
"no">
34710 <autodoc>GetStyledText(int startPos, int endPos) -
> wxMemoryBuffer
</autodoc>
34712 <param name=
"startPos" type=
"int" default=
""/>
34713 <param name=
"endPos" type=
"int" default=
""/>
34716 <method name=
"CanRedo" type=
"bool" overloaded=
"no">
34717 <autodoc>CanRedo() -
> bool
</autodoc>
34719 <method name=
"MarkerLineFromHandle" type=
"int" overloaded=
"no">
34720 <autodoc>MarkerLineFromHandle(int handle) -
> int
</autodoc>
34722 <param name=
"handle" type=
"int" default=
""/>
34725 <method name=
"MarkerDeleteHandle" type=
"" overloaded=
"no">
34726 <autodoc>MarkerDeleteHandle(int handle)
</autodoc>
34728 <param name=
"handle" type=
"int" default=
""/>
34731 <method name=
"GetUndoCollection" type=
"bool" overloaded=
"no">
34732 <autodoc>GetUndoCollection() -
> bool
</autodoc>
34734 <method name=
"GetViewWhiteSpace" type=
"int" overloaded=
"no">
34735 <autodoc>GetViewWhiteSpace() -
> int
</autodoc>
34737 <method name=
"SetViewWhiteSpace" type=
"" overloaded=
"no">
34738 <autodoc>SetViewWhiteSpace(int viewWS)
</autodoc>
34740 <param name=
"viewWS" type=
"int" default=
""/>
34743 <method name=
"PositionFromPoint" type=
"int" overloaded=
"no">
34744 <autodoc>PositionFromPoint(Point pt) -
> int
</autodoc>
34746 <param name=
"pt" type=
"Point" default=
""/>
34749 <method name=
"PositionFromPointClose" type=
"int" overloaded=
"no">
34750 <autodoc>PositionFromPointClose(int x, int y) -
> int
</autodoc>
34752 <param name=
"x" type=
"int" default=
""/>
34753 <param name=
"y" type=
"int" default=
""/>
34756 <method name=
"GotoLine" type=
"" overloaded=
"no">
34757 <autodoc>GotoLine(int line)
</autodoc>
34759 <param name=
"line" type=
"int" default=
""/>
34762 <method name=
"GotoPos" type=
"" overloaded=
"no">
34763 <autodoc>GotoPos(int pos)
</autodoc>
34765 <param name=
"pos" type=
"int" default=
""/>
34768 <method name=
"SetAnchor" type=
"" overloaded=
"no">
34769 <autodoc>SetAnchor(int posAnchor)
</autodoc>
34771 <param name=
"posAnchor" type=
"int" default=
""/>
34774 <method name=
"GetCurLine" type=
"String" overloaded=
"no">
34775 <autodoc>GetCurLine(int OUTPUT) -
> String
</autodoc>
34777 <param name=
"OUTPUT" type=
"int" default=
""/>
34780 <method name=
"GetEndStyled" type=
"int" overloaded=
"no">
34781 <autodoc>GetEndStyled() -
> int
</autodoc>
34783 <method name=
"ConvertEOLs" type=
"" overloaded=
"no">
34784 <autodoc>ConvertEOLs(int eolMode)
</autodoc>
34786 <param name=
"eolMode" type=
"int" default=
""/>
34789 <method name=
"GetEOLMode" type=
"int" overloaded=
"no">
34790 <autodoc>GetEOLMode() -
> int
</autodoc>
34792 <method name=
"SetEOLMode" type=
"" overloaded=
"no">
34793 <autodoc>SetEOLMode(int eolMode)
</autodoc>
34795 <param name=
"eolMode" type=
"int" default=
""/>
34798 <method name=
"StartStyling" type=
"" overloaded=
"no">
34799 <autodoc>StartStyling(int pos, int mask)
</autodoc>
34801 <param name=
"pos" type=
"int" default=
""/>
34802 <param name=
"mask" type=
"int" default=
""/>
34805 <method name=
"SetStyling" type=
"" overloaded=
"no">
34806 <autodoc>SetStyling(int length, int style)
</autodoc>
34808 <param name=
"length" type=
"int" default=
""/>
34809 <param name=
"style" type=
"int" default=
""/>
34812 <method name=
"GetBufferedDraw" type=
"bool" overloaded=
"no">
34813 <autodoc>GetBufferedDraw() -
> bool
</autodoc>
34815 <method name=
"SetBufferedDraw" type=
"" overloaded=
"no">
34816 <autodoc>SetBufferedDraw(bool buffered)
</autodoc>
34818 <param name=
"buffered" type=
"bool" default=
""/>
34821 <method name=
"SetTabWidth" type=
"" overloaded=
"no">
34822 <autodoc>SetTabWidth(int tabWidth)
</autodoc>
34824 <param name=
"tabWidth" type=
"int" default=
""/>
34827 <method name=
"GetTabWidth" type=
"int" overloaded=
"no">
34828 <autodoc>GetTabWidth() -
> int
</autodoc>
34830 <method name=
"SetCodePage" type=
"" overloaded=
"no">
34831 <autodoc>SetCodePage(int codePage)
</autodoc>
34833 <param name=
"codePage" type=
"int" default=
""/>
34836 <method name=
"MarkerDefine" type=
"" overloaded=
"no">
34837 <autodoc>MarkerDefine(int markerNumber, int markerSymbol, Colour foreground=wxNullColour,
34838 Colour background=wxNullColour)
</autodoc>
34840 <param name=
"markerNumber" type=
"int" default=
""/>
34841 <param name=
"markerSymbol" type=
"int" default=
""/>
34842 <param name=
"foreground" type=
"Colour" default=
"wxNullColour"/>
34843 <param name=
"background" type=
"Colour" default=
"wxNullColour"/>
34846 <method name=
"MarkerSetForeground" type=
"" overloaded=
"no">
34847 <autodoc>MarkerSetForeground(int markerNumber, Colour fore)
</autodoc>
34849 <param name=
"markerNumber" type=
"int" default=
""/>
34850 <param name=
"fore" type=
"Colour" default=
""/>
34853 <method name=
"MarkerSetBackground" type=
"" overloaded=
"no">
34854 <autodoc>MarkerSetBackground(int markerNumber, Colour back)
</autodoc>
34856 <param name=
"markerNumber" type=
"int" default=
""/>
34857 <param name=
"back" type=
"Colour" default=
""/>
34860 <method name=
"MarkerAdd" type=
"int" overloaded=
"no">
34861 <autodoc>MarkerAdd(int line, int markerNumber) -
> int
</autodoc>
34863 <param name=
"line" type=
"int" default=
""/>
34864 <param name=
"markerNumber" type=
"int" default=
""/>
34867 <method name=
"MarkerDelete" type=
"" overloaded=
"no">
34868 <autodoc>MarkerDelete(int line, int markerNumber)
</autodoc>
34870 <param name=
"line" type=
"int" default=
""/>
34871 <param name=
"markerNumber" type=
"int" default=
""/>
34874 <method name=
"MarkerDeleteAll" type=
"" overloaded=
"no">
34875 <autodoc>MarkerDeleteAll(int markerNumber)
</autodoc>
34877 <param name=
"markerNumber" type=
"int" default=
""/>
34880 <method name=
"MarkerGet" type=
"int" overloaded=
"no">
34881 <autodoc>MarkerGet(int line) -
> int
</autodoc>
34883 <param name=
"line" type=
"int" default=
""/>
34886 <method name=
"MarkerNext" type=
"int" overloaded=
"no">
34887 <autodoc>MarkerNext(int lineStart, int markerMask) -
> int
</autodoc>
34889 <param name=
"lineStart" type=
"int" default=
""/>
34890 <param name=
"markerMask" type=
"int" default=
""/>
34893 <method name=
"MarkerPrevious" type=
"int" overloaded=
"no">
34894 <autodoc>MarkerPrevious(int lineStart, int markerMask) -
> int
</autodoc>
34896 <param name=
"lineStart" type=
"int" default=
""/>
34897 <param name=
"markerMask" type=
"int" default=
""/>
34900 <method name=
"MarkerDefineBitmap" type=
"" overloaded=
"no">
34901 <autodoc>MarkerDefineBitmap(int markerNumber, Bitmap bmp)
</autodoc>
34903 <param name=
"markerNumber" type=
"int" default=
""/>
34904 <param name=
"bmp" type=
"Bitmap" default=
""/>
34907 <method name=
"SetMarginType" type=
"" overloaded=
"no">
34908 <autodoc>SetMarginType(int margin, int marginType)
</autodoc>
34910 <param name=
"margin" type=
"int" default=
""/>
34911 <param name=
"marginType" type=
"int" default=
""/>
34914 <method name=
"GetMarginType" type=
"int" overloaded=
"no">
34915 <autodoc>GetMarginType(int margin) -
> int
</autodoc>
34917 <param name=
"margin" type=
"int" default=
""/>
34920 <method name=
"SetMarginWidth" type=
"" overloaded=
"no">
34921 <autodoc>SetMarginWidth(int margin, int pixelWidth)
</autodoc>
34923 <param name=
"margin" type=
"int" default=
""/>
34924 <param name=
"pixelWidth" type=
"int" default=
""/>
34927 <method name=
"GetMarginWidth" type=
"int" overloaded=
"no">
34928 <autodoc>GetMarginWidth(int margin) -
> int
</autodoc>
34930 <param name=
"margin" type=
"int" default=
""/>
34933 <method name=
"SetMarginMask" type=
"" overloaded=
"no">
34934 <autodoc>SetMarginMask(int margin, int mask)
</autodoc>
34936 <param name=
"margin" type=
"int" default=
""/>
34937 <param name=
"mask" type=
"int" default=
""/>
34940 <method name=
"GetMarginMask" type=
"int" overloaded=
"no">
34941 <autodoc>GetMarginMask(int margin) -
> int
</autodoc>
34943 <param name=
"margin" type=
"int" default=
""/>
34946 <method name=
"SetMarginSensitive" type=
"" overloaded=
"no">
34947 <autodoc>SetMarginSensitive(int margin, bool sensitive)
</autodoc>
34949 <param name=
"margin" type=
"int" default=
""/>
34950 <param name=
"sensitive" type=
"bool" default=
""/>
34953 <method name=
"GetMarginSensitive" type=
"bool" overloaded=
"no">
34954 <autodoc>GetMarginSensitive(int margin) -
> bool
</autodoc>
34956 <param name=
"margin" type=
"int" default=
""/>
34959 <method name=
"StyleClearAll" type=
"" overloaded=
"no">
34960 <autodoc>StyleClearAll()
</autodoc>
34962 <method name=
"StyleSetForeground" type=
"" overloaded=
"no">
34963 <autodoc>StyleSetForeground(int style, Colour fore)
</autodoc>
34965 <param name=
"style" type=
"int" default=
""/>
34966 <param name=
"fore" type=
"Colour" default=
""/>
34969 <method name=
"StyleSetBackground" type=
"" overloaded=
"no">
34970 <autodoc>StyleSetBackground(int style, Colour back)
</autodoc>
34972 <param name=
"style" type=
"int" default=
""/>
34973 <param name=
"back" type=
"Colour" default=
""/>
34976 <method name=
"StyleSetBold" type=
"" overloaded=
"no">
34977 <autodoc>StyleSetBold(int style, bool bold)
</autodoc>
34979 <param name=
"style" type=
"int" default=
""/>
34980 <param name=
"bold" type=
"bool" default=
""/>
34983 <method name=
"StyleSetItalic" type=
"" overloaded=
"no">
34984 <autodoc>StyleSetItalic(int style, bool italic)
</autodoc>
34986 <param name=
"style" type=
"int" default=
""/>
34987 <param name=
"italic" type=
"bool" default=
""/>
34990 <method name=
"StyleSetSize" type=
"" overloaded=
"no">
34991 <autodoc>StyleSetSize(int style, int sizePoints)
</autodoc>
34993 <param name=
"style" type=
"int" default=
""/>
34994 <param name=
"sizePoints" type=
"int" default=
""/>
34997 <method name=
"StyleSetFaceName" type=
"" overloaded=
"no">
34998 <autodoc>StyleSetFaceName(int style, String fontName)
</autodoc>
35000 <param name=
"style" type=
"int" default=
""/>
35001 <param name=
"fontName" type=
"String" default=
""/>
35004 <method name=
"StyleSetEOLFilled" type=
"" overloaded=
"no">
35005 <autodoc>StyleSetEOLFilled(int style, bool filled)
</autodoc>
35007 <param name=
"style" type=
"int" default=
""/>
35008 <param name=
"filled" type=
"bool" default=
""/>
35011 <method name=
"StyleResetDefault" type=
"" overloaded=
"no">
35012 <autodoc>StyleResetDefault()
</autodoc>
35014 <method name=
"StyleSetUnderline" type=
"" overloaded=
"no">
35015 <autodoc>StyleSetUnderline(int style, bool underline)
</autodoc>
35017 <param name=
"style" type=
"int" default=
""/>
35018 <param name=
"underline" type=
"bool" default=
""/>
35021 <method name=
"StyleSetCase" type=
"" overloaded=
"no">
35022 <autodoc>StyleSetCase(int style, int caseForce)
</autodoc>
35024 <param name=
"style" type=
"int" default=
""/>
35025 <param name=
"caseForce" type=
"int" default=
""/>
35028 <method name=
"StyleSetCharacterSet" type=
"" overloaded=
"no">
35029 <autodoc>StyleSetCharacterSet(int style, int characterSet)
</autodoc>
35031 <param name=
"style" type=
"int" default=
""/>
35032 <param name=
"characterSet" type=
"int" default=
""/>
35035 <method name=
"StyleSetHotSpot" type=
"" overloaded=
"no">
35036 <autodoc>StyleSetHotSpot(int style, bool hotspot)
</autodoc>
35038 <param name=
"style" type=
"int" default=
""/>
35039 <param name=
"hotspot" type=
"bool" default=
""/>
35042 <method name=
"SetSelForeground" type=
"" overloaded=
"no">
35043 <autodoc>SetSelForeground(bool useSetting, Colour fore)
</autodoc>
35045 <param name=
"useSetting" type=
"bool" default=
""/>
35046 <param name=
"fore" type=
"Colour" default=
""/>
35049 <method name=
"SetSelBackground" type=
"" overloaded=
"no">
35050 <autodoc>SetSelBackground(bool useSetting, Colour back)
</autodoc>
35052 <param name=
"useSetting" type=
"bool" default=
""/>
35053 <param name=
"back" type=
"Colour" default=
""/>
35056 <method name=
"SetCaretForeground" type=
"" overloaded=
"no">
35057 <autodoc>SetCaretForeground(Colour fore)
</autodoc>
35059 <param name=
"fore" type=
"Colour" default=
""/>
35062 <method name=
"CmdKeyAssign" type=
"" overloaded=
"no">
35063 <autodoc>CmdKeyAssign(int key, int modifiers, int cmd)
</autodoc>
35065 <param name=
"key" type=
"int" default=
""/>
35066 <param name=
"modifiers" type=
"int" default=
""/>
35067 <param name=
"cmd" type=
"int" default=
""/>
35070 <method name=
"CmdKeyClear" type=
"" overloaded=
"no">
35071 <autodoc>CmdKeyClear(int key, int modifiers)
</autodoc>
35073 <param name=
"key" type=
"int" default=
""/>
35074 <param name=
"modifiers" type=
"int" default=
""/>
35077 <method name=
"CmdKeyClearAll" type=
"" overloaded=
"no">
35078 <autodoc>CmdKeyClearAll()
</autodoc>
35080 <method name=
"SetStyleBytes" type=
"" overloaded=
"no">
35081 <autodoc>SetStyleBytes(int length, char styleBytes)
</autodoc>
35083 <param name=
"length" type=
"int" default=
""/>
35084 <param name=
"styleBytes" type=
"char" default=
""/>
35087 <method name=
"StyleSetVisible" type=
"" overloaded=
"no">
35088 <autodoc>StyleSetVisible(int style, bool visible)
</autodoc>
35090 <param name=
"style" type=
"int" default=
""/>
35091 <param name=
"visible" type=
"bool" default=
""/>
35094 <method name=
"GetCaretPeriod" type=
"int" overloaded=
"no">
35095 <autodoc>GetCaretPeriod() -
> int
</autodoc>
35097 <method name=
"SetCaretPeriod" type=
"" overloaded=
"no">
35098 <autodoc>SetCaretPeriod(int periodMilliseconds)
</autodoc>
35100 <param name=
"periodMilliseconds" type=
"int" default=
""/>
35103 <method name=
"SetWordChars" type=
"" overloaded=
"no">
35104 <autodoc>SetWordChars(String characters)
</autodoc>
35106 <param name=
"characters" type=
"String" default=
""/>
35109 <method name=
"BeginUndoAction" type=
"" overloaded=
"no">
35110 <autodoc>BeginUndoAction()
</autodoc>
35112 <method name=
"EndUndoAction" type=
"" overloaded=
"no">
35113 <autodoc>EndUndoAction()
</autodoc>
35115 <method name=
"IndicatorSetStyle" type=
"" overloaded=
"no">
35116 <autodoc>IndicatorSetStyle(int indic, int style)
</autodoc>
35118 <param name=
"indic" type=
"int" default=
""/>
35119 <param name=
"style" type=
"int" default=
""/>
35122 <method name=
"IndicatorGetStyle" type=
"int" overloaded=
"no">
35123 <autodoc>IndicatorGetStyle(int indic) -
> int
</autodoc>
35125 <param name=
"indic" type=
"int" default=
""/>
35128 <method name=
"IndicatorSetForeground" type=
"" overloaded=
"no">
35129 <autodoc>IndicatorSetForeground(int indic, Colour fore)
</autodoc>
35131 <param name=
"indic" type=
"int" default=
""/>
35132 <param name=
"fore" type=
"Colour" default=
""/>
35135 <method name=
"IndicatorGetForeground" type=
"Colour" overloaded=
"no">
35136 <autodoc>IndicatorGetForeground(int indic) -
> Colour
</autodoc>
35138 <param name=
"indic" type=
"int" default=
""/>
35141 <method name=
"SetWhitespaceForeground" type=
"" overloaded=
"no">
35142 <autodoc>SetWhitespaceForeground(bool useSetting, Colour fore)
</autodoc>
35144 <param name=
"useSetting" type=
"bool" default=
""/>
35145 <param name=
"fore" type=
"Colour" default=
""/>
35148 <method name=
"SetWhitespaceBackground" type=
"" overloaded=
"no">
35149 <autodoc>SetWhitespaceBackground(bool useSetting, Colour back)
</autodoc>
35151 <param name=
"useSetting" type=
"bool" default=
""/>
35152 <param name=
"back" type=
"Colour" default=
""/>
35155 <method name=
"SetStyleBits" type=
"" overloaded=
"no">
35156 <autodoc>SetStyleBits(int bits)
</autodoc>
35158 <param name=
"bits" type=
"int" default=
""/>
35161 <method name=
"GetStyleBits" type=
"int" overloaded=
"no">
35162 <autodoc>GetStyleBits() -
> int
</autodoc>
35164 <method name=
"SetLineState" type=
"" overloaded=
"no">
35165 <autodoc>SetLineState(int line, int state)
</autodoc>
35167 <param name=
"line" type=
"int" default=
""/>
35168 <param name=
"state" type=
"int" default=
""/>
35171 <method name=
"GetLineState" type=
"int" overloaded=
"no">
35172 <autodoc>GetLineState(int line) -
> int
</autodoc>
35174 <param name=
"line" type=
"int" default=
""/>
35177 <method name=
"GetMaxLineState" type=
"int" overloaded=
"no">
35178 <autodoc>GetMaxLineState() -
> int
</autodoc>
35180 <method name=
"GetCaretLineVisible" type=
"bool" overloaded=
"no">
35181 <autodoc>GetCaretLineVisible() -
> bool
</autodoc>
35183 <method name=
"SetCaretLineVisible" type=
"" overloaded=
"no">
35184 <autodoc>SetCaretLineVisible(bool show)
</autodoc>
35186 <param name=
"show" type=
"bool" default=
""/>
35189 <method name=
"GetCaretLineBack" type=
"Colour" overloaded=
"no">
35190 <autodoc>GetCaretLineBack() -
> Colour
</autodoc>
35192 <method name=
"SetCaretLineBack" type=
"" overloaded=
"no">
35193 <autodoc>SetCaretLineBack(Colour back)
</autodoc>
35195 <param name=
"back" type=
"Colour" default=
""/>
35198 <method name=
"StyleSetChangeable" type=
"" overloaded=
"no">
35199 <autodoc>StyleSetChangeable(int style, bool changeable)
</autodoc>
35201 <param name=
"style" type=
"int" default=
""/>
35202 <param name=
"changeable" type=
"bool" default=
""/>
35205 <method name=
"AutoCompShow" type=
"" overloaded=
"no">
35206 <autodoc>AutoCompShow(int lenEntered, String itemList)
</autodoc>
35208 <param name=
"lenEntered" type=
"int" default=
""/>
35209 <param name=
"itemList" type=
"String" default=
""/>
35212 <method name=
"AutoCompCancel" type=
"" overloaded=
"no">
35213 <autodoc>AutoCompCancel()
</autodoc>
35215 <method name=
"AutoCompActive" type=
"bool" overloaded=
"no">
35216 <autodoc>AutoCompActive() -
> bool
</autodoc>
35218 <method name=
"AutoCompPosStart" type=
"int" overloaded=
"no">
35219 <autodoc>AutoCompPosStart() -
> int
</autodoc>
35221 <method name=
"AutoCompComplete" type=
"" overloaded=
"no">
35222 <autodoc>AutoCompComplete()
</autodoc>
35224 <method name=
"AutoCompStops" type=
"" overloaded=
"no">
35225 <autodoc>AutoCompStops(String characterSet)
</autodoc>
35227 <param name=
"characterSet" type=
"String" default=
""/>
35230 <method name=
"AutoCompSetSeparator" type=
"" overloaded=
"no">
35231 <autodoc>AutoCompSetSeparator(int separatorCharacter)
</autodoc>
35233 <param name=
"separatorCharacter" type=
"int" default=
""/>
35236 <method name=
"AutoCompGetSeparator" type=
"int" overloaded=
"no">
35237 <autodoc>AutoCompGetSeparator() -
> int
</autodoc>
35239 <method name=
"AutoCompSelect" type=
"" overloaded=
"no">
35240 <autodoc>AutoCompSelect(String text)
</autodoc>
35242 <param name=
"text" type=
"String" default=
""/>
35245 <method name=
"AutoCompSetCancelAtStart" type=
"" overloaded=
"no">
35246 <autodoc>AutoCompSetCancelAtStart(bool cancel)
</autodoc>
35248 <param name=
"cancel" type=
"bool" default=
""/>
35251 <method name=
"AutoCompGetCancelAtStart" type=
"bool" overloaded=
"no">
35252 <autodoc>AutoCompGetCancelAtStart() -
> bool
</autodoc>
35254 <method name=
"AutoCompSetFillUps" type=
"" overloaded=
"no">
35255 <autodoc>AutoCompSetFillUps(String characterSet)
</autodoc>
35257 <param name=
"characterSet" type=
"String" default=
""/>
35260 <method name=
"AutoCompSetChooseSingle" type=
"" overloaded=
"no">
35261 <autodoc>AutoCompSetChooseSingle(bool chooseSingle)
</autodoc>
35263 <param name=
"chooseSingle" type=
"bool" default=
""/>
35266 <method name=
"AutoCompGetChooseSingle" type=
"bool" overloaded=
"no">
35267 <autodoc>AutoCompGetChooseSingle() -
> bool
</autodoc>
35269 <method name=
"AutoCompSetIgnoreCase" type=
"" overloaded=
"no">
35270 <autodoc>AutoCompSetIgnoreCase(bool ignoreCase)
</autodoc>
35272 <param name=
"ignoreCase" type=
"bool" default=
""/>
35275 <method name=
"AutoCompGetIgnoreCase" type=
"bool" overloaded=
"no">
35276 <autodoc>AutoCompGetIgnoreCase() -
> bool
</autodoc>
35278 <method name=
"UserListShow" type=
"" overloaded=
"no">
35279 <autodoc>UserListShow(int listType, String itemList)
</autodoc>
35281 <param name=
"listType" type=
"int" default=
""/>
35282 <param name=
"itemList" type=
"String" default=
""/>
35285 <method name=
"AutoCompSetAutoHide" type=
"" overloaded=
"no">
35286 <autodoc>AutoCompSetAutoHide(bool autoHide)
</autodoc>
35288 <param name=
"autoHide" type=
"bool" default=
""/>
35291 <method name=
"AutoCompGetAutoHide" type=
"bool" overloaded=
"no">
35292 <autodoc>AutoCompGetAutoHide() -
> bool
</autodoc>
35294 <method name=
"AutoCompSetDropRestOfWord" type=
"" overloaded=
"no">
35295 <autodoc>AutoCompSetDropRestOfWord(bool dropRestOfWord)
</autodoc>
35297 <param name=
"dropRestOfWord" type=
"bool" default=
""/>
35300 <method name=
"AutoCompGetDropRestOfWord" type=
"bool" overloaded=
"no">
35301 <autodoc>AutoCompGetDropRestOfWord() -
> bool
</autodoc>
35303 <method name=
"RegisterImage" type=
"" overloaded=
"no">
35304 <autodoc>RegisterImage(int type, Bitmap bmp)
</autodoc>
35306 <param name=
"type" type=
"int" default=
""/>
35307 <param name=
"bmp" type=
"Bitmap" default=
""/>
35310 <method name=
"ClearRegisteredImages" type=
"" overloaded=
"no">
35311 <autodoc>ClearRegisteredImages()
</autodoc>
35313 <method name=
"AutoCompGetTypeSeparator" type=
"int" overloaded=
"no">
35314 <autodoc>AutoCompGetTypeSeparator() -
> int
</autodoc>
35316 <method name=
"AutoCompSetTypeSeparator" type=
"" overloaded=
"no">
35317 <autodoc>AutoCompSetTypeSeparator(int separatorCharacter)
</autodoc>
35319 <param name=
"separatorCharacter" type=
"int" default=
""/>
35322 <method name=
"SetIndent" type=
"" overloaded=
"no">
35323 <autodoc>SetIndent(int indentSize)
</autodoc>
35325 <param name=
"indentSize" type=
"int" default=
""/>
35328 <method name=
"GetIndent" type=
"int" overloaded=
"no">
35329 <autodoc>GetIndent() -
> int
</autodoc>
35331 <method name=
"SetUseTabs" type=
"" overloaded=
"no">
35332 <autodoc>SetUseTabs(bool useTabs)
</autodoc>
35334 <param name=
"useTabs" type=
"bool" default=
""/>
35337 <method name=
"GetUseTabs" type=
"bool" overloaded=
"no">
35338 <autodoc>GetUseTabs() -
> bool
</autodoc>
35340 <method name=
"SetLineIndentation" type=
"" overloaded=
"no">
35341 <autodoc>SetLineIndentation(int line, int indentSize)
</autodoc>
35343 <param name=
"line" type=
"int" default=
""/>
35344 <param name=
"indentSize" type=
"int" default=
""/>
35347 <method name=
"GetLineIndentation" type=
"int" overloaded=
"no">
35348 <autodoc>GetLineIndentation(int line) -
> int
</autodoc>
35350 <param name=
"line" type=
"int" default=
""/>
35353 <method name=
"GetLineIndentPosition" type=
"int" overloaded=
"no">
35354 <autodoc>GetLineIndentPosition(int line) -
> int
</autodoc>
35356 <param name=
"line" type=
"int" default=
""/>
35359 <method name=
"GetColumn" type=
"int" overloaded=
"no">
35360 <autodoc>GetColumn(int pos) -
> int
</autodoc>
35362 <param name=
"pos" type=
"int" default=
""/>
35365 <method name=
"SetUseHorizontalScrollBar" type=
"" overloaded=
"no">
35366 <autodoc>SetUseHorizontalScrollBar(bool show)
</autodoc>
35368 <param name=
"show" type=
"bool" default=
""/>
35371 <method name=
"GetUseHorizontalScrollBar" type=
"bool" overloaded=
"no">
35372 <autodoc>GetUseHorizontalScrollBar() -
> bool
</autodoc>
35374 <method name=
"SetIndentationGuides" type=
"" overloaded=
"no">
35375 <autodoc>SetIndentationGuides(bool show)
</autodoc>
35377 <param name=
"show" type=
"bool" default=
""/>
35380 <method name=
"GetIndentationGuides" type=
"bool" overloaded=
"no">
35381 <autodoc>GetIndentationGuides() -
> bool
</autodoc>
35383 <method name=
"SetHighlightGuide" type=
"" overloaded=
"no">
35384 <autodoc>SetHighlightGuide(int column)
</autodoc>
35386 <param name=
"column" type=
"int" default=
""/>
35389 <method name=
"GetHighlightGuide" type=
"int" overloaded=
"no">
35390 <autodoc>GetHighlightGuide() -
> int
</autodoc>
35392 <method name=
"GetLineEndPosition" type=
"int" overloaded=
"no">
35393 <autodoc>GetLineEndPosition(int line) -
> int
</autodoc>
35395 <param name=
"line" type=
"int" default=
""/>
35398 <method name=
"GetCodePage" type=
"int" overloaded=
"no">
35399 <autodoc>GetCodePage() -
> int
</autodoc>
35401 <method name=
"GetCaretForeground" type=
"Colour" overloaded=
"no">
35402 <autodoc>GetCaretForeground() -
> Colour
</autodoc>
35404 <method name=
"GetReadOnly" type=
"bool" overloaded=
"no">
35405 <autodoc>GetReadOnly() -
> bool
</autodoc>
35407 <method name=
"SetCurrentPos" type=
"" overloaded=
"no">
35408 <autodoc>SetCurrentPos(int pos)
</autodoc>
35410 <param name=
"pos" type=
"int" default=
""/>
35413 <method name=
"SetSelectionStart" type=
"" overloaded=
"no">
35414 <autodoc>SetSelectionStart(int pos)
</autodoc>
35416 <param name=
"pos" type=
"int" default=
""/>
35419 <method name=
"GetSelectionStart" type=
"int" overloaded=
"no">
35420 <autodoc>GetSelectionStart() -
> int
</autodoc>
35422 <method name=
"SetSelectionEnd" type=
"" overloaded=
"no">
35423 <autodoc>SetSelectionEnd(int pos)
</autodoc>
35425 <param name=
"pos" type=
"int" default=
""/>
35428 <method name=
"GetSelectionEnd" type=
"int" overloaded=
"no">
35429 <autodoc>GetSelectionEnd() -
> int
</autodoc>
35431 <method name=
"SetPrintMagnification" type=
"" overloaded=
"no">
35432 <autodoc>SetPrintMagnification(int magnification)
</autodoc>
35434 <param name=
"magnification" type=
"int" default=
""/>
35437 <method name=
"GetPrintMagnification" type=
"int" overloaded=
"no">
35438 <autodoc>GetPrintMagnification() -
> int
</autodoc>
35440 <method name=
"SetPrintColourMode" type=
"" overloaded=
"no">
35441 <autodoc>SetPrintColourMode(int mode)
</autodoc>
35443 <param name=
"mode" type=
"int" default=
""/>
35446 <method name=
"GetPrintColourMode" type=
"int" overloaded=
"no">
35447 <autodoc>GetPrintColourMode() -
> int
</autodoc>
35449 <method name=
"FindText" type=
"int" overloaded=
"no">
35450 <autodoc>FindText(int minPos, int maxPos, String text, int flags=
0) -
> int
</autodoc>
35452 <param name=
"minPos" type=
"int" default=
""/>
35453 <param name=
"maxPos" type=
"int" default=
""/>
35454 <param name=
"text" type=
"String" default=
""/>
35455 <param name=
"flags" type=
"int" default=
"0"/>
35458 <method name=
"FormatRange" type=
"int" overloaded=
"no">
35459 <autodoc>FormatRange(bool doDraw, int startPos, int endPos, DC draw, DC target,
35460 Rect renderRect, Rect pageRect) -
> int
</autodoc>
35462 <param name=
"doDraw" type=
"bool" default=
""/>
35463 <param name=
"startPos" type=
"int" default=
""/>
35464 <param name=
"endPos" type=
"int" default=
""/>
35465 <param name=
"draw" type=
"DC" default=
""/>
35466 <param name=
"target" type=
"DC" default=
""/>
35467 <param name=
"renderRect" type=
"Rect" default=
""/>
35468 <param name=
"pageRect" type=
"Rect" default=
""/>
35471 <method name=
"GetFirstVisibleLine" type=
"int" overloaded=
"no">
35472 <autodoc>GetFirstVisibleLine() -
> int
</autodoc>
35474 <method name=
"GetLine" type=
"String" overloaded=
"no">
35475 <autodoc>GetLine(int line) -
> String
</autodoc>
35477 <param name=
"line" type=
"int" default=
""/>
35480 <method name=
"GetLineCount" type=
"int" overloaded=
"no">
35481 <autodoc>GetLineCount() -
> int
</autodoc>
35483 <method name=
"SetMarginLeft" type=
"" overloaded=
"no">
35484 <autodoc>SetMarginLeft(int pixelWidth)
</autodoc>
35486 <param name=
"pixelWidth" type=
"int" default=
""/>
35489 <method name=
"GetMarginLeft" type=
"int" overloaded=
"no">
35490 <autodoc>GetMarginLeft() -
> int
</autodoc>
35492 <method name=
"SetMarginRight" type=
"" overloaded=
"no">
35493 <autodoc>SetMarginRight(int pixelWidth)
</autodoc>
35495 <param name=
"pixelWidth" type=
"int" default=
""/>
35498 <method name=
"GetMarginRight" type=
"int" overloaded=
"no">
35499 <autodoc>GetMarginRight() -
> int
</autodoc>
35501 <method name=
"GetModify" type=
"bool" overloaded=
"no">
35502 <autodoc>GetModify() -
> bool
</autodoc>
35504 <method name=
"SetSelection" type=
"" overloaded=
"no">
35505 <autodoc>SetSelection(int start, int end)
</autodoc>
35507 <param name=
"start" type=
"int" default=
""/>
35508 <param name=
"end" type=
"int" default=
""/>
35511 <method name=
"GetSelectedText" type=
"String" overloaded=
"no">
35512 <autodoc>GetSelectedText() -
> String
</autodoc>
35514 <method name=
"GetTextRange" type=
"String" overloaded=
"no">
35515 <autodoc>GetTextRange(int startPos, int endPos) -
> String
</autodoc>
35517 <param name=
"startPos" type=
"int" default=
""/>
35518 <param name=
"endPos" type=
"int" default=
""/>
35521 <method name=
"HideSelection" type=
"" overloaded=
"no">
35522 <autodoc>HideSelection(bool normal)
</autodoc>
35524 <param name=
"normal" type=
"bool" default=
""/>
35527 <method name=
"LineFromPosition" type=
"int" overloaded=
"no">
35528 <autodoc>LineFromPosition(int pos) -
> int
</autodoc>
35530 <param name=
"pos" type=
"int" default=
""/>
35533 <method name=
"PositionFromLine" type=
"int" overloaded=
"no">
35534 <autodoc>PositionFromLine(int line) -
> int
</autodoc>
35536 <param name=
"line" type=
"int" default=
""/>
35539 <method name=
"LineScroll" type=
"" overloaded=
"no">
35540 <autodoc>LineScroll(int columns, int lines)
</autodoc>
35542 <param name=
"columns" type=
"int" default=
""/>
35543 <param name=
"lines" type=
"int" default=
""/>
35546 <method name=
"EnsureCaretVisible" type=
"" overloaded=
"no">
35547 <autodoc>EnsureCaretVisible()
</autodoc>
35549 <method name=
"ReplaceSelection" type=
"" overloaded=
"no">
35550 <autodoc>ReplaceSelection(String text)
</autodoc>
35552 <param name=
"text" type=
"String" default=
""/>
35555 <method name=
"SetReadOnly" type=
"" overloaded=
"no">
35556 <autodoc>SetReadOnly(bool readOnly)
</autodoc>
35558 <param name=
"readOnly" type=
"bool" default=
""/>
35561 <method name=
"CanPaste" type=
"bool" overloaded=
"no">
35562 <autodoc>CanPaste() -
> bool
</autodoc>
35564 <method name=
"CanUndo" type=
"bool" overloaded=
"no">
35565 <autodoc>CanUndo() -
> bool
</autodoc>
35567 <method name=
"EmptyUndoBuffer" type=
"" overloaded=
"no">
35568 <autodoc>EmptyUndoBuffer()
</autodoc>
35570 <method name=
"Undo" type=
"" overloaded=
"no">
35571 <autodoc>Undo()
</autodoc>
35573 <method name=
"Cut" type=
"" overloaded=
"no">
35574 <autodoc>Cut()
</autodoc>
35576 <method name=
"Copy" type=
"" overloaded=
"no">
35577 <autodoc>Copy()
</autodoc>
35579 <method name=
"Paste" type=
"" overloaded=
"no">
35580 <autodoc>Paste()
</autodoc>
35582 <method name=
"Clear" type=
"" overloaded=
"no">
35583 <autodoc>Clear()
</autodoc>
35585 <method name=
"SetText" type=
"" overloaded=
"no">
35586 <autodoc>SetText(String text)
</autodoc>
35588 <param name=
"text" type=
"String" default=
""/>
35591 <method name=
"GetText" type=
"String" overloaded=
"no">
35592 <autodoc>GetText() -
> String
</autodoc>
35594 <method name=
"GetTextLength" type=
"int" overloaded=
"no">
35595 <autodoc>GetTextLength() -
> int
</autodoc>
35597 <method name=
"SetOvertype" type=
"" overloaded=
"no">
35598 <autodoc>SetOvertype(bool overtype)
</autodoc>
35600 <param name=
"overtype" type=
"bool" default=
""/>
35603 <method name=
"GetOvertype" type=
"bool" overloaded=
"no">
35604 <autodoc>GetOvertype() -
> bool
</autodoc>
35606 <method name=
"SetCaretWidth" type=
"" overloaded=
"no">
35607 <autodoc>SetCaretWidth(int pixelWidth)
</autodoc>
35609 <param name=
"pixelWidth" type=
"int" default=
""/>
35612 <method name=
"GetCaretWidth" type=
"int" overloaded=
"no">
35613 <autodoc>GetCaretWidth() -
> int
</autodoc>
35615 <method name=
"SetTargetStart" type=
"" overloaded=
"no">
35616 <autodoc>SetTargetStart(int pos)
</autodoc>
35618 <param name=
"pos" type=
"int" default=
""/>
35621 <method name=
"GetTargetStart" type=
"int" overloaded=
"no">
35622 <autodoc>GetTargetStart() -
> int
</autodoc>
35624 <method name=
"SetTargetEnd" type=
"" overloaded=
"no">
35625 <autodoc>SetTargetEnd(int pos)
</autodoc>
35627 <param name=
"pos" type=
"int" default=
""/>
35630 <method name=
"GetTargetEnd" type=
"int" overloaded=
"no">
35631 <autodoc>GetTargetEnd() -
> int
</autodoc>
35633 <method name=
"ReplaceTarget" type=
"int" overloaded=
"no">
35634 <autodoc>ReplaceTarget(String text) -
> int
</autodoc>
35636 <param name=
"text" type=
"String" default=
""/>
35639 <method name=
"ReplaceTargetRE" type=
"int" overloaded=
"no">
35640 <autodoc>ReplaceTargetRE(String text) -
> int
</autodoc>
35642 <param name=
"text" type=
"String" default=
""/>
35645 <method name=
"SearchInTarget" type=
"int" overloaded=
"no">
35646 <autodoc>SearchInTarget(String text) -
> int
</autodoc>
35648 <param name=
"text" type=
"String" default=
""/>
35651 <method name=
"SetSearchFlags" type=
"" overloaded=
"no">
35652 <autodoc>SetSearchFlags(int flags)
</autodoc>
35654 <param name=
"flags" type=
"int" default=
""/>
35657 <method name=
"GetSearchFlags" type=
"int" overloaded=
"no">
35658 <autodoc>GetSearchFlags() -
> int
</autodoc>
35660 <method name=
"CallTipShow" type=
"" overloaded=
"no">
35661 <autodoc>CallTipShow(int pos, String definition)
</autodoc>
35663 <param name=
"pos" type=
"int" default=
""/>
35664 <param name=
"definition" type=
"String" default=
""/>
35667 <method name=
"CallTipCancel" type=
"" overloaded=
"no">
35668 <autodoc>CallTipCancel()
</autodoc>
35670 <method name=
"CallTipActive" type=
"bool" overloaded=
"no">
35671 <autodoc>CallTipActive() -
> bool
</autodoc>
35673 <method name=
"CallTipPosAtStart" type=
"int" overloaded=
"no">
35674 <autodoc>CallTipPosAtStart() -
> int
</autodoc>
35676 <method name=
"CallTipSetHighlight" type=
"" overloaded=
"no">
35677 <autodoc>CallTipSetHighlight(int start, int end)
</autodoc>
35679 <param name=
"start" type=
"int" default=
""/>
35680 <param name=
"end" type=
"int" default=
""/>
35683 <method name=
"CallTipSetBackground" type=
"" overloaded=
"no">
35684 <autodoc>CallTipSetBackground(Colour back)
</autodoc>
35686 <param name=
"back" type=
"Colour" default=
""/>
35689 <method name=
"CallTipSetForeground" type=
"" overloaded=
"no">
35690 <autodoc>CallTipSetForeground(Colour fore)
</autodoc>
35692 <param name=
"fore" type=
"Colour" default=
""/>
35695 <method name=
"CallTipSetForegroundHighlight" type=
"" overloaded=
"no">
35696 <autodoc>CallTipSetForegroundHighlight(Colour fore)
</autodoc>
35698 <param name=
"fore" type=
"Colour" default=
""/>
35701 <method name=
"VisibleFromDocLine" type=
"int" overloaded=
"no">
35702 <autodoc>VisibleFromDocLine(int line) -
> int
</autodoc>
35704 <param name=
"line" type=
"int" default=
""/>
35707 <method name=
"DocLineFromVisible" type=
"int" overloaded=
"no">
35708 <autodoc>DocLineFromVisible(int lineDisplay) -
> int
</autodoc>
35710 <param name=
"lineDisplay" type=
"int" default=
""/>
35713 <method name=
"SetFoldLevel" type=
"" overloaded=
"no">
35714 <autodoc>SetFoldLevel(int line, int level)
</autodoc>
35716 <param name=
"line" type=
"int" default=
""/>
35717 <param name=
"level" type=
"int" default=
""/>
35720 <method name=
"GetFoldLevel" type=
"int" overloaded=
"no">
35721 <autodoc>GetFoldLevel(int line) -
> int
</autodoc>
35723 <param name=
"line" type=
"int" default=
""/>
35726 <method name=
"GetLastChild" type=
"int" overloaded=
"no">
35727 <autodoc>GetLastChild(int line, int level) -
> int
</autodoc>
35729 <param name=
"line" type=
"int" default=
""/>
35730 <param name=
"level" type=
"int" default=
""/>
35733 <method name=
"GetFoldParent" type=
"int" overloaded=
"no">
35734 <autodoc>GetFoldParent(int line) -
> int
</autodoc>
35736 <param name=
"line" type=
"int" default=
""/>
35739 <method name=
"ShowLines" type=
"" overloaded=
"no">
35740 <autodoc>ShowLines(int lineStart, int lineEnd)
</autodoc>
35742 <param name=
"lineStart" type=
"int" default=
""/>
35743 <param name=
"lineEnd" type=
"int" default=
""/>
35746 <method name=
"HideLines" type=
"" overloaded=
"no">
35747 <autodoc>HideLines(int lineStart, int lineEnd)
</autodoc>
35749 <param name=
"lineStart" type=
"int" default=
""/>
35750 <param name=
"lineEnd" type=
"int" default=
""/>
35753 <method name=
"GetLineVisible" type=
"bool" overloaded=
"no">
35754 <autodoc>GetLineVisible(int line) -
> bool
</autodoc>
35756 <param name=
"line" type=
"int" default=
""/>
35759 <method name=
"SetFoldExpanded" type=
"" overloaded=
"no">
35760 <autodoc>SetFoldExpanded(int line, bool expanded)
</autodoc>
35762 <param name=
"line" type=
"int" default=
""/>
35763 <param name=
"expanded" type=
"bool" default=
""/>
35766 <method name=
"GetFoldExpanded" type=
"bool" overloaded=
"no">
35767 <autodoc>GetFoldExpanded(int line) -
> bool
</autodoc>
35769 <param name=
"line" type=
"int" default=
""/>
35772 <method name=
"ToggleFold" type=
"" overloaded=
"no">
35773 <autodoc>ToggleFold(int line)
</autodoc>
35775 <param name=
"line" type=
"int" default=
""/>
35778 <method name=
"EnsureVisible" type=
"" overloaded=
"no">
35779 <autodoc>EnsureVisible(int line)
</autodoc>
35781 <param name=
"line" type=
"int" default=
""/>
35784 <method name=
"SetFoldFlags" type=
"" overloaded=
"no">
35785 <autodoc>SetFoldFlags(int flags)
</autodoc>
35787 <param name=
"flags" type=
"int" default=
""/>
35790 <method name=
"EnsureVisibleEnforcePolicy" type=
"" overloaded=
"no">
35791 <autodoc>EnsureVisibleEnforcePolicy(int line)
</autodoc>
35793 <param name=
"line" type=
"int" default=
""/>
35796 <method name=
"SetTabIndents" type=
"" overloaded=
"no">
35797 <autodoc>SetTabIndents(bool tabIndents)
</autodoc>
35799 <param name=
"tabIndents" type=
"bool" default=
""/>
35802 <method name=
"GetTabIndents" type=
"bool" overloaded=
"no">
35803 <autodoc>GetTabIndents() -
> bool
</autodoc>
35805 <method name=
"SetBackSpaceUnIndents" type=
"" overloaded=
"no">
35806 <autodoc>SetBackSpaceUnIndents(bool bsUnIndents)
</autodoc>
35808 <param name=
"bsUnIndents" type=
"bool" default=
""/>
35811 <method name=
"GetBackSpaceUnIndents" type=
"bool" overloaded=
"no">
35812 <autodoc>GetBackSpaceUnIndents() -
> bool
</autodoc>
35814 <method name=
"SetMouseDwellTime" type=
"" overloaded=
"no">
35815 <autodoc>SetMouseDwellTime(int periodMilliseconds)
</autodoc>
35817 <param name=
"periodMilliseconds" type=
"int" default=
""/>
35820 <method name=
"GetMouseDwellTime" type=
"int" overloaded=
"no">
35821 <autodoc>GetMouseDwellTime() -
> int
</autodoc>
35823 <method name=
"WordStartPosition" type=
"int" overloaded=
"no">
35824 <autodoc>WordStartPosition(int pos, bool onlyWordCharacters) -
> int
</autodoc>
35826 <param name=
"pos" type=
"int" default=
""/>
35827 <param name=
"onlyWordCharacters" type=
"bool" default=
""/>
35830 <method name=
"WordEndPosition" type=
"int" overloaded=
"no">
35831 <autodoc>WordEndPosition(int pos, bool onlyWordCharacters) -
> int
</autodoc>
35833 <param name=
"pos" type=
"int" default=
""/>
35834 <param name=
"onlyWordCharacters" type=
"bool" default=
""/>
35837 <method name=
"SetWrapMode" type=
"" overloaded=
"no">
35838 <autodoc>SetWrapMode(int mode)
</autodoc>
35840 <param name=
"mode" type=
"int" default=
""/>
35843 <method name=
"GetWrapMode" type=
"int" overloaded=
"no">
35844 <autodoc>GetWrapMode() -
> int
</autodoc>
35846 <method name=
"SetLayoutCache" type=
"" overloaded=
"no">
35847 <autodoc>SetLayoutCache(int mode)
</autodoc>
35849 <param name=
"mode" type=
"int" default=
""/>
35852 <method name=
"GetLayoutCache" type=
"int" overloaded=
"no">
35853 <autodoc>GetLayoutCache() -
> int
</autodoc>
35855 <method name=
"SetScrollWidth" type=
"" overloaded=
"no">
35856 <autodoc>SetScrollWidth(int pixelWidth)
</autodoc>
35858 <param name=
"pixelWidth" type=
"int" default=
""/>
35861 <method name=
"GetScrollWidth" type=
"int" overloaded=
"no">
35862 <autodoc>GetScrollWidth() -
> int
</autodoc>
35864 <method name=
"TextWidth" type=
"int" overloaded=
"no">
35865 <autodoc>TextWidth(int style, String text) -
> int
</autodoc>
35867 <param name=
"style" type=
"int" default=
""/>
35868 <param name=
"text" type=
"String" default=
""/>
35871 <method name=
"SetEndAtLastLine" type=
"" overloaded=
"no">
35872 <autodoc>SetEndAtLastLine(bool endAtLastLine)
</autodoc>
35874 <param name=
"endAtLastLine" type=
"bool" default=
""/>
35877 <method name=
"GetEndAtLastLine" type=
"int" overloaded=
"no">
35878 <autodoc>GetEndAtLastLine() -
> int
</autodoc>
35880 <method name=
"TextHeight" type=
"int" overloaded=
"no">
35881 <autodoc>TextHeight(int line) -
> int
</autodoc>
35883 <param name=
"line" type=
"int" default=
""/>
35886 <method name=
"SetUseVerticalScrollBar" type=
"" overloaded=
"no">
35887 <autodoc>SetUseVerticalScrollBar(bool show)
</autodoc>
35889 <param name=
"show" type=
"bool" default=
""/>
35892 <method name=
"GetUseVerticalScrollBar" type=
"bool" overloaded=
"no">
35893 <autodoc>GetUseVerticalScrollBar() -
> bool
</autodoc>
35895 <method name=
"AppendText" type=
"" overloaded=
"no">
35896 <autodoc>AppendText(int length, String text)
</autodoc>
35898 <param name=
"length" type=
"int" default=
""/>
35899 <param name=
"text" type=
"String" default=
""/>
35902 <method name=
"GetTwoPhaseDraw" type=
"bool" overloaded=
"no">
35903 <autodoc>GetTwoPhaseDraw() -
> bool
</autodoc>
35905 <method name=
"SetTwoPhaseDraw" type=
"" overloaded=
"no">
35906 <autodoc>SetTwoPhaseDraw(bool twoPhase)
</autodoc>
35908 <param name=
"twoPhase" type=
"bool" default=
""/>
35911 <method name=
"TargetFromSelection" type=
"" overloaded=
"no">
35912 <autodoc>TargetFromSelection()
</autodoc>
35914 <method name=
"LinesJoin" type=
"" overloaded=
"no">
35915 <autodoc>LinesJoin()
</autodoc>
35917 <method name=
"LinesSplit" type=
"" overloaded=
"no">
35918 <autodoc>LinesSplit(int pixelWidth)
</autodoc>
35920 <param name=
"pixelWidth" type=
"int" default=
""/>
35923 <method name=
"SetFoldMarginColour" type=
"" overloaded=
"no">
35924 <autodoc>SetFoldMarginColour(bool useSetting, Colour back)
</autodoc>
35926 <param name=
"useSetting" type=
"bool" default=
""/>
35927 <param name=
"back" type=
"Colour" default=
""/>
35930 <method name=
"SetFoldMarginHiColour" type=
"" overloaded=
"no">
35931 <autodoc>SetFoldMarginHiColour(bool useSetting, Colour fore)
</autodoc>
35933 <param name=
"useSetting" type=
"bool" default=
""/>
35934 <param name=
"fore" type=
"Colour" default=
""/>
35937 <method name=
"LineDown" type=
"" overloaded=
"no">
35938 <autodoc>LineDown()
</autodoc>
35939 <docstring>This is just a wrapper for ScrollLines(
1).
</docstring>
35941 <method name=
"LineDownExtend" type=
"" overloaded=
"no">
35942 <autodoc>LineDownExtend()
</autodoc>
35944 <method name=
"LineUp" type=
"" overloaded=
"no">
35945 <autodoc>LineUp()
</autodoc>
35946 <docstring>This is just a wrapper for ScrollLines(-
1).
</docstring>
35948 <method name=
"LineUpExtend" type=
"" overloaded=
"no">
35949 <autodoc>LineUpExtend()
</autodoc>
35951 <method name=
"CharLeft" type=
"" overloaded=
"no">
35952 <autodoc>CharLeft()
</autodoc>
35954 <method name=
"CharLeftExtend" type=
"" overloaded=
"no">
35955 <autodoc>CharLeftExtend()
</autodoc>
35957 <method name=
"CharRight" type=
"" overloaded=
"no">
35958 <autodoc>CharRight()
</autodoc>
35960 <method name=
"CharRightExtend" type=
"" overloaded=
"no">
35961 <autodoc>CharRightExtend()
</autodoc>
35963 <method name=
"WordLeft" type=
"" overloaded=
"no">
35964 <autodoc>WordLeft()
</autodoc>
35966 <method name=
"WordLeftExtend" type=
"" overloaded=
"no">
35967 <autodoc>WordLeftExtend()
</autodoc>
35969 <method name=
"WordRight" type=
"" overloaded=
"no">
35970 <autodoc>WordRight()
</autodoc>
35972 <method name=
"WordRightExtend" type=
"" overloaded=
"no">
35973 <autodoc>WordRightExtend()
</autodoc>
35975 <method name=
"Home" type=
"" overloaded=
"no">
35976 <autodoc>Home()
</autodoc>
35978 <method name=
"HomeExtend" type=
"" overloaded=
"no">
35979 <autodoc>HomeExtend()
</autodoc>
35981 <method name=
"LineEnd" type=
"" overloaded=
"no">
35982 <autodoc>LineEnd()
</autodoc>
35984 <method name=
"LineEndExtend" type=
"" overloaded=
"no">
35985 <autodoc>LineEndExtend()
</autodoc>
35987 <method name=
"DocumentStart" type=
"" overloaded=
"no">
35988 <autodoc>DocumentStart()
</autodoc>
35990 <method name=
"DocumentStartExtend" type=
"" overloaded=
"no">
35991 <autodoc>DocumentStartExtend()
</autodoc>
35993 <method name=
"DocumentEnd" type=
"" overloaded=
"no">
35994 <autodoc>DocumentEnd()
</autodoc>
35996 <method name=
"DocumentEndExtend" type=
"" overloaded=
"no">
35997 <autodoc>DocumentEndExtend()
</autodoc>
35999 <method name=
"PageUp" type=
"" overloaded=
"no">
36000 <autodoc>PageUp()
</autodoc>
36001 <docstring>This is just a wrapper for ScrollPages(-
1).
</docstring>
36003 <method name=
"PageUpExtend" type=
"" overloaded=
"no">
36004 <autodoc>PageUpExtend()
</autodoc>
36006 <method name=
"PageDown" type=
"" overloaded=
"no">
36007 <autodoc>PageDown()
</autodoc>
36008 <docstring>This is just a wrapper for ScrollPages(
1).
</docstring>
36010 <method name=
"PageDownExtend" type=
"" overloaded=
"no">
36011 <autodoc>PageDownExtend()
</autodoc>
36013 <method name=
"EditToggleOvertype" type=
"" overloaded=
"no">
36014 <autodoc>EditToggleOvertype()
</autodoc>
36016 <method name=
"Cancel" type=
"" overloaded=
"no">
36017 <autodoc>Cancel()
</autodoc>
36019 <method name=
"DeleteBack" type=
"" overloaded=
"no">
36020 <autodoc>DeleteBack()
</autodoc>
36022 <method name=
"Tab" type=
"" overloaded=
"no">
36023 <autodoc>Tab()
</autodoc>
36025 <method name=
"BackTab" type=
"" overloaded=
"no">
36026 <autodoc>BackTab()
</autodoc>
36028 <method name=
"NewLine" type=
"" overloaded=
"no">
36029 <autodoc>NewLine()
</autodoc>
36031 <method name=
"FormFeed" type=
"" overloaded=
"no">
36032 <autodoc>FormFeed()
</autodoc>
36034 <method name=
"VCHome" type=
"" overloaded=
"no">
36035 <autodoc>VCHome()
</autodoc>
36037 <method name=
"VCHomeExtend" type=
"" overloaded=
"no">
36038 <autodoc>VCHomeExtend()
</autodoc>
36040 <method name=
"ZoomIn" type=
"" overloaded=
"no">
36041 <autodoc>ZoomIn()
</autodoc>
36043 <method name=
"ZoomOut" type=
"" overloaded=
"no">
36044 <autodoc>ZoomOut()
</autodoc>
36046 <method name=
"DelWordLeft" type=
"" overloaded=
"no">
36047 <autodoc>DelWordLeft()
</autodoc>
36049 <method name=
"DelWordRight" type=
"" overloaded=
"no">
36050 <autodoc>DelWordRight()
</autodoc>
36052 <method name=
"LineCut" type=
"" overloaded=
"no">
36053 <autodoc>LineCut()
</autodoc>
36055 <method name=
"LineDelete" type=
"" overloaded=
"no">
36056 <autodoc>LineDelete()
</autodoc>
36058 <method name=
"LineTranspose" type=
"" overloaded=
"no">
36059 <autodoc>LineTranspose()
</autodoc>
36061 <method name=
"LineDuplicate" type=
"" overloaded=
"no">
36062 <autodoc>LineDuplicate()
</autodoc>
36064 <method name=
"LowerCase" type=
"" overloaded=
"no">
36065 <autodoc>LowerCase()
</autodoc>
36067 <method name=
"UpperCase" type=
"" overloaded=
"no">
36068 <autodoc>UpperCase()
</autodoc>
36070 <method name=
"LineScrollDown" type=
"" overloaded=
"no">
36071 <autodoc>LineScrollDown()
</autodoc>
36073 <method name=
"LineScrollUp" type=
"" overloaded=
"no">
36074 <autodoc>LineScrollUp()
</autodoc>
36076 <method name=
"DeleteBackNotLine" type=
"" overloaded=
"no">
36077 <autodoc>DeleteBackNotLine()
</autodoc>
36079 <method name=
"HomeDisplay" type=
"" overloaded=
"no">
36080 <autodoc>HomeDisplay()
</autodoc>
36082 <method name=
"HomeDisplayExtend" type=
"" overloaded=
"no">
36083 <autodoc>HomeDisplayExtend()
</autodoc>
36085 <method name=
"LineEndDisplay" type=
"" overloaded=
"no">
36086 <autodoc>LineEndDisplay()
</autodoc>
36088 <method name=
"LineEndDisplayExtend" type=
"" overloaded=
"no">
36089 <autodoc>LineEndDisplayExtend()
</autodoc>
36091 <method name=
"HomeWrap" type=
"" overloaded=
"no">
36092 <autodoc>HomeWrap()
</autodoc>
36094 <method name=
"HomeWrapExtend" type=
"" overloaded=
"no">
36095 <autodoc>HomeWrapExtend()
</autodoc>
36097 <method name=
"LineEndWrap" type=
"" overloaded=
"no">
36098 <autodoc>LineEndWrap()
</autodoc>
36100 <method name=
"LineEndWrapExtend" type=
"" overloaded=
"no">
36101 <autodoc>LineEndWrapExtend()
</autodoc>
36103 <method name=
"VCHomeWrap" type=
"" overloaded=
"no">
36104 <autodoc>VCHomeWrap()
</autodoc>
36106 <method name=
"VCHomeWrapExtend" type=
"" overloaded=
"no">
36107 <autodoc>VCHomeWrapExtend()
</autodoc>
36109 <method name=
"LineCopy" type=
"" overloaded=
"no">
36110 <autodoc>LineCopy()
</autodoc>
36112 <method name=
"MoveCaretInsideView" type=
"" overloaded=
"no">
36113 <autodoc>MoveCaretInsideView()
</autodoc>
36115 <method name=
"LineLength" type=
"int" overloaded=
"no">
36116 <autodoc>LineLength(int line) -
> int
</autodoc>
36118 <param name=
"line" type=
"int" default=
""/>
36121 <method name=
"BraceHighlight" type=
"" overloaded=
"no">
36122 <autodoc>BraceHighlight(int pos1, int pos2)
</autodoc>
36124 <param name=
"pos1" type=
"int" default=
""/>
36125 <param name=
"pos2" type=
"int" default=
""/>
36128 <method name=
"BraceBadLight" type=
"" overloaded=
"no">
36129 <autodoc>BraceBadLight(int pos)
</autodoc>
36131 <param name=
"pos" type=
"int" default=
""/>
36134 <method name=
"BraceMatch" type=
"int" overloaded=
"no">
36135 <autodoc>BraceMatch(int pos) -
> int
</autodoc>
36137 <param name=
"pos" type=
"int" default=
""/>
36140 <method name=
"GetViewEOL" type=
"bool" overloaded=
"no">
36141 <autodoc>GetViewEOL() -
> bool
</autodoc>
36143 <method name=
"SetViewEOL" type=
"" overloaded=
"no">
36144 <autodoc>SetViewEOL(bool visible)
</autodoc>
36146 <param name=
"visible" type=
"bool" default=
""/>
36149 <method name=
"GetDocPointer" type=
"" overloaded=
"no">
36150 <autodoc>GetDocPointer() -
> void
</autodoc>
36152 <method name=
"SetDocPointer" type=
"" overloaded=
"no">
36153 <autodoc>SetDocPointer(void docPointer)
</autodoc>
36155 <param name=
"docPointer" type=
"" default=
""/>
36158 <method name=
"SetModEventMask" type=
"" overloaded=
"no">
36159 <autodoc>SetModEventMask(int mask)
</autodoc>
36161 <param name=
"mask" type=
"int" default=
""/>
36164 <method name=
"GetEdgeColumn" type=
"int" overloaded=
"no">
36165 <autodoc>GetEdgeColumn() -
> int
</autodoc>
36167 <method name=
"SetEdgeColumn" type=
"" overloaded=
"no">
36168 <autodoc>SetEdgeColumn(int column)
</autodoc>
36170 <param name=
"column" type=
"int" default=
""/>
36173 <method name=
"GetEdgeMode" type=
"int" overloaded=
"no">
36174 <autodoc>GetEdgeMode() -
> int
</autodoc>
36176 <method name=
"SetEdgeMode" type=
"" overloaded=
"no">
36177 <autodoc>SetEdgeMode(int mode)
</autodoc>
36179 <param name=
"mode" type=
"int" default=
""/>
36182 <method name=
"GetEdgeColour" type=
"Colour" overloaded=
"no">
36183 <autodoc>GetEdgeColour() -
> Colour
</autodoc>
36185 <method name=
"SetEdgeColour" type=
"" overloaded=
"no">
36186 <autodoc>SetEdgeColour(Colour edgeColour)
</autodoc>
36188 <param name=
"edgeColour" type=
"Colour" default=
""/>
36191 <method name=
"SearchAnchor" type=
"" overloaded=
"no">
36192 <autodoc>SearchAnchor()
</autodoc>
36194 <method name=
"SearchNext" type=
"int" overloaded=
"no">
36195 <autodoc>SearchNext(int flags, String text) -
> int
</autodoc>
36197 <param name=
"flags" type=
"int" default=
""/>
36198 <param name=
"text" type=
"String" default=
""/>
36201 <method name=
"SearchPrev" type=
"int" overloaded=
"no">
36202 <autodoc>SearchPrev(int flags, String text) -
> int
</autodoc>
36204 <param name=
"flags" type=
"int" default=
""/>
36205 <param name=
"text" type=
"String" default=
""/>
36208 <method name=
"LinesOnScreen" type=
"int" overloaded=
"no">
36209 <autodoc>LinesOnScreen() -
> int
</autodoc>
36211 <method name=
"UsePopUp" type=
"" overloaded=
"no">
36212 <autodoc>UsePopUp(bool allowPopUp)
</autodoc>
36214 <param name=
"allowPopUp" type=
"bool" default=
""/>
36217 <method name=
"SelectionIsRectangle" type=
"bool" overloaded=
"no">
36218 <autodoc>SelectionIsRectangle() -
> bool
</autodoc>
36220 <method name=
"SetZoom" type=
"" overloaded=
"no">
36221 <autodoc>SetZoom(int zoom)
</autodoc>
36223 <param name=
"zoom" type=
"int" default=
""/>
36226 <method name=
"GetZoom" type=
"int" overloaded=
"no">
36227 <autodoc>GetZoom() -
> int
</autodoc>
36229 <method name=
"CreateDocument" type=
"" overloaded=
"no">
36230 <autodoc>CreateDocument() -
> void
</autodoc>
36232 <method name=
"AddRefDocument" type=
"" overloaded=
"no">
36233 <autodoc>AddRefDocument(void docPointer)
</autodoc>
36235 <param name=
"docPointer" type=
"" default=
""/>
36238 <method name=
"ReleaseDocument" type=
"" overloaded=
"no">
36239 <autodoc>ReleaseDocument(void docPointer)
</autodoc>
36241 <param name=
"docPointer" type=
"" default=
""/>
36244 <method name=
"GetModEventMask" type=
"int" overloaded=
"no">
36245 <autodoc>GetModEventMask() -
> int
</autodoc>
36247 <method name=
"SetSTCFocus" type=
"" overloaded=
"no">
36248 <autodoc>SetSTCFocus(bool focus)
</autodoc>
36250 <param name=
"focus" type=
"bool" default=
""/>
36253 <method name=
"GetSTCFocus" type=
"bool" overloaded=
"no">
36254 <autodoc>GetSTCFocus() -
> bool
</autodoc>
36256 <method name=
"SetStatus" type=
"" overloaded=
"no">
36257 <autodoc>SetStatus(int statusCode)
</autodoc>
36259 <param name=
"statusCode" type=
"int" default=
""/>
36262 <method name=
"GetStatus" type=
"int" overloaded=
"no">
36263 <autodoc>GetStatus() -
> int
</autodoc>
36265 <method name=
"SetMouseDownCaptures" type=
"" overloaded=
"no">
36266 <autodoc>SetMouseDownCaptures(bool captures)
</autodoc>
36268 <param name=
"captures" type=
"bool" default=
""/>
36271 <method name=
"GetMouseDownCaptures" type=
"bool" overloaded=
"no">
36272 <autodoc>GetMouseDownCaptures() -
> bool
</autodoc>
36274 <method name=
"SetSTCCursor" type=
"" overloaded=
"no">
36275 <autodoc>SetSTCCursor(int cursorType)
</autodoc>
36277 <param name=
"cursorType" type=
"int" default=
""/>
36280 <method name=
"GetSTCCursor" type=
"int" overloaded=
"no">
36281 <autodoc>GetSTCCursor() -
> int
</autodoc>
36283 <method name=
"SetControlCharSymbol" type=
"" overloaded=
"no">
36284 <autodoc>SetControlCharSymbol(int symbol)
</autodoc>
36286 <param name=
"symbol" type=
"int" default=
""/>
36289 <method name=
"GetControlCharSymbol" type=
"int" overloaded=
"no">
36290 <autodoc>GetControlCharSymbol() -
> int
</autodoc>
36292 <method name=
"WordPartLeft" type=
"" overloaded=
"no">
36293 <autodoc>WordPartLeft()
</autodoc>
36295 <method name=
"WordPartLeftExtend" type=
"" overloaded=
"no">
36296 <autodoc>WordPartLeftExtend()
</autodoc>
36298 <method name=
"WordPartRight" type=
"" overloaded=
"no">
36299 <autodoc>WordPartRight()
</autodoc>
36301 <method name=
"WordPartRightExtend" type=
"" overloaded=
"no">
36302 <autodoc>WordPartRightExtend()
</autodoc>
36304 <method name=
"SetVisiblePolicy" type=
"" overloaded=
"no">
36305 <autodoc>SetVisiblePolicy(int visiblePolicy, int visibleSlop)
</autodoc>
36307 <param name=
"visiblePolicy" type=
"int" default=
""/>
36308 <param name=
"visibleSlop" type=
"int" default=
""/>
36311 <method name=
"DelLineLeft" type=
"" overloaded=
"no">
36312 <autodoc>DelLineLeft()
</autodoc>
36314 <method name=
"DelLineRight" type=
"" overloaded=
"no">
36315 <autodoc>DelLineRight()
</autodoc>
36317 <method name=
"SetXOffset" type=
"" overloaded=
"no">
36318 <autodoc>SetXOffset(int newOffset)
</autodoc>
36320 <param name=
"newOffset" type=
"int" default=
""/>
36323 <method name=
"GetXOffset" type=
"int" overloaded=
"no">
36324 <autodoc>GetXOffset() -
> int
</autodoc>
36326 <method name=
"ChooseCaretX" type=
"" overloaded=
"no">
36327 <autodoc>ChooseCaretX()
</autodoc>
36329 <method name=
"SetXCaretPolicy" type=
"" overloaded=
"no">
36330 <autodoc>SetXCaretPolicy(int caretPolicy, int caretSlop)
</autodoc>
36332 <param name=
"caretPolicy" type=
"int" default=
""/>
36333 <param name=
"caretSlop" type=
"int" default=
""/>
36336 <method name=
"SetYCaretPolicy" type=
"" overloaded=
"no">
36337 <autodoc>SetYCaretPolicy(int caretPolicy, int caretSlop)
</autodoc>
36339 <param name=
"caretPolicy" type=
"int" default=
""/>
36340 <param name=
"caretSlop" type=
"int" default=
""/>
36343 <method name=
"SetPrintWrapMode" type=
"" overloaded=
"no">
36344 <autodoc>SetPrintWrapMode(int mode)
</autodoc>
36346 <param name=
"mode" type=
"int" default=
""/>
36349 <method name=
"GetPrintWrapMode" type=
"int" overloaded=
"no">
36350 <autodoc>GetPrintWrapMode() -
> int
</autodoc>
36352 <method name=
"SetHotspotActiveForeground" type=
"" overloaded=
"no">
36353 <autodoc>SetHotspotActiveForeground(bool useSetting, Colour fore)
</autodoc>
36355 <param name=
"useSetting" type=
"bool" default=
""/>
36356 <param name=
"fore" type=
"Colour" default=
""/>
36359 <method name=
"SetHotspotActiveBackground" type=
"" overloaded=
"no">
36360 <autodoc>SetHotspotActiveBackground(bool useSetting, Colour back)
</autodoc>
36362 <param name=
"useSetting" type=
"bool" default=
""/>
36363 <param name=
"back" type=
"Colour" default=
""/>
36366 <method name=
"SetHotspotActiveUnderline" type=
"" overloaded=
"no">
36367 <autodoc>SetHotspotActiveUnderline(bool underline)
</autodoc>
36369 <param name=
"underline" type=
"bool" default=
""/>
36372 <method name=
"SetHotspotSingleLine" type=
"" overloaded=
"no">
36373 <autodoc>SetHotspotSingleLine(bool singleLine)
</autodoc>
36375 <param name=
"singleLine" type=
"bool" default=
""/>
36378 <method name=
"ParaDown" type=
"" overloaded=
"no">
36379 <autodoc>ParaDown()
</autodoc>
36381 <method name=
"ParaDownExtend" type=
"" overloaded=
"no">
36382 <autodoc>ParaDownExtend()
</autodoc>
36384 <method name=
"ParaUp" type=
"" overloaded=
"no">
36385 <autodoc>ParaUp()
</autodoc>
36387 <method name=
"ParaUpExtend" type=
"" overloaded=
"no">
36388 <autodoc>ParaUpExtend()
</autodoc>
36390 <method name=
"PositionBefore" type=
"int" overloaded=
"no">
36391 <autodoc>PositionBefore(int pos) -
> int
</autodoc>
36393 <param name=
"pos" type=
"int" default=
""/>
36396 <method name=
"PositionAfter" type=
"int" overloaded=
"no">
36397 <autodoc>PositionAfter(int pos) -
> int
</autodoc>
36399 <param name=
"pos" type=
"int" default=
""/>
36402 <method name=
"CopyRange" type=
"" overloaded=
"no">
36403 <autodoc>CopyRange(int start, int end)
</autodoc>
36405 <param name=
"start" type=
"int" default=
""/>
36406 <param name=
"end" type=
"int" default=
""/>
36409 <method name=
"CopyText" type=
"" overloaded=
"no">
36410 <autodoc>CopyText(int length, String text)
</autodoc>
36412 <param name=
"length" type=
"int" default=
""/>
36413 <param name=
"text" type=
"String" default=
""/>
36416 <method name=
"SetSelectionMode" type=
"" overloaded=
"no">
36417 <autodoc>SetSelectionMode(int mode)
</autodoc>
36419 <param name=
"mode" type=
"int" default=
""/>
36422 <method name=
"GetSelectionMode" type=
"int" overloaded=
"no">
36423 <autodoc>GetSelectionMode() -
> int
</autodoc>
36425 <method name=
"GetLineSelStartPosition" type=
"int" overloaded=
"no">
36426 <autodoc>GetLineSelStartPosition(int line) -
> int
</autodoc>
36428 <param name=
"line" type=
"int" default=
""/>
36431 <method name=
"GetLineSelEndPosition" type=
"int" overloaded=
"no">
36432 <autodoc>GetLineSelEndPosition(int line) -
> int
</autodoc>
36434 <param name=
"line" type=
"int" default=
""/>
36437 <method name=
"LineDownRectExtend" type=
"" overloaded=
"no">
36438 <autodoc>LineDownRectExtend()
</autodoc>
36440 <method name=
"LineUpRectExtend" type=
"" overloaded=
"no">
36441 <autodoc>LineUpRectExtend()
</autodoc>
36443 <method name=
"CharLeftRectExtend" type=
"" overloaded=
"no">
36444 <autodoc>CharLeftRectExtend()
</autodoc>
36446 <method name=
"CharRightRectExtend" type=
"" overloaded=
"no">
36447 <autodoc>CharRightRectExtend()
</autodoc>
36449 <method name=
"HomeRectExtend" type=
"" overloaded=
"no">
36450 <autodoc>HomeRectExtend()
</autodoc>
36452 <method name=
"VCHomeRectExtend" type=
"" overloaded=
"no">
36453 <autodoc>VCHomeRectExtend()
</autodoc>
36455 <method name=
"LineEndRectExtend" type=
"" overloaded=
"no">
36456 <autodoc>LineEndRectExtend()
</autodoc>
36458 <method name=
"PageUpRectExtend" type=
"" overloaded=
"no">
36459 <autodoc>PageUpRectExtend()
</autodoc>
36461 <method name=
"PageDownRectExtend" type=
"" overloaded=
"no">
36462 <autodoc>PageDownRectExtend()
</autodoc>
36464 <method name=
"StutteredPageUp" type=
"" overloaded=
"no">
36465 <autodoc>StutteredPageUp()
</autodoc>
36467 <method name=
"StutteredPageUpExtend" type=
"" overloaded=
"no">
36468 <autodoc>StutteredPageUpExtend()
</autodoc>
36470 <method name=
"StutteredPageDown" type=
"" overloaded=
"no">
36471 <autodoc>StutteredPageDown()
</autodoc>
36473 <method name=
"StutteredPageDownExtend" type=
"" overloaded=
"no">
36474 <autodoc>StutteredPageDownExtend()
</autodoc>
36476 <method name=
"WordLeftEnd" type=
"" overloaded=
"no">
36477 <autodoc>WordLeftEnd()
</autodoc>
36479 <method name=
"WordLeftEndExtend" type=
"" overloaded=
"no">
36480 <autodoc>WordLeftEndExtend()
</autodoc>
36482 <method name=
"WordRightEnd" type=
"" overloaded=
"no">
36483 <autodoc>WordRightEnd()
</autodoc>
36485 <method name=
"WordRightEndExtend" type=
"" overloaded=
"no">
36486 <autodoc>WordRightEndExtend()
</autodoc>
36488 <method name=
"SetWhitespaceChars" type=
"" overloaded=
"no">
36489 <autodoc>SetWhitespaceChars(String characters)
</autodoc>
36491 <param name=
"characters" type=
"String" default=
""/>
36494 <method name=
"SetCharsDefault" type=
"" overloaded=
"no">
36495 <autodoc>SetCharsDefault()
</autodoc>
36497 <method name=
"AutoCompGetCurrent" type=
"int" overloaded=
"no">
36498 <autodoc>AutoCompGetCurrent() -
> int
</autodoc>
36500 <method name=
"StartRecord" type=
"" overloaded=
"no">
36501 <autodoc>StartRecord()
</autodoc>
36503 <method name=
"StopRecord" type=
"" overloaded=
"no">
36504 <autodoc>StopRecord()
</autodoc>
36506 <method name=
"SetLexer" type=
"" overloaded=
"no">
36507 <autodoc>SetLexer(int lexer)
</autodoc>
36509 <param name=
"lexer" type=
"int" default=
""/>
36512 <method name=
"GetLexer" type=
"int" overloaded=
"no">
36513 <autodoc>GetLexer() -
> int
</autodoc>
36515 <method name=
"Colourise" type=
"" overloaded=
"no">
36516 <autodoc>Colourise(int start, int end)
</autodoc>
36518 <param name=
"start" type=
"int" default=
""/>
36519 <param name=
"end" type=
"int" default=
""/>
36522 <method name=
"SetProperty" type=
"" overloaded=
"no">
36523 <autodoc>SetProperty(String key, String value)
</autodoc>
36525 <param name=
"key" type=
"String" default=
""/>
36526 <param name=
"value" type=
"String" default=
""/>
36529 <method name=
"SetKeyWords" type=
"" overloaded=
"no">
36530 <autodoc>SetKeyWords(int keywordSet, String keyWords)
</autodoc>
36532 <param name=
"keywordSet" type=
"int" default=
""/>
36533 <param name=
"keyWords" type=
"String" default=
""/>
36536 <method name=
"SetLexerLanguage" type=
"" overloaded=
"no">
36537 <autodoc>SetLexerLanguage(String language)
</autodoc>
36539 <param name=
"language" type=
"String" default=
""/>
36542 <method name=
"GetCurrentLine" type=
"int" overloaded=
"no">
36543 <autodoc>GetCurrentLine() -
> int
</autodoc>
36545 <method name=
"StyleSetSpec" type=
"" overloaded=
"no">
36546 <autodoc>StyleSetSpec(int styleNum, String spec)
</autodoc>
36548 <param name=
"styleNum" type=
"int" default=
""/>
36549 <param name=
"spec" type=
"String" default=
""/>
36552 <method name=
"StyleSetFont" type=
"" overloaded=
"no">
36553 <autodoc>StyleSetFont(int styleNum, Font font)
</autodoc>
36555 <param name=
"styleNum" type=
"int" default=
""/>
36556 <param name=
"font" type=
"Font" default=
""/>
36559 <method name=
"StyleSetFontAttr" type=
"" overloaded=
"no">
36560 <autodoc>StyleSetFontAttr(int styleNum, int size, String faceName, bool bold,
36561 bool italic, bool underline)
</autodoc>
36563 <param name=
"styleNum" type=
"int" default=
""/>
36564 <param name=
"size" type=
"int" default=
""/>
36565 <param name=
"faceName" type=
"String" default=
""/>
36566 <param name=
"bold" type=
"bool" default=
""/>
36567 <param name=
"italic" type=
"bool" default=
""/>
36568 <param name=
"underline" type=
"bool" default=
""/>
36571 <method name=
"CmdKeyExecute" type=
"" overloaded=
"no">
36572 <autodoc>CmdKeyExecute(int cmd)
</autodoc>
36574 <param name=
"cmd" type=
"int" default=
""/>
36577 <method name=
"SetMargins" type=
"" overloaded=
"no">
36578 <autodoc>SetMargins(int left, int right)
</autodoc>
36580 <param name=
"left" type=
"int" default=
""/>
36581 <param name=
"right" type=
"int" default=
""/>
36584 <method name=
"GetSelection" type=
"" overloaded=
"no">
36585 <autodoc>GetSelection(int OUTPUT, int OUTPUT)
</autodoc>
36587 <param name=
"OUTPUT" type=
"int" default=
""/>
36588 <param name=
"OUTPUT" type=
"int" default=
""/>
36591 <method name=
"PointFromPosition" type=
"Point" overloaded=
"no">
36592 <autodoc>PointFromPosition(int pos) -
> Point
</autodoc>
36594 <param name=
"pos" type=
"int" default=
""/>
36597 <method name=
"ScrollToLine" type=
"" overloaded=
"no">
36598 <autodoc>ScrollToLine(int line)
</autodoc>
36600 <param name=
"line" type=
"int" default=
""/>
36603 <method name=
"ScrollToColumn" type=
"" overloaded=
"no">
36604 <autodoc>ScrollToColumn(int column)
</autodoc>
36606 <param name=
"column" type=
"int" default=
""/>
36609 <method name=
"SendMsg" type=
"long" overloaded=
"no">
36610 <autodoc>SendMsg(int msg, long wp=
0, long lp=
0) -
> long
</autodoc>
36612 <param name=
"msg" type=
"int" default=
""/>
36613 <param name=
"wp" type=
"long" default=
"0"/>
36614 <param name=
"lp" type=
"long" default=
"0"/>
36617 <method name=
"SetVScrollBar" type=
"" overloaded=
"no">
36618 <autodoc>SetVScrollBar(wxScrollBar bar)
</autodoc>
36620 <param name=
"bar" type=
"ScrollBar" default=
""/>
36623 <method name=
"SetHScrollBar" type=
"" overloaded=
"no">
36624 <autodoc>SetHScrollBar(wxScrollBar bar)
</autodoc>
36626 <param name=
"bar" type=
"ScrollBar" default=
""/>
36629 <method name=
"GetLastKeydownProcessed" type=
"bool" overloaded=
"no">
36630 <autodoc>GetLastKeydownProcessed() -
> bool
</autodoc>
36632 <method name=
"SetLastKeydownProcessed" type=
"" overloaded=
"no">
36633 <autodoc>SetLastKeydownProcessed(bool val)
</autodoc>
36635 <param name=
"val" type=
"bool" default=
""/>
36638 <method name=
"SaveFile" type=
"bool" overloaded=
"no">
36639 <autodoc>SaveFile(String filename) -
> bool
</autodoc>
36641 <param name=
"filename" type=
"String" default=
""/>
36644 <method name=
"LoadFile" type=
"bool" overloaded=
"no">
36645 <autodoc>LoadFile(String filename) -
> bool
</autodoc>
36647 <param name=
"filename" type=
"String" default=
""/>
36650 <method name=
"DoDragOver" type=
"wxDragResult" overloaded=
"no">
36651 <autodoc>DoDragOver(int x, int y, int def) -
> int
</autodoc>
36653 <param name=
"x" type=
"int" default=
""/>
36654 <param name=
"y" type=
"int" default=
""/>
36655 <param name=
"def" type=
"wxDragResult" default=
""/>
36658 <method name=
"DoDropText" type=
"bool" overloaded=
"no">
36659 <autodoc>DoDropText(long x, long y, String data) -
> bool
</autodoc>
36661 <param name=
"x" type=
"long" default=
""/>
36662 <param name=
"y" type=
"long" default=
""/>
36663 <param name=
"data" type=
"String" default=
""/>
36666 <method name=
"SetUseAntiAliasing" type=
"" overloaded=
"no">
36667 <autodoc>SetUseAntiAliasing(bool useAA)
</autodoc>
36669 <param name=
"useAA" type=
"bool" default=
""/>
36672 <method name=
"GetUseAntiAliasing" type=
"bool" overloaded=
"no">
36673 <autodoc>GetUseAntiAliasing() -
> bool
</autodoc>
36676 <class name=
"StyledTextEvent" oldname=
"wxStyledTextEvent" module=
"stc">
36677 <baseclass name=
"CommandEvent"/>
36678 <constructor name=
"StyledTextEvent" overloaded=
"no">
36679 <autodoc>__init__(wxEventType commandType=
0, int id=
0) -
> StyledTextEvent
</autodoc>
36681 <param name=
"commandType" type=
"wxEventType" default=
"0"/>
36682 <param name=
"id" type=
"int" default=
"0"/>
36685 <destructor name=
"~wxStyledTextEvent" overloaded=
"no">
36686 <autodoc>__del__()
</autodoc>
36688 <method name=
"SetPosition" type=
"" overloaded=
"no">
36689 <autodoc>SetPosition(int pos)
</autodoc>
36691 <param name=
"pos" type=
"int" default=
""/>
36694 <method name=
"SetKey" type=
"" overloaded=
"no">
36695 <autodoc>SetKey(int k)
</autodoc>
36697 <param name=
"k" type=
"int" default=
""/>
36700 <method name=
"SetModifiers" type=
"" overloaded=
"no">
36701 <autodoc>SetModifiers(int m)
</autodoc>
36703 <param name=
"m" type=
"int" default=
""/>
36706 <method name=
"SetModificationType" type=
"" overloaded=
"no">
36707 <autodoc>SetModificationType(int t)
</autodoc>
36709 <param name=
"t" type=
"int" default=
""/>
36712 <method name=
"SetText" type=
"" overloaded=
"no">
36713 <autodoc>SetText(String t)
</autodoc>
36715 <param name=
"t" type=
"String" default=
""/>
36718 <method name=
"SetLength" type=
"" overloaded=
"no">
36719 <autodoc>SetLength(int len)
</autodoc>
36721 <param name=
"len" type=
"int" default=
""/>
36724 <method name=
"SetLinesAdded" type=
"" overloaded=
"no">
36725 <autodoc>SetLinesAdded(int num)
</autodoc>
36727 <param name=
"num" type=
"int" default=
""/>
36730 <method name=
"SetLine" type=
"" overloaded=
"no">
36731 <autodoc>SetLine(int val)
</autodoc>
36733 <param name=
"val" type=
"int" default=
""/>
36736 <method name=
"SetFoldLevelNow" type=
"" overloaded=
"no">
36737 <autodoc>SetFoldLevelNow(int val)
</autodoc>
36739 <param name=
"val" type=
"int" default=
""/>
36742 <method name=
"SetFoldLevelPrev" type=
"" overloaded=
"no">
36743 <autodoc>SetFoldLevelPrev(int val)
</autodoc>
36745 <param name=
"val" type=
"int" default=
""/>
36748 <method name=
"SetMargin" type=
"" overloaded=
"no">
36749 <autodoc>SetMargin(int val)
</autodoc>
36751 <param name=
"val" type=
"int" default=
""/>
36754 <method name=
"SetMessage" type=
"" overloaded=
"no">
36755 <autodoc>SetMessage(int val)
</autodoc>
36757 <param name=
"val" type=
"int" default=
""/>
36760 <method name=
"SetWParam" type=
"" overloaded=
"no">
36761 <autodoc>SetWParam(int val)
</autodoc>
36763 <param name=
"val" type=
"int" default=
""/>
36766 <method name=
"SetLParam" type=
"" overloaded=
"no">
36767 <autodoc>SetLParam(int val)
</autodoc>
36769 <param name=
"val" type=
"int" default=
""/>
36772 <method name=
"SetListType" type=
"" overloaded=
"no">
36773 <autodoc>SetListType(int val)
</autodoc>
36775 <param name=
"val" type=
"int" default=
""/>
36778 <method name=
"SetX" type=
"" overloaded=
"no">
36779 <autodoc>SetX(int val)
</autodoc>
36781 <param name=
"val" type=
"int" default=
""/>
36784 <method name=
"SetY" type=
"" overloaded=
"no">
36785 <autodoc>SetY(int val)
</autodoc>
36787 <param name=
"val" type=
"int" default=
""/>
36790 <method name=
"SetDragText" type=
"" overloaded=
"no">
36791 <autodoc>SetDragText(String val)
</autodoc>
36793 <param name=
"val" type=
"String" default=
""/>
36796 <method name=
"SetDragAllowMove" type=
"" overloaded=
"no">
36797 <autodoc>SetDragAllowMove(bool val)
</autodoc>
36799 <param name=
"val" type=
"bool" default=
""/>
36802 <method name=
"SetDragResult" type=
"" overloaded=
"no">
36803 <autodoc>SetDragResult(int val)
</autodoc>
36805 <param name=
"val" type=
"wxDragResult" default=
""/>
36808 <method name=
"GetPosition" type=
"int" overloaded=
"no">
36809 <autodoc>GetPosition() -
> int
</autodoc>
36811 <method name=
"GetKey" type=
"int" overloaded=
"no">
36812 <autodoc>GetKey() -
> int
</autodoc>
36814 <method name=
"GetModifiers" type=
"int" overloaded=
"no">
36815 <autodoc>GetModifiers() -
> int
</autodoc>
36817 <method name=
"GetModificationType" type=
"int" overloaded=
"no">
36818 <autodoc>GetModificationType() -
> int
</autodoc>
36820 <method name=
"GetText" type=
"String" overloaded=
"no">
36821 <autodoc>GetText() -
> String
</autodoc>
36823 <method name=
"GetLength" type=
"int" overloaded=
"no">
36824 <autodoc>GetLength() -
> int
</autodoc>
36826 <method name=
"GetLinesAdded" type=
"int" overloaded=
"no">
36827 <autodoc>GetLinesAdded() -
> int
</autodoc>
36829 <method name=
"GetLine" type=
"int" overloaded=
"no">
36830 <autodoc>GetLine() -
> int
</autodoc>
36832 <method name=
"GetFoldLevelNow" type=
"int" overloaded=
"no">
36833 <autodoc>GetFoldLevelNow() -
> int
</autodoc>
36835 <method name=
"GetFoldLevelPrev" type=
"int" overloaded=
"no">
36836 <autodoc>GetFoldLevelPrev() -
> int
</autodoc>
36838 <method name=
"GetMargin" type=
"int" overloaded=
"no">
36839 <autodoc>GetMargin() -
> int
</autodoc>
36841 <method name=
"GetMessage" type=
"int" overloaded=
"no">
36842 <autodoc>GetMessage() -
> int
</autodoc>
36844 <method name=
"GetWParam" type=
"int" overloaded=
"no">
36845 <autodoc>GetWParam() -
> int
</autodoc>
36847 <method name=
"GetLParam" type=
"int" overloaded=
"no">
36848 <autodoc>GetLParam() -
> int
</autodoc>
36850 <method name=
"GetListType" type=
"int" overloaded=
"no">
36851 <autodoc>GetListType() -
> int
</autodoc>
36853 <method name=
"GetX" type=
"int" overloaded=
"no">
36854 <autodoc>GetX() -
> int
</autodoc>
36856 <method name=
"GetY" type=
"int" overloaded=
"no">
36857 <autodoc>GetY() -
> int
</autodoc>
36859 <method name=
"GetDragText" type=
"String" overloaded=
"no">
36860 <autodoc>GetDragText() -
> String
</autodoc>
36862 <method name=
"GetDragAllowMove" type=
"bool" overloaded=
"no">
36863 <autodoc>GetDragAllowMove() -
> bool
</autodoc>
36865 <method name=
"GetDragResult" type=
"wxDragResult" overloaded=
"no">
36866 <autodoc>GetDragResult() -
> int
</autodoc>
36868 <method name=
"GetShift" type=
"bool" overloaded=
"no">
36869 <autodoc>GetShift() -
> bool
</autodoc>
36871 <method name=
"GetControl" type=
"bool" overloaded=
"no">
36872 <autodoc>GetControl() -
> bool
</autodoc>
36874 <method name=
"GetAlt" type=
"bool" overloaded=
"no">
36875 <autodoc>GetAlt() -
> bool
</autodoc>
36877 <method name=
"Clone" type=
"Event" overloaded=
"no">
36878 <autodoc>Clone() -
> Event
</autodoc>
36882 EVT_STC_CHANGE = wx.PyEventBinder( wxEVT_STC_CHANGE,
1 )
36883 EVT_STC_STYLENEEDED = wx.PyEventBinder( wxEVT_STC_STYLENEEDED,
1 )
36884 EVT_STC_CHARADDED = wx.PyEventBinder( wxEVT_STC_CHARADDED,
1 )
36885 EVT_STC_SAVEPOINTREACHED = wx.PyEventBinder( wxEVT_STC_SAVEPOINTREACHED,
1 )
36886 EVT_STC_SAVEPOINTLEFT = wx.PyEventBinder( wxEVT_STC_SAVEPOINTLEFT,
1 )
36887 EVT_STC_ROMODIFYATTEMPT = wx.PyEventBinder( wxEVT_STC_ROMODIFYATTEMPT,
1 )
36888 EVT_STC_KEY = wx.PyEventBinder( wxEVT_STC_KEY,
1 )
36889 EVT_STC_DOUBLECLICK = wx.PyEventBinder( wxEVT_STC_DOUBLECLICK,
1 )
36890 EVT_STC_UPDATEUI = wx.PyEventBinder( wxEVT_STC_UPDATEUI,
1 )
36891 EVT_STC_MODIFIED = wx.PyEventBinder( wxEVT_STC_MODIFIED,
1 )
36892 EVT_STC_MACRORECORD = wx.PyEventBinder( wxEVT_STC_MACRORECORD,
1 )
36893 EVT_STC_MARGINCLICK = wx.PyEventBinder( wxEVT_STC_MARGINCLICK,
1 )
36894 EVT_STC_NEEDSHOWN = wx.PyEventBinder( wxEVT_STC_NEEDSHOWN,
1 )
36895 EVT_STC_POSCHANGED = wx.PyEventBinder( wxEVT_STC_POSCHANGED,
1 )
36896 EVT_STC_PAINTED = wx.PyEventBinder( wxEVT_STC_PAINTED,
1 )
36897 EVT_STC_USERLISTSELECTION = wx.PyEventBinder( wxEVT_STC_USERLISTSELECTION,
1 )
36898 EVT_STC_URIDROPPED = wx.PyEventBinder( wxEVT_STC_URIDROPPED,
1 )
36899 EVT_STC_DWELLSTART = wx.PyEventBinder( wxEVT_STC_DWELLSTART,
1 )
36900 EVT_STC_DWELLEND = wx.PyEventBinder( wxEVT_STC_DWELLEND,
1 )
36901 EVT_STC_START_DRAG = wx.PyEventBinder( wxEVT_STC_START_DRAG,
1 )
36902 EVT_STC_DRAG_OVER = wx.PyEventBinder( wxEVT_STC_DRAG_OVER,
1 )
36903 EVT_STC_DO_DROP = wx.PyEventBinder( wxEVT_STC_DO_DROP,
1 )
36904 EVT_STC_ZOOM = wx.PyEventBinder( wxEVT_STC_ZOOM,
1 )
36905 EVT_STC_HOTSPOT_CLICK = wx.PyEventBinder( wxEVT_STC_HOTSPOT_CLICK,
1 )
36906 EVT_STC_HOTSPOT_DCLICK = wx.PyEventBinder( wxEVT_STC_HOTSPOT_DCLICK,
1 )
36907 EVT_STC_CALLTIP_CLICK = wx.PyEventBinder( wxEVT_STC_CALLTIP_CLICK,
1 )
36910 <module name=
"xrc">
36911 <import name=
"core"/>
36912 <pythoncode> wx = core
</pythoncode>
36914 #---------------------------------------------------------------------------
36916 <class name=
"XmlResource" oldname=
"wxXmlResource" module=
"xrc">
36917 <baseclass name=
"Object"/>
36918 <constructor name=
"XmlResource" overloaded=
"no">
36919 <autodoc>__init__(String filemask, int flags=XRC_USE_LOCALE) -
> XmlResource
</autodoc>
36921 <param name=
"filemask" type=
"String" default=
""/>
36922 <param name=
"flags" type=
"int" default=
"wxXRC_USE_LOCALE"/>
36925 <constructor name=
"EmptyXmlResource" overloaded=
"no">
36926 <autodoc>EmptyXmlResource(int flags=XRC_USE_LOCALE) -
> XmlResource
</autodoc>
36928 <param name=
"flags" type=
"int" default=
"wxXRC_USE_LOCALE"/>
36931 <destructor name=
"~wxXmlResource" overloaded=
"no">
36932 <autodoc>__del__()
</autodoc>
36934 <method name=
"Load" type=
"bool" overloaded=
"no">
36935 <autodoc>Load(String filemask) -
> bool
</autodoc>
36937 <param name=
"filemask" type=
"String" default=
""/>
36940 <method name=
"LoadFromString" type=
"bool" overloaded=
"no">
36941 <autodoc>LoadFromString(String data) -
> bool
</autodoc>
36943 <param name=
"data" type=
"String" default=
""/>
36946 <method name=
"InitAllHandlers" type=
"" overloaded=
"no">
36947 <autodoc>InitAllHandlers()
</autodoc>
36949 <method name=
"AddHandler" type=
"" overloaded=
"no">
36950 <autodoc>AddHandler(XmlResourceHandler handler)
</autodoc>
36952 <param name=
"handler" type=
"wxPyXmlResourceHandler" default=
""/>
36955 <method name=
"InsertHandler" type=
"" overloaded=
"no">
36956 <autodoc>InsertHandler(XmlResourceHandler handler)
</autodoc>
36958 <param name=
"handler" type=
"wxPyXmlResourceHandler" default=
""/>
36961 <method name=
"ClearHandlers" type=
"" overloaded=
"no">
36962 <autodoc>ClearHandlers()
</autodoc>
36964 <staticmethod name=
"AddSubclassFactory" type=
"" overloaded=
"no">
36965 <autodoc>AddSubclassFactory(XmlSubclassFactory factory)
</autodoc>
36967 <param name=
"factory" type=
"wxPyXmlSubclassFactory" default=
""/>
36970 <method name=
"LoadMenu" type=
"Menu" overloaded=
"no">
36971 <autodoc>LoadMenu(String name) -
> Menu
</autodoc>
36973 <param name=
"name" type=
"String" default=
""/>
36976 <method name=
"LoadMenuBar" type=
"MenuBar" overloaded=
"no">
36977 <autodoc>LoadMenuBar(String name) -
> MenuBar
</autodoc>
36979 <param name=
"name" type=
"String" default=
""/>
36982 <method name=
"LoadMenuBarOnFrame" type=
"MenuBar" overloaded=
"no">
36983 <autodoc>LoadMenuBarOnFrame(Window parent, String name) -
> MenuBar
</autodoc>
36985 <param name=
"parent" type=
"Window" default=
""/>
36986 <param name=
"name" type=
"String" default=
""/>
36989 <method name=
"LoadToolBar" type=
"ToolBar" overloaded=
"no">
36990 <autodoc>LoadToolBar(Window parent, String name) -
> wxToolBar
</autodoc>
36992 <param name=
"parent" type=
"Window" default=
""/>
36993 <param name=
"name" type=
"String" default=
""/>
36996 <method name=
"LoadDialog" type=
"Dialog" overloaded=
"no">
36997 <autodoc>LoadDialog(Window parent, String name) -
> wxDialog
</autodoc>
36999 <param name=
"parent" type=
"Window" default=
""/>
37000 <param name=
"name" type=
"String" default=
""/>
37003 <method name=
"LoadOnDialog" type=
"bool" overloaded=
"no">
37004 <autodoc>LoadOnDialog(wxDialog dlg, Window parent, String name) -
> bool
</autodoc>
37006 <param name=
"dlg" type=
"Dialog" default=
""/>
37007 <param name=
"parent" type=
"Window" default=
""/>
37008 <param name=
"name" type=
"String" default=
""/>
37011 <method name=
"LoadPanel" type=
"Panel" overloaded=
"no">
37012 <autodoc>LoadPanel(Window parent, String name) -
> wxPanel
</autodoc>
37014 <param name=
"parent" type=
"Window" default=
""/>
37015 <param name=
"name" type=
"String" default=
""/>
37018 <method name=
"LoadOnPanel" type=
"bool" overloaded=
"no">
37019 <autodoc>LoadOnPanel(wxPanel panel, Window parent, String name) -
> bool
</autodoc>
37021 <param name=
"panel" type=
"Panel" default=
""/>
37022 <param name=
"parent" type=
"Window" default=
""/>
37023 <param name=
"name" type=
"String" default=
""/>
37026 <method name=
"LoadFrame" type=
"Frame" overloaded=
"no">
37027 <autodoc>LoadFrame(Window parent, String name) -
> wxFrame
</autodoc>
37029 <param name=
"parent" type=
"Window" default=
""/>
37030 <param name=
"name" type=
"String" default=
""/>
37033 <method name=
"LoadOnFrame" type=
"bool" overloaded=
"no">
37034 <autodoc>LoadOnFrame(wxFrame frame, Window parent, String name) -
> bool
</autodoc>
37036 <param name=
"frame" type=
"Frame" default=
""/>
37037 <param name=
"parent" type=
"Window" default=
""/>
37038 <param name=
"name" type=
"String" default=
""/>
37041 <method name=
"LoadObject" type=
"Object" overloaded=
"no">
37042 <autodoc>LoadObject(Window parent, String name, String classname) -
> Object
</autodoc>
37044 <param name=
"parent" type=
"Window" default=
""/>
37045 <param name=
"name" type=
"String" default=
""/>
37046 <param name=
"classname" type=
"String" default=
""/>
37049 <method name=
"LoadOnObject" type=
"bool" overloaded=
"no">
37050 <autodoc>LoadOnObject(Object instance, Window parent, String name, String classname) -
> bool
</autodoc>
37052 <param name=
"instance" type=
"Object" default=
""/>
37053 <param name=
"parent" type=
"Window" default=
""/>
37054 <param name=
"name" type=
"String" default=
""/>
37055 <param name=
"classname" type=
"String" default=
""/>
37058 <method name=
"LoadBitmap" type=
"Bitmap" overloaded=
"no">
37059 <autodoc>LoadBitmap(String name) -
> Bitmap
</autodoc>
37061 <param name=
"name" type=
"String" default=
""/>
37064 <method name=
"LoadIcon" type=
"Icon" overloaded=
"no">
37065 <autodoc>LoadIcon(String name) -
> Icon
</autodoc>
37067 <param name=
"name" type=
"String" default=
""/>
37070 <method name=
"AttachUnknownControl" type=
"bool" overloaded=
"no">
37071 <autodoc>AttachUnknownControl(String name, Window control, Window parent=None) -
> bool
</autodoc>
37073 <param name=
"name" type=
"String" default=
""/>
37074 <param name=
"control" type=
"Window" default=
""/>
37075 <param name=
"parent" type=
"Window" default=
"NULL"/>
37078 <staticmethod name=
"GetXRCID" type=
"int" overloaded=
"no">
37079 <autodoc>GetXRCID(String str_id) -
> int
</autodoc>
37081 <param name=
"str_id" type=
"String" default=
""/>
37084 <method name=
"GetVersion" type=
"long" overloaded=
"no">
37085 <autodoc>GetVersion() -
> long
</autodoc>
37087 <method name=
"CompareVersion" type=
"int" overloaded=
"no">
37088 <autodoc>CompareVersion(int major, int minor, int release, int revision) -
> int
</autodoc>
37090 <param name=
"major" type=
"int" default=
""/>
37091 <param name=
"minor" type=
"int" default=
""/>
37092 <param name=
"release" type=
"int" default=
""/>
37093 <param name=
"revision" type=
"int" default=
""/>
37096 <staticmethod name=
"Get" type=
"XmlResource" overloaded=
"no">
37097 <autodoc>Get() -
> XmlResource
</autodoc>
37099 <staticmethod name=
"Set" type=
"XmlResource" overloaded=
"no">
37100 <autodoc>Set(XmlResource res) -
> XmlResource
</autodoc>
37102 <param name=
"res" type=
"XmlResource" default=
""/>
37105 <method name=
"GetFlags" type=
"int" overloaded=
"no">
37106 <autodoc>GetFlags() -
> int
</autodoc>
37108 <method name=
"SetFlags" type=
"" overloaded=
"no">
37109 <autodoc>SetFlags(int flags)
</autodoc>
37111 <param name=
"flags" type=
"int" default=
""/>
37117 return XmlResource_GetXRCID(str_id)
37119 def XRCCTRL(window, str_id, *ignoreargs):
37120 return window.FindWindowById(XRCID(str_id))
37123 #---------------------------------------------------------------------------
37125 <class name=
"XmlSubclassFactory" oldname=
"wxPyXmlSubclassFactory" module=
"xrc">
37126 <constructor name=
"wxPyXmlSubclassFactory" overloaded=
"no">
37127 <autodoc>__init__() -
> XmlSubclassFactory
</autodoc>
37129 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
37130 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
37132 <param name=
"self" type=
"PyObject" default=
""/>
37133 <param name=
"_class" type=
"PyObject" default=
""/>
37138 #---------------------------------------------------------------------------
37140 <class name=
"XmlProperty" oldname=
"wxXmlProperty" module=
"xrc">
37141 <constructor name=
"XmlProperty" overloaded=
"no">
37142 <autodoc>__init__(String name=EmptyString, String value=EmptyString,
37143 XmlProperty next=None) -
> XmlProperty
</autodoc>
37145 <param name=
"name" type=
"String" default=
"wxPyEmptyString"/>
37146 <param name=
"value" type=
"String" default=
"wxPyEmptyString"/>
37147 <param name=
"next" type=
"XmlProperty" default=
"NULL"/>
37150 <method name=
"GetName" type=
"String" overloaded=
"no">
37151 <autodoc>GetName() -
> String
</autodoc>
37153 <method name=
"GetValue" type=
"String" overloaded=
"no">
37154 <autodoc>GetValue() -
> String
</autodoc>
37156 <method name=
"GetNext" type=
"XmlProperty" overloaded=
"no">
37157 <autodoc>GetNext() -
> XmlProperty
</autodoc>
37159 <method name=
"SetName" type=
"" overloaded=
"no">
37160 <autodoc>SetName(String name)
</autodoc>
37162 <param name=
"name" type=
"String" default=
""/>
37165 <method name=
"SetValue" type=
"" overloaded=
"no">
37166 <autodoc>SetValue(String value)
</autodoc>
37168 <param name=
"value" type=
"String" default=
""/>
37171 <method name=
"SetNext" type=
"" overloaded=
"no">
37172 <autodoc>SetNext(XmlProperty next)
</autodoc>
37174 <param name=
"next" type=
"XmlProperty" default=
""/>
37178 <class name=
"XmlNode" oldname=
"wxXmlNode" module=
"xrc">
37179 <constructor name=
"XmlNode" overloaded=
"no">
37180 <autodoc>__init__(XmlNode parent=None, int type=
0, String name=EmptyString,
37181 String content=EmptyString, XmlProperty props=None,
37182 XmlNode next=None) -
> XmlNode
</autodoc>
37184 <param name=
"parent" type=
"XmlNode" default=
"NULL"/>
37185 <param name=
"type" type=
"wxXmlNodeType" default=
"0"/>
37186 <param name=
"name" type=
"String" default=
"wxPyEmptyString"/>
37187 <param name=
"content" type=
"String" default=
"wxPyEmptyString"/>
37188 <param name=
"props" type=
"XmlProperty" default=
"NULL"/>
37189 <param name=
"next" type=
"XmlNode" default=
"NULL"/>
37192 <constructor name=
"XmlNodeEasy" overloaded=
"no">
37193 <autodoc>XmlNodeEasy(int type, String name, String content=EmptyString) -
> XmlNode
</autodoc>
37195 <param name=
"type" type=
"wxXmlNodeType" default=
""/>
37196 <param name=
"name" type=
"String" default=
""/>
37197 <param name=
"content" type=
"String" default=
"wxPyEmptyString"/>
37200 <destructor name=
"~wxXmlNode" overloaded=
"no">
37201 <autodoc>__del__()
</autodoc>
37203 <method name=
"AddChild" type=
"" overloaded=
"no">
37204 <autodoc>AddChild(XmlNode child)
</autodoc>
37206 <param name=
"child" type=
"XmlNode" default=
""/>
37209 <method name=
"InsertChild" type=
"" overloaded=
"no">
37210 <autodoc>InsertChild(XmlNode child, XmlNode before_node)
</autodoc>
37212 <param name=
"child" type=
"XmlNode" default=
""/>
37213 <param name=
"before_node" type=
"XmlNode" default=
""/>
37216 <method name=
"RemoveChild" type=
"bool" overloaded=
"no">
37217 <autodoc>RemoveChild(XmlNode child) -
> bool
</autodoc>
37219 <param name=
"child" type=
"XmlNode" default=
""/>
37222 <method name=
"AddProperty" type=
"" overloaded=
"no">
37223 <autodoc>AddProperty(XmlProperty prop)
</autodoc>
37225 <param name=
"prop" type=
"XmlProperty" default=
""/>
37228 <method name=
"AddPropertyName" type=
"" overloaded=
"no">
37229 <autodoc>AddPropertyName(String name, String value)
</autodoc>
37231 <param name=
"name" type=
"String" default=
""/>
37232 <param name=
"value" type=
"String" default=
""/>
37235 <method name=
"DeleteProperty" type=
"bool" overloaded=
"no">
37236 <autodoc>DeleteProperty(String name) -
> bool
</autodoc>
37238 <param name=
"name" type=
"String" default=
""/>
37241 <method name=
"GetType" type=
"wxXmlNodeType" overloaded=
"no">
37242 <autodoc>GetType() -
> int
</autodoc>
37244 <method name=
"GetName" type=
"String" overloaded=
"no">
37245 <autodoc>GetName() -
> String
</autodoc>
37247 <method name=
"GetContent" type=
"String" overloaded=
"no">
37248 <autodoc>GetContent() -
> String
</autodoc>
37250 <method name=
"GetParent" type=
"XmlNode" overloaded=
"no">
37251 <autodoc>GetParent() -
> XmlNode
</autodoc>
37253 <method name=
"GetNext" type=
"XmlNode" overloaded=
"no">
37254 <autodoc>GetNext() -
> XmlNode
</autodoc>
37256 <method name=
"GetChildren" type=
"XmlNode" overloaded=
"no">
37257 <autodoc>GetChildren() -
> XmlNode
</autodoc>
37259 <method name=
"GetProperties" type=
"XmlProperty" overloaded=
"no">
37260 <autodoc>GetProperties() -
> XmlProperty
</autodoc>
37262 <method name=
"GetPropVal" type=
"String" overloaded=
"no">
37263 <autodoc>GetPropVal(String propName, String defaultVal) -
> String
</autodoc>
37265 <param name=
"propName" type=
"String" default=
""/>
37266 <param name=
"defaultVal" type=
"String" default=
""/>
37269 <method name=
"HasProp" type=
"bool" overloaded=
"no">
37270 <autodoc>HasProp(String propName) -
> bool
</autodoc>
37272 <param name=
"propName" type=
"String" default=
""/>
37275 <method name=
"SetType" type=
"" overloaded=
"no">
37276 <autodoc>SetType(int type)
</autodoc>
37278 <param name=
"type" type=
"wxXmlNodeType" default=
""/>
37281 <method name=
"SetName" type=
"" overloaded=
"no">
37282 <autodoc>SetName(String name)
</autodoc>
37284 <param name=
"name" type=
"String" default=
""/>
37287 <method name=
"SetContent" type=
"" overloaded=
"no">
37288 <autodoc>SetContent(String con)
</autodoc>
37290 <param name=
"con" type=
"String" default=
""/>
37293 <method name=
"SetParent" type=
"" overloaded=
"no">
37294 <autodoc>SetParent(XmlNode parent)
</autodoc>
37296 <param name=
"parent" type=
"XmlNode" default=
""/>
37299 <method name=
"SetNext" type=
"" overloaded=
"no">
37300 <autodoc>SetNext(XmlNode next)
</autodoc>
37302 <param name=
"next" type=
"XmlNode" default=
""/>
37305 <method name=
"SetChildren" type=
"" overloaded=
"no">
37306 <autodoc>SetChildren(XmlNode child)
</autodoc>
37308 <param name=
"child" type=
"XmlNode" default=
""/>
37311 <method name=
"SetProperties" type=
"" overloaded=
"no">
37312 <autodoc>SetProperties(XmlProperty prop)
</autodoc>
37314 <param name=
"prop" type=
"XmlProperty" default=
""/>
37318 <class name=
"XmlDocument" oldname=
"wxXmlDocument" module=
"xrc">
37319 <baseclass name=
"Object"/>
37320 <constructor name=
"XmlDocument" overloaded=
"no">
37321 <autodoc>__init__(String filename, String encoding=UTF8String) -
> XmlDocument
</autodoc>
37323 <param name=
"filename" type=
"String" default=
""/>
37324 <param name=
"encoding" type=
"String" default=
"wxPyUTF8String"/>
37327 <constructor name=
"XmlDocumentFromStream" overloaded=
"no">
37328 <autodoc>XmlDocumentFromStream(InputStream stream, String encoding=UTF8String) -
> XmlDocument
</autodoc>
37330 <param name=
"stream" type=
"wxInputStream" default=
""/>
37331 <param name=
"encoding" type=
"String" default=
"wxPyUTF8String"/>
37334 <constructor name=
"EmptyXmlDocument" overloaded=
"no">
37335 <autodoc>EmptyXmlDocument() -
> XmlDocument
</autodoc>
37337 <destructor name=
"~wxXmlDocument" overloaded=
"no">
37338 <autodoc>__del__()
</autodoc>
37340 <method name=
"Load" type=
"bool" overloaded=
"no">
37341 <autodoc>Load(String filename, String encoding=UTF8String) -
> bool
</autodoc>
37343 <param name=
"filename" type=
"String" default=
""/>
37344 <param name=
"encoding" type=
"String" default=
"wxPyUTF8String"/>
37347 <method name=
"LoadFromStream" type=
"bool" overloaded=
"no">
37348 <autodoc>LoadFromStream(InputStream stream, String encoding=UTF8String) -
> bool
</autodoc>
37350 <param name=
"stream" type=
"wxInputStream" default=
""/>
37351 <param name=
"encoding" type=
"String" default=
"wxPyUTF8String"/>
37354 <method name=
"Save" type=
"bool" overloaded=
"no">
37355 <autodoc>Save(String filename) -
> bool
</autodoc>
37357 <param name=
"filename" type=
"String" default=
""/>
37360 <method name=
"SaveToStream" type=
"bool" overloaded=
"no">
37361 <autodoc>SaveToStream(OutputStream stream) -
> bool
</autodoc>
37363 <param name=
"stream" type=
"OutputStream" default=
""/>
37366 <method name=
"IsOk" type=
"bool" overloaded=
"no">
37367 <autodoc>IsOk() -
> bool
</autodoc>
37369 <method name=
"GetRoot" type=
"XmlNode" overloaded=
"no">
37370 <autodoc>GetRoot() -
> XmlNode
</autodoc>
37372 <method name=
"GetVersion" type=
"String" overloaded=
"no">
37373 <autodoc>GetVersion() -
> String
</autodoc>
37375 <method name=
"GetFileEncoding" type=
"String" overloaded=
"no">
37376 <autodoc>GetFileEncoding() -
> String
</autodoc>
37378 <method name=
"SetRoot" type=
"" overloaded=
"no">
37379 <autodoc>SetRoot(XmlNode node)
</autodoc>
37381 <param name=
"node" type=
"XmlNode" default=
""/>
37384 <method name=
"SetVersion" type=
"" overloaded=
"no">
37385 <autodoc>SetVersion(String version)
</autodoc>
37387 <param name=
"version" type=
"String" default=
""/>
37390 <method name=
"SetFileEncoding" type=
"" overloaded=
"no">
37391 <autodoc>SetFileEncoding(String encoding)
</autodoc>
37393 <param name=
"encoding" type=
"String" default=
""/>
37398 #---------------------------------------------------------------------------
37400 <class name=
"XmlResourceHandler" oldname=
"wxPyXmlResourceHandler" module=
"xrc">
37401 <baseclass name=
"Object"/>
37402 <constructor name=
"wxPyXmlResourceHandler" overloaded=
"no">
37403 <autodoc>__init__() -
> XmlResourceHandler
</autodoc>
37405 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
37406 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
37408 <param name=
"self" type=
"PyObject" default=
""/>
37409 <param name=
"_class" type=
"PyObject" default=
""/>
37412 <method name=
"CreateResource" type=
"Object" overloaded=
"no">
37413 <autodoc>CreateResource(XmlNode node, Object parent, Object instance) -
> Object
</autodoc>
37415 <param name=
"node" type=
"XmlNode" default=
""/>
37416 <param name=
"parent" type=
"Object" default=
""/>
37417 <param name=
"instance" type=
"Object" default=
""/>
37420 <method name=
"SetParentResource" type=
"" overloaded=
"no">
37421 <autodoc>SetParentResource(XmlResource res)
</autodoc>
37423 <param name=
"res" type=
"XmlResource" default=
""/>
37426 <method name=
"GetResource" type=
"XmlResource" overloaded=
"no">
37427 <autodoc>GetResource() -
> XmlResource
</autodoc>
37429 <method name=
"GetNode" type=
"XmlNode" overloaded=
"no">
37430 <autodoc>GetNode() -
> XmlNode
</autodoc>
37432 <method name=
"GetClass" type=
"String" overloaded=
"no">
37433 <autodoc>GetClass() -
> String
</autodoc>
37435 <method name=
"GetParent" type=
"Object" overloaded=
"no">
37436 <autodoc>GetParent() -
> Object
</autodoc>
37438 <method name=
"GetInstance" type=
"Object" overloaded=
"no">
37439 <autodoc>GetInstance() -
> Object
</autodoc>
37441 <method name=
"GetParentAsWindow" type=
"Window" overloaded=
"no">
37442 <autodoc>GetParentAsWindow() -
> Window
</autodoc>
37444 <method name=
"GetInstanceAsWindow" type=
"Window" overloaded=
"no">
37445 <autodoc>GetInstanceAsWindow() -
> Window
</autodoc>
37447 <method name=
"IsOfClass" type=
"bool" overloaded=
"no">
37448 <autodoc>IsOfClass(XmlNode node, String classname) -
> bool
</autodoc>
37450 <param name=
"node" type=
"XmlNode" default=
""/>
37451 <param name=
"classname" type=
"String" default=
""/>
37454 <method name=
"GetNodeContent" type=
"String" overloaded=
"no">
37455 <autodoc>GetNodeContent(XmlNode node) -
> String
</autodoc>
37457 <param name=
"node" type=
"XmlNode" default=
""/>
37460 <method name=
"HasParam" type=
"bool" overloaded=
"no">
37461 <autodoc>HasParam(String param) -
> bool
</autodoc>
37463 <param name=
"param" type=
"String" default=
""/>
37466 <method name=
"GetParamNode" type=
"XmlNode" overloaded=
"no">
37467 <autodoc>GetParamNode(String param) -
> XmlNode
</autodoc>
37469 <param name=
"param" type=
"String" default=
""/>
37472 <method name=
"GetParamValue" type=
"String" overloaded=
"no">
37473 <autodoc>GetParamValue(String param) -
> String
</autodoc>
37475 <param name=
"param" type=
"String" default=
""/>
37478 <method name=
"AddStyle" type=
"" overloaded=
"no">
37479 <autodoc>AddStyle(String name, int value)
</autodoc>
37481 <param name=
"name" type=
"String" default=
""/>
37482 <param name=
"value" type=
"int" default=
""/>
37485 <method name=
"AddWindowStyles" type=
"" overloaded=
"no">
37486 <autodoc>AddWindowStyles()
</autodoc>
37488 <method name=
"GetStyle" type=
"int" overloaded=
"no">
37489 <autodoc>GetStyle(String param=StyleString, int defaults=
0) -
> int
</autodoc>
37491 <param name=
"param" type=
"String" default=
"wxPyStyleString"/>
37492 <param name=
"defaults" type=
"int" default=
"0"/>
37495 <method name=
"GetText" type=
"String" overloaded=
"no">
37496 <autodoc>GetText(String param, bool translate=True) -
> String
</autodoc>
37498 <param name=
"param" type=
"String" default=
""/>
37499 <param name=
"translate" type=
"bool" default=
"True"/>
37502 <method name=
"GetID" type=
"int" overloaded=
"no">
37503 <autodoc>GetID() -
> int
</autodoc>
37505 <method name=
"GetName" type=
"String" overloaded=
"no">
37506 <autodoc>GetName() -
> String
</autodoc>
37508 <method name=
"GetBool" type=
"bool" overloaded=
"no">
37509 <autodoc>GetBool(String param, bool defaultv=False) -
> bool
</autodoc>
37511 <param name=
"param" type=
"String" default=
""/>
37512 <param name=
"defaultv" type=
"bool" default=
"False"/>
37515 <method name=
"GetLong" type=
"long" overloaded=
"no">
37516 <autodoc>GetLong(String param, long defaultv=
0) -
> long
</autodoc>
37518 <param name=
"param" type=
"String" default=
""/>
37519 <param name=
"defaultv" type=
"long" default=
"0"/>
37522 <method name=
"GetColour" type=
"Colour" overloaded=
"no">
37523 <autodoc>GetColour(String param) -
> Colour
</autodoc>
37525 <param name=
"param" type=
"String" default=
""/>
37528 <method name=
"GetSize" type=
"Size" overloaded=
"no">
37529 <autodoc>GetSize(String param=SizeString) -
> Size
</autodoc>
37531 <param name=
"param" type=
"String" default=
"wxPySizeString"/>
37534 <method name=
"GetPosition" type=
"Point" overloaded=
"no">
37535 <autodoc>GetPosition(String param=PosString) -
> Point
</autodoc>
37537 <param name=
"param" type=
"String" default=
"wxPyPosString"/>
37540 <method name=
"GetDimension" type=
"int" overloaded=
"no">
37541 <autodoc>GetDimension(String param, int defaultv=
0) -
> int
</autodoc>
37543 <param name=
"param" type=
"String" default=
""/>
37544 <param name=
"defaultv" type=
"int" default=
"0"/>
37547 <method name=
"GetBitmap" type=
"Bitmap" overloaded=
"no">
37548 <autodoc>GetBitmap(String param=BitmapString, wxArtClient defaultArtClient=wxART_OTHER,
37549 Size size=DefaultSize) -
> Bitmap
</autodoc>
37551 <param name=
"param" type=
"String" default=
"wxPyBitmapString"/>
37552 <param name=
"defaultArtClient" type=
"wxArtClient" default=
"wxART_OTHER"/>
37553 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
37556 <method name=
"GetIcon" type=
"Icon" overloaded=
"no">
37557 <autodoc>GetIcon(String param=IconString, wxArtClient defaultArtClient=wxART_OTHER,
37558 Size size=DefaultSize) -
> Icon
</autodoc>
37560 <param name=
"param" type=
"String" default=
"wxPyIconString"/>
37561 <param name=
"defaultArtClient" type=
"wxArtClient" default=
"wxART_OTHER"/>
37562 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
37565 <method name=
"GetFont" type=
"Font" overloaded=
"no">
37566 <autodoc>GetFont(String param=FontString) -
> Font
</autodoc>
37568 <param name=
"param" type=
"String" default=
"wxPyFontString"/>
37571 <method name=
"SetupWindow" type=
"" overloaded=
"no">
37572 <autodoc>SetupWindow(Window wnd)
</autodoc>
37574 <param name=
"wnd" type=
"Window" default=
""/>
37577 <method name=
"CreateChildren" type=
"" overloaded=
"no">
37578 <autodoc>CreateChildren(Object parent, bool this_hnd_only=False)
</autodoc>
37580 <param name=
"parent" type=
"Object" default=
""/>
37581 <param name=
"this_hnd_only" type=
"bool" default=
"False"/>
37584 <method name=
"CreateChildrenPrivately" type=
"" overloaded=
"no">
37585 <autodoc>CreateChildrenPrivately(Object parent, XmlNode rootnode=None)
</autodoc>
37587 <param name=
"parent" type=
"Object" default=
""/>
37588 <param name=
"rootnode" type=
"XmlNode" default=
"NULL"/>
37591 <method name=
"CreateResFromNode" type=
"Object" overloaded=
"no">
37592 <autodoc>CreateResFromNode(XmlNode node, Object parent, Object instance=None) -
> Object
</autodoc>
37594 <param name=
"node" type=
"XmlNode" default=
""/>
37595 <param name=
"parent" type=
"Object" default=
""/>
37596 <param name=
"instance" type=
"Object" default=
"NULL"/>
37599 <method name=
"GetCurFileSystem" type=
"FileSystem" overloaded=
"no">
37600 <autodoc>GetCurFileSystem() -
> FileSystem
</autodoc>
37603 <pythoncode>#----------------------------------------------------------------------------
37604 # The global was removed in favor of static accessor functions. This is for
37605 # backwards compatibility:
37607 TheXmlResource = XmlResource_Get()
37610 #----------------------------------------------------------------------------
37611 # Create a factory for handling the subclass property of the object tag.
37614 def _my_import(name):
37615 mod = __import__(name)
37616 components = name.split('.')
37617 for comp in components[
1:]:
37618 mod = getattr(mod, comp)
37622 class XmlSubclassFactory_Python(XmlSubclassFactory):
37623 def __init__(self):
37624 XmlSubclassFactory.__init__(self)
37626 def Create(self, className):
37627 assert className.find('.') != -
1, "Module name must be specified!"
37628 mname = className[:className.rfind('.')]
37629 cname = className[className.rfind('.')+
1:]
37630 module = _my_import(mname)
37631 klass = getattr(module, cname)
37636 XmlResource_AddSubclassFactory(XmlSubclassFactory_Python())
37638 #----------------------------------------------------------------------------
37641 <module name=
"gizmos">
37642 <import name=
"windows"/>
37643 <import name=
"controls"/>
37644 <pythoncode> wx = core
</pythoncode>
37645 <class name=
"DynamicSashSplitEvent" oldname=
"wxDynamicSashSplitEvent" module=
"gizmos">
37646 <baseclass name=
"CommandEvent"/>
37647 <constructor name=
"DynamicSashSplitEvent" overloaded=
"no">
37648 <autodoc>__init__(Object target) -
> DynamicSashSplitEvent
</autodoc>
37650 <param name=
"target" type=
"Object" default=
""/>
37654 <class name=
"DynamicSashUnifyEvent" oldname=
"wxDynamicSashUnifyEvent" module=
"gizmos">
37655 <baseclass name=
"CommandEvent"/>
37656 <constructor name=
"DynamicSashUnifyEvent" overloaded=
"no">
37657 <autodoc>__init__(Object target) -
> DynamicSashUnifyEvent
</autodoc>
37659 <param name=
"target" type=
"Object" default=
""/>
37663 <class name=
"DynamicSashWindow" oldname=
"wxDynamicSashWindow" module=
"gizmos">
37664 <baseclass name=
"Window"/>
37665 <constructor name=
"DynamicSashWindow" overloaded=
"no">
37666 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
37667 long style=wxCLIP_CHILDREN|wxDS_MANAGE_SCROLLBARS|wxDS_DRAG_CORNER,
37668 String name=DynamicSashNameStr) -
> DynamicSashWindow
</autodoc>
37670 <param name=
"parent" type=
"Window" default=
""/>
37671 <param name=
"id" type=
"int" default=
""/>
37672 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
37673 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
37674 <param name=
"style" type=
"long" default=
"wxCLIP_CHILDREN|wxDS_MANAGE_SCROLLBARS|wxDS_DRAG_CORNER"/>
37675 <param name=
"name" type=
"String" default=
"wxPyDynamicSashNameStr"/>
37678 <constructor name=
"PreDynamicSashWindow" overloaded=
"no">
37679 <autodoc>PreDynamicSashWindow() -
> DynamicSashWindow
</autodoc>
37681 <method name=
"Create" type=
"bool" overloaded=
"no">
37682 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
37683 long style=wxCLIP_CHILDREN|wxDS_MANAGE_SCROLLBARS|wxDS_DRAG_CORNER,
37684 String name=DynamicSashNameStr) -
> bool
</autodoc>
37686 <param name=
"parent" type=
"Window" default=
""/>
37687 <param name=
"id" type=
"int" default=
""/>
37688 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
37689 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
37690 <param name=
"style" type=
"long" default=
"wxCLIP_CHILDREN|wxDS_MANAGE_SCROLLBARS|wxDS_DRAG_CORNER"/>
37691 <param name=
"name" type=
"String" default=
"wxPyDynamicSashNameStr"/>
37694 <method name=
"GetHScrollBar" type=
"ScrollBar" overloaded=
"no">
37695 <autodoc>GetHScrollBar(Window child) -
> ScrollBar
</autodoc>
37697 <param name=
"child" type=
"Window" default=
""/>
37700 <method name=
"GetVScrollBar" type=
"ScrollBar" overloaded=
"no">
37701 <autodoc>GetVScrollBar(Window child) -
> ScrollBar
</autodoc>
37703 <param name=
"child" type=
"Window" default=
""/>
37708 EVT_DYNAMIC_SASH_SPLIT = wx.PyEventBinder( wxEVT_DYNAMIC_SASH_SPLIT,
1 )
37709 EVT_DYNAMIC_SASH_UNIFY = wx.PyEventBinder( wxEVT_DYNAMIC_SASH_UNIFY,
1 )
37711 <class name=
"EditableListBox" oldname=
"wxEditableListBox" module=
"gizmos">
37712 <baseclass name=
"Panel"/>
37713 <constructor name=
"EditableListBox" overloaded=
"no">
37714 <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition,
37715 Size size=DefaultSize, long style=wxEL_ALLOW_NEW|wxEL_ALLOW_EDIT|wxEL_ALLOW_DELETE,
37716 String name=EditableListBoxNameStr) -
> EditableListBox
</autodoc>
37718 <param name=
"parent" type=
"Window" default=
""/>
37719 <param name=
"id" type=
"int" default=
""/>
37720 <param name=
"label" type=
"String" default=
""/>
37721 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
37722 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
37723 <param name=
"style" type=
"long" default=
"wxEL_ALLOW_NEW|wxEL_ALLOW_EDIT|wxEL_ALLOW_DELETE"/>
37724 <param name=
"name" type=
"String" default=
"wxPyEditableListBoxNameStr"/>
37727 <method name=
"SetStrings" type=
"" overloaded=
"no">
37728 <autodoc>SetStrings(wxArrayString strings)
</autodoc>
37730 <param name=
"strings" type=
"wxArrayString" default=
""/>
37733 <method name=
"GetStrings" type=
"PyObject" overloaded=
"no">
37734 <autodoc>GetStrings() -
> PyObject
</autodoc>
37736 <method name=
"GetListCtrl" type=
"wxListCtrl" overloaded=
"no">
37737 <autodoc>GetListCtrl() -
> wxListCtrl
</autodoc>
37739 <method name=
"GetDelButton" type=
"BitmapButton" overloaded=
"no">
37740 <autodoc>GetDelButton() -
> BitmapButton
</autodoc>
37742 <method name=
"GetNewButton" type=
"BitmapButton" overloaded=
"no">
37743 <autodoc>GetNewButton() -
> BitmapButton
</autodoc>
37745 <method name=
"GetUpButton" type=
"BitmapButton" overloaded=
"no">
37746 <autodoc>GetUpButton() -
> BitmapButton
</autodoc>
37748 <method name=
"GetDownButton" type=
"BitmapButton" overloaded=
"no">
37749 <autodoc>GetDownButton() -
> BitmapButton
</autodoc>
37751 <method name=
"GetEditButton" type=
"BitmapButton" overloaded=
"no">
37752 <autodoc>GetEditButton() -
> BitmapButton
</autodoc>
37755 <class name=
"RemotelyScrolledTreeCtrl" oldname=
"wxRemotelyScrolledTreeCtrl" module=
"gizmos">
37756 <baseclass name=
"TreeCtrl"/>
37757 <constructor name=
"RemotelyScrolledTreeCtrl" overloaded=
"no">
37758 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
37759 long style=TR_HAS_BUTTONS) -
> RemotelyScrolledTreeCtrl
</autodoc>
37761 <param name=
"parent" type=
"Window" default=
""/>
37762 <param name=
"id" type=
"int" default=
""/>
37763 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
37764 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
37765 <param name=
"style" type=
"long" default=
"wxTR_HAS_BUTTONS"/>
37768 <method name=
"HideVScrollbar" type=
"" overloaded=
"no">
37769 <autodoc>HideVScrollbar()
</autodoc>
37771 <method name=
"AdjustRemoteScrollbars" type=
"" overloaded=
"no">
37772 <autodoc>AdjustRemoteScrollbars()
</autodoc>
37774 <method name=
"GetScrolledWindow" type=
"ScrolledWindow" overloaded=
"no">
37775 <autodoc>GetScrolledWindow() -
> ScrolledWindow
</autodoc>
37777 <method name=
"ScrollToLine" type=
"" overloaded=
"no">
37778 <autodoc>ScrollToLine(int posHoriz, int posVert)
</autodoc>
37780 <param name=
"posHoriz" type=
"int" default=
""/>
37781 <param name=
"posVert" type=
"int" default=
""/>
37784 <method name=
"SetCompanionWindow" type=
"" overloaded=
"no">
37785 <autodoc>SetCompanionWindow(Window companion)
</autodoc>
37787 <param name=
"companion" type=
"Window" default=
""/>
37790 <method name=
"GetCompanionWindow" type=
"Window" overloaded=
"no">
37791 <autodoc>GetCompanionWindow() -
> Window
</autodoc>
37794 <class name=
"TreeCompanionWindow" oldname=
"wxPyTreeCompanionWindow" module=
"gizmos">
37795 <baseclass name=
"Window"/>
37796 <constructor name=
"wxPyTreeCompanionWindow" overloaded=
"no">
37797 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
37798 Size size=DefaultSize, long style=
0) -
> TreeCompanionWindow
</autodoc>
37800 <param name=
"parent" type=
"Window" default=
""/>
37801 <param name=
"id" type=
"int" default=
"-1"/>
37802 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
37803 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
37804 <param name=
"style" type=
"long" default=
"0"/>
37807 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
37808 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
37810 <param name=
"self" type=
"PyObject" default=
""/>
37811 <param name=
"_class" type=
"PyObject" default=
""/>
37814 <method name=
"GetTreeCtrl" type=
"RemotelyScrolledTreeCtrl" overloaded=
"no">
37815 <autodoc>GetTreeCtrl() -
> RemotelyScrolledTreeCtrl
</autodoc>
37817 <method name=
"SetTreeCtrl" type=
"" overloaded=
"no">
37818 <autodoc>SetTreeCtrl(RemotelyScrolledTreeCtrl treeCtrl)
</autodoc>
37820 <param name=
"treeCtrl" type=
"RemotelyScrolledTreeCtrl" default=
""/>
37824 <class name=
"ThinSplitterWindow" oldname=
"wxThinSplitterWindow" module=
"gizmos">
37825 <baseclass name=
"SplitterWindow"/>
37826 <constructor name=
"ThinSplitterWindow" overloaded=
"no">
37827 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
37828 Size size=DefaultSize, long style=wxSP_3D|wxCLIP_CHILDREN) -
> ThinSplitterWindow
</autodoc>
37830 <param name=
"parent" type=
"Window" default=
""/>
37831 <param name=
"id" type=
"int" default=
"-1"/>
37832 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
37833 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
37834 <param name=
"style" type=
"long" default=
"wxSP_3D|wxCLIP_CHILDREN"/>
37838 <class name=
"SplitterScrolledWindow" oldname=
"wxSplitterScrolledWindow" module=
"gizmos">
37839 <baseclass name=
"ScrolledWindow"/>
37840 <constructor name=
"SplitterScrolledWindow" overloaded=
"no">
37841 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
37842 Size size=DefaultSize, long style=
0) -
> SplitterScrolledWindow
</autodoc>
37844 <param name=
"parent" type=
"Window" default=
""/>
37845 <param name=
"id" type=
"int" default=
"-1"/>
37846 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
37847 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
37848 <param name=
"style" type=
"long" default=
"0"/>
37852 <class name=
"LEDNumberCtrl" oldname=
"wxLEDNumberCtrl" module=
"gizmos">
37853 <baseclass name=
"Control"/>
37854 <constructor name=
"LEDNumberCtrl" overloaded=
"no">
37855 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
37856 Size size=DefaultSize, long style=wxLED_ALIGN_LEFT|wxLED_DRAW_FADED) -
> LEDNumberCtrl
</autodoc>
37858 <param name=
"parent" type=
"Window" default=
""/>
37859 <param name=
"id" type=
"int" default=
"-1"/>
37860 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
37861 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
37862 <param name=
"style" type=
"long" default=
"wxLED_ALIGN_LEFT|wxLED_DRAW_FADED"/>
37865 <constructor name=
"PreLEDNumberCtrl" overloaded=
"no">
37866 <autodoc>PreLEDNumberCtrl() -
> LEDNumberCtrl
</autodoc>
37868 <method name=
"Create" type=
"bool" overloaded=
"no">
37869 <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition,
37870 Size size=DefaultSize, long style=wxLED_ALIGN_LEFT|wxLED_DRAW_FADED) -
> bool
</autodoc>
37872 <param name=
"parent" type=
"Window" default=
""/>
37873 <param name=
"id" type=
"int" default=
"-1"/>
37874 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
37875 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
37876 <param name=
"style" type=
"long" default=
"wxLED_ALIGN_LEFT|wxLED_DRAW_FADED"/>
37879 <method name=
"GetAlignment" type=
"wxLEDValueAlign" overloaded=
"no">
37880 <autodoc>GetAlignment() -
> int
</autodoc>
37882 <method name=
"GetDrawFaded" type=
"bool" overloaded=
"no">
37883 <autodoc>GetDrawFaded() -
> bool
</autodoc>
37885 <method name=
"GetValue" type=
"String" overloaded=
"no">
37886 <autodoc>GetValue() -
> String
</autodoc>
37888 <method name=
"SetAlignment" type=
"" overloaded=
"no">
37889 <autodoc>SetAlignment(int Alignment, bool Redraw=true)
</autodoc>
37891 <param name=
"Alignment" type=
"wxLEDValueAlign" default=
""/>
37892 <param name=
"Redraw" type=
"bool" default=
"true"/>
37895 <method name=
"SetDrawFaded" type=
"" overloaded=
"no">
37896 <autodoc>SetDrawFaded(bool DrawFaded, bool Redraw=true)
</autodoc>
37898 <param name=
"DrawFaded" type=
"bool" default=
""/>
37899 <param name=
"Redraw" type=
"bool" default=
"true"/>
37902 <method name=
"SetValue" type=
"" overloaded=
"no">
37903 <autodoc>SetValue(String Value, bool Redraw=true)
</autodoc>
37905 <param name=
"Value" type=
"String" default=
""/>
37906 <param name=
"Redraw" type=
"bool" default=
"true"/>
37910 <class name=
"TreeListColumnInfo" oldname=
"wxTreeListColumnInfo" module=
"gizmos">
37911 <baseclass name=
"Object"/>
37912 <constructor name=
"TreeListColumnInfo" overloaded=
"no">
37913 <autodoc>__init__(String text=EmptyString, int image=-
1, size_t width=
100,
37914 int alignment=TL_ALIGN_LEFT) -
> TreeListColumnInfo
</autodoc>
37916 <param name=
"text" type=
"String" default=
"wxPyEmptyString"/>
37917 <param name=
"image" type=
"int" default=
"-1"/>
37918 <param name=
"width" type=
"size_t" default=
"100"/>
37919 <param name=
"alignment" type=
"wxTreeListColumnAlign" default=
"wxTL_ALIGN_LEFT"/>
37922 <method name=
"GetAlignment" type=
"wxTreeListColumnAlign" overloaded=
"no">
37923 <autodoc>GetAlignment() -
> int
</autodoc>
37925 <method name=
"GetText" type=
"String" overloaded=
"no">
37926 <autodoc>GetText() -
> String
</autodoc>
37928 <method name=
"GetImage" type=
"int" overloaded=
"no">
37929 <autodoc>GetImage() -
> int
</autodoc>
37931 <method name=
"GetSelectedImage" type=
"int" overloaded=
"no">
37932 <autodoc>GetSelectedImage() -
> int
</autodoc>
37934 <method name=
"GetWidth" type=
"size_t" overloaded=
"no">
37935 <autodoc>GetWidth() -
> size_t
</autodoc>
37937 <method name=
"SetAlignment" type=
"" overloaded=
"no">
37938 <autodoc>SetAlignment(int alignment)
</autodoc>
37940 <param name=
"alignment" type=
"wxTreeListColumnAlign" default=
""/>
37943 <method name=
"SetText" type=
"" overloaded=
"no">
37944 <autodoc>SetText(String text)
</autodoc>
37946 <param name=
"text" type=
"String" default=
""/>
37949 <method name=
"SetImage" type=
"" overloaded=
"no">
37950 <autodoc>SetImage(int image)
</autodoc>
37952 <param name=
"image" type=
"int" default=
""/>
37955 <method name=
"SetSelectedImage" type=
"" overloaded=
"no">
37956 <autodoc>SetSelectedImage(int image)
</autodoc>
37958 <param name=
"image" type=
"int" default=
""/>
37961 <method name=
"SetWidth" type=
"" overloaded=
"no">
37962 <autodoc>SetWidth(size_t with)
</autodoc>
37964 <param name=
"with" type=
"size_t" default=
""/>
37968 <class name=
"TreeListCtrl" oldname=
"wxPyTreeListCtrl" module=
"gizmos">
37969 <baseclass name=
"Control"/>
37970 <constructor name=
"wxPyTreeListCtrl" overloaded=
"no">
37971 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
37972 Size size=DefaultSize, long style=TR_DEFAULT_STYLE,
37973 Validator validator=DefaultValidator,
37974 String name=TreeListCtrlNameStr) -
> TreeListCtrl
</autodoc>
37976 <param name=
"parent" type=
"Window" default=
""/>
37977 <param name=
"id" type=
"int" default=
"-1"/>
37978 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
37979 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
37980 <param name=
"style" type=
"long" default=
"wxTR_DEFAULT_STYLE"/>
37981 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
37982 <param name=
"name" type=
"String" default=
"wxPyTreeListCtrlNameStr"/>
37985 <constructor name=
"PreTreeListCtrl" overloaded=
"no">
37986 <autodoc>PreTreeListCtrl() -
> TreeListCtrl
</autodoc>
37988 <method name=
"Create" type=
"bool" overloaded=
"no">
37989 <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition,
37990 Size size=DefaultSize, long style=TR_DEFAULT_STYLE,
37991 Validator validator=DefaultValidator,
37992 String name=TreeListCtrlNameStr) -
> bool
</autodoc>
37993 <docstring>Do the
2nd phase and create the GUI control.
</docstring>
37995 <param name=
"parent" type=
"Window" default=
""/>
37996 <param name=
"id" type=
"int" default=
"-1"/>
37997 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
37998 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
37999 <param name=
"style" type=
"long" default=
"wxTR_DEFAULT_STYLE"/>
38000 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
38001 <param name=
"name" type=
"String" default=
"wxPyTreeListCtrlNameStr"/>
38004 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
38005 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
38007 <param name=
"self" type=
"PyObject" default=
""/>
38008 <param name=
"_class" type=
"PyObject" default=
""/>
38011 <method name=
"GetCount" type=
"size_t" overloaded=
"no">
38012 <autodoc>GetCount() -
> size_t
</autodoc>
38014 <method name=
"GetIndent" type=
"unsigned int" overloaded=
"no">
38015 <autodoc>GetIndent() -
> unsigned int
</autodoc>
38017 <method name=
"SetIndent" type=
"" overloaded=
"no">
38018 <autodoc>SetIndent(unsigned int indent)
</autodoc>
38020 <param name=
"indent" type=
"unsigned int" default=
""/>
38023 <method name=
"GetSpacing" type=
"unsigned int" overloaded=
"no">
38024 <autodoc>GetSpacing() -
> unsigned int
</autodoc>
38026 <method name=
"SetSpacing" type=
"" overloaded=
"no">
38027 <autodoc>SetSpacing(unsigned int spacing)
</autodoc>
38029 <param name=
"spacing" type=
"unsigned int" default=
""/>
38032 <method name=
"GetLineSpacing" type=
"unsigned int" overloaded=
"no">
38033 <autodoc>GetLineSpacing() -
> unsigned int
</autodoc>
38035 <method name=
"SetLineSpacing" type=
"" overloaded=
"no">
38036 <autodoc>SetLineSpacing(unsigned int spacing)
</autodoc>
38038 <param name=
"spacing" type=
"unsigned int" default=
""/>
38041 <method name=
"GetImageList" type=
"ImageList" overloaded=
"no">
38042 <autodoc>GetImageList() -
> ImageList
</autodoc>
38044 <method name=
"GetStateImageList" type=
"ImageList" overloaded=
"no">
38045 <autodoc>GetStateImageList() -
> ImageList
</autodoc>
38047 <method name=
"GetButtonsImageList" type=
"ImageList" overloaded=
"no">
38048 <autodoc>GetButtonsImageList() -
> ImageList
</autodoc>
38050 <method name=
"SetImageList" type=
"" overloaded=
"no">
38051 <autodoc>SetImageList(ImageList imageList)
</autodoc>
38053 <param name=
"imageList" type=
"ImageList" default=
""/>
38056 <method name=
"SetStateImageList" type=
"" overloaded=
"no">
38057 <autodoc>SetStateImageList(ImageList imageList)
</autodoc>
38059 <param name=
"imageList" type=
"ImageList" default=
""/>
38062 <method name=
"SetButtonsImageList" type=
"" overloaded=
"no">
38063 <autodoc>SetButtonsImageList(ImageList imageList)
</autodoc>
38065 <param name=
"imageList" type=
"ImageList" default=
""/>
38068 <method name=
"AssignImageList" type=
"" overloaded=
"no">
38069 <autodoc>AssignImageList(ImageList imageList)
</autodoc>
38071 <param name=
"imageList" type=
"ImageList" default=
""/>
38074 <method name=
"AssignStateImageList" type=
"" overloaded=
"no">
38075 <autodoc>AssignStateImageList(ImageList imageList)
</autodoc>
38077 <param name=
"imageList" type=
"ImageList" default=
""/>
38080 <method name=
"AssignButtonsImageList" type=
"" overloaded=
"no">
38081 <autodoc>AssignButtonsImageList(ImageList imageList)
</autodoc>
38083 <param name=
"imageList" type=
"ImageList" default=
""/>
38086 <method name=
"AddColumn" type=
"" overloaded=
"no">
38087 <autodoc>AddColumn(String text)
</autodoc>
38089 <param name=
"text" type=
"String" default=
""/>
38092 <method name=
"AddColumnInfo" type=
"" overloaded=
"no">
38093 <autodoc>AddColumnInfo(TreeListColumnInfo col)
</autodoc>
38095 <param name=
"col" type=
"TreeListColumnInfo" default=
""/>
38098 <method name=
"InsertColumn" type=
"" overloaded=
"no">
38099 <autodoc>InsertColumn(size_t before, String text)
</autodoc>
38101 <param name=
"before" type=
"size_t" default=
""/>
38102 <param name=
"text" type=
"String" default=
""/>
38105 <method name=
"InsertColumnInfo" type=
"" overloaded=
"no">
38106 <autodoc>InsertColumnInfo(size_t before, TreeListColumnInfo col)
</autodoc>
38108 <param name=
"before" type=
"size_t" default=
""/>
38109 <param name=
"col" type=
"TreeListColumnInfo" default=
""/>
38112 <method name=
"RemoveColumn" type=
"" overloaded=
"no">
38113 <autodoc>RemoveColumn(size_t column)
</autodoc>
38115 <param name=
"column" type=
"size_t" default=
""/>
38118 <method name=
"GetColumnCount" type=
"size_t" overloaded=
"no">
38119 <autodoc>GetColumnCount() -
> size_t
</autodoc>
38121 <method name=
"SetColumnWidth" type=
"" overloaded=
"no">
38122 <autodoc>SetColumnWidth(size_t column, size_t width)
</autodoc>
38124 <param name=
"column" type=
"size_t" default=
""/>
38125 <param name=
"width" type=
"size_t" default=
""/>
38128 <method name=
"GetColumnWidth" type=
"int" overloaded=
"no">
38129 <autodoc>GetColumnWidth(size_t column) -
> int
</autodoc>
38131 <param name=
"column" type=
"size_t" default=
""/>
38134 <method name=
"SetMainColumn" type=
"" overloaded=
"no">
38135 <autodoc>SetMainColumn(size_t column)
</autodoc>
38137 <param name=
"column" type=
"size_t" default=
""/>
38140 <method name=
"GetMainColumn" type=
"size_t" overloaded=
"no">
38141 <autodoc>GetMainColumn() -
> size_t
</autodoc>
38143 <method name=
"SetColumnText" type=
"" overloaded=
"no">
38144 <autodoc>SetColumnText(size_t column, String text)
</autodoc>
38146 <param name=
"column" type=
"size_t" default=
""/>
38147 <param name=
"text" type=
"String" default=
""/>
38150 <method name=
"GetColumnText" type=
"String" overloaded=
"no">
38151 <autodoc>GetColumnText(size_t column) -
> String
</autodoc>
38153 <param name=
"column" type=
"size_t" default=
""/>
38156 <method name=
"SetColumn" type=
"" overloaded=
"no">
38157 <autodoc>SetColumn(size_t column, TreeListColumnInfo info)
</autodoc>
38159 <param name=
"column" type=
"size_t" default=
""/>
38160 <param name=
"info" type=
"TreeListColumnInfo" default=
""/>
38163 <method name=
"GetColumn" type=
"TreeListColumnInfo" overloaded=
"no">
38164 <autodoc>GetColumn(size_t column) -
> TreeListColumnInfo
</autodoc>
38166 <param name=
"column" type=
"size_t" default=
""/>
38169 <method name=
"SetColumnAlignment" type=
"" overloaded=
"no">
38170 <autodoc>SetColumnAlignment(size_t column, int align)
</autodoc>
38172 <param name=
"column" type=
"size_t" default=
""/>
38173 <param name=
"align" type=
"wxTreeListColumnAlign" default=
""/>
38176 <method name=
"GetColumnAlignment" type=
"wxTreeListColumnAlign" overloaded=
"no">
38177 <autodoc>GetColumnAlignment(size_t column) -
> int
</autodoc>
38179 <param name=
"column" type=
"size_t" default=
""/>
38182 <method name=
"SetColumnImage" type=
"" overloaded=
"no">
38183 <autodoc>SetColumnImage(size_t column, int image)
</autodoc>
38185 <param name=
"column" type=
"size_t" default=
""/>
38186 <param name=
"image" type=
"int" default=
""/>
38189 <method name=
"GetColumnImage" type=
"int" overloaded=
"no">
38190 <autodoc>GetColumnImage(size_t column) -
> int
</autodoc>
38192 <param name=
"column" type=
"size_t" default=
""/>
38195 <method name=
"GetItemText" type=
"String" overloaded=
"no">
38196 <autodoc>GetItemText(TreeItemId item, int column=-
1) -
> String
</autodoc>
38198 <param name=
"item" type=
"TreeItemId" default=
""/>
38199 <param name=
"column" type=
"int" default=
"-1"/>
38202 <method name=
"GetItemImage" type=
"int" overloaded=
"no">
38203 <autodoc>GetItemImage(TreeItemId item, int column=-
1, int which=TreeItemIcon_Normal) -
> int
</autodoc>
38205 <param name=
"item" type=
"TreeItemId" default=
""/>
38206 <param name=
"column" type=
"int" default=
"-1"/>
38207 <param name=
"which" type=
"wxTreeItemIcon" default=
"wxTreeItemIcon_Normal"/>
38210 <method name=
"SetItemText" type=
"" overloaded=
"no">
38211 <autodoc>SetItemText(TreeItemId item, String text, int column=-
1)
</autodoc>
38213 <param name=
"item" type=
"TreeItemId" default=
""/>
38214 <param name=
"text" type=
"String" default=
""/>
38215 <param name=
"column" type=
"int" default=
"-1"/>
38218 <method name=
"SetItemImage" type=
"" overloaded=
"no">
38219 <autodoc>SetItemImage(TreeItemId item, int image, int column=-
1, int which=TreeItemIcon_Normal)
</autodoc>
38221 <param name=
"item" type=
"TreeItemId" default=
""/>
38222 <param name=
"image" type=
"int" default=
""/>
38223 <param name=
"column" type=
"int" default=
"-1"/>
38224 <param name=
"which" type=
"wxTreeItemIcon" default=
"wxTreeItemIcon_Normal"/>
38227 <method name=
"GetItemData" type=
"TreeItemData" overloaded=
"no">
38228 <autodoc>GetItemData(TreeItemId item) -
> TreeItemData
</autodoc>
38230 <param name=
"item" type=
"TreeItemId" default=
""/>
38233 <method name=
"SetItemData" type=
"" overloaded=
"no">
38234 <autodoc>SetItemData(TreeItemId item, TreeItemData data)
</autodoc>
38236 <param name=
"item" type=
"TreeItemId" default=
""/>
38237 <param name=
"data" type=
"TreeItemData" default=
""/>
38240 <method name=
"GetItemPyData" type=
"PyObject" overloaded=
"no">
38241 <autodoc>GetItemPyData(TreeItemId item) -
> PyObject
</autodoc>
38243 <param name=
"item" type=
"TreeItemId" default=
""/>
38246 <method name=
"SetItemPyData" type=
"" overloaded=
"no">
38247 <autodoc>SetItemPyData(TreeItemId item, PyObject obj)
</autodoc>
38249 <param name=
"item" type=
"TreeItemId" default=
""/>
38250 <param name=
"obj" type=
"PyObject" default=
""/>
38253 <method name=
"SetItemHasChildren" type=
"" overloaded=
"no">
38254 <autodoc>SetItemHasChildren(TreeItemId item, bool has=True)
</autodoc>
38256 <param name=
"item" type=
"TreeItemId" default=
""/>
38257 <param name=
"has" type=
"bool" default=
"True"/>
38260 <method name=
"SetItemBold" type=
"" overloaded=
"no">
38261 <autodoc>SetItemBold(TreeItemId item, bool bold=True)
</autodoc>
38263 <param name=
"item" type=
"TreeItemId" default=
""/>
38264 <param name=
"bold" type=
"bool" default=
"True"/>
38267 <method name=
"SetItemTextColour" type=
"" overloaded=
"no">
38268 <autodoc>SetItemTextColour(TreeItemId item, Colour col)
</autodoc>
38270 <param name=
"item" type=
"TreeItemId" default=
""/>
38271 <param name=
"col" type=
"Colour" default=
""/>
38274 <method name=
"SetItemBackgroundColour" type=
"" overloaded=
"no">
38275 <autodoc>SetItemBackgroundColour(TreeItemId item, Colour col)
</autodoc>
38277 <param name=
"item" type=
"TreeItemId" default=
""/>
38278 <param name=
"col" type=
"Colour" default=
""/>
38281 <method name=
"SetItemFont" type=
"" overloaded=
"no">
38282 <autodoc>SetItemFont(TreeItemId item, Font font)
</autodoc>
38284 <param name=
"item" type=
"TreeItemId" default=
""/>
38285 <param name=
"font" type=
"Font" default=
""/>
38288 <method name=
"GetItemBold" type=
"bool" overloaded=
"no">
38289 <autodoc>GetItemBold(TreeItemId item) -
> bool
</autodoc>
38291 <param name=
"item" type=
"TreeItemId" default=
""/>
38294 <method name=
"GetItemTextColour" type=
"Colour" overloaded=
"no">
38295 <autodoc>GetItemTextColour(TreeItemId item) -
> Colour
</autodoc>
38297 <param name=
"item" type=
"TreeItemId" default=
""/>
38300 <method name=
"GetItemBackgroundColour" type=
"Colour" overloaded=
"no">
38301 <autodoc>GetItemBackgroundColour(TreeItemId item) -
> Colour
</autodoc>
38303 <param name=
"item" type=
"TreeItemId" default=
""/>
38306 <method name=
"GetItemFont" type=
"Font" overloaded=
"no">
38307 <autodoc>GetItemFont(TreeItemId item) -
> Font
</autodoc>
38309 <param name=
"item" type=
"TreeItemId" default=
""/>
38312 <method name=
"IsVisible" type=
"bool" overloaded=
"no">
38313 <autodoc>IsVisible(TreeItemId item) -
> bool
</autodoc>
38315 <param name=
"item" type=
"TreeItemId" default=
""/>
38318 <method name=
"ItemHasChildren" type=
"bool" overloaded=
"no">
38319 <autodoc>ItemHasChildren(TreeItemId item) -
> bool
</autodoc>
38321 <param name=
"item" type=
"TreeItemId" default=
""/>
38324 <method name=
"IsExpanded" type=
"bool" overloaded=
"no">
38325 <autodoc>IsExpanded(TreeItemId item) -
> bool
</autodoc>
38327 <param name=
"item" type=
"TreeItemId" default=
""/>
38330 <method name=
"IsSelected" type=
"bool" overloaded=
"no">
38331 <autodoc>IsSelected(TreeItemId item) -
> bool
</autodoc>
38333 <param name=
"item" type=
"TreeItemId" default=
""/>
38336 <method name=
"IsBold" type=
"bool" overloaded=
"no">
38337 <autodoc>IsBold(TreeItemId item) -
> bool
</autodoc>
38339 <param name=
"item" type=
"TreeItemId" default=
""/>
38342 <method name=
"GetChildrenCount" type=
"size_t" overloaded=
"no">
38343 <autodoc>GetChildrenCount(TreeItemId item, bool recursively=True) -
> size_t
</autodoc>
38345 <param name=
"item" type=
"TreeItemId" default=
""/>
38346 <param name=
"recursively" type=
"bool" default=
"True"/>
38349 <method name=
"GetRootItem" type=
"TreeItemId" overloaded=
"no">
38350 <autodoc>GetRootItem() -
> TreeItemId
</autodoc>
38352 <method name=
"GetSelection" type=
"TreeItemId" overloaded=
"no">
38353 <autodoc>GetSelection() -
> TreeItemId
</autodoc>
38355 <method name=
"GetSelections" type=
"PyObject" overloaded=
"no">
38356 <autodoc>GetSelections() -
> PyObject
</autodoc>
38358 <method name=
"GetItemParent" type=
"TreeItemId" overloaded=
"no">
38359 <autodoc>GetItemParent(TreeItemId item) -
> TreeItemId
</autodoc>
38361 <param name=
"item" type=
"TreeItemId" default=
""/>
38364 <method name=
"GetFirstChild" type=
"PyObject" overloaded=
"no">
38365 <autodoc>GetFirstChild(TreeItemId item) -
> PyObject
</autodoc>
38367 <param name=
"item" type=
"TreeItemId" default=
""/>
38370 <method name=
"GetNextChild" type=
"PyObject" overloaded=
"no">
38371 <autodoc>GetNextChild(TreeItemId item, long cookie) -
> PyObject
</autodoc>
38373 <param name=
"item" type=
"TreeItemId" default=
""/>
38374 <param name=
"cookie" type=
"long" default=
""/>
38377 <method name=
"GetLastChild" type=
"TreeItemId" overloaded=
"no">
38378 <autodoc>GetLastChild(TreeItemId item) -
> TreeItemId
</autodoc>
38380 <param name=
"item" type=
"TreeItemId" default=
""/>
38383 <method name=
"GetNextSibling" type=
"TreeItemId" overloaded=
"no">
38384 <autodoc>GetNextSibling(TreeItemId item) -
> TreeItemId
</autodoc>
38386 <param name=
"item" type=
"TreeItemId" default=
""/>
38389 <method name=
"GetPrevSibling" type=
"TreeItemId" overloaded=
"no">
38390 <autodoc>GetPrevSibling(TreeItemId item) -
> TreeItemId
</autodoc>
38392 <param name=
"item" type=
"TreeItemId" default=
""/>
38395 <method name=
"GetFirstVisibleItem" type=
"TreeItemId" overloaded=
"no">
38396 <autodoc>GetFirstVisibleItem() -
> TreeItemId
</autodoc>
38398 <method name=
"GetNextVisible" type=
"TreeItemId" overloaded=
"no">
38399 <autodoc>GetNextVisible(TreeItemId item) -
> TreeItemId
</autodoc>
38401 <param name=
"item" type=
"TreeItemId" default=
""/>
38404 <method name=
"GetPrevVisible" type=
"TreeItemId" overloaded=
"no">
38405 <autodoc>GetPrevVisible(TreeItemId item) -
> TreeItemId
</autodoc>
38407 <param name=
"item" type=
"TreeItemId" default=
""/>
38410 <method name=
"GetNext" type=
"TreeItemId" overloaded=
"no">
38411 <autodoc>GetNext(TreeItemId item) -
> TreeItemId
</autodoc>
38413 <param name=
"item" type=
"TreeItemId" default=
""/>
38416 <method name=
"AddRoot" type=
"TreeItemId" overloaded=
"no">
38417 <autodoc>AddRoot(String text, int image=-
1, int selectedImage=-
1, TreeItemData data=None) -
> TreeItemId
</autodoc>
38419 <param name=
"text" type=
"String" default=
""/>
38420 <param name=
"image" type=
"int" default=
"-1"/>
38421 <param name=
"selectedImage" type=
"int" default=
"-1"/>
38422 <param name=
"data" type=
"TreeItemData" default=
"NULL"/>
38425 <method name=
"PrependItem" type=
"TreeItemId" overloaded=
"no">
38426 <autodoc>PrependItem(TreeItemId parent, String text, int image=-
1, int selectedImage=-
1,
38427 TreeItemData data=None) -
> TreeItemId
</autodoc>
38429 <param name=
"parent" type=
"TreeItemId" default=
""/>
38430 <param name=
"text" type=
"String" default=
""/>
38431 <param name=
"image" type=
"int" default=
"-1"/>
38432 <param name=
"selectedImage" type=
"int" default=
"-1"/>
38433 <param name=
"data" type=
"TreeItemData" default=
"NULL"/>
38436 <method name=
"InsertItem" type=
"TreeItemId" overloaded=
"no">
38437 <autodoc>InsertItem(TreeItemId parent, TreeItemId idPrevious, String text,
38438 int image=-
1, int selectedImage=-
1, TreeItemData data=None) -
> TreeItemId
</autodoc>
38440 <param name=
"parent" type=
"TreeItemId" default=
""/>
38441 <param name=
"idPrevious" type=
"TreeItemId" default=
""/>
38442 <param name=
"text" type=
"String" default=
""/>
38443 <param name=
"image" type=
"int" default=
"-1"/>
38444 <param name=
"selectedImage" type=
"int" default=
"-1"/>
38445 <param name=
"data" type=
"TreeItemData" default=
"NULL"/>
38448 <method name=
"InsertItemBefore" type=
"TreeItemId" overloaded=
"no">
38449 <autodoc>InsertItemBefore(TreeItemId parent, size_t index, String text, int image=-
1,
38450 int selectedImage=-
1, TreeItemData data=None) -
> TreeItemId
</autodoc>
38452 <param name=
"parent" type=
"TreeItemId" default=
""/>
38453 <param name=
"index" type=
"size_t" default=
""/>
38454 <param name=
"text" type=
"String" default=
""/>
38455 <param name=
"image" type=
"int" default=
"-1"/>
38456 <param name=
"selectedImage" type=
"int" default=
"-1"/>
38457 <param name=
"data" type=
"TreeItemData" default=
"NULL"/>
38460 <method name=
"AppendItem" type=
"TreeItemId" overloaded=
"no">
38461 <autodoc>AppendItem(TreeItemId parent, String text, int image=-
1, int selectedImage=-
1,
38462 TreeItemData data=None) -
> TreeItemId
</autodoc>
38464 <param name=
"parent" type=
"TreeItemId" default=
""/>
38465 <param name=
"text" type=
"String" default=
""/>
38466 <param name=
"image" type=
"int" default=
"-1"/>
38467 <param name=
"selectedImage" type=
"int" default=
"-1"/>
38468 <param name=
"data" type=
"TreeItemData" default=
"NULL"/>
38471 <method name=
"Delete" type=
"" overloaded=
"no">
38472 <autodoc>Delete(TreeItemId item)
</autodoc>
38474 <param name=
"item" type=
"TreeItemId" default=
""/>
38477 <method name=
"DeleteChildren" type=
"" overloaded=
"no">
38478 <autodoc>DeleteChildren(TreeItemId item)
</autodoc>
38480 <param name=
"item" type=
"TreeItemId" default=
""/>
38483 <method name=
"DeleteAllItems" type=
"" overloaded=
"no">
38484 <autodoc>DeleteAllItems()
</autodoc>
38486 <method name=
"Expand" type=
"" overloaded=
"no">
38487 <autodoc>Expand(TreeItemId item)
</autodoc>
38489 <param name=
"item" type=
"TreeItemId" default=
""/>
38492 <method name=
"ExpandAll" type=
"" overloaded=
"no">
38493 <autodoc>ExpandAll(TreeItemId item)
</autodoc>
38495 <param name=
"item" type=
"TreeItemId" default=
""/>
38498 <method name=
"Collapse" type=
"" overloaded=
"no">
38499 <autodoc>Collapse(TreeItemId item)
</autodoc>
38501 <param name=
"item" type=
"TreeItemId" default=
""/>
38504 <method name=
"CollapseAndReset" type=
"" overloaded=
"no">
38505 <autodoc>CollapseAndReset(TreeItemId item)
</autodoc>
38507 <param name=
"item" type=
"TreeItemId" default=
""/>
38510 <method name=
"Toggle" type=
"" overloaded=
"no">
38511 <autodoc>Toggle(TreeItemId item)
</autodoc>
38513 <param name=
"item" type=
"TreeItemId" default=
""/>
38516 <method name=
"Unselect" type=
"" overloaded=
"no">
38517 <autodoc>Unselect()
</autodoc>
38519 <method name=
"UnselectAll" type=
"" overloaded=
"no">
38520 <autodoc>UnselectAll()
</autodoc>
38522 <method name=
"SelectItem" type=
"" overloaded=
"no">
38523 <autodoc>SelectItem(TreeItemId item, bool unselect_others=True, bool extended_select=False)
</autodoc>
38525 <param name=
"item" type=
"TreeItemId" default=
""/>
38526 <param name=
"unselect_others" type=
"bool" default=
"True"/>
38527 <param name=
"extended_select" type=
"bool" default=
"False"/>
38530 <method name=
"EnsureVisible" type=
"" overloaded=
"no">
38531 <autodoc>EnsureVisible(TreeItemId item)
</autodoc>
38533 <param name=
"item" type=
"TreeItemId" default=
""/>
38536 <method name=
"ScrollTo" type=
"" overloaded=
"no">
38537 <autodoc>ScrollTo(TreeItemId item)
</autodoc>
38539 <param name=
"item" type=
"TreeItemId" default=
""/>
38542 <method name=
"HitTest" type=
"TreeItemId" overloaded=
"no">
38543 <autodoc>HitTest(Point point, int OUTPUT, int OUTPUT) -
> TreeItemId
</autodoc>
38545 <param name=
"point" type=
"Point" default=
""/>
38546 <param name=
"OUTPUT" type=
"int" default=
""/>
38547 <param name=
"OUTPUT" type=
"int" default=
""/>
38550 <method name=
"GetBoundingRect" type=
"PyObject" overloaded=
"no">
38551 <autodoc>GetBoundingRect(TreeItemId item, bool textOnly=False) -
> PyObject
</autodoc>
38553 <param name=
"item" type=
"TreeItemId" default=
""/>
38554 <param name=
"textOnly" type=
"bool" default=
"False"/>
38557 <method name=
"EditLabel" type=
"" overloaded=
"no">
38558 <autodoc>EditLabel(TreeItemId item)
</autodoc>
38560 <param name=
"item" type=
"TreeItemId" default=
""/>
38563 <method name=
"Edit" type=
"" overloaded=
"no">
38564 <autodoc>Edit(TreeItemId item)
</autodoc>
38566 <param name=
"item" type=
"TreeItemId" default=
""/>
38569 <method name=
"SortChildren" type=
"" overloaded=
"no">
38570 <autodoc>SortChildren(TreeItemId item)
</autodoc>
38572 <param name=
"item" type=
"TreeItemId" default=
""/>
38575 <method name=
"GetItemSelectedImage" type=
"int" overloaded=
"no">
38576 <autodoc>GetItemSelectedImage(TreeItemId item) -
> int
</autodoc>
38578 <param name=
"item" type=
"TreeItemId" default=
""/>
38581 <method name=
"SetItemSelectedImage" type=
"" overloaded=
"no">
38582 <autodoc>SetItemSelectedImage(TreeItemId item, int image)
</autodoc>
38584 <param name=
"item" type=
"TreeItemId" default=
""/>
38585 <param name=
"image" type=
"int" default=
""/>
38588 <method name=
"GetHeaderWindow" type=
"Window" overloaded=
"no">
38589 <autodoc>GetHeaderWindow() -
> Window
</autodoc>
38591 <method name=
"GetMainWindow" type=
"Window" overloaded=
"no">
38592 <autodoc>GetMainWindow() -
> Window
</autodoc>
38596 </wxPython-metadata>