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>FileSystem.AddHandler(CPPFileSystemHandler handler)
</autodoc> 
 895           <param name=
"handler" type=
"CPPFileSystemHandler" default=
""/> 
 898       <staticmethod name=
"CleanUpHandlers" type=
"" overloaded=
"no"> 
 899         <autodoc>FileSystem.CleanUpHandlers()
</autodoc> 
 901       <staticmethod name=
"FileNameToURL" type=
"String" overloaded=
"no"> 
 902         <autodoc>FileSystem.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>MemoryFSHandler.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>ImageHistogram.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>Image.CanRead(String name) -
> bool
</autodoc> 
1272           <param name=
"name" type=
"String" default=
""/> 
1275       <staticmethod name=
"GetImageCount" type=
"int" overloaded=
"no"> 
1276         <autodoc>Image.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>Image.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>Image.AddHandler(ImageHandler handler)
</autodoc> 
1511           <param name=
"handler" type=
"ImageHandler" default=
""/> 
1514       <staticmethod name=
"InsertHandler" type=
"" overloaded=
"no"> 
1515         <autodoc>Image.InsertHandler(ImageHandler handler)
</autodoc> 
1517           <param name=
"handler" type=
"ImageHandler" default=
""/> 
1520       <staticmethod name=
"RemoveHandler" type=
"bool" overloaded=
"no"> 
1521         <autodoc>Image.RemoveHandler(String name) -
> bool
</autodoc> 
1523           <param name=
"name" type=
"String" default=
""/> 
1526       <staticmethod name=
"GetImageExtWildcard" type=
"String" overloaded=
"no"> 
1527         <autodoc>Image.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>UpdateUIEvent.SetUpdateInterval(long updateInterval)
</autodoc> 
2766           <param name=
"updateInterval" type=
"long" default=
""/> 
2769       <staticmethod name=
"GetUpdateInterval" type=
"long" overloaded=
"no"> 
2770         <autodoc>UpdateUIEvent.GetUpdateInterval() -
> long
</autodoc> 
2772       <staticmethod name=
"CanUpdate" type=
"bool" overloaded=
"no"> 
2773         <autodoc>UpdateUIEvent.CanUpdate(Window win) -
> bool
</autodoc> 
2775           <param name=
"win" type=
"wxWindow" default=
""/> 
2778       <staticmethod name=
"ResetUpdateTime" type=
"" overloaded=
"no"> 
2779         <autodoc>UpdateUIEvent.ResetUpdateTime()
</autodoc> 
2781       <staticmethod name=
"SetMode" type=
"" overloaded=
"no"> 
2782         <autodoc>UpdateUIEvent.SetMode(int mode)
</autodoc> 
2784           <param name=
"mode" type=
"wxUpdateUIMode" default=
""/> 
2787       <staticmethod name=
"GetMode" type=
"wxUpdateUIMode" overloaded=
"no"> 
2788         <autodoc>UpdateUIEvent.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>IdleEvent.SetMode(int mode)
</autodoc> 
2973           <param name=
"mode" type=
"wxIdleMode" default=
""/> 
2976       <staticmethod name=
"GetMode" type=
"wxIdleMode" overloaded=
"no"> 
2977         <autodoc>IdleEvent.GetMode() -
> int
</autodoc> 
2979       <staticmethod name=
"CanSend" type=
"bool" overloaded=
"no"> 
2980         <autodoc>IdleEvent.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> 
3041       <destructor name=
"~wxPyApp" overloaded=
"no"> 
3042         <autodoc>__del__()
</autodoc> 
3044       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
3045         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
3047           <param name=
"self" type=
"PyObject" default=
""/> 
3048           <param name=
"_class" type=
"PyObject" default=
""/> 
3051       <method name=
"GetAppName" type=
"String" overloaded=
"no"> 
3052         <autodoc>GetAppName() -
> String
</autodoc> 
3053         <docstring>Get the application name.
</docstring> 
3055       <method name=
"SetAppName" type=
"" overloaded=
"no"> 
3056         <autodoc>SetAppName(String name)
</autodoc> 
3057         <docstring>Set the application name. This value may be used automatically
 
3058 by wx.Config and such.
</docstring> 
3060           <param name=
"name" type=
"String" default=
""/> 
3063       <method name=
"GetClassName" type=
"String" overloaded=
"no"> 
3064         <autodoc>GetClassName() -
> String
</autodoc> 
3065         <docstring>Get the application's class name.
</docstring> 
3067       <method name=
"SetClassName" type=
"" overloaded=
"no"> 
3068         <autodoc>SetClassName(String name)
</autodoc> 
3069         <docstring>Set the application's class name. This value may be used for X-resources if
 
3070 applicable for the platform
</docstring> 
3072           <param name=
"name" type=
"String" default=
""/> 
3075       <method name=
"GetVendorName" type=
"String" overloaded=
"no"> 
3076         <autodoc>GetVendorName() -
> String
</autodoc> 
3077         <docstring>Get the application's vendor name.
</docstring> 
3079       <method name=
"SetVendorName" type=
"" overloaded=
"no"> 
3080         <autodoc>SetVendorName(String name)
</autodoc> 
3081         <docstring>Set the application's vendor name. This value may be used automatically
 
3082 by wx.Config and such.
</docstring> 
3084           <param name=
"name" type=
"String" default=
""/> 
3087       <method name=
"GetTraits" type=
"wxAppTraits" overloaded=
"no"> 
3088         <autodoc>GetTraits() -
> wxAppTraits
</autodoc> 
3089         <docstring>Create the app traits object to which we delegate for everything which either
 
3090 should be configurable by the user (then he can change the default behaviour
 
3091 simply by overriding CreateTraits() and returning his own traits object) or
 
3092 which is GUI/console dependent as then wx.AppTraits allows us to abstract the
 
3093 differences behind the common facade
</docstring> 
3095       <method name=
"ProcessPendingEvents" type=
"" overloaded=
"no"> 
3096         <autodoc>ProcessPendingEvents()
</autodoc> 
3097         <docstring>Process all events in the Pending Events list -- it is necessary to call this
 
3098 function to process posted events. This happens during each event loop
 
3099 iteration.
</docstring> 
3101       <method name=
"Yield" type=
"bool" overloaded=
"no"> 
3102         <autodoc>Yield(bool onlyIfNeeded=False) -
> bool
</autodoc> 
3103         <docstring>Process all currently pending events right now, instead of waiting until
 
3104 return to the event loop.  It is an error to call Yield() recursively unless
 
3105 the value of onlyIfNeeded is True.
 
3107 WARNING: This function is dangerous as it can lead to unexpected
 
3108          reentrancies (i.e. when called from an event handler it
 
3109          may result in calling the same event handler again), use
 
3110          with _extreme_ care or, better, don't use at all!
 
3113           <param name=
"onlyIfNeeded" type=
"bool" default=
"False"/> 
3116       <method name=
"WakeUpIdle" type=
"" overloaded=
"no"> 
3117         <autodoc>WakeUpIdle()
</autodoc> 
3118         <docstring>Make sure that idle events are sent again
</docstring> 
3120       <method name=
"MainLoop" type=
"int" overloaded=
"no"> 
3121         <autodoc>MainLoop() -
> int
</autodoc> 
3122         <docstring>Execute the main GUI loop, the function returns when the loop ends.
</docstring> 
3124       <method name=
"Exit" type=
"" overloaded=
"no"> 
3125         <autodoc>Exit()
</autodoc> 
3126         <docstring>Exit the main loop thus terminating the application.
</docstring> 
3128       <method name=
"ExitMainLoop" type=
"" overloaded=
"no"> 
3129         <autodoc>ExitMainLoop()
</autodoc> 
3130         <docstring>Exit the main GUI loop during the next iteration (i.e. it does not
 
3131 stop the program immediately!)
</docstring> 
3133       <method name=
"Pending" type=
"bool" overloaded=
"no"> 
3134         <autodoc>Pending() -
> bool
</autodoc> 
3135         <docstring>Returns True if there are unprocessed events in the event queue.
</docstring> 
3137       <method name=
"Dispatch" type=
"bool" overloaded=
"no"> 
3138         <autodoc>Dispatch() -
> bool
</autodoc> 
3139         <docstring>Process the first event in the event queue (blocks until an event
 
3140 appears if there are none currently)
</docstring> 
3142       <method name=
"ProcessIdle" type=
"bool" overloaded=
"no"> 
3143         <autodoc>ProcessIdle() -
> bool
</autodoc> 
3144         <docstring>Called from the MainLoop when the application becomes idle and sends an
 
3145 IdleEvent to all interested parties.  Returns True is more idle events are
 
3146 needed, False if not.
</docstring> 
3148       <method name=
"SendIdleEvents" type=
"bool" overloaded=
"no"> 
3149         <autodoc>SendIdleEvents(Window win, IdleEvent event) -
> bool
</autodoc> 
3150         <docstring>Send idle event to window and all subwindows.  Returns True if more idle time
 
3151 is requested.
</docstring> 
3153           <param name=
"win" type=
"wxWindow" default=
""/> 
3154           <param name=
"event" type=
"IdleEvent" default=
""/> 
3157       <method name=
"IsActive" type=
"bool" overloaded=
"no"> 
3158         <autodoc>IsActive() -
> bool
</autodoc> 
3159         <docstring>Return True if our app has focus.
</docstring> 
3161       <method name=
"SetTopWindow" type=
"" overloaded=
"no"> 
3162         <autodoc>SetTopWindow(Window win)
</autodoc> 
3163         <docstring>Set the "main" top level window
</docstring> 
3165           <param name=
"win" type=
"wxWindow" default=
""/> 
3168       <method name=
"GetTopWindow" type=
"wxWindow" overloaded=
"no"> 
3169         <autodoc>GetTopWindow() -
> Window
</autodoc> 
3170         <docstring>Return the "main" top level window (if it hadn't been set previously with
 
3171 SetTopWindow(), will return just some top level window and, if there not any,
 
3172 will return None)
</docstring> 
3174       <method name=
"SetExitOnFrameDelete" type=
"" overloaded=
"no"> 
3175         <autodoc>SetExitOnFrameDelete(bool flag)
</autodoc> 
3176         <docstring>Control the exit behaviour: by default, the program will exit the main loop
 
3177 (and so, usually, terminate) when the last top-level program window is
 
3178 deleted.  Beware that if you disable this behaviour (with
 
3179 SetExitOnFrameDelete(False)), you'll have to call ExitMainLoop() explicitly
 
3183           <param name=
"flag" type=
"bool" default=
""/> 
3186       <method name=
"GetExitOnFrameDelete" type=
"bool" overloaded=
"no"> 
3187         <autodoc>GetExitOnFrameDelete() -
> bool
</autodoc> 
3188         <docstring>Get the current exit behaviour setting.
</docstring> 
3190       <method name=
"SetUseBestVisual" type=
"" overloaded=
"no"> 
3191         <autodoc>SetUseBestVisual(bool flag)
</autodoc> 
3192         <docstring>Set whether the app should try to use the best available visual on systems
 
3193 where more than one is available, (Sun, SGI, XFree86 
4, etc.)
</docstring> 
3195           <param name=
"flag" type=
"bool" default=
""/> 
3198       <method name=
"GetUseBestVisual" type=
"bool" overloaded=
"no"> 
3199         <autodoc>GetUseBestVisual() -
> bool
</autodoc> 
3200         <docstring>Get current UseBestVisual setting.
</docstring> 
3202       <method name=
"SetPrintMode" type=
"" overloaded=
"no"> 
3203         <autodoc>SetPrintMode(int mode)
</autodoc> 
3205           <param name=
"mode" type=
"int" default=
""/> 
3208       <method name=
"GetPrintMode" type=
"int" overloaded=
"no"> 
3209         <autodoc>GetPrintMode() -
> int
</autodoc> 
3211       <method name=
"SetAssertMode" type=
"" overloaded=
"no"> 
3212         <autodoc>SetAssertMode(int mode)
</autodoc> 
3213         <docstring>Set the OnAssert behaviour for debug and hybrid builds.  The following flags
 
3214 may be or'd together:
 
3216  wx.PYAPP_ASSERT_SUPPRESS         Don't do anything
 
3217  wx.PYAPP_ASSERT_EXCEPTION        Turn it into a Python exception if possible (default)
 
3218  wx.PYAPP_ASSERT_DIALOG           Display a message dialog
 
3219  wx.PYAPP_ASSERT_LOG              Write the assertion info to the wx.Log
 
3222           <param name=
"mode" type=
"int" default=
""/> 
3225       <method name=
"GetAssertMode" type=
"int" overloaded=
"no"> 
3226         <autodoc>GetAssertMode() -
> int
</autodoc> 
3227         <docstring>Get the current OnAssert behaviour setting.
</docstring> 
3229       <staticmethod name=
"GetMacSupportPCMenuShortcuts" type=
"bool" overloaded=
"no"> 
3230         <autodoc>PyApp.GetMacSupportPCMenuShortcuts() -
> bool
</autodoc> 
3232       <staticmethod name=
"GetMacAboutMenuItemId" type=
"long" overloaded=
"no"> 
3233         <autodoc>PyApp.GetMacAboutMenuItemId() -
> long
</autodoc> 
3235       <staticmethod name=
"GetMacPreferencesMenuItemId" type=
"long" overloaded=
"no"> 
3236         <autodoc>PyApp.GetMacPreferencesMenuItemId() -
> long
</autodoc> 
3238       <staticmethod name=
"GetMacExitMenuItemId" type=
"long" overloaded=
"no"> 
3239         <autodoc>PyApp.GetMacExitMenuItemId() -
> long
</autodoc> 
3241       <staticmethod name=
"GetMacHelpMenuTitleName" type=
"String" overloaded=
"no"> 
3242         <autodoc>PyApp.GetMacHelpMenuTitleName() -
> String
</autodoc> 
3244       <staticmethod name=
"SetMacSupportPCMenuShortcuts" type=
"" overloaded=
"no"> 
3245         <autodoc>PyApp.SetMacSupportPCMenuShortcuts(bool val)
</autodoc> 
3247           <param name=
"val" type=
"bool" default=
""/> 
3250       <staticmethod name=
"SetMacAboutMenuItemId" type=
"" overloaded=
"no"> 
3251         <autodoc>PyApp.SetMacAboutMenuItemId(long val)
</autodoc> 
3253           <param name=
"val" type=
"long" default=
""/> 
3256       <staticmethod name=
"SetMacPreferencesMenuItemId" type=
"" overloaded=
"no"> 
3257         <autodoc>PyApp.SetMacPreferencesMenuItemId(long val)
</autodoc> 
3259           <param name=
"val" type=
"long" default=
""/> 
3262       <staticmethod name=
"SetMacExitMenuItemId" type=
"" overloaded=
"no"> 
3263         <autodoc>PyApp.SetMacExitMenuItemId(long val)
</autodoc> 
3265           <param name=
"val" type=
"long" default=
""/> 
3268       <staticmethod name=
"SetMacHelpMenuTitleName" type=
"" overloaded=
"no"> 
3269         <autodoc>PyApp.SetMacHelpMenuTitleName(String val)
</autodoc> 
3271           <param name=
"val" type=
"String" default=
""/> 
3274       <method name=
"_BootstrapApp" type=
"" overloaded=
"no"> 
3275         <autodoc>_BootstrapApp()
</autodoc> 
3276         <docstring>For internal use only
</docstring> 
3278       <staticmethod name=
"GetComCtl32Version" type=
"int" overloaded=
"no"> 
3279         <autodoc>PyApp.GetComCtl32Version() -
> int
</autodoc> 
3280         <docstring>Returns 
400, 
470, 
471 for comctl32.dll 
4.00, 
4.70, 
4.71 or 
0 if it
 
3281 wasn't found at all.  Raises an exception on non-Windows platforms.
</docstring> 
3285 #---------------------------------------------------------------------------
 
3287     <method name=
"Exit" oldname=
"wxExit" type=
"" overloaded=
"no"> 
3288       <autodoc>Exit()
</autodoc> 
3289       <docstring>Force an exit of the application.  Convenience for wx.GetApp().Exit()
</docstring> 
3291     <method name=
"Yield" oldname=
"wxYield" type=
"bool" overloaded=
"no"> 
3292       <autodoc>Yield() -
> bool
</autodoc> 
3293       <docstring>Yield to other apps/messages.  Convenience for wx.GetApp().Yield()
</docstring> 
3295     <method name=
"YieldIfNeeded" oldname=
"wxYieldIfNeeded" type=
"bool" overloaded=
"no"> 
3296       <autodoc>YieldIfNeeded() -
> bool
</autodoc> 
3297       <docstring>Yield to other apps/messages.  Convenience for wx.GetApp().Yield(True)
</docstring> 
3299     <method name=
"SafeYield" oldname=
"wxSafeYield" type=
"bool" overloaded=
"no"> 
3300       <autodoc>SafeYield(Window win=None, bool onlyIfNeeded=False) -
> bool
</autodoc> 
3301       <docstring>This function is similar to wx.Yield, except that it disables the user input
 
3302 to all program windows before calling wx.Yield and re-enables it again
 
3303 afterwards. If win is not None, this window will remain enabled, allowing the
 
3304 implementation of some limited user interaction.
 
3306 Returns the result of the call to wx.Yield.
</docstring> 
3308         <param name=
"win" type=
"wxWindow" default=
"NULL"/> 
3309         <param name=
"onlyIfNeeded" type=
"bool" default=
"False"/> 
3312     <method name=
"WakeUpIdle" oldname=
"wxWakeUpIdle" type=
"" overloaded=
"no"> 
3313       <autodoc>WakeUpIdle()
</autodoc> 
3314       <docstring>Cause the message queue to become empty again, so idle events will be sent.
</docstring> 
3316     <method name=
"PostEvent" oldname=
"wxPostEvent" type=
"" overloaded=
"no"> 
3317       <autodoc>PostEvent(EvtHandler dest, Event event)
</autodoc> 
3318       <docstring>Send an event to a window or other wx.EvtHandler to be processed later.
</docstring> 
3320         <param name=
"dest" type=
"EvtHandler" default=
""/> 
3321         <param name=
"event" type=
"Event" default=
""/> 
3324     <method name=
"App_CleanUp" oldname=
"wxApp_CleanUp" type=
"" overloaded=
"no"> 
3325       <autodoc>App_CleanUp()
</autodoc> 
3326       <docstring>For internal use only, it is used to cleanup after wxWindows when Python shuts down.
</docstring> 
3328     <method name=
"GetApp" oldname=
"wxGetApp" type=
"PyApp" overloaded=
"no"> 
3329       <autodoc>GetApp() -
> PyApp
</autodoc> 
3330       <docstring>Return a reference to the current wx.App object.
</docstring> 
3333 #----------------------------------------------------------------------
 
3335 class PyOnDemandOutputWindow:
 
3337     A class that can be used for redirecting Python's stdout and
 
3338     stderr streams.  It will do nothing until something is wrriten to
 
3339     the stream at which point it will create a Frame with a text area
 
3340     and write the text there.
 
3342     def __init__(self, title = "wxPython: stdout/stderr"):
 
3347     def SetParent(self, parent):
 
3348         """Set the window to be used as the popup Frame's parent."""
 
3349         self.parent = parent
 
3352     def CreateOutputWindow(self, st):
 
3353         self.frame = wx.Frame(self.parent, -
1, self.title,
 
3354                               style=wx.DEFAULT_FRAME_STYLE | wx.NO_FULL_REPAINT_ON_RESIZE)
 
3355         self.text  = wx.TextCtrl(self.frame, -
1, "",
 
3356                                  style = wx.TE_MULTILINE | wx.TE_READONLY)
 
3357         self.text.AppendText(st)
 
3358         self.frame.SetSize((
450, 
300))
 
3359         self.frame.Show(True)
 
3360         EVT_CLOSE(self.frame, self.OnCloseWindow)
 
3363     # These methods provide the file-like output behaviour.
 
3364     def write(self, text):
 
3366         Create the output window if needed and write the string to it.
 
3367         If not called in the context of the gui thread then uses
 
3368         CallAfter to do the work there.
 
3370         if self.frame is None:
 
3371             if not wx.Thread_IsMain():
 
3372                 wx.CallAfter(self.CreateOutputWindow, text)
 
3374                 self.CreateOutputWindow(text)
 
3376             if not wx.Thread_IsMain():
 
3377                 wx.CallAfter(self.text.AppendText, text)
 
3379                 self.text.AppendText(text)
 
3383         if self.frame is not None:
 
3384             wx.CallAfter(self.frame.Close)
 
3387     def OnCloseWindow(self, event):
 
3388         if self.frame is not None:
 
3389             self.frame.Destroy()
 
3393 #----------------------------------------------------------------------
 
3395 _defRedirect = (wx.Platform == '__WXMSW__' or wx.Platform == '__WXMAC__')
 
3397 class App(wx.PyApp):
 
3399     The main application class.  Derive from this and implement an OnInit
 
3400     method that creates a frame and then calls self.SetTopWindow(frame)
 
3402     outputWindowClass = PyOnDemandOutputWindow
 
3404     def __init__(self, redirect=_defRedirect, filename=None, useBestVisual=False):
 
3405         wx.PyApp.__init__(self)
 
3407         if wx.Platform == "__WXMAC__":
 
3410                 if not MacOS.WMAvailable():
 
3412 This program needs access to the screen. Please run with 'pythonw',
 
3413 not 'python', and only when you are logged in on the main display of
 
3419         # This has to be done before OnInit
 
3420         self.SetUseBestVisual(useBestVisual)
 
3422         # Set the default handler for SIGINT.  This fixes a problem
 
3423         # where if Ctrl-C is pressed in the console that started this
 
3424         # app then it will not appear to do anything, (not even send
 
3425         # KeyboardInterrupt???)  but will later segfault on exit.  By
 
3426         # setting the default handler then the app will exit, as
 
3427         # expected (depending on platform.)
 
3430             signal.signal(signal.SIGINT, signal.SIG_DFL)
 
3434         # Save and redirect the stdio to a window?
 
3435         self.stdioWin = None
 
3436         self.saveStdio = (_sys.stdout, _sys.stderr)
 
3438             self.RedirectStdio(filename)
 
3440         # This finishes the initialization of wxWindows and then calls
 
3441         # the OnInit that should be present in the derived class
 
3442         self._BootstrapApp()
 
3447             self.RestoreStdio()  # Just in case the MainLoop was overridden
 
3452     def SetTopWindow(self, frame):
 
3453         """Set the \\"main\\" top level window"""
 
3455             self.stdioWin.SetParent(frame)
 
3456         wx.PyApp.SetTopWindow(self, frame)
 
3460         """Execute the main GUI event loop"""
 
3461         wx.PyApp.MainLoop(self)
 
3465     def RedirectStdio(self, filename):
 
3466         """Redirect sys.stdout and sys.stderr to a file or a popup window."""
 
3468             _sys.stdout = _sys.stderr = open(filename, 'a')
 
3470             self.stdioWin = self.outputWindowClass()
 
3471             _sys.stdout = _sys.stderr = self.stdioWin
 
3474     def RestoreStdio(self):
 
3475         _sys.stdout, _sys.stderr = self.saveStdio
 
3479 # change from wxPyApp_ to wxApp_
 
3480 App_GetMacSupportPCMenuShortcuts = _core.PyApp_GetMacSupportPCMenuShortcuts
 
3481 App_GetMacAboutMenuItemId        = _core.PyApp_GetMacAboutMenuItemId
 
3482 App_GetMacPreferencesMenuItemId  = _core.PyApp_GetMacPreferencesMenuItemId
 
3483 App_GetMacExitMenuItemId         = _core.PyApp_GetMacExitMenuItemId
 
3484 App_GetMacHelpMenuTitleName      = _core.PyApp_GetMacHelpMenuTitleName
 
3485 App_SetMacSupportPCMenuShortcuts = _core.PyApp_SetMacSupportPCMenuShortcuts
 
3486 App_SetMacAboutMenuItemId        = _core.PyApp_SetMacAboutMenuItemId
 
3487 App_SetMacPreferencesMenuItemId  = _core.PyApp_SetMacPreferencesMenuItemId
 
3488 App_SetMacExitMenuItemId         = _core.PyApp_SetMacExitMenuItemId
 
3489 App_SetMacHelpMenuTitleName      = _core.PyApp_SetMacHelpMenuTitleName
 
3490 App_GetComCtl32Version           = _core.PyApp_GetComCtl32Version
 
3492 #----------------------------------------------------------------------------
 
3494 class PySimpleApp(wx.App):
 
3496     A simple application class.  You can just create one of these and
 
3497     then then make your top level windows later, and not have to worry
 
3500     def __init__(self, redirect=False, filename=None, useBestVisual=False):
 
3501         wx.App.__init__(self, redirect, filename, useBestVisual)
 
3504         wx.InitAllImageHandlers()
 
3508 # Is anybody using this one?
 
3509 class PyWidgetTester(wx.App):
 
3510     def __init__(self, size = (
250, 
100)):
 
3512         wx.App.__init__(self, 
0)
 
3515         self.frame = wx.Frame(None, -
1, "Widget Tester", pos=(
0,
0), size=self.size)
 
3516         self.SetTopWindow(self.frame)
 
3519     def SetWidget(self, widgetClass, *args):
 
3520         w = widgetClass(self.frame, *args)
 
3521         self.frame.Show(True)
 
3523 #----------------------------------------------------------------------------
 
3524 # DO NOT hold any other references to this object.  This is how we
 
3525 # know when to cleanup system resources that wxWin is holding.  When
 
3526 # the sys module is unloaded, the refcount on sys.__wxPythonCleanup
 
3527 # goes to zero and it calls the wxApp_CleanUp function.
 
3529 class __wxPyCleanup:
 
3531         self.cleanup = _core.App_CleanUp
 
3535 _sys.__wxPythonCleanup = __wxPyCleanup()
 
3537 ## # another possible solution, but it gets called too early...
 
3538 ## if sys.version[
0] == '
2':
 
3540 ##     atexit.register(_core.wxApp_CleanUp)
 
3542 ##     sys.exitfunc = _core.wxApp_CleanUp
 
3545 #----------------------------------------------------------------------------
 
3548 #---------------------------------------------------------------------------
 
3550     <class name=
"AcceleratorEntry" oldname=
"wxAcceleratorEntry" module=
"core"> 
3551       <constructor name=
"AcceleratorEntry" overloaded=
"no"> 
3552         <autodoc>__init__(int flags=
0, int keyCode=
0, int cmd=
0, MenuItem item=None) -
> AcceleratorEntry
</autodoc> 
3554           <param name=
"flags" type=
"int" default=
"0"/> 
3555           <param name=
"keyCode" type=
"int" default=
"0"/> 
3556           <param name=
"cmd" type=
"int" default=
"0"/> 
3557           <param name=
"item" type=
"wxMenuItem" default=
"NULL"/> 
3560       <destructor name=
"~wxAcceleratorEntry" overloaded=
"no"> 
3561         <autodoc>__del__()
</autodoc> 
3563       <method name=
"Set" type=
"" overloaded=
"no"> 
3564         <autodoc>Set(int flags, int keyCode, int cmd, MenuItem item=None)
</autodoc> 
3566           <param name=
"flags" type=
"int" default=
""/> 
3567           <param name=
"keyCode" type=
"int" default=
""/> 
3568           <param name=
"cmd" type=
"int" default=
""/> 
3569           <param name=
"item" type=
"wxMenuItem" default=
"NULL"/> 
3572       <method name=
"SetMenuItem" type=
"" overloaded=
"no"> 
3573         <autodoc>SetMenuItem(MenuItem item)
</autodoc> 
3575           <param name=
"item" type=
"wxMenuItem" default=
""/> 
3578       <method name=
"GetMenuItem" type=
"wxMenuItem" overloaded=
"no"> 
3579         <autodoc>GetMenuItem() -
> MenuItem
</autodoc> 
3581       <method name=
"GetFlags" type=
"int" overloaded=
"no"> 
3582         <autodoc>GetFlags() -
> int
</autodoc> 
3584       <method name=
"GetKeyCode" type=
"int" overloaded=
"no"> 
3585         <autodoc>GetKeyCode() -
> int
</autodoc> 
3587       <method name=
"GetCommand" type=
"int" overloaded=
"no"> 
3588         <autodoc>GetCommand() -
> int
</autodoc> 
3591     <class name=
"AcceleratorTable" oldname=
"wxAcceleratorTable" module=
"core"> 
3592       <baseclass name=
"Object"/> 
3593       <constructor name=
"AcceleratorTable" overloaded=
"no"> 
3594         <autodoc>__init__(entries) -
> AcceleratorTable
</autodoc> 
3595         <docstring>Construct an AcceleratorTable from a list of AcceleratorEntry items or
 
3596 3-tuples (flags, keyCode, cmdID)
</docstring> 
3598           <param name=
"n" type=
"int" default=
""/> 
3599           <param name=
"entries" type=
"AcceleratorEntry" default=
""/> 
3602       <destructor name=
"~wxAcceleratorTable" overloaded=
"no"> 
3603         <autodoc>__del__()
</autodoc> 
3605       <method name=
"Ok" type=
"bool" overloaded=
"no"> 
3606         <autodoc>Ok() -
> bool
</autodoc> 
3609     <method name=
"GetAccelFromString" oldname=
"wxGetAccelFromString" type=
"AcceleratorEntry" overloaded=
"no"> 
3610       <autodoc>GetAccelFromString(String label) -
> AcceleratorEntry
</autodoc> 
3612         <param name=
"label" type=
"String" default=
""/> 
3616 #---------------------------------------------------------------------------
 
3618     <class name=
"Window" oldname=
"wxWindow" module=
"core"> 
3619       <baseclass name=
"EvtHandler"/> 
3620       <constructor name=
"Window" overloaded=
"no"> 
3621         <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
3622     long style=
0, String name=PanelNameStr) -
> Window
</autodoc> 
3624           <param name=
"parent" type=
"Window" default=
""/> 
3625           <param name=
"id" type=
"int" default=
""/> 
3626           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
3627           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
3628           <param name=
"style" type=
"long" default=
"0"/> 
3629           <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/> 
3632       <constructor name=
"PreWindow" overloaded=
"no"> 
3633         <autodoc>PreWindow() -
> Window
</autodoc> 
3635       <method name=
"Create" type=
"bool" overloaded=
"no"> 
3636         <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
3637     long style=
0, String name=PanelNameStr) -
> bool
</autodoc> 
3639           <param name=
"parent" type=
"Window" default=
""/> 
3640           <param name=
"id" type=
"int" default=
""/> 
3641           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
3642           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
3643           <param name=
"style" type=
"long" default=
"0"/> 
3644           <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/> 
3647       <method name=
"Close" type=
"bool" overloaded=
"no"> 
3648         <autodoc>Close(bool force=False) -
> bool
</autodoc> 
3650           <param name=
"force" type=
"bool" default=
"False"/> 
3653       <method name=
"Destroy" type=
"bool" overloaded=
"no"> 
3654         <autodoc>Destroy() -
> bool
</autodoc> 
3655         <docstring>Deletes the C++ object this Python object is a proxy for.
</docstring> 
3657       <method name=
"DestroyChildren" type=
"bool" overloaded=
"no"> 
3658         <autodoc>DestroyChildren() -
> bool
</autodoc> 
3660       <method name=
"IsBeingDeleted" type=
"bool" overloaded=
"no"> 
3661         <autodoc>IsBeingDeleted() -
> bool
</autodoc> 
3663       <method name=
"SetTitle" type=
"" overloaded=
"no"> 
3664         <autodoc>SetTitle(String title)
</autodoc> 
3666           <param name=
"title" type=
"String" default=
""/> 
3669       <method name=
"GetTitle" type=
"String" overloaded=
"no"> 
3670         <autodoc>GetTitle() -
> String
</autodoc> 
3672       <method name=
"SetLabel" type=
"" overloaded=
"no"> 
3673         <autodoc>SetLabel(String label)
</autodoc> 
3675           <param name=
"label" type=
"String" default=
""/> 
3678       <method name=
"GetLabel" type=
"String" overloaded=
"no"> 
3679         <autodoc>GetLabel() -
> String
</autodoc> 
3681       <method name=
"SetName" type=
"" overloaded=
"no"> 
3682         <autodoc>SetName(String name)
</autodoc> 
3684           <param name=
"name" type=
"String" default=
""/> 
3687       <method name=
"GetName" type=
"String" overloaded=
"no"> 
3688         <autodoc>GetName() -
> String
</autodoc> 
3690       <method name=
"SetId" type=
"" overloaded=
"no"> 
3691         <autodoc>SetId(int winid)
</autodoc> 
3693           <param name=
"winid" type=
"int" default=
""/> 
3696       <method name=
"GetId" type=
"int" overloaded=
"no"> 
3697         <autodoc>GetId() -
> int
</autodoc> 
3699       <staticmethod name=
"NewControlId" type=
"int" overloaded=
"no"> 
3700         <autodoc>Window.NewControlId() -
> int
</autodoc> 
3702       <staticmethod name=
"NextControlId" type=
"int" overloaded=
"no"> 
3703         <autodoc>Window.NextControlId(int winid) -
> int
</autodoc> 
3705           <param name=
"winid" type=
"int" default=
""/> 
3708       <staticmethod name=
"PrevControlId" type=
"int" overloaded=
"no"> 
3709         <autodoc>Window.PrevControlId(int winid) -
> int
</autodoc> 
3711           <param name=
"winid" type=
"int" default=
""/> 
3714       <method name=
"SetSize" type=
"" overloaded=
"no"> 
3715         <autodoc>SetSize(Size size)
</autodoc> 
3717           <param name=
"size" type=
"Size" default=
""/> 
3720       <method name=
"SetDimensions" type=
"" overloaded=
"no"> 
3721         <autodoc>SetDimensions(int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)
</autodoc> 
3723           <param name=
"x" type=
"int" default=
""/> 
3724           <param name=
"y" type=
"int" default=
""/> 
3725           <param name=
"width" type=
"int" default=
""/> 
3726           <param name=
"height" type=
"int" default=
""/> 
3727           <param name=
"sizeFlags" type=
"int" default=
"wxSIZE_AUTO"/> 
3730       <method name=
"SetRect" type=
"" overloaded=
"no"> 
3731         <autodoc>SetRect(Rect rect, int sizeFlags=SIZE_AUTO)
</autodoc> 
3733           <param name=
"rect" type=
"Rect" default=
""/> 
3734           <param name=
"sizeFlags" type=
"int" default=
"wxSIZE_AUTO"/> 
3737       <method name=
"SetSizeWH" type=
"" overloaded=
"no"> 
3738         <autodoc>SetSizeWH(int width, int height)
</autodoc> 
3740           <param name=
"width" type=
"int" default=
""/> 
3741           <param name=
"height" type=
"int" default=
""/> 
3744       <method name=
"Move" type=
"" overloaded=
"no"> 
3745         <autodoc>Move(Point pt, int flags=SIZE_USE_EXISTING)
</autodoc> 
3747           <param name=
"pt" type=
"Point" default=
""/> 
3748           <param name=
"flags" type=
"int" default=
"wxSIZE_USE_EXISTING"/> 
3751       <method name=
"MoveXY" type=
"" overloaded=
"no"> 
3752         <autodoc>MoveXY(int x, int y, int flags=SIZE_USE_EXISTING)
</autodoc> 
3754           <param name=
"x" type=
"int" default=
""/> 
3755           <param name=
"y" type=
"int" default=
""/> 
3756           <param name=
"flags" type=
"int" default=
"wxSIZE_USE_EXISTING"/> 
3759       <method name=
"Raise" type=
"" overloaded=
"no"> 
3760         <autodoc>Raise()
</autodoc> 
3762       <method name=
"Lower" type=
"" overloaded=
"no"> 
3763         <autodoc>Lower()
</autodoc> 
3765       <method name=
"SetClientSize" type=
"" overloaded=
"no"> 
3766         <autodoc>SetClientSize(Size size)
</autodoc> 
3768           <param name=
"size" type=
"Size" default=
""/> 
3771       <method name=
"SetClientSizeWH" type=
"" overloaded=
"no"> 
3772         <autodoc>SetClientSizeWH(int width, int height)
</autodoc> 
3774           <param name=
"width" type=
"int" default=
""/> 
3775           <param name=
"height" type=
"int" default=
""/> 
3778       <method name=
"SetClientRect" type=
"" overloaded=
"no"> 
3779         <autodoc>SetClientRect(Rect rect)
</autodoc> 
3781           <param name=
"rect" type=
"Rect" default=
""/> 
3784       <method name=
"GetPosition" type=
"Point" overloaded=
"no"> 
3785         <autodoc>GetPosition() -
> Point
</autodoc> 
3786         <docstring>Get the window's position.
</docstring> 
3788       <method name=
"GetPositionTuple" type=
"" overloaded=
"no"> 
3789         <autodoc>GetPositionTuple() -
> (x,y)
</autodoc> 
3790         <docstring>Get the window's position.
</docstring> 
3792           <param name=
"OUTPUT" type=
"int" default=
""/> 
3793           <param name=
"OUTPUT" type=
"int" default=
""/> 
3796       <method name=
"GetSize" type=
"Size" overloaded=
"no"> 
3797         <autodoc>GetSize() -
> Size
</autodoc> 
3798         <docstring>Get the window size.
</docstring> 
3800       <method name=
"GetSizeTuple" type=
"" overloaded=
"no"> 
3801         <autodoc>GetSizeTuple() -
> (width, height)
</autodoc> 
3802         <docstring>Get the window size.
</docstring> 
3804           <param name=
"OUTPUT" type=
"int" default=
""/> 
3805           <param name=
"OUTPUT" type=
"int" default=
""/> 
3808       <method name=
"GetRect" type=
"Rect" overloaded=
"no"> 
3809         <autodoc>GetRect() -
> Rect
</autodoc> 
3811       <method name=
"GetClientSize" type=
"Size" overloaded=
"no"> 
3812         <autodoc>GetClientSize() -
> Size
</autodoc> 
3813         <docstring>Get the window's client size.
</docstring> 
3815       <method name=
"GetClientSizeTuple" type=
"" overloaded=
"no"> 
3816         <autodoc>GetClientSizeTuple() -
> (width, height)
</autodoc> 
3817         <docstring>Get the window's client size.
</docstring> 
3819           <param name=
"OUTPUT" type=
"int" default=
""/> 
3820           <param name=
"OUTPUT" type=
"int" default=
""/> 
3823       <method name=
"GetClientAreaOrigin" type=
"Point" overloaded=
"no"> 
3824         <autodoc>GetClientAreaOrigin() -
> Point
</autodoc> 
3826       <method name=
"GetClientRect" type=
"Rect" overloaded=
"no"> 
3827         <autodoc>GetClientRect() -
> Rect
</autodoc> 
3829       <method name=
"GetBestSize" type=
"Size" overloaded=
"no"> 
3830         <autodoc>GetBestSize() -
> Size
</autodoc> 
3831         <docstring>Get the size best suited for the window (in fact, minimal acceptable size
 
3832 using which it will still look "nice")
</docstring> 
3834       <method name=
"GetBestSizeTuple" type=
"" overloaded=
"no"> 
3835         <autodoc>GetBestSizeTuple() -
> (width, height)
</autodoc> 
3836         <docstring>Get the size best suited for the window (in fact, minimal acceptable size
 
3837 using which it will still look "nice")
</docstring> 
3839           <param name=
"OUTPUT" type=
"int" default=
""/> 
3840           <param name=
"OUTPUT" type=
"int" default=
""/> 
3843       <method name=
"GetAdjustedBestSize" type=
"Size" overloaded=
"no"> 
3844         <autodoc>GetAdjustedBestSize() -
> Size
</autodoc> 
3846       <method name=
"Center" type=
"" overloaded=
"no"> 
3847         <autodoc>Center(int direction=BOTH)
</autodoc> 
3849           <param name=
"direction" type=
"int" default=
"wxBOTH"/> 
3852       <method name=
"CenterOnScreen" type=
"" overloaded=
"no"> 
3853         <autodoc>CenterOnScreen(int dir=BOTH)
</autodoc> 
3855           <param name=
"dir" type=
"int" default=
"wxBOTH"/> 
3858       <method name=
"CenterOnParent" type=
"" overloaded=
"no"> 
3859         <autodoc>CenterOnParent(int dir=BOTH)
</autodoc> 
3861           <param name=
"dir" type=
"int" default=
"wxBOTH"/> 
3864       <method name=
"Fit" type=
"" overloaded=
"no"> 
3865         <autodoc>Fit()
</autodoc> 
3867       <method name=
"FitInside" type=
"" overloaded=
"no"> 
3868         <autodoc>FitInside()
</autodoc> 
3870       <method name=
"SetSizeHints" type=
"" overloaded=
"no"> 
3871         <autodoc>SetSizeHints(int minW, int minH, int maxW=-
1, int maxH=-
1, int incW=-
1, 
 
3872     int incH=-
1)
</autodoc> 
3874           <param name=
"minW" type=
"int" default=
""/> 
3875           <param name=
"minH" type=
"int" default=
""/> 
3876           <param name=
"maxW" type=
"int" default=
"-1"/> 
3877           <param name=
"maxH" type=
"int" default=
"-1"/> 
3878           <param name=
"incW" type=
"int" default=
"-1"/> 
3879           <param name=
"incH" type=
"int" default=
"-1"/> 
3882       <method name=
"SetVirtualSizeHints" type=
"" overloaded=
"no"> 
3883         <autodoc>SetVirtualSizeHints(int minW, int minH, int maxW=-
1, int maxH=-
1)
</autodoc> 
3885           <param name=
"minW" type=
"int" default=
""/> 
3886           <param name=
"minH" type=
"int" default=
""/> 
3887           <param name=
"maxW" type=
"int" default=
"-1"/> 
3888           <param name=
"maxH" type=
"int" default=
"-1"/> 
3891       <method name=
"GetMinWidth" type=
"int" overloaded=
"no"> 
3892         <autodoc>GetMinWidth() -
> int
</autodoc> 
3894       <method name=
"GetMinHeight" type=
"int" overloaded=
"no"> 
3895         <autodoc>GetMinHeight() -
> int
</autodoc> 
3897       <method name=
"GetMaxWidth" type=
"int" overloaded=
"no"> 
3898         <autodoc>GetMaxWidth() -
> int
</autodoc> 
3900       <method name=
"GetMaxHeight" type=
"int" overloaded=
"no"> 
3901         <autodoc>GetMaxHeight() -
> int
</autodoc> 
3903       <method name=
"GetMaxSize" type=
"Size" overloaded=
"no"> 
3904         <autodoc>GetMaxSize() -
> Size
</autodoc> 
3906       <method name=
"SetVirtualSize" type=
"" overloaded=
"no"> 
3907         <autodoc>SetVirtualSize(Size size)
</autodoc> 
3908         <docstring>Set the the virtual size of a window.  For most windows this is just the
 
3909 client area of the window, but for some like scrolled windows it is more or
 
3910 less independent of the screen window size.
</docstring> 
3912           <param name=
"size" type=
"Size" default=
""/> 
3915       <method name=
"SetVirtualSizeWH" type=
"" overloaded=
"no"> 
3916         <autodoc>SetVirtualSizeWH(int w, int h)
</autodoc> 
3917         <docstring>Set the the virtual size of a window.  For most windows this is just the
 
3918 client area of the window, but for some like scrolled windows it is more or
 
3919 less independent of the screen window size.
</docstring> 
3921           <param name=
"w" type=
"int" default=
""/> 
3922           <param name=
"h" type=
"int" default=
""/> 
3925       <method name=
"GetVirtualSize" type=
"Size" overloaded=
"no"> 
3926         <autodoc>GetVirtualSize() -
> Size
</autodoc> 
3927         <docstring>Get the the virtual size of the window.  For most windows this is just
 
3928 the client area of the window, but for some like scrolled windows it is
 
3929 more or less independent of the screen window size.
</docstring> 
3931       <method name=
"GetVirtualSizeTuple" type=
"" overloaded=
"no"> 
3932         <autodoc>GetVirtualSizeTuple() -
> (width, height)
</autodoc> 
3933         <docstring>Get the the virtual size of the window.  For most windows this is just
 
3934 the client area of the window, but for some like scrolled windows it is
 
3935 more or less independent of the screen window size.
</docstring> 
3937           <param name=
"OUTPUT" type=
"int" default=
""/> 
3938           <param name=
"OUTPUT" type=
"int" default=
""/> 
3941       <method name=
"GetBestVirtualSize" type=
"Size" overloaded=
"no"> 
3942         <autodoc>GetBestVirtualSize() -
> Size
</autodoc> 
3944       <method name=
"Show" type=
"bool" overloaded=
"no"> 
3945         <autodoc>Show(bool show=True) -
> bool
</autodoc> 
3947           <param name=
"show" type=
"bool" default=
"True"/> 
3950       <method name=
"Hide" type=
"bool" overloaded=
"no"> 
3951         <autodoc>Hide() -
> bool
</autodoc> 
3953       <method name=
"Enable" type=
"bool" overloaded=
"no"> 
3954         <autodoc>Enable(bool enable=True) -
> bool
</autodoc> 
3956           <param name=
"enable" type=
"bool" default=
"True"/> 
3959       <method name=
"Disable" type=
"bool" overloaded=
"no"> 
3960         <autodoc>Disable() -
> bool
</autodoc> 
3962       <method name=
"IsShown" type=
"bool" overloaded=
"no"> 
3963         <autodoc>IsShown() -
> bool
</autodoc> 
3965       <method name=
"IsEnabled" type=
"bool" overloaded=
"no"> 
3966         <autodoc>IsEnabled() -
> bool
</autodoc> 
3968       <method name=
"SetWindowStyleFlag" type=
"" overloaded=
"no"> 
3969         <autodoc>SetWindowStyleFlag(long style)
</autodoc> 
3971           <param name=
"style" type=
"long" default=
""/> 
3974       <method name=
"GetWindowStyleFlag" type=
"long" overloaded=
"no"> 
3975         <autodoc>GetWindowStyleFlag() -
> long
</autodoc> 
3977       <method name=
"SetWindowStyle" type=
"" overloaded=
"no"> 
3978         <autodoc>SetWindowStyle(long style)
</autodoc> 
3980           <param name=
"style" type=
"long" default=
""/> 
3983       <method name=
"GetWindowStyle" type=
"long" overloaded=
"no"> 
3984         <autodoc>GetWindowStyle() -
> long
</autodoc> 
3986       <method name=
"HasFlag" type=
"bool" overloaded=
"no"> 
3987         <autodoc>HasFlag(int flag) -
> bool
</autodoc> 
3989           <param name=
"flag" type=
"int" default=
""/> 
3992       <method name=
"IsRetained" type=
"bool" overloaded=
"no"> 
3993         <autodoc>IsRetained() -
> bool
</autodoc> 
3995       <method name=
"SetExtraStyle" type=
"" overloaded=
"no"> 
3996         <autodoc>SetExtraStyle(long exStyle)
</autodoc> 
3998           <param name=
"exStyle" type=
"long" default=
""/> 
4001       <method name=
"GetExtraStyle" type=
"long" overloaded=
"no"> 
4002         <autodoc>GetExtraStyle() -
> long
</autodoc> 
4004       <method name=
"MakeModal" type=
"" overloaded=
"no"> 
4005         <autodoc>MakeModal(bool modal=True)
</autodoc> 
4007           <param name=
"modal" type=
"bool" default=
"True"/> 
4010       <method name=
"SetThemeEnabled" type=
"" overloaded=
"no"> 
4011         <autodoc>SetThemeEnabled(bool enableTheme)
</autodoc> 
4013           <param name=
"enableTheme" type=
"bool" default=
""/> 
4016       <method name=
"GetThemeEnabled" type=
"bool" overloaded=
"no"> 
4017         <autodoc>GetThemeEnabled() -
> bool
</autodoc> 
4019       <method name=
"ShouldInheritColours" type=
"bool" overloaded=
"no"> 
4020         <autodoc>ShouldInheritColours() -
> bool
</autodoc> 
4022       <method name=
"SetFocus" type=
"" overloaded=
"no"> 
4023         <autodoc>SetFocus()
</autodoc> 
4025       <method name=
"SetFocusFromKbd" type=
"" overloaded=
"no"> 
4026         <autodoc>SetFocusFromKbd()
</autodoc> 
4028       <staticmethod name=
"FindFocus" type=
"Window" overloaded=
"no"> 
4029         <autodoc>Window.FindFocus() -
> Window
</autodoc> 
4031       <method name=
"AcceptsFocus" type=
"bool" overloaded=
"no"> 
4032         <autodoc>AcceptsFocus() -
> bool
</autodoc> 
4034       <method name=
"AcceptsFocusFromKeyboard" type=
"bool" overloaded=
"no"> 
4035         <autodoc>AcceptsFocusFromKeyboard() -
> bool
</autodoc> 
4037       <method name=
"GetDefaultItem" type=
"Window" overloaded=
"no"> 
4038         <autodoc>GetDefaultItem() -
> Window
</autodoc> 
4040       <method name=
"SetDefaultItem" type=
"Window" overloaded=
"no"> 
4041         <autodoc>SetDefaultItem(Window child) -
> Window
</autodoc> 
4043           <param name=
"child" type=
"Window" default=
""/> 
4046       <method name=
"SetTmpDefaultItem" type=
"" overloaded=
"no"> 
4047         <autodoc>SetTmpDefaultItem(Window win)
</autodoc> 
4049           <param name=
"win" type=
"Window" default=
""/> 
4052       <method name=
"GetChildren" type=
"PyObject" overloaded=
"no"> 
4053         <autodoc>GetChildren() -
> PyObject
</autodoc> 
4055       <method name=
"GetParent" type=
"Window" overloaded=
"no"> 
4056         <autodoc>GetParent() -
> Window
</autodoc> 
4058       <method name=
"GetGrandParent" type=
"Window" overloaded=
"no"> 
4059         <autodoc>GetGrandParent() -
> Window
</autodoc> 
4061       <method name=
"IsTopLevel" type=
"bool" overloaded=
"no"> 
4062         <autodoc>IsTopLevel() -
> bool
</autodoc> 
4064       <method name=
"Reparent" type=
"bool" overloaded=
"no"> 
4065         <autodoc>Reparent(Window newParent) -
> bool
</autodoc> 
4067           <param name=
"newParent" type=
"Window" default=
""/> 
4070       <method name=
"AddChild" type=
"" overloaded=
"no"> 
4071         <autodoc>AddChild(Window child)
</autodoc> 
4073           <param name=
"child" type=
"Window" default=
""/> 
4076       <method name=
"RemoveChild" type=
"" overloaded=
"no"> 
4077         <autodoc>RemoveChild(Window child)
</autodoc> 
4079           <param name=
"child" type=
"Window" default=
""/> 
4082       <method name=
"FindWindowById" type=
"Window" overloaded=
"no"> 
4083         <autodoc>FindWindowById(long winid) -
> Window
</autodoc> 
4085           <param name=
"winid" type=
"long" default=
""/> 
4088       <method name=
"FindWindowByName" type=
"Window" overloaded=
"no"> 
4089         <autodoc>FindWindowByName(String name) -
> Window
</autodoc> 
4091           <param name=
"name" type=
"String" default=
""/> 
4094       <method name=
"GetEventHandler" type=
"EvtHandler" overloaded=
"no"> 
4095         <autodoc>GetEventHandler() -
> EvtHandler
</autodoc> 
4097       <method name=
"SetEventHandler" type=
"" overloaded=
"no"> 
4098         <autodoc>SetEventHandler(EvtHandler handler)
</autodoc> 
4100           <param name=
"handler" type=
"EvtHandler" default=
""/> 
4103       <method name=
"PushEventHandler" type=
"" overloaded=
"no"> 
4104         <autodoc>PushEventHandler(EvtHandler handler)
</autodoc> 
4106           <param name=
"handler" type=
"EvtHandler" default=
""/> 
4109       <method name=
"PopEventHandler" type=
"EvtHandler" overloaded=
"no"> 
4110         <autodoc>PopEventHandler(bool deleteHandler=False) -
> EvtHandler
</autodoc> 
4112           <param name=
"deleteHandler" type=
"bool" default=
"False"/> 
4115       <method name=
"RemoveEventHandler" type=
"bool" overloaded=
"no"> 
4116         <autodoc>RemoveEventHandler(EvtHandler handler) -
> bool
</autodoc> 
4118           <param name=
"handler" type=
"EvtHandler" default=
""/> 
4121       <method name=
"SetValidator" type=
"" overloaded=
"no"> 
4122         <autodoc>SetValidator(Validator validator)
</autodoc> 
4124           <param name=
"validator" type=
"wxValidator" default=
""/> 
4127       <method name=
"GetValidator" type=
"wxValidator" overloaded=
"no"> 
4128         <autodoc>GetValidator() -
> Validator
</autodoc> 
4130       <method name=
"SetAcceleratorTable" type=
"" overloaded=
"no"> 
4131         <autodoc>SetAcceleratorTable(AcceleratorTable accel)
</autodoc> 
4133           <param name=
"accel" type=
"AcceleratorTable" default=
""/> 
4136       <method name=
"GetAcceleratorTable" type=
"AcceleratorTable" overloaded=
"no"> 
4137         <autodoc>GetAcceleratorTable() -
> AcceleratorTable
</autodoc> 
4139       <method name=
"RegisterHotKey" type=
"bool" overloaded=
"no"> 
4140         <autodoc>RegisterHotKey(int hotkeyId, int modifiers, int keycode) -
> bool
</autodoc> 
4142           <param name=
"hotkeyId" type=
"int" default=
""/> 
4143           <param name=
"modifiers" type=
"int" default=
""/> 
4144           <param name=
"keycode" type=
"int" default=
""/> 
4147       <method name=
"UnregisterHotKey" type=
"bool" overloaded=
"no"> 
4148         <autodoc>UnregisterHotKey(int hotkeyId) -
> bool
</autodoc> 
4150           <param name=
"hotkeyId" type=
"int" default=
""/> 
4153       <method name=
"ConvertDialogPointToPixels" type=
"Point" overloaded=
"no"> 
4154         <autodoc>ConvertDialogPointToPixels(Point pt) -
> Point
</autodoc> 
4156           <param name=
"pt" type=
"Point" default=
""/> 
4159       <method name=
"ConvertDialogSizeToPixels" type=
"Size" overloaded=
"no"> 
4160         <autodoc>ConvertDialogSizeToPixels(Size sz) -
> Size
</autodoc> 
4162           <param name=
"sz" type=
"Size" default=
""/> 
4165       <method name=
"DLG_PNT" type=
"Point" overloaded=
"no"> 
4166         <autodoc>DLG_PNT(Point pt) -
> Point
</autodoc> 
4168           <param name=
"pt" type=
"Point" default=
""/> 
4171       <method name=
"DLG_SZE" type=
"Size" overloaded=
"no"> 
4172         <autodoc>DLG_SZE(Size sz) -
> Size
</autodoc> 
4174           <param name=
"sz" type=
"Size" default=
""/> 
4177       <method name=
"ConvertPixelPointToDialog" type=
"Point" overloaded=
"no"> 
4178         <autodoc>ConvertPixelPointToDialog(Point pt) -
> Point
</autodoc> 
4180           <param name=
"pt" type=
"Point" default=
""/> 
4183       <method name=
"ConvertPixelSizeToDialog" type=
"Size" overloaded=
"no"> 
4184         <autodoc>ConvertPixelSizeToDialog(Size sz) -
> Size
</autodoc> 
4186           <param name=
"sz" type=
"Size" default=
""/> 
4189       <method name=
"WarpPointer" type=
"" overloaded=
"no"> 
4190         <autodoc>WarpPointer(int x, int y)
</autodoc> 
4192           <param name=
"x" type=
"int" default=
""/> 
4193           <param name=
"y" type=
"int" default=
""/> 
4196       <method name=
"CaptureMouse" type=
"" overloaded=
"no"> 
4197         <autodoc>CaptureMouse()
</autodoc> 
4199       <method name=
"ReleaseMouse" type=
"" overloaded=
"no"> 
4200         <autodoc>ReleaseMouse()
</autodoc> 
4202       <staticmethod name=
"GetCapture" type=
"Window" overloaded=
"no"> 
4203         <autodoc>Window.GetCapture() -
> Window
</autodoc> 
4205       <method name=
"HasCapture" type=
"bool" overloaded=
"no"> 
4206         <autodoc>HasCapture() -
> bool
</autodoc> 
4208       <method name=
"Refresh" type=
"" overloaded=
"no"> 
4209         <autodoc>Refresh(bool eraseBackground=True, Rect rect=None)
</autodoc> 
4211           <param name=
"eraseBackground" type=
"bool" default=
"True"/> 
4212           <param name=
"rect" type=
"Rect" default=
"NULL"/> 
4215       <method name=
"RefreshRect" type=
"" overloaded=
"no"> 
4216         <autodoc>RefreshRect(Rect rect)
</autodoc> 
4218           <param name=
"rect" type=
"Rect" default=
""/> 
4221       <method name=
"Update" type=
"" overloaded=
"no"> 
4222         <autodoc>Update()
</autodoc> 
4224       <method name=
"ClearBackground" type=
"" overloaded=
"no"> 
4225         <autodoc>ClearBackground()
</autodoc> 
4227       <method name=
"Freeze" type=
"" overloaded=
"no"> 
4228         <autodoc>Freeze()
</autodoc> 
4230       <method name=
"Thaw" type=
"" overloaded=
"no"> 
4231         <autodoc>Thaw()
</autodoc> 
4233       <method name=
"PrepareDC" type=
"" overloaded=
"no"> 
4234         <autodoc>PrepareDC(DC dc)
</autodoc> 
4236           <param name=
"dc" type=
"wxDC" default=
""/> 
4239       <method name=
"GetUpdateRegion" type=
"wxRegion" overloaded=
"no"> 
4240         <autodoc>GetUpdateRegion() -
> Region
</autodoc> 
4242       <method name=
"GetUpdateClientRect" type=
"Rect" overloaded=
"no"> 
4243         <autodoc>GetUpdateClientRect() -
> Rect
</autodoc> 
4245       <method name=
"IsExposed" type=
"bool" overloaded=
"no"> 
4246         <autodoc>IsExposed(int x, int y, int w=
1, int h=
1) -
> bool
</autodoc> 
4248           <param name=
"x" type=
"int" default=
""/> 
4249           <param name=
"y" type=
"int" default=
""/> 
4250           <param name=
"w" type=
"int" default=
"1"/> 
4251           <param name=
"h" type=
"int" default=
"1"/> 
4254       <method name=
"IsExposedPoint" type=
"bool" overloaded=
"no"> 
4255         <autodoc>IsExposedPoint(Point pt) -
> bool
</autodoc> 
4257           <param name=
"pt" type=
"Point" default=
""/> 
4260       <method name=
"isExposedRect" type=
"bool" overloaded=
"no"> 
4261         <autodoc>isExposedRect(Rect rect) -
> bool
</autodoc> 
4263           <param name=
"rect" type=
"Rect" default=
""/> 
4266       <method name=
"SetBackgroundColour" type=
"bool" overloaded=
"no"> 
4267         <autodoc>SetBackgroundColour(Colour colour) -
> bool
</autodoc> 
4269           <param name=
"colour" type=
"wxColour" default=
""/> 
4272       <method name=
"SetForegroundColour" type=
"bool" overloaded=
"no"> 
4273         <autodoc>SetForegroundColour(Colour colour) -
> bool
</autodoc> 
4275           <param name=
"colour" type=
"wxColour" default=
""/> 
4278       <method name=
"GetBackgroundColour" type=
"wxColour" overloaded=
"no"> 
4279         <autodoc>GetBackgroundColour() -
> Colour
</autodoc> 
4281       <method name=
"GetForegroundColour" type=
"wxColour" overloaded=
"no"> 
4282         <autodoc>GetForegroundColour() -
> Colour
</autodoc> 
4284       <method name=
"SetCursor" type=
"bool" overloaded=
"no"> 
4285         <autodoc>SetCursor(Cursor cursor) -
> bool
</autodoc> 
4287           <param name=
"cursor" type=
"wxCursor" default=
""/> 
4290       <method name=
"GetCursor" type=
"wxCursor" overloaded=
"no"> 
4291         <autodoc>GetCursor() -
> Cursor
</autodoc> 
4293       <method name=
"SetFont" type=
"bool" overloaded=
"no"> 
4294         <autodoc>SetFont(Font font) -
> bool
</autodoc> 
4296           <param name=
"font" type=
"wxFont" default=
""/> 
4299       <method name=
"GetFont" type=
"wxFont" overloaded=
"no"> 
4300         <autodoc>GetFont() -
> Font
</autodoc> 
4302       <method name=
"SetCaret" type=
"" overloaded=
"no"> 
4303         <autodoc>SetCaret(Caret caret)
</autodoc> 
4305           <param name=
"caret" type=
"wxCaret" default=
""/> 
4308       <method name=
"GetCaret" type=
"wxCaret" overloaded=
"no"> 
4309         <autodoc>GetCaret() -
> Caret
</autodoc> 
4311       <method name=
"GetCharHeight" type=
"int" overloaded=
"no"> 
4312         <autodoc>GetCharHeight() -
> int
</autodoc> 
4314       <method name=
"GetCharWidth" type=
"int" overloaded=
"no"> 
4315         <autodoc>GetCharWidth() -
> int
</autodoc> 
4317       <method name=
"GetTextExtent" type=
"" overloaded=
"no"> 
4318         <autodoc>GetTextExtent(String string) -
> (width, height)
</autodoc> 
4319         <docstring>Get the width and height of the text using the current font.
</docstring> 
4321           <param name=
"string" type=
"String" default=
""/> 
4322           <param name=
"OUTPUT" type=
"int" default=
""/> 
4323           <param name=
"OUTPUT" type=
"int" default=
""/> 
4326       <method name=
"GetFullTextExtent" type=
"" overloaded=
"no"> 
4327         <autodoc>GetFullTextExtent(String string, Font font=None) -
> 
4328    (width, height, descent, externalLeading)
</autodoc> 
4329         <docstring>Get the width, height, decent and leading of the text using the current or specified font.
</docstring> 
4331           <param name=
"string" type=
"String" default=
""/> 
4332           <param name=
"OUTPUT" type=
"int" default=
""/> 
4333           <param name=
"OUTPUT" type=
"int" default=
""/> 
4334           <param name=
"OUTPUT" type=
"int" default=
""/> 
4335           <param name=
"OUTPUT" type=
"int" default=
""/> 
4336           <param name=
"font" type=
"wxFont" default=
"NULL"/> 
4339       <method name=
"ClientToScreenXY" type=
"" overloaded=
"no"> 
4340         <autodoc>ClientToScreenXY(int x, int y)
</autodoc> 
4342           <param name=
"x" type=
"int" default=
""/> 
4343           <param name=
"y" type=
"int" default=
""/> 
4346       <method name=
"ScreenToClientXY" type=
"" overloaded=
"no"> 
4347         <autodoc>ScreenToClientXY(int x, int y)
</autodoc> 
4349           <param name=
"x" type=
"int" default=
""/> 
4350           <param name=
"y" type=
"int" default=
""/> 
4353       <method name=
"ClientToScreen" type=
"Point" overloaded=
"no"> 
4354         <autodoc>ClientToScreen(Point pt) -
> Point
</autodoc> 
4356           <param name=
"pt" type=
"Point" default=
""/> 
4359       <method name=
"ScreenToClient" type=
"Point" overloaded=
"no"> 
4360         <autodoc>ScreenToClient(Point pt) -
> Point
</autodoc> 
4362           <param name=
"pt" type=
"Point" default=
""/> 
4365       <method name=
"HitTestXY" type=
"wxHitTest" overloaded=
"no"> 
4366         <autodoc>HitTestXY(int x, int y) -
> int
</autodoc> 
4368           <param name=
"x" type=
"int" default=
""/> 
4369           <param name=
"y" type=
"int" default=
""/> 
4372       <method name=
"HitTest" type=
"wxHitTest" overloaded=
"no"> 
4373         <autodoc>HitTest(Point pt) -
> int
</autodoc> 
4375           <param name=
"pt" type=
"Point" default=
""/> 
4378       <method name=
"GetBorderFlags" type=
"wxBorder" overloaded=
"no"> 
4379         <autodoc>GetBorderFlags(long flags) -
> int
</autodoc> 
4381           <param name=
"flags" type=
"long" default=
""/> 
4384       <method name=
"GetBorder" type=
"wxBorder" overloaded=
"no"> 
4385         <autodoc>GetBorder() -
> int
</autodoc> 
4387       <method name=
"UpdateWindowUI" type=
"" overloaded=
"no"> 
4388         <autodoc>UpdateWindowUI(long flags=UPDATE_UI_NONE)
</autodoc> 
4390           <param name=
"flags" type=
"long" default=
"wxUPDATE_UI_NONE"/> 
4393       <method name=
"PopupMenuXY" type=
"bool" overloaded=
"no"> 
4394         <autodoc>PopupMenuXY(Menu menu, int x, int y) -
> bool
</autodoc> 
4396           <param name=
"menu" type=
"wxMenu" default=
""/> 
4397           <param name=
"x" type=
"int" default=
""/> 
4398           <param name=
"y" type=
"int" default=
""/> 
4401       <method name=
"PopupMenu" type=
"bool" overloaded=
"no"> 
4402         <autodoc>PopupMenu(Menu menu, Point pos) -
> bool
</autodoc> 
4404           <param name=
"menu" type=
"wxMenu" default=
""/> 
4405           <param name=
"pos" type=
"Point" default=
""/> 
4408       <method name=
"GetHandle" type=
"long" overloaded=
"no"> 
4409         <autodoc>GetHandle() -
> long
</autodoc> 
4411       <method name=
"HasScrollbar" type=
"bool" overloaded=
"no"> 
4412         <autodoc>HasScrollbar(int orient) -
> bool
</autodoc> 
4414           <param name=
"orient" type=
"int" default=
""/> 
4417       <method name=
"SetScrollbar" type=
"" overloaded=
"no"> 
4418         <autodoc>SetScrollbar(int orient, int pos, int thumbvisible, int range, bool refresh=True)
</autodoc> 
4420           <param name=
"orient" type=
"int" default=
""/> 
4421           <param name=
"pos" type=
"int" default=
""/> 
4422           <param name=
"thumbvisible" type=
"int" default=
""/> 
4423           <param name=
"range" type=
"int" default=
""/> 
4424           <param name=
"refresh" type=
"bool" default=
"True"/> 
4427       <method name=
"SetScrollPos" type=
"" overloaded=
"no"> 
4428         <autodoc>SetScrollPos(int orient, int pos, bool refresh=True)
</autodoc> 
4430           <param name=
"orient" type=
"int" default=
""/> 
4431           <param name=
"pos" type=
"int" default=
""/> 
4432           <param name=
"refresh" type=
"bool" default=
"True"/> 
4435       <method name=
"GetScrollPos" type=
"int" overloaded=
"no"> 
4436         <autodoc>GetScrollPos(int orient) -
> int
</autodoc> 
4438           <param name=
"orient" type=
"int" default=
""/> 
4441       <method name=
"GetScrollThumb" type=
"int" overloaded=
"no"> 
4442         <autodoc>GetScrollThumb(int orient) -
> int
</autodoc> 
4444           <param name=
"orient" type=
"int" default=
""/> 
4447       <method name=
"GetScrollRange" type=
"int" overloaded=
"no"> 
4448         <autodoc>GetScrollRange(int orient) -
> int
</autodoc> 
4450           <param name=
"orient" type=
"int" default=
""/> 
4453       <method name=
"ScrollWindow" type=
"" overloaded=
"no"> 
4454         <autodoc>ScrollWindow(int dx, int dy, Rect rect=None)
</autodoc> 
4456           <param name=
"dx" type=
"int" default=
""/> 
4457           <param name=
"dy" type=
"int" default=
""/> 
4458           <param name=
"rect" type=
"Rect" default=
"NULL"/> 
4461       <method name=
"ScrollLines" type=
"bool" overloaded=
"no"> 
4462         <autodoc>ScrollLines(int lines) -
> bool
</autodoc> 
4464           <param name=
"lines" type=
"int" default=
""/> 
4467       <method name=
"ScrollPages" type=
"bool" overloaded=
"no"> 
4468         <autodoc>ScrollPages(int pages) -
> bool
</autodoc> 
4470           <param name=
"pages" type=
"int" default=
""/> 
4473       <method name=
"LineUp" type=
"bool" overloaded=
"no"> 
4474         <autodoc>LineUp() -
> bool
</autodoc> 
4476       <method name=
"LineDown" type=
"bool" overloaded=
"no"> 
4477         <autodoc>LineDown() -
> bool
</autodoc> 
4479       <method name=
"PageUp" type=
"bool" overloaded=
"no"> 
4480         <autodoc>PageUp() -
> bool
</autodoc> 
4482       <method name=
"PageDown" type=
"bool" overloaded=
"no"> 
4483         <autodoc>PageDown() -
> bool
</autodoc> 
4485       <method name=
"SetHelpText" type=
"" overloaded=
"no"> 
4486         <autodoc>SetHelpText(String text)
</autodoc> 
4488           <param name=
"text" type=
"String" default=
""/> 
4491       <method name=
"SetHelpTextForId" type=
"" overloaded=
"no"> 
4492         <autodoc>SetHelpTextForId(String text)
</autodoc> 
4494           <param name=
"text" type=
"String" default=
""/> 
4497       <method name=
"GetHelpText" type=
"String" overloaded=
"no"> 
4498         <autodoc>GetHelpText() -
> String
</autodoc> 
4500       <method name=
"SetToolTipString" type=
"" overloaded=
"no"> 
4501         <autodoc>SetToolTipString(String tip)
</autodoc> 
4503           <param name=
"tip" type=
"String" default=
""/> 
4506       <method name=
"SetToolTip" type=
"" overloaded=
"no"> 
4507         <autodoc>SetToolTip(ToolTip tip)
</autodoc> 
4509           <param name=
"tip" type=
"wxToolTip" default=
""/> 
4512       <method name=
"GetToolTip" type=
"wxToolTip" overloaded=
"no"> 
4513         <autodoc>GetToolTip() -
> ToolTip
</autodoc> 
4515       <method name=
"SetDropTarget" type=
"" overloaded=
"no"> 
4516         <autodoc>SetDropTarget(PyDropTarget dropTarget)
</autodoc> 
4518           <param name=
"dropTarget" type=
"wxPyDropTarget" default=
""/> 
4521       <method name=
"GetDropTarget" type=
"wxPyDropTarget" overloaded=
"no"> 
4522         <autodoc>GetDropTarget() -
> PyDropTarget
</autodoc> 
4524       <method name=
"SetConstraints" type=
"" overloaded=
"no"> 
4525         <autodoc>SetConstraints(LayoutConstraints constraints)
</autodoc> 
4527           <param name=
"constraints" type=
"wxLayoutConstraints" default=
""/> 
4530       <method name=
"GetConstraints" type=
"wxLayoutConstraints" overloaded=
"no"> 
4531         <autodoc>GetConstraints() -
> LayoutConstraints
</autodoc> 
4533       <method name=
"SetAutoLayout" type=
"" overloaded=
"no"> 
4534         <autodoc>SetAutoLayout(bool autoLayout)
</autodoc> 
4536           <param name=
"autoLayout" type=
"bool" default=
""/> 
4539       <method name=
"GetAutoLayout" type=
"bool" overloaded=
"no"> 
4540         <autodoc>GetAutoLayout() -
> bool
</autodoc> 
4542       <method name=
"Layout" type=
"bool" overloaded=
"no"> 
4543         <autodoc>Layout() -
> bool
</autodoc> 
4545       <method name=
"SetSizer" type=
"" overloaded=
"no"> 
4546         <autodoc>SetSizer(Sizer sizer, bool deleteOld=True)
</autodoc> 
4548           <param name=
"sizer" type=
"wxSizer" default=
""/> 
4549           <param name=
"deleteOld" type=
"bool" default=
"True"/> 
4552       <method name=
"SetSizerAndFit" type=
"" overloaded=
"no"> 
4553         <autodoc>SetSizerAndFit(Sizer sizer, bool deleteOld=True)
</autodoc> 
4555           <param name=
"sizer" type=
"wxSizer" default=
""/> 
4556           <param name=
"deleteOld" type=
"bool" default=
"True"/> 
4559       <method name=
"GetSizer" type=
"wxSizer" overloaded=
"no"> 
4560         <autodoc>GetSizer() -
> Sizer
</autodoc> 
4562       <method name=
"SetContainingSizer" type=
"" overloaded=
"no"> 
4563         <autodoc>SetContainingSizer(Sizer sizer)
</autodoc> 
4565           <param name=
"sizer" type=
"wxSizer" default=
""/> 
4568       <method name=
"GetContainingSizer" type=
"wxSizer" overloaded=
"no"> 
4569         <autodoc>GetContainingSizer() -
> Sizer
</autodoc> 
4573 def DLG_PNT(win, point_or_x, y=None):
 
4575         return win.ConvertDialogPointToPixels(point_or_x)
 
4577         return win.ConvertDialogPointToPixels(wx.Point(point_or_x, y))
 
4579 def DLG_SZE(win, size_width, height=None):
 
4581         return win.ConvertDialogSizeToPixels(size_width)
 
4583         return win.ConvertDialogSizeToPixels(wx.Size(size_width, height))
 
4585     <method name=
"FindWindowById" oldname=
"wxFindWindowById" type=
"Window" overloaded=
"no"> 
4586       <autodoc>FindWindowById(long id, Window parent=None) -
> Window
</autodoc> 
4588         <param name=
"id" type=
"long" default=
""/> 
4589         <param name=
"parent" type=
"Window" default=
"NULL"/> 
4592     <method name=
"FindWindowByName" oldname=
"wxFindWindowByName" type=
"Window" overloaded=
"no"> 
4593       <autodoc>FindWindowByName(String name, Window parent=None) -
> Window
</autodoc> 
4595         <param name=
"name" type=
"String" default=
""/> 
4596         <param name=
"parent" type=
"Window" default=
"NULL"/> 
4599     <method name=
"FindWindowByLabel" oldname=
"wxFindWindowByLabel" type=
"Window" overloaded=
"no"> 
4600       <autodoc>FindWindowByLabel(String label, Window parent=None) -
> Window
</autodoc> 
4602         <param name=
"label" type=
"String" default=
""/> 
4603         <param name=
"parent" type=
"Window" default=
"NULL"/> 
4606     <method name=
"Window_FromHWND" oldname=
"wxWindow_FromHWND" type=
"Window" overloaded=
"no"> 
4607       <autodoc>Window_FromHWND(unsigned long hWnd) -
> Window
</autodoc> 
4609         <param name=
"hWnd" type=
"unsigned long" default=
""/> 
4613 #---------------------------------------------------------------------------
 
4615     <class name=
"Validator" oldname=
"wxValidator" module=
"core"> 
4616       <baseclass name=
"EvtHandler"/> 
4617       <constructor name=
"Validator" overloaded=
"no"> 
4618         <autodoc>__init__() -
> Validator
</autodoc> 
4620       <method name=
"Clone" type=
"Validator" overloaded=
"no"> 
4621         <autodoc>Clone() -
> Validator
</autodoc> 
4623       <method name=
"Validate" type=
"bool" overloaded=
"no"> 
4624         <autodoc>Validate(Window parent) -
> bool
</autodoc> 
4626           <param name=
"parent" type=
"Window" default=
""/> 
4629       <method name=
"TransferToWindow" type=
"bool" overloaded=
"no"> 
4630         <autodoc>TransferToWindow() -
> bool
</autodoc> 
4632       <method name=
"TransferFromWindow" type=
"bool" overloaded=
"no"> 
4633         <autodoc>TransferFromWindow() -
> bool
</autodoc> 
4635       <method name=
"GetWindow" type=
"Window" overloaded=
"no"> 
4636         <autodoc>GetWindow() -
> Window
</autodoc> 
4638       <method name=
"SetWindow" type=
"" overloaded=
"no"> 
4639         <autodoc>SetWindow(Window window)
</autodoc> 
4641           <param name=
"window" type=
"Window" default=
""/> 
4644       <staticmethod name=
"IsSilent" type=
"bool" overloaded=
"no"> 
4645         <autodoc>Validator.IsSilent() -
> bool
</autodoc> 
4647       <staticmethod name=
"SetBellOnError" type=
"" overloaded=
"no"> 
4648         <autodoc>Validator.SetBellOnError(int doIt=True)
</autodoc> 
4650           <param name=
"doIt" type=
"int" default=
"True"/> 
4654     <class name=
"PyValidator" oldname=
"wxPyValidator" module=
"core"> 
4655       <baseclass name=
"Validator"/> 
4656       <constructor name=
"PyValidator" overloaded=
"no"> 
4657         <autodoc>__init__() -
> PyValidator
</autodoc> 
4659       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
4660         <autodoc>_setCallbackInfo(PyObject self, PyObject _class, int incref=True)
</autodoc> 
4662           <param name=
"self" type=
"PyObject" default=
""/> 
4663           <param name=
"_class" type=
"PyObject" default=
""/> 
4664           <param name=
"incref" type=
"int" default=
"True"/> 
4669 #---------------------------------------------------------------------------
 
4671     <class name=
"Menu" oldname=
"wxMenu" module=
"core"> 
4672       <baseclass name=
"EvtHandler"/> 
4673       <constructor name=
"Menu" overloaded=
"no"> 
4674         <autodoc>__init__(String title=EmptyString, long style=
0) -
> Menu
</autodoc> 
4676           <param name=
"title" type=
"String" default=
"wxPyEmptyString"/> 
4677           <param name=
"style" type=
"long" default=
"0"/> 
4680       <method name=
"Append" type=
"" overloaded=
"no"> 
4681         <autodoc>Append(int id, String text, String help=EmptyString, int kind=ITEM_NORMAL)
</autodoc> 
4683           <param name=
"id" type=
"int" default=
""/> 
4684           <param name=
"text" type=
"String" default=
""/> 
4685           <param name=
"help" type=
"String" default=
"wxPyEmptyString"/> 
4686           <param name=
"kind" type=
"wxItemKind" default=
"wxITEM_NORMAL"/> 
4689       <method name=
"AppendSeparator" type=
"" overloaded=
"no"> 
4690         <autodoc>AppendSeparator()
</autodoc> 
4692       <method name=
"AppendCheckItem" type=
"" overloaded=
"no"> 
4693         <autodoc>AppendCheckItem(int id, String text, String help=EmptyString)
</autodoc> 
4695           <param name=
"id" type=
"int" default=
""/> 
4696           <param name=
"text" type=
"String" default=
""/> 
4697           <param name=
"help" type=
"String" default=
"wxPyEmptyString"/> 
4700       <method name=
"AppendRadioItem" type=
"" overloaded=
"no"> 
4701         <autodoc>AppendRadioItem(int id, String text, String help=EmptyString)
</autodoc> 
4703           <param name=
"id" type=
"int" default=
""/> 
4704           <param name=
"text" type=
"String" default=
""/> 
4705           <param name=
"help" type=
"String" default=
"wxPyEmptyString"/> 
4708       <method name=
"AppendMenu" type=
"" overloaded=
"no"> 
4709         <autodoc>AppendMenu(int id, String text, Menu submenu, String help=EmptyString)
</autodoc> 
4711           <param name=
"id" type=
"int" default=
""/> 
4712           <param name=
"text" type=
"String" default=
""/> 
4713           <param name=
"submenu" type=
"Menu" default=
""/> 
4714           <param name=
"help" type=
"String" default=
"wxPyEmptyString"/> 
4717       <method name=
"AppendItem" type=
"" overloaded=
"no"> 
4718         <autodoc>AppendItem(MenuItem item)
</autodoc> 
4720           <param name=
"item" type=
"wxMenuItem" default=
""/> 
4723       <method name=
"Break" type=
"" overloaded=
"no"> 
4724         <autodoc>Break()
</autodoc> 
4726       <method name=
"InsertItem" type=
"bool" overloaded=
"no"> 
4727         <autodoc>InsertItem(size_t pos, MenuItem item) -
> bool
</autodoc> 
4729           <param name=
"pos" type=
"size_t" default=
""/> 
4730           <param name=
"item" type=
"wxMenuItem" default=
""/> 
4733       <method name=
"Insert" type=
"" overloaded=
"no"> 
4734         <autodoc>Insert(size_t pos, int id, String text, String help=EmptyString, 
 
4735     int kind=ITEM_NORMAL)
</autodoc> 
4737           <param name=
"pos" type=
"size_t" default=
""/> 
4738           <param name=
"id" type=
"int" default=
""/> 
4739           <param name=
"text" type=
"String" default=
""/> 
4740           <param name=
"help" type=
"String" default=
"wxPyEmptyString"/> 
4741           <param name=
"kind" type=
"wxItemKind" default=
"wxITEM_NORMAL"/> 
4744       <method name=
"InsertSeparator" type=
"" overloaded=
"no"> 
4745         <autodoc>InsertSeparator(size_t pos)
</autodoc> 
4747           <param name=
"pos" type=
"size_t" default=
""/> 
4750       <method name=
"InsertCheckItem" type=
"" overloaded=
"no"> 
4751         <autodoc>InsertCheckItem(size_t pos, int id, String text, String help=EmptyString)
</autodoc> 
4753           <param name=
"pos" type=
"size_t" default=
""/> 
4754           <param name=
"id" type=
"int" default=
""/> 
4755           <param name=
"text" type=
"String" default=
""/> 
4756           <param name=
"help" type=
"String" default=
"wxPyEmptyString"/> 
4759       <method name=
"InsertRadioItem" type=
"" overloaded=
"no"> 
4760         <autodoc>InsertRadioItem(size_t pos, int id, String text, String help=EmptyString)
</autodoc> 
4762           <param name=
"pos" type=
"size_t" default=
""/> 
4763           <param name=
"id" type=
"int" default=
""/> 
4764           <param name=
"text" type=
"String" default=
""/> 
4765           <param name=
"help" type=
"String" default=
"wxPyEmptyString"/> 
4768       <method name=
"InsertMenu" type=
"" overloaded=
"no"> 
4769         <autodoc>InsertMenu(size_t pos, int id, String text, Menu submenu, String help=EmptyString)
</autodoc> 
4771           <param name=
"pos" type=
"size_t" default=
""/> 
4772           <param name=
"id" type=
"int" default=
""/> 
4773           <param name=
"text" type=
"String" default=
""/> 
4774           <param name=
"submenu" type=
"Menu" default=
""/> 
4775           <param name=
"help" type=
"String" default=
"wxPyEmptyString"/> 
4778       <method name=
"PrependItem" type=
"" overloaded=
"no"> 
4779         <autodoc>PrependItem(MenuItem item)
</autodoc> 
4781           <param name=
"item" type=
"wxMenuItem" default=
""/> 
4784       <method name=
"Prepend" type=
"" overloaded=
"no"> 
4785         <autodoc>Prepend(int id, String text, String help=EmptyString, int kind=ITEM_NORMAL)
</autodoc> 
4787           <param name=
"id" type=
"int" default=
""/> 
4788           <param name=
"text" type=
"String" default=
""/> 
4789           <param name=
"help" type=
"String" default=
"wxPyEmptyString"/> 
4790           <param name=
"kind" type=
"wxItemKind" default=
"wxITEM_NORMAL"/> 
4793       <method name=
"PrependSeparator" type=
"" overloaded=
"no"> 
4794         <autodoc>PrependSeparator()
</autodoc> 
4796       <method name=
"PrependCheckItem" type=
"" overloaded=
"no"> 
4797         <autodoc>PrependCheckItem(int id, String text, String help=EmptyString)
</autodoc> 
4799           <param name=
"id" type=
"int" default=
""/> 
4800           <param name=
"text" type=
"String" default=
""/> 
4801           <param name=
"help" type=
"String" default=
"wxPyEmptyString"/> 
4804       <method name=
"PrependRadioItem" type=
"" overloaded=
"no"> 
4805         <autodoc>PrependRadioItem(int id, String text, String help=EmptyString)
</autodoc> 
4807           <param name=
"id" type=
"int" default=
""/> 
4808           <param name=
"text" type=
"String" default=
""/> 
4809           <param name=
"help" type=
"String" default=
"wxPyEmptyString"/> 
4812       <method name=
"PrependMenu" type=
"" overloaded=
"no"> 
4813         <autodoc>PrependMenu(int id, String text, Menu submenu, String help=EmptyString)
</autodoc> 
4815           <param name=
"id" type=
"int" default=
""/> 
4816           <param name=
"text" type=
"String" default=
""/> 
4817           <param name=
"submenu" type=
"Menu" default=
""/> 
4818           <param name=
"help" type=
"String" default=
"wxPyEmptyString"/> 
4821       <method name=
"Remove" type=
"wxMenuItem" overloaded=
"no"> 
4822         <autodoc>Remove(int id) -
> MenuItem
</autodoc> 
4824           <param name=
"id" type=
"int" default=
""/> 
4827       <method name=
"RemoveItem" type=
"wxMenuItem" overloaded=
"no"> 
4828         <autodoc>RemoveItem(MenuItem item) -
> MenuItem
</autodoc> 
4830           <param name=
"item" type=
"wxMenuItem" default=
""/> 
4833       <method name=
"Delete" type=
"bool" overloaded=
"no"> 
4834         <autodoc>Delete(int id) -
> bool
</autodoc> 
4836           <param name=
"id" type=
"int" default=
""/> 
4839       <method name=
"DeleteItem" type=
"bool" overloaded=
"no"> 
4840         <autodoc>DeleteItem(MenuItem item) -
> bool
</autodoc> 
4842           <param name=
"item" type=
"wxMenuItem" default=
""/> 
4845       <method name=
"Destroy" type=
"" overloaded=
"no"> 
4846         <autodoc>Destroy()
</autodoc> 
4847         <docstring>Deletes the C++ object this Python object is a proxy for.
</docstring> 
4849       <method name=
"DestroyId" type=
"bool" overloaded=
"no"> 
4850         <autodoc>DestroyId(int id) -
> bool
</autodoc> 
4851         <docstring>Deletes the C++ object this Python object is a proxy for.
</docstring> 
4853           <param name=
"id" type=
"int" default=
""/> 
4856       <method name=
"DestroyItem" type=
"bool" overloaded=
"no"> 
4857         <autodoc>DestroyItem(MenuItem item) -
> bool
</autodoc> 
4858         <docstring>Deletes the C++ object this Python object is a proxy for.
</docstring> 
4860           <param name=
"item" type=
"wxMenuItem" default=
""/> 
4863       <method name=
"GetMenuItemCount" type=
"size_t" overloaded=
"no"> 
4864         <autodoc>GetMenuItemCount() -
> size_t
</autodoc> 
4866       <method name=
"GetMenuItems" type=
"PyObject" overloaded=
"no"> 
4867         <autodoc>GetMenuItems() -
> PyObject
</autodoc> 
4869       <method name=
"FindItem" type=
"int" overloaded=
"no"> 
4870         <autodoc>FindItem(String item) -
> int
</autodoc> 
4872           <param name=
"item" type=
"String" default=
""/> 
4875       <method name=
"FindItemById" type=
"wxMenuItem" overloaded=
"no"> 
4876         <autodoc>FindItemById(int id) -
> MenuItem
</autodoc> 
4878           <param name=
"id" type=
"int" default=
""/> 
4881       <method name=
"FindItemByPosition" type=
"wxMenuItem" overloaded=
"no"> 
4882         <autodoc>FindItemByPosition(size_t position) -
> MenuItem
</autodoc> 
4884           <param name=
"position" type=
"size_t" default=
""/> 
4887       <method name=
"Enable" type=
"" overloaded=
"no"> 
4888         <autodoc>Enable(int id, bool enable)
</autodoc> 
4890           <param name=
"id" type=
"int" default=
""/> 
4891           <param name=
"enable" type=
"bool" default=
""/> 
4894       <method name=
"IsEnabled" type=
"bool" overloaded=
"no"> 
4895         <autodoc>IsEnabled(int id) -
> bool
</autodoc> 
4897           <param name=
"id" type=
"int" default=
""/> 
4900       <method name=
"Check" type=
"" overloaded=
"no"> 
4901         <autodoc>Check(int id, bool check)
</autodoc> 
4903           <param name=
"id" type=
"int" default=
""/> 
4904           <param name=
"check" type=
"bool" default=
""/> 
4907       <method name=
"IsChecked" type=
"bool" overloaded=
"no"> 
4908         <autodoc>IsChecked(int id) -
> bool
</autodoc> 
4910           <param name=
"id" type=
"int" default=
""/> 
4913       <method name=
"SetLabel" type=
"" overloaded=
"no"> 
4914         <autodoc>SetLabel(int id, String label)
</autodoc> 
4916           <param name=
"id" type=
"int" default=
""/> 
4917           <param name=
"label" type=
"String" default=
""/> 
4920       <method name=
"GetLabel" type=
"String" overloaded=
"no"> 
4921         <autodoc>GetLabel(int id) -
> String
</autodoc> 
4923           <param name=
"id" type=
"int" default=
""/> 
4926       <method name=
"SetHelpString" type=
"" overloaded=
"no"> 
4927         <autodoc>SetHelpString(int id, String helpString)
</autodoc> 
4929           <param name=
"id" type=
"int" default=
""/> 
4930           <param name=
"helpString" type=
"String" default=
""/> 
4933       <method name=
"GetHelpString" type=
"String" overloaded=
"no"> 
4934         <autodoc>GetHelpString(int id) -
> String
</autodoc> 
4936           <param name=
"id" type=
"int" default=
""/> 
4939       <method name=
"SetTitle" type=
"" overloaded=
"no"> 
4940         <autodoc>SetTitle(String title)
</autodoc> 
4942           <param name=
"title" type=
"String" default=
""/> 
4945       <method name=
"GetTitle" type=
"String" overloaded=
"no"> 
4946         <autodoc>GetTitle() -
> String
</autodoc> 
4948       <method name=
"SetEventHandler" type=
"" overloaded=
"no"> 
4949         <autodoc>SetEventHandler(EvtHandler handler)
</autodoc> 
4951           <param name=
"handler" type=
"EvtHandler" default=
""/> 
4954       <method name=
"GetEventHandler" type=
"EvtHandler" overloaded=
"no"> 
4955         <autodoc>GetEventHandler() -
> EvtHandler
</autodoc> 
4957       <method name=
"SetInvokingWindow" type=
"" overloaded=
"no"> 
4958         <autodoc>SetInvokingWindow(Window win)
</autodoc> 
4960           <param name=
"win" type=
"Window" default=
""/> 
4963       <method name=
"GetInvokingWindow" type=
"Window" overloaded=
"no"> 
4964         <autodoc>GetInvokingWindow() -
> Window
</autodoc> 
4966       <method name=
"GetStyle" type=
"long" overloaded=
"no"> 
4967         <autodoc>GetStyle() -
> long
</autodoc> 
4969       <method name=
"UpdateUI" type=
"" overloaded=
"no"> 
4970         <autodoc>UpdateUI(EvtHandler source=None)
</autodoc> 
4972           <param name=
"source" type=
"EvtHandler" default=
"NULL"/> 
4975       <method name=
"GetMenuBar" type=
"wxMenuBar" overloaded=
"no"> 
4976         <autodoc>GetMenuBar() -
> MenuBar
</autodoc> 
4978       <method name=
"Attach" type=
"" overloaded=
"no"> 
4979         <autodoc>Attach(wxMenuBarBase menubar)
</autodoc> 
4981           <param name=
"menubar" type=
"wxMenuBarBase" default=
""/> 
4984       <method name=
"Detach" type=
"" overloaded=
"no"> 
4985         <autodoc>Detach()
</autodoc> 
4987       <method name=
"IsAttached" type=
"bool" overloaded=
"no"> 
4988         <autodoc>IsAttached() -
> bool
</autodoc> 
4990       <method name=
"SetParent" type=
"" overloaded=
"no"> 
4991         <autodoc>SetParent(Menu parent)
</autodoc> 
4993           <param name=
"parent" type=
"Menu" default=
""/> 
4996       <method name=
"GetParent" type=
"Menu" overloaded=
"no"> 
4997         <autodoc>GetParent() -
> Menu
</autodoc> 
5001 #---------------------------------------------------------------------------
 
5003     <class name=
"MenuBar" oldname=
"wxMenuBar" module=
"core"> 
5004       <baseclass name=
"Window"/> 
5005       <constructor name=
"MenuBar" overloaded=
"no"> 
5006         <autodoc>__init__(long style=
0) -
> MenuBar
</autodoc> 
5008           <param name=
"style" type=
"long" default=
"0"/> 
5011       <method name=
"Append" type=
"bool" overloaded=
"no"> 
5012         <autodoc>Append(Menu menu, String title) -
> bool
</autodoc> 
5014           <param name=
"menu" type=
"Menu" default=
""/> 
5015           <param name=
"title" type=
"String" default=
""/> 
5018       <method name=
"Insert" type=
"bool" overloaded=
"no"> 
5019         <autodoc>Insert(size_t pos, Menu menu, String title) -
> bool
</autodoc> 
5021           <param name=
"pos" type=
"size_t" default=
""/> 
5022           <param name=
"menu" type=
"Menu" default=
""/> 
5023           <param name=
"title" type=
"String" default=
""/> 
5026       <method name=
"GetMenuCount" type=
"size_t" overloaded=
"no"> 
5027         <autodoc>GetMenuCount() -
> size_t
</autodoc> 
5029       <method name=
"GetMenu" type=
"Menu" overloaded=
"no"> 
5030         <autodoc>GetMenu(size_t pos) -
> Menu
</autodoc> 
5032           <param name=
"pos" type=
"size_t" default=
""/> 
5035       <method name=
"Replace" type=
"Menu" overloaded=
"no"> 
5036         <autodoc>Replace(size_t pos, Menu menu, String title) -
> Menu
</autodoc> 
5038           <param name=
"pos" type=
"size_t" default=
""/> 
5039           <param name=
"menu" type=
"Menu" default=
""/> 
5040           <param name=
"title" type=
"String" default=
""/> 
5043       <method name=
"Remove" type=
"Menu" overloaded=
"no"> 
5044         <autodoc>Remove(size_t pos) -
> Menu
</autodoc> 
5046           <param name=
"pos" type=
"size_t" default=
""/> 
5049       <method name=
"EnableTop" type=
"" overloaded=
"no"> 
5050         <autodoc>EnableTop(size_t pos, bool enable)
</autodoc> 
5052           <param name=
"pos" type=
"size_t" default=
""/> 
5053           <param name=
"enable" type=
"bool" default=
""/> 
5056       <method name=
"IsEnabledTop" type=
"bool" overloaded=
"no"> 
5057         <autodoc>IsEnabledTop(size_t pos) -
> bool
</autodoc> 
5059           <param name=
"pos" type=
"size_t" default=
""/> 
5062       <method name=
"SetLabelTop" type=
"" overloaded=
"no"> 
5063         <autodoc>SetLabelTop(size_t pos, String label)
</autodoc> 
5065           <param name=
"pos" type=
"size_t" default=
""/> 
5066           <param name=
"label" type=
"String" default=
""/> 
5069       <method name=
"GetLabelTop" type=
"String" overloaded=
"no"> 
5070         <autodoc>GetLabelTop(size_t pos) -
> String
</autodoc> 
5072           <param name=
"pos" type=
"size_t" default=
""/> 
5075       <method name=
"FindMenuItem" type=
"int" overloaded=
"no"> 
5076         <autodoc>FindMenuItem(String menu, String item) -
> int
</autodoc> 
5078           <param name=
"menu" type=
"String" default=
""/> 
5079           <param name=
"item" type=
"String" default=
""/> 
5082       <method name=
"FindItemById" type=
"wxMenuItem" overloaded=
"no"> 
5083         <autodoc>FindItemById(int id) -
> MenuItem
</autodoc> 
5085           <param name=
"id" type=
"int" default=
""/> 
5088       <method name=
"FindMenu" type=
"int" overloaded=
"no"> 
5089         <autodoc>FindMenu(String title) -
> int
</autodoc> 
5091           <param name=
"title" type=
"String" default=
""/> 
5094       <method name=
"Enable" type=
"" overloaded=
"no"> 
5095         <autodoc>Enable(int id, bool enable)
</autodoc> 
5097           <param name=
"id" type=
"int" default=
""/> 
5098           <param name=
"enable" type=
"bool" default=
""/> 
5101       <method name=
"Check" type=
"" overloaded=
"no"> 
5102         <autodoc>Check(int id, bool check)
</autodoc> 
5104           <param name=
"id" type=
"int" default=
""/> 
5105           <param name=
"check" type=
"bool" default=
""/> 
5108       <method name=
"IsChecked" type=
"bool" overloaded=
"no"> 
5109         <autodoc>IsChecked(int id) -
> bool
</autodoc> 
5111           <param name=
"id" type=
"int" default=
""/> 
5114       <method name=
"IsEnabled" type=
"bool" overloaded=
"no"> 
5115         <autodoc>IsEnabled(int id) -
> bool
</autodoc> 
5117           <param name=
"id" type=
"int" default=
""/> 
5120       <method name=
"SetLabel" type=
"" overloaded=
"no"> 
5121         <autodoc>SetLabel(int id, String label)
</autodoc> 
5123           <param name=
"id" type=
"int" default=
""/> 
5124           <param name=
"label" type=
"String" default=
""/> 
5127       <method name=
"GetLabel" type=
"String" overloaded=
"no"> 
5128         <autodoc>GetLabel(int id) -
> String
</autodoc> 
5130           <param name=
"id" type=
"int" default=
""/> 
5133       <method name=
"SetHelpString" type=
"" overloaded=
"no"> 
5134         <autodoc>SetHelpString(int id, String helpString)
</autodoc> 
5136           <param name=
"id" type=
"int" default=
""/> 
5137           <param name=
"helpString" type=
"String" default=
""/> 
5140       <method name=
"GetHelpString" type=
"String" overloaded=
"no"> 
5141         <autodoc>GetHelpString(int id) -
> String
</autodoc> 
5143           <param name=
"id" type=
"int" default=
""/> 
5146       <method name=
"GetFrame" type=
"wxFrame" overloaded=
"no"> 
5147         <autodoc>GetFrame() -
> wxFrame
</autodoc> 
5149       <method name=
"IsAttached" type=
"bool" overloaded=
"no"> 
5150         <autodoc>IsAttached() -
> bool
</autodoc> 
5152       <method name=
"Attach" type=
"" overloaded=
"no"> 
5153         <autodoc>Attach(wxFrame frame)
</autodoc> 
5155           <param name=
"frame" type=
"wxFrame" default=
""/> 
5158       <method name=
"Detach" type=
"" overloaded=
"no"> 
5159         <autodoc>Detach()
</autodoc> 
5163 #---------------------------------------------------------------------------
 
5165     <class name=
"MenuItem" oldname=
"wxMenuItem" module=
"core"> 
5166       <baseclass name=
"Object"/> 
5167       <constructor name=
"MenuItem" overloaded=
"no"> 
5168         <autodoc>__init__(Menu parentMenu=None, int id=ID_SEPARATOR, String text=EmptyString, 
 
5169     String help=EmptyString, int kind=ITEM_NORMAL, 
 
5170     Menu subMenu=None) -
> MenuItem
</autodoc> 
5172           <param name=
"parentMenu" type=
"Menu" default=
"NULL"/> 
5173           <param name=
"id" type=
"int" default=
"wxID_SEPARATOR"/> 
5174           <param name=
"text" type=
"String" default=
"wxPyEmptyString"/> 
5175           <param name=
"help" type=
"String" default=
"wxPyEmptyString"/> 
5176           <param name=
"kind" type=
"wxItemKind" default=
"wxITEM_NORMAL"/> 
5177           <param name=
"subMenu" type=
"Menu" default=
"NULL"/> 
5180       <method name=
"GetMenu" type=
"Menu" overloaded=
"no"> 
5181         <autodoc>GetMenu() -
> Menu
</autodoc> 
5183       <method name=
"SetMenu" type=
"" overloaded=
"no"> 
5184         <autodoc>SetMenu(Menu menu)
</autodoc> 
5186           <param name=
"menu" type=
"Menu" default=
""/> 
5189       <method name=
"SetId" type=
"" overloaded=
"no"> 
5190         <autodoc>SetId(int id)
</autodoc> 
5192           <param name=
"id" type=
"int" default=
""/> 
5195       <method name=
"GetId" type=
"int" overloaded=
"no"> 
5196         <autodoc>GetId() -
> int
</autodoc> 
5198       <method name=
"IsSeparator" type=
"bool" overloaded=
"no"> 
5199         <autodoc>IsSeparator() -
> bool
</autodoc> 
5201       <method name=
"SetText" type=
"" overloaded=
"no"> 
5202         <autodoc>SetText(String str)
</autodoc> 
5204           <param name=
"str" type=
"String" default=
""/> 
5207       <method name=
"GetLabel" type=
"String" overloaded=
"no"> 
5208         <autodoc>GetLabel() -
> String
</autodoc> 
5210       <method name=
"GetText" type=
"String" overloaded=
"no"> 
5211         <autodoc>GetText() -
> String
</autodoc> 
5213       <staticmethod name=
"GetLabelFromText" type=
"String" overloaded=
"no"> 
5214         <autodoc>MenuItem.GetLabelFromText(String text) -
> String
</autodoc> 
5216           <param name=
"text" type=
"String" default=
""/> 
5219       <method name=
"GetKind" type=
"wxItemKind" overloaded=
"no"> 
5220         <autodoc>GetKind() -
> int
</autodoc> 
5222       <method name=
"SetCheckable" type=
"" overloaded=
"no"> 
5223         <autodoc>SetCheckable(bool checkable)
</autodoc> 
5225           <param name=
"checkable" type=
"bool" default=
""/> 
5228       <method name=
"IsCheckable" type=
"bool" overloaded=
"no"> 
5229         <autodoc>IsCheckable() -
> bool
</autodoc> 
5231       <method name=
"IsSubMenu" type=
"bool" overloaded=
"no"> 
5232         <autodoc>IsSubMenu() -
> bool
</autodoc> 
5234       <method name=
"SetSubMenu" type=
"" overloaded=
"no"> 
5235         <autodoc>SetSubMenu(Menu menu)
</autodoc> 
5237           <param name=
"menu" type=
"Menu" default=
""/> 
5240       <method name=
"GetSubMenu" type=
"Menu" overloaded=
"no"> 
5241         <autodoc>GetSubMenu() -
> Menu
</autodoc> 
5243       <method name=
"Enable" type=
"" overloaded=
"no"> 
5244         <autodoc>Enable(bool enable=True)
</autodoc> 
5246           <param name=
"enable" type=
"bool" default=
"True"/> 
5249       <method name=
"IsEnabled" type=
"bool" overloaded=
"no"> 
5250         <autodoc>IsEnabled() -
> bool
</autodoc> 
5252       <method name=
"Check" type=
"" overloaded=
"no"> 
5253         <autodoc>Check(bool check=True)
</autodoc> 
5255           <param name=
"check" type=
"bool" default=
"True"/> 
5258       <method name=
"IsChecked" type=
"bool" overloaded=
"no"> 
5259         <autodoc>IsChecked() -
> bool
</autodoc> 
5261       <method name=
"Toggle" type=
"" overloaded=
"no"> 
5262         <autodoc>Toggle()
</autodoc> 
5264       <method name=
"SetHelp" type=
"" overloaded=
"no"> 
5265         <autodoc>SetHelp(String str)
</autodoc> 
5267           <param name=
"str" type=
"String" default=
""/> 
5270       <method name=
"GetHelp" type=
"String" overloaded=
"no"> 
5271         <autodoc>GetHelp() -
> String
</autodoc> 
5273       <method name=
"GetAccel" type=
"AcceleratorEntry" overloaded=
"no"> 
5274         <autodoc>GetAccel() -
> AcceleratorEntry
</autodoc> 
5276       <method name=
"SetAccel" type=
"" overloaded=
"no"> 
5277         <autodoc>SetAccel(AcceleratorEntry accel)
</autodoc> 
5279           <param name=
"accel" type=
"AcceleratorEntry" default=
""/> 
5282       <staticmethod name=
"GetDefaultMarginWidth" type=
"int" overloaded=
"no"> 
5283         <autodoc>MenuItem.GetDefaultMarginWidth() -
> int
</autodoc> 
5285       <method name=
"SetBitmap" type=
"" overloaded=
"no"> 
5286         <autodoc>SetBitmap(Bitmap bitmap)
</autodoc> 
5288           <param name=
"bitmap" type=
"wxBitmap" default=
""/> 
5291       <method name=
"GetBitmap" type=
"wxBitmap" overloaded=
"no"> 
5292         <autodoc>GetBitmap() -
> Bitmap
</autodoc> 
5296 #---------------------------------------------------------------------------
 
5298     <class name=
"Control" oldname=
"wxControl" module=
"core"> 
5299       <baseclass name=
"Window"/> 
5300       <constructor name=
"Control" overloaded=
"no"> 
5301         <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
5302     long style=
0, Validator validator=DefaultValidator, 
 
5303     String name=ControlNameStr) -
> Control
</autodoc> 
5305           <param name=
"parent" type=
"Window" default=
""/> 
5306           <param name=
"id" type=
"int" default=
""/> 
5307           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
5308           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
5309           <param name=
"style" type=
"long" default=
"0"/> 
5310           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
5311           <param name=
"name" type=
"String" default=
"wxPyControlNameStr"/> 
5314       <constructor name=
"PreControl" overloaded=
"no"> 
5315         <autodoc>PreControl() -
> Control
</autodoc> 
5317       <method name=
"Create" type=
"bool" overloaded=
"no"> 
5318         <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
5319     long style=
0, Validator validator=DefaultValidator, 
 
5320     String name=ControlNameStr) -
> bool
</autodoc> 
5322           <param name=
"parent" type=
"Window" default=
""/> 
5323           <param name=
"id" type=
"int" default=
""/> 
5324           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
5325           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
5326           <param name=
"style" type=
"long" default=
"0"/> 
5327           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
5328           <param name=
"name" type=
"String" default=
"wxPyControlNameStr"/> 
5331       <method name=
"Command" type=
"" overloaded=
"no"> 
5332         <autodoc>Command(CommandEvent event)
</autodoc> 
5334           <param name=
"event" type=
"CommandEvent" default=
""/> 
5337       <method name=
"GetLabel" type=
"String" overloaded=
"no"> 
5338         <autodoc>GetLabel() -
> String
</autodoc> 
5340       <method name=
"SetLabel" type=
"" overloaded=
"no"> 
5341         <autodoc>SetLabel(String label)
</autodoc> 
5343           <param name=
"label" type=
"String" default=
""/> 
5348 #---------------------------------------------------------------------------
 
5350     <class name=
"ItemContainer" oldname=
"wxItemContainer" module=
"core"> 
5351       <method name=
"Append" type=
"int" overloaded=
"no"> 
5352         <autodoc>Append(String item, PyObject clientData=None) -
> int
</autodoc> 
5354           <param name=
"item" type=
"String" default=
""/> 
5355           <param name=
"clientData" type=
"PyObject" default=
"NULL"/> 
5358       <method name=
"AppendItems" type=
"" overloaded=
"no"> 
5359         <autodoc>AppendItems(wxArrayString strings)
</autodoc> 
5361           <param name=
"strings" type=
"wxArrayString" default=
""/> 
5364       <method name=
"Insert" type=
"int" overloaded=
"no"> 
5365         <autodoc>Insert(String item, int pos, PyObject clientData=None) -
> int
</autodoc> 
5367           <param name=
"item" type=
"String" default=
""/> 
5368           <param name=
"pos" type=
"int" default=
""/> 
5369           <param name=
"clientData" type=
"PyObject" default=
"NULL"/> 
5372       <method name=
"Clear" type=
"" overloaded=
"no"> 
5373         <autodoc>Clear()
</autodoc> 
5375       <method name=
"Delete" type=
"" overloaded=
"no"> 
5376         <autodoc>Delete(int n)
</autodoc> 
5378           <param name=
"n" type=
"int" default=
""/> 
5381       <method name=
"GetCount" type=
"int" overloaded=
"no"> 
5382         <autodoc>GetCount() -
> int
</autodoc> 
5384       <method name=
"IsEmpty" type=
"bool" overloaded=
"no"> 
5385         <autodoc>IsEmpty() -
> bool
</autodoc> 
5387       <method name=
"GetString" type=
"String" overloaded=
"no"> 
5388         <autodoc>GetString(int n) -
> String
</autodoc> 
5390           <param name=
"n" type=
"int" default=
""/> 
5393       <method name=
"GetStrings" type=
"wxArrayString" overloaded=
"no"> 
5394         <autodoc>GetStrings() -
> wxArrayString
</autodoc> 
5396       <method name=
"SetString" type=
"" overloaded=
"no"> 
5397         <autodoc>SetString(int n, String s)
</autodoc> 
5399           <param name=
"n" type=
"int" default=
""/> 
5400           <param name=
"s" type=
"String" default=
""/> 
5403       <method name=
"FindString" type=
"int" overloaded=
"no"> 
5404         <autodoc>FindString(String s) -
> int
</autodoc> 
5406           <param name=
"s" type=
"String" default=
""/> 
5409       <method name=
"Select" type=
"" overloaded=
"no"> 
5410         <autodoc>Select(int n)
</autodoc> 
5412           <param name=
"n" type=
"int" default=
""/> 
5415       <method name=
"GetSelection" type=
"int" overloaded=
"no"> 
5416         <autodoc>GetSelection() -
> int
</autodoc> 
5418       <method name=
"GetStringSelection" type=
"String" overloaded=
"no"> 
5419         <autodoc>GetStringSelection() -
> String
</autodoc> 
5421       <method name=
"GetClientData" type=
"PyObject" overloaded=
"no"> 
5422         <autodoc>GetClientData(int n) -
> PyObject
</autodoc> 
5424           <param name=
"n" type=
"int" default=
""/> 
5427       <method name=
"SetClientData" type=
"" overloaded=
"no"> 
5428         <autodoc>SetClientData(int n, PyObject clientData)
</autodoc> 
5430           <param name=
"n" type=
"int" default=
""/> 
5431           <param name=
"clientData" type=
"PyObject" default=
""/> 
5436 #---------------------------------------------------------------------------
 
5438     <class name=
"ControlWithItems" oldname=
"wxControlWithItems" module=
"core"> 
5439       <baseclass name=
"Control"/> 
5440       <baseclass name=
"ItemContainer"/> 
5443 #---------------------------------------------------------------------------
 
5445     <class name=
"SizerItem" oldname=
"wxSizerItem" module=
"core"> 
5446       <baseclass name=
"Object"/> 
5447       <constructor name=
"SizerItem" overloaded=
"no"> 
5448         <autodoc>__init__() -
> SizerItem
</autodoc> 
5450       <constructor name=
"SizerItemSpacer" overloaded=
"no"> 
5451         <autodoc>SizerItemSpacer(int width, int height, int proportion, int flag, int border, 
 
5452     Object userData) -
> SizerItem
</autodoc> 
5454           <param name=
"width" type=
"int" default=
""/> 
5455           <param name=
"height" type=
"int" default=
""/> 
5456           <param name=
"proportion" type=
"int" default=
""/> 
5457           <param name=
"flag" type=
"int" default=
""/> 
5458           <param name=
"border" type=
"int" default=
""/> 
5459           <param name=
"userData" type=
"Object" default=
""/> 
5462       <constructor name=
"SizerItemWindow" overloaded=
"no"> 
5463         <autodoc>SizerItemWindow(Window window, int proportion, int flag, int border, 
 
5464     Object userData) -
> SizerItem
</autodoc> 
5466           <param name=
"window" type=
"Window" default=
""/> 
5467           <param name=
"proportion" type=
"int" default=
""/> 
5468           <param name=
"flag" type=
"int" default=
""/> 
5469           <param name=
"border" type=
"int" default=
""/> 
5470           <param name=
"userData" type=
"Object" default=
""/> 
5473       <constructor name=
"SizerItemSizer" overloaded=
"no"> 
5474         <autodoc>SizerItemSizer(Sizer sizer, int proportion, int flag, int border, 
 
5475     Object userData) -
> SizerItem
</autodoc> 
5477           <param name=
"sizer" type=
"wxSizer" default=
""/> 
5478           <param name=
"proportion" type=
"int" default=
""/> 
5479           <param name=
"flag" type=
"int" default=
""/> 
5480           <param name=
"border" type=
"int" default=
""/> 
5481           <param name=
"userData" type=
"Object" default=
""/> 
5484       <method name=
"DeleteWindows" type=
"" overloaded=
"no"> 
5485         <autodoc>DeleteWindows()
</autodoc> 
5487       <method name=
"DetachSizer" type=
"" overloaded=
"no"> 
5488         <autodoc>DetachSizer()
</autodoc> 
5490       <method name=
"GetSize" type=
"Size" overloaded=
"no"> 
5491         <autodoc>GetSize() -
> Size
</autodoc> 
5493       <method name=
"CalcMin" type=
"Size" overloaded=
"no"> 
5494         <autodoc>CalcMin() -
> Size
</autodoc> 
5496       <method name=
"SetDimension" type=
"" overloaded=
"no"> 
5497         <autodoc>SetDimension(Point pos, Size size)
</autodoc> 
5499           <param name=
"pos" type=
"Point" default=
""/> 
5500           <param name=
"size" type=
"Size" default=
""/> 
5503       <method name=
"GetMinSize" type=
"Size" overloaded=
"no"> 
5504         <autodoc>GetMinSize() -
> Size
</autodoc> 
5506       <method name=
"SetInitSize" type=
"" overloaded=
"no"> 
5507         <autodoc>SetInitSize(int x, int y)
</autodoc> 
5509           <param name=
"x" type=
"int" default=
""/> 
5510           <param name=
"y" type=
"int" default=
""/> 
5513       <method name=
"SetRatioWH" type=
"" overloaded=
"no"> 
5514         <autodoc>SetRatioWH(int width, int height)
</autodoc> 
5516           <param name=
"width" type=
"int" default=
""/> 
5517           <param name=
"height" type=
"int" default=
""/> 
5520       <method name=
"SetRatioSize" type=
"" overloaded=
"no"> 
5521         <autodoc>SetRatioSize(Size size)
</autodoc> 
5523           <param name=
"size" type=
"Size" default=
""/> 
5526       <method name=
"SetRatio" type=
"" overloaded=
"no"> 
5527         <autodoc>SetRatio(float ratio)
</autodoc> 
5529           <param name=
"ratio" type=
"float" default=
""/> 
5532       <method name=
"GetRatio" type=
"float" overloaded=
"no"> 
5533         <autodoc>GetRatio() -
> float
</autodoc> 
5535       <method name=
"IsWindow" type=
"bool" overloaded=
"no"> 
5536         <autodoc>IsWindow() -
> bool
</autodoc> 
5538       <method name=
"IsSizer" type=
"bool" overloaded=
"no"> 
5539         <autodoc>IsSizer() -
> bool
</autodoc> 
5541       <method name=
"IsSpacer" type=
"bool" overloaded=
"no"> 
5542         <autodoc>IsSpacer() -
> bool
</autodoc> 
5544       <method name=
"SetProportion" type=
"" overloaded=
"no"> 
5545         <autodoc>SetProportion(int proportion)
</autodoc> 
5547           <param name=
"proportion" type=
"int" default=
""/> 
5550       <method name=
"GetProportion" type=
"int" overloaded=
"no"> 
5551         <autodoc>GetProportion() -
> int
</autodoc> 
5553       <method name=
"SetFlag" type=
"" overloaded=
"no"> 
5554         <autodoc>SetFlag(int flag)
</autodoc> 
5556           <param name=
"flag" type=
"int" default=
""/> 
5559       <method name=
"GetFlag" type=
"int" overloaded=
"no"> 
5560         <autodoc>GetFlag() -
> int
</autodoc> 
5562       <method name=
"SetBorder" type=
"" overloaded=
"no"> 
5563         <autodoc>SetBorder(int border)
</autodoc> 
5565           <param name=
"border" type=
"int" default=
""/> 
5568       <method name=
"GetBorder" type=
"int" overloaded=
"no"> 
5569         <autodoc>GetBorder() -
> int
</autodoc> 
5571       <method name=
"GetWindow" type=
"Window" overloaded=
"no"> 
5572         <autodoc>GetWindow() -
> Window
</autodoc> 
5574       <method name=
"SetWindow" type=
"" overloaded=
"no"> 
5575         <autodoc>SetWindow(Window window)
</autodoc> 
5577           <param name=
"window" type=
"Window" default=
""/> 
5580       <method name=
"GetSizer" type=
"wxSizer" overloaded=
"no"> 
5581         <autodoc>GetSizer() -
> Sizer
</autodoc> 
5583       <method name=
"SetSizer" type=
"" overloaded=
"no"> 
5584         <autodoc>SetSizer(Sizer sizer)
</autodoc> 
5586           <param name=
"sizer" type=
"wxSizer" default=
""/> 
5589       <method name=
"GetSpacer" type=
"Size" overloaded=
"no"> 
5590         <autodoc>GetSpacer() -
> Size
</autodoc> 
5592       <method name=
"SetSpacer" type=
"" overloaded=
"no"> 
5593         <autodoc>SetSpacer(Size size)
</autodoc> 
5595           <param name=
"size" type=
"Size" default=
""/> 
5598       <method name=
"Show" type=
"" overloaded=
"no"> 
5599         <autodoc>Show(bool show)
</autodoc> 
5601           <param name=
"show" type=
"bool" default=
""/> 
5604       <method name=
"IsShown" type=
"bool" overloaded=
"no"> 
5605         <autodoc>IsShown() -
> bool
</autodoc> 
5607       <method name=
"GetPosition" type=
"Point" overloaded=
"no"> 
5608         <autodoc>GetPosition() -
> Point
</autodoc> 
5610       <method name=
"GetUserData" type=
"PyObject" overloaded=
"no"> 
5611         <autodoc>GetUserData() -
> PyObject
</autodoc> 
5614     <class name=
"Sizer" oldname=
"wxSizer" module=
"core"> 
5615       <baseclass name=
"Object"/> 
5616       <method name=
"_setOORInfo" type=
"" overloaded=
"no"> 
5617         <autodoc>_setOORInfo(PyObject _self)
</autodoc> 
5619           <param name=
"_self" type=
"PyObject" default=
""/> 
5622       <method name=
"Add" type=
"" overloaded=
"no"> 
5623         <autodoc>Add(PyObject item, int proportion=
0, int flag=
0, int border=
0, 
 
5624     PyObject userData=None)
</autodoc> 
5626           <param name=
"item" type=
"PyObject" default=
""/> 
5627           <param name=
"proportion" type=
"int" default=
"0"/> 
5628           <param name=
"flag" type=
"int" default=
"0"/> 
5629           <param name=
"border" type=
"int" default=
"0"/> 
5630           <param name=
"userData" type=
"PyObject" default=
"NULL"/> 
5633       <method name=
"Insert" type=
"" overloaded=
"no"> 
5634         <autodoc>Insert(int before, PyObject item, int proportion=
0, int flag=
0, 
 
5635     int border=
0, PyObject userData=None)
</autodoc> 
5637           <param name=
"before" type=
"int" default=
""/> 
5638           <param name=
"item" type=
"PyObject" default=
""/> 
5639           <param name=
"proportion" type=
"int" default=
"0"/> 
5640           <param name=
"flag" type=
"int" default=
"0"/> 
5641           <param name=
"border" type=
"int" default=
"0"/> 
5642           <param name=
"userData" type=
"PyObject" default=
"NULL"/> 
5645       <method name=
"Prepend" type=
"" overloaded=
"no"> 
5646         <autodoc>Prepend(PyObject item, int proportion=
0, int flag=
0, int border=
0, 
 
5647     PyObject userData=None)
</autodoc> 
5649           <param name=
"item" type=
"PyObject" default=
""/> 
5650           <param name=
"proportion" type=
"int" default=
"0"/> 
5651           <param name=
"flag" type=
"int" default=
"0"/> 
5652           <param name=
"border" type=
"int" default=
"0"/> 
5653           <param name=
"userData" type=
"PyObject" default=
"NULL"/> 
5656       <method name=
"Remove" type=
"bool" overloaded=
"no"> 
5657         <autodoc>Remove(PyObject item) -
> bool
</autodoc> 
5659           <param name=
"item" type=
"PyObject" default=
""/> 
5662       <method name=
"_SetItemMinSize" type=
"" overloaded=
"no"> 
5663         <autodoc>_SetItemMinSize(PyObject item, Size size)
</autodoc> 
5665           <param name=
"item" type=
"PyObject" default=
""/> 
5666           <param name=
"size" type=
"Size" default=
""/> 
5669       <method name=
"AddItem" type=
"" overloaded=
"no"> 
5670         <autodoc>AddItem(SizerItem item)
</autodoc> 
5672           <param name=
"item" type=
"SizerItem" default=
""/> 
5675       <method name=
"InsertItem" type=
"" overloaded=
"no"> 
5676         <autodoc>InsertItem(size_t index, SizerItem item)
</autodoc> 
5678           <param name=
"index" type=
"size_t" default=
""/> 
5679           <param name=
"item" type=
"SizerItem" default=
""/> 
5682       <method name=
"PrependItem" type=
"" overloaded=
"no"> 
5683         <autodoc>PrependItem(SizerItem item)
</autodoc> 
5685           <param name=
"item" type=
"SizerItem" default=
""/> 
5688       <method name=
"SetDimension" type=
"" overloaded=
"no"> 
5689         <autodoc>SetDimension(int x, int y, int width, int height)
</autodoc> 
5691           <param name=
"x" type=
"int" default=
""/> 
5692           <param name=
"y" type=
"int" default=
""/> 
5693           <param name=
"width" type=
"int" default=
""/> 
5694           <param name=
"height" type=
"int" default=
""/> 
5697       <method name=
"SetMinSize" type=
"" overloaded=
"no"> 
5698         <autodoc>SetMinSize(Size size)
</autodoc> 
5700           <param name=
"size" type=
"Size" default=
""/> 
5703       <method name=
"GetSize" type=
"Size" overloaded=
"no"> 
5704         <autodoc>GetSize() -
> Size
</autodoc> 
5706       <method name=
"GetPosition" type=
"Point" overloaded=
"no"> 
5707         <autodoc>GetPosition() -
> Point
</autodoc> 
5709       <method name=
"GetMinSize" type=
"Size" overloaded=
"no"> 
5710         <autodoc>GetMinSize() -
> Size
</autodoc> 
5712       <method name=
"RecalcSizes" type=
"" overloaded=
"no"> 
5713         <autodoc>RecalcSizes()
</autodoc> 
5715       <method name=
"CalcMin" type=
"Size" overloaded=
"no"> 
5716         <autodoc>CalcMin() -
> Size
</autodoc> 
5718       <method name=
"Layout" type=
"" overloaded=
"no"> 
5719         <autodoc>Layout()
</autodoc> 
5721       <method name=
"Fit" type=
"Size" overloaded=
"no"> 
5722         <autodoc>Fit(Window window) -
> Size
</autodoc> 
5724           <param name=
"window" type=
"Window" default=
""/> 
5727       <method name=
"FitInside" type=
"" overloaded=
"no"> 
5728         <autodoc>FitInside(Window window)
</autodoc> 
5730           <param name=
"window" type=
"Window" default=
""/> 
5733       <method name=
"SetSizeHints" type=
"" overloaded=
"no"> 
5734         <autodoc>SetSizeHints(Window window)
</autodoc> 
5736           <param name=
"window" type=
"Window" default=
""/> 
5739       <method name=
"SetVirtualSizeHints" type=
"" overloaded=
"no"> 
5740         <autodoc>SetVirtualSizeHints(Window window)
</autodoc> 
5742           <param name=
"window" type=
"Window" default=
""/> 
5745       <method name=
"Clear" type=
"" overloaded=
"no"> 
5746         <autodoc>Clear(bool delete_windows=False)
</autodoc> 
5748           <param name=
"delete_windows" type=
"bool" default=
"False"/> 
5751       <method name=
"DeleteWindows" type=
"" overloaded=
"no"> 
5752         <autodoc>DeleteWindows()
</autodoc> 
5754       <method name=
"GetChildren" type=
"PyObject" overloaded=
"no"> 
5755         <autodoc>GetChildren() -
> PyObject
</autodoc> 
5757       <method name=
"Show" type=
"" overloaded=
"no"> 
5758         <autodoc>Show(PyObject item, bool show=True)
</autodoc> 
5760           <param name=
"item" type=
"PyObject" default=
""/> 
5761           <param name=
"show" type=
"bool" default=
"True"/> 
5764       <method name=
"Hide" type=
"" overloaded=
"no"> 
5765         <autodoc>Hide(PyObject item)
</autodoc> 
5767           <param name=
"item" type=
"PyObject" default=
""/> 
5770       <method name=
"IsShown" type=
"bool" overloaded=
"no"> 
5771         <autodoc>IsShown(PyObject item) -
> bool
</autodoc> 
5773           <param name=
"item" type=
"PyObject" default=
""/> 
5776       <method name=
"ShowItems" type=
"" overloaded=
"no"> 
5777         <autodoc>ShowItems(bool show)
</autodoc> 
5779           <param name=
"show" type=
"bool" default=
""/> 
5783     <class name=
"PySizer" oldname=
"wxPySizer" module=
"core"> 
5784       <baseclass name=
"Sizer"/> 
5785       <constructor name=
"PySizer" overloaded=
"no"> 
5786         <autodoc>__init__() -
> PySizer
</autodoc> 
5788       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
5789         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
5791           <param name=
"self" type=
"PyObject" default=
""/> 
5792           <param name=
"_class" type=
"PyObject" default=
""/> 
5797 #---------------------------------------------------------------------------
 
5799     <class name=
"BoxSizer" oldname=
"wxBoxSizer" module=
"core"> 
5800       <baseclass name=
"Sizer"/> 
5801       <constructor name=
"BoxSizer" overloaded=
"no"> 
5802         <autodoc>__init__(int orient=HORIZONTAL) -
> BoxSizer
</autodoc> 
5804           <param name=
"orient" type=
"int" default=
"wxHORIZONTAL"/> 
5807       <method name=
"GetOrientation" type=
"int" overloaded=
"no"> 
5808         <autodoc>GetOrientation() -
> int
</autodoc> 
5810       <method name=
"SetOrientation" type=
"" overloaded=
"no"> 
5811         <autodoc>SetOrientation(int orient)
</autodoc> 
5813           <param name=
"orient" type=
"int" default=
""/> 
5816       <method name=
"RecalcSizes" type=
"" overloaded=
"no"> 
5817         <autodoc>RecalcSizes()
</autodoc> 
5819       <method name=
"CalcMin" type=
"Size" overloaded=
"no"> 
5820         <autodoc>CalcMin() -
> Size
</autodoc> 
5824 #---------------------------------------------------------------------------
 
5826     <class name=
"StaticBoxSizer" oldname=
"wxStaticBoxSizer" module=
"core"> 
5827       <baseclass name=
"BoxSizer"/> 
5828       <constructor name=
"StaticBoxSizer" overloaded=
"no"> 
5829         <autodoc>__init__(wxStaticBox box, int orient=HORIZONTAL) -
> StaticBoxSizer
</autodoc> 
5831           <param name=
"box" type=
"wxStaticBox" default=
""/> 
5832           <param name=
"orient" type=
"int" default=
"wxHORIZONTAL"/> 
5835       <method name=
"GetStaticBox" type=
"wxStaticBox" overloaded=
"no"> 
5836         <autodoc>GetStaticBox() -
> wxStaticBox
</autodoc> 
5838       <method name=
"RecalcSizes" type=
"" overloaded=
"no"> 
5839         <autodoc>RecalcSizes()
</autodoc> 
5841       <method name=
"CalcMin" type=
"Size" overloaded=
"no"> 
5842         <autodoc>CalcMin() -
> Size
</autodoc> 
5846 #---------------------------------------------------------------------------
 
5848     <class name=
"GridSizer" oldname=
"wxGridSizer" module=
"core"> 
5849       <baseclass name=
"Sizer"/> 
5850       <constructor name=
"GridSizer" overloaded=
"no"> 
5851         <autodoc>__init__(int rows=
1, int cols=
0, int vgap=
0, int hgap=
0) -
> GridSizer
</autodoc> 
5853           <param name=
"rows" type=
"int" default=
"1"/> 
5854           <param name=
"cols" type=
"int" default=
"0"/> 
5855           <param name=
"vgap" type=
"int" default=
"0"/> 
5856           <param name=
"hgap" type=
"int" default=
"0"/> 
5859       <method name=
"RecalcSizes" type=
"" overloaded=
"no"> 
5860         <autodoc>RecalcSizes()
</autodoc> 
5862       <method name=
"CalcMin" type=
"Size" overloaded=
"no"> 
5863         <autodoc>CalcMin() -
> Size
</autodoc> 
5865       <method name=
"SetCols" type=
"" overloaded=
"no"> 
5866         <autodoc>SetCols(int cols)
</autodoc> 
5868           <param name=
"cols" type=
"int" default=
""/> 
5871       <method name=
"SetRows" type=
"" overloaded=
"no"> 
5872         <autodoc>SetRows(int rows)
</autodoc> 
5874           <param name=
"rows" type=
"int" default=
""/> 
5877       <method name=
"SetVGap" type=
"" overloaded=
"no"> 
5878         <autodoc>SetVGap(int gap)
</autodoc> 
5880           <param name=
"gap" type=
"int" default=
""/> 
5883       <method name=
"SetHGap" type=
"" overloaded=
"no"> 
5884         <autodoc>SetHGap(int gap)
</autodoc> 
5886           <param name=
"gap" type=
"int" default=
""/> 
5889       <method name=
"GetCols" type=
"int" overloaded=
"no"> 
5890         <autodoc>GetCols() -
> int
</autodoc> 
5892       <method name=
"GetRows" type=
"int" overloaded=
"no"> 
5893         <autodoc>GetRows() -
> int
</autodoc> 
5895       <method name=
"GetVGap" type=
"int" overloaded=
"no"> 
5896         <autodoc>GetVGap() -
> int
</autodoc> 
5898       <method name=
"GetHGap" type=
"int" overloaded=
"no"> 
5899         <autodoc>GetHGap() -
> int
</autodoc> 
5903 #---------------------------------------------------------------------------
 
5905     <class name=
"FlexGridSizer" oldname=
"wxFlexGridSizer" module=
"core"> 
5906       <baseclass name=
"GridSizer"/> 
5907       <constructor name=
"FlexGridSizer" overloaded=
"no"> 
5908         <autodoc>__init__(int rows=
1, int cols=
0, int vgap=
0, int hgap=
0) -
> FlexGridSizer
</autodoc> 
5910           <param name=
"rows" type=
"int" default=
"1"/> 
5911           <param name=
"cols" type=
"int" default=
"0"/> 
5912           <param name=
"vgap" type=
"int" default=
"0"/> 
5913           <param name=
"hgap" type=
"int" default=
"0"/> 
5916       <method name=
"RecalcSizes" type=
"" overloaded=
"no"> 
5917         <autodoc>RecalcSizes()
</autodoc> 
5919       <method name=
"CalcMin" type=
"Size" overloaded=
"no"> 
5920         <autodoc>CalcMin() -
> Size
</autodoc> 
5922       <method name=
"AddGrowableRow" type=
"" overloaded=
"no"> 
5923         <autodoc>AddGrowableRow(size_t idx, int proportion=
0)
</autodoc> 
5925           <param name=
"idx" type=
"size_t" default=
""/> 
5926           <param name=
"proportion" type=
"int" default=
"0"/> 
5929       <method name=
"RemoveGrowableRow" type=
"" overloaded=
"no"> 
5930         <autodoc>RemoveGrowableRow(size_t idx)
</autodoc> 
5932           <param name=
"idx" type=
"size_t" default=
""/> 
5935       <method name=
"AddGrowableCol" type=
"" overloaded=
"no"> 
5936         <autodoc>AddGrowableCol(size_t idx, int proportion=
0)
</autodoc> 
5938           <param name=
"idx" type=
"size_t" default=
""/> 
5939           <param name=
"proportion" type=
"int" default=
"0"/> 
5942       <method name=
"RemoveGrowableCol" type=
"" overloaded=
"no"> 
5943         <autodoc>RemoveGrowableCol(size_t idx)
</autodoc> 
5945           <param name=
"idx" type=
"size_t" default=
""/> 
5948       <method name=
"SetFlexibleDirection" type=
"" overloaded=
"no"> 
5949         <autodoc>SetFlexibleDirection(int direction)
</autodoc> 
5951           <param name=
"direction" type=
"int" default=
""/> 
5954       <method name=
"GetFlexibleDirection" type=
"int" overloaded=
"no"> 
5955         <autodoc>GetFlexibleDirection() -
> int
</autodoc> 
5957       <method name=
"SetNonFlexibleGrowMode" type=
"" overloaded=
"no"> 
5958         <autodoc>SetNonFlexibleGrowMode(int mode)
</autodoc> 
5960           <param name=
"mode" type=
"wxFlexSizerGrowMode" default=
""/> 
5963       <method name=
"GetNonFlexibleGrowMode" type=
"wxFlexSizerGrowMode" overloaded=
"no"> 
5964         <autodoc>GetNonFlexibleGrowMode() -
> int
</autodoc> 
5966       <method name=
"GetRowHeights" type=
"wxArrayInt" overloaded=
"no"> 
5967         <autodoc>GetRowHeights() -
> wxArrayInt
</autodoc> 
5969       <method name=
"GetColWidths" type=
"wxArrayInt" overloaded=
"no"> 
5970         <autodoc>GetColWidths() -
> wxArrayInt
</autodoc> 
5974 #---------------------------------------------------------------------------
 
5976     <class name=
"GBPosition" oldname=
"wxGBPosition" module=
"core"> 
5977       <constructor name=
"GBPosition" overloaded=
"no"> 
5978         <autodoc>__init__(int row=
0, int col=
0) -
> GBPosition
</autodoc> 
5980           <param name=
"row" type=
"int" default=
"0"/> 
5981           <param name=
"col" type=
"int" default=
"0"/> 
5984       <method name=
"GetRow" type=
"int" overloaded=
"no"> 
5985         <autodoc>GetRow() -
> int
</autodoc> 
5987       <method name=
"GetCol" type=
"int" overloaded=
"no"> 
5988         <autodoc>GetCol() -
> int
</autodoc> 
5990       <method name=
"SetRow" type=
"" overloaded=
"no"> 
5991         <autodoc>SetRow(int row)
</autodoc> 
5993           <param name=
"row" type=
"int" default=
""/> 
5996       <method name=
"SetCol" type=
"" overloaded=
"no"> 
5997         <autodoc>SetCol(int col)
</autodoc> 
5999           <param name=
"col" type=
"int" default=
""/> 
6002       <method name=
"__eq__" type=
"bool" overloaded=
"no"> 
6003         <autodoc>__eq__(GBPosition p) -
> bool
</autodoc> 
6005           <param name=
"p" type=
"GBPosition" default=
""/> 
6008       <method name=
"__ne__" type=
"bool" overloaded=
"no"> 
6009         <autodoc>__ne__(GBPosition p) -
> bool
</autodoc> 
6011           <param name=
"p" type=
"GBPosition" default=
""/> 
6014       <method name=
"Set" type=
"" overloaded=
"no"> 
6015         <autodoc>Set(int row=
0, int col=
0)
</autodoc> 
6017           <param name=
"row" type=
"int" default=
"0"/> 
6018           <param name=
"col" type=
"int" default=
"0"/> 
6021       <method name=
"Get" type=
"PyObject" overloaded=
"no"> 
6022         <autodoc>Get() -
> PyObject
</autodoc> 
6025     <class name=
"GBSpan" oldname=
"wxGBSpan" module=
"core"> 
6026       <constructor name=
"GBSpan" overloaded=
"no"> 
6027         <autodoc>__init__(int rowspan=
1, int colspan=
1) -
> GBSpan
</autodoc> 
6029           <param name=
"rowspan" type=
"int" default=
"1"/> 
6030           <param name=
"colspan" type=
"int" default=
"1"/> 
6033       <method name=
"GetRowspan" type=
"int" overloaded=
"no"> 
6034         <autodoc>GetRowspan() -
> int
</autodoc> 
6036       <method name=
"GetColspan" type=
"int" overloaded=
"no"> 
6037         <autodoc>GetColspan() -
> int
</autodoc> 
6039       <method name=
"SetRowspan" type=
"" overloaded=
"no"> 
6040         <autodoc>SetRowspan(int rowspan)
</autodoc> 
6042           <param name=
"rowspan" type=
"int" default=
""/> 
6045       <method name=
"SetColspan" type=
"" overloaded=
"no"> 
6046         <autodoc>SetColspan(int colspan)
</autodoc> 
6048           <param name=
"colspan" type=
"int" default=
""/> 
6051       <method name=
"__eq__" type=
"bool" overloaded=
"no"> 
6052         <autodoc>__eq__(GBSpan o) -
> bool
</autodoc> 
6054           <param name=
"o" type=
"GBSpan" default=
""/> 
6057       <method name=
"__ne__" type=
"bool" overloaded=
"no"> 
6058         <autodoc>__ne__(GBSpan o) -
> bool
</autodoc> 
6060           <param name=
"o" type=
"GBSpan" default=
""/> 
6063       <method name=
"Set" type=
"" overloaded=
"no"> 
6064         <autodoc>Set(int rowspan=
1, int colspan=
1)
</autodoc> 
6066           <param name=
"rowspan" type=
"int" default=
"1"/> 
6067           <param name=
"colspan" type=
"int" default=
"1"/> 
6070       <method name=
"Get" type=
"PyObject" overloaded=
"no"> 
6071         <autodoc>Get() -
> PyObject
</autodoc> 
6074     <class name=
"GBSizerItem" oldname=
"wxGBSizerItem" module=
"core"> 
6075       <baseclass name=
"SizerItem"/> 
6076       <constructor name=
"GBSizerItem" overloaded=
"no"> 
6077         <autodoc>__init__() -
> GBSizerItem
</autodoc> 
6079       <constructor name=
"GBSizerItemWindow" overloaded=
"no"> 
6080         <autodoc>GBSizerItemWindow(Window window, GBPosition pos, GBSpan span, int flag, 
 
6081     int border, Object userData) -
> GBSizerItem
</autodoc> 
6083           <param name=
"window" type=
"Window" default=
""/> 
6084           <param name=
"pos" type=
"GBPosition" default=
""/> 
6085           <param name=
"span" type=
"GBSpan" default=
""/> 
6086           <param name=
"flag" type=
"int" default=
""/> 
6087           <param name=
"border" type=
"int" default=
""/> 
6088           <param name=
"userData" type=
"Object" default=
""/> 
6091       <constructor name=
"GBSizerItemSizer" overloaded=
"no"> 
6092         <autodoc>GBSizerItemSizer(Sizer sizer, GBPosition pos, GBSpan span, int flag, 
 
6093     int border, Object userData) -
> GBSizerItem
</autodoc> 
6095           <param name=
"sizer" type=
"Sizer" default=
""/> 
6096           <param name=
"pos" type=
"GBPosition" default=
""/> 
6097           <param name=
"span" type=
"GBSpan" default=
""/> 
6098           <param name=
"flag" type=
"int" default=
""/> 
6099           <param name=
"border" type=
"int" default=
""/> 
6100           <param name=
"userData" type=
"Object" default=
""/> 
6103       <constructor name=
"GBSizerItemSpacer" overloaded=
"no"> 
6104         <autodoc>GBSizerItemSpacer(int width, int height, GBPosition pos, GBSpan span, 
 
6105     int flag, int border, Object userData) -
> GBSizerItem
</autodoc> 
6107           <param name=
"width" type=
"int" default=
""/> 
6108           <param name=
"height" type=
"int" default=
""/> 
6109           <param name=
"pos" type=
"GBPosition" default=
""/> 
6110           <param name=
"span" type=
"GBSpan" default=
""/> 
6111           <param name=
"flag" type=
"int" default=
""/> 
6112           <param name=
"border" type=
"int" default=
""/> 
6113           <param name=
"userData" type=
"Object" default=
""/> 
6116       <method name=
"GetPos" type=
"GBPosition" overloaded=
"no"> 
6117         <autodoc>GetPos() -
> GBPosition
</autodoc> 
6119       <method name=
"GetSpan" type=
"GBSpan" overloaded=
"no"> 
6120         <autodoc>GetSpan() -
> GBSpan
</autodoc> 
6122       <method name=
"SetPos" type=
"bool" overloaded=
"no"> 
6123         <autodoc>SetPos(GBPosition pos) -
> bool
</autodoc> 
6125           <param name=
"pos" type=
"GBPosition" default=
""/> 
6128       <method name=
"SetSpan" type=
"bool" overloaded=
"no"> 
6129         <autodoc>SetSpan(GBSpan span) -
> bool
</autodoc> 
6131           <param name=
"span" type=
"GBSpan" default=
""/> 
6134       <method name=
"Intersects" type=
"bool" overloaded=
"yes"> 
6136           <param name=
"other" type=
"GBSizerItem" default=
""/> 
6139       <method name=
"Intersects" type=
"bool" overloaded=
"yes"> 
6140         <autodoc>Intersects(GBSizerItem other) -
> bool
 
6141 Intersects(GBPosition pos, GBSpan span) -
> bool
</autodoc> 
6143           <param name=
"pos" type=
"GBPosition" default=
""/> 
6144           <param name=
"span" type=
"GBSpan" default=
""/> 
6147       <method name=
"GetEndPos" type=
"" overloaded=
"no"> 
6148         <autodoc>GetEndPos(int row, int col)
</autodoc> 
6150           <param name=
"row" type=
"int" default=
""/> 
6151           <param name=
"col" type=
"int" default=
""/> 
6154       <method name=
"GetGBSizer" type=
"wxGridBagSizer" overloaded=
"no"> 
6155         <autodoc>GetGBSizer() -
> GridBagSizer
</autodoc> 
6157       <method name=
"SetGBSizer" type=
"" overloaded=
"no"> 
6158         <autodoc>SetGBSizer(GridBagSizer sizer)
</autodoc> 
6160           <param name=
"sizer" type=
"wxGridBagSizer" default=
""/> 
6164     <class name=
"GridBagSizer" oldname=
"wxGridBagSizer" module=
"core"> 
6165       <baseclass name=
"FlexGridSizer"/> 
6166       <constructor name=
"GridBagSizer" overloaded=
"no"> 
6167         <autodoc>__init__(int vgap=
0, int hgap=
0) -
> GridBagSizer
</autodoc> 
6169           <param name=
"vgap" type=
"int" default=
"0"/> 
6170           <param name=
"hgap" type=
"int" default=
"0"/> 
6173       <method name=
"Add" type=
"bool" overloaded=
"no"> 
6174         <autodoc>Add(PyObject item, GBPosition pos, GBSpan span=DefaultSpan, 
 
6175     int flag=
0, int border=
0, PyObject userData=None) -
> bool
</autodoc> 
6177           <param name=
"item" type=
"PyObject" default=
""/> 
6178           <param name=
"pos" type=
"GBPosition" default=
""/> 
6179           <param name=
"span" type=
"GBSpan" default=
"wxDefaultSpan"/> 
6180           <param name=
"flag" type=
"int" default=
"0"/> 
6181           <param name=
"border" type=
"int" default=
"0"/> 
6182           <param name=
"userData" type=
"PyObject" default=
"NULL"/> 
6185       <method name=
"AddItem" type=
"bool" overloaded=
"no"> 
6186         <autodoc>AddItem(GBSizerItem item) -
> bool
</autodoc> 
6188           <param name=
"item" type=
"GBSizerItem" default=
""/> 
6191       <method name=
"GetEmptyCellSize" type=
"Size" overloaded=
"no"> 
6192         <autodoc>GetEmptyCellSize() -
> Size
</autodoc> 
6194       <method name=
"SetEmptyCellSize" type=
"" overloaded=
"no"> 
6195         <autodoc>SetEmptyCellSize(Size sz)
</autodoc> 
6197           <param name=
"sz" type=
"Size" default=
""/> 
6200       <method name=
"GetItemPosition" type=
"GBPosition" overloaded=
"yes"> 
6202           <param name=
"window" type=
"Window" default=
""/> 
6205       <method name=
"GetItemPosition" type=
"GBPosition" overloaded=
"yes"> 
6207           <param name=
"sizer" type=
"Sizer" default=
""/> 
6210       <method name=
"GetItemPosition" type=
"GBPosition" overloaded=
"yes"> 
6211         <autodoc>GetItemPosition(Window window) -
> GBPosition
 
6212 GetItemPosition(Sizer sizer) -
> GBPosition
 
6213 GetItemPosition(size_t index) -
> GBPosition
</autodoc> 
6215           <param name=
"index" type=
"size_t" default=
""/> 
6218       <method name=
"SetItemPosition" type=
"bool" overloaded=
"yes"> 
6220           <param name=
"window" type=
"Window" default=
""/> 
6221           <param name=
"pos" type=
"GBPosition" default=
""/> 
6224       <method name=
"SetItemPosition" type=
"bool" overloaded=
"yes"> 
6226           <param name=
"sizer" type=
"Sizer" default=
""/> 
6227           <param name=
"pos" type=
"GBPosition" default=
""/> 
6230       <method name=
"SetItemPosition" type=
"bool" overloaded=
"yes"> 
6231         <autodoc>SetItemPosition(Window window, GBPosition pos) -
> bool
 
6232 SetItemPosition(Sizer sizer, GBPosition pos) -
> bool
 
6233 SetItemPosition(size_t index, GBPosition pos) -
> bool
</autodoc> 
6235           <param name=
"index" type=
"size_t" default=
""/> 
6236           <param name=
"pos" type=
"GBPosition" default=
""/> 
6239       <method name=
"GetItemSpan" type=
"GBSpan" overloaded=
"yes"> 
6241           <param name=
"window" type=
"Window" default=
""/> 
6244       <method name=
"GetItemSpan" type=
"GBSpan" overloaded=
"yes"> 
6246           <param name=
"sizer" type=
"Sizer" default=
""/> 
6249       <method name=
"GetItemSpan" type=
"GBSpan" overloaded=
"yes"> 
6250         <autodoc>GetItemSpan(Window window) -
> GBSpan
 
6251 GetItemSpan(Sizer sizer) -
> GBSpan
 
6252 GetItemSpan(size_t index) -
> GBSpan
</autodoc> 
6254           <param name=
"index" type=
"size_t" default=
""/> 
6257       <method name=
"SetItemSpan" type=
"bool" overloaded=
"yes"> 
6259           <param name=
"window" type=
"Window" default=
""/> 
6260           <param name=
"span" type=
"GBSpan" default=
""/> 
6263       <method name=
"SetItemSpan" type=
"bool" overloaded=
"yes"> 
6265           <param name=
"sizer" type=
"Sizer" default=
""/> 
6266           <param name=
"span" type=
"GBSpan" default=
""/> 
6269       <method name=
"SetItemSpan" type=
"bool" overloaded=
"yes"> 
6270         <autodoc>SetItemSpan(Window window, GBSpan span) -
> bool
 
6271 SetItemSpan(Sizer sizer, GBSpan span) -
> bool
 
6272 SetItemSpan(size_t index, GBSpan span) -
> bool
</autodoc> 
6274           <param name=
"index" type=
"size_t" default=
""/> 
6275           <param name=
"span" type=
"GBSpan" default=
""/> 
6278       <method name=
"FindItem" type=
"GBSizerItem" overloaded=
"yes"> 
6280           <param name=
"window" type=
"Window" default=
""/> 
6283       <method name=
"FindItem" type=
"GBSizerItem" overloaded=
"yes"> 
6284         <autodoc>FindItem(Window window) -
> GBSizerItem
 
6285 FindItem(Sizer sizer) -
> GBSizerItem
</autodoc> 
6287           <param name=
"sizer" type=
"Sizer" default=
""/> 
6290       <method name=
"FindItemAtPosition" type=
"GBSizerItem" overloaded=
"no"> 
6291         <autodoc>FindItemAtPosition(GBPosition pos) -
> GBSizerItem
</autodoc> 
6293           <param name=
"pos" type=
"GBPosition" default=
""/> 
6296       <method name=
"FindItemAtPoint" type=
"GBSizerItem" overloaded=
"no"> 
6297         <autodoc>FindItemAtPoint(Point pt) -
> GBSizerItem
</autodoc> 
6299           <param name=
"pt" type=
"Point" default=
""/> 
6302       <method name=
"FindItemWithData" type=
"GBSizerItem" overloaded=
"no"> 
6303         <autodoc>FindItemWithData(Object userData) -
> GBSizerItem
</autodoc> 
6305           <param name=
"userData" type=
"Object" default=
""/> 
6308       <method name=
"RecalcSizes" type=
"" overloaded=
"no"> 
6309         <autodoc>RecalcSizes()
</autodoc> 
6311       <method name=
"CalcMin" type=
"Size" overloaded=
"no"> 
6312         <autodoc>CalcMin() -
> Size
</autodoc> 
6314       <method name=
"CheckForIntersection" type=
"bool" overloaded=
"yes"> 
6316           <param name=
"item" type=
"GBSizerItem" default=
""/> 
6317           <param name=
"excludeItem" type=
"GBSizerItem" default=
"NULL"/> 
6320       <method name=
"CheckForIntersection" type=
"bool" overloaded=
"yes"> 
6321         <autodoc>CheckForIntersection(GBSizerItem item, GBSizerItem excludeItem=None) -
> bool
 
6322 CheckForIntersection(GBPosition pos, GBSpan span, GBSizerItem excludeItem=None) -
> bool
</autodoc> 
6324           <param name=
"pos" type=
"GBPosition" default=
""/> 
6325           <param name=
"span" type=
"GBSpan" default=
""/> 
6326           <param name=
"excludeItem" type=
"GBSizerItem" default=
"NULL"/> 
6331 #---------------------------------------------------------------------------
 
6333     <class name=
"IndividualLayoutConstraint" oldname=
"wxIndividualLayoutConstraint" module=
"core"> 
6334       <baseclass name=
"Object"/> 
6335       <method name=
"Set" type=
"" overloaded=
"no"> 
6336         <autodoc>Set(int rel, Window otherW, int otherE, int val=
0, int marg=wxLAYOUT_DEFAULT_MARGIN)
</autodoc> 
6338           <param name=
"rel" type=
"wxRelationship" default=
""/> 
6339           <param name=
"otherW" type=
"Window" default=
""/> 
6340           <param name=
"otherE" type=
"wxEdge" default=
""/> 
6341           <param name=
"val" type=
"int" default=
"0"/> 
6342           <param name=
"marg" type=
"int" default=
"wxLAYOUT_DEFAULT_MARGIN"/> 
6345       <method name=
"LeftOf" type=
"" overloaded=
"no"> 
6346         <autodoc>LeftOf(Window sibling, int marg=
0)
</autodoc> 
6348           <param name=
"sibling" type=
"Window" default=
""/> 
6349           <param name=
"marg" type=
"int" default=
"0"/> 
6352       <method name=
"RightOf" type=
"" overloaded=
"no"> 
6353         <autodoc>RightOf(Window sibling, int marg=
0)
</autodoc> 
6355           <param name=
"sibling" type=
"Window" default=
""/> 
6356           <param name=
"marg" type=
"int" default=
"0"/> 
6359       <method name=
"Above" type=
"" overloaded=
"no"> 
6360         <autodoc>Above(Window sibling, int marg=
0)
</autodoc> 
6362           <param name=
"sibling" type=
"Window" default=
""/> 
6363           <param name=
"marg" type=
"int" default=
"0"/> 
6366       <method name=
"Below" type=
"" overloaded=
"no"> 
6367         <autodoc>Below(Window sibling, int marg=
0)
</autodoc> 
6369           <param name=
"sibling" type=
"Window" default=
""/> 
6370           <param name=
"marg" type=
"int" default=
"0"/> 
6373       <method name=
"SameAs" type=
"" overloaded=
"no"> 
6374         <autodoc>SameAs(Window otherW, int edge, int marg=
0)
</autodoc> 
6376           <param name=
"otherW" type=
"Window" default=
""/> 
6377           <param name=
"edge" type=
"wxEdge" default=
""/> 
6378           <param name=
"marg" type=
"int" default=
"0"/> 
6381       <method name=
"PercentOf" type=
"" overloaded=
"no"> 
6382         <autodoc>PercentOf(Window otherW, int wh, int per)
</autodoc> 
6384           <param name=
"otherW" type=
"Window" default=
""/> 
6385           <param name=
"wh" type=
"wxEdge" default=
""/> 
6386           <param name=
"per" type=
"int" default=
""/> 
6389       <method name=
"Absolute" type=
"" overloaded=
"no"> 
6390         <autodoc>Absolute(int val)
</autodoc> 
6392           <param name=
"val" type=
"int" default=
""/> 
6395       <method name=
"Unconstrained" type=
"" overloaded=
"no"> 
6396         <autodoc>Unconstrained()
</autodoc> 
6398       <method name=
"AsIs" type=
"" overloaded=
"no"> 
6399         <autodoc>AsIs()
</autodoc> 
6401       <method name=
"GetOtherWindow" type=
"Window" overloaded=
"no"> 
6402         <autodoc>GetOtherWindow() -
> Window
</autodoc> 
6404       <method name=
"GetMyEdge" type=
"wxEdge" overloaded=
"no"> 
6405         <autodoc>GetMyEdge() -
> int
</autodoc> 
6407       <method name=
"SetEdge" type=
"" overloaded=
"no"> 
6408         <autodoc>SetEdge(int which)
</autodoc> 
6410           <param name=
"which" type=
"wxEdge" default=
""/> 
6413       <method name=
"SetValue" type=
"" overloaded=
"no"> 
6414         <autodoc>SetValue(int v)
</autodoc> 
6416           <param name=
"v" type=
"int" default=
""/> 
6419       <method name=
"GetMargin" type=
"int" overloaded=
"no"> 
6420         <autodoc>GetMargin() -
> int
</autodoc> 
6422       <method name=
"SetMargin" type=
"" overloaded=
"no"> 
6423         <autodoc>SetMargin(int m)
</autodoc> 
6425           <param name=
"m" type=
"int" default=
""/> 
6428       <method name=
"GetValue" type=
"int" overloaded=
"no"> 
6429         <autodoc>GetValue() -
> int
</autodoc> 
6431       <method name=
"GetPercent" type=
"int" overloaded=
"no"> 
6432         <autodoc>GetPercent() -
> int
</autodoc> 
6434       <method name=
"GetOtherEdge" type=
"int" overloaded=
"no"> 
6435         <autodoc>GetOtherEdge() -
> int
</autodoc> 
6437       <method name=
"GetDone" type=
"bool" overloaded=
"no"> 
6438         <autodoc>GetDone() -
> bool
</autodoc> 
6440       <method name=
"SetDone" type=
"" overloaded=
"no"> 
6441         <autodoc>SetDone(bool d)
</autodoc> 
6443           <param name=
"d" type=
"bool" default=
""/> 
6446       <method name=
"GetRelationship" type=
"wxRelationship" overloaded=
"no"> 
6447         <autodoc>GetRelationship() -
> int
</autodoc> 
6449       <method name=
"SetRelationship" type=
"" overloaded=
"no"> 
6450         <autodoc>SetRelationship(int r)
</autodoc> 
6452           <param name=
"r" type=
"wxRelationship" default=
""/> 
6455       <method name=
"ResetIfWin" type=
"bool" overloaded=
"no"> 
6456         <autodoc>ResetIfWin(Window otherW) -
> bool
</autodoc> 
6458           <param name=
"otherW" type=
"Window" default=
""/> 
6461       <method name=
"SatisfyConstraint" type=
"bool" overloaded=
"no"> 
6462         <autodoc>SatisfyConstraint(LayoutConstraints constraints, Window win) -
> bool
</autodoc> 
6464           <param name=
"constraints" type=
"wxLayoutConstraints" default=
""/> 
6465           <param name=
"win" type=
"Window" default=
""/> 
6468       <method name=
"GetEdge" type=
"int" overloaded=
"no"> 
6469         <autodoc>GetEdge(int which, Window thisWin, Window other) -
> int
</autodoc> 
6471           <param name=
"which" type=
"wxEdge" default=
""/> 
6472           <param name=
"thisWin" type=
"Window" default=
""/> 
6473           <param name=
"other" type=
"Window" default=
""/> 
6477     <class name=
"LayoutConstraints" oldname=
"wxLayoutConstraints" module=
"core"> 
6478       <baseclass name=
"Object"/> 
6479       <constructor name=
"LayoutConstraints" overloaded=
"no"> 
6480         <autodoc>__init__() -
> LayoutConstraints
</autodoc> 
6482       <property name=
"left" type=
"IndividualLayoutConstraint" readonly=
"yes"/> 
6483       <property name=
"top" type=
"IndividualLayoutConstraint" readonly=
"yes"/> 
6484       <property name=
"right" type=
"IndividualLayoutConstraint" readonly=
"yes"/> 
6485       <property name=
"bottom" type=
"IndividualLayoutConstraint" readonly=
"yes"/> 
6486       <property name=
"width" type=
"IndividualLayoutConstraint" readonly=
"yes"/> 
6487       <property name=
"height" type=
"IndividualLayoutConstraint" readonly=
"yes"/> 
6488       <property name=
"centreX" type=
"IndividualLayoutConstraint" readonly=
"yes"/> 
6489       <property name=
"centreY" type=
"IndividualLayoutConstraint" readonly=
"yes"/> 
6490       <method name=
"SatisfyConstraints" type=
"bool" overloaded=
"no"> 
6491         <autodoc>SatisfyConstraints(Window win) -
> (areSatisfied, noChanges)
</autodoc> 
6493           <param name=
"win" type=
"Window" default=
""/> 
6494           <param name=
"OUTPUT" type=
"int" default=
""/> 
6497       <method name=
"AreSatisfied" type=
"bool" overloaded=
"no"> 
6498         <autodoc>AreSatisfied() -
> bool
</autodoc> 
6501     <pythoncode>#----------------------------------------------------------------------------
 
6503 # Use Python's bool constants if available, make some if not
 
6507     __builtins__.True = 
1==
1 
6508     __builtins__.False = 
1==
0 
6512 # workarounds for bad wxRTTI names
 
6513 __wxPyPtrTypeMap['wxGauge95']    = 'wxGauge'
 
6514 __wxPyPtrTypeMap['wxSlider95']   = 'wxSlider'
 
6515 __wxPyPtrTypeMap['wxStatusBar95']   = 'wxStatusBar'
 
6518 #----------------------------------------------------------------------------
 
6519 # Load version numbers from __version__...  Ensure that major and minor
 
6520 # versions are the same for both wxPython and wxWindows.
 
6522 from __version__ import *
 
6523 __version__ = VERSION_STRING
 
6525 assert MAJOR_VERSION == _core.MAJOR_VERSION, "wxPython/wxWindows version mismatch"
 
6526 assert MINOR_VERSION == _core.MINOR_VERSION, "wxPython/wxWindows version mismatch"
 
6527 if RELEASE_VERSION != _core.RELEASE_VERSION:
 
6529     warnings.warn("wxPython/wxWindows release number mismatch")
 
6531 #----------------------------------------------------------------------------
 
6533 class PyDeadObjectError(AttributeError):
 
6536 class _wxPyDeadObject(object):
 
6538     Instances of wx objects that are OOR capable will have their __class__
 
6539     changed to this class when the C++ object is deleted.  This should help
 
6540     prevent crashes due to referencing a bogus C++ pointer.
 
6542     reprStr = "wxPython wrapper for DELETED %s object! (The C++ object no longer exists.)"
 
6543     attrStr = "The C++ part of the %s object has been deleted, attribute access no longer allowed."
 
6546         if not hasattr(self, "_name"):
 
6547             self._name = "[unknown]"
 
6548         return self.reprStr % self._name
 
6550     def __getattr__(self, *args):
 
6551         if not hasattr(self, "_name"):
 
6552             self._name = "[unknown]"
 
6553         raise PyDeadObjectError(self.attrStr % self._name)
 
6555     def __nonzero__(self):
 
6560 class PyUnbornObjectError(AttributeError):
 
6563 class _wxPyUnbornObject(object):
 
6565     Some stock objects are created when the wx.core module is
 
6566     imported, but their C++ instance is not created until the wx.App
 
6567     object is created and initialized.  These object instances will
 
6568     temporarily have their __class__ changed to this class so an
 
6569     exception will be raised if they are used before the C++ instance
 
6573     reprStr = "wxPython wrapper for UNBORN object! (The C++ object is not initialized yet.)"
 
6574     attrStr = "The C++ part of this object has not been initialized, attribute access not allowed."
 
6577         #if not hasattr(self, "_name"):
 
6578         #    self._name = "[unknown]"
 
6579         return self.reprStr #% self._name
 
6581     def __getattr__(self, *args):
 
6582         #if not hasattr(self, "_name"):
 
6583         #    self._name = "[unknown]"
 
6584         raise PyUnbornObjectError(self.attrStr) # % self._name )
 
6586     def __nonzero__(self):
 
6590 #----------------------------------------------------------------------------
 
6591 _wxPyCallAfterId = None
 
6593 def CallAfter(callable, *args, **kw):
 
6595     Call the specified function after the current and pending event
 
6596     handlers have been completed.  This is also good for making GUI
 
6597     method calls from non-GUI threads.
 
6600     assert app, 'No wxApp created yet'
 
6602     global _wxPyCallAfterId
 
6603     if _wxPyCallAfterId is None:
 
6604         _wxPyCallAfterId = wx.NewEventType()
 
6605         app.Connect(-
1, -
1, _wxPyCallAfterId,
 
6606               lambda event: event.callable(*event.args, **event.kw) )
 
6608     evt.SetEventType(_wxPyCallAfterId)
 
6609     evt.callable = callable
 
6612     wx.PostEvent(app, evt)
 
6615 #----------------------------------------------------------------------------
 
6620     A convenience class for wxTimer, that calls the given callable
 
6621     object once after the given amount of milliseconds, passing any
 
6622     positional or keyword args.  The return value of the callable is
 
6623     availbale after it has been run with the GetResult method.
 
6625     If you don't need to get the return value or restart the timer
 
6626     then there is no need to hold a reference to this object.  It will
 
6627     hold a reference to itself while the timer is running (the timer
 
6628     has a reference to self.Notify) but the cycle will be broken when
 
6629     the timer completes, automatically cleaning up the wx.FutureCall
 
6632     def __init__(self, millis, callable, *args, **kwargs):
 
6633         self.millis = millis
 
6634         self.callable = callable
 
6635         self.SetArgs(*args, **kwargs)
 
6646     def Start(self, millis=None, *args, **kwargs):
 
6651         if millis is not None:
 
6652             self.millis = millis
 
6654             self.SetArgs(*args, **kwargs)
 
6656         self.timer = wx.PyTimer(self.Notify)
 
6657         self.timer.Start(self.millis, wx.TIMER_ONE_SHOT)
 
6663         Stop and destroy the timer.
 
6665         if self.timer is not None:
 
6670     def GetInterval(self):
 
6671         if self.timer is not None:
 
6672             return self.timer.GetInterval()
 
6677     def IsRunning(self):
 
6678         return self.timer is not None and self.timer.IsRunning()
 
6681     def SetArgs(self, *args, **kwargs):
 
6683         (Re)set the args passed to the callable object.  This is
 
6684         useful in conjunction with Restart if you want to schedule a
 
6685         new call to the same callable object but with different
 
6689         self.kwargs = kwargs
 
6695     def GetResult(self):
 
6700         The timer has expired so call the callable.
 
6702         if self.callable and getattr(self.callable, 'im_self', True):
 
6704             self.result = self.callable(*self.args, **self.kwargs)
 
6706         wx.CallAfter(self.Stop)
 
6709 #----------------------------------------------------------------------------
 
6710 #----------------------------------------------------------------------------
 
6712 # Import other modules in this package that should show up in the
 
6713 # "core" wx namespace
 
6715 from windows import *
 
6716 from controls import *
 
6720 # Fixup the stock objects since they can't be used yet.  (They will be
 
6721 # restored in wx.PyApp.OnInit.)
 
6722 _core._wxPyFixStockObjects()
 
6724 #----------------------------------------------------------------------------
 
6725 #----------------------------------------------------------------------------
 
6729     <import name=
"core"/> 
6730     <pythoncode> wx = core 
</pythoncode> 
6732 #---------------------------------------------------------------------------
 
6734     <class name=
"GDIObject" oldname=
"wxGDIObject" module=
"gdi"> 
6735       <baseclass name=
"Object"/> 
6736       <constructor name=
"GDIObject" overloaded=
"no"> 
6737         <autodoc>__init__() -
> GDIObject
</autodoc> 
6739       <destructor name=
"~wxGDIObject" overloaded=
"no"> 
6740         <autodoc>__del__()
</autodoc> 
6742       <method name=
"GetVisible" type=
"bool" overloaded=
"no"> 
6743         <autodoc>GetVisible() -
> bool
</autodoc> 
6745       <method name=
"SetVisible" type=
"" overloaded=
"no"> 
6746         <autodoc>SetVisible(bool visible)
</autodoc> 
6748           <param name=
"visible" type=
"bool" default=
""/> 
6751       <method name=
"IsNull" type=
"bool" overloaded=
"no"> 
6752         <autodoc>IsNull() -
> bool
</autodoc> 
6756 #---------------------------------------------------------------------------
 
6758     <class name=
"Colour" oldname=
"wxColour" module=
"gdi"> 
6759       <baseclass name=
"Object"/> 
6760       <constructor name=
"Colour" overloaded=
"no"> 
6761         <autodoc>__init__(unsigned char red=
0, unsigned char green=
0, unsigned char blue=
0) -
> Colour
</autodoc> 
6763           <param name=
"red" type=
"unsigned char" default=
"0"/> 
6764           <param name=
"green" type=
"unsigned char" default=
"0"/> 
6765           <param name=
"blue" type=
"unsigned char" default=
"0"/> 
6768       <constructor name=
"NamedColour" overloaded=
"no"> 
6769         <autodoc>NamedColour(String colorName) -
> Colour
</autodoc> 
6771           <param name=
"colorName" type=
"String" default=
""/> 
6774       <constructor name=
"ColourRGB" overloaded=
"no"> 
6775         <autodoc>ColourRGB(unsigned long colRGB) -
> Colour
</autodoc> 
6777           <param name=
"colRGB" type=
"unsigned long" default=
""/> 
6780       <destructor name=
"~wxColour" overloaded=
"no"> 
6781         <autodoc>__del__()
</autodoc> 
6783       <method name=
"Red" type=
"unsigned char" overloaded=
"no"> 
6784         <autodoc>Red() -
> unsigned char
</autodoc> 
6786       <method name=
"Green" type=
"unsigned char" overloaded=
"no"> 
6787         <autodoc>Green() -
> unsigned char
</autodoc> 
6789       <method name=
"Blue" type=
"unsigned char" overloaded=
"no"> 
6790         <autodoc>Blue() -
> unsigned char
</autodoc> 
6792       <method name=
"Ok" type=
"bool" overloaded=
"no"> 
6793         <autodoc>Ok() -
> bool
</autodoc> 
6795       <method name=
"Set" type=
"" overloaded=
"no"> 
6796         <autodoc>Set(unsigned char red, unsigned char green, unsigned char blue)
</autodoc> 
6798           <param name=
"red" type=
"unsigned char" default=
""/> 
6799           <param name=
"green" type=
"unsigned char" default=
""/> 
6800           <param name=
"blue" type=
"unsigned char" default=
""/> 
6803       <method name=
"SetRGB" type=
"" overloaded=
"no"> 
6804         <autodoc>SetRGB(unsigned long colRGB)
</autodoc> 
6806           <param name=
"colRGB" type=
"unsigned long" default=
""/> 
6809       <method name=
"__eq__" type=
"bool" overloaded=
"no"> 
6810         <autodoc>__eq__(Colour colour) -
> bool
</autodoc> 
6812           <param name=
"colour" type=
"Colour" default=
""/> 
6815       <method name=
"__ne__" type=
"bool" overloaded=
"no"> 
6816         <autodoc>__ne__(Colour colour) -
> bool
</autodoc> 
6818           <param name=
"colour" type=
"Colour" default=
""/> 
6821       <method name=
"InitFromName" type=
"" overloaded=
"no"> 
6822         <autodoc>InitFromName(String colourName)
</autodoc> 
6824           <param name=
"colourName" type=
"String" default=
""/> 
6827       <method name=
"Get" type=
"PyObject" overloaded=
"no"> 
6828         <autodoc>Get() -
> PyObject
</autodoc> 
6831     <class name=
"Palette" oldname=
"wxPalette" module=
"gdi"> 
6832       <baseclass name=
"GDIObject"/> 
6833       <constructor name=
"Palette" overloaded=
"no"> 
6834         <autodoc>__init__(int n, unsigned char red, unsigned char green, unsigned char blue) -
> Palette
</autodoc> 
6836           <param name=
"n" type=
"int" default=
""/> 
6837           <param name=
"red" type=
"unsigned char" default=
""/> 
6838           <param name=
"green" type=
"unsigned char" default=
""/> 
6839           <param name=
"blue" type=
"unsigned char" default=
""/> 
6842       <destructor name=
"~wxPalette" overloaded=
"no"> 
6843         <autodoc>__del__()
</autodoc> 
6845       <method name=
"GetPixel" type=
"int" overloaded=
"no"> 
6846         <autodoc>GetPixel(byte red, byte green, byte blue) -
> int
</autodoc> 
6848           <param name=
"red" type=
"byte" default=
""/> 
6849           <param name=
"green" type=
"byte" default=
""/> 
6850           <param name=
"blue" type=
"byte" default=
""/> 
6853       <method name=
"GetRGB" type=
"bool" overloaded=
"no"> 
6854         <autodoc>GetRGB(int pixel) -
> (R,G,B)
</autodoc> 
6856           <param name=
"pixel" type=
"int" default=
""/> 
6857           <param name=
"OUTPUT" type=
"byte" default=
""/> 
6858           <param name=
"OUTPUT" type=
"byte" default=
""/> 
6859           <param name=
"OUTPUT" type=
"byte" default=
""/> 
6862       <method name=
"Ok" type=
"bool" overloaded=
"no"> 
6863         <autodoc>Ok() -
> bool
</autodoc> 
6867 #---------------------------------------------------------------------------
 
6869     <class name=
"Pen" oldname=
"wxPen" module=
"gdi"> 
6870       <baseclass name=
"GDIObject"/> 
6871       <constructor name=
"Pen" overloaded=
"no"> 
6872         <autodoc>__init__(Colour colour, int width=
1, int style=SOLID) -
> Pen
</autodoc> 
6874           <param name=
"colour" type=
"Colour" default=
""/> 
6875           <param name=
"width" type=
"int" default=
"1"/> 
6876           <param name=
"style" type=
"int" default=
"wxSOLID"/> 
6879       <destructor name=
"~wxPen" overloaded=
"no"> 
6880         <autodoc>__del__()
</autodoc> 
6882       <method name=
"GetCap" type=
"int" overloaded=
"no"> 
6883         <autodoc>GetCap() -
> int
</autodoc> 
6885       <method name=
"GetColour" type=
"Colour" overloaded=
"no"> 
6886         <autodoc>GetColour() -
> Colour
</autodoc> 
6888       <method name=
"GetJoin" type=
"int" overloaded=
"no"> 
6889         <autodoc>GetJoin() -
> int
</autodoc> 
6891       <method name=
"GetStyle" type=
"int" overloaded=
"no"> 
6892         <autodoc>GetStyle() -
> int
</autodoc> 
6894       <method name=
"GetWidth" type=
"int" overloaded=
"no"> 
6895         <autodoc>GetWidth() -
> int
</autodoc> 
6897       <method name=
"Ok" type=
"bool" overloaded=
"no"> 
6898         <autodoc>Ok() -
> bool
</autodoc> 
6900       <method name=
"SetCap" type=
"" overloaded=
"no"> 
6901         <autodoc>SetCap(int cap_style)
</autodoc> 
6903           <param name=
"cap_style" type=
"int" default=
""/> 
6906       <method name=
"SetColour" type=
"" overloaded=
"no"> 
6907         <autodoc>SetColour(Colour colour)
</autodoc> 
6909           <param name=
"colour" type=
"Colour" default=
""/> 
6912       <method name=
"SetJoin" type=
"" overloaded=
"no"> 
6913         <autodoc>SetJoin(int join_style)
</autodoc> 
6915           <param name=
"join_style" type=
"int" default=
""/> 
6918       <method name=
"SetStyle" type=
"" overloaded=
"no"> 
6919         <autodoc>SetStyle(int style)
</autodoc> 
6921           <param name=
"style" type=
"int" default=
""/> 
6924       <method name=
"SetWidth" type=
"" overloaded=
"no"> 
6925         <autodoc>SetWidth(int width)
</autodoc> 
6927           <param name=
"width" type=
"int" default=
""/> 
6930       <method name=
"SetDashes" type=
"" overloaded=
"no"> 
6931         <autodoc>SetDashes(int dashes, wxDash dashes_array)
</autodoc> 
6933           <param name=
"dashes" type=
"int" default=
""/> 
6934           <param name=
"dashes_array" type=
"wxDash" default=
""/> 
6937       <method name=
"GetDashes" type=
"PyObject" overloaded=
"no"> 
6938         <autodoc>GetDashes() -
> PyObject
</autodoc> 
6940       <method name=
"GetDashCount" type=
"int" overloaded=
"no"> 
6941         <autodoc>GetDashCount() -
> int
</autodoc> 
6944     <class name=
"PyPen" oldname=
"wxPyPen" module=
"gdi"> 
6945       <baseclass name=
"Pen"/> 
6946       <constructor name=
"PyPen" overloaded=
"no"> 
6947         <autodoc>__init__(Colour colour, int width=
1, int style=SOLID) -
> PyPen
</autodoc> 
6949           <param name=
"colour" type=
"Colour" default=
""/> 
6950           <param name=
"width" type=
"int" default=
"1"/> 
6951           <param name=
"style" type=
"int" default=
"wxSOLID"/> 
6954       <destructor name=
"~wxPyPen" overloaded=
"no"> 
6955         <autodoc>__del__()
</autodoc> 
6957       <method name=
"SetDashes" type=
"" overloaded=
"no"> 
6958         <autodoc>SetDashes(int dashes, wxDash dashes_array)
</autodoc> 
6960           <param name=
"dashes" type=
"int" default=
""/> 
6961           <param name=
"dashes_array" type=
"wxDash" default=
""/> 
6965     <pythoncode> Pen = PyPen 
</pythoncode> 
6967 #---------------------------------------------------------------------------
 
6969     <class name=
"Brush" oldname=
"wxBrush" module=
"gdi"> 
6970       <docstring>A brush is a drawing tool for filling in areas. It is used for painting the
 
6971 background of rectangles, ellipses, etc. It has a colour and a style.
</docstring> 
6972       <baseclass name=
"GDIObject"/> 
6973       <constructor name=
"Brush" overloaded=
"no"> 
6974         <autodoc>__init__(Colour colour, int style=SOLID) -
> Brush
</autodoc> 
6975         <docstring>Constructs a brush from a colour object and style.
</docstring> 
6977           <param name=
"colour" type=
"Colour" default=
""/> 
6978           <param name=
"style" type=
"int" default=
"wxSOLID"/> 
6981       <destructor name=
"~wxBrush" overloaded=
"no"> 
6982         <autodoc>__del__()
</autodoc> 
6984       <method name=
"SetColour" type=
"" overloaded=
"no"> 
6985         <autodoc>SetColour(Colour col)
</autodoc> 
6987           <param name=
"col" type=
"Colour" default=
""/> 
6990       <method name=
"SetStyle" type=
"" overloaded=
"no"> 
6991         <autodoc>SetStyle(int style)
</autodoc> 
6993           <param name=
"style" type=
"int" default=
""/> 
6996       <method name=
"SetStipple" type=
"" overloaded=
"no"> 
6997         <autodoc>SetStipple(Bitmap stipple)
</autodoc> 
6999           <param name=
"stipple" type=
"wxBitmap" default=
""/> 
7002       <method name=
"GetColour" type=
"Colour" overloaded=
"no"> 
7003         <autodoc>GetColour() -
> Colour
</autodoc> 
7005       <method name=
"GetStyle" type=
"int" overloaded=
"no"> 
7006         <autodoc>GetStyle() -
> int
</autodoc> 
7008       <method name=
"GetStipple" type=
"wxBitmap" overloaded=
"no"> 
7009         <autodoc>GetStipple() -
> Bitmap
</autodoc> 
7011       <method name=
"Ok" type=
"bool" overloaded=
"no"> 
7012         <autodoc>Ok() -
> bool
</autodoc> 
7015     <class name=
"Bitmap" oldname=
"wxBitmap" module=
"gdi"> 
7016       <baseclass name=
"GDIObject"/> 
7017       <constructor name=
"Bitmap" overloaded=
"no"> 
7018         <autodoc>__init__(String name, int type=BITMAP_TYPE_ANY) -
> Bitmap
</autodoc> 
7019         <docstring>Loads a bitmap from a file.
</docstring> 
7021           <param name=
"name" type=
"String" default=
""/> 
7022           <param name=
"type" type=
"wxBitmapType" default=
"wxBITMAP_TYPE_ANY"/> 
7025       <constructor name=
"EmptyBitmap" overloaded=
"no"> 
7026         <autodoc>EmptyBitmap(int width, int height, int depth=-
1) -
> Bitmap
</autodoc> 
7027         <docstring>Creates a new bitmap of the given size.  A depth of -
1 indicates the depth of
 
7028 the current screen or visual. Some platforms only support 
1 for monochrome and
 
7029 -
1 for the current colour setting.
</docstring> 
7031           <param name=
"width" type=
"int" default=
""/> 
7032           <param name=
"height" type=
"int" default=
""/> 
7033           <param name=
"depth" type=
"int" default=
"-1"/> 
7036       <constructor name=
"BitmapFromIcon" overloaded=
"no"> 
7037         <autodoc>BitmapFromIcon(Icon icon) -
> Bitmap
</autodoc> 
7038         <docstring>Create a new bitmap from an Icon object.
</docstring> 
7040           <param name=
"icon" type=
"wxIcon" default=
""/> 
7043       <constructor name=
"BitmapFromImage" overloaded=
"no"> 
7044         <autodoc>BitmapFromImage(Image image, int depth=-
1) -
> Bitmap
</autodoc> 
7045         <docstring>Creates bitmap object from the image. This has to be done to actually display
 
7046 an image as you cannot draw an image directly on a window. The resulting
 
7047 bitmap will use the provided colour depth (or that of the current system if
 
7048 depth is -
1) which entails that a colour reduction has to take place.
</docstring> 
7050           <param name=
"image" type=
"Image" default=
""/> 
7051           <param name=
"depth" type=
"int" default=
"-1"/> 
7054       <constructor name=
"BitmapFromXPMData" overloaded=
"no"> 
7055         <autodoc>BitmapFromXPMData(PyObject listOfStrings) -
> Bitmap
</autodoc> 
7056         <docstring>Construct a Bitmap from a list of strings formatted as XPM data.
</docstring> 
7058           <param name=
"listOfStrings" type=
"PyObject" default=
""/> 
7061       <constructor name=
"BitmapFromBits" overloaded=
"no"> 
7062         <autodoc>BitmapFromBits(PyObject bits, int width, int height, int depth=
1) -
> Bitmap
</autodoc> 
7063         <docstring>Creates a bitmap from an array of bits.  You should only use this function for
 
7064 monochrome bitmaps (depth 
1) in portable programs: in this case the bits
 
7065 parameter should contain an XBM image.  For other bit depths, the behaviour is
 
7066 platform dependent.
</docstring> 
7068           <param name=
"bits" type=
"PyObject" default=
""/> 
7069           <param name=
"width" type=
"int" default=
""/> 
7070           <param name=
"height" type=
"int" default=
""/> 
7071           <param name=
"depth" type=
"int" default=
"1"/> 
7074       <destructor name=
"~wxBitmap" overloaded=
"no"> 
7075         <autodoc>__del__()
</autodoc> 
7077       <method name=
"Ok" type=
"bool" overloaded=
"no"> 
7078         <autodoc>Ok() -
> bool
</autodoc> 
7080       <method name=
"GetWidth" type=
"int" overloaded=
"no"> 
7081         <autodoc>GetWidth() -
> int
</autodoc> 
7082         <docstring>Gets the width of the bitmap in pixels.
</docstring> 
7084       <method name=
"GetHeight" type=
"int" overloaded=
"no"> 
7085         <autodoc>GetHeight() -
> int
</autodoc> 
7086         <docstring>Gets the height of the bitmap in pixels.
</docstring> 
7088       <method name=
"GetDepth" type=
"int" overloaded=
"no"> 
7089         <autodoc>GetDepth() -
> int
</autodoc> 
7090         <docstring>Gets the colour depth of the bitmap. A value of 
1 indicates a
 
7091 monochrome bitmap.
</docstring> 
7093       <method name=
"ConvertToImage" type=
"Image" overloaded=
"no"> 
7094         <autodoc>ConvertToImage() -
> Image
</autodoc> 
7095         <docstring>Creates a platform-independent image from a platform-dependent bitmap. This
 
7096 preserves mask information so that bitmaps and images can be converted back
 
7097 and forth without loss in that respect.
</docstring> 
7099       <method name=
"GetMask" type=
"wxMask" overloaded=
"no"> 
7100         <autodoc>GetMask() -
> Mask
</autodoc> 
7101         <docstring>Gets the associated mask (if any) which may have been loaded from a file
 
7102 or explpicitly set for the bitmap.
</docstring> 
7104       <method name=
"SetMask" type=
"" overloaded=
"no"> 
7105         <autodoc>SetMask(Mask mask)
</autodoc> 
7106         <docstring>Sets the mask for this bitmap.
</docstring> 
7108           <param name=
"mask" type=
"wxMask" default=
""/> 
7111       <method name=
"SetMaskColour" type=
"" overloaded=
"no"> 
7112         <autodoc>SetMaskColour(Colour colour)
</autodoc> 
7113         <docstring>Create a Mask based on a specified colour in the Bitmap.
</docstring> 
7115           <param name=
"colour" type=
"Colour" default=
""/> 
7118       <method name=
"GetSubBitmap" type=
"Bitmap" overloaded=
"no"> 
7119         <autodoc>GetSubBitmap(Rect rect) -
> Bitmap
</autodoc> 
7120         <docstring>Returns a sub bitmap of the current one as long as the rect belongs entirely
 
7121 to the bitmap. This function preserves bit depth and mask information.
</docstring> 
7123           <param name=
"rect" type=
"Rect" default=
""/> 
7126       <method name=
"SaveFile" type=
"bool" overloaded=
"no"> 
7127         <autodoc>SaveFile(String name, int type, Palette palette=(wxPalette *) NULL) -
> bool
</autodoc> 
7128         <docstring>Saves a bitmap in the named file.
</docstring> 
7130           <param name=
"name" type=
"String" default=
""/> 
7131           <param name=
"type" type=
"wxBitmapType" default=
""/> 
7132           <param name=
"palette" type=
"Palette" default=
"(wxPalette *) NULL"/> 
7135       <method name=
"LoadFile" type=
"bool" overloaded=
"no"> 
7136         <autodoc>LoadFile(String name, int type) -
> bool
</autodoc> 
7137         <docstring>Loads a bitmap from a file
</docstring> 
7139           <param name=
"name" type=
"String" default=
""/> 
7140           <param name=
"type" type=
"wxBitmapType" default=
""/> 
7143       <method name=
"CopyFromIcon" type=
"bool" overloaded=
"no"> 
7144         <autodoc>CopyFromIcon(Icon icon) -
> bool
</autodoc> 
7146           <param name=
"icon" type=
"wxIcon" default=
""/> 
7149       <method name=
"SetHeight" type=
"" overloaded=
"no"> 
7150         <autodoc>SetHeight(int height)
</autodoc> 
7151         <docstring>Set the height property (does not affect the bitmap data).
</docstring> 
7153           <param name=
"height" type=
"int" default=
""/> 
7156       <method name=
"SetWidth" type=
"" overloaded=
"no"> 
7157         <autodoc>SetWidth(int width)
</autodoc> 
7158         <docstring>Set the width property (does not affect the bitmap data).
</docstring> 
7160           <param name=
"width" type=
"int" default=
""/> 
7163       <method name=
"SetDepth" type=
"" overloaded=
"no"> 
7164         <autodoc>SetDepth(int depth)
</autodoc> 
7165         <docstring>Set the depth property (does not affect the bitmap data).
</docstring> 
7167           <param name=
"depth" type=
"int" default=
""/> 
7171     <class name=
"Mask" oldname=
"wxMask" module=
"gdi"> 
7172       <docstring>This class encapsulates a monochrome mask bitmap, where the masked area is
 
7173 black and the unmasked area is white. When associated with a bitmap and drawn
 
7174 in a device context, the unmasked area of the bitmap will be drawn, and the
 
7175 masked area will not be drawn.
</docstring> 
7176       <baseclass name=
"Object"/> 
7177       <constructor name=
"Mask" overloaded=
"no"> 
7178         <autodoc>__init__(Bitmap bitmap) -
> Mask
</autodoc> 
7179         <docstring>Constructs a mask from a monochrome bitmap.
</docstring> 
7181           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
7184       <constructor name=
"MaskColour" overloaded=
"no"> 
7185         <autodoc>MaskColour(Bitmap bitmap, Colour colour) -
> Mask
</autodoc> 
7186         <docstring>Constructs a mask from a bitmap and a colour in that bitmap that indicates the
 
7187 background.
</docstring> 
7189           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
7190           <param name=
"colour" type=
"Colour" default=
""/> 
7194     <class name=
"Icon" oldname=
"wxIcon" module=
"gdi"> 
7195       <baseclass name=
"GDIObject"/> 
7196       <constructor name=
"Icon" overloaded=
"no"> 
7197         <autodoc>__init__(String name, int type, int desiredWidth=-
1, int desiredHeight=-
1) -
> Icon
</autodoc> 
7199           <param name=
"name" type=
"String" default=
""/> 
7200           <param name=
"type" type=
"wxBitmapType" default=
""/> 
7201           <param name=
"desiredWidth" type=
"int" default=
"-1"/> 
7202           <param name=
"desiredHeight" type=
"int" default=
"-1"/> 
7205       <constructor name=
"EmptyIcon" overloaded=
"no"> 
7206         <autodoc>EmptyIcon() -
> Icon
</autodoc> 
7208       <constructor name=
"IconFromLocation" overloaded=
"no"> 
7209         <autodoc>IconFromLocation(IconLocation loc) -
> Icon
</autodoc> 
7211           <param name=
"loc" type=
"wxIconLocation" default=
""/> 
7214       <constructor name=
"IconFromBitmap" overloaded=
"no"> 
7215         <autodoc>IconFromBitmap(Bitmap bmp) -
> Icon
</autodoc> 
7217           <param name=
"bmp" type=
"Bitmap" default=
""/> 
7220       <constructor name=
"IconFromXPMData" overloaded=
"no"> 
7221         <autodoc>IconFromXPMData(PyObject listOfStrings) -
> Icon
</autodoc> 
7223           <param name=
"listOfStrings" type=
"PyObject" default=
""/> 
7226       <destructor name=
"~wxIcon" overloaded=
"no"> 
7227         <autodoc>__del__()
</autodoc> 
7229       <method name=
"LoadFile" type=
"bool" overloaded=
"no"> 
7230         <autodoc>LoadFile(String name, int type) -
> bool
</autodoc> 
7232           <param name=
"name" type=
"String" default=
""/> 
7233           <param name=
"type" type=
"wxBitmapType" default=
""/> 
7236       <method name=
"Ok" type=
"bool" overloaded=
"no"> 
7237         <autodoc>Ok() -
> bool
</autodoc> 
7239       <method name=
"GetWidth" type=
"int" overloaded=
"no"> 
7240         <autodoc>GetWidth() -
> int
</autodoc> 
7242       <method name=
"GetHeight" type=
"int" overloaded=
"no"> 
7243         <autodoc>GetHeight() -
> int
</autodoc> 
7245       <method name=
"GetDepth" type=
"int" overloaded=
"no"> 
7246         <autodoc>GetDepth() -
> int
</autodoc> 
7248       <method name=
"SetWidth" type=
"" overloaded=
"no"> 
7249         <autodoc>SetWidth(int w)
</autodoc> 
7251           <param name=
"w" type=
"int" default=
""/> 
7254       <method name=
"SetHeight" type=
"" overloaded=
"no"> 
7255         <autodoc>SetHeight(int h)
</autodoc> 
7257           <param name=
"h" type=
"int" default=
""/> 
7260       <method name=
"SetDepth" type=
"" overloaded=
"no"> 
7261         <autodoc>SetDepth(int d)
</autodoc> 
7263           <param name=
"d" type=
"int" default=
""/> 
7266       <method name=
"CopyFromBitmap" type=
"" overloaded=
"no"> 
7267         <autodoc>CopyFromBitmap(Bitmap bmp)
</autodoc> 
7269           <param name=
"bmp" type=
"Bitmap" default=
""/> 
7273     <class name=
"IconLocation" oldname=
"wxIconLocation" module=
"gdi"> 
7274       <constructor name=
"IconLocation" overloaded=
"no"> 
7275         <autodoc>__init__(String filename=
&wxPyEmptyString, int num=
0) -
> IconLocation
</autodoc> 
7277           <param name=
"filename" type=
"String" default=
"&wxPyEmptyString"/> 
7278           <param name=
"num" type=
"int" default=
"0"/> 
7281       <destructor name=
"~wxIconLocation" overloaded=
"no"> 
7282         <autodoc>__del__()
</autodoc> 
7284       <method name=
"IsOk" type=
"bool" overloaded=
"no"> 
7285         <autodoc>IsOk() -
> bool
</autodoc> 
7287       <method name=
"SetFileName" type=
"" overloaded=
"no"> 
7288         <autodoc>SetFileName(String filename)
</autodoc> 
7290           <param name=
"filename" type=
"String" default=
""/> 
7293       <method name=
"GetFileName" type=
"String" overloaded=
"no"> 
7294         <autodoc>GetFileName() -
> String
</autodoc> 
7296       <method name=
"SetIndex" type=
"" overloaded=
"no"> 
7297         <autodoc>SetIndex(int num)
</autodoc> 
7299           <param name=
"num" type=
"int" default=
""/> 
7302       <method name=
"GetIndex" type=
"int" overloaded=
"no"> 
7303         <autodoc>GetIndex() -
> int
</autodoc> 
7306     <class name=
"IconBundle" oldname=
"wxIconBundle" module=
"gdi"> 
7307       <constructor name=
"IconBundle" overloaded=
"no"> 
7308         <autodoc>__init__() -
> IconBundle
</autodoc> 
7310       <constructor name=
"IconBundleFromFile" overloaded=
"no"> 
7311         <autodoc>IconBundleFromFile(String file, long type) -
> IconBundle
</autodoc> 
7313           <param name=
"file" type=
"String" default=
""/> 
7314           <param name=
"type" type=
"long" default=
""/> 
7317       <constructor name=
"IconBundleFromIcon" overloaded=
"no"> 
7318         <autodoc>IconBundleFromIcon(Icon icon) -
> IconBundle
</autodoc> 
7320           <param name=
"icon" type=
"Icon" default=
""/> 
7323       <destructor name=
"~wxIconBundle" overloaded=
"no"> 
7324         <autodoc>__del__()
</autodoc> 
7326       <method name=
"AddIcon" type=
"" overloaded=
"no"> 
7327         <autodoc>AddIcon(Icon icon)
</autodoc> 
7329           <param name=
"icon" type=
"Icon" default=
""/> 
7332       <method name=
"AddIconFromFile" type=
"" overloaded=
"no"> 
7333         <autodoc>AddIconFromFile(String file, long type)
</autodoc> 
7335           <param name=
"file" type=
"String" default=
""/> 
7336           <param name=
"type" type=
"long" default=
""/> 
7339       <method name=
"GetIcon" type=
"Icon" overloaded=
"no"> 
7340         <autodoc>GetIcon(Size size) -
> Icon
</autodoc> 
7342           <param name=
"size" type=
"Size" default=
""/> 
7346     <class name=
"Cursor" oldname=
"wxCursor" module=
"gdi"> 
7347       <baseclass name=
"GDIObject"/> 
7348       <constructor name=
"Cursor" overloaded=
"no"> 
7349         <autodoc>__init__(String cursorName, long flags, int hotSpotX=
0, int hotSpotY=
0) -
> Cursor
</autodoc> 
7351           <param name=
"cursorName" type=
"String" default=
""/> 
7352           <param name=
"flags" type=
"long" default=
""/> 
7353           <param name=
"hotSpotX" type=
"int" default=
"0"/> 
7354           <param name=
"hotSpotY" type=
"int" default=
"0"/> 
7357       <constructor name=
"StockCursor" overloaded=
"no"> 
7358         <autodoc>StockCursor(int id) -
> Cursor
</autodoc> 
7360           <param name=
"id" type=
"int" default=
""/> 
7363       <constructor name=
"CursorFromImage" overloaded=
"no"> 
7364         <autodoc>CursorFromImage(Image image) -
> Cursor
</autodoc> 
7366           <param name=
"image" type=
"Image" default=
""/> 
7369       <constructor name=
"CursorFromBits" overloaded=
"no"> 
7370         <autodoc>CursorFromBits(PyObject bits, int width, int height, int hotSpotX=-
1, 
 
7371     int hotSpotY=-
1, PyObject maskBits=
0) -
> Cursor
</autodoc> 
7373           <param name=
"bits" type=
"PyObject" default=
""/> 
7374           <param name=
"width" type=
"int" default=
""/> 
7375           <param name=
"height" type=
"int" default=
""/> 
7376           <param name=
"hotSpotX" type=
"int" default=
"-1"/> 
7377           <param name=
"hotSpotY" type=
"int" default=
"-1"/> 
7378           <param name=
"maskBits" type=
"PyObject" default=
"0"/> 
7381       <destructor name=
"~wxCursor" overloaded=
"no"> 
7382         <autodoc>__del__()
</autodoc> 
7384       <method name=
"Ok" type=
"bool" overloaded=
"no"> 
7385         <autodoc>Ok() -
> bool
</autodoc> 
7389 #---------------------------------------------------------------------------
 
7391     <class name=
"Region" oldname=
"wxRegion" module=
"gdi"> 
7392       <baseclass name=
"GDIObject"/> 
7393       <constructor name=
"Region" overloaded=
"no"> 
7394         <autodoc>__init__(int x=
0, int y=
0, int width=
0, int height=
0) -
> Region
</autodoc> 
7396           <param name=
"x" type=
"int" default=
"0"/> 
7397           <param name=
"y" type=
"int" default=
"0"/> 
7398           <param name=
"width" type=
"int" default=
"0"/> 
7399           <param name=
"height" type=
"int" default=
"0"/> 
7402       <constructor name=
"RegionFromBitmap" overloaded=
"no"> 
7403         <autodoc>RegionFromBitmap(Bitmap bmp, Colour transColour=NullColour, int tolerance=
0) -
> Region
</autodoc> 
7405           <param name=
"bmp" type=
"Bitmap" default=
""/> 
7406           <param name=
"transColour" type=
"Colour" default=
"wxNullColour"/> 
7407           <param name=
"tolerance" type=
"int" default=
"0"/> 
7410       <constructor name=
"RegionFromPoints" overloaded=
"no"> 
7411         <autodoc>RegionFromPoints(int points, Point points_array, int fillStyle=WINDING_RULE) -
> Region
</autodoc> 
7413           <param name=
"points" type=
"int" default=
""/> 
7414           <param name=
"points_array" type=
"Point" default=
""/> 
7415           <param name=
"fillStyle" type=
"int" default=
"wxWINDING_RULE"/> 
7418       <destructor name=
"~wxRegion" overloaded=
"no"> 
7419         <autodoc>__del__()
</autodoc> 
7421       <method name=
"Clear" type=
"" overloaded=
"no"> 
7422         <autodoc>Clear()
</autodoc> 
7424       <method name=
"Offset" type=
"bool" overloaded=
"no"> 
7425         <autodoc>Offset(int x, int y) -
> bool
</autodoc> 
7427           <param name=
"x" type=
"int" default=
""/> 
7428           <param name=
"y" type=
"int" default=
""/> 
7431       <method name=
"Contains" type=
"wxRegionContain" overloaded=
"no"> 
7432         <autodoc>Contains(int x, int y) -
> int
</autodoc> 
7434           <param name=
"x" type=
"int" default=
""/> 
7435           <param name=
"y" type=
"int" default=
""/> 
7438       <method name=
"ContainsPoint" type=
"wxRegionContain" overloaded=
"no"> 
7439         <autodoc>ContainsPoint(Point pt) -
> int
</autodoc> 
7441           <param name=
"pt" type=
"Point" default=
""/> 
7444       <method name=
"ContainsRect" type=
"wxRegionContain" overloaded=
"no"> 
7445         <autodoc>ContainsRect(Rect rect) -
> int
</autodoc> 
7447           <param name=
"rect" type=
"Rect" default=
""/> 
7450       <method name=
"ContainsRectDim" type=
"wxRegionContain" overloaded=
"no"> 
7451         <autodoc>ContainsRectDim(int x, int y, int w, int h) -
> int
</autodoc> 
7453           <param name=
"x" type=
"int" default=
""/> 
7454           <param name=
"y" type=
"int" default=
""/> 
7455           <param name=
"w" type=
"int" default=
""/> 
7456           <param name=
"h" type=
"int" default=
""/> 
7459       <method name=
"GetBox" type=
"Rect" overloaded=
"no"> 
7460         <autodoc>GetBox() -
> Rect
</autodoc> 
7462       <method name=
"Intersect" type=
"bool" overloaded=
"no"> 
7463         <autodoc>Intersect(int x, int y, int width, int height) -
> bool
</autodoc> 
7465           <param name=
"x" type=
"int" default=
""/> 
7466           <param name=
"y" type=
"int" default=
""/> 
7467           <param name=
"width" type=
"int" default=
""/> 
7468           <param name=
"height" type=
"int" default=
""/> 
7471       <method name=
"IntersectRect" type=
"bool" overloaded=
"no"> 
7472         <autodoc>IntersectRect(Rect rect) -
> bool
</autodoc> 
7474           <param name=
"rect" type=
"Rect" default=
""/> 
7477       <method name=
"IntersectRegion" type=
"bool" overloaded=
"no"> 
7478         <autodoc>IntersectRegion(Region region) -
> bool
</autodoc> 
7480           <param name=
"region" type=
"Region" default=
""/> 
7483       <method name=
"IsEmpty" type=
"bool" overloaded=
"no"> 
7484         <autodoc>IsEmpty() -
> bool
</autodoc> 
7486       <method name=
"Union" type=
"bool" overloaded=
"no"> 
7487         <autodoc>Union(int x, int y, int width, int height) -
> bool
</autodoc> 
7489           <param name=
"x" type=
"int" default=
""/> 
7490           <param name=
"y" type=
"int" default=
""/> 
7491           <param name=
"width" type=
"int" default=
""/> 
7492           <param name=
"height" type=
"int" default=
""/> 
7495       <method name=
"UnionRect" type=
"bool" overloaded=
"no"> 
7496         <autodoc>UnionRect(Rect rect) -
> bool
</autodoc> 
7498           <param name=
"rect" type=
"Rect" default=
""/> 
7501       <method name=
"UnionRegion" type=
"bool" overloaded=
"no"> 
7502         <autodoc>UnionRegion(Region region) -
> bool
</autodoc> 
7504           <param name=
"region" type=
"Region" default=
""/> 
7507       <method name=
"Subtract" type=
"bool" overloaded=
"no"> 
7508         <autodoc>Subtract(int x, int y, int width, int height) -
> bool
</autodoc> 
7510           <param name=
"x" type=
"int" default=
""/> 
7511           <param name=
"y" type=
"int" default=
""/> 
7512           <param name=
"width" type=
"int" default=
""/> 
7513           <param name=
"height" type=
"int" default=
""/> 
7516       <method name=
"SubtractRect" type=
"bool" overloaded=
"no"> 
7517         <autodoc>SubtractRect(Rect rect) -
> bool
</autodoc> 
7519           <param name=
"rect" type=
"Rect" default=
""/> 
7522       <method name=
"SubtractRegion" type=
"bool" overloaded=
"no"> 
7523         <autodoc>SubtractRegion(Region region) -
> bool
</autodoc> 
7525           <param name=
"region" type=
"Region" default=
""/> 
7528       <method name=
"Xor" type=
"bool" overloaded=
"no"> 
7529         <autodoc>Xor(int x, int y, int width, int height) -
> bool
</autodoc> 
7531           <param name=
"x" type=
"int" default=
""/> 
7532           <param name=
"y" type=
"int" default=
""/> 
7533           <param name=
"width" type=
"int" default=
""/> 
7534           <param name=
"height" type=
"int" default=
""/> 
7537       <method name=
"XorRect" type=
"bool" overloaded=
"no"> 
7538         <autodoc>XorRect(Rect rect) -
> bool
</autodoc> 
7540           <param name=
"rect" type=
"Rect" default=
""/> 
7543       <method name=
"XorRegion" type=
"bool" overloaded=
"no"> 
7544         <autodoc>XorRegion(Region region) -
> bool
</autodoc> 
7546           <param name=
"region" type=
"Region" default=
""/> 
7549       <method name=
"ConvertToBitmap" type=
"Bitmap" overloaded=
"no"> 
7550         <autodoc>ConvertToBitmap() -
> Bitmap
</autodoc> 
7552       <method name=
"UnionBitmap" type=
"bool" overloaded=
"no"> 
7553         <autodoc>UnionBitmap(Bitmap bmp, Colour transColour=NullColour, int tolerance=
0) -
> bool
</autodoc> 
7555           <param name=
"bmp" type=
"Bitmap" default=
""/> 
7556           <param name=
"transColour" type=
"Colour" default=
"wxNullColour"/> 
7557           <param name=
"tolerance" type=
"int" default=
"0"/> 
7561     <class name=
"RegionIterator" oldname=
"wxRegionIterator" module=
"gdi"> 
7562       <baseclass name=
"Object"/> 
7563       <constructor name=
"RegionIterator" overloaded=
"no"> 
7564         <autodoc>__init__(Region region) -
> RegionIterator
</autodoc> 
7566           <param name=
"region" type=
"Region" default=
""/> 
7569       <destructor name=
"~wxRegionIterator" overloaded=
"no"> 
7570         <autodoc>__del__()
</autodoc> 
7572       <method name=
"GetX" type=
"int" overloaded=
"no"> 
7573         <autodoc>GetX() -
> int
</autodoc> 
7575       <method name=
"GetY" type=
"int" overloaded=
"no"> 
7576         <autodoc>GetY() -
> int
</autodoc> 
7578       <method name=
"GetW" type=
"int" overloaded=
"no"> 
7579         <autodoc>GetW() -
> int
</autodoc> 
7581       <method name=
"GetWidth" type=
"int" overloaded=
"no"> 
7582         <autodoc>GetWidth() -
> int
</autodoc> 
7584       <method name=
"GetH" type=
"int" overloaded=
"no"> 
7585         <autodoc>GetH() -
> int
</autodoc> 
7587       <method name=
"GetHeight" type=
"int" overloaded=
"no"> 
7588         <autodoc>GetHeight() -
> int
</autodoc> 
7590       <method name=
"GetRect" type=
"Rect" overloaded=
"no"> 
7591         <autodoc>GetRect() -
> Rect
</autodoc> 
7593       <method name=
"HaveRects" type=
"bool" overloaded=
"no"> 
7594         <autodoc>HaveRects() -
> bool
</autodoc> 
7596       <method name=
"Reset" type=
"" overloaded=
"no"> 
7597         <autodoc>Reset()
</autodoc> 
7599       <method name=
"Next" type=
"" overloaded=
"no"> 
7600         <autodoc>Next()
</autodoc> 
7602       <method name=
"__nonzero__" type=
"bool" overloaded=
"no"> 
7603         <autodoc>__nonzero__() -
> bool
</autodoc> 
7607 #---------------------------------------------------------------------------
 
7610 #---------------------------------------------------------------------------
 
7612     <class name=
"NativeFontInfo" oldname=
"wxNativeFontInfo" module=
"gdi"> 
7613       <constructor name=
"NativeFontInfo" overloaded=
"no"> 
7614         <autodoc>__init__() -
> NativeFontInfo
</autodoc> 
7616       <destructor name=
"~wxNativeFontInfo" overloaded=
"no"> 
7617         <autodoc>__del__()
</autodoc> 
7619       <method name=
"Init" type=
"" overloaded=
"no"> 
7620         <autodoc>Init()
</autodoc> 
7622       <method name=
"InitFromFont" type=
"" overloaded=
"no"> 
7623         <autodoc>InitFromFont(Font font)
</autodoc> 
7625           <param name=
"font" type=
"wxFont" default=
""/> 
7628       <method name=
"GetPointSize" type=
"int" overloaded=
"no"> 
7629         <autodoc>GetPointSize() -
> int
</autodoc> 
7631       <method name=
"GetStyle" type=
"wxFontStyle" overloaded=
"no"> 
7632         <autodoc>GetStyle() -
> int
</autodoc> 
7634       <method name=
"GetWeight" type=
"wxFontWeight" overloaded=
"no"> 
7635         <autodoc>GetWeight() -
> int
</autodoc> 
7637       <method name=
"GetUnderlined" type=
"bool" overloaded=
"no"> 
7638         <autodoc>GetUnderlined() -
> bool
</autodoc> 
7640       <method name=
"GetFaceName" type=
"String" overloaded=
"no"> 
7641         <autodoc>GetFaceName() -
> String
</autodoc> 
7643       <method name=
"GetFamily" type=
"wxFontFamily" overloaded=
"no"> 
7644         <autodoc>GetFamily() -
> int
</autodoc> 
7646       <method name=
"GetEncoding" type=
"wxFontEncoding" overloaded=
"no"> 
7647         <autodoc>GetEncoding() -
> int
</autodoc> 
7649       <method name=
"SetPointSize" type=
"" overloaded=
"no"> 
7650         <autodoc>SetPointSize(int pointsize)
</autodoc> 
7652           <param name=
"pointsize" type=
"int" default=
""/> 
7655       <method name=
"SetStyle" type=
"" overloaded=
"no"> 
7656         <autodoc>SetStyle(int style)
</autodoc> 
7658           <param name=
"style" type=
"wxFontStyle" default=
""/> 
7661       <method name=
"SetWeight" type=
"" overloaded=
"no"> 
7662         <autodoc>SetWeight(int weight)
</autodoc> 
7664           <param name=
"weight" type=
"wxFontWeight" default=
""/> 
7667       <method name=
"SetUnderlined" type=
"" overloaded=
"no"> 
7668         <autodoc>SetUnderlined(bool underlined)
</autodoc> 
7670           <param name=
"underlined" type=
"bool" default=
""/> 
7673       <method name=
"SetFaceName" type=
"" overloaded=
"no"> 
7674         <autodoc>SetFaceName(String facename)
</autodoc> 
7676           <param name=
"facename" type=
"String" default=
""/> 
7679       <method name=
"SetFamily" type=
"" overloaded=
"no"> 
7680         <autodoc>SetFamily(int family)
</autodoc> 
7682           <param name=
"family" type=
"wxFontFamily" default=
""/> 
7685       <method name=
"SetEncoding" type=
"" overloaded=
"no"> 
7686         <autodoc>SetEncoding(int encoding)
</autodoc> 
7688           <param name=
"encoding" type=
"wxFontEncoding" default=
""/> 
7691       <method name=
"FromString" type=
"bool" overloaded=
"no"> 
7692         <autodoc>FromString(String s) -
> bool
</autodoc> 
7694           <param name=
"s" type=
"String" default=
""/> 
7697       <method name=
"ToString" type=
"String" overloaded=
"no"> 
7698         <autodoc>ToString() -
> String
</autodoc> 
7700       <method name=
"__str__" type=
"String" overloaded=
"no"> 
7701         <autodoc>__str__() -
> String
</autodoc> 
7703       <method name=
"FromUserString" type=
"bool" overloaded=
"no"> 
7704         <autodoc>FromUserString(String s) -
> bool
</autodoc> 
7706           <param name=
"s" type=
"String" default=
""/> 
7709       <method name=
"ToUserString" type=
"String" overloaded=
"no"> 
7710         <autodoc>ToUserString() -
> String
</autodoc> 
7713     <class name=
"NativeEncodingInfo" oldname=
"wxNativeEncodingInfo" module=
"gdi"> 
7714       <constructor name=
"NativeEncodingInfo" overloaded=
"no"> 
7715         <autodoc>__init__() -
> NativeEncodingInfo
</autodoc> 
7717       <destructor name=
"~wxNativeEncodingInfo" overloaded=
"no"> 
7718         <autodoc>__del__()
</autodoc> 
7720       <property name=
"facename" type=
"String" readonly=
"no"/> 
7721       <property name=
"encoding" type=
"wxFontEncoding" readonly=
"no"/> 
7722       <method name=
"FromString" type=
"bool" overloaded=
"no"> 
7723         <autodoc>FromString(String s) -
> bool
</autodoc> 
7725           <param name=
"s" type=
"String" default=
""/> 
7728       <method name=
"ToString" type=
"String" overloaded=
"no"> 
7729         <autodoc>ToString() -
> String
</autodoc> 
7732     <method name=
"GetNativeFontEncoding" oldname=
"wxGetNativeFontEncoding" type=
"NativeEncodingInfo" overloaded=
"no"> 
7733       <autodoc>GetNativeFontEncoding(int encoding) -
> NativeEncodingInfo
</autodoc> 
7735         <param name=
"encoding" type=
"wxFontEncoding" default=
""/> 
7738     <method name=
"TestFontEncoding" oldname=
"wxTestFontEncoding" type=
"bool" overloaded=
"no"> 
7739       <autodoc>TestFontEncoding(NativeEncodingInfo info) -
> bool
</autodoc> 
7741         <param name=
"info" type=
"NativeEncodingInfo" default=
""/> 
7745 #---------------------------------------------------------------------------
 
7747     <class name=
"FontMapper" oldname=
"wxFontMapper" module=
"gdi"> 
7748       <constructor name=
"FontMapper" overloaded=
"no"> 
7749         <autodoc>__init__() -
> FontMapper
</autodoc> 
7751       <destructor name=
"~wxFontMapper" overloaded=
"no"> 
7752         <autodoc>__del__()
</autodoc> 
7754       <staticmethod name=
"Get" type=
"FontMapper" overloaded=
"no"> 
7755         <autodoc>FontMapper.Get() -
> FontMapper
</autodoc> 
7757       <staticmethod name=
"Set" type=
"FontMapper" overloaded=
"no"> 
7758         <autodoc>FontMapper.Set(FontMapper mapper) -
> FontMapper
</autodoc> 
7760           <param name=
"mapper" type=
"FontMapper" default=
""/> 
7763       <method name=
"CharsetToEncoding" type=
"wxFontEncoding" overloaded=
"no"> 
7764         <autodoc>CharsetToEncoding(String charset, bool interactive=True) -
> int
</autodoc> 
7766           <param name=
"charset" type=
"String" default=
""/> 
7767           <param name=
"interactive" type=
"bool" default=
"True"/> 
7770       <staticmethod name=
"GetSupportedEncodingsCount" type=
"size_t" overloaded=
"no"> 
7771         <autodoc>FontMapper.GetSupportedEncodingsCount() -
> size_t
</autodoc> 
7773       <staticmethod name=
"GetEncoding" type=
"wxFontEncoding" overloaded=
"no"> 
7774         <autodoc>FontMapper.GetEncoding(size_t n) -
> int
</autodoc> 
7776           <param name=
"n" type=
"size_t" default=
""/> 
7779       <staticmethod name=
"GetEncodingName" type=
"String" overloaded=
"no"> 
7780         <autodoc>FontMapper.GetEncodingName(int encoding) -
> String
</autodoc> 
7782           <param name=
"encoding" type=
"wxFontEncoding" default=
""/> 
7785       <staticmethod name=
"GetEncodingDescription" type=
"String" overloaded=
"no"> 
7786         <autodoc>FontMapper.GetEncodingDescription(int encoding) -
> String
</autodoc> 
7788           <param name=
"encoding" type=
"wxFontEncoding" default=
""/> 
7791       <method name=
"SetConfig" type=
"" overloaded=
"no"> 
7792         <autodoc>SetConfig(ConfigBase config)
</autodoc> 
7794           <param name=
"config" type=
"wxConfigBase" default=
""/> 
7797       <method name=
"SetConfigPath" type=
"" overloaded=
"no"> 
7798         <autodoc>SetConfigPath(String prefix)
</autodoc> 
7800           <param name=
"prefix" type=
"String" default=
""/> 
7803       <staticmethod name=
"GetDefaultConfigPath" type=
"String" overloaded=
"no"> 
7804         <autodoc>FontMapper.GetDefaultConfigPath() -
> String
</autodoc> 
7806       <method name=
"GetAltForEncoding" type=
"PyObject" overloaded=
"no"> 
7807         <autodoc>GetAltForEncoding(int encoding, String facename=EmptyString, bool interactive=True) -
> PyObject
</autodoc> 
7809           <param name=
"encoding" type=
"wxFontEncoding" default=
""/> 
7810           <param name=
"facename" type=
"String" default=
"wxPyEmptyString"/> 
7811           <param name=
"interactive" type=
"bool" default=
"True"/> 
7814       <method name=
"IsEncodingAvailable" type=
"bool" overloaded=
"no"> 
7815         <autodoc>IsEncodingAvailable(int encoding, String facename=EmptyString) -
> bool
</autodoc> 
7817           <param name=
"encoding" type=
"wxFontEncoding" default=
""/> 
7818           <param name=
"facename" type=
"String" default=
"wxPyEmptyString"/> 
7821       <method name=
"SetDialogParent" type=
"" overloaded=
"no"> 
7822         <autodoc>SetDialogParent(Window parent)
</autodoc> 
7824           <param name=
"parent" type=
"Window" default=
""/> 
7827       <method name=
"SetDialogTitle" type=
"" overloaded=
"no"> 
7828         <autodoc>SetDialogTitle(String title)
</autodoc> 
7830           <param name=
"title" type=
"String" default=
""/> 
7835 #---------------------------------------------------------------------------
 
7837     <class name=
"Font" oldname=
"wxFont" module=
"gdi"> 
7838       <baseclass name=
"GDIObject"/> 
7839       <constructor name=
"Font" overloaded=
"no"> 
7840         <autodoc>__init__(int pointSize, int family, int style, int weight, bool underline=False, 
 
7841     String face=EmptyString, 
 
7842     int encoding=FONTENCODING_DEFAULT) -
> Font
</autodoc> 
7844           <param name=
"pointSize" type=
"int" default=
""/> 
7845           <param name=
"family" type=
"int" default=
""/> 
7846           <param name=
"style" type=
"int" default=
""/> 
7847           <param name=
"weight" type=
"int" default=
""/> 
7848           <param name=
"underline" type=
"bool" default=
"False"/> 
7849           <param name=
"face" type=
"String" default=
"wxPyEmptyString"/> 
7850           <param name=
"encoding" type=
"wxFontEncoding" default=
"wxFONTENCODING_DEFAULT"/> 
7853       <constructor name=
"FontFromNativeInfo" overloaded=
"no"> 
7854         <autodoc>FontFromNativeInfo(NativeFontInfo info) -
> Font
</autodoc> 
7856           <param name=
"info" type=
"NativeFontInfo" default=
""/> 
7859       <constructor name=
"FontFromNativeInfoString" overloaded=
"no"> 
7860         <autodoc>FontFromNativeInfoString(String info) -
> Font
</autodoc> 
7862           <param name=
"info" type=
"String" default=
""/> 
7865       <constructor name=
"Font2" overloaded=
"no"> 
7866         <autodoc>Font2(int pointSize, int family, int flags=FONTFLAG_DEFAULT, 
 
7867     String face=EmptyString, int encoding=FONTENCODING_DEFAULT) -
> Font
</autodoc> 
7869           <param name=
"pointSize" type=
"int" default=
""/> 
7870           <param name=
"family" type=
"wxFontFamily" default=
""/> 
7871           <param name=
"flags" type=
"int" default=
"wxFONTFLAG_DEFAULT"/> 
7872           <param name=
"face" type=
"String" default=
"wxPyEmptyString"/> 
7873           <param name=
"encoding" type=
"wxFontEncoding" default=
"wxFONTENCODING_DEFAULT"/> 
7876       <destructor name=
"~wxFont" overloaded=
"no"> 
7877         <autodoc>__del__()
</autodoc> 
7879       <method name=
"Ok" type=
"bool" overloaded=
"no"> 
7880         <autodoc>Ok() -
> bool
</autodoc> 
7882       <method name=
"__eq__" type=
"bool" overloaded=
"no"> 
7883         <autodoc>__eq__(Font font) -
> bool
</autodoc> 
7885           <param name=
"font" type=
"Font" default=
""/> 
7888       <method name=
"__ne__" type=
"bool" overloaded=
"no"> 
7889         <autodoc>__ne__(Font font) -
> bool
</autodoc> 
7891           <param name=
"font" type=
"Font" default=
""/> 
7894       <method name=
"GetPointSize" type=
"int" overloaded=
"no"> 
7895         <autodoc>GetPointSize() -
> int
</autodoc> 
7897       <method name=
"GetFamily" type=
"int" overloaded=
"no"> 
7898         <autodoc>GetFamily() -
> int
</autodoc> 
7900       <method name=
"GetStyle" type=
"int" overloaded=
"no"> 
7901         <autodoc>GetStyle() -
> int
</autodoc> 
7903       <method name=
"GetWeight" type=
"int" overloaded=
"no"> 
7904         <autodoc>GetWeight() -
> int
</autodoc> 
7906       <method name=
"GetUnderlined" type=
"bool" overloaded=
"no"> 
7907         <autodoc>GetUnderlined() -
> bool
</autodoc> 
7909       <method name=
"GetFaceName" type=
"String" overloaded=
"no"> 
7910         <autodoc>GetFaceName() -
> String
</autodoc> 
7912       <method name=
"GetEncoding" type=
"wxFontEncoding" overloaded=
"no"> 
7913         <autodoc>GetEncoding() -
> int
</autodoc> 
7915       <method name=
"GetNativeFontInfo" type=
"NativeFontInfo" overloaded=
"no"> 
7916         <autodoc>GetNativeFontInfo() -
> NativeFontInfo
</autodoc> 
7918       <method name=
"IsFixedWidth" type=
"bool" overloaded=
"no"> 
7919         <autodoc>IsFixedWidth() -
> bool
</autodoc> 
7921       <method name=
"GetNativeFontInfoDesc" type=
"String" overloaded=
"no"> 
7922         <autodoc>GetNativeFontInfoDesc() -
> String
</autodoc> 
7924       <method name=
"GetNativeFontInfoUserDesc" type=
"String" overloaded=
"no"> 
7925         <autodoc>GetNativeFontInfoUserDesc() -
> String
</autodoc> 
7927       <method name=
"SetPointSize" type=
"" overloaded=
"no"> 
7928         <autodoc>SetPointSize(int pointSize)
</autodoc> 
7930           <param name=
"pointSize" type=
"int" default=
""/> 
7933       <method name=
"SetFamily" type=
"" overloaded=
"no"> 
7934         <autodoc>SetFamily(int family)
</autodoc> 
7936           <param name=
"family" type=
"int" default=
""/> 
7939       <method name=
"SetStyle" type=
"" overloaded=
"no"> 
7940         <autodoc>SetStyle(int style)
</autodoc> 
7942           <param name=
"style" type=
"int" default=
""/> 
7945       <method name=
"SetWeight" type=
"" overloaded=
"no"> 
7946         <autodoc>SetWeight(int weight)
</autodoc> 
7948           <param name=
"weight" type=
"int" default=
""/> 
7951       <method name=
"SetFaceName" type=
"" overloaded=
"no"> 
7952         <autodoc>SetFaceName(String faceName)
</autodoc> 
7954           <param name=
"faceName" type=
"String" default=
""/> 
7957       <method name=
"SetUnderlined" type=
"" overloaded=
"no"> 
7958         <autodoc>SetUnderlined(bool underlined)
</autodoc> 
7960           <param name=
"underlined" type=
"bool" default=
""/> 
7963       <method name=
"SetEncoding" type=
"" overloaded=
"no"> 
7964         <autodoc>SetEncoding(int encoding)
</autodoc> 
7966           <param name=
"encoding" type=
"wxFontEncoding" default=
""/> 
7969       <method name=
"SetNativeFontInfo" type=
"" overloaded=
"no"> 
7970         <autodoc>SetNativeFontInfo(NativeFontInfo info)
</autodoc> 
7972           <param name=
"info" type=
"NativeFontInfo" default=
""/> 
7975       <method name=
"SetNativeFontInfoFromString" type=
"" overloaded=
"no"> 
7976         <autodoc>SetNativeFontInfoFromString(String info)
</autodoc> 
7978           <param name=
"info" type=
"String" default=
""/> 
7981       <method name=
"SetNativeFontInfoUserDesc" type=
"" overloaded=
"no"> 
7982         <autodoc>SetNativeFontInfoUserDesc(String info)
</autodoc> 
7984           <param name=
"info" type=
"String" default=
""/> 
7987       <method name=
"GetFamilyString" type=
"String" overloaded=
"no"> 
7988         <autodoc>GetFamilyString() -
> String
</autodoc> 
7990       <method name=
"GetStyleString" type=
"String" overloaded=
"no"> 
7991         <autodoc>GetStyleString() -
> String
</autodoc> 
7993       <method name=
"GetWeightString" type=
"String" overloaded=
"no"> 
7994         <autodoc>GetWeightString() -
> String
</autodoc> 
7996       <method name=
"SetNoAntiAliasing" type=
"" overloaded=
"no"> 
7997         <autodoc>SetNoAntiAliasing(bool no=True)
</autodoc> 
7999           <param name=
"no" type=
"bool" default=
"True"/> 
8002       <method name=
"GetNoAntiAliasing" type=
"bool" overloaded=
"no"> 
8003         <autodoc>GetNoAntiAliasing() -
> bool
</autodoc> 
8005       <staticmethod name=
"GetDefaultEncoding" type=
"wxFontEncoding" overloaded=
"no"> 
8006         <autodoc>Font.GetDefaultEncoding() -
> int
</autodoc> 
8008       <staticmethod name=
"SetDefaultEncoding" type=
"" overloaded=
"no"> 
8009         <autodoc>Font.SetDefaultEncoding(int encoding)
</autodoc> 
8011           <param name=
"encoding" type=
"wxFontEncoding" default=
""/> 
8016 #---------------------------------------------------------------------------
 
8018     <class name=
"FontEnumerator" oldname=
"wxPyFontEnumerator" module=
"gdi"> 
8019       <constructor name=
"wxPyFontEnumerator" overloaded=
"no"> 
8020         <autodoc>__init__() -
> FontEnumerator
</autodoc> 
8022       <destructor name=
"~wxPyFontEnumerator" overloaded=
"no"> 
8023         <autodoc>__del__()
</autodoc> 
8025       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
8026         <autodoc>_setCallbackInfo(PyObject self, PyObject _class, bool incref)
</autodoc> 
8028           <param name=
"self" type=
"PyObject" default=
""/> 
8029           <param name=
"_class" type=
"PyObject" default=
""/> 
8030           <param name=
"incref" type=
"bool" default=
""/> 
8033       <method name=
"EnumerateFacenames" type=
"bool" overloaded=
"no"> 
8034         <autodoc>EnumerateFacenames(int encoding=FONTENCODING_SYSTEM, bool fixedWidthOnly=False) -
> bool
</autodoc> 
8036           <param name=
"encoding" type=
"wxFontEncoding" default=
"wxFONTENCODING_SYSTEM"/> 
8037           <param name=
"fixedWidthOnly" type=
"bool" default=
"False"/> 
8040       <method name=
"EnumerateEncodings" type=
"bool" overloaded=
"no"> 
8041         <autodoc>EnumerateEncodings(String facename=EmptyString) -
> bool
</autodoc> 
8043           <param name=
"facename" type=
"String" default=
"wxPyEmptyString"/> 
8046       <method name=
"GetEncodings" type=
"PyObject" overloaded=
"no"> 
8047         <autodoc>GetEncodings() -
> PyObject
</autodoc> 
8049       <method name=
"GetFacenames" type=
"PyObject" overloaded=
"no"> 
8050         <autodoc>GetFacenames() -
> PyObject
</autodoc> 
8054 #---------------------------------------------------------------------------
 
8056     <class name=
"LanguageInfo" oldname=
"wxLanguageInfo" module=
"gdi"> 
8057       <property name=
"Language" type=
"int" readonly=
"no"/> 
8058       <property name=
"CanonicalName" type=
"String" readonly=
"no"/> 
8059       <property name=
"Description" type=
"String" readonly=
"no"/> 
8061     <class name=
"Locale" oldname=
"wxLocale" module=
"gdi"> 
8062       <constructor name=
"Locale" overloaded=
"no"> 
8063         <autodoc>__init__(int language=LANGUAGE_DEFAULT, int flags=wxLOCALE_LOAD_DEFAULT|wxLOCALE_CONV_ENCODING) -
> Locale
</autodoc> 
8065           <param name=
"language" type=
"int" default=
"wxLANGUAGE_DEFAULT"/> 
8066           <param name=
"flags" type=
"int" default=
"wxLOCALE_LOAD_DEFAULT|wxLOCALE_CONV_ENCODING"/> 
8069       <destructor name=
"~wxLocale" overloaded=
"no"> 
8070         <autodoc>__del__()
</autodoc> 
8072       <method name=
"Init1" type=
"bool" overloaded=
"no"> 
8073         <autodoc>Init1(String szName, String szShort=EmptyString, String szLocale=EmptyString, 
 
8074     bool bLoadDefault=True, 
 
8075     bool bConvertEncoding=False) -
> bool
</autodoc> 
8077           <param name=
"szName" type=
"String" default=
""/> 
8078           <param name=
"szShort" type=
"String" default=
"wxPyEmptyString"/> 
8079           <param name=
"szLocale" type=
"String" default=
"wxPyEmptyString"/> 
8080           <param name=
"bLoadDefault" type=
"bool" default=
"True"/> 
8081           <param name=
"bConvertEncoding" type=
"bool" default=
"False"/> 
8084       <method name=
"Init2" type=
"bool" overloaded=
"no"> 
8085         <autodoc>Init2(int language=LANGUAGE_DEFAULT, int flags=wxLOCALE_LOAD_DEFAULT|wxLOCALE_CONV_ENCODING) -
> bool
</autodoc> 
8087           <param name=
"language" type=
"int" default=
"wxLANGUAGE_DEFAULT"/> 
8088           <param name=
"flags" type=
"int" default=
"wxLOCALE_LOAD_DEFAULT|wxLOCALE_CONV_ENCODING"/> 
8091       <staticmethod name=
"GetSystemLanguage" type=
"int" overloaded=
"no"> 
8092         <autodoc>Locale.GetSystemLanguage() -
> int
</autodoc> 
8094       <staticmethod name=
"GetSystemEncoding" type=
"wxFontEncoding" overloaded=
"no"> 
8095         <autodoc>Locale.GetSystemEncoding() -
> int
</autodoc> 
8097       <staticmethod name=
"GetSystemEncodingName" type=
"String" overloaded=
"no"> 
8098         <autodoc>Locale.GetSystemEncodingName() -
> String
</autodoc> 
8100       <method name=
"IsOk" type=
"bool" overloaded=
"no"> 
8101         <autodoc>IsOk() -
> bool
</autodoc> 
8103       <method name=
"GetLocale" type=
"String" overloaded=
"no"> 
8104         <autodoc>GetLocale() -
> String
</autodoc> 
8106       <method name=
"GetLanguage" type=
"int" overloaded=
"no"> 
8107         <autodoc>GetLanguage() -
> int
</autodoc> 
8109       <method name=
"GetSysName" type=
"String" overloaded=
"no"> 
8110         <autodoc>GetSysName() -
> String
</autodoc> 
8112       <method name=
"GetCanonicalName" type=
"String" overloaded=
"no"> 
8113         <autodoc>GetCanonicalName() -
> String
</autodoc> 
8115       <staticmethod name=
"AddCatalogLookupPathPrefix" type=
"" overloaded=
"no"> 
8116         <autodoc>Locale.AddCatalogLookupPathPrefix(String prefix)
</autodoc> 
8118           <param name=
"prefix" type=
"String" default=
""/> 
8121       <method name=
"AddCatalog" type=
"bool" overloaded=
"no"> 
8122         <autodoc>AddCatalog(String szDomain) -
> bool
</autodoc> 
8124           <param name=
"szDomain" type=
"String" default=
""/> 
8127       <method name=
"IsLoaded" type=
"bool" overloaded=
"no"> 
8128         <autodoc>IsLoaded(String szDomain) -
> bool
</autodoc> 
8130           <param name=
"szDomain" type=
"String" default=
""/> 
8133       <staticmethod name=
"GetLanguageInfo" type=
"LanguageInfo" overloaded=
"no"> 
8134         <autodoc>Locale.GetLanguageInfo(int lang) -
> LanguageInfo
</autodoc> 
8136           <param name=
"lang" type=
"int" default=
""/> 
8139       <staticmethod name=
"GetLanguageName" type=
"String" overloaded=
"no"> 
8140         <autodoc>Locale.GetLanguageName(int lang) -
> String
</autodoc> 
8142           <param name=
"lang" type=
"int" default=
""/> 
8145       <staticmethod name=
"FindLanguageInfo" type=
"LanguageInfo" overloaded=
"no"> 
8146         <autodoc>Locale.FindLanguageInfo(String locale) -
> LanguageInfo
</autodoc> 
8148           <param name=
"locale" type=
"String" default=
""/> 
8151       <staticmethod name=
"AddLanguage" type=
"" overloaded=
"no"> 
8152         <autodoc>Locale.AddLanguage(LanguageInfo info)
</autodoc> 
8154           <param name=
"info" type=
"LanguageInfo" default=
""/> 
8157       <method name=
"GetString" type=
"String" overloaded=
"no"> 
8158         <autodoc>GetString(String szOrigString, String szDomain=EmptyString) -
> String
</autodoc> 
8160           <param name=
"szOrigString" type=
"String" default=
""/> 
8161           <param name=
"szDomain" type=
"String" default=
"wxPyEmptyString"/> 
8164       <method name=
"GetName" type=
"String" overloaded=
"no"> 
8165         <autodoc>GetName() -
> String
</autodoc> 
8168     <method name=
"GetLocale" oldname=
"wxGetLocale" type=
"Locale" overloaded=
"no"> 
8169       <autodoc>GetLocale() -
> Locale
</autodoc> 
8171     <method name=
"GetTranslation" oldname=
"wxGetTranslation" type=
"String" overloaded=
"yes"> 
8173         <param name=
"sz" type=
"String" default=
""/> 
8176     <method name=
"GetTranslation" oldname=
"wxGetTranslation" type=
"String" overloaded=
"yes"> 
8177       <autodoc>GetTranslation(String sz) -
> String
 
8178 GetTranslation(String sz1, String sz2, size_t n) -
> String
</autodoc> 
8180         <param name=
"sz1" type=
"String" default=
""/> 
8181         <param name=
"sz2" type=
"String" default=
""/> 
8182         <param name=
"n" type=
"size_t" default=
""/> 
8186 #---------------------------------------------------------------------------
 
8188     <class name=
"EncodingConverter" oldname=
"wxEncodingConverter" module=
"gdi"> 
8189       <baseclass name=
"Object"/> 
8190       <constructor name=
"EncodingConverter" overloaded=
"no"> 
8191         <autodoc>__init__() -
> EncodingConverter
</autodoc> 
8193       <destructor name=
"~wxEncodingConverter" overloaded=
"no"> 
8194         <autodoc>__del__()
</autodoc> 
8196       <method name=
"Init" type=
"bool" overloaded=
"no"> 
8197         <autodoc>Init(int input_enc, int output_enc, int method=CONVERT_STRICT) -
> bool
</autodoc> 
8199           <param name=
"input_enc" type=
"wxFontEncoding" default=
""/> 
8200           <param name=
"output_enc" type=
"wxFontEncoding" default=
""/> 
8201           <param name=
"method" type=
"int" default=
"wxCONVERT_STRICT"/> 
8204       <method name=
"Convert" type=
"String" overloaded=
"no"> 
8205         <autodoc>Convert(String input) -
> String
</autodoc> 
8207           <param name=
"input" type=
"String" default=
""/> 
8210       <staticmethod name=
"GetPlatformEquivalents" type=
"wxFontEncodingArray" overloaded=
"no"> 
8211         <autodoc>EncodingConverter.GetPlatformEquivalents(int enc, int platform=PLATFORM_CURRENT) -
> wxFontEncodingArray
</autodoc> 
8213           <param name=
"enc" type=
"wxFontEncoding" default=
""/> 
8214           <param name=
"platform" type=
"int" default=
"wxPLATFORM_CURRENT"/> 
8217       <staticmethod name=
"GetAllEquivalents" type=
"wxFontEncodingArray" overloaded=
"no"> 
8218         <autodoc>EncodingConverter.GetAllEquivalents(int enc) -
> wxFontEncodingArray
</autodoc> 
8220           <param name=
"enc" type=
"wxFontEncoding" default=
""/> 
8223       <staticmethod name=
"CanConvert" type=
"bool" overloaded=
"no"> 
8224         <autodoc>EncodingConverter.CanConvert(int encIn, int encOut) -
> bool
</autodoc> 
8226           <param name=
"encIn" type=
"wxFontEncoding" default=
""/> 
8227           <param name=
"encOut" type=
"wxFontEncoding" default=
""/> 
8231     <pythoncode>#----------------------------------------------------------------------------
 
8232 # wxGTK sets the locale when initialized.  Doing this at the Python
 
8233 # level should set it up to match what GTK is doing at the C level.
 
8234 if wx.Platform == "__WXGTK__":
 
8237         locale.setlocale(locale.LC_ALL, "")
 
8241 # On MSW add the directory where the wxWindows catalogs were installed
 
8242 # to the default catalog path.
 
8243 if wx.Platform == "__WXMSW__":
 
8245     localedir = os.path.join(os.path.split(__file__)[
0], "locale")
 
8246     Locale_AddCatalogLookupPathPrefix(localedir)
 
8249 #----------------------------------------------------------------------------
 
8252 #---------------------------------------------------------------------------
 
8254     <class name=
"DC" oldname=
"wxDC" module=
"gdi"> 
8255       <baseclass name=
"Object"/> 
8256       <destructor name=
"~wxDC" overloaded=
"no"> 
8257         <autodoc>__del__()
</autodoc> 
8259       <method name=
"BeginDrawing" type=
"" overloaded=
"no"> 
8260         <autodoc>BeginDrawing()
</autodoc> 
8262       <method name=
"EndDrawing" type=
"" overloaded=
"no"> 
8263         <autodoc>EndDrawing()
</autodoc> 
8265       <method name=
"FloodFillXY" type=
"bool" overloaded=
"no"> 
8266         <autodoc>FloodFillXY(int x, int y, Colour col, int style=FLOOD_SURFACE) -
> bool
</autodoc> 
8268           <param name=
"x" type=
"int" default=
""/> 
8269           <param name=
"y" type=
"int" default=
""/> 
8270           <param name=
"col" type=
"Colour" default=
""/> 
8271           <param name=
"style" type=
"int" default=
"wxFLOOD_SURFACE"/> 
8274       <method name=
"FloodFill" type=
"bool" overloaded=
"no"> 
8275         <autodoc>FloodFill(Point pt, Colour col, int style=FLOOD_SURFACE) -
> bool
</autodoc> 
8277           <param name=
"pt" type=
"Point" default=
""/> 
8278           <param name=
"col" type=
"Colour" default=
""/> 
8279           <param name=
"style" type=
"int" default=
"wxFLOOD_SURFACE"/> 
8282       <method name=
"GetPixelXY" type=
"Colour" overloaded=
"no"> 
8283         <autodoc>GetPixelXY(int x, int y) -
> Colour
</autodoc> 
8285           <param name=
"x" type=
"int" default=
""/> 
8286           <param name=
"y" type=
"int" default=
""/> 
8289       <method name=
"GetPixel" type=
"Colour" overloaded=
"no"> 
8290         <autodoc>GetPixel(Point pt) -
> Colour
</autodoc> 
8292           <param name=
"pt" type=
"Point" default=
""/> 
8295       <method name=
"DrawLineXY" type=
"" overloaded=
"no"> 
8296         <autodoc>DrawLineXY(int x1, int y1, int x2, int y2)
</autodoc> 
8298           <param name=
"x1" type=
"int" default=
""/> 
8299           <param name=
"y1" type=
"int" default=
""/> 
8300           <param name=
"x2" type=
"int" default=
""/> 
8301           <param name=
"y2" type=
"int" default=
""/> 
8304       <method name=
"DrawLine" type=
"" overloaded=
"no"> 
8305         <autodoc>DrawLine(Point pt1, Point pt2)
</autodoc> 
8307           <param name=
"pt1" type=
"Point" default=
""/> 
8308           <param name=
"pt2" type=
"Point" default=
""/> 
8311       <method name=
"CrossHairXY" type=
"" overloaded=
"no"> 
8312         <autodoc>CrossHairXY(int x, int y)
</autodoc> 
8314           <param name=
"x" type=
"int" default=
""/> 
8315           <param name=
"y" type=
"int" default=
""/> 
8318       <method name=
"CrossHair" type=
"" overloaded=
"no"> 
8319         <autodoc>CrossHair(Point pt)
</autodoc> 
8321           <param name=
"pt" type=
"Point" default=
""/> 
8324       <method name=
"DrawArcXY" type=
"" overloaded=
"no"> 
8325         <autodoc>DrawArcXY(int x1, int y1, int x2, int y2, int xc, int yc)
</autodoc> 
8327           <param name=
"x1" type=
"int" default=
""/> 
8328           <param name=
"y1" type=
"int" default=
""/> 
8329           <param name=
"x2" type=
"int" default=
""/> 
8330           <param name=
"y2" type=
"int" default=
""/> 
8331           <param name=
"xc" type=
"int" default=
""/> 
8332           <param name=
"yc" type=
"int" default=
""/> 
8335       <method name=
"DrawArc" type=
"" overloaded=
"no"> 
8336         <autodoc>DrawArc(Point pt1, Point pt2, Point centre)
</autodoc> 
8338           <param name=
"pt1" type=
"Point" default=
""/> 
8339           <param name=
"pt2" type=
"Point" default=
""/> 
8340           <param name=
"centre" type=
"Point" default=
""/> 
8343       <method name=
"DrawCheckMarkXY" type=
"" overloaded=
"no"> 
8344         <autodoc>DrawCheckMarkXY(int x, int y, int width, int height)
</autodoc> 
8346           <param name=
"x" type=
"int" default=
""/> 
8347           <param name=
"y" type=
"int" default=
""/> 
8348           <param name=
"width" type=
"int" default=
""/> 
8349           <param name=
"height" type=
"int" default=
""/> 
8352       <method name=
"DrawCheckMark" type=
"" overloaded=
"no"> 
8353         <autodoc>DrawCheckMark(Rect rect)
</autodoc> 
8355           <param name=
"rect" type=
"Rect" default=
""/> 
8358       <method name=
"DrawEllipticArcXY" type=
"" overloaded=
"no"> 
8359         <autodoc>DrawEllipticArcXY(int x, int y, int w, int h, double sa, double ea)
</autodoc> 
8361           <param name=
"x" type=
"int" default=
""/> 
8362           <param name=
"y" type=
"int" default=
""/> 
8363           <param name=
"w" type=
"int" default=
""/> 
8364           <param name=
"h" type=
"int" default=
""/> 
8365           <param name=
"sa" type=
"double" default=
""/> 
8366           <param name=
"ea" type=
"double" default=
""/> 
8369       <method name=
"DrawEllipticArc" type=
"" overloaded=
"no"> 
8370         <autodoc>DrawEllipticArc(Point pt, Size sz, double sa, double ea)
</autodoc> 
8372           <param name=
"pt" type=
"Point" default=
""/> 
8373           <param name=
"sz" type=
"Size" default=
""/> 
8374           <param name=
"sa" type=
"double" default=
""/> 
8375           <param name=
"ea" type=
"double" default=
""/> 
8378       <method name=
"DrawPointXY" type=
"" overloaded=
"no"> 
8379         <autodoc>DrawPointXY(int x, int y)
</autodoc> 
8381           <param name=
"x" type=
"int" default=
""/> 
8382           <param name=
"y" type=
"int" default=
""/> 
8385       <method name=
"DrawPoint" type=
"" overloaded=
"no"> 
8386         <autodoc>DrawPoint(Point pt)
</autodoc> 
8388           <param name=
"pt" type=
"Point" default=
""/> 
8391       <method name=
"DrawRectangleXY" type=
"" overloaded=
"no"> 
8392         <autodoc>DrawRectangleXY(int x, int y, int width, int height)
</autodoc> 
8394           <param name=
"x" type=
"int" default=
""/> 
8395           <param name=
"y" type=
"int" default=
""/> 
8396           <param name=
"width" type=
"int" default=
""/> 
8397           <param name=
"height" type=
"int" default=
""/> 
8400       <method name=
"DrawRectangle" type=
"" overloaded=
"no"> 
8401         <autodoc>DrawRectangle(Point pt, Size sz)
</autodoc> 
8403           <param name=
"pt" type=
"Point" default=
""/> 
8404           <param name=
"sz" type=
"Size" default=
""/> 
8407       <method name=
"DrawRectangleRect" type=
"" overloaded=
"no"> 
8408         <autodoc>DrawRectangleRect(Rect rect)
</autodoc> 
8410           <param name=
"rect" type=
"Rect" default=
""/> 
8413       <method name=
"DrawRoundedRectangleXY" type=
"" overloaded=
"no"> 
8414         <autodoc>DrawRoundedRectangleXY(int x, int y, int width, int height, double radius)
</autodoc> 
8416           <param name=
"x" type=
"int" default=
""/> 
8417           <param name=
"y" type=
"int" default=
""/> 
8418           <param name=
"width" type=
"int" default=
""/> 
8419           <param name=
"height" type=
"int" default=
""/> 
8420           <param name=
"radius" type=
"double" default=
""/> 
8423       <method name=
"DrawRoundedRectangle" type=
"" overloaded=
"no"> 
8424         <autodoc>DrawRoundedRectangle(Point pt, Size sz, double radius)
</autodoc> 
8426           <param name=
"pt" type=
"Point" default=
""/> 
8427           <param name=
"sz" type=
"Size" default=
""/> 
8428           <param name=
"radius" type=
"double" default=
""/> 
8431       <method name=
"DrawRoundedRectangleRect" type=
"" overloaded=
"no"> 
8432         <autodoc>DrawRoundedRectangleRect(Rect r, double radius)
</autodoc> 
8434           <param name=
"r" type=
"Rect" default=
""/> 
8435           <param name=
"radius" type=
"double" default=
""/> 
8438       <method name=
"DrawCircleXY" type=
"" overloaded=
"no"> 
8439         <autodoc>DrawCircleXY(int x, int y, int radius)
</autodoc> 
8441           <param name=
"x" type=
"int" default=
""/> 
8442           <param name=
"y" type=
"int" default=
""/> 
8443           <param name=
"radius" type=
"int" default=
""/> 
8446       <method name=
"DrawCircle" type=
"" overloaded=
"no"> 
8447         <autodoc>DrawCircle(Point pt, int radius)
</autodoc> 
8449           <param name=
"pt" type=
"Point" default=
""/> 
8450           <param name=
"radius" type=
"int" default=
""/> 
8453       <method name=
"DrawEllipseXY" type=
"" overloaded=
"no"> 
8454         <autodoc>DrawEllipseXY(int x, int y, int width, int height)
</autodoc> 
8456           <param name=
"x" type=
"int" default=
""/> 
8457           <param name=
"y" type=
"int" default=
""/> 
8458           <param name=
"width" type=
"int" default=
""/> 
8459           <param name=
"height" type=
"int" default=
""/> 
8462       <method name=
"DrawEllipse" type=
"" overloaded=
"no"> 
8463         <autodoc>DrawEllipse(Point pt, Size sz)
</autodoc> 
8465           <param name=
"pt" type=
"Point" default=
""/> 
8466           <param name=
"sz" type=
"Size" default=
""/> 
8469       <method name=
"DrawEllipseRect" type=
"" overloaded=
"no"> 
8470         <autodoc>DrawEllipseRect(Rect rect)
</autodoc> 
8472           <param name=
"rect" type=
"Rect" default=
""/> 
8475       <method name=
"DrawIconXY" type=
"" overloaded=
"no"> 
8476         <autodoc>DrawIconXY(Icon icon, int x, int y)
</autodoc> 
8478           <param name=
"icon" type=
"Icon" default=
""/> 
8479           <param name=
"x" type=
"int" default=
""/> 
8480           <param name=
"y" type=
"int" default=
""/> 
8483       <method name=
"DrawIcon" type=
"" overloaded=
"no"> 
8484         <autodoc>DrawIcon(Icon icon, Point pt)
</autodoc> 
8486           <param name=
"icon" type=
"Icon" default=
""/> 
8487           <param name=
"pt" type=
"Point" default=
""/> 
8490       <method name=
"DrawBitmapXY" type=
"" overloaded=
"no"> 
8491         <autodoc>DrawBitmapXY(Bitmap bmp, int x, int y, bool useMask=False)
</autodoc> 
8493           <param name=
"bmp" type=
"Bitmap" default=
""/> 
8494           <param name=
"x" type=
"int" default=
""/> 
8495           <param name=
"y" type=
"int" default=
""/> 
8496           <param name=
"useMask" type=
"bool" default=
"False"/> 
8499       <method name=
"DrawBitmap" type=
"" overloaded=
"no"> 
8500         <autodoc>DrawBitmap(Bitmap bmp, Point pt, bool useMask=False)
</autodoc> 
8502           <param name=
"bmp" type=
"Bitmap" default=
""/> 
8503           <param name=
"pt" type=
"Point" default=
""/> 
8504           <param name=
"useMask" type=
"bool" default=
"False"/> 
8507       <method name=
"DrawTextXY" type=
"" overloaded=
"no"> 
8508         <autodoc>DrawTextXY(String text, int x, int y)
</autodoc> 
8510           <param name=
"text" type=
"String" default=
""/> 
8511           <param name=
"x" type=
"int" default=
""/> 
8512           <param name=
"y" type=
"int" default=
""/> 
8515       <method name=
"DrawText" type=
"" overloaded=
"no"> 
8516         <autodoc>DrawText(String text, Point pt)
</autodoc> 
8518           <param name=
"text" type=
"String" default=
""/> 
8519           <param name=
"pt" type=
"Point" default=
""/> 
8522       <method name=
"DrawRotatedTextXY" type=
"" overloaded=
"no"> 
8523         <autodoc>DrawRotatedTextXY(String text, int x, int y, double angle)
</autodoc> 
8525           <param name=
"text" type=
"String" default=
""/> 
8526           <param name=
"x" type=
"int" default=
""/> 
8527           <param name=
"y" type=
"int" default=
""/> 
8528           <param name=
"angle" type=
"double" default=
""/> 
8531       <method name=
"DrawRotatedText" type=
"" overloaded=
"no"> 
8532         <autodoc>DrawRotatedText(String text, Point pt, double angle)
</autodoc> 
8534           <param name=
"text" type=
"String" default=
""/> 
8535           <param name=
"pt" type=
"Point" default=
""/> 
8536           <param name=
"angle" type=
"double" default=
""/> 
8539       <method name=
"BlitXY" type=
"bool" overloaded=
"no"> 
8540         <autodoc>BlitXY(int xdest, int ydest, int width, int height, DC source, 
 
8541     int xsrc, int ysrc, int rop=COPY, bool useMask=False, 
 
8542     int xsrcMask=-
1, int ysrcMask=-
1) -
> bool
</autodoc> 
8544           <param name=
"xdest" type=
"int" default=
""/> 
8545           <param name=
"ydest" type=
"int" default=
""/> 
8546           <param name=
"width" type=
"int" default=
""/> 
8547           <param name=
"height" type=
"int" default=
""/> 
8548           <param name=
"source" type=
"DC" default=
""/> 
8549           <param name=
"xsrc" type=
"int" default=
""/> 
8550           <param name=
"ysrc" type=
"int" default=
""/> 
8551           <param name=
"rop" type=
"int" default=
"wxCOPY"/> 
8552           <param name=
"useMask" type=
"bool" default=
"False"/> 
8553           <param name=
"xsrcMask" type=
"int" default=
"-1"/> 
8554           <param name=
"ysrcMask" type=
"int" default=
"-1"/> 
8557       <method name=
"Blit" type=
"bool" overloaded=
"no"> 
8558         <autodoc>Blit(Point destPt, Size sz, DC source, Point srcPt, int rop=COPY, 
 
8559     bool useMask=False, Point srcPtMask=DefaultPosition) -
> bool
</autodoc> 
8561           <param name=
"destPt" type=
"Point" default=
""/> 
8562           <param name=
"sz" type=
"Size" default=
""/> 
8563           <param name=
"source" type=
"DC" default=
""/> 
8564           <param name=
"srcPt" type=
"Point" default=
""/> 
8565           <param name=
"rop" type=
"int" default=
"wxCOPY"/> 
8566           <param name=
"useMask" type=
"bool" default=
"False"/> 
8567           <param name=
"srcPtMask" type=
"Point" default=
"wxDefaultPosition"/> 
8570       <method name=
"DrawLines" type=
"" overloaded=
"no"> 
8571         <autodoc>DrawLines(int points, Point points_array, int xoffset=
0, int yoffset=
0)
</autodoc> 
8573           <param name=
"points" type=
"int" default=
""/> 
8574           <param name=
"points_array" type=
"Point" default=
""/> 
8575           <param name=
"xoffset" type=
"int" default=
"0"/> 
8576           <param name=
"yoffset" type=
"int" default=
"0"/> 
8579       <method name=
"DrawPolygon" type=
"" overloaded=
"no"> 
8580         <autodoc>DrawPolygon(int points, Point points_array, int xoffset=
0, int yoffset=
0, 
 
8581     int fillStyle=ODDEVEN_RULE)
</autodoc> 
8583           <param name=
"points" type=
"int" default=
""/> 
8584           <param name=
"points_array" type=
"Point" default=
""/> 
8585           <param name=
"xoffset" type=
"int" default=
"0"/> 
8586           <param name=
"yoffset" type=
"int" default=
"0"/> 
8587           <param name=
"fillStyle" type=
"int" default=
"wxODDEVEN_RULE"/> 
8590       <method name=
"DrawLabel" type=
"" overloaded=
"no"> 
8591         <autodoc>DrawLabel(String text, Rect rect, int alignment=wxALIGN_LEFT|wxALIGN_TOP, 
 
8592     int indexAccel=-
1)
</autodoc> 
8594           <param name=
"text" type=
"String" default=
""/> 
8595           <param name=
"rect" type=
"Rect" default=
""/> 
8596           <param name=
"alignment" type=
"int" default=
"wxALIGN_LEFT|wxALIGN_TOP"/> 
8597           <param name=
"indexAccel" type=
"int" default=
"-1"/> 
8600       <method name=
"DrawImageLabel" type=
"Rect" overloaded=
"no"> 
8601         <autodoc>DrawImageLabel(String text, Bitmap image, Rect rect, int alignment=wxALIGN_LEFT|wxALIGN_TOP, 
 
8602     int indexAccel=-
1) -
> Rect
</autodoc> 
8604           <param name=
"text" type=
"String" default=
""/> 
8605           <param name=
"image" type=
"Bitmap" default=
""/> 
8606           <param name=
"rect" type=
"Rect" default=
""/> 
8607           <param name=
"alignment" type=
"int" default=
"wxALIGN_LEFT|wxALIGN_TOP"/> 
8608           <param name=
"indexAccel" type=
"int" default=
"-1"/> 
8611       <method name=
"DrawSpline" type=
"" overloaded=
"no"> 
8612         <autodoc>DrawSpline(int points, Point points_array)
</autodoc> 
8614           <param name=
"points" type=
"int" default=
""/> 
8615           <param name=
"points_array" type=
"Point" default=
""/> 
8618       <method name=
"Clear" type=
"" overloaded=
"no"> 
8619         <autodoc>Clear()
</autodoc> 
8621       <method name=
"StartDoc" type=
"bool" overloaded=
"no"> 
8622         <autodoc>StartDoc(String message) -
> bool
</autodoc> 
8624           <param name=
"message" type=
"String" default=
""/> 
8627       <method name=
"EndDoc" type=
"" overloaded=
"no"> 
8628         <autodoc>EndDoc()
</autodoc> 
8630       <method name=
"StartPage" type=
"" overloaded=
"no"> 
8631         <autodoc>StartPage()
</autodoc> 
8633       <method name=
"EndPage" type=
"" overloaded=
"no"> 
8634         <autodoc>EndPage()
</autodoc> 
8636       <method name=
"SetFont" type=
"" overloaded=
"no"> 
8637         <autodoc>SetFont(Font font)
</autodoc> 
8639           <param name=
"font" type=
"Font" default=
""/> 
8642       <method name=
"SetPen" type=
"" overloaded=
"no"> 
8643         <autodoc>SetPen(Pen pen)
</autodoc> 
8645           <param name=
"pen" type=
"Pen" default=
""/> 
8648       <method name=
"SetBrush" type=
"" overloaded=
"no"> 
8649         <autodoc>SetBrush(Brush brush)
</autodoc> 
8651           <param name=
"brush" type=
"Brush" default=
""/> 
8654       <method name=
"SetBackground" type=
"" overloaded=
"no"> 
8655         <autodoc>SetBackground(Brush brush)
</autodoc> 
8657           <param name=
"brush" type=
"Brush" default=
""/> 
8660       <method name=
"SetBackgroundMode" type=
"" overloaded=
"no"> 
8661         <autodoc>SetBackgroundMode(int mode)
</autodoc> 
8663           <param name=
"mode" type=
"int" default=
""/> 
8666       <method name=
"SetPalette" type=
"" overloaded=
"no"> 
8667         <autodoc>SetPalette(Palette palette)
</autodoc> 
8669           <param name=
"palette" type=
"Palette" default=
""/> 
8672       <method name=
"SetClippingRegionXY" type=
"" overloaded=
"no"> 
8673         <autodoc>SetClippingRegionXY(int x, int y, int width, int height)
</autodoc> 
8675           <param name=
"x" type=
"int" default=
""/> 
8676           <param name=
"y" type=
"int" default=
""/> 
8677           <param name=
"width" type=
"int" default=
""/> 
8678           <param name=
"height" type=
"int" default=
""/> 
8681       <method name=
"SetClippingRegion" type=
"" overloaded=
"no"> 
8682         <autodoc>SetClippingRegion(Point pt, Size sz)
</autodoc> 
8684           <param name=
"pt" type=
"Point" default=
""/> 
8685           <param name=
"sz" type=
"Size" default=
""/> 
8688       <method name=
"SetClippingRect" type=
"" overloaded=
"no"> 
8689         <autodoc>SetClippingRect(Rect rect)
</autodoc> 
8691           <param name=
"rect" type=
"Rect" default=
""/> 
8694       <method name=
"SetClippingRegionAsRegion" type=
"" overloaded=
"no"> 
8695         <autodoc>SetClippingRegionAsRegion(Region region)
</autodoc> 
8697           <param name=
"region" type=
"Region" default=
""/> 
8700       <method name=
"DestroyClippingRegion" type=
"" overloaded=
"no"> 
8701         <autodoc>DestroyClippingRegion()
</autodoc> 
8703       <method name=
"GetClippingBox" type=
"" overloaded=
"no"> 
8704         <autodoc>GetClippingBox() -
> (x, y, width, height)
</autodoc> 
8706           <param name=
"OUTPUT" type=
"int" default=
""/> 
8707           <param name=
"OUTPUT" type=
"int" default=
""/> 
8708           <param name=
"OUTPUT" type=
"int" default=
""/> 
8709           <param name=
"OUTPUT" type=
"int" default=
""/> 
8712       <method name=
"GetClippingRect" type=
"Rect" overloaded=
"no"> 
8713         <autodoc>GetClippingRect() -
> Rect
</autodoc> 
8715       <method name=
"GetCharHeight" type=
"int" overloaded=
"no"> 
8716         <autodoc>GetCharHeight() -
> int
</autodoc> 
8718       <method name=
"GetCharWidth" type=
"int" overloaded=
"no"> 
8719         <autodoc>GetCharWidth() -
> int
</autodoc> 
8721       <method name=
"GetTextExtent" type=
"" overloaded=
"no"> 
8722         <autodoc>GetTextExtent(wxString string) -
> (width, height)
</autodoc> 
8723         <docstring>Get the width and height of the text using the current font.
 
8724 Only works for single line strings.
</docstring> 
8726           <param name=
"string" type=
"String" default=
""/> 
8727           <param name=
"OUTPUT" type=
"int" default=
""/> 
8728           <param name=
"OUTPUT" type=
"int" default=
""/> 
8731       <method name=
"GetFullTextExtent" type=
"" overloaded=
"no"> 
8732         <autodoc>GetFullTextExtent(wxString string, Font font=None) -
> 
8733    (width, height, descent, externalLeading)
</autodoc> 
8734         <docstring>Get the width, height, decent and leading of the text using the current or specified font.
 
8735 Only works for single line strings.
</docstring> 
8737           <param name=
"string" type=
"String" default=
""/> 
8738           <param name=
"OUTPUT" type=
"int" default=
""/> 
8739           <param name=
"OUTPUT" type=
"int" default=
""/> 
8740           <param name=
"OUTPUT" type=
"int" default=
""/> 
8741           <param name=
"OUTPUT" type=
"int" default=
""/> 
8742           <param name=
"font" type=
"Font" default=
"NULL"/> 
8745       <method name=
"GetMultiLineTextExtent" type=
"" overloaded=
"no"> 
8746         <autodoc>GetMultiLineTextExtent(wxString string, Font font=None) -
> 
8747    (width, height, descent, externalLeading)
</autodoc> 
8748         <docstring>Get the width, height, decent and leading of the text using the current or specified font.
 
8749 Works for single as well as multi-line strings.
</docstring> 
8751           <param name=
"text" type=
"String" default=
""/> 
8752           <param name=
"OUTPUT" type=
"int" default=
""/> 
8753           <param name=
"OUTPUT" type=
"int" default=
""/> 
8754           <param name=
"OUTPUT" type=
"int" default=
""/> 
8755           <param name=
"font" type=
"Font" default=
"NULL"/> 
8758       <method name=
"GetSize" type=
"Size" overloaded=
"no"> 
8759         <autodoc>GetSize() -
> Size
</autodoc> 
8760         <docstring>Get the DC size in device units.
</docstring> 
8762       <method name=
"GetSizeTuple" type=
"" overloaded=
"no"> 
8763         <autodoc>GetSizeTuple() -
> (width, height)
</autodoc> 
8764         <docstring>Get the DC size in device units.
</docstring> 
8766           <param name=
"OUTPUT" type=
"int" default=
""/> 
8767           <param name=
"OUTPUT" type=
"int" default=
""/> 
8770       <method name=
"GetSizeMM" type=
"Size" overloaded=
"no"> 
8771         <autodoc>GetSizeMM() -
> Size
</autodoc> 
8772         <docstring>Get the DC size in milimeters.
</docstring> 
8774       <method name=
"GetSizeMMTuple" type=
"" overloaded=
"no"> 
8775         <autodoc>GetSizeMMTuple() -
> (width, height)
</autodoc> 
8776         <docstring>Get the DC size in milimeters.
</docstring> 
8778           <param name=
"OUTPUT" type=
"int" default=
""/> 
8779           <param name=
"OUTPUT" type=
"int" default=
""/> 
8782       <method name=
"DeviceToLogicalX" type=
"int" overloaded=
"no"> 
8783         <autodoc>DeviceToLogicalX(int x) -
> int
</autodoc> 
8785           <param name=
"x" type=
"int" default=
""/> 
8788       <method name=
"DeviceToLogicalY" type=
"int" overloaded=
"no"> 
8789         <autodoc>DeviceToLogicalY(int y) -
> int
</autodoc> 
8791           <param name=
"y" type=
"int" default=
""/> 
8794       <method name=
"DeviceToLogicalXRel" type=
"int" overloaded=
"no"> 
8795         <autodoc>DeviceToLogicalXRel(int x) -
> int
</autodoc> 
8797           <param name=
"x" type=
"int" default=
""/> 
8800       <method name=
"DeviceToLogicalYRel" type=
"int" overloaded=
"no"> 
8801         <autodoc>DeviceToLogicalYRel(int y) -
> int
</autodoc> 
8803           <param name=
"y" type=
"int" default=
""/> 
8806       <method name=
"LogicalToDeviceX" type=
"int" overloaded=
"no"> 
8807         <autodoc>LogicalToDeviceX(int x) -
> int
</autodoc> 
8809           <param name=
"x" type=
"int" default=
""/> 
8812       <method name=
"LogicalToDeviceY" type=
"int" overloaded=
"no"> 
8813         <autodoc>LogicalToDeviceY(int y) -
> int
</autodoc> 
8815           <param name=
"y" type=
"int" default=
""/> 
8818       <method name=
"LogicalToDeviceXRel" type=
"int" overloaded=
"no"> 
8819         <autodoc>LogicalToDeviceXRel(int x) -
> int
</autodoc> 
8821           <param name=
"x" type=
"int" default=
""/> 
8824       <method name=
"LogicalToDeviceYRel" type=
"int" overloaded=
"no"> 
8825         <autodoc>LogicalToDeviceYRel(int y) -
> int
</autodoc> 
8827           <param name=
"y" type=
"int" default=
""/> 
8830       <method name=
"CanDrawBitmap" type=
"bool" overloaded=
"no"> 
8831         <autodoc>CanDrawBitmap() -
> bool
</autodoc> 
8833       <method name=
"CanGetTextExtent" type=
"bool" overloaded=
"no"> 
8834         <autodoc>CanGetTextExtent() -
> bool
</autodoc> 
8836       <method name=
"GetDepth" type=
"int" overloaded=
"no"> 
8837         <autodoc>GetDepth() -
> int
</autodoc> 
8839       <method name=
"GetPPI" type=
"Size" overloaded=
"no"> 
8840         <autodoc>GetPPI() -
> Size
</autodoc> 
8842       <method name=
"Ok" type=
"bool" overloaded=
"no"> 
8843         <autodoc>Ok() -
> bool
</autodoc> 
8845       <method name=
"GetBackgroundMode" type=
"int" overloaded=
"no"> 
8846         <autodoc>GetBackgroundMode() -
> int
</autodoc> 
8848       <method name=
"GetBackground" type=
"Brush" overloaded=
"no"> 
8849         <autodoc>GetBackground() -
> Brush
</autodoc> 
8851       <method name=
"GetBrush" type=
"Brush" overloaded=
"no"> 
8852         <autodoc>GetBrush() -
> Brush
</autodoc> 
8854       <method name=
"GetFont" type=
"Font" overloaded=
"no"> 
8855         <autodoc>GetFont() -
> Font
</autodoc> 
8857       <method name=
"GetPen" type=
"Pen" overloaded=
"no"> 
8858         <autodoc>GetPen() -
> Pen
</autodoc> 
8860       <method name=
"GetTextBackground" type=
"Colour" overloaded=
"no"> 
8861         <autodoc>GetTextBackground() -
> Colour
</autodoc> 
8863       <method name=
"GetTextForeground" type=
"Colour" overloaded=
"no"> 
8864         <autodoc>GetTextForeground() -
> Colour
</autodoc> 
8866       <method name=
"SetTextForeground" type=
"" overloaded=
"no"> 
8867         <autodoc>SetTextForeground(Colour colour)
</autodoc> 
8869           <param name=
"colour" type=
"Colour" default=
""/> 
8872       <method name=
"SetTextBackground" type=
"" overloaded=
"no"> 
8873         <autodoc>SetTextBackground(Colour colour)
</autodoc> 
8875           <param name=
"colour" type=
"Colour" default=
""/> 
8878       <method name=
"GetMapMode" type=
"int" overloaded=
"no"> 
8879         <autodoc>GetMapMode() -
> int
</autodoc> 
8881       <method name=
"SetMapMode" type=
"" overloaded=
"no"> 
8882         <autodoc>SetMapMode(int mode)
</autodoc> 
8884           <param name=
"mode" type=
"int" default=
""/> 
8887       <method name=
"GetUserScale" type=
"" overloaded=
"no"> 
8888         <autodoc>GetUserScale() -
> (xScale, yScale)
</autodoc> 
8890           <param name=
"OUTPUT" type=
"double" default=
""/> 
8891           <param name=
"OUTPUT" type=
"double" default=
""/> 
8894       <method name=
"SetUserScale" type=
"" overloaded=
"no"> 
8895         <autodoc>SetUserScale(double x, double y)
</autodoc> 
8897           <param name=
"x" type=
"double" default=
""/> 
8898           <param name=
"y" type=
"double" default=
""/> 
8901       <method name=
"GetLogicalScale" type=
"" overloaded=
"no"> 
8902         <autodoc>GetLogicalScale() -
> (xScale, yScale)
</autodoc> 
8904           <param name=
"OUTPUT" type=
"double" default=
""/> 
8905           <param name=
"OUTPUT" type=
"double" default=
""/> 
8908       <method name=
"SetLogicalScale" type=
"" overloaded=
"no"> 
8909         <autodoc>SetLogicalScale(double x, double y)
</autodoc> 
8911           <param name=
"x" type=
"double" default=
""/> 
8912           <param name=
"y" type=
"double" default=
""/> 
8915       <method name=
"GetLogicalOrigin" type=
"Point" overloaded=
"no"> 
8916         <autodoc>GetLogicalOrigin() -
> Point
</autodoc> 
8918       <method name=
"GetLogicalOriginTuple" type=
"" overloaded=
"no"> 
8919         <autodoc>GetLogicalOriginTuple() -
> (x,y)
</autodoc> 
8921           <param name=
"OUTPUT" type=
"int" default=
""/> 
8922           <param name=
"OUTPUT" type=
"int" default=
""/> 
8925       <method name=
"SetLogicalOrigin" type=
"" overloaded=
"no"> 
8926         <autodoc>SetLogicalOrigin(int x, int y)
</autodoc> 
8928           <param name=
"x" type=
"int" default=
""/> 
8929           <param name=
"y" type=
"int" default=
""/> 
8932       <method name=
"GetDeviceOrigin" type=
"Point" overloaded=
"no"> 
8933         <autodoc>GetDeviceOrigin() -
> Point
</autodoc> 
8935       <method name=
"GetDeviceOriginTuple" type=
"" overloaded=
"no"> 
8936         <autodoc>GetDeviceOriginTuple() -
> (x,y)
</autodoc> 
8938           <param name=
"OUTPUT" type=
"int" default=
""/> 
8939           <param name=
"OUTPUT" type=
"int" default=
""/> 
8942       <method name=
"SetDeviceOrigin" type=
"" overloaded=
"no"> 
8943         <autodoc>SetDeviceOrigin(int x, int y)
</autodoc> 
8945           <param name=
"x" type=
"int" default=
""/> 
8946           <param name=
"y" type=
"int" default=
""/> 
8949       <method name=
"SetAxisOrientation" type=
"" overloaded=
"no"> 
8950         <autodoc>SetAxisOrientation(bool xLeftRight, bool yBottomUp)
</autodoc> 
8952           <param name=
"xLeftRight" type=
"bool" default=
""/> 
8953           <param name=
"yBottomUp" type=
"bool" default=
""/> 
8956       <method name=
"GetLogicalFunction" type=
"int" overloaded=
"no"> 
8957         <autodoc>GetLogicalFunction() -
> int
</autodoc> 
8959       <method name=
"SetLogicalFunction" type=
"" overloaded=
"no"> 
8960         <autodoc>SetLogicalFunction(int function)
</autodoc> 
8962           <param name=
"function" type=
"int" default=
""/> 
8965       <method name=
"SetOptimization" type=
"" overloaded=
"no"> 
8966         <autodoc>SetOptimization(bool opt)
</autodoc> 
8968           <param name=
"opt" type=
"bool" default=
""/> 
8971       <method name=
"GetOptimization" type=
"bool" overloaded=
"no"> 
8972         <autodoc>GetOptimization() -
> bool
</autodoc> 
8974       <method name=
"CalcBoundingBox" type=
"" overloaded=
"no"> 
8975         <autodoc>CalcBoundingBox(int x, int y)
</autodoc> 
8977           <param name=
"x" type=
"int" default=
""/> 
8978           <param name=
"y" type=
"int" default=
""/> 
8981       <method name=
"ResetBoundingBox" type=
"" overloaded=
"no"> 
8982         <autodoc>ResetBoundingBox()
</autodoc> 
8984       <method name=
"MinX" type=
"int" overloaded=
"no"> 
8985         <autodoc>MinX() -
> int
</autodoc> 
8987       <method name=
"MaxX" type=
"int" overloaded=
"no"> 
8988         <autodoc>MaxX() -
> int
</autodoc> 
8990       <method name=
"MinY" type=
"int" overloaded=
"no"> 
8991         <autodoc>MinY() -
> int
</autodoc> 
8993       <method name=
"MaxY" type=
"int" overloaded=
"no"> 
8994         <autodoc>MaxY() -
> int
</autodoc> 
8996       <method name=
"GetBoundingBox" type=
"" overloaded=
"no"> 
8997         <autodoc>GetBoundingBox() -
> (x1,y1, x2,y2)
</autodoc> 
8999           <param name=
"OUTPUT" type=
"int" default=
""/> 
9000           <param name=
"OUTPUT" type=
"int" default=
""/> 
9001           <param name=
"OUTPUT" type=
"int" default=
""/> 
9002           <param name=
"OUTPUT" type=
"int" default=
""/> 
9005       <method name=
"_DrawPointList" type=
"PyObject" overloaded=
"no"> 
9006         <autodoc>_DrawPointList(PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -
> PyObject
</autodoc> 
9008           <param name=
"pyCoords" type=
"PyObject" default=
""/> 
9009           <param name=
"pyPens" type=
"PyObject" default=
""/> 
9010           <param name=
"pyBrushes" type=
"PyObject" default=
""/> 
9013       <method name=
"_DrawLineList" type=
"PyObject" overloaded=
"no"> 
9014         <autodoc>_DrawLineList(PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -
> PyObject
</autodoc> 
9016           <param name=
"pyCoords" type=
"PyObject" default=
""/> 
9017           <param name=
"pyPens" type=
"PyObject" default=
""/> 
9018           <param name=
"pyBrushes" type=
"PyObject" default=
""/> 
9021       <method name=
"_DrawRectangleList" type=
"PyObject" overloaded=
"no"> 
9022         <autodoc>_DrawRectangleList(PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -
> PyObject
</autodoc> 
9024           <param name=
"pyCoords" type=
"PyObject" default=
""/> 
9025           <param name=
"pyPens" type=
"PyObject" default=
""/> 
9026           <param name=
"pyBrushes" type=
"PyObject" default=
""/> 
9029       <method name=
"_DrawEllipseList" type=
"PyObject" overloaded=
"no"> 
9030         <autodoc>_DrawEllipseList(PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -
> PyObject
</autodoc> 
9032           <param name=
"pyCoords" type=
"PyObject" default=
""/> 
9033           <param name=
"pyPens" type=
"PyObject" default=
""/> 
9034           <param name=
"pyBrushes" type=
"PyObject" default=
""/> 
9037       <method name=
"_DrawPolygonList" type=
"PyObject" overloaded=
"no"> 
9038         <autodoc>_DrawPolygonList(PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -
> PyObject
</autodoc> 
9040           <param name=
"pyCoords" type=
"PyObject" default=
""/> 
9041           <param name=
"pyPens" type=
"PyObject" default=
""/> 
9042           <param name=
"pyBrushes" type=
"PyObject" default=
""/> 
9045       <method name=
"_DrawTextList" type=
"PyObject" overloaded=
"no"> 
9046         <autodoc>_DrawTextList(PyObject textList, PyObject pyPoints, PyObject foregroundList, 
 
9047     PyObject backgroundList) -
> PyObject
</autodoc> 
9049           <param name=
"textList" type=
"PyObject" default=
""/> 
9050           <param name=
"pyPoints" type=
"PyObject" default=
""/> 
9051           <param name=
"foregroundList" type=
"PyObject" default=
""/> 
9052           <param name=
"backgroundList" type=
"PyObject" default=
""/> 
9057 #---------------------------------------------------------------------------
 
9059     <class name=
"MemoryDC" oldname=
"wxMemoryDC" module=
"gdi"> 
9060       <baseclass name=
"DC"/> 
9061       <constructor name=
"MemoryDC" overloaded=
"no"> 
9062         <autodoc>__init__() -
> MemoryDC
</autodoc> 
9064       <constructor name=
"MemoryDCFromDC" overloaded=
"no"> 
9065         <autodoc>MemoryDCFromDC(DC oldDC) -
> MemoryDC
</autodoc> 
9067           <param name=
"oldDC" type=
"DC" default=
""/> 
9070       <method name=
"SelectObject" type=
"" overloaded=
"no"> 
9071         <autodoc>SelectObject(Bitmap bitmap)
</autodoc> 
9073           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
9078 #---------------------------------------------------------------------------
 
9080     <class name=
"BufferedDC" oldname=
"wxBufferedDC" module=
"gdi"> 
9081       <baseclass name=
"MemoryDC"/> 
9082       <constructor name=
"BufferedDC" overloaded=
"no"> 
9083         <autodoc>__init__(DC dc, Bitmap buffer) -
> BufferedDC
</autodoc> 
9085           <param name=
"dc" type=
"DC" default=
""/> 
9086           <param name=
"buffer" type=
"Bitmap" default=
""/> 
9089       <constructor name=
"BufferedDCInternalBuffer" overloaded=
"no"> 
9090         <autodoc>BufferedDCInternalBuffer(DC dc, Size area) -
> BufferedDC
</autodoc> 
9092           <param name=
"dc" type=
"DC" default=
""/> 
9093           <param name=
"area" type=
"Size" default=
""/> 
9096       <method name=
"UnMask" type=
"" overloaded=
"no"> 
9097         <autodoc>UnMask()
</autodoc> 
9100     <class name=
"BufferedPaintDC" oldname=
"wxBufferedPaintDC" module=
"gdi"> 
9101       <baseclass name=
"BufferedDC"/> 
9102       <constructor name=
"BufferedPaintDC" overloaded=
"no"> 
9103         <autodoc>__init__(Window window, Bitmap buffer=NullBitmap) -
> BufferedPaintDC
</autodoc> 
9105           <param name=
"window" type=
"Window" default=
""/> 
9106           <param name=
"buffer" type=
"Bitmap" default=
"wxNullBitmap"/> 
9111 #---------------------------------------------------------------------------
 
9113     <class name=
"ScreenDC" oldname=
"wxScreenDC" module=
"gdi"> 
9114       <baseclass name=
"DC"/> 
9115       <constructor name=
"ScreenDC" overloaded=
"no"> 
9116         <autodoc>__init__() -
> ScreenDC
</autodoc> 
9118       <method name=
"StartDrawingOnTopWin" type=
"bool" overloaded=
"no"> 
9119         <autodoc>StartDrawingOnTopWin(Window window) -
> bool
</autodoc> 
9121           <param name=
"window" type=
"Window" default=
""/> 
9124       <method name=
"StartDrawingOnTop" type=
"bool" overloaded=
"no"> 
9125         <autodoc>StartDrawingOnTop(Rect rect=None) -
> bool
</autodoc> 
9127           <param name=
"rect" type=
"Rect" default=
"NULL"/> 
9130       <method name=
"EndDrawingOnTop" type=
"bool" overloaded=
"no"> 
9131         <autodoc>EndDrawingOnTop() -
> bool
</autodoc> 
9135 #---------------------------------------------------------------------------
 
9137     <class name=
"ClientDC" oldname=
"wxClientDC" module=
"gdi"> 
9138       <baseclass name=
"DC"/> 
9139       <constructor name=
"ClientDC" overloaded=
"no"> 
9140         <autodoc>__init__(Window win) -
> ClientDC
</autodoc> 
9142           <param name=
"win" type=
"Window" default=
""/> 
9147 #---------------------------------------------------------------------------
 
9149     <class name=
"PaintDC" oldname=
"wxPaintDC" module=
"gdi"> 
9150       <baseclass name=
"DC"/> 
9151       <constructor name=
"PaintDC" overloaded=
"no"> 
9152         <autodoc>__init__(Window win) -
> PaintDC
</autodoc> 
9154           <param name=
"win" type=
"Window" default=
""/> 
9159 #---------------------------------------------------------------------------
 
9161     <class name=
"WindowDC" oldname=
"wxWindowDC" module=
"gdi"> 
9162       <baseclass name=
"DC"/> 
9163       <constructor name=
"WindowDC" overloaded=
"no"> 
9164         <autodoc>__init__(Window win) -
> WindowDC
</autodoc> 
9166           <param name=
"win" type=
"Window" default=
""/> 
9171 #---------------------------------------------------------------------------
 
9173     <class name=
"MirrorDC" oldname=
"wxMirrorDC" module=
"gdi"> 
9174       <baseclass name=
"DC"/> 
9175       <constructor name=
"MirrorDC" overloaded=
"no"> 
9176         <autodoc>__init__(DC dc, bool mirror) -
> MirrorDC
</autodoc> 
9178           <param name=
"dc" type=
"DC" default=
""/> 
9179           <param name=
"mirror" type=
"bool" default=
""/> 
9184 #---------------------------------------------------------------------------
 
9186     <class name=
"PostScriptDC" oldname=
"wxPostScriptDC" module=
"gdi"> 
9187       <baseclass name=
"DC"/> 
9188       <constructor name=
"PostScriptDC" overloaded=
"no"> 
9189         <autodoc>__init__(wxPrintData printData) -
> PostScriptDC
</autodoc> 
9191           <param name=
"printData" type=
"wxPrintData" default=
""/> 
9194       <method name=
"GetPrintData" type=
"wxPrintData" overloaded=
"no"> 
9195         <autodoc>GetPrintData() -
> wxPrintData
</autodoc> 
9197       <method name=
"SetPrintData" type=
"" overloaded=
"no"> 
9198         <autodoc>SetPrintData(wxPrintData data)
</autodoc> 
9200           <param name=
"data" type=
"wxPrintData" default=
""/> 
9203       <staticmethod name=
"SetResolution" type=
"" overloaded=
"no"> 
9204         <autodoc>PostScriptDC.SetResolution(int ppi)
</autodoc> 
9206           <param name=
"ppi" type=
"int" default=
""/> 
9209       <staticmethod name=
"GetResolution" type=
"int" overloaded=
"no"> 
9210         <autodoc>PostScriptDC.GetResolution() -
> int
</autodoc> 
9214 #---------------------------------------------------------------------------
 
9216     <class name=
"MetaFile" oldname=
"wxMetaFile" module=
"gdi"> 
9217       <baseclass name=
"Object"/> 
9218       <constructor name=
"MetaFile" overloaded=
"no"> 
9219         <autodoc>__init__(String filename=EmptyString) -
> MetaFile
</autodoc> 
9221           <param name=
"filename" type=
"String" default=
"wxPyEmptyString"/> 
9225     <class name=
"MetaFileDC" oldname=
"wxMetaFileDC" module=
"gdi"> 
9226       <baseclass name=
"DC"/> 
9227       <constructor name=
"MetaFileDC" overloaded=
"no"> 
9228         <autodoc>__init__(String filename=EmptyString, int width=
0, int height=
0, 
 
9229     String description=EmptyString) -
> MetaFileDC
</autodoc> 
9231           <param name=
"filename" type=
"String" default=
"wxPyEmptyString"/> 
9232           <param name=
"width" type=
"int" default=
"0"/> 
9233           <param name=
"height" type=
"int" default=
"0"/> 
9234           <param name=
"description" type=
"String" default=
"wxPyEmptyString"/> 
9238     <class name=
"PrinterDC" oldname=
"wxPrinterDC" module=
"gdi"> 
9239       <baseclass name=
"DC"/> 
9240       <constructor name=
"PrinterDC" overloaded=
"no"> 
9241         <autodoc>__init__(wxPrintData printData) -
> PrinterDC
</autodoc> 
9243           <param name=
"printData" type=
"wxPrintData" default=
""/> 
9249         """DC class that has methods with 
2.4 compatible parameters."""
 
9250         FloodFill = DC.FloodFillXY
 
9251         GetPixel = DC.GetPixelXY
 
9252         DrawLine = DC.DrawLineXY
 
9253         CrossHair = DC.CrossHairXY
 
9254         DrawArc = DC.DrawArcXY
 
9255         DrawCheckMark = DC.DrawCheckMarkXY
 
9256         DrawEllipticArc = DC.DrawEllipticArcXY
 
9257         DrawPoint = DC.DrawPointXY
 
9258         DrawRectangle = DC.DrawRectangleXY
 
9259         DrawRoundedRectangle = DC.DrawRoundedRectangleXY
 
9260         DrawCircle = DC.DrawCircleXY
 
9261         DrawEllipse = DC.DrawEllipseXY
 
9262         DrawIcon = DC.DrawIconXY
 
9263         DrawBitmap = DC.DrawBitmapXY
 
9264         DrawText = DC.DrawTextXY
 
9265         DrawRotatedText = DC.DrawRotatedTextXY
 
9269     class MemoryDC_old(MemoryDC):
 
9270         """DC class that has methods with 
2.4 compatible parameters."""
 
9271         FloodFill = MemoryDC.FloodFillXY
 
9272         GetPixel = MemoryDC.GetPixelXY
 
9273         DrawLine = MemoryDC.DrawLineXY
 
9274         CrossHair = MemoryDC.CrossHairXY
 
9275         DrawArc = MemoryDC.DrawArcXY
 
9276         DrawCheckMark = MemoryDC.DrawCheckMarkXY
 
9277         DrawEllipticArc = MemoryDC.DrawEllipticArcXY
 
9278         DrawPoint = MemoryDC.DrawPointXY
 
9279         DrawRectangle = MemoryDC.DrawRectangleXY
 
9280         DrawRoundedRectangle = MemoryDC.DrawRoundedRectangleXY
 
9281         DrawCircle = MemoryDC.DrawCircleXY
 
9282         DrawEllipse = MemoryDC.DrawEllipseXY
 
9283         DrawIcon = MemoryDC.DrawIconXY
 
9284         DrawBitmap = MemoryDC.DrawBitmapXY
 
9285         DrawText = MemoryDC.DrawTextXY
 
9286         DrawRotatedText = MemoryDC.DrawRotatedTextXY
 
9287         Blit = MemoryDC.BlitXY
 
9290     class BufferedDC_old(BufferedDC):
 
9291         """DC class that has methods with 
2.4 compatible parameters."""
 
9292         FloodFill = BufferedDC.FloodFillXY
 
9293         GetPixel = BufferedDC.GetPixelXY
 
9294         DrawLine = BufferedDC.DrawLineXY
 
9295         CrossHair = BufferedDC.CrossHairXY
 
9296         DrawArc = BufferedDC.DrawArcXY
 
9297         DrawCheckMark = BufferedDC.DrawCheckMarkXY
 
9298         DrawEllipticArc = BufferedDC.DrawEllipticArcXY
 
9299         DrawPoint = BufferedDC.DrawPointXY
 
9300         DrawRectangle = BufferedDC.DrawRectangleXY
 
9301         DrawRoundedRectangle = BufferedDC.DrawRoundedRectangleXY
 
9302         DrawCircle = BufferedDC.DrawCircleXY
 
9303         DrawEllipse = BufferedDC.DrawEllipseXY
 
9304         DrawIcon = BufferedDC.DrawIconXY
 
9305         DrawBitmap = BufferedDC.DrawBitmapXY
 
9306         DrawText = BufferedDC.DrawTextXY
 
9307         DrawRotatedText = BufferedDC.DrawRotatedTextXY
 
9308         Blit = BufferedDC.BlitXY
 
9311     class BufferedPaintDC_old(BufferedPaintDC):
 
9312         """DC class that has methods with 
2.4 compatible parameters."""
 
9313         FloodFill = BufferedPaintDC.FloodFillXY
 
9314         GetPixel = BufferedPaintDC.GetPixelXY
 
9315         DrawLine = BufferedPaintDC.DrawLineXY
 
9316         CrossHair = BufferedPaintDC.CrossHairXY
 
9317         DrawArc = BufferedPaintDC.DrawArcXY
 
9318         DrawCheckMark = BufferedPaintDC.DrawCheckMarkXY
 
9319         DrawEllipticArc = BufferedPaintDC.DrawEllipticArcXY
 
9320         DrawPoint = BufferedPaintDC.DrawPointXY
 
9321         DrawRectangle = BufferedPaintDC.DrawRectangleXY
 
9322         DrawRoundedRectangle = BufferedPaintDC.DrawRoundedRectangleXY
 
9323         DrawCircle = BufferedPaintDC.DrawCircleXY
 
9324         DrawEllipse = BufferedPaintDC.DrawEllipseXY
 
9325         DrawIcon = BufferedPaintDC.DrawIconXY
 
9326         DrawBitmap = BufferedPaintDC.DrawBitmapXY
 
9327         DrawText = BufferedPaintDC.DrawTextXY
 
9328         DrawRotatedText = BufferedPaintDC.DrawRotatedTextXY
 
9329         Blit = BufferedPaintDC.BlitXY
 
9332     class ScreenDC_old(ScreenDC):
 
9333         """DC class that has methods with 
2.4 compatible parameters."""
 
9334         FloodFill = ScreenDC.FloodFillXY
 
9335         GetPixel = ScreenDC.GetPixelXY
 
9336         DrawLine = ScreenDC.DrawLineXY
 
9337         CrossHair = ScreenDC.CrossHairXY
 
9338         DrawArc = ScreenDC.DrawArcXY
 
9339         DrawCheckMark = ScreenDC.DrawCheckMarkXY
 
9340         DrawEllipticArc = ScreenDC.DrawEllipticArcXY
 
9341         DrawPoint = ScreenDC.DrawPointXY
 
9342         DrawRectangle = ScreenDC.DrawRectangleXY
 
9343         DrawRoundedRectangle = ScreenDC.DrawRoundedRectangleXY
 
9344         DrawCircle = ScreenDC.DrawCircleXY
 
9345         DrawEllipse = ScreenDC.DrawEllipseXY
 
9346         DrawIcon = ScreenDC.DrawIconXY
 
9347         DrawBitmap = ScreenDC.DrawBitmapXY
 
9348         DrawText = ScreenDC.DrawTextXY
 
9349         DrawRotatedText = ScreenDC.DrawRotatedTextXY
 
9350         Blit = ScreenDC.BlitXY
 
9353     class ClientDC_old(ClientDC):
 
9354         """DC class that has methods with 
2.4 compatible parameters."""
 
9355         FloodFill = ClientDC.FloodFillXY
 
9356         GetPixel = ClientDC.GetPixelXY
 
9357         DrawLine = ClientDC.DrawLineXY
 
9358         CrossHair = ClientDC.CrossHairXY
 
9359         DrawArc = ClientDC.DrawArcXY
 
9360         DrawCheckMark = ClientDC.DrawCheckMarkXY
 
9361         DrawEllipticArc = ClientDC.DrawEllipticArcXY
 
9362         DrawPoint = ClientDC.DrawPointXY
 
9363         DrawRectangle = ClientDC.DrawRectangleXY
 
9364         DrawRoundedRectangle = ClientDC.DrawRoundedRectangleXY
 
9365         DrawCircle = ClientDC.DrawCircleXY
 
9366         DrawEllipse = ClientDC.DrawEllipseXY
 
9367         DrawIcon = ClientDC.DrawIconXY
 
9368         DrawBitmap = ClientDC.DrawBitmapXY
 
9369         DrawText = ClientDC.DrawTextXY
 
9370         DrawRotatedText = ClientDC.DrawRotatedTextXY
 
9371         Blit = ClientDC.BlitXY
 
9374     class PaintDC_old(PaintDC):
 
9375         """DC class that has methods with 
2.4 compatible parameters."""
 
9376         FloodFill = PaintDC.FloodFillXY
 
9377         GetPixel = PaintDC.GetPixelXY
 
9378         DrawLine = PaintDC.DrawLineXY
 
9379         CrossHair = PaintDC.CrossHairXY
 
9380         DrawArc = PaintDC.DrawArcXY
 
9381         DrawCheckMark = PaintDC.DrawCheckMarkXY
 
9382         DrawEllipticArc = PaintDC.DrawEllipticArcXY
 
9383         DrawPoint = PaintDC.DrawPointXY
 
9384         DrawRectangle = PaintDC.DrawRectangleXY
 
9385         DrawRoundedRectangle = PaintDC.DrawRoundedRectangleXY
 
9386         DrawCircle = PaintDC.DrawCircleXY
 
9387         DrawEllipse = PaintDC.DrawEllipseXY
 
9388         DrawIcon = PaintDC.DrawIconXY
 
9389         DrawBitmap = PaintDC.DrawBitmapXY
 
9390         DrawText = PaintDC.DrawTextXY
 
9391         DrawRotatedText = PaintDC.DrawRotatedTextXY
 
9392         Blit = PaintDC.BlitXY
 
9395     class WindowDC_old(WindowDC):
 
9396         """DC class that has methods with 
2.4 compatible parameters."""
 
9397         FloodFill = WindowDC.FloodFillXY
 
9398         GetPixel = WindowDC.GetPixelXY
 
9399         DrawLine = WindowDC.DrawLineXY
 
9400         CrossHair = WindowDC.CrossHairXY
 
9401         DrawArc = WindowDC.DrawArcXY
 
9402         DrawCheckMark = WindowDC.DrawCheckMarkXY
 
9403         DrawEllipticArc = WindowDC.DrawEllipticArcXY
 
9404         DrawPoint = WindowDC.DrawPointXY
 
9405         DrawRectangle = WindowDC.DrawRectangleXY
 
9406         DrawRoundedRectangle = WindowDC.DrawRoundedRectangleXY
 
9407         DrawCircle = WindowDC.DrawCircleXY
 
9408         DrawEllipse = WindowDC.DrawEllipseXY
 
9409         DrawIcon = WindowDC.DrawIconXY
 
9410         DrawBitmap = WindowDC.DrawBitmapXY
 
9411         DrawText = WindowDC.DrawTextXY
 
9412         DrawRotatedText = WindowDC.DrawRotatedTextXY
 
9413         Blit = WindowDC.BlitXY
 
9416     class MirrorDC_old(MirrorDC):
 
9417         """DC class that has methods with 
2.4 compatible parameters."""
 
9418         FloodFill = MirrorDC.FloodFillXY
 
9419         GetPixel = MirrorDC.GetPixelXY
 
9420         DrawLine = MirrorDC.DrawLineXY
 
9421         CrossHair = MirrorDC.CrossHairXY
 
9422         DrawArc = MirrorDC.DrawArcXY
 
9423         DrawCheckMark = MirrorDC.DrawCheckMarkXY
 
9424         DrawEllipticArc = MirrorDC.DrawEllipticArcXY
 
9425         DrawPoint = MirrorDC.DrawPointXY
 
9426         DrawRectangle = MirrorDC.DrawRectangleXY
 
9427         DrawRoundedRectangle = MirrorDC.DrawRoundedRectangleXY
 
9428         DrawCircle = MirrorDC.DrawCircleXY
 
9429         DrawEllipse = MirrorDC.DrawEllipseXY
 
9430         DrawIcon = MirrorDC.DrawIconXY
 
9431         DrawBitmap = MirrorDC.DrawBitmapXY
 
9432         DrawText = MirrorDC.DrawTextXY
 
9433         DrawRotatedText = MirrorDC.DrawRotatedTextXY
 
9434         Blit = MirrorDC.BlitXY
 
9437     class PostScriptDC_old(PostScriptDC):
 
9438         """DC class that has methods with 
2.4 compatible parameters."""
 
9439         FloodFill = PostScriptDC.FloodFillXY
 
9440         GetPixel = PostScriptDC.GetPixelXY
 
9441         DrawLine = PostScriptDC.DrawLineXY
 
9442         CrossHair = PostScriptDC.CrossHairXY
 
9443         DrawArc = PostScriptDC.DrawArcXY
 
9444         DrawCheckMark = PostScriptDC.DrawCheckMarkXY
 
9445         DrawEllipticArc = PostScriptDC.DrawEllipticArcXY
 
9446         DrawPoint = PostScriptDC.DrawPointXY
 
9447         DrawRectangle = PostScriptDC.DrawRectangleXY
 
9448         DrawRoundedRectangle = PostScriptDC.DrawRoundedRectangleXY
 
9449         DrawCircle = PostScriptDC.DrawCircleXY
 
9450         DrawEllipse = PostScriptDC.DrawEllipseXY
 
9451         DrawIcon = PostScriptDC.DrawIconXY
 
9452         DrawBitmap = PostScriptDC.DrawBitmapXY
 
9453         DrawText = PostScriptDC.DrawTextXY
 
9454         DrawRotatedText = PostScriptDC.DrawRotatedTextXY
 
9455         Blit = PostScriptDC.BlitXY
 
9458     class MetaFileDC_old(MetaFileDC):
 
9459         """DC class that has methods with 
2.4 compatible parameters."""
 
9460         FloodFill = MetaFileDC.FloodFillXY
 
9461         GetPixel = MetaFileDC.GetPixelXY
 
9462         DrawLine = MetaFileDC.DrawLineXY
 
9463         CrossHair = MetaFileDC.CrossHairXY
 
9464         DrawArc = MetaFileDC.DrawArcXY
 
9465         DrawCheckMark = MetaFileDC.DrawCheckMarkXY
 
9466         DrawEllipticArc = MetaFileDC.DrawEllipticArcXY
 
9467         DrawPoint = MetaFileDC.DrawPointXY
 
9468         DrawRectangle = MetaFileDC.DrawRectangleXY
 
9469         DrawRoundedRectangle = MetaFileDC.DrawRoundedRectangleXY
 
9470         DrawCircle = MetaFileDC.DrawCircleXY
 
9471         DrawEllipse = MetaFileDC.DrawEllipseXY
 
9472         DrawIcon = MetaFileDC.DrawIconXY
 
9473         DrawBitmap = MetaFileDC.DrawBitmapXY
 
9474         DrawText = MetaFileDC.DrawTextXY
 
9475         DrawRotatedText = MetaFileDC.DrawRotatedTextXY
 
9476         Blit = MetaFileDC.BlitXY
 
9479     class PrinterDC_old(PrinterDC):
 
9480         """DC class that has methods with 
2.4 compatible parameters."""
 
9481         FloodFill = PrinterDC.FloodFillXY
 
9482         GetPixel = PrinterDC.GetPixelXY
 
9483         DrawLine = PrinterDC.DrawLineXY
 
9484         CrossHair = PrinterDC.CrossHairXY
 
9485         DrawArc = PrinterDC.DrawArcXY
 
9486         DrawCheckMark = PrinterDC.DrawCheckMarkXY
 
9487         DrawEllipticArc = PrinterDC.DrawEllipticArcXY
 
9488         DrawPoint = PrinterDC.DrawPointXY
 
9489         DrawRectangle = PrinterDC.DrawRectangleXY
 
9490         DrawRoundedRectangle = PrinterDC.DrawRoundedRectangleXY
 
9491         DrawCircle = PrinterDC.DrawCircleXY
 
9492         DrawEllipse = PrinterDC.DrawEllipseXY
 
9493         DrawIcon = PrinterDC.DrawIconXY
 
9494         DrawBitmap = PrinterDC.DrawBitmapXY
 
9495         DrawText = PrinterDC.DrawTextXY
 
9496         DrawRotatedText = PrinterDC.DrawRotatedTextXY
 
9497         Blit = PrinterDC.BlitXY
 
9500 #---------------------------------------------------------------------------
 
9502     <class name=
"ImageList" oldname=
"wxImageList" module=
"gdi"> 
9503       <baseclass name=
"Object"/> 
9504       <constructor name=
"ImageList" overloaded=
"no"> 
9505         <autodoc>__init__(int width, int height, int mask=True, int initialCount=
1) -
> ImageList
</autodoc> 
9507           <param name=
"width" type=
"int" default=
""/> 
9508           <param name=
"height" type=
"int" default=
""/> 
9509           <param name=
"mask" type=
"int" default=
"True"/> 
9510           <param name=
"initialCount" type=
"int" default=
"1"/> 
9513       <destructor name=
"~wxImageList" overloaded=
"no"> 
9514         <autodoc>__del__()
</autodoc> 
9516       <method name=
"Add" type=
"int" overloaded=
"no"> 
9517         <autodoc>Add(Bitmap bitmap, Bitmap mask=NullBitmap) -
> int
</autodoc> 
9519           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
9520           <param name=
"mask" type=
"Bitmap" default=
"wxNullBitmap"/> 
9523       <method name=
"AddWithColourMask" type=
"int" overloaded=
"no"> 
9524         <autodoc>AddWithColourMask(Bitmap bitmap, Colour maskColour) -
> int
</autodoc> 
9526           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
9527           <param name=
"maskColour" type=
"Colour" default=
""/> 
9530       <method name=
"AddIcon" type=
"int" overloaded=
"no"> 
9531         <autodoc>AddIcon(Icon icon) -
> int
</autodoc> 
9533           <param name=
"icon" type=
"Icon" default=
""/> 
9536       <method name=
"Replace" type=
"bool" overloaded=
"no"> 
9537         <autodoc>Replace(int index, Bitmap bitmap) -
> bool
</autodoc> 
9539           <param name=
"index" type=
"int" default=
""/> 
9540           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
9543       <method name=
"Draw" type=
"bool" overloaded=
"no"> 
9544         <autodoc>Draw(int index, DC dc, int x, int x, int flags=IMAGELIST_DRAW_NORMAL, 
 
9545     bool solidBackground=False) -
> bool
</autodoc> 
9547           <param name=
"index" type=
"int" default=
""/> 
9548           <param name=
"dc" type=
"DC" default=
""/> 
9549           <param name=
"x" type=
"int" default=
""/> 
9550           <param name=
"x" type=
"int" default=
""/> 
9551           <param name=
"flags" type=
"int" default=
"wxIMAGELIST_DRAW_NORMAL"/> 
9552           <param name=
"solidBackground" type=
"bool" default=
"False"/> 
9555       <method name=
"GetImageCount" type=
"int" overloaded=
"no"> 
9556         <autodoc>GetImageCount() -
> int
</autodoc> 
9558       <method name=
"Remove" type=
"bool" overloaded=
"no"> 
9559         <autodoc>Remove(int index) -
> bool
</autodoc> 
9561           <param name=
"index" type=
"int" default=
""/> 
9564       <method name=
"RemoveAll" type=
"bool" overloaded=
"no"> 
9565         <autodoc>RemoveAll() -
> bool
</autodoc> 
9567       <method name=
"GetSize" type=
"" overloaded=
"no"> 
9568         <autodoc>GetSize() -
> (width,height)
</autodoc> 
9570           <param name=
"index" type=
"int" default=
""/> 
9571           <param name=
"OUTPUT" type=
"int" default=
""/> 
9572           <param name=
"OUTPUT" type=
"int" default=
""/> 
9577 #---------------------------------------------------------------------------
 
9579     <class name=
"PenList" oldname=
"wxPenList" module=
"gdi"> 
9580       <baseclass name=
"Object"/> 
9581       <method name=
"AddPen" type=
"" overloaded=
"no"> 
9582         <autodoc>AddPen(Pen pen)
</autodoc> 
9584           <param name=
"pen" type=
"Pen" default=
""/> 
9587       <method name=
"FindOrCreatePen" type=
"Pen" overloaded=
"no"> 
9588         <autodoc>FindOrCreatePen(Colour colour, int width, int style) -
> Pen
</autodoc> 
9590           <param name=
"colour" type=
"Colour" default=
""/> 
9591           <param name=
"width" type=
"int" default=
""/> 
9592           <param name=
"style" type=
"int" default=
""/> 
9595       <method name=
"RemovePen" type=
"" overloaded=
"no"> 
9596         <autodoc>RemovePen(Pen pen)
</autodoc> 
9598           <param name=
"pen" type=
"Pen" default=
""/> 
9601       <method name=
"GetCount" type=
"int" overloaded=
"no"> 
9602         <autodoc>GetCount() -
> int
</autodoc> 
9605     <class name=
"BrushList" oldname=
"wxBrushList" module=
"gdi"> 
9606       <baseclass name=
"Object"/> 
9607       <method name=
"AddBrush" type=
"" overloaded=
"no"> 
9608         <autodoc>AddBrush(Brush brush)
</autodoc> 
9610           <param name=
"brush" type=
"Brush" default=
""/> 
9613       <method name=
"FindOrCreateBrush" type=
"Brush" overloaded=
"no"> 
9614         <autodoc>FindOrCreateBrush(Colour colour, int style) -
> Brush
</autodoc> 
9616           <param name=
"colour" type=
"Colour" default=
""/> 
9617           <param name=
"style" type=
"int" default=
""/> 
9620       <method name=
"RemoveBrush" type=
"" overloaded=
"no"> 
9621         <autodoc>RemoveBrush(Brush brush)
</autodoc> 
9623           <param name=
"brush" type=
"Brush" default=
""/> 
9626       <method name=
"GetCount" type=
"int" overloaded=
"no"> 
9627         <autodoc>GetCount() -
> int
</autodoc> 
9630     <class name=
"ColourDatabase" oldname=
"wxColourDatabase" module=
"gdi"> 
9631       <baseclass name=
"Object"/> 
9632       <constructor name=
"ColourDatabase" overloaded=
"no"> 
9633         <autodoc>__init__() -
> ColourDatabase
</autodoc> 
9635       <destructor name=
"~wxColourDatabase" overloaded=
"no"> 
9636         <autodoc>__del__()
</autodoc> 
9638       <method name=
"Find" type=
"Colour" overloaded=
"no"> 
9639         <autodoc>Find(String name) -
> Colour
</autodoc> 
9641           <param name=
"name" type=
"String" default=
""/> 
9644       <method name=
"FindName" type=
"String" overloaded=
"no"> 
9645         <autodoc>FindName(Colour colour) -
> String
</autodoc> 
9647           <param name=
"colour" type=
"Colour" default=
""/> 
9650       <method name=
"AddColour" type=
"" overloaded=
"no"> 
9651         <autodoc>AddColour(String name, Colour colour)
</autodoc> 
9653           <param name=
"name" type=
"String" default=
""/> 
9654           <param name=
"colour" type=
"Colour" default=
""/> 
9657       <method name=
"Append" type=
"" overloaded=
"no"> 
9658         <autodoc>Append(String name, int red, int green, int blue)
</autodoc> 
9660           <param name=
"name" type=
"String" default=
""/> 
9661           <param name=
"red" type=
"int" default=
""/> 
9662           <param name=
"green" type=
"int" default=
""/> 
9663           <param name=
"blue" type=
"int" default=
""/> 
9667     <class name=
"FontList" oldname=
"wxFontList" module=
"gdi"> 
9668       <baseclass name=
"Object"/> 
9669       <method name=
"AddFont" type=
"" overloaded=
"no"> 
9670         <autodoc>AddFont(Font font)
</autodoc> 
9672           <param name=
"font" type=
"Font" default=
""/> 
9675       <method name=
"FindOrCreateFont" type=
"Font" overloaded=
"no"> 
9676         <autodoc>FindOrCreateFont(int point_size, int family, int style, int weight, 
 
9677     bool underline=False, String facename=EmptyString, 
 
9678     int encoding=FONTENCODING_DEFAULT) -
> Font
</autodoc> 
9680           <param name=
"point_size" type=
"int" default=
""/> 
9681           <param name=
"family" type=
"int" default=
""/> 
9682           <param name=
"style" type=
"int" default=
""/> 
9683           <param name=
"weight" type=
"int" default=
""/> 
9684           <param name=
"underline" type=
"bool" default=
"False"/> 
9685           <param name=
"facename" type=
"String" default=
"wxPyEmptyString"/> 
9686           <param name=
"encoding" type=
"wxFontEncoding" default=
"wxFONTENCODING_DEFAULT"/> 
9689       <method name=
"RemoveFont" type=
"" overloaded=
"no"> 
9690         <autodoc>RemoveFont(Font font)
</autodoc> 
9692           <param name=
"font" type=
"Font" default=
""/> 
9695       <method name=
"GetCount" type=
"int" overloaded=
"no"> 
9696         <autodoc>GetCount() -
> int
</autodoc> 
9700 #---------------------------------------------------------------------------
 
9703 #---------------------------------------------------------------------------
 
9705     <class name=
"Effects" oldname=
"wxEffects" module=
"gdi"> 
9706       <baseclass name=
"Object"/> 
9707       <constructor name=
"Effects" overloaded=
"no"> 
9708         <autodoc>__init__() -
> Effects
</autodoc> 
9710       <method name=
"GetHighlightColour" type=
"Colour" overloaded=
"no"> 
9711         <autodoc>GetHighlightColour() -
> Colour
</autodoc> 
9713       <method name=
"GetLightShadow" type=
"Colour" overloaded=
"no"> 
9714         <autodoc>GetLightShadow() -
> Colour
</autodoc> 
9716       <method name=
"GetFaceColour" type=
"Colour" overloaded=
"no"> 
9717         <autodoc>GetFaceColour() -
> Colour
</autodoc> 
9719       <method name=
"GetMediumShadow" type=
"Colour" overloaded=
"no"> 
9720         <autodoc>GetMediumShadow() -
> Colour
</autodoc> 
9722       <method name=
"GetDarkShadow" type=
"Colour" overloaded=
"no"> 
9723         <autodoc>GetDarkShadow() -
> Colour
</autodoc> 
9725       <method name=
"SetHighlightColour" type=
"" overloaded=
"no"> 
9726         <autodoc>SetHighlightColour(Colour c)
</autodoc> 
9728           <param name=
"c" type=
"Colour" default=
""/> 
9731       <method name=
"SetLightShadow" type=
"" overloaded=
"no"> 
9732         <autodoc>SetLightShadow(Colour c)
</autodoc> 
9734           <param name=
"c" type=
"Colour" default=
""/> 
9737       <method name=
"SetFaceColour" type=
"" overloaded=
"no"> 
9738         <autodoc>SetFaceColour(Colour c)
</autodoc> 
9740           <param name=
"c" type=
"Colour" default=
""/> 
9743       <method name=
"SetMediumShadow" type=
"" overloaded=
"no"> 
9744         <autodoc>SetMediumShadow(Colour c)
</autodoc> 
9746           <param name=
"c" type=
"Colour" default=
""/> 
9749       <method name=
"SetDarkShadow" type=
"" overloaded=
"no"> 
9750         <autodoc>SetDarkShadow(Colour c)
</autodoc> 
9752           <param name=
"c" type=
"Colour" default=
""/> 
9755       <method name=
"Set" type=
"" overloaded=
"no"> 
9756         <autodoc>Set(Colour highlightColour, Colour lightShadow, Colour faceColour, 
 
9757     Colour mediumShadow, Colour darkShadow)
</autodoc> 
9759           <param name=
"highlightColour" type=
"Colour" default=
""/> 
9760           <param name=
"lightShadow" type=
"Colour" default=
""/> 
9761           <param name=
"faceColour" type=
"Colour" default=
""/> 
9762           <param name=
"mediumShadow" type=
"Colour" default=
""/> 
9763           <param name=
"darkShadow" type=
"Colour" default=
""/> 
9766       <method name=
"DrawSunkenEdge" type=
"" overloaded=
"no"> 
9767         <autodoc>DrawSunkenEdge(DC dc, Rect rect, int borderSize=
1)
</autodoc> 
9769           <param name=
"dc" type=
"DC" default=
""/> 
9770           <param name=
"rect" type=
"Rect" default=
""/> 
9771           <param name=
"borderSize" type=
"int" default=
"1"/> 
9774       <method name=
"TileBitmap" type=
"bool" overloaded=
"no"> 
9775         <autodoc>TileBitmap(Rect rect, DC dc, Bitmap bitmap) -
> bool
</autodoc> 
9777           <param name=
"rect" type=
"Rect" default=
""/> 
9778           <param name=
"dc" type=
"DC" default=
""/> 
9779           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
9784   <module name=
"windows"> 
9785     <import name=
"core"/> 
9786     <pythoncode> wx = core 
</pythoncode> 
9788 #---------------------------------------------------------------------------
 
9790     <class name=
"Panel" oldname=
"wxPanel" module=
"windows"> 
9791       <baseclass name=
"Window"/> 
9792       <constructor name=
"Panel" overloaded=
"no"> 
9793         <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
9794     Size size=DefaultSize, long style=wxTAB_TRAVERSAL|wxNO_BORDER, 
 
9795     String name=PanelNameStr) -
> Panel
</autodoc> 
9797           <param name=
"parent" type=
"Window" default=
""/> 
9798           <param name=
"id" type=
"int" default=
"-1"/> 
9799           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
9800           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
9801           <param name=
"style" type=
"long" default=
"wxTAB_TRAVERSAL|wxNO_BORDER"/> 
9802           <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/> 
9805       <constructor name=
"PrePanel" overloaded=
"no"> 
9806         <autodoc>PrePanel() -
> Panel
</autodoc> 
9808       <method name=
"Create" type=
"bool" overloaded=
"no"> 
9809         <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
9810     long style=wxTAB_TRAVERSAL|wxNO_BORDER, 
 
9811     String name=PanelNameStr) -
> bool
</autodoc> 
9813           <param name=
"parent" type=
"Window" default=
""/> 
9814           <param name=
"id" type=
"int" default=
""/> 
9815           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
9816           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
9817           <param name=
"style" type=
"long" default=
"wxTAB_TRAVERSAL|wxNO_BORDER"/> 
9818           <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/> 
9821       <method name=
"InitDialog" type=
"" overloaded=
"no"> 
9822         <autodoc>InitDialog()
</autodoc> 
9826 #---------------------------------------------------------------------------
 
9828     <class name=
"ScrolledWindow" oldname=
"wxScrolledWindow" module=
"windows"> 
9829       <baseclass name=
"Panel"/> 
9830       <constructor name=
"ScrolledWindow" overloaded=
"no"> 
9831         <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
9832     Size size=DefaultSize, long style=wxHSCROLL|wxVSCROLL, 
 
9833     String name=PanelNameStr) -
> ScrolledWindow
</autodoc> 
9835           <param name=
"parent" type=
"Window" default=
""/> 
9836           <param name=
"id" type=
"int" default=
"-1"/> 
9837           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
9838           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
9839           <param name=
"style" type=
"long" default=
"wxHSCROLL|wxVSCROLL"/> 
9840           <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/> 
9843       <constructor name=
"PreScrolledWindow" overloaded=
"no"> 
9844         <autodoc>PreScrolledWindow() -
> ScrolledWindow
</autodoc> 
9846       <method name=
"Create" type=
"bool" overloaded=
"no"> 
9847         <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
9848     Size size=DefaultSize, long style=wxHSCROLL|wxVSCROLL, 
 
9849     String name=PanelNameStr) -
> bool
</autodoc> 
9851           <param name=
"parent" type=
"Window" default=
""/> 
9852           <param name=
"id" type=
"int" default=
"-1"/> 
9853           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
9854           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
9855           <param name=
"style" type=
"long" default=
"wxHSCROLL|wxVSCROLL"/> 
9856           <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/> 
9859       <method name=
"SetScrollbars" type=
"" overloaded=
"no"> 
9860         <autodoc>SetScrollbars(int pixelsPerUnitX, int pixelsPerUnitY, int noUnitsX, 
 
9861     int noUnitsY, int xPos=
0, int yPos=
0, bool noRefresh=False)
</autodoc> 
9863           <param name=
"pixelsPerUnitX" type=
"int" default=
""/> 
9864           <param name=
"pixelsPerUnitY" type=
"int" default=
""/> 
9865           <param name=
"noUnitsX" type=
"int" default=
""/> 
9866           <param name=
"noUnitsY" type=
"int" default=
""/> 
9867           <param name=
"xPos" type=
"int" default=
"0"/> 
9868           <param name=
"yPos" type=
"int" default=
"0"/> 
9869           <param name=
"noRefresh" type=
"bool" default=
"False"/> 
9872       <method name=
"Scroll" type=
"" overloaded=
"no"> 
9873         <autodoc>Scroll(int x, int y)
</autodoc> 
9875           <param name=
"x" type=
"int" default=
""/> 
9876           <param name=
"y" type=
"int" default=
""/> 
9879       <method name=
"GetScrollPageSize" type=
"int" overloaded=
"no"> 
9880         <autodoc>GetScrollPageSize(int orient) -
> int
</autodoc> 
9882           <param name=
"orient" type=
"int" default=
""/> 
9885       <method name=
"SetScrollPageSize" type=
"" overloaded=
"no"> 
9886         <autodoc>SetScrollPageSize(int orient, int pageSize)
</autodoc> 
9888           <param name=
"orient" type=
"int" default=
""/> 
9889           <param name=
"pageSize" type=
"int" default=
""/> 
9892       <method name=
"SetScrollRate" type=
"" overloaded=
"no"> 
9893         <autodoc>SetScrollRate(int xstep, int ystep)
</autodoc> 
9895           <param name=
"xstep" type=
"int" default=
""/> 
9896           <param name=
"ystep" type=
"int" default=
""/> 
9899       <method name=
"GetScrollPixelsPerUnit" type=
"" overloaded=
"no"> 
9900         <autodoc>GetScrollPixelsPerUnit() -
> (xUnit, yUnit)
</autodoc> 
9901         <docstring>Get the size of one logical unit in physical units.
</docstring> 
9903           <param name=
"OUTPUT" type=
"int" default=
""/> 
9904           <param name=
"OUTPUT" type=
"int" default=
""/> 
9907       <method name=
"EnableScrolling" type=
"" overloaded=
"no"> 
9908         <autodoc>EnableScrolling(bool x_scrolling, bool y_scrolling)
</autodoc> 
9910           <param name=
"x_scrolling" type=
"bool" default=
""/> 
9911           <param name=
"y_scrolling" type=
"bool" default=
""/> 
9914       <method name=
"GetViewStart" type=
"" overloaded=
"no"> 
9915         <autodoc>GetViewStart() -
> (x,y)
</autodoc> 
9916         <docstring>Get the view start
</docstring> 
9918           <param name=
"OUTPUT" type=
"int" default=
""/> 
9919           <param name=
"OUTPUT" type=
"int" default=
""/> 
9922       <method name=
"SetScale" type=
"" overloaded=
"no"> 
9923         <autodoc>SetScale(double xs, double ys)
</autodoc> 
9925           <param name=
"xs" type=
"double" default=
""/> 
9926           <param name=
"ys" type=
"double" default=
""/> 
9929       <method name=
"GetScaleX" type=
"double" overloaded=
"no"> 
9930         <autodoc>GetScaleX() -
> double
</autodoc> 
9932       <method name=
"GetScaleY" type=
"double" overloaded=
"no"> 
9933         <autodoc>GetScaleY() -
> double
</autodoc> 
9935       <method name=
"CalcScrolledPosition" type=
"Point" overloaded=
"yes"> 
9936         <docstring>Translate between scrolled and unscrolled coordinates.
</docstring> 
9938           <param name=
"pt" type=
"Point" default=
""/> 
9941       <method name=
"CalcScrolledPosition" type=
"" overloaded=
"yes"> 
9942         <autodoc>CalcScrolledPosition(Point pt) -
> Point
 
9943 CalcScrolledPosition(int x, int y) -
> (sx, sy)
</autodoc> 
9944         <docstring>Translate between scrolled and unscrolled coordinates.
</docstring> 
9946           <param name=
"x" type=
"int" default=
""/> 
9947           <param name=
"y" type=
"int" default=
""/> 
9948           <param name=
"OUTPUT" type=
"int" default=
""/> 
9949           <param name=
"OUTPUT" type=
"int" default=
""/> 
9952       <method name=
"CalcUnscrolledPosition" type=
"Point" overloaded=
"yes"> 
9953         <docstring>Translate between scrolled and unscrolled coordinates.
</docstring> 
9955           <param name=
"pt" type=
"Point" default=
""/> 
9958       <method name=
"CalcUnscrolledPosition" type=
"" overloaded=
"yes"> 
9959         <autodoc>CalcUnscrolledPosition(Point pt) -
> Point
 
9960 CalcUnscrolledPosition(int x, int y) -
> (ux, uy)
</autodoc> 
9961         <docstring>Translate between scrolled and unscrolled coordinates.
</docstring> 
9963           <param name=
"x" type=
"int" default=
""/> 
9964           <param name=
"y" type=
"int" default=
""/> 
9965           <param name=
"OUTPUT" type=
"int" default=
""/> 
9966           <param name=
"OUTPUT" type=
"int" default=
""/> 
9969       <method name=
"AdjustScrollbars" type=
"" overloaded=
"no"> 
9970         <autodoc>AdjustScrollbars()
</autodoc> 
9972       <method name=
"CalcScrollInc" type=
"int" overloaded=
"no"> 
9973         <autodoc>CalcScrollInc(ScrollWinEvent event) -
> int
</autodoc> 
9975           <param name=
"event" type=
"ScrollWinEvent" default=
""/> 
9978       <method name=
"SetTargetWindow" type=
"" overloaded=
"no"> 
9979         <autodoc>SetTargetWindow(Window target)
</autodoc> 
9981           <param name=
"target" type=
"Window" default=
""/> 
9984       <method name=
"GetTargetWindow" type=
"Window" overloaded=
"no"> 
9985         <autodoc>GetTargetWindow() -
> Window
</autodoc> 
9989 #---------------------------------------------------------------------------
 
9991     <class name=
"TopLevelWindow" oldname=
"wxTopLevelWindow" module=
"windows"> 
9992       <baseclass name=
"Window"/> 
9993       <method name=
"Maximize" type=
"" overloaded=
"no"> 
9994         <autodoc>Maximize(bool maximize=True)
</autodoc> 
9996           <param name=
"maximize" type=
"bool" default=
"True"/> 
9999       <method name=
"Restore" type=
"" overloaded=
"no"> 
10000         <autodoc>Restore()
</autodoc> 
10002       <method name=
"Iconize" type=
"" overloaded=
"no"> 
10003         <autodoc>Iconize(bool iconize=True)
</autodoc> 
10005           <param name=
"iconize" type=
"bool" default=
"True"/> 
10008       <method name=
"IsMaximized" type=
"bool" overloaded=
"no"> 
10009         <autodoc>IsMaximized() -
> bool
</autodoc> 
10011       <method name=
"IsIconized" type=
"bool" overloaded=
"no"> 
10012         <autodoc>IsIconized() -
> bool
</autodoc> 
10014       <method name=
"GetIcon" type=
"Icon" overloaded=
"no"> 
10015         <autodoc>GetIcon() -
> Icon
</autodoc> 
10017       <method name=
"SetIcon" type=
"" overloaded=
"no"> 
10018         <autodoc>SetIcon(Icon icon)
</autodoc> 
10020           <param name=
"icon" type=
"Icon" default=
""/> 
10023       <method name=
"SetIcons" type=
"" overloaded=
"no"> 
10024         <autodoc>SetIcons(wxIconBundle icons)
</autodoc> 
10026           <param name=
"icons" type=
"IconBundle" default=
""/> 
10029       <method name=
"ShowFullScreen" type=
"bool" overloaded=
"no"> 
10030         <autodoc>ShowFullScreen(bool show, long style=FULLSCREEN_ALL) -
> bool
</autodoc> 
10032           <param name=
"show" type=
"bool" default=
""/> 
10033           <param name=
"style" type=
"long" default=
"wxFULLSCREEN_ALL"/> 
10036       <method name=
"IsFullScreen" type=
"bool" overloaded=
"no"> 
10037         <autodoc>IsFullScreen() -
> bool
</autodoc> 
10039       <method name=
"SetTitle" type=
"" overloaded=
"no"> 
10040         <autodoc>SetTitle(String title)
</autodoc> 
10042           <param name=
"title" type=
"String" default=
""/> 
10045       <method name=
"GetTitle" type=
"String" overloaded=
"no"> 
10046         <autodoc>GetTitle() -
> String
</autodoc> 
10048       <method name=
"SetShape" type=
"bool" overloaded=
"no"> 
10049         <autodoc>SetShape(Region region) -
> bool
</autodoc> 
10051           <param name=
"region" type=
"Region" default=
""/> 
10056 #---------------------------------------------------------------------------
 
10058     <class name=
"Frame" oldname=
"wxFrame" module=
"windows"> 
10059       <baseclass name=
"TopLevelWindow"/> 
10060       <constructor name=
"Frame" overloaded=
"no"> 
10061         <autodoc>__init__(Window parent, int id, String title, Point pos=DefaultPosition, 
 
10062     Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE, 
 
10063     String name=FrameNameStr) -
> Frame
</autodoc> 
10065           <param name=
"parent" type=
"Window" default=
""/> 
10066           <param name=
"id" type=
"int" default=
""/> 
10067           <param name=
"title" type=
"String" default=
""/> 
10068           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
10069           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
10070           <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/> 
10071           <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/> 
10074       <constructor name=
"PreFrame" overloaded=
"no"> 
10075         <autodoc>PreFrame() -
> Frame
</autodoc> 
10077       <method name=
"Create" type=
"bool" overloaded=
"no"> 
10078         <autodoc>Create(Window parent, int id, String title, Point pos=DefaultPosition, 
 
10079     Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE, 
 
10080     String name=FrameNameStr) -
> bool
</autodoc> 
10082           <param name=
"parent" type=
"Window" default=
""/> 
10083           <param name=
"id" type=
"int" default=
""/> 
10084           <param name=
"title" type=
"String" default=
""/> 
10085           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
10086           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
10087           <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/> 
10088           <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/> 
10091       <method name=
"GetClientAreaOrigin" type=
"Point" overloaded=
"no"> 
10092         <autodoc>GetClientAreaOrigin() -
> Point
</autodoc> 
10094       <method name=
"SendSizeEvent" type=
"" overloaded=
"no"> 
10095         <autodoc>SendSizeEvent()
</autodoc> 
10097       <method name=
"SetMenuBar" type=
"" overloaded=
"no"> 
10098         <autodoc>SetMenuBar(MenuBar menubar)
</autodoc> 
10100           <param name=
"menubar" type=
"MenuBar" default=
""/> 
10103       <method name=
"GetMenuBar" type=
"MenuBar" overloaded=
"no"> 
10104         <autodoc>GetMenuBar() -
> MenuBar
</autodoc> 
10106       <method name=
"ProcessCommand" type=
"bool" overloaded=
"no"> 
10107         <autodoc>ProcessCommand(int winid) -
> bool
</autodoc> 
10109           <param name=
"winid" type=
"int" default=
""/> 
10112       <method name=
"CreateStatusBar" type=
"wxStatusBar" overloaded=
"no"> 
10113         <autodoc>CreateStatusBar(int number=
1, long style=ST_SIZEGRIP, int winid=
0, 
 
10114     String name=StatusLineNameStr) -
> StatusBar
</autodoc> 
10116           <param name=
"number" type=
"int" default=
"1"/> 
10117           <param name=
"style" type=
"long" default=
"wxST_SIZEGRIP"/> 
10118           <param name=
"winid" type=
"int" default=
"0"/> 
10119           <param name=
"name" type=
"String" default=
"wxPyStatusLineNameStr"/> 
10122       <method name=
"GetStatusBar" type=
"wxStatusBar" overloaded=
"no"> 
10123         <autodoc>GetStatusBar() -
> StatusBar
</autodoc> 
10125       <method name=
"SetStatusBar" type=
"" overloaded=
"no"> 
10126         <autodoc>SetStatusBar(StatusBar statBar)
</autodoc> 
10128           <param name=
"statBar" type=
"wxStatusBar" default=
""/> 
10131       <method name=
"SetStatusText" type=
"" overloaded=
"no"> 
10132         <autodoc>SetStatusText(String text, int number=
0)
</autodoc> 
10134           <param name=
"text" type=
"String" default=
""/> 
10135           <param name=
"number" type=
"int" default=
"0"/> 
10138       <method name=
"SetStatusWidths" type=
"" overloaded=
"no"> 
10139         <autodoc>SetStatusWidths(int widths, int widths_field)
</autodoc> 
10141           <param name=
"widths" type=
"int" default=
""/> 
10142           <param name=
"widths_field" type=
"int" default=
""/> 
10145       <method name=
"PushStatusText" type=
"" overloaded=
"no"> 
10146         <autodoc>PushStatusText(String text, int number=
0)
</autodoc> 
10148           <param name=
"text" type=
"String" default=
""/> 
10149           <param name=
"number" type=
"int" default=
"0"/> 
10152       <method name=
"PopStatusText" type=
"" overloaded=
"no"> 
10153         <autodoc>PopStatusText(int number=
0)
</autodoc> 
10155           <param name=
"number" type=
"int" default=
"0"/> 
10158       <method name=
"SetStatusBarPane" type=
"" overloaded=
"no"> 
10159         <autodoc>SetStatusBarPane(int n)
</autodoc> 
10161           <param name=
"n" type=
"int" default=
""/> 
10164       <method name=
"GetStatusBarPane" type=
"int" overloaded=
"no"> 
10165         <autodoc>GetStatusBarPane() -
> int
</autodoc> 
10167       <method name=
"CreateToolBar" type=
"wxToolBar" overloaded=
"no"> 
10168         <autodoc>CreateToolBar(long style=-
1, int winid=-
1, String name=ToolBarNameStr) -
> wxToolBar
</autodoc> 
10170           <param name=
"style" type=
"long" default=
"-1"/> 
10171           <param name=
"winid" type=
"int" default=
"-1"/> 
10172           <param name=
"name" type=
"String" default=
"wxPyToolBarNameStr"/> 
10175       <method name=
"GetToolBar" type=
"wxToolBar" overloaded=
"no"> 
10176         <autodoc>GetToolBar() -
> wxToolBar
</autodoc> 
10178       <method name=
"SetToolBar" type=
"" overloaded=
"no"> 
10179         <autodoc>SetToolBar(wxToolBar toolbar)
</autodoc> 
10181           <param name=
"toolbar" type=
"wxToolBar" default=
""/> 
10184       <method name=
"DoGiveHelp" type=
"" overloaded=
"no"> 
10185         <autodoc>DoGiveHelp(String text, bool show)
</autodoc> 
10187           <param name=
"text" type=
"String" default=
""/> 
10188           <param name=
"show" type=
"bool" default=
""/> 
10191       <method name=
"DoMenuUpdates" type=
"" overloaded=
"no"> 
10192         <autodoc>DoMenuUpdates(Menu menu=None)
</autodoc> 
10194           <param name=
"menu" type=
"Menu" default=
"NULL"/> 
10199 #---------------------------------------------------------------------------
 
10201     <class name=
"Dialog" oldname=
"wxDialog" module=
"windows"> 
10202       <baseclass name=
"TopLevelWindow"/> 
10203       <constructor name=
"Dialog" overloaded=
"no"> 
10204         <autodoc>__init__(Window parent, int id, String title, Point pos=DefaultPosition, 
 
10205     Size size=DefaultSize, long style=DEFAULT_DIALOG_STYLE, 
 
10206     String name=DialogNameStr) -
> Dialog
</autodoc> 
10208           <param name=
"parent" type=
"Window" default=
""/> 
10209           <param name=
"id" type=
"int" default=
""/> 
10210           <param name=
"title" type=
"String" default=
""/> 
10211           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
10212           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
10213           <param name=
"style" type=
"long" default=
"wxDEFAULT_DIALOG_STYLE"/> 
10214           <param name=
"name" type=
"String" default=
"wxPyDialogNameStr"/> 
10217       <constructor name=
"PreDialog" overloaded=
"no"> 
10218         <autodoc>PreDialog() -
> Dialog
</autodoc> 
10220       <method name=
"Create" type=
"bool" overloaded=
"no"> 
10221         <autodoc>Create(Window parent, int id, String title, Point pos=DefaultPosition, 
 
10222     Size size=DefaultSize, long style=DEFAULT_DIALOG_STYLE, 
 
10223     String name=DialogNameStr) -
> bool
</autodoc> 
10225           <param name=
"parent" type=
"Window" default=
""/> 
10226           <param name=
"id" type=
"int" default=
""/> 
10227           <param name=
"title" type=
"String" default=
""/> 
10228           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
10229           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
10230           <param name=
"style" type=
"long" default=
"wxDEFAULT_DIALOG_STYLE"/> 
10231           <param name=
"name" type=
"String" default=
"wxPyDialogNameStr"/> 
10234       <method name=
"SetReturnCode" type=
"" overloaded=
"no"> 
10235         <autodoc>SetReturnCode(int returnCode)
</autodoc> 
10237           <param name=
"returnCode" type=
"int" default=
""/> 
10240       <method name=
"GetReturnCode" type=
"int" overloaded=
"no"> 
10241         <autodoc>GetReturnCode() -
> int
</autodoc> 
10243       <method name=
"CreateTextSizer" type=
"Sizer" overloaded=
"no"> 
10244         <autodoc>CreateTextSizer(String message) -
> Sizer
</autodoc> 
10246           <param name=
"message" type=
"String" default=
""/> 
10249       <method name=
"CreateButtonSizer" type=
"Sizer" overloaded=
"no"> 
10250         <autodoc>CreateButtonSizer(long flags) -
> Sizer
</autodoc> 
10252           <param name=
"flags" type=
"long" default=
""/> 
10255       <method name=
"IsModal" type=
"bool" overloaded=
"no"> 
10256         <autodoc>IsModal() -
> bool
</autodoc> 
10258       <method name=
"ShowModal" type=
"int" overloaded=
"no"> 
10259         <autodoc>ShowModal() -
> int
</autodoc> 
10261       <method name=
"EndModal" type=
"" overloaded=
"no"> 
10262         <autodoc>EndModal(int retCode)
</autodoc> 
10264           <param name=
"retCode" type=
"int" default=
""/> 
10267       <method name=
"IsModalShowing" type=
"bool" overloaded=
"no"> 
10268         <autodoc>IsModalShowing() -
> bool
</autodoc> 
10272 #---------------------------------------------------------------------------
 
10274     <class name=
"MiniFrame" oldname=
"wxMiniFrame" module=
"windows"> 
10275       <baseclass name=
"Frame"/> 
10276       <constructor name=
"MiniFrame" overloaded=
"no"> 
10277         <autodoc>__init__(Window parent, int id, String title, Point pos=DefaultPosition, 
 
10278     Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE, 
 
10279     String name=FrameNameStr) -
> MiniFrame
</autodoc> 
10281           <param name=
"parent" type=
"Window" default=
""/> 
10282           <param name=
"id" type=
"int" default=
""/> 
10283           <param name=
"title" type=
"String" default=
""/> 
10284           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
10285           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
10286           <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/> 
10287           <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/> 
10290       <constructor name=
"PreMiniFrame" overloaded=
"no"> 
10291         <autodoc>PreMiniFrame() -
> MiniFrame
</autodoc> 
10293       <method name=
"Create" type=
"bool" overloaded=
"no"> 
10294         <autodoc>Create(Window parent, int id, String title, Point pos=DefaultPosition, 
 
10295     Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE, 
 
10296     String name=FrameNameStr) -
> bool
</autodoc> 
10298           <param name=
"parent" type=
"Window" default=
""/> 
10299           <param name=
"id" type=
"int" default=
""/> 
10300           <param name=
"title" type=
"String" default=
""/> 
10301           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
10302           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
10303           <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/> 
10304           <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/> 
10309 #---------------------------------------------------------------------------
 
10311     <class name=
"SplashScreenWindow" oldname=
"wxSplashScreenWindow" module=
"windows"> 
10312       <baseclass name=
"Window"/> 
10313       <constructor name=
"SplashScreenWindow" overloaded=
"no"> 
10314         <autodoc>__init__(Bitmap bitmap, Window parent, int id, Point pos=DefaultPosition, 
 
10315     Size size=DefaultSize, long style=NO_BORDER) -
> SplashScreenWindow
</autodoc> 
10317           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
10318           <param name=
"parent" type=
"Window" default=
""/> 
10319           <param name=
"id" type=
"int" default=
""/> 
10320           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
10321           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
10322           <param name=
"style" type=
"long" default=
"wxNO_BORDER"/> 
10325       <method name=
"SetBitmap" type=
"" overloaded=
"no"> 
10326         <autodoc>SetBitmap(Bitmap bitmap)
</autodoc> 
10328           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
10331       <method name=
"GetBitmap" type=
"Bitmap" overloaded=
"no"> 
10332         <autodoc>GetBitmap() -
> Bitmap
</autodoc> 
10335     <class name=
"SplashScreen" oldname=
"wxSplashScreen" module=
"windows"> 
10336       <baseclass name=
"Frame"/> 
10337       <constructor name=
"SplashScreen" overloaded=
"no"> 
10338         <autodoc>__init__(Bitmap bitmap, long splashStyle, int milliseconds, 
 
10339     Window parent, int id, Point pos=DefaultPosition, 
 
10340     Size size=DefaultSize, long style=wxSIMPLE_BORDER|wxFRAME_NO_TASKBAR|wxSTAY_ON_TOP) -
> SplashScreen
</autodoc> 
10342           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
10343           <param name=
"splashStyle" type=
"long" default=
""/> 
10344           <param name=
"milliseconds" type=
"int" default=
""/> 
10345           <param name=
"parent" type=
"Window" default=
""/> 
10346           <param name=
"id" type=
"int" default=
""/> 
10347           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
10348           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
10349           <param name=
"style" type=
"long" default=
"wxSIMPLE_BORDER|wxFRAME_NO_TASKBAR|wxSTAY_ON_TOP"/> 
10352       <method name=
"GetSplashStyle" type=
"long" overloaded=
"no"> 
10353         <autodoc>GetSplashStyle() -
> long
</autodoc> 
10355       <method name=
"GetSplashWindow" type=
"SplashScreenWindow" overloaded=
"no"> 
10356         <autodoc>GetSplashWindow() -
> SplashScreenWindow
</autodoc> 
10358       <method name=
"GetTimeout" type=
"int" overloaded=
"no"> 
10359         <autodoc>GetTimeout() -
> int
</autodoc> 
10363 #---------------------------------------------------------------------------
 
10365     <class name=
"StatusBar" oldname=
"wxStatusBar" module=
"windows"> 
10366       <baseclass name=
"Window"/> 
10367       <constructor name=
"StatusBar" overloaded=
"no"> 
10368         <autodoc>__init__(Window parent, int id=-
1, long style=ST_SIZEGRIP, String name=StatusLineNameStr) -
> StatusBar
</autodoc> 
10370           <param name=
"parent" type=
"Window" default=
""/> 
10371           <param name=
"id" type=
"int" default=
"-1"/> 
10372           <param name=
"style" type=
"long" default=
"wxST_SIZEGRIP"/> 
10373           <param name=
"name" type=
"String" default=
"wxPyStatusLineNameStr"/> 
10376       <constructor name=
"PreStatusBar" overloaded=
"no"> 
10377         <autodoc>PreStatusBar() -
> StatusBar
</autodoc> 
10379       <method name=
"Create" type=
"bool" overloaded=
"no"> 
10380         <autodoc>Create(Window parent, int id, long style=ST_SIZEGRIP, String name=StatusLineNameStr) -
> bool
</autodoc> 
10382           <param name=
"parent" type=
"Window" default=
""/> 
10383           <param name=
"id" type=
"int" default=
""/> 
10384           <param name=
"style" type=
"long" default=
"wxST_SIZEGRIP"/> 
10385           <param name=
"name" type=
"String" default=
"wxPyStatusLineNameStr"/> 
10388       <method name=
"SetFieldsCount" type=
"" overloaded=
"no"> 
10389         <autodoc>SetFieldsCount(int number=
1)
</autodoc> 
10391           <param name=
"number" type=
"int" default=
"1"/> 
10394       <method name=
"GetFieldsCount" type=
"int" overloaded=
"no"> 
10395         <autodoc>GetFieldsCount() -
> int
</autodoc> 
10397       <method name=
"SetStatusText" type=
"" overloaded=
"no"> 
10398         <autodoc>SetStatusText(String text, int number=
0)
</autodoc> 
10400           <param name=
"text" type=
"String" default=
""/> 
10401           <param name=
"number" type=
"int" default=
"0"/> 
10404       <method name=
"GetStatusText" type=
"String" overloaded=
"no"> 
10405         <autodoc>GetStatusText(int number=
0) -
> String
</autodoc> 
10407           <param name=
"number" type=
"int" default=
"0"/> 
10410       <method name=
"PushStatusText" type=
"" overloaded=
"no"> 
10411         <autodoc>PushStatusText(String text, int number=
0)
</autodoc> 
10413           <param name=
"text" type=
"String" default=
""/> 
10414           <param name=
"number" type=
"int" default=
"0"/> 
10417       <method name=
"PopStatusText" type=
"" overloaded=
"no"> 
10418         <autodoc>PopStatusText(int number=
0)
</autodoc> 
10420           <param name=
"number" type=
"int" default=
"0"/> 
10423       <method name=
"SetStatusWidths" type=
"" overloaded=
"no"> 
10424         <autodoc>SetStatusWidths(int widths, int widths_field)
</autodoc> 
10426           <param name=
"widths" type=
"int" default=
""/> 
10427           <param name=
"widths_field" type=
"int" default=
""/> 
10430       <method name=
"GetFieldRect" type=
"Rect" overloaded=
"no"> 
10431         <autodoc>GetFieldRect(int i) -
> Rect
</autodoc> 
10433           <param name=
"i" type=
"int" default=
""/> 
10436       <method name=
"SetMinHeight" type=
"" overloaded=
"no"> 
10437         <autodoc>SetMinHeight(int height)
</autodoc> 
10439           <param name=
"height" type=
"int" default=
""/> 
10442       <method name=
"GetBorderX" type=
"int" overloaded=
"no"> 
10443         <autodoc>GetBorderX() -
> int
</autodoc> 
10445       <method name=
"GetBorderY" type=
"int" overloaded=
"no"> 
10446         <autodoc>GetBorderY() -
> int
</autodoc> 
10450 #---------------------------------------------------------------------------
 
10452     <class name=
"SplitterWindow" oldname=
"wxSplitterWindow" module=
"windows"> 
10453       <baseclass name=
"Window"/> 
10454       <constructor name=
"SplitterWindow" overloaded=
"no"> 
10455         <autodoc>__init__(Window parent, int id, Point point=DefaultPosition, 
 
10456     Size size=DefaultSize, long style=SP_3D, String name=SplitterNameStr) -
> SplitterWindow
</autodoc> 
10458           <param name=
"parent" type=
"Window" default=
""/> 
10459           <param name=
"id" type=
"int" default=
""/> 
10460           <param name=
"point" type=
"Point" default=
"wxDefaultPosition"/> 
10461           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
10462           <param name=
"style" type=
"long" default=
"wxSP_3D"/> 
10463           <param name=
"name" type=
"String" default=
"wxPySplitterNameStr"/> 
10466       <constructor name=
"PreSplitterWindow" overloaded=
"no"> 
10467         <autodoc>PreSplitterWindow() -
> SplitterWindow
</autodoc> 
10469       <method name=
"Create" type=
"bool" overloaded=
"no"> 
10470         <autodoc>Create(Window parent, int id, Point point=DefaultPosition, 
 
10471     Size size=DefaultSize, long style=SP_3D, String name=SplitterNameStr) -
> bool
</autodoc> 
10473           <param name=
"parent" type=
"Window" default=
""/> 
10474           <param name=
"id" type=
"int" default=
""/> 
10475           <param name=
"point" type=
"Point" default=
"wxDefaultPosition"/> 
10476           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
10477           <param name=
"style" type=
"long" default=
"wxSP_3D"/> 
10478           <param name=
"name" type=
"String" default=
"wxPySplitterNameStr"/> 
10481       <method name=
"GetWindow1" type=
"Window" overloaded=
"no"> 
10482         <autodoc>GetWindow1() -
> Window
</autodoc> 
10484       <method name=
"GetWindow2" type=
"Window" overloaded=
"no"> 
10485         <autodoc>GetWindow2() -
> Window
</autodoc> 
10487       <method name=
"SetSplitMode" type=
"" overloaded=
"no"> 
10488         <autodoc>SetSplitMode(int mode)
</autodoc> 
10490           <param name=
"mode" type=
"int" default=
""/> 
10493       <method name=
"GetSplitMode" type=
"wxSplitMode" overloaded=
"no"> 
10494         <autodoc>GetSplitMode() -
> int
</autodoc> 
10496       <method name=
"Initialize" type=
"" overloaded=
"no"> 
10497         <autodoc>Initialize(Window window)
</autodoc> 
10499           <param name=
"window" type=
"Window" default=
""/> 
10502       <method name=
"SplitVertically" type=
"bool" overloaded=
"no"> 
10503         <autodoc>SplitVertically(Window window1, Window window2, int sashPosition=
0) -
> bool
</autodoc> 
10505           <param name=
"window1" type=
"Window" default=
""/> 
10506           <param name=
"window2" type=
"Window" default=
""/> 
10507           <param name=
"sashPosition" type=
"int" default=
"0"/> 
10510       <method name=
"SplitHorizontally" type=
"bool" overloaded=
"no"> 
10511         <autodoc>SplitHorizontally(Window window1, Window window2, int sashPosition=
0) -
> bool
</autodoc> 
10513           <param name=
"window1" type=
"Window" default=
""/> 
10514           <param name=
"window2" type=
"Window" default=
""/> 
10515           <param name=
"sashPosition" type=
"int" default=
"0"/> 
10518       <method name=
"Unsplit" type=
"bool" overloaded=
"no"> 
10519         <autodoc>Unsplit(Window toRemove=None) -
> bool
</autodoc> 
10521           <param name=
"toRemove" type=
"Window" default=
"NULL"/> 
10524       <method name=
"ReplaceWindow" type=
"bool" overloaded=
"no"> 
10525         <autodoc>ReplaceWindow(Window winOld, Window winNew) -
> bool
</autodoc> 
10527           <param name=
"winOld" type=
"Window" default=
""/> 
10528           <param name=
"winNew" type=
"Window" default=
""/> 
10531       <method name=
"IsSplit" type=
"bool" overloaded=
"no"> 
10532         <autodoc>IsSplit() -
> bool
</autodoc> 
10534       <method name=
"SetSashSize" type=
"" overloaded=
"no"> 
10535         <autodoc>SetSashSize(int width)
</autodoc> 
10537           <param name=
"width" type=
"int" default=
""/> 
10540       <method name=
"SetBorderSize" type=
"" overloaded=
"no"> 
10541         <autodoc>SetBorderSize(int width)
</autodoc> 
10543           <param name=
"width" type=
"int" default=
""/> 
10546       <method name=
"GetSashSize" type=
"int" overloaded=
"no"> 
10547         <autodoc>GetSashSize() -
> int
</autodoc> 
10549       <method name=
"GetBorderSize" type=
"int" overloaded=
"no"> 
10550         <autodoc>GetBorderSize() -
> int
</autodoc> 
10552       <method name=
"SetSashPosition" type=
"" overloaded=
"no"> 
10553         <autodoc>SetSashPosition(int position, bool redraw=True)
</autodoc> 
10555           <param name=
"position" type=
"int" default=
""/> 
10556           <param name=
"redraw" type=
"bool" default=
"True"/> 
10559       <method name=
"GetSashPosition" type=
"int" overloaded=
"no"> 
10560         <autodoc>GetSashPosition() -
> int
</autodoc> 
10562       <method name=
"SetMinimumPaneSize" type=
"" overloaded=
"no"> 
10563         <autodoc>SetMinimumPaneSize(int min)
</autodoc> 
10565           <param name=
"min" type=
"int" default=
""/> 
10568       <method name=
"GetMinimumPaneSize" type=
"int" overloaded=
"no"> 
10569         <autodoc>GetMinimumPaneSize() -
> int
</autodoc> 
10571       <method name=
"SashHitTest" type=
"bool" overloaded=
"no"> 
10572         <autodoc>SashHitTest(int x, int y, int tolerance=
5) -
> bool
</autodoc> 
10574           <param name=
"x" type=
"int" default=
""/> 
10575           <param name=
"y" type=
"int" default=
""/> 
10576           <param name=
"tolerance" type=
"int" default=
"5"/> 
10579       <method name=
"SizeWindows" type=
"" overloaded=
"no"> 
10580         <autodoc>SizeWindows()
</autodoc> 
10582       <method name=
"SetNeedUpdating" type=
"" overloaded=
"no"> 
10583         <autodoc>SetNeedUpdating(bool needUpdating)
</autodoc> 
10585           <param name=
"needUpdating" type=
"bool" default=
""/> 
10588       <method name=
"GetNeedUpdating" type=
"bool" overloaded=
"no"> 
10589         <autodoc>GetNeedUpdating() -
> bool
</autodoc> 
10592     <class name=
"SplitterEvent" oldname=
"wxSplitterEvent" module=
"windows"> 
10593       <baseclass name=
"NotifyEvent"/> 
10594       <constructor name=
"SplitterEvent" overloaded=
"no"> 
10595         <autodoc>__init__(wxEventType type=wxEVT_NULL, SplitterWindow splitter=(wxSplitterWindow *) NULL) -
> SplitterEvent
</autodoc> 
10597           <param name=
"type" type=
"wxEventType" default=
"wxEVT_NULL"/> 
10598           <param name=
"splitter" type=
"SplitterWindow" default=
"(wxSplitterWindow *) NULL"/> 
10601       <method name=
"SetSashPosition" type=
"" overloaded=
"no"> 
10602         <autodoc>SetSashPosition(int pos)
</autodoc> 
10604           <param name=
"pos" type=
"int" default=
""/> 
10607       <method name=
"GetSashPosition" type=
"int" overloaded=
"no"> 
10608         <autodoc>GetSashPosition() -
> int
</autodoc> 
10610       <method name=
"GetWindowBeingRemoved" type=
"Window" overloaded=
"no"> 
10611         <autodoc>GetWindowBeingRemoved() -
> Window
</autodoc> 
10613       <method name=
"GetX" type=
"int" overloaded=
"no"> 
10614         <autodoc>GetX() -
> int
</autodoc> 
10616       <method name=
"GetY" type=
"int" overloaded=
"no"> 
10617         <autodoc>GetY() -
> int
</autodoc> 
10621 EVT_SPLITTER_SASH_POS_CHANGED = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED, 
1 )
 
10622 EVT_SPLITTER_SASH_POS_CHANGING = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING, 
1 )
 
10623 EVT_SPLITTER_DOUBLECLICKED = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_DOUBLECLICKED, 
1 )
 
10624 EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 
1 )
 
10627 #---------------------------------------------------------------------------
 
10629     <class name=
"SashWindow" oldname=
"wxSashWindow" module=
"windows"> 
10630       <baseclass name=
"Window"/> 
10631       <constructor name=
"SashWindow" overloaded=
"no"> 
10632         <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
10633     long style=wxCLIP_CHILDREN|wxSW_3D, 
 
10634     String name=SashNameStr) -
> SashWindow
</autodoc> 
10636           <param name=
"parent" type=
"Window" default=
""/> 
10637           <param name=
"id" type=
"int" default=
""/> 
10638           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
10639           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
10640           <param name=
"style" type=
"long" default=
"wxCLIP_CHILDREN|wxSW_3D"/> 
10641           <param name=
"name" type=
"String" default=
"wxPySashNameStr"/> 
10644       <constructor name=
"PreSashWindow" overloaded=
"no"> 
10645         <autodoc>PreSashWindow() -
> SashWindow
</autodoc> 
10647       <method name=
"Create" type=
"bool" overloaded=
"no"> 
10648         <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
10649     long style=wxCLIP_CHILDREN|wxSW_3D, 
 
10650     String name=SashNameStr) -
> bool
</autodoc> 
10652           <param name=
"parent" type=
"Window" default=
""/> 
10653           <param name=
"id" type=
"int" default=
""/> 
10654           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
10655           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
10656           <param name=
"style" type=
"long" default=
"wxCLIP_CHILDREN|wxSW_3D"/> 
10657           <param name=
"name" type=
"String" default=
"wxPySashNameStr"/> 
10660       <method name=
"SetSashVisible" type=
"" overloaded=
"no"> 
10661         <autodoc>SetSashVisible(int edge, bool sash)
</autodoc> 
10663           <param name=
"edge" type=
"wxSashEdgePosition" default=
""/> 
10664           <param name=
"sash" type=
"bool" default=
""/> 
10667       <method name=
"GetSashVisible" type=
"bool" overloaded=
"no"> 
10668         <autodoc>GetSashVisible(int edge) -
> bool
</autodoc> 
10670           <param name=
"edge" type=
"wxSashEdgePosition" default=
""/> 
10673       <method name=
"SetSashBorder" type=
"" overloaded=
"no"> 
10674         <autodoc>SetSashBorder(int edge, bool border)
</autodoc> 
10676           <param name=
"edge" type=
"wxSashEdgePosition" default=
""/> 
10677           <param name=
"border" type=
"bool" default=
""/> 
10680       <method name=
"HasBorder" type=
"bool" overloaded=
"no"> 
10681         <autodoc>HasBorder(int edge) -
> bool
</autodoc> 
10683           <param name=
"edge" type=
"wxSashEdgePosition" default=
""/> 
10686       <method name=
"GetEdgeMargin" type=
"int" overloaded=
"no"> 
10687         <autodoc>GetEdgeMargin(int edge) -
> int
</autodoc> 
10689           <param name=
"edge" type=
"wxSashEdgePosition" default=
""/> 
10692       <method name=
"SetDefaultBorderSize" type=
"" overloaded=
"no"> 
10693         <autodoc>SetDefaultBorderSize(int width)
</autodoc> 
10695           <param name=
"width" type=
"int" default=
""/> 
10698       <method name=
"GetDefaultBorderSize" type=
"int" overloaded=
"no"> 
10699         <autodoc>GetDefaultBorderSize() -
> int
</autodoc> 
10701       <method name=
"SetExtraBorderSize" type=
"" overloaded=
"no"> 
10702         <autodoc>SetExtraBorderSize(int width)
</autodoc> 
10704           <param name=
"width" type=
"int" default=
""/> 
10707       <method name=
"GetExtraBorderSize" type=
"int" overloaded=
"no"> 
10708         <autodoc>GetExtraBorderSize() -
> int
</autodoc> 
10710       <method name=
"SetMinimumSizeX" type=
"" overloaded=
"no"> 
10711         <autodoc>SetMinimumSizeX(int min)
</autodoc> 
10713           <param name=
"min" type=
"int" default=
""/> 
10716       <method name=
"SetMinimumSizeY" type=
"" overloaded=
"no"> 
10717         <autodoc>SetMinimumSizeY(int min)
</autodoc> 
10719           <param name=
"min" type=
"int" default=
""/> 
10722       <method name=
"GetMinimumSizeX" type=
"int" overloaded=
"no"> 
10723         <autodoc>GetMinimumSizeX() -
> int
</autodoc> 
10725       <method name=
"GetMinimumSizeY" type=
"int" overloaded=
"no"> 
10726         <autodoc>GetMinimumSizeY() -
> int
</autodoc> 
10728       <method name=
"SetMaximumSizeX" type=
"" overloaded=
"no"> 
10729         <autodoc>SetMaximumSizeX(int max)
</autodoc> 
10731           <param name=
"max" type=
"int" default=
""/> 
10734       <method name=
"SetMaximumSizeY" type=
"" overloaded=
"no"> 
10735         <autodoc>SetMaximumSizeY(int max)
</autodoc> 
10737           <param name=
"max" type=
"int" default=
""/> 
10740       <method name=
"GetMaximumSizeX" type=
"int" overloaded=
"no"> 
10741         <autodoc>GetMaximumSizeX() -
> int
</autodoc> 
10743       <method name=
"GetMaximumSizeY" type=
"int" overloaded=
"no"> 
10744         <autodoc>GetMaximumSizeY() -
> int
</autodoc> 
10746       <method name=
"SashHitTest" type=
"wxSashEdgePosition" overloaded=
"no"> 
10747         <autodoc>SashHitTest(int x, int y, int tolerance=
2) -
> int
</autodoc> 
10749           <param name=
"x" type=
"int" default=
""/> 
10750           <param name=
"y" type=
"int" default=
""/> 
10751           <param name=
"tolerance" type=
"int" default=
"2"/> 
10754       <method name=
"SizeWindows" type=
"" overloaded=
"no"> 
10755         <autodoc>SizeWindows()
</autodoc> 
10758     <class name=
"SashEvent" oldname=
"wxSashEvent" module=
"windows"> 
10759       <baseclass name=
"CommandEvent"/> 
10760       <constructor name=
"SashEvent" overloaded=
"no"> 
10761         <autodoc>__init__(int id=
0, int edge=SASH_NONE) -
> SashEvent
</autodoc> 
10763           <param name=
"id" type=
"int" default=
"0"/> 
10764           <param name=
"edge" type=
"wxSashEdgePosition" default=
"wxSASH_NONE"/> 
10767       <method name=
"SetEdge" type=
"" overloaded=
"no"> 
10768         <autodoc>SetEdge(int edge)
</autodoc> 
10770           <param name=
"edge" type=
"wxSashEdgePosition" default=
""/> 
10773       <method name=
"GetEdge" type=
"wxSashEdgePosition" overloaded=
"no"> 
10774         <autodoc>GetEdge() -
> int
</autodoc> 
10776       <method name=
"SetDragRect" type=
"" overloaded=
"no"> 
10777         <autodoc>SetDragRect(Rect rect)
</autodoc> 
10779           <param name=
"rect" type=
"Rect" default=
""/> 
10782       <method name=
"GetDragRect" type=
"Rect" overloaded=
"no"> 
10783         <autodoc>GetDragRect() -
> Rect
</autodoc> 
10785       <method name=
"SetDragStatus" type=
"" overloaded=
"no"> 
10786         <autodoc>SetDragStatus(int status)
</autodoc> 
10788           <param name=
"status" type=
"wxSashDragStatus" default=
""/> 
10791       <method name=
"GetDragStatus" type=
"wxSashDragStatus" overloaded=
"no"> 
10792         <autodoc>GetDragStatus() -
> int
</autodoc> 
10796     EVT_SASH_DRAGGED = wx.PyEventBinder( wxEVT_SASH_DRAGGED, 
1 )
 
10797     EVT_SASH_DRAGGED_RANGE = wx.PyEventBinder( wxEVT_SASH_DRAGGED, 
2 )
 
10800 #---------------------------------------------------------------------------
 
10802     <class name=
"QueryLayoutInfoEvent" oldname=
"wxQueryLayoutInfoEvent" module=
"windows"> 
10803       <baseclass name=
"Event"/> 
10804       <constructor name=
"QueryLayoutInfoEvent" overloaded=
"no"> 
10805         <autodoc>__init__(int id=
0) -
> QueryLayoutInfoEvent
</autodoc> 
10807           <param name=
"id" type=
"int" default=
"0"/> 
10810       <method name=
"SetRequestedLength" type=
"" overloaded=
"no"> 
10811         <autodoc>SetRequestedLength(int length)
</autodoc> 
10813           <param name=
"length" type=
"int" default=
""/> 
10816       <method name=
"GetRequestedLength" type=
"int" overloaded=
"no"> 
10817         <autodoc>GetRequestedLength() -
> int
</autodoc> 
10819       <method name=
"SetFlags" type=
"" overloaded=
"no"> 
10820         <autodoc>SetFlags(int flags)
</autodoc> 
10822           <param name=
"flags" type=
"int" default=
""/> 
10825       <method name=
"GetFlags" type=
"int" overloaded=
"no"> 
10826         <autodoc>GetFlags() -
> int
</autodoc> 
10828       <method name=
"SetSize" type=
"" overloaded=
"no"> 
10829         <autodoc>SetSize(Size size)
</autodoc> 
10831           <param name=
"size" type=
"Size" default=
""/> 
10834       <method name=
"GetSize" type=
"Size" overloaded=
"no"> 
10835         <autodoc>GetSize() -
> Size
</autodoc> 
10837       <method name=
"SetOrientation" type=
"" overloaded=
"no"> 
10838         <autodoc>SetOrientation(int orient)
</autodoc> 
10840           <param name=
"orient" type=
"wxLayoutOrientation" default=
""/> 
10843       <method name=
"GetOrientation" type=
"wxLayoutOrientation" overloaded=
"no"> 
10844         <autodoc>GetOrientation() -
> int
</autodoc> 
10846       <method name=
"SetAlignment" type=
"" overloaded=
"no"> 
10847         <autodoc>SetAlignment(int align)
</autodoc> 
10849           <param name=
"align" type=
"wxLayoutAlignment" default=
""/> 
10852       <method name=
"GetAlignment" type=
"wxLayoutAlignment" overloaded=
"no"> 
10853         <autodoc>GetAlignment() -
> int
</autodoc> 
10856     <class name=
"CalculateLayoutEvent" oldname=
"wxCalculateLayoutEvent" module=
"windows"> 
10857       <baseclass name=
"Event"/> 
10858       <constructor name=
"CalculateLayoutEvent" overloaded=
"no"> 
10859         <autodoc>__init__(int id=
0) -
> CalculateLayoutEvent
</autodoc> 
10861           <param name=
"id" type=
"int" default=
"0"/> 
10864       <method name=
"SetFlags" type=
"" overloaded=
"no"> 
10865         <autodoc>SetFlags(int flags)
</autodoc> 
10867           <param name=
"flags" type=
"int" default=
""/> 
10870       <method name=
"GetFlags" type=
"int" overloaded=
"no"> 
10871         <autodoc>GetFlags() -
> int
</autodoc> 
10873       <method name=
"SetRect" type=
"" overloaded=
"no"> 
10874         <autodoc>SetRect(Rect rect)
</autodoc> 
10876           <param name=
"rect" type=
"Rect" default=
""/> 
10879       <method name=
"GetRect" type=
"Rect" overloaded=
"no"> 
10880         <autodoc>GetRect() -
> Rect
</autodoc> 
10884     EVT_QUERY_LAYOUT_INFO = wx.PyEventBinder( wxEVT_QUERY_LAYOUT_INFO )
 
10885     EVT_CALCULATE_LAYOUT = wx.PyEventBinder( wxEVT_CALCULATE_LAYOUT )
 
10887     <class name=
"SashLayoutWindow" oldname=
"wxSashLayoutWindow" module=
"windows"> 
10888       <baseclass name=
"SashWindow"/> 
10889       <constructor name=
"SashLayoutWindow" overloaded=
"no"> 
10890         <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
10891     long style=wxCLIP_CHILDREN|wxSW_3D, 
 
10892     String name=SashLayoutNameStr) -
> SashLayoutWindow
</autodoc> 
10894           <param name=
"parent" type=
"Window" default=
""/> 
10895           <param name=
"id" type=
"int" default=
""/> 
10896           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
10897           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
10898           <param name=
"style" type=
"long" default=
"wxCLIP_CHILDREN|wxSW_3D"/> 
10899           <param name=
"name" type=
"String" default=
"wxPySashLayoutNameStr"/> 
10902       <constructor name=
"PreSashLayoutWindow" overloaded=
"no"> 
10903         <autodoc>PreSashLayoutWindow() -
> SashLayoutWindow
</autodoc> 
10905       <method name=
"Create" type=
"bool" overloaded=
"no"> 
10906         <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
10907     long style=wxCLIP_CHILDREN|wxSW_3D, 
 
10908     String name=SashLayoutNameStr) -
> bool
</autodoc> 
10910           <param name=
"parent" type=
"Window" default=
""/> 
10911           <param name=
"id" type=
"int" default=
""/> 
10912           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
10913           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
10914           <param name=
"style" type=
"long" default=
"wxCLIP_CHILDREN|wxSW_3D"/> 
10915           <param name=
"name" type=
"String" default=
"wxPySashLayoutNameStr"/> 
10918       <method name=
"GetAlignment" type=
"wxLayoutAlignment" overloaded=
"no"> 
10919         <autodoc>GetAlignment() -
> int
</autodoc> 
10921       <method name=
"GetOrientation" type=
"wxLayoutOrientation" overloaded=
"no"> 
10922         <autodoc>GetOrientation() -
> int
</autodoc> 
10924       <method name=
"SetAlignment" type=
"" overloaded=
"no"> 
10925         <autodoc>SetAlignment(int alignment)
</autodoc> 
10927           <param name=
"alignment" type=
"wxLayoutAlignment" default=
""/> 
10930       <method name=
"SetDefaultSize" type=
"" overloaded=
"no"> 
10931         <autodoc>SetDefaultSize(Size size)
</autodoc> 
10933           <param name=
"size" type=
"Size" default=
""/> 
10936       <method name=
"SetOrientation" type=
"" overloaded=
"no"> 
10937         <autodoc>SetOrientation(int orientation)
</autodoc> 
10939           <param name=
"orientation" type=
"wxLayoutOrientation" default=
""/> 
10943     <class name=
"LayoutAlgorithm" oldname=
"wxLayoutAlgorithm" module=
"windows"> 
10944       <baseclass name=
"Object"/> 
10945       <constructor name=
"LayoutAlgorithm" overloaded=
"no"> 
10946         <autodoc>__init__() -
> LayoutAlgorithm
</autodoc> 
10948       <destructor name=
"~wxLayoutAlgorithm" overloaded=
"no"> 
10949         <autodoc>__del__()
</autodoc> 
10951       <method name=
"LayoutMDIFrame" type=
"bool" overloaded=
"no"> 
10952         <autodoc>LayoutMDIFrame(MDIParentFrame frame, Rect rect=None) -
> bool
</autodoc> 
10954           <param name=
"frame" type=
"wxMDIParentFrame" default=
""/> 
10955           <param name=
"rect" type=
"Rect" default=
"NULL"/> 
10958       <method name=
"LayoutFrame" type=
"bool" overloaded=
"no"> 
10959         <autodoc>LayoutFrame(Frame frame, Window mainWindow=None) -
> bool
</autodoc> 
10961           <param name=
"frame" type=
"Frame" default=
""/> 
10962           <param name=
"mainWindow" type=
"Window" default=
"NULL"/> 
10965       <method name=
"LayoutWindow" type=
"bool" overloaded=
"no"> 
10966         <autodoc>LayoutWindow(Window parent, Window mainWindow=None) -
> bool
</autodoc> 
10968           <param name=
"parent" type=
"Window" default=
""/> 
10969           <param name=
"mainWindow" type=
"Window" default=
"NULL"/> 
10974 #---------------------------------------------------------------------------
 
10976     <class name=
"PopupWindow" oldname=
"wxPopupWindow" module=
"windows"> 
10977       <baseclass name=
"Window"/> 
10978       <constructor name=
"PopupWindow" overloaded=
"no"> 
10979         <autodoc>__init__(Window parent, int flags=BORDER_NONE) -
> PopupWindow
</autodoc> 
10981           <param name=
"parent" type=
"Window" default=
""/> 
10982           <param name=
"flags" type=
"int" default=
"wxBORDER_NONE"/> 
10985       <constructor name=
"PrePopupWindow" overloaded=
"no"> 
10986         <autodoc>PrePopupWindow() -
> PopupWindow
</autodoc> 
10988       <method name=
"Create" type=
"bool" overloaded=
"no"> 
10989         <autodoc>Create(Window parent, int flags=BORDER_NONE) -
> bool
</autodoc> 
10991           <param name=
"parent" type=
"Window" default=
""/> 
10992           <param name=
"flags" type=
"int" default=
"wxBORDER_NONE"/> 
10995       <method name=
"Position" type=
"" overloaded=
"no"> 
10996         <autodoc>Position(Point ptOrigin, Size size)
</autodoc> 
10998           <param name=
"ptOrigin" type=
"Point" default=
""/> 
10999           <param name=
"size" type=
"Size" default=
""/> 
11004 #---------------------------------------------------------------------------
 
11006     <class name=
"PopupTransientWindow" oldname=
"wxPyPopupTransientWindow" module=
"windows"> 
11007       <baseclass name=
"PopupWindow"/> 
11008       <constructor name=
"wxPyPopupTransientWindow" overloaded=
"no"> 
11009         <autodoc>__init__(Window parent, int style=BORDER_NONE) -
> PopupTransientWindow
</autodoc> 
11011           <param name=
"parent" type=
"Window" default=
""/> 
11012           <param name=
"style" type=
"int" default=
"wxBORDER_NONE"/> 
11015       <constructor name=
"PrePopupTransientWindow" overloaded=
"no"> 
11016         <autodoc>PrePopupTransientWindow() -
> PopupTransientWindow
</autodoc> 
11018       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
11019         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
11021           <param name=
"self" type=
"PyObject" default=
""/> 
11022           <param name=
"_class" type=
"PyObject" default=
""/> 
11025       <method name=
"Popup" type=
"" overloaded=
"no"> 
11026         <autodoc>Popup(Window focus=None)
</autodoc> 
11028           <param name=
"focus" type=
"Window" default=
"NULL"/> 
11031       <method name=
"Dismiss" type=
"" overloaded=
"no"> 
11032         <autodoc>Dismiss()
</autodoc> 
11036 #---------------------------------------------------------------------------
 
11038     <class name=
"TipWindow" oldname=
"wxTipWindow" module=
"windows"> 
11039       <baseclass name=
"PopupTransientWindow"/> 
11040       <constructor name=
"TipWindow" overloaded=
"no"> 
11041         <autodoc>__init__(Window parent, String text, int maxLength=
100, Rect rectBound=None) -
> TipWindow
</autodoc> 
11043           <param name=
"parent" type=
"Window" default=
""/> 
11044           <param name=
"text" type=
"String" default=
""/> 
11045           <param name=
"maxLength" type=
"int" default=
"100"/> 
11046           <param name=
"rectBound" type=
"Rect" default=
"NULL"/> 
11049       <method name=
"SetBoundingRect" type=
"" overloaded=
"no"> 
11050         <autodoc>SetBoundingRect(Rect rectBound)
</autodoc> 
11052           <param name=
"rectBound" type=
"Rect" default=
""/> 
11055       <method name=
"Close" type=
"" overloaded=
"no"> 
11056         <autodoc>Close()
</autodoc> 
11060 #---------------------------------------------------------------------------
 
11062     <class name=
"VScrolledWindow" oldname=
"wxPyVScrolledWindow" module=
"windows"> 
11063       <baseclass name=
"Panel"/> 
11064       <constructor name=
"wxPyVScrolledWindow" overloaded=
"no"> 
11065         <autodoc>__init__(Window parent, int id=ID_ANY, Point pos=DefaultPosition, 
 
11066     Size size=DefaultSize, long style=
0, String name=PanelNameStr) -
> VScrolledWindow
</autodoc> 
11068           <param name=
"parent" type=
"Window" default=
""/> 
11069           <param name=
"id" type=
"int" default=
"wxID_ANY"/> 
11070           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
11071           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
11072           <param name=
"style" type=
"long" default=
"0"/> 
11073           <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/> 
11076       <constructor name=
"PreVScrolledWindow" overloaded=
"no"> 
11077         <autodoc>PreVScrolledWindow() -
> VScrolledWindow
</autodoc> 
11079       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
11080         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
11082           <param name=
"self" type=
"PyObject" default=
""/> 
11083           <param name=
"_class" type=
"PyObject" default=
""/> 
11086       <method name=
"Create" type=
"bool" overloaded=
"no"> 
11087         <autodoc>Create(Window parent, int id=ID_ANY, Point pos=DefaultPosition, 
 
11088     Size size=DefaultSize, long style=
0, String name=PanelNameStr) -
> bool
</autodoc> 
11090           <param name=
"parent" type=
"Window" default=
""/> 
11091           <param name=
"id" type=
"int" default=
"wxID_ANY"/> 
11092           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
11093           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
11094           <param name=
"style" type=
"long" default=
"0"/> 
11095           <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/> 
11098       <method name=
"SetLineCount" type=
"" overloaded=
"no"> 
11099         <autodoc>SetLineCount(size_t count)
</autodoc> 
11101           <param name=
"count" type=
"size_t" default=
""/> 
11104       <method name=
"ScrollToLine" type=
"bool" overloaded=
"no"> 
11105         <autodoc>ScrollToLine(size_t line) -
> bool
</autodoc> 
11107           <param name=
"line" type=
"size_t" default=
""/> 
11110       <method name=
"ScrollLines" type=
"bool" overloaded=
"no"> 
11111         <autodoc>ScrollLines(int lines) -
> bool
</autodoc> 
11113           <param name=
"lines" type=
"int" default=
""/> 
11116       <method name=
"ScrollPages" type=
"bool" overloaded=
"no"> 
11117         <autodoc>ScrollPages(int pages) -
> bool
</autodoc> 
11119           <param name=
"pages" type=
"int" default=
""/> 
11122       <method name=
"RefreshLine" type=
"" overloaded=
"no"> 
11123         <autodoc>RefreshLine(size_t line)
</autodoc> 
11125           <param name=
"line" type=
"size_t" default=
""/> 
11128       <method name=
"RefreshLines" type=
"" overloaded=
"no"> 
11129         <autodoc>RefreshLines(size_t from, size_t to)
</autodoc> 
11131           <param name=
"from" type=
"size_t" default=
""/> 
11132           <param name=
"to" type=
"size_t" default=
""/> 
11135       <method name=
"HitTestXT" type=
"int" overloaded=
"no"> 
11136         <autodoc>HitTestXT(int x, int y) -
> int
</autodoc> 
11138           <param name=
"x" type=
"int" default=
""/> 
11139           <param name=
"y" type=
"int" default=
""/> 
11142       <method name=
"HitTest" type=
"int" overloaded=
"no"> 
11143         <autodoc>HitTest(Point pt) -
> int
</autodoc> 
11145           <param name=
"pt" type=
"Point" default=
""/> 
11148       <method name=
"RefreshAll" type=
"" overloaded=
"no"> 
11149         <autodoc>RefreshAll()
</autodoc> 
11151       <method name=
"GetLineCount" type=
"size_t" overloaded=
"no"> 
11152         <autodoc>GetLineCount() -
> size_t
</autodoc> 
11154       <method name=
"GetFirstVisibleLine" type=
"size_t" overloaded=
"no"> 
11155         <autodoc>GetFirstVisibleLine() -
> size_t
</autodoc> 
11157       <method name=
"GetLastVisibleLine" type=
"size_t" overloaded=
"no"> 
11158         <autodoc>GetLastVisibleLine() -
> size_t
</autodoc> 
11160       <method name=
"IsVisible" type=
"bool" overloaded=
"no"> 
11161         <autodoc>IsVisible(size_t line) -
> bool
</autodoc> 
11163           <param name=
"line" type=
"size_t" default=
""/> 
11167     <class name=
"VListBox" oldname=
"wxPyVListBox" module=
"windows"> 
11168       <baseclass name=
"VScrolledWindow"/> 
11169       <constructor name=
"wxPyVListBox" overloaded=
"no"> 
11170         <autodoc>__init__(Window parent, int id=ID_ANY, Point pos=DefaultPosition, 
 
11171     Size size=DefaultSize, long style=
0, String name=VListBoxNameStr) -
> VListBox
</autodoc> 
11173           <param name=
"parent" type=
"Window" default=
""/> 
11174           <param name=
"id" type=
"int" default=
"wxID_ANY"/> 
11175           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
11176           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
11177           <param name=
"style" type=
"long" default=
"0"/> 
11178           <param name=
"name" type=
"String" default=
"wxPyVListBoxNameStr"/> 
11181       <constructor name=
"PreVListBox" overloaded=
"no"> 
11182         <autodoc>PreVListBox() -
> VListBox
</autodoc> 
11184       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
11185         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
11187           <param name=
"self" type=
"PyObject" default=
""/> 
11188           <param name=
"_class" type=
"PyObject" default=
""/> 
11191       <method name=
"Create" type=
"bool" overloaded=
"no"> 
11192         <autodoc>Create(Window parent, int id=ID_ANY, Point pos=DefaultPosition, 
 
11193     Size size=DefaultSize, long style=
0, String name=VListBoxNameStr) -
> bool
</autodoc> 
11195           <param name=
"parent" type=
"Window" default=
""/> 
11196           <param name=
"id" type=
"int" default=
"wxID_ANY"/> 
11197           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
11198           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
11199           <param name=
"style" type=
"long" default=
"0"/> 
11200           <param name=
"name" type=
"String" default=
"wxPyVListBoxNameStr"/> 
11203       <method name=
"GetItemCount" type=
"size_t" overloaded=
"no"> 
11204         <autodoc>GetItemCount() -
> size_t
</autodoc> 
11206       <method name=
"HasMultipleSelection" type=
"bool" overloaded=
"no"> 
11207         <autodoc>HasMultipleSelection() -
> bool
</autodoc> 
11209       <method name=
"GetSelection" type=
"int" overloaded=
"no"> 
11210         <autodoc>GetSelection() -
> int
</autodoc> 
11212       <method name=
"IsCurrent" type=
"bool" overloaded=
"no"> 
11213         <autodoc>IsCurrent(size_t item) -
> bool
</autodoc> 
11215           <param name=
"item" type=
"size_t" default=
""/> 
11218       <method name=
"IsSelected" type=
"bool" overloaded=
"no"> 
11219         <autodoc>IsSelected(size_t item) -
> bool
</autodoc> 
11221           <param name=
"item" type=
"size_t" default=
""/> 
11224       <method name=
"GetSelectedCount" type=
"size_t" overloaded=
"no"> 
11225         <autodoc>GetSelectedCount() -
> size_t
</autodoc> 
11227       <method name=
"GetFirstSelected" type=
"int" overloaded=
"no"> 
11228         <autodoc>GetFirstSelected(unsigned long cookie) -
> int
</autodoc> 
11230           <param name=
"cookie" type=
"unsigned long" default=
""/> 
11233       <method name=
"GetNextSelected" type=
"int" overloaded=
"no"> 
11234         <autodoc>GetNextSelected(unsigned long cookie) -
> int
</autodoc> 
11236           <param name=
"cookie" type=
"unsigned long" default=
""/> 
11239       <method name=
"GetMargins" type=
"Point" overloaded=
"no"> 
11240         <autodoc>GetMargins() -
> Point
</autodoc> 
11242       <method name=
"GetSelectionBackground" type=
"Colour" overloaded=
"no"> 
11243         <autodoc>GetSelectionBackground() -
> Colour
</autodoc> 
11245       <method name=
"SetItemCount" type=
"" overloaded=
"no"> 
11246         <autodoc>SetItemCount(size_t count)
</autodoc> 
11248           <param name=
"count" type=
"size_t" default=
""/> 
11251       <method name=
"Clear" type=
"" overloaded=
"no"> 
11252         <autodoc>Clear()
</autodoc> 
11254       <method name=
"SetSelection" type=
"" overloaded=
"no"> 
11255         <autodoc>SetSelection(int selection)
</autodoc> 
11257           <param name=
"selection" type=
"int" default=
""/> 
11260       <method name=
"Select" type=
"bool" overloaded=
"no"> 
11261         <autodoc>Select(size_t item, bool select=True) -
> bool
</autodoc> 
11263           <param name=
"item" type=
"size_t" default=
""/> 
11264           <param name=
"select" type=
"bool" default=
"True"/> 
11267       <method name=
"SelectRange" type=
"bool" overloaded=
"no"> 
11268         <autodoc>SelectRange(size_t from, size_t to) -
> bool
</autodoc> 
11270           <param name=
"from" type=
"size_t" default=
""/> 
11271           <param name=
"to" type=
"size_t" default=
""/> 
11274       <method name=
"Toggle" type=
"" overloaded=
"no"> 
11275         <autodoc>Toggle(size_t item)
</autodoc> 
11277           <param name=
"item" type=
"size_t" default=
""/> 
11280       <method name=
"SelectAll" type=
"bool" overloaded=
"no"> 
11281         <autodoc>SelectAll() -
> bool
</autodoc> 
11283       <method name=
"DeselectAll" type=
"bool" overloaded=
"no"> 
11284         <autodoc>DeselectAll() -
> bool
</autodoc> 
11286       <method name=
"SetMargins" type=
"" overloaded=
"no"> 
11287         <autodoc>SetMargins(Point pt)
</autodoc> 
11289           <param name=
"pt" type=
"Point" default=
""/> 
11292       <method name=
"SetMarginsXY" type=
"" overloaded=
"no"> 
11293         <autodoc>SetMarginsXY(int x, int y)
</autodoc> 
11295           <param name=
"x" type=
"int" default=
""/> 
11296           <param name=
"y" type=
"int" default=
""/> 
11299       <method name=
"SetSelectionBackground" type=
"" overloaded=
"no"> 
11300         <autodoc>SetSelectionBackground(Colour col)
</autodoc> 
11302           <param name=
"col" type=
"Colour" default=
""/> 
11306     <class name=
"HtmlListBox" oldname=
"wxPyHtmlListBox" module=
"windows"> 
11307       <baseclass name=
"VListBox"/> 
11308       <constructor name=
"wxPyHtmlListBox" overloaded=
"no"> 
11309         <autodoc>__init__(Window parent, int id=ID_ANY, Point pos=DefaultPosition, 
 
11310     Size size=DefaultSize, long style=
0, String name=VListBoxNameStr) -
> HtmlListBox
</autodoc> 
11312           <param name=
"parent" type=
"Window" default=
""/> 
11313           <param name=
"id" type=
"int" default=
"wxID_ANY"/> 
11314           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
11315           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
11316           <param name=
"style" type=
"long" default=
"0"/> 
11317           <param name=
"name" type=
"String" default=
"wxPyVListBoxNameStr"/> 
11320       <constructor name=
"PreHtmlListBox" overloaded=
"no"> 
11321         <autodoc>PreHtmlListBox() -
> HtmlListBox
</autodoc> 
11323       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
11324         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
11326           <param name=
"self" type=
"PyObject" default=
""/> 
11327           <param name=
"_class" type=
"PyObject" default=
""/> 
11330       <method name=
"Create" type=
"bool" overloaded=
"no"> 
11331         <autodoc>Create(Window parent, int id=ID_ANY, Point pos=DefaultPosition, 
 
11332     Size size=DefaultSize, long style=
0, String name=VListBoxNameStr) -
> bool
</autodoc> 
11334           <param name=
"parent" type=
"Window" default=
""/> 
11335           <param name=
"id" type=
"int" default=
"wxID_ANY"/> 
11336           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
11337           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
11338           <param name=
"style" type=
"long" default=
"0"/> 
11339           <param name=
"name" type=
"String" default=
"wxPyVListBoxNameStr"/> 
11342       <method name=
"RefreshAll" type=
"" overloaded=
"no"> 
11343         <autodoc>RefreshAll()
</autodoc> 
11345       <method name=
"SetItemCount" type=
"" overloaded=
"no"> 
11346         <autodoc>SetItemCount(size_t count)
</autodoc> 
11348           <param name=
"count" type=
"size_t" default=
""/> 
11353 #---------------------------------------------------------------------------
 
11355     <class name=
"TaskBarIcon" oldname=
"wxTaskBarIcon" module=
"windows"> 
11356       <baseclass name=
"EvtHandler"/> 
11357       <constructor name=
"TaskBarIcon" overloaded=
"no"> 
11358         <autodoc>__init__() -
> TaskBarIcon
</autodoc> 
11360       <destructor name=
"~wxTaskBarIcon" overloaded=
"no"> 
11361         <autodoc>__del__()
</autodoc> 
11363       <method name=
"IsOk" type=
"bool" overloaded=
"no"> 
11364         <autodoc>IsOk() -
> bool
</autodoc> 
11366       <method name=
"IsIconInstalled" type=
"bool" overloaded=
"no"> 
11367         <autodoc>IsIconInstalled() -
> bool
</autodoc> 
11369       <method name=
"SetIcon" type=
"bool" overloaded=
"no"> 
11370         <autodoc>SetIcon(Icon icon, String tooltip=EmptyString) -
> bool
</autodoc> 
11372           <param name=
"icon" type=
"Icon" default=
""/> 
11373           <param name=
"tooltip" type=
"String" default=
"wxPyEmptyString"/> 
11376       <method name=
"RemoveIcon" type=
"bool" overloaded=
"no"> 
11377         <autodoc>RemoveIcon() -
> bool
</autodoc> 
11379       <method name=
"PopupMenu" type=
"bool" overloaded=
"no"> 
11380         <autodoc>PopupMenu(Menu menu) -
> bool
</autodoc> 
11382           <param name=
"menu" type=
"Menu" default=
""/> 
11386     <class name=
"TaskBarIconEvent" oldname=
"wxTaskBarIconEvent" module=
"windows"> 
11387       <baseclass name=
"Event"/> 
11388       <constructor name=
"TaskBarIconEvent" overloaded=
"no"> 
11389         <autodoc>__init__(wxEventType evtType, TaskBarIcon tbIcon) -
> TaskBarIconEvent
</autodoc> 
11391           <param name=
"evtType" type=
"wxEventType" default=
""/> 
11392           <param name=
"tbIcon" type=
"TaskBarIcon" default=
""/> 
11397 EVT_TASKBAR_MOVE = wx.PyEventBinder (         wxEVT_TASKBAR_MOVE )
 
11398 EVT_TASKBAR_LEFT_DOWN = wx.PyEventBinder (    wxEVT_TASKBAR_LEFT_DOWN )
 
11399 EVT_TASKBAR_LEFT_UP = wx.PyEventBinder (      wxEVT_TASKBAR_LEFT_UP )
 
11400 EVT_TASKBAR_RIGHT_DOWN = wx.PyEventBinder (   wxEVT_TASKBAR_RIGHT_DOWN )
 
11401 EVT_TASKBAR_RIGHT_UP = wx.PyEventBinder (     wxEVT_TASKBAR_RIGHT_UP )
 
11402 EVT_TASKBAR_LEFT_DCLICK = wx.PyEventBinder (  wxEVT_TASKBAR_LEFT_DCLICK )
 
11403 EVT_TASKBAR_RIGHT_DCLICK = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DCLICK )
 
11406 #---------------------------------------------------------------------------
 
11408     <class name=
"ColourData" oldname=
"wxColourData" module=
"windows"> 
11409       <baseclass name=
"Object"/> 
11410       <constructor name=
"ColourData" overloaded=
"no"> 
11411         <autodoc>__init__() -
> ColourData
</autodoc> 
11413       <destructor name=
"~wxColourData" overloaded=
"no"> 
11414         <autodoc>__del__()
</autodoc> 
11416       <method name=
"GetChooseFull" type=
"bool" overloaded=
"no"> 
11417         <autodoc>GetChooseFull() -
> bool
</autodoc> 
11419       <method name=
"GetColour" type=
"Colour" overloaded=
"no"> 
11420         <autodoc>GetColour() -
> Colour
</autodoc> 
11422       <method name=
"GetCustomColour" type=
"Colour" overloaded=
"no"> 
11423         <autodoc>GetCustomColour(int i) -
> Colour
</autodoc> 
11425           <param name=
"i" type=
"int" default=
""/> 
11428       <method name=
"SetChooseFull" type=
"" overloaded=
"no"> 
11429         <autodoc>SetChooseFull(int flag)
</autodoc> 
11431           <param name=
"flag" type=
"int" default=
""/> 
11434       <method name=
"SetColour" type=
"" overloaded=
"no"> 
11435         <autodoc>SetColour(Colour colour)
</autodoc> 
11437           <param name=
"colour" type=
"Colour" default=
""/> 
11440       <method name=
"SetCustomColour" type=
"" overloaded=
"no"> 
11441         <autodoc>SetCustomColour(int i, Colour colour)
</autodoc> 
11443           <param name=
"i" type=
"int" default=
""/> 
11444           <param name=
"colour" type=
"Colour" default=
""/> 
11448     <class name=
"ColourDialog" oldname=
"wxColourDialog" module=
"windows"> 
11449       <baseclass name=
"Dialog"/> 
11450       <constructor name=
"ColourDialog" overloaded=
"no"> 
11451         <autodoc>__init__(Window parent, ColourData data=None) -
> ColourDialog
</autodoc> 
11453           <param name=
"parent" type=
"Window" default=
""/> 
11454           <param name=
"data" type=
"ColourData" default=
"NULL"/> 
11457       <method name=
"GetColourData" type=
"ColourData" overloaded=
"no"> 
11458         <autodoc>GetColourData() -
> ColourData
</autodoc> 
11460       <method name=
"ShowModal" type=
"int" overloaded=
"no"> 
11461         <autodoc>ShowModal() -
> int
</autodoc> 
11464     <class name=
"DirDialog" oldname=
"wxDirDialog" module=
"windows"> 
11465       <baseclass name=
"Dialog"/> 
11466       <constructor name=
"DirDialog" overloaded=
"no"> 
11467         <autodoc>__init__(Window parent, String message=DirSelectorPromptStr, 
 
11468     String defaultPath=EmptyString, long style=
0, 
 
11469     Point pos=DefaultPosition, Size size=DefaultSize, 
 
11470     String name=DirDialogNameStr) -
> DirDialog
</autodoc> 
11472           <param name=
"parent" type=
"Window" default=
""/> 
11473           <param name=
"message" type=
"String" default=
"wxPyDirSelectorPromptStr"/> 
11474           <param name=
"defaultPath" type=
"String" default=
"wxPyEmptyString"/> 
11475           <param name=
"style" type=
"long" default=
"0"/> 
11476           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
11477           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
11478           <param name=
"name" type=
"String" default=
"wxPyDirDialogNameStr"/> 
11481       <method name=
"GetPath" type=
"String" overloaded=
"no"> 
11482         <autodoc>GetPath() -
> String
</autodoc> 
11484       <method name=
"GetMessage" type=
"String" overloaded=
"no"> 
11485         <autodoc>GetMessage() -
> String
</autodoc> 
11487       <method name=
"GetStyle" type=
"long" overloaded=
"no"> 
11488         <autodoc>GetStyle() -
> long
</autodoc> 
11490       <method name=
"SetMessage" type=
"" overloaded=
"no"> 
11491         <autodoc>SetMessage(String message)
</autodoc> 
11493           <param name=
"message" type=
"String" default=
""/> 
11496       <method name=
"SetPath" type=
"" overloaded=
"no"> 
11497         <autodoc>SetPath(String path)
</autodoc> 
11499           <param name=
"path" type=
"String" default=
""/> 
11502       <method name=
"ShowModal" type=
"int" overloaded=
"no"> 
11503         <autodoc>ShowModal() -
> int
</autodoc> 
11506     <class name=
"FileDialog" oldname=
"wxFileDialog" module=
"windows"> 
11507       <baseclass name=
"Dialog"/> 
11508       <constructor name=
"FileDialog" overloaded=
"no"> 
11509         <autodoc>__init__(Window parent, String message=FileSelectorPromptStr, 
 
11510     String defaultDir=EmptyString, String defaultFile=EmptyString, 
 
11511     String wildcard=FileSelectorDefaultWildcardStr, 
 
11512     long style=
0, Point pos=DefaultPosition) -
> FileDialog
</autodoc> 
11514           <param name=
"parent" type=
"Window" default=
""/> 
11515           <param name=
"message" type=
"String" default=
"wxPyFileSelectorPromptStr"/> 
11516           <param name=
"defaultDir" type=
"String" default=
"wxPyEmptyString"/> 
11517           <param name=
"defaultFile" type=
"String" default=
"wxPyEmptyString"/> 
11518           <param name=
"wildcard" type=
"String" default=
"wxPyFileSelectorDefaultWildcardStr"/> 
11519           <param name=
"style" type=
"long" default=
"0"/> 
11520           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
11523       <method name=
"SetMessage" type=
"" overloaded=
"no"> 
11524         <autodoc>SetMessage(String message)
</autodoc> 
11526           <param name=
"message" type=
"String" default=
""/> 
11529       <method name=
"SetPath" type=
"" overloaded=
"no"> 
11530         <autodoc>SetPath(String path)
</autodoc> 
11532           <param name=
"path" type=
"String" default=
""/> 
11535       <method name=
"SetDirectory" type=
"" overloaded=
"no"> 
11536         <autodoc>SetDirectory(String dir)
</autodoc> 
11538           <param name=
"dir" type=
"String" default=
""/> 
11541       <method name=
"SetFilename" type=
"" overloaded=
"no"> 
11542         <autodoc>SetFilename(String name)
</autodoc> 
11544           <param name=
"name" type=
"String" default=
""/> 
11547       <method name=
"SetWildcard" type=
"" overloaded=
"no"> 
11548         <autodoc>SetWildcard(String wildCard)
</autodoc> 
11550           <param name=
"wildCard" type=
"String" default=
""/> 
11553       <method name=
"SetStyle" type=
"" overloaded=
"no"> 
11554         <autodoc>SetStyle(long style)
</autodoc> 
11556           <param name=
"style" type=
"long" default=
""/> 
11559       <method name=
"SetFilterIndex" type=
"" overloaded=
"no"> 
11560         <autodoc>SetFilterIndex(int filterIndex)
</autodoc> 
11562           <param name=
"filterIndex" type=
"int" default=
""/> 
11565       <method name=
"GetMessage" type=
"String" overloaded=
"no"> 
11566         <autodoc>GetMessage() -
> String
</autodoc> 
11568       <method name=
"GetPath" type=
"String" overloaded=
"no"> 
11569         <autodoc>GetPath() -
> String
</autodoc> 
11571       <method name=
"GetDirectory" type=
"String" overloaded=
"no"> 
11572         <autodoc>GetDirectory() -
> String
</autodoc> 
11574       <method name=
"GetFilename" type=
"String" overloaded=
"no"> 
11575         <autodoc>GetFilename() -
> String
</autodoc> 
11577       <method name=
"GetWildcard" type=
"String" overloaded=
"no"> 
11578         <autodoc>GetWildcard() -
> String
</autodoc> 
11580       <method name=
"GetStyle" type=
"long" overloaded=
"no"> 
11581         <autodoc>GetStyle() -
> long
</autodoc> 
11583       <method name=
"GetFilterIndex" type=
"int" overloaded=
"no"> 
11584         <autodoc>GetFilterIndex() -
> int
</autodoc> 
11586       <method name=
"GetFilenames" type=
"PyObject" overloaded=
"no"> 
11587         <autodoc>GetFilenames() -
> PyObject
</autodoc> 
11589       <method name=
"GetPaths" type=
"PyObject" overloaded=
"no"> 
11590         <autodoc>GetPaths() -
> PyObject
</autodoc> 
11593     <class name=
"MultiChoiceDialog" oldname=
"wxMultiChoiceDialog" module=
"windows"> 
11594       <baseclass name=
"Dialog"/> 
11595       <constructor name=
"MultiChoiceDialog" overloaded=
"no"> 
11596         <autodoc>__init__(Window parent, String message, String caption, int LCOUNT, 
 
11597     String choices, long style=CHOICEDLG_STYLE, 
 
11598     Point pos=DefaultPosition) -
> MultiChoiceDialog
</autodoc> 
11600           <param name=
"parent" type=
"Window" default=
""/> 
11601           <param name=
"message" type=
"String" default=
""/> 
11602           <param name=
"caption" type=
"String" default=
""/> 
11603           <param name=
"LCOUNT" type=
"int" default=
""/> 
11604           <param name=
"choices" type=
"String" default=
""/> 
11605           <param name=
"style" type=
"long" default=
"wxCHOICEDLG_STYLE"/> 
11606           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
11609       <method name=
"SetSelections" type=
"" overloaded=
"no"> 
11610         <autodoc>SetSelections(wxArrayInt selections)
</autodoc> 
11612           <param name=
"selections" type=
"wxArrayInt" default=
""/> 
11615       <method name=
"GetSelections" type=
"PyObject" overloaded=
"no"> 
11616         <autodoc>GetSelections() -
> PyObject
</autodoc> 
11619     <class name=
"SingleChoiceDialog" oldname=
"wxSingleChoiceDialog" module=
"windows"> 
11620       <baseclass name=
"Dialog"/> 
11621       <constructor name=
"SingleChoiceDialog" overloaded=
"no"> 
11622         <autodoc>__init__(Window parent, String message, String caption, int choices, 
 
11623     String choices_array, long style=CHOICEDLG_STYLE, 
 
11624     Point pos=DefaultPosition) -
> SingleChoiceDialog
</autodoc> 
11626           <param name=
"parent" type=
"Window" default=
""/> 
11627           <param name=
"message" type=
"String" default=
""/> 
11628           <param name=
"caption" type=
"String" default=
""/> 
11629           <param name=
"choices" type=
"int" default=
""/> 
11630           <param name=
"choices_array" type=
"String" default=
""/> 
11631           <param name=
"style" type=
"long" default=
"wxCHOICEDLG_STYLE"/> 
11632           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
11635       <method name=
"GetSelection" type=
"int" overloaded=
"no"> 
11636         <autodoc>GetSelection() -
> int
</autodoc> 
11638       <method name=
"GetStringSelection" type=
"String" overloaded=
"no"> 
11639         <autodoc>GetStringSelection() -
> String
</autodoc> 
11641       <method name=
"SetSelection" type=
"" overloaded=
"no"> 
11642         <autodoc>SetSelection(int sel)
</autodoc> 
11644           <param name=
"sel" type=
"int" default=
""/> 
11647       <method name=
"ShowModal" type=
"int" overloaded=
"no"> 
11648         <autodoc>ShowModal() -
> int
</autodoc> 
11651     <class name=
"TextEntryDialog" oldname=
"wxTextEntryDialog" module=
"windows"> 
11652       <baseclass name=
"Dialog"/> 
11653       <constructor name=
"TextEntryDialog" overloaded=
"no"> 
11654         <autodoc>__init__(Window parent, String message, String caption=GetTextFromUserPromptStr, 
 
11655     String defaultValue=EmptyString, 
 
11656     long style=wxOK|wxCANCEL|wxCENTRE, Point pos=DefaultPosition) -
> TextEntryDialog
</autodoc> 
11658           <param name=
"parent" type=
"Window" default=
""/> 
11659           <param name=
"message" type=
"String" default=
""/> 
11660           <param name=
"caption" type=
"String" default=
"wxPyGetTextFromUserPromptStr"/> 
11661           <param name=
"defaultValue" type=
"String" default=
"wxPyEmptyString"/> 
11662           <param name=
"style" type=
"long" default=
"wxOK|wxCANCEL|wxCENTRE"/> 
11663           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
11666       <method name=
"GetValue" type=
"String" overloaded=
"no"> 
11667         <autodoc>GetValue() -
> String
</autodoc> 
11669       <method name=
"SetValue" type=
"" overloaded=
"no"> 
11670         <autodoc>SetValue(String value)
</autodoc> 
11672           <param name=
"value" type=
"String" default=
""/> 
11675       <method name=
"ShowModal" type=
"int" overloaded=
"no"> 
11676         <autodoc>ShowModal() -
> int
</autodoc> 
11679     <class name=
"FontData" oldname=
"wxFontData" module=
"windows"> 
11680       <baseclass name=
"Object"/> 
11681       <constructor name=
"FontData" overloaded=
"no"> 
11682         <autodoc>__init__() -
> FontData
</autodoc> 
11684       <destructor name=
"~wxFontData" overloaded=
"no"> 
11685         <autodoc>__del__()
</autodoc> 
11687       <method name=
"EnableEffects" type=
"" overloaded=
"no"> 
11688         <autodoc>EnableEffects(bool enable)
</autodoc> 
11690           <param name=
"enable" type=
"bool" default=
""/> 
11693       <method name=
"GetAllowSymbols" type=
"bool" overloaded=
"no"> 
11694         <autodoc>GetAllowSymbols() -
> bool
</autodoc> 
11696       <method name=
"GetColour" type=
"Colour" overloaded=
"no"> 
11697         <autodoc>GetColour() -
> Colour
</autodoc> 
11699       <method name=
"GetChosenFont" type=
"Font" overloaded=
"no"> 
11700         <autodoc>GetChosenFont() -
> Font
</autodoc> 
11702       <method name=
"GetEnableEffects" type=
"bool" overloaded=
"no"> 
11703         <autodoc>GetEnableEffects() -
> bool
</autodoc> 
11705       <method name=
"GetInitialFont" type=
"Font" overloaded=
"no"> 
11706         <autodoc>GetInitialFont() -
> Font
</autodoc> 
11708       <method name=
"GetShowHelp" type=
"bool" overloaded=
"no"> 
11709         <autodoc>GetShowHelp() -
> bool
</autodoc> 
11711       <method name=
"SetAllowSymbols" type=
"" overloaded=
"no"> 
11712         <autodoc>SetAllowSymbols(bool allowSymbols)
</autodoc> 
11714           <param name=
"allowSymbols" type=
"bool" default=
""/> 
11717       <method name=
"SetChosenFont" type=
"" overloaded=
"no"> 
11718         <autodoc>SetChosenFont(Font font)
</autodoc> 
11720           <param name=
"font" type=
"Font" default=
""/> 
11723       <method name=
"SetColour" type=
"" overloaded=
"no"> 
11724         <autodoc>SetColour(Colour colour)
</autodoc> 
11726           <param name=
"colour" type=
"Colour" default=
""/> 
11729       <method name=
"SetInitialFont" type=
"" overloaded=
"no"> 
11730         <autodoc>SetInitialFont(Font font)
</autodoc> 
11732           <param name=
"font" type=
"Font" default=
""/> 
11735       <method name=
"SetRange" type=
"" overloaded=
"no"> 
11736         <autodoc>SetRange(int min, int max)
</autodoc> 
11738           <param name=
"min" type=
"int" default=
""/> 
11739           <param name=
"max" type=
"int" default=
""/> 
11742       <method name=
"SetShowHelp" type=
"" overloaded=
"no"> 
11743         <autodoc>SetShowHelp(bool showHelp)
</autodoc> 
11745           <param name=
"showHelp" type=
"bool" default=
""/> 
11749     <class name=
"FontDialog" oldname=
"wxFontDialog" module=
"windows"> 
11750       <baseclass name=
"Dialog"/> 
11751       <constructor name=
"FontDialog" overloaded=
"no"> 
11752         <autodoc>__init__(Window parent, FontData data) -
> FontDialog
</autodoc> 
11754           <param name=
"parent" type=
"Window" default=
""/> 
11755           <param name=
"data" type=
"FontData" default=
""/> 
11758       <method name=
"GetFontData" type=
"FontData" overloaded=
"no"> 
11759         <autodoc>GetFontData() -
> FontData
</autodoc> 
11761       <method name=
"ShowModal" type=
"int" overloaded=
"no"> 
11762         <autodoc>ShowModal() -
> int
</autodoc> 
11765     <class name=
"MessageDialog" oldname=
"wxMessageDialog" module=
"windows"> 
11766       <baseclass name=
"Dialog"/> 
11767       <constructor name=
"MessageDialog" overloaded=
"no"> 
11768         <autodoc>__init__(Window parent, String message, String caption=MessageBoxCaptionStr, 
 
11769     long style=wxOK|wxCANCEL|wxCENTRE, 
 
11770     Point pos=DefaultPosition) -
> MessageDialog
</autodoc> 
11772           <param name=
"parent" type=
"Window" default=
""/> 
11773           <param name=
"message" type=
"String" default=
""/> 
11774           <param name=
"caption" type=
"String" default=
"wxPyMessageBoxCaptionStr"/> 
11775           <param name=
"style" type=
"long" default=
"wxOK|wxCANCEL|wxCENTRE"/> 
11776           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
11779       <method name=
"ShowModal" type=
"int" overloaded=
"no"> 
11780         <autodoc>ShowModal() -
> int
</autodoc> 
11783     <class name=
"ProgressDialog" oldname=
"wxProgressDialog" module=
"windows"> 
11784       <baseclass name=
"Frame"/> 
11785       <constructor name=
"ProgressDialog" overloaded=
"no"> 
11786         <autodoc>__init__(String title, String message, int maximum=
100, Window parent=None, 
 
11787     int style=wxPD_AUTO_HIDE|wxPD_APP_MODAL) -
> ProgressDialog
</autodoc> 
11789           <param name=
"title" type=
"String" default=
""/> 
11790           <param name=
"message" type=
"String" default=
""/> 
11791           <param name=
"maximum" type=
"int" default=
"100"/> 
11792           <param name=
"parent" type=
"Window" default=
"NULL"/> 
11793           <param name=
"style" type=
"int" default=
"wxPD_AUTO_HIDE|wxPD_APP_MODAL"/> 
11796       <method name=
"Update" type=
"bool" overloaded=
"no"> 
11797         <autodoc>Update(int value, String newmsg=EmptyString) -
> bool
</autodoc> 
11799           <param name=
"value" type=
"int" default=
""/> 
11800           <param name=
"newmsg" type=
"String" default=
"wxPyEmptyString"/> 
11803       <method name=
"Resume" type=
"" overloaded=
"no"> 
11804         <autodoc>Resume()
</autodoc> 
11808 EVT_FIND = wx.PyEventBinder( wxEVT_COMMAND_FIND, 
1 )
 
11809 EVT_FIND_NEXT = wx.PyEventBinder( wxEVT_COMMAND_FIND_NEXT, 
1 )
 
11810 EVT_FIND_REPLACE = wx.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE, 
1 )
 
11811 EVT_FIND_REPLACE_ALL = wx.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE_ALL, 
1 )
 
11812 EVT_FIND_CLOSE = wx.PyEventBinder( wxEVT_COMMAND_FIND_CLOSE, 
1 )
 
11814 # For backwards compatibility.  Should they be removed?
 
11815 EVT_COMMAND_FIND             = EVT_FIND 
 
11816 EVT_COMMAND_FIND_NEXT        = EVT_FIND_NEXT
 
11817 EVT_COMMAND_FIND_REPLACE     = EVT_FIND_REPLACE
 
11818 EVT_COMMAND_FIND_REPLACE_ALL = EVT_FIND_REPLACE_ALL
 
11819 EVT_COMMAND_FIND_CLOSE       = EVT_FIND_CLOSE        
 
11821     <class name=
"FindDialogEvent" oldname=
"wxFindDialogEvent" module=
"windows"> 
11822       <baseclass name=
"CommandEvent"/> 
11823       <constructor name=
"FindDialogEvent" overloaded=
"no"> 
11824         <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int id=
0) -
> FindDialogEvent
</autodoc> 
11826           <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/> 
11827           <param name=
"id" type=
"int" default=
"0"/> 
11830       <method name=
"GetFlags" type=
"int" overloaded=
"no"> 
11831         <autodoc>GetFlags() -
> int
</autodoc> 
11833       <method name=
"GetFindString" type=
"String" overloaded=
"no"> 
11834         <autodoc>GetFindString() -
> String
</autodoc> 
11836       <method name=
"GetReplaceString" type=
"String" overloaded=
"no"> 
11837         <autodoc>GetReplaceString() -
> String
</autodoc> 
11839       <method name=
"GetDialog" type=
"wxFindReplaceDialog" overloaded=
"no"> 
11840         <autodoc>GetDialog() -
> FindReplaceDialog
</autodoc> 
11842       <method name=
"SetFlags" type=
"" overloaded=
"no"> 
11843         <autodoc>SetFlags(int flags)
</autodoc> 
11845           <param name=
"flags" type=
"int" default=
""/> 
11848       <method name=
"SetFindString" type=
"" overloaded=
"no"> 
11849         <autodoc>SetFindString(String str)
</autodoc> 
11851           <param name=
"str" type=
"String" default=
""/> 
11854       <method name=
"SetReplaceString" type=
"" overloaded=
"no"> 
11855         <autodoc>SetReplaceString(String str)
</autodoc> 
11857           <param name=
"str" type=
"String" default=
""/> 
11861     <class name=
"FindReplaceData" oldname=
"wxFindReplaceData" module=
"windows"> 
11862       <baseclass name=
"Object"/> 
11863       <constructor name=
"FindReplaceData" overloaded=
"no"> 
11864         <autodoc>__init__(int flags=
0) -
> FindReplaceData
</autodoc> 
11866           <param name=
"flags" type=
"int" default=
"0"/> 
11869       <destructor name=
"~wxFindReplaceData" overloaded=
"no"> 
11870         <autodoc>__del__()
</autodoc> 
11872       <method name=
"GetFindString" type=
"String" overloaded=
"no"> 
11873         <autodoc>GetFindString() -
> String
</autodoc> 
11875       <method name=
"GetReplaceString" type=
"String" overloaded=
"no"> 
11876         <autodoc>GetReplaceString() -
> String
</autodoc> 
11878       <method name=
"GetFlags" type=
"int" overloaded=
"no"> 
11879         <autodoc>GetFlags() -
> int
</autodoc> 
11881       <method name=
"SetFlags" type=
"" overloaded=
"no"> 
11882         <autodoc>SetFlags(int flags)
</autodoc> 
11884           <param name=
"flags" type=
"int" default=
""/> 
11887       <method name=
"SetFindString" type=
"" overloaded=
"no"> 
11888         <autodoc>SetFindString(String str)
</autodoc> 
11890           <param name=
"str" type=
"String" default=
""/> 
11893       <method name=
"SetReplaceString" type=
"" overloaded=
"no"> 
11894         <autodoc>SetReplaceString(String str)
</autodoc> 
11896           <param name=
"str" type=
"String" default=
""/> 
11900     <class name=
"FindReplaceDialog" oldname=
"wxFindReplaceDialog" module=
"windows"> 
11901       <baseclass name=
"Dialog"/> 
11902       <constructor name=
"FindReplaceDialog" overloaded=
"no"> 
11903         <autodoc>__init__(Window parent, FindReplaceData data, String title, 
 
11904     int style=
0) -
> FindReplaceDialog
</autodoc> 
11906           <param name=
"parent" type=
"Window" default=
""/> 
11907           <param name=
"data" type=
"FindReplaceData" default=
""/> 
11908           <param name=
"title" type=
"String" default=
""/> 
11909           <param name=
"style" type=
"int" default=
"0"/> 
11912       <constructor name=
"PreFindReplaceDialog" overloaded=
"no"> 
11913         <autodoc>PreFindReplaceDialog() -
> FindReplaceDialog
</autodoc> 
11915       <method name=
"Create" type=
"bool" overloaded=
"no"> 
11916         <autodoc>Create(Window parent, FindReplaceData data, String title, 
 
11917     int style=
0) -
> bool
</autodoc> 
11919           <param name=
"parent" type=
"Window" default=
""/> 
11920           <param name=
"data" type=
"FindReplaceData" default=
""/> 
11921           <param name=
"title" type=
"String" default=
""/> 
11922           <param name=
"style" type=
"int" default=
"0"/> 
11925       <method name=
"GetData" type=
"FindReplaceData" overloaded=
"no"> 
11926         <autodoc>GetData() -
> FindReplaceData
</autodoc> 
11928       <method name=
"SetData" type=
"" overloaded=
"no"> 
11929         <autodoc>SetData(FindReplaceData data)
</autodoc> 
11931           <param name=
"data" type=
"FindReplaceData" default=
""/> 
11936 #---------------------------------------------------------------------------
 
11938     <class name=
"MDIParentFrame" oldname=
"wxMDIParentFrame" module=
"windows"> 
11939       <baseclass name=
"Frame"/> 
11940       <constructor name=
"MDIParentFrame" overloaded=
"no"> 
11941         <autodoc>__init__(Window parent, int id, String title, Point pos=DefaultPosition, 
 
11942     Size size=DefaultSize, long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL, 
 
11943     String name=FrameNameStr) -
> MDIParentFrame
</autodoc> 
11945           <param name=
"parent" type=
"Window" default=
""/> 
11946           <param name=
"id" type=
"int" default=
""/> 
11947           <param name=
"title" type=
"String" default=
""/> 
11948           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
11949           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
11950           <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL"/> 
11951           <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/> 
11954       <constructor name=
"PreMDIParentFrame" overloaded=
"no"> 
11955         <autodoc>PreMDIParentFrame() -
> MDIParentFrame
</autodoc> 
11957       <method name=
"Create" type=
"bool" overloaded=
"no"> 
11958         <autodoc>Create(Window parent, int id, String title, Point pos=DefaultPosition, 
 
11959     Size size=DefaultSize, long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL, 
 
11960     String name=FrameNameStr) -
> bool
</autodoc> 
11962           <param name=
"parent" type=
"Window" default=
""/> 
11963           <param name=
"id" type=
"int" default=
""/> 
11964           <param name=
"title" type=
"String" default=
""/> 
11965           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
11966           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
11967           <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL"/> 
11968           <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/> 
11971       <method name=
"ActivateNext" type=
"" overloaded=
"no"> 
11972         <autodoc>ActivateNext()
</autodoc> 
11974       <method name=
"ActivatePrevious" type=
"" overloaded=
"no"> 
11975         <autodoc>ActivatePrevious()
</autodoc> 
11977       <method name=
"ArrangeIcons" type=
"" overloaded=
"no"> 
11978         <autodoc>ArrangeIcons()
</autodoc> 
11980       <method name=
"Cascade" type=
"" overloaded=
"no"> 
11981         <autodoc>Cascade()
</autodoc> 
11983       <method name=
"GetActiveChild" type=
"wxMDIChildFrame" overloaded=
"no"> 
11984         <autodoc>GetActiveChild() -
> MDIChildFrame
</autodoc> 
11986       <method name=
"GetClientWindow" type=
"wxMDIClientWindow" overloaded=
"no"> 
11987         <autodoc>GetClientWindow() -
> MDIClientWindow
</autodoc> 
11989       <method name=
"GetToolBar" type=
"Window" overloaded=
"no"> 
11990         <autodoc>GetToolBar() -
> Window
</autodoc> 
11992       <method name=
"Tile" type=
"" overloaded=
"no"> 
11993         <autodoc>Tile()
</autodoc> 
11996     <class name=
"MDIChildFrame" oldname=
"wxMDIChildFrame" module=
"windows"> 
11997       <baseclass name=
"Frame"/> 
11998       <constructor name=
"MDIChildFrame" overloaded=
"no"> 
11999         <autodoc>__init__(MDIParentFrame parent, int id, String title, Point pos=DefaultPosition, 
 
12000     Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE, 
 
12001     String name=FrameNameStr) -
> MDIChildFrame
</autodoc> 
12003           <param name=
"parent" type=
"MDIParentFrame" default=
""/> 
12004           <param name=
"id" type=
"int" default=
""/> 
12005           <param name=
"title" type=
"String" default=
""/> 
12006           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
12007           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
12008           <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/> 
12009           <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/> 
12012       <constructor name=
"PreMDIChildFrame" overloaded=
"no"> 
12013         <autodoc>PreMDIChildFrame() -
> MDIChildFrame
</autodoc> 
12015       <method name=
"Create" type=
"bool" overloaded=
"no"> 
12016         <autodoc>Create(MDIParentFrame parent, int id, String title, Point pos=DefaultPosition, 
 
12017     Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE, 
 
12018     String name=FrameNameStr) -
> bool
</autodoc> 
12020           <param name=
"parent" type=
"MDIParentFrame" default=
""/> 
12021           <param name=
"id" type=
"int" default=
""/> 
12022           <param name=
"title" type=
"String" default=
""/> 
12023           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
12024           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
12025           <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/> 
12026           <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/> 
12029       <method name=
"Activate" type=
"" overloaded=
"no"> 
12030         <autodoc>Activate()
</autodoc> 
12032       <method name=
"Maximize" type=
"" overloaded=
"no"> 
12033         <autodoc>Maximize(bool maximize)
</autodoc> 
12035           <param name=
"maximize" type=
"bool" default=
""/> 
12038       <method name=
"Restore" type=
"" overloaded=
"no"> 
12039         <autodoc>Restore()
</autodoc> 
12042     <class name=
"MDIClientWindow" oldname=
"wxMDIClientWindow" module=
"windows"> 
12043       <baseclass name=
"Window"/> 
12044       <constructor name=
"MDIClientWindow" overloaded=
"no"> 
12045         <autodoc>__init__(MDIParentFrame parent, long style=
0) -
> MDIClientWindow
</autodoc> 
12047           <param name=
"parent" type=
"MDIParentFrame" default=
""/> 
12048           <param name=
"style" type=
"long" default=
"0"/> 
12051       <constructor name=
"PreMDIClientWindow" overloaded=
"no"> 
12052         <autodoc>PreMDIClientWindow() -
> MDIClientWindow
</autodoc> 
12054       <method name=
"Create" type=
"bool" overloaded=
"no"> 
12055         <autodoc>Create(MDIParentFrame parent, long style=
0) -
> bool
</autodoc> 
12057           <param name=
"parent" type=
"MDIParentFrame" default=
""/> 
12058           <param name=
"style" type=
"long" default=
"0"/> 
12063 #---------------------------------------------------------------------------
 
12065     <class name=
"PyWindow" oldname=
"wxPyWindow" module=
"windows"> 
12066       <baseclass name=
"Window"/> 
12067       <constructor name=
"PyWindow" overloaded=
"no"> 
12068         <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
12069     long style=
0, String name=PanelNameStr) -
> PyWindow
</autodoc> 
12071           <param name=
"parent" type=
"Window" default=
""/> 
12072           <param name=
"id" type=
"int" default=
""/> 
12073           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
12074           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
12075           <param name=
"style" type=
"long" default=
"0"/> 
12076           <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/> 
12079       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
12080         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
12082           <param name=
"self" type=
"PyObject" default=
""/> 
12083           <param name=
"_class" type=
"PyObject" default=
""/> 
12086       <method name=
"base_DoMoveWindow" type=
"" overloaded=
"no"> 
12087         <autodoc>base_DoMoveWindow(int x, int y, int width, int height)
</autodoc> 
12089           <param name=
"x" type=
"int" default=
""/> 
12090           <param name=
"y" type=
"int" default=
""/> 
12091           <param name=
"width" type=
"int" default=
""/> 
12092           <param name=
"height" type=
"int" default=
""/> 
12095       <method name=
"base_DoSetSize" type=
"" overloaded=
"no"> 
12096         <autodoc>base_DoSetSize(int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)
</autodoc> 
12098           <param name=
"x" type=
"int" default=
""/> 
12099           <param name=
"y" type=
"int" default=
""/> 
12100           <param name=
"width" type=
"int" default=
""/> 
12101           <param name=
"height" type=
"int" default=
""/> 
12102           <param name=
"sizeFlags" type=
"int" default=
"wxSIZE_AUTO"/> 
12105       <method name=
"base_DoSetClientSize" type=
"" overloaded=
"no"> 
12106         <autodoc>base_DoSetClientSize(int width, int height)
</autodoc> 
12108           <param name=
"width" type=
"int" default=
""/> 
12109           <param name=
"height" type=
"int" default=
""/> 
12112       <method name=
"base_DoSetVirtualSize" type=
"" overloaded=
"no"> 
12113         <autodoc>base_DoSetVirtualSize(int x, int y)
</autodoc> 
12115           <param name=
"x" type=
"int" default=
""/> 
12116           <param name=
"y" type=
"int" default=
""/> 
12119       <method name=
"base_DoGetSize" type=
"" overloaded=
"no"> 
12120         <autodoc>base_DoGetSize() -
> (width, height)
</autodoc> 
12122           <param name=
"OUTPUT" type=
"int" default=
""/> 
12123           <param name=
"OUTPUT" type=
"int" default=
""/> 
12126       <method name=
"base_DoGetClientSize" type=
"" overloaded=
"no"> 
12127         <autodoc>base_DoGetClientSize() -
> (width, height)
</autodoc> 
12129           <param name=
"OUTPUT" type=
"int" default=
""/> 
12130           <param name=
"OUTPUT" type=
"int" default=
""/> 
12133       <method name=
"base_DoGetPosition" type=
"" overloaded=
"no"> 
12134         <autodoc>base_DoGetPosition() -
> (x,y)
</autodoc> 
12136           <param name=
"OUTPUT" type=
"int" default=
""/> 
12137           <param name=
"OUTPUT" type=
"int" default=
""/> 
12140       <method name=
"base_DoGetVirtualSize" type=
"Size" overloaded=
"no"> 
12141         <autodoc>base_DoGetVirtualSize() -
> Size
</autodoc> 
12143       <method name=
"base_DoGetBestSize" type=
"Size" overloaded=
"no"> 
12144         <autodoc>base_DoGetBestSize() -
> Size
</autodoc> 
12146       <method name=
"base_InitDialog" type=
"" overloaded=
"no"> 
12147         <autodoc>base_InitDialog()
</autodoc> 
12149       <method name=
"base_TransferDataToWindow" type=
"bool" overloaded=
"no"> 
12150         <autodoc>base_TransferDataToWindow() -
> bool
</autodoc> 
12152       <method name=
"base_TransferDataFromWindow" type=
"bool" overloaded=
"no"> 
12153         <autodoc>base_TransferDataFromWindow() -
> bool
</autodoc> 
12155       <method name=
"base_Validate" type=
"bool" overloaded=
"no"> 
12156         <autodoc>base_Validate() -
> bool
</autodoc> 
12158       <method name=
"base_AcceptsFocus" type=
"bool" overloaded=
"no"> 
12159         <autodoc>base_AcceptsFocus() -
> bool
</autodoc> 
12161       <method name=
"base_AcceptsFocusFromKeyboard" type=
"bool" overloaded=
"no"> 
12162         <autodoc>base_AcceptsFocusFromKeyboard() -
> bool
</autodoc> 
12164       <method name=
"base_GetMaxSize" type=
"Size" overloaded=
"no"> 
12165         <autodoc>base_GetMaxSize() -
> Size
</autodoc> 
12167       <method name=
"base_AddChild" type=
"" overloaded=
"no"> 
12168         <autodoc>base_AddChild(Window child)
</autodoc> 
12170           <param name=
"child" type=
"Window" default=
""/> 
12173       <method name=
"base_RemoveChild" type=
"" overloaded=
"no"> 
12174         <autodoc>base_RemoveChild(Window child)
</autodoc> 
12176           <param name=
"child" type=
"Window" default=
""/> 
12180     <class name=
"PyPanel" oldname=
"wxPyPanel" module=
"windows"> 
12181       <baseclass name=
"Panel"/> 
12182       <constructor name=
"PyPanel" overloaded=
"no"> 
12183         <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
12184     long style=
0, String name=PanelNameStr) -
> PyPanel
</autodoc> 
12186           <param name=
"parent" type=
"Window" default=
""/> 
12187           <param name=
"id" type=
"int" default=
""/> 
12188           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
12189           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
12190           <param name=
"style" type=
"long" default=
"0"/> 
12191           <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/> 
12194       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
12195         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
12197           <param name=
"self" type=
"PyObject" default=
""/> 
12198           <param name=
"_class" type=
"PyObject" default=
""/> 
12201       <method name=
"base_DoMoveWindow" type=
"" overloaded=
"no"> 
12202         <autodoc>base_DoMoveWindow(int x, int y, int width, int height)
</autodoc> 
12204           <param name=
"x" type=
"int" default=
""/> 
12205           <param name=
"y" type=
"int" default=
""/> 
12206           <param name=
"width" type=
"int" default=
""/> 
12207           <param name=
"height" type=
"int" default=
""/> 
12210       <method name=
"base_DoSetSize" type=
"" overloaded=
"no"> 
12211         <autodoc>base_DoSetSize(int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)
</autodoc> 
12213           <param name=
"x" type=
"int" default=
""/> 
12214           <param name=
"y" type=
"int" default=
""/> 
12215           <param name=
"width" type=
"int" default=
""/> 
12216           <param name=
"height" type=
"int" default=
""/> 
12217           <param name=
"sizeFlags" type=
"int" default=
"wxSIZE_AUTO"/> 
12220       <method name=
"base_DoSetClientSize" type=
"" overloaded=
"no"> 
12221         <autodoc>base_DoSetClientSize(int width, int height)
</autodoc> 
12223           <param name=
"width" type=
"int" default=
""/> 
12224           <param name=
"height" type=
"int" default=
""/> 
12227       <method name=
"base_DoSetVirtualSize" type=
"" overloaded=
"no"> 
12228         <autodoc>base_DoSetVirtualSize(int x, int y)
</autodoc> 
12230           <param name=
"x" type=
"int" default=
""/> 
12231           <param name=
"y" type=
"int" default=
""/> 
12234       <method name=
"base_DoGetSize" type=
"" overloaded=
"no"> 
12235         <autodoc>base_DoGetSize() -
> (width, height)
</autodoc> 
12237           <param name=
"OUTPUT" type=
"int" default=
""/> 
12238           <param name=
"OUTPUT" type=
"int" default=
""/> 
12241       <method name=
"base_DoGetClientSize" type=
"" overloaded=
"no"> 
12242         <autodoc>base_DoGetClientSize() -
> (width, height)
</autodoc> 
12244           <param name=
"OUTPUT" type=
"int" default=
""/> 
12245           <param name=
"OUTPUT" type=
"int" default=
""/> 
12248       <method name=
"base_DoGetPosition" type=
"" overloaded=
"no"> 
12249         <autodoc>base_DoGetPosition() -
> (x,y)
</autodoc> 
12251           <param name=
"OUTPUT" type=
"int" default=
""/> 
12252           <param name=
"OUTPUT" type=
"int" default=
""/> 
12255       <method name=
"base_DoGetVirtualSize" type=
"Size" overloaded=
"no"> 
12256         <autodoc>base_DoGetVirtualSize() -
> Size
</autodoc> 
12258       <method name=
"base_DoGetBestSize" type=
"Size" overloaded=
"no"> 
12259         <autodoc>base_DoGetBestSize() -
> Size
</autodoc> 
12261       <method name=
"base_InitDialog" type=
"" overloaded=
"no"> 
12262         <autodoc>base_InitDialog()
</autodoc> 
12264       <method name=
"base_TransferDataToWindow" type=
"bool" overloaded=
"no"> 
12265         <autodoc>base_TransferDataToWindow() -
> bool
</autodoc> 
12267       <method name=
"base_TransferDataFromWindow" type=
"bool" overloaded=
"no"> 
12268         <autodoc>base_TransferDataFromWindow() -
> bool
</autodoc> 
12270       <method name=
"base_Validate" type=
"bool" overloaded=
"no"> 
12271         <autodoc>base_Validate() -
> bool
</autodoc> 
12273       <method name=
"base_AcceptsFocus" type=
"bool" overloaded=
"no"> 
12274         <autodoc>base_AcceptsFocus() -
> bool
</autodoc> 
12276       <method name=
"base_AcceptsFocusFromKeyboard" type=
"bool" overloaded=
"no"> 
12277         <autodoc>base_AcceptsFocusFromKeyboard() -
> bool
</autodoc> 
12279       <method name=
"base_GetMaxSize" type=
"Size" overloaded=
"no"> 
12280         <autodoc>base_GetMaxSize() -
> Size
</autodoc> 
12282       <method name=
"base_AddChild" type=
"" overloaded=
"no"> 
12283         <autodoc>base_AddChild(Window child)
</autodoc> 
12285           <param name=
"child" type=
"Window" default=
""/> 
12288       <method name=
"base_RemoveChild" type=
"" overloaded=
"no"> 
12289         <autodoc>base_RemoveChild(Window child)
</autodoc> 
12291           <param name=
"child" type=
"Window" default=
""/> 
12296 #---------------------------------------------------------------------------
 
12298     <class name=
"PrintData" oldname=
"wxPrintData" module=
"windows"> 
12299       <baseclass name=
"Object"/> 
12300       <constructor name=
"PrintData" overloaded=
"no"> 
12301         <autodoc>__init__() -
> PrintData
</autodoc> 
12303       <destructor name=
"~wxPrintData" overloaded=
"no"> 
12304         <autodoc>__del__()
</autodoc> 
12306       <method name=
"GetNoCopies" type=
"int" overloaded=
"no"> 
12307         <autodoc>GetNoCopies() -
> int
</autodoc> 
12309       <method name=
"GetCollate" type=
"bool" overloaded=
"no"> 
12310         <autodoc>GetCollate() -
> bool
</autodoc> 
12312       <method name=
"GetOrientation" type=
"int" overloaded=
"no"> 
12313         <autodoc>GetOrientation() -
> int
</autodoc> 
12315       <method name=
"Ok" type=
"bool" overloaded=
"no"> 
12316         <autodoc>Ok() -
> bool
</autodoc> 
12318       <method name=
"GetPrinterName" type=
"String" overloaded=
"no"> 
12319         <autodoc>GetPrinterName() -
> String
</autodoc> 
12321       <method name=
"GetColour" type=
"bool" overloaded=
"no"> 
12322         <autodoc>GetColour() -
> bool
</autodoc> 
12324       <method name=
"GetDuplex" type=
"wxDuplexMode" overloaded=
"no"> 
12325         <autodoc>GetDuplex() -
> int
</autodoc> 
12327       <method name=
"GetPaperId" type=
"wxPaperSize" overloaded=
"no"> 
12328         <autodoc>GetPaperId() -
> int
</autodoc> 
12330       <method name=
"GetPaperSize" type=
"Size" overloaded=
"no"> 
12331         <autodoc>GetPaperSize() -
> Size
</autodoc> 
12333       <method name=
"GetQuality" type=
"int" overloaded=
"no"> 
12334         <autodoc>GetQuality() -
> int
</autodoc> 
12336       <method name=
"SetNoCopies" type=
"" overloaded=
"no"> 
12337         <autodoc>SetNoCopies(int v)
</autodoc> 
12339           <param name=
"v" type=
"int" default=
""/> 
12342       <method name=
"SetCollate" type=
"" overloaded=
"no"> 
12343         <autodoc>SetCollate(bool flag)
</autodoc> 
12345           <param name=
"flag" type=
"bool" default=
""/> 
12348       <method name=
"SetOrientation" type=
"" overloaded=
"no"> 
12349         <autodoc>SetOrientation(int orient)
</autodoc> 
12351           <param name=
"orient" type=
"int" default=
""/> 
12354       <method name=
"SetPrinterName" type=
"" overloaded=
"no"> 
12355         <autodoc>SetPrinterName(String name)
</autodoc> 
12357           <param name=
"name" type=
"String" default=
""/> 
12360       <method name=
"SetColour" type=
"" overloaded=
"no"> 
12361         <autodoc>SetColour(bool colour)
</autodoc> 
12363           <param name=
"colour" type=
"bool" default=
""/> 
12366       <method name=
"SetDuplex" type=
"" overloaded=
"no"> 
12367         <autodoc>SetDuplex(int duplex)
</autodoc> 
12369           <param name=
"duplex" type=
"wxDuplexMode" default=
""/> 
12372       <method name=
"SetPaperId" type=
"" overloaded=
"no"> 
12373         <autodoc>SetPaperId(int sizeId)
</autodoc> 
12375           <param name=
"sizeId" type=
"wxPaperSize" default=
""/> 
12378       <method name=
"SetPaperSize" type=
"" overloaded=
"no"> 
12379         <autodoc>SetPaperSize(Size sz)
</autodoc> 
12381           <param name=
"sz" type=
"Size" default=
""/> 
12384       <method name=
"SetQuality" type=
"" overloaded=
"no"> 
12385         <autodoc>SetQuality(int quality)
</autodoc> 
12387           <param name=
"quality" type=
"int" default=
""/> 
12390       <method name=
"GetPrinterCommand" type=
"String" overloaded=
"no"> 
12391         <autodoc>GetPrinterCommand() -
> String
</autodoc> 
12393       <method name=
"GetPrinterOptions" type=
"String" overloaded=
"no"> 
12394         <autodoc>GetPrinterOptions() -
> String
</autodoc> 
12396       <method name=
"GetPreviewCommand" type=
"String" overloaded=
"no"> 
12397         <autodoc>GetPreviewCommand() -
> String
</autodoc> 
12399       <method name=
"GetFilename" type=
"String" overloaded=
"no"> 
12400         <autodoc>GetFilename() -
> String
</autodoc> 
12402       <method name=
"GetFontMetricPath" type=
"String" overloaded=
"no"> 
12403         <autodoc>GetFontMetricPath() -
> String
</autodoc> 
12405       <method name=
"GetPrinterScaleX" type=
"double" overloaded=
"no"> 
12406         <autodoc>GetPrinterScaleX() -
> double
</autodoc> 
12408       <method name=
"GetPrinterScaleY" type=
"double" overloaded=
"no"> 
12409         <autodoc>GetPrinterScaleY() -
> double
</autodoc> 
12411       <method name=
"GetPrinterTranslateX" type=
"long" overloaded=
"no"> 
12412         <autodoc>GetPrinterTranslateX() -
> long
</autodoc> 
12414       <method name=
"GetPrinterTranslateY" type=
"long" overloaded=
"no"> 
12415         <autodoc>GetPrinterTranslateY() -
> long
</autodoc> 
12417       <method name=
"GetPrintMode" type=
"wxPrintMode" overloaded=
"no"> 
12418         <autodoc>GetPrintMode() -
> int
</autodoc> 
12420       <method name=
"SetPrinterCommand" type=
"" overloaded=
"no"> 
12421         <autodoc>SetPrinterCommand(String command)
</autodoc> 
12423           <param name=
"command" type=
"String" default=
""/> 
12426       <method name=
"SetPrinterOptions" type=
"" overloaded=
"no"> 
12427         <autodoc>SetPrinterOptions(String options)
</autodoc> 
12429           <param name=
"options" type=
"String" default=
""/> 
12432       <method name=
"SetPreviewCommand" type=
"" overloaded=
"no"> 
12433         <autodoc>SetPreviewCommand(String command)
</autodoc> 
12435           <param name=
"command" type=
"String" default=
""/> 
12438       <method name=
"SetFilename" type=
"" overloaded=
"no"> 
12439         <autodoc>SetFilename(String filename)
</autodoc> 
12441           <param name=
"filename" type=
"String" default=
""/> 
12444       <method name=
"SetFontMetricPath" type=
"" overloaded=
"no"> 
12445         <autodoc>SetFontMetricPath(String path)
</autodoc> 
12447           <param name=
"path" type=
"String" default=
""/> 
12450       <method name=
"SetPrinterScaleX" type=
"" overloaded=
"no"> 
12451         <autodoc>SetPrinterScaleX(double x)
</autodoc> 
12453           <param name=
"x" type=
"double" default=
""/> 
12456       <method name=
"SetPrinterScaleY" type=
"" overloaded=
"no"> 
12457         <autodoc>SetPrinterScaleY(double y)
</autodoc> 
12459           <param name=
"y" type=
"double" default=
""/> 
12462       <method name=
"SetPrinterScaling" type=
"" overloaded=
"no"> 
12463         <autodoc>SetPrinterScaling(double x, double y)
</autodoc> 
12465           <param name=
"x" type=
"double" default=
""/> 
12466           <param name=
"y" type=
"double" default=
""/> 
12469       <method name=
"SetPrinterTranslateX" type=
"" overloaded=
"no"> 
12470         <autodoc>SetPrinterTranslateX(long x)
</autodoc> 
12472           <param name=
"x" type=
"long" default=
""/> 
12475       <method name=
"SetPrinterTranslateY" type=
"" overloaded=
"no"> 
12476         <autodoc>SetPrinterTranslateY(long y)
</autodoc> 
12478           <param name=
"y" type=
"long" default=
""/> 
12481       <method name=
"SetPrinterTranslation" type=
"" overloaded=
"no"> 
12482         <autodoc>SetPrinterTranslation(long x, long y)
</autodoc> 
12484           <param name=
"x" type=
"long" default=
""/> 
12485           <param name=
"y" type=
"long" default=
""/> 
12488       <method name=
"SetPrintMode" type=
"" overloaded=
"no"> 
12489         <autodoc>SetPrintMode(int printMode)
</autodoc> 
12491           <param name=
"printMode" type=
"wxPrintMode" default=
""/> 
12495     <class name=
"PageSetupDialogData" oldname=
"wxPageSetupDialogData" module=
"windows"> 
12496       <baseclass name=
"Object"/> 
12497       <constructor name=
"PageSetupDialogData" overloaded=
"no"> 
12498         <autodoc>__init__() -
> PageSetupDialogData
</autodoc> 
12500       <destructor name=
"~wxPageSetupDialogData" overloaded=
"no"> 
12501         <autodoc>__del__()
</autodoc> 
12503       <method name=
"EnableHelp" type=
"" overloaded=
"no"> 
12504         <autodoc>EnableHelp(bool flag)
</autodoc> 
12506           <param name=
"flag" type=
"bool" default=
""/> 
12509       <method name=
"EnableMargins" type=
"" overloaded=
"no"> 
12510         <autodoc>EnableMargins(bool flag)
</autodoc> 
12512           <param name=
"flag" type=
"bool" default=
""/> 
12515       <method name=
"EnableOrientation" type=
"" overloaded=
"no"> 
12516         <autodoc>EnableOrientation(bool flag)
</autodoc> 
12518           <param name=
"flag" type=
"bool" default=
""/> 
12521       <method name=
"EnablePaper" type=
"" overloaded=
"no"> 
12522         <autodoc>EnablePaper(bool flag)
</autodoc> 
12524           <param name=
"flag" type=
"bool" default=
""/> 
12527       <method name=
"EnablePrinter" type=
"" overloaded=
"no"> 
12528         <autodoc>EnablePrinter(bool flag)
</autodoc> 
12530           <param name=
"flag" type=
"bool" default=
""/> 
12533       <method name=
"GetDefaultMinMargins" type=
"bool" overloaded=
"no"> 
12534         <autodoc>GetDefaultMinMargins() -
> bool
</autodoc> 
12536       <method name=
"GetEnableMargins" type=
"bool" overloaded=
"no"> 
12537         <autodoc>GetEnableMargins() -
> bool
</autodoc> 
12539       <method name=
"GetEnableOrientation" type=
"bool" overloaded=
"no"> 
12540         <autodoc>GetEnableOrientation() -
> bool
</autodoc> 
12542       <method name=
"GetEnablePaper" type=
"bool" overloaded=
"no"> 
12543         <autodoc>GetEnablePaper() -
> bool
</autodoc> 
12545       <method name=
"GetEnablePrinter" type=
"bool" overloaded=
"no"> 
12546         <autodoc>GetEnablePrinter() -
> bool
</autodoc> 
12548       <method name=
"GetEnableHelp" type=
"bool" overloaded=
"no"> 
12549         <autodoc>GetEnableHelp() -
> bool
</autodoc> 
12551       <method name=
"GetDefaultInfo" type=
"bool" overloaded=
"no"> 
12552         <autodoc>GetDefaultInfo() -
> bool
</autodoc> 
12554       <method name=
"GetMarginTopLeft" type=
"Point" overloaded=
"no"> 
12555         <autodoc>GetMarginTopLeft() -
> Point
</autodoc> 
12557       <method name=
"GetMarginBottomRight" type=
"Point" overloaded=
"no"> 
12558         <autodoc>GetMarginBottomRight() -
> Point
</autodoc> 
12560       <method name=
"GetMinMarginTopLeft" type=
"Point" overloaded=
"no"> 
12561         <autodoc>GetMinMarginTopLeft() -
> Point
</autodoc> 
12563       <method name=
"GetMinMarginBottomRight" type=
"Point" overloaded=
"no"> 
12564         <autodoc>GetMinMarginBottomRight() -
> Point
</autodoc> 
12566       <method name=
"GetPaperId" type=
"wxPaperSize" overloaded=
"no"> 
12567         <autodoc>GetPaperId() -
> int
</autodoc> 
12569       <method name=
"GetPaperSize" type=
"Size" overloaded=
"no"> 
12570         <autodoc>GetPaperSize() -
> Size
</autodoc> 
12572       <method name=
"GetPrintData" type=
"PrintData" overloaded=
"no"> 
12573         <autodoc>GetPrintData() -
> PrintData
</autodoc> 
12575       <method name=
"Ok" type=
"bool" overloaded=
"no"> 
12576         <autodoc>Ok() -
> bool
</autodoc> 
12578       <method name=
"SetDefaultInfo" type=
"" overloaded=
"no"> 
12579         <autodoc>SetDefaultInfo(bool flag)
</autodoc> 
12581           <param name=
"flag" type=
"bool" default=
""/> 
12584       <method name=
"SetDefaultMinMargins" type=
"" overloaded=
"no"> 
12585         <autodoc>SetDefaultMinMargins(bool flag)
</autodoc> 
12587           <param name=
"flag" type=
"bool" default=
""/> 
12590       <method name=
"SetMarginTopLeft" type=
"" overloaded=
"no"> 
12591         <autodoc>SetMarginTopLeft(Point pt)
</autodoc> 
12593           <param name=
"pt" type=
"Point" default=
""/> 
12596       <method name=
"SetMarginBottomRight" type=
"" overloaded=
"no"> 
12597         <autodoc>SetMarginBottomRight(Point pt)
</autodoc> 
12599           <param name=
"pt" type=
"Point" default=
""/> 
12602       <method name=
"SetMinMarginTopLeft" type=
"" overloaded=
"no"> 
12603         <autodoc>SetMinMarginTopLeft(Point pt)
</autodoc> 
12605           <param name=
"pt" type=
"Point" default=
""/> 
12608       <method name=
"SetMinMarginBottomRight" type=
"" overloaded=
"no"> 
12609         <autodoc>SetMinMarginBottomRight(Point pt)
</autodoc> 
12611           <param name=
"pt" type=
"Point" default=
""/> 
12614       <method name=
"SetPaperId" type=
"" overloaded=
"no"> 
12615         <autodoc>SetPaperId(int id)
</autodoc> 
12617           <param name=
"id" type=
"wxPaperSize" default=
""/> 
12620       <method name=
"SetPaperSize" type=
"" overloaded=
"no"> 
12621         <autodoc>SetPaperSize(Size size)
</autodoc> 
12623           <param name=
"size" type=
"Size" default=
""/> 
12626       <method name=
"SetPrintData" type=
"" overloaded=
"no"> 
12627         <autodoc>SetPrintData(PrintData printData)
</autodoc> 
12629           <param name=
"printData" type=
"PrintData" default=
""/> 
12633     <class name=
"PageSetupDialog" oldname=
"wxPageSetupDialog" module=
"windows"> 
12634       <baseclass name=
"Dialog"/> 
12635       <constructor name=
"PageSetupDialog" overloaded=
"no"> 
12636         <autodoc>__init__(Window parent, PageSetupDialogData data=None) -
> PageSetupDialog
</autodoc> 
12638           <param name=
"parent" type=
"Window" default=
""/> 
12639           <param name=
"data" type=
"PageSetupDialogData" default=
"NULL"/> 
12642       <method name=
"GetPageSetupData" type=
"PageSetupDialogData" overloaded=
"no"> 
12643         <autodoc>GetPageSetupData() -
> PageSetupDialogData
</autodoc> 
12645       <method name=
"ShowModal" type=
"int" overloaded=
"no"> 
12646         <autodoc>ShowModal() -
> int
</autodoc> 
12649     <class name=
"PrintDialogData" oldname=
"wxPrintDialogData" module=
"windows"> 
12650       <baseclass name=
"Object"/> 
12651       <constructor name=
"PrintDialogData" overloaded=
"no"> 
12652         <autodoc>__init__() -
> PrintDialogData
</autodoc> 
12654       <destructor name=
"~wxPrintDialogData" overloaded=
"no"> 
12655         <autodoc>__del__()
</autodoc> 
12657       <method name=
"GetFromPage" type=
"int" overloaded=
"no"> 
12658         <autodoc>GetFromPage() -
> int
</autodoc> 
12660       <method name=
"GetToPage" type=
"int" overloaded=
"no"> 
12661         <autodoc>GetToPage() -
> int
</autodoc> 
12663       <method name=
"GetMinPage" type=
"int" overloaded=
"no"> 
12664         <autodoc>GetMinPage() -
> int
</autodoc> 
12666       <method name=
"GetMaxPage" type=
"int" overloaded=
"no"> 
12667         <autodoc>GetMaxPage() -
> int
</autodoc> 
12669       <method name=
"GetNoCopies" type=
"int" overloaded=
"no"> 
12670         <autodoc>GetNoCopies() -
> int
</autodoc> 
12672       <method name=
"GetAllPages" type=
"bool" overloaded=
"no"> 
12673         <autodoc>GetAllPages() -
> bool
</autodoc> 
12675       <method name=
"GetSelection" type=
"bool" overloaded=
"no"> 
12676         <autodoc>GetSelection() -
> bool
</autodoc> 
12678       <method name=
"GetCollate" type=
"bool" overloaded=
"no"> 
12679         <autodoc>GetCollate() -
> bool
</autodoc> 
12681       <method name=
"GetPrintToFile" type=
"bool" overloaded=
"no"> 
12682         <autodoc>GetPrintToFile() -
> bool
</autodoc> 
12684       <method name=
"GetSetupDialog" type=
"bool" overloaded=
"no"> 
12685         <autodoc>GetSetupDialog() -
> bool
</autodoc> 
12687       <method name=
"SetFromPage" type=
"" overloaded=
"no"> 
12688         <autodoc>SetFromPage(int v)
</autodoc> 
12690           <param name=
"v" type=
"int" default=
""/> 
12693       <method name=
"SetToPage" type=
"" overloaded=
"no"> 
12694         <autodoc>SetToPage(int v)
</autodoc> 
12696           <param name=
"v" type=
"int" default=
""/> 
12699       <method name=
"SetMinPage" type=
"" overloaded=
"no"> 
12700         <autodoc>SetMinPage(int v)
</autodoc> 
12702           <param name=
"v" type=
"int" default=
""/> 
12705       <method name=
"SetMaxPage" type=
"" overloaded=
"no"> 
12706         <autodoc>SetMaxPage(int v)
</autodoc> 
12708           <param name=
"v" type=
"int" default=
""/> 
12711       <method name=
"SetNoCopies" type=
"" overloaded=
"no"> 
12712         <autodoc>SetNoCopies(int v)
</autodoc> 
12714           <param name=
"v" type=
"int" default=
""/> 
12717       <method name=
"SetAllPages" type=
"" overloaded=
"no"> 
12718         <autodoc>SetAllPages(bool flag)
</autodoc> 
12720           <param name=
"flag" type=
"bool" default=
""/> 
12723       <method name=
"SetSelection" type=
"" overloaded=
"no"> 
12724         <autodoc>SetSelection(bool flag)
</autodoc> 
12726           <param name=
"flag" type=
"bool" default=
""/> 
12729       <method name=
"SetCollate" type=
"" overloaded=
"no"> 
12730         <autodoc>SetCollate(bool flag)
</autodoc> 
12732           <param name=
"flag" type=
"bool" default=
""/> 
12735       <method name=
"SetPrintToFile" type=
"" overloaded=
"no"> 
12736         <autodoc>SetPrintToFile(bool flag)
</autodoc> 
12738           <param name=
"flag" type=
"bool" default=
""/> 
12741       <method name=
"SetSetupDialog" type=
"" overloaded=
"no"> 
12742         <autodoc>SetSetupDialog(bool flag)
</autodoc> 
12744           <param name=
"flag" type=
"bool" default=
""/> 
12747       <method name=
"EnablePrintToFile" type=
"" overloaded=
"no"> 
12748         <autodoc>EnablePrintToFile(bool flag)
</autodoc> 
12750           <param name=
"flag" type=
"bool" default=
""/> 
12753       <method name=
"EnableSelection" type=
"" overloaded=
"no"> 
12754         <autodoc>EnableSelection(bool flag)
</autodoc> 
12756           <param name=
"flag" type=
"bool" default=
""/> 
12759       <method name=
"EnablePageNumbers" type=
"" overloaded=
"no"> 
12760         <autodoc>EnablePageNumbers(bool flag)
</autodoc> 
12762           <param name=
"flag" type=
"bool" default=
""/> 
12765       <method name=
"EnableHelp" type=
"" overloaded=
"no"> 
12766         <autodoc>EnableHelp(bool flag)
</autodoc> 
12768           <param name=
"flag" type=
"bool" default=
""/> 
12771       <method name=
"GetEnablePrintToFile" type=
"bool" overloaded=
"no"> 
12772         <autodoc>GetEnablePrintToFile() -
> bool
</autodoc> 
12774       <method name=
"GetEnableSelection" type=
"bool" overloaded=
"no"> 
12775         <autodoc>GetEnableSelection() -
> bool
</autodoc> 
12777       <method name=
"GetEnablePageNumbers" type=
"bool" overloaded=
"no"> 
12778         <autodoc>GetEnablePageNumbers() -
> bool
</autodoc> 
12780       <method name=
"GetEnableHelp" type=
"bool" overloaded=
"no"> 
12781         <autodoc>GetEnableHelp() -
> bool
</autodoc> 
12783       <method name=
"Ok" type=
"bool" overloaded=
"no"> 
12784         <autodoc>Ok() -
> bool
</autodoc> 
12786       <method name=
"GetPrintData" type=
"PrintData" overloaded=
"no"> 
12787         <autodoc>GetPrintData() -
> PrintData
</autodoc> 
12789       <method name=
"SetPrintData" type=
"" overloaded=
"no"> 
12790         <autodoc>SetPrintData(PrintData printData)
</autodoc> 
12792           <param name=
"printData" type=
"PrintData" default=
""/> 
12796     <class name=
"PrintDialog" oldname=
"wxPrintDialog" module=
"windows"> 
12797       <baseclass name=
"Dialog"/> 
12798       <constructor name=
"PrintDialog" overloaded=
"no"> 
12799         <autodoc>__init__(Window parent, PrintDialogData data=None) -
> PrintDialog
</autodoc> 
12801           <param name=
"parent" type=
"Window" default=
""/> 
12802           <param name=
"data" type=
"PrintDialogData" default=
"NULL"/> 
12805       <method name=
"GetPrintDialogData" type=
"PrintDialogData" overloaded=
"no"> 
12806         <autodoc>GetPrintDialogData() -
> PrintDialogData
</autodoc> 
12808       <method name=
"GetPrintDC" type=
"DC" overloaded=
"no"> 
12809         <autodoc>GetPrintDC() -
> DC
</autodoc> 
12811       <method name=
"ShowModal" type=
"int" overloaded=
"no"> 
12812         <autodoc>ShowModal() -
> int
</autodoc> 
12815     <class name=
"Printer" oldname=
"wxPrinter" module=
"windows"> 
12816       <baseclass name=
"Object"/> 
12817       <constructor name=
"Printer" overloaded=
"no"> 
12818         <autodoc>__init__(PrintDialogData data=None) -
> Printer
</autodoc> 
12820           <param name=
"data" type=
"PrintDialogData" default=
"NULL"/> 
12823       <destructor name=
"~wxPrinter" overloaded=
"no"> 
12824         <autodoc>__del__()
</autodoc> 
12826       <method name=
"CreateAbortWindow" type=
"" overloaded=
"no"> 
12827         <autodoc>CreateAbortWindow(Window parent, Printout printout)
</autodoc> 
12829           <param name=
"parent" type=
"Window" default=
""/> 
12830           <param name=
"printout" type=
"wxPyPrintout" default=
""/> 
12833       <method name=
"GetPrintDialogData" type=
"PrintDialogData" overloaded=
"no"> 
12834         <autodoc>GetPrintDialogData() -
> PrintDialogData
</autodoc> 
12836       <method name=
"Print" type=
"bool" overloaded=
"no"> 
12837         <autodoc>Print(Window parent, Printout printout, int prompt=True) -
> bool
</autodoc> 
12839           <param name=
"parent" type=
"Window" default=
""/> 
12840           <param name=
"printout" type=
"wxPyPrintout" default=
""/> 
12841           <param name=
"prompt" type=
"int" default=
"True"/> 
12844       <method name=
"PrintDialog" type=
"DC" overloaded=
"no"> 
12845         <autodoc>PrintDialog(Window parent) -
> DC
</autodoc> 
12847           <param name=
"parent" type=
"Window" default=
""/> 
12850       <method name=
"ReportError" type=
"" overloaded=
"no"> 
12851         <autodoc>ReportError(Window parent, Printout printout, String message)
</autodoc> 
12853           <param name=
"parent" type=
"Window" default=
""/> 
12854           <param name=
"printout" type=
"wxPyPrintout" default=
""/> 
12855           <param name=
"message" type=
"String" default=
""/> 
12858       <method name=
"Setup" type=
"bool" overloaded=
"no"> 
12859         <autodoc>Setup(Window parent) -
> bool
</autodoc> 
12861           <param name=
"parent" type=
"Window" default=
""/> 
12864       <method name=
"GetAbort" type=
"bool" overloaded=
"no"> 
12865         <autodoc>GetAbort() -
> bool
</autodoc> 
12867       <staticmethod name=
"GetLastError" type=
"wxPrinterError" overloaded=
"no"> 
12868         <autodoc>Printer.GetLastError() -
> int
</autodoc> 
12871     <class name=
"Printout" oldname=
"wxPyPrintout" module=
"windows"> 
12872       <baseclass name=
"Object"/> 
12873       <constructor name=
"wxPyPrintout" overloaded=
"no"> 
12874         <autodoc>__init__(String title=PrintoutTitleStr) -
> Printout
</autodoc> 
12876           <param name=
"title" type=
"String" default=
"wxPyPrintoutTitleStr"/> 
12879       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
12880         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
12882           <param name=
"self" type=
"PyObject" default=
""/> 
12883           <param name=
"_class" type=
"PyObject" default=
""/> 
12886       <method name=
"GetTitle" type=
"String" overloaded=
"no"> 
12887         <autodoc>GetTitle() -
> String
</autodoc> 
12889       <method name=
"GetDC" type=
"DC" overloaded=
"no"> 
12890         <autodoc>GetDC() -
> DC
</autodoc> 
12892       <method name=
"SetDC" type=
"" overloaded=
"no"> 
12893         <autodoc>SetDC(DC dc)
</autodoc> 
12895           <param name=
"dc" type=
"DC" default=
""/> 
12898       <method name=
"SetPageSizePixels" type=
"" overloaded=
"no"> 
12899         <autodoc>SetPageSizePixels(int w, int h)
</autodoc> 
12901           <param name=
"w" type=
"int" default=
""/> 
12902           <param name=
"h" type=
"int" default=
""/> 
12905       <method name=
"GetPageSizePixels" type=
"" overloaded=
"no"> 
12906         <autodoc>GetPageSizePixels() -
> (w, h)
</autodoc> 
12908           <param name=
"OUTPUT" type=
"int" default=
""/> 
12909           <param name=
"OUTPUT" type=
"int" default=
""/> 
12912       <method name=
"SetPageSizeMM" type=
"" overloaded=
"no"> 
12913         <autodoc>SetPageSizeMM(int w, int h)
</autodoc> 
12915           <param name=
"w" type=
"int" default=
""/> 
12916           <param name=
"h" type=
"int" default=
""/> 
12919       <method name=
"GetPageSizeMM" type=
"" overloaded=
"no"> 
12920         <autodoc>GetPageSizeMM() -
> (w, h)
</autodoc> 
12922           <param name=
"OUTPUT" type=
"int" default=
""/> 
12923           <param name=
"OUTPUT" type=
"int" default=
""/> 
12926       <method name=
"SetPPIScreen" type=
"" overloaded=
"no"> 
12927         <autodoc>SetPPIScreen(int x, int y)
</autodoc> 
12929           <param name=
"x" type=
"int" default=
""/> 
12930           <param name=
"y" type=
"int" default=
""/> 
12933       <method name=
"GetPPIScreen" type=
"" overloaded=
"no"> 
12934         <autodoc>GetPPIScreen() -
> (x,y)
</autodoc> 
12936           <param name=
"OUTPUT" type=
"int" default=
""/> 
12937           <param name=
"OUTPUT" type=
"int" default=
""/> 
12940       <method name=
"SetPPIPrinter" type=
"" overloaded=
"no"> 
12941         <autodoc>SetPPIPrinter(int x, int y)
</autodoc> 
12943           <param name=
"x" type=
"int" default=
""/> 
12944           <param name=
"y" type=
"int" default=
""/> 
12947       <method name=
"GetPPIPrinter" type=
"" overloaded=
"no"> 
12948         <autodoc>GetPPIPrinter() -
> (x,y)
</autodoc> 
12950           <param name=
"OUTPUT" type=
"int" default=
""/> 
12951           <param name=
"OUTPUT" type=
"int" default=
""/> 
12954       <method name=
"IsPreview" type=
"bool" overloaded=
"no"> 
12955         <autodoc>IsPreview() -
> bool
</autodoc> 
12957       <method name=
"SetIsPreview" type=
"" overloaded=
"no"> 
12958         <autodoc>SetIsPreview(bool p)
</autodoc> 
12960           <param name=
"p" type=
"bool" default=
""/> 
12963       <method name=
"base_OnBeginDocument" type=
"bool" overloaded=
"no"> 
12964         <autodoc>base_OnBeginDocument(int startPage, int endPage) -
> bool
</autodoc> 
12966           <param name=
"startPage" type=
"int" default=
""/> 
12967           <param name=
"endPage" type=
"int" default=
""/> 
12970       <method name=
"base_OnEndDocument" type=
"" overloaded=
"no"> 
12971         <autodoc>base_OnEndDocument()
</autodoc> 
12973       <method name=
"base_OnBeginPrinting" type=
"" overloaded=
"no"> 
12974         <autodoc>base_OnBeginPrinting()
</autodoc> 
12976       <method name=
"base_OnEndPrinting" type=
"" overloaded=
"no"> 
12977         <autodoc>base_OnEndPrinting()
</autodoc> 
12979       <method name=
"base_OnPreparePrinting" type=
"" overloaded=
"no"> 
12980         <autodoc>base_OnPreparePrinting()
</autodoc> 
12982       <method name=
"base_HasPage" type=
"bool" overloaded=
"no"> 
12983         <autodoc>base_HasPage(int page) -
> bool
</autodoc> 
12985           <param name=
"page" type=
"int" default=
""/> 
12988       <method name=
"base_GetPageInfo" type=
"" overloaded=
"no"> 
12989         <autodoc>base_GetPageInfo() -
> (minPage, maxPage, pageFrom, pageTo)
</autodoc> 
12991           <param name=
"OUTPUT" type=
"int" default=
""/> 
12992           <param name=
"OUTPUT" type=
"int" default=
""/> 
12993           <param name=
"OUTPUT" type=
"int" default=
""/> 
12994           <param name=
"OUTPUT" type=
"int" default=
""/> 
12998     <class name=
"PreviewCanvas" oldname=
"wxPreviewCanvas" module=
"windows"> 
12999       <baseclass name=
"ScrolledWindow"/> 
13000       <constructor name=
"PreviewCanvas" overloaded=
"no"> 
13001         <autodoc>__init__(PrintPreview preview, Window parent, Point pos=DefaultPosition, 
 
13002     Size size=DefaultSize, long style=
0, 
 
13003     String name=PreviewCanvasNameStr) -
> PreviewCanvas
</autodoc> 
13005           <param name=
"preview" type=
"wxPrintPreview" default=
""/> 
13006           <param name=
"parent" type=
"Window" default=
""/> 
13007           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
13008           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
13009           <param name=
"style" type=
"long" default=
"0"/> 
13010           <param name=
"name" type=
"String" default=
"wxPyPreviewCanvasNameStr"/> 
13014     <class name=
"PreviewFrame" oldname=
"wxPreviewFrame" module=
"windows"> 
13015       <baseclass name=
"Frame"/> 
13016       <constructor name=
"PreviewFrame" overloaded=
"no"> 
13017         <autodoc>__init__(PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition, 
 
13018     Size size=DefaultSize, 
 
13019     long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -
> PreviewFrame
</autodoc> 
13021           <param name=
"preview" type=
"wxPrintPreview" default=
""/> 
13022           <param name=
"parent" type=
"Frame" default=
""/> 
13023           <param name=
"title" type=
"String" default=
""/> 
13024           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
13025           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
13026           <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/> 
13027           <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/> 
13030       <method name=
"Initialize" type=
"" overloaded=
"no"> 
13031         <autodoc>Initialize()
</autodoc> 
13033       <method name=
"CreateControlBar" type=
"" overloaded=
"no"> 
13034         <autodoc>CreateControlBar()
</autodoc> 
13036       <method name=
"CreateCanvas" type=
"" overloaded=
"no"> 
13037         <autodoc>CreateCanvas()
</autodoc> 
13039       <method name=
"GetControlBar" type=
"wxPreviewControlBar" overloaded=
"no"> 
13040         <autodoc>GetControlBar() -
> PreviewControlBar
</autodoc> 
13043     <class name=
"PreviewControlBar" oldname=
"wxPreviewControlBar" module=
"windows"> 
13044       <baseclass name=
"Panel"/> 
13045       <constructor name=
"PreviewControlBar" overloaded=
"no"> 
13046         <autodoc>__init__(PrintPreview preview, long buttons, Window parent, 
 
13047     Point pos=DefaultPosition, Size size=DefaultSize, 
 
13048     long style=TAB_TRAVERSAL, String name=PanelNameStr) -
> PreviewControlBar
</autodoc> 
13050           <param name=
"preview" type=
"wxPrintPreview" default=
""/> 
13051           <param name=
"buttons" type=
"long" default=
""/> 
13052           <param name=
"parent" type=
"Window" default=
""/> 
13053           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
13054           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
13055           <param name=
"style" type=
"long" default=
"wxTAB_TRAVERSAL"/> 
13056           <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/> 
13059       <method name=
"GetZoomControl" type=
"int" overloaded=
"no"> 
13060         <autodoc>GetZoomControl() -
> int
</autodoc> 
13062       <method name=
"SetZoomControl" type=
"" overloaded=
"no"> 
13063         <autodoc>SetZoomControl(int zoom)
</autodoc> 
13065           <param name=
"zoom" type=
"int" default=
""/> 
13068       <method name=
"GetPrintPreview" type=
"wxPrintPreview" overloaded=
"no"> 
13069         <autodoc>GetPrintPreview() -
> PrintPreview
</autodoc> 
13071       <method name=
"OnNext" type=
"" overloaded=
"no"> 
13072         <autodoc>OnNext()
</autodoc> 
13074       <method name=
"OnPrevious" type=
"" overloaded=
"no"> 
13075         <autodoc>OnPrevious()
</autodoc> 
13077       <method name=
"OnFirst" type=
"" overloaded=
"no"> 
13078         <autodoc>OnFirst()
</autodoc> 
13080       <method name=
"OnLast" type=
"" overloaded=
"no"> 
13081         <autodoc>OnLast()
</autodoc> 
13083       <method name=
"OnGoto" type=
"" overloaded=
"no"> 
13084         <autodoc>OnGoto()
</autodoc> 
13087     <class name=
"PrintPreview" oldname=
"wxPrintPreview" module=
"windows"> 
13088       <baseclass name=
"Object"/> 
13089       <constructor name=
"PrintPreview" overloaded=
"no"> 
13090         <autodoc>__init__(Printout printout, Printout printoutForPrinting, PrintData data=None) -
> PrintPreview
</autodoc> 
13092           <param name=
"printout" type=
"Printout" default=
""/> 
13093           <param name=
"printoutForPrinting" type=
"Printout" default=
""/> 
13094           <param name=
"data" type=
"PrintData" default=
"NULL"/> 
13097       <method name=
"SetCurrentPage" type=
"bool" overloaded=
"no"> 
13098         <autodoc>SetCurrentPage(int pageNum) -
> bool
</autodoc> 
13100           <param name=
"pageNum" type=
"int" default=
""/> 
13103       <method name=
"GetCurrentPage" type=
"int" overloaded=
"no"> 
13104         <autodoc>GetCurrentPage() -
> int
</autodoc> 
13106       <method name=
"SetPrintout" type=
"" overloaded=
"no"> 
13107         <autodoc>SetPrintout(Printout printout)
</autodoc> 
13109           <param name=
"printout" type=
"Printout" default=
""/> 
13112       <method name=
"GetPrintout" type=
"Printout" overloaded=
"no"> 
13113         <autodoc>GetPrintout() -
> Printout
</autodoc> 
13115       <method name=
"GetPrintoutForPrinting" type=
"Printout" overloaded=
"no"> 
13116         <autodoc>GetPrintoutForPrinting() -
> Printout
</autodoc> 
13118       <method name=
"SetFrame" type=
"" overloaded=
"no"> 
13119         <autodoc>SetFrame(Frame frame)
</autodoc> 
13121           <param name=
"frame" type=
"Frame" default=
""/> 
13124       <method name=
"SetCanvas" type=
"" overloaded=
"no"> 
13125         <autodoc>SetCanvas(PreviewCanvas canvas)
</autodoc> 
13127           <param name=
"canvas" type=
"PreviewCanvas" default=
""/> 
13130       <method name=
"GetFrame" type=
"Frame" overloaded=
"no"> 
13131         <autodoc>GetFrame() -
> Frame
</autodoc> 
13133       <method name=
"GetCanvas" type=
"PreviewCanvas" overloaded=
"no"> 
13134         <autodoc>GetCanvas() -
> PreviewCanvas
</autodoc> 
13136       <method name=
"PaintPage" type=
"bool" overloaded=
"no"> 
13137         <autodoc>PaintPage(PreviewCanvas canvas, DC dc) -
> bool
</autodoc> 
13139           <param name=
"canvas" type=
"PreviewCanvas" default=
""/> 
13140           <param name=
"dc" type=
"DC" default=
""/> 
13143       <method name=
"DrawBlankPage" type=
"bool" overloaded=
"no"> 
13144         <autodoc>DrawBlankPage(PreviewCanvas canvas, DC dc) -
> bool
</autodoc> 
13146           <param name=
"canvas" type=
"PreviewCanvas" default=
""/> 
13147           <param name=
"dc" type=
"DC" default=
""/> 
13150       <method name=
"RenderPage" type=
"bool" overloaded=
"no"> 
13151         <autodoc>RenderPage(int pageNum) -
> bool
</autodoc> 
13153           <param name=
"pageNum" type=
"int" default=
""/> 
13156       <method name=
"AdjustScrollbars" type=
"" overloaded=
"no"> 
13157         <autodoc>AdjustScrollbars(PreviewCanvas canvas)
</autodoc> 
13159           <param name=
"canvas" type=
"PreviewCanvas" default=
""/> 
13162       <method name=
"GetPrintDialogData" type=
"PrintDialogData" overloaded=
"no"> 
13163         <autodoc>GetPrintDialogData() -
> PrintDialogData
</autodoc> 
13165       <method name=
"SetZoom" type=
"" overloaded=
"no"> 
13166         <autodoc>SetZoom(int percent)
</autodoc> 
13168           <param name=
"percent" type=
"int" default=
""/> 
13171       <method name=
"GetZoom" type=
"int" overloaded=
"no"> 
13172         <autodoc>GetZoom() -
> int
</autodoc> 
13174       <method name=
"GetMaxPage" type=
"int" overloaded=
"no"> 
13175         <autodoc>GetMaxPage() -
> int
</autodoc> 
13177       <method name=
"GetMinPage" type=
"int" overloaded=
"no"> 
13178         <autodoc>GetMinPage() -
> int
</autodoc> 
13180       <method name=
"Ok" type=
"bool" overloaded=
"no"> 
13181         <autodoc>Ok() -
> bool
</autodoc> 
13183       <method name=
"SetOk" type=
"" overloaded=
"no"> 
13184         <autodoc>SetOk(bool ok)
</autodoc> 
13186           <param name=
"ok" type=
"bool" default=
""/> 
13189       <method name=
"Print" type=
"bool" overloaded=
"no"> 
13190         <autodoc>Print(bool interactive) -
> bool
</autodoc> 
13192           <param name=
"interactive" type=
"bool" default=
""/> 
13195       <method name=
"DetermineScaling" type=
"" overloaded=
"no"> 
13196         <autodoc>DetermineScaling()
</autodoc> 
13199     <class name=
"PyPrintPreview" oldname=
"wxPyPrintPreview" module=
"windows"> 
13200       <baseclass name=
"PrintPreview"/> 
13201       <constructor name=
"PyPrintPreview" overloaded=
"no"> 
13202         <autodoc>__init__(Printout printout, Printout printoutForPrinting, PrintData data=None) -
> PyPrintPreview
</autodoc> 
13204           <param name=
"printout" type=
"Printout" default=
""/> 
13205           <param name=
"printoutForPrinting" type=
"Printout" default=
""/> 
13206           <param name=
"data" type=
"PrintData" default=
"NULL"/> 
13209       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
13210         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
13212           <param name=
"self" type=
"PyObject" default=
""/> 
13213           <param name=
"_class" type=
"PyObject" default=
""/> 
13216       <method name=
"base_SetCurrentPage" type=
"bool" overloaded=
"no"> 
13217         <autodoc>base_SetCurrentPage(int pageNum) -
> bool
</autodoc> 
13219           <param name=
"pageNum" type=
"int" default=
""/> 
13222       <method name=
"base_PaintPage" type=
"bool" overloaded=
"no"> 
13223         <autodoc>base_PaintPage(PreviewCanvas canvas, DC dc) -
> bool
</autodoc> 
13225           <param name=
"canvas" type=
"PreviewCanvas" default=
""/> 
13226           <param name=
"dc" type=
"DC" default=
""/> 
13229       <method name=
"base_DrawBlankPage" type=
"bool" overloaded=
"no"> 
13230         <autodoc>base_DrawBlankPage(PreviewCanvas canvas, DC dc) -
> bool
</autodoc> 
13232           <param name=
"canvas" type=
"PreviewCanvas" default=
""/> 
13233           <param name=
"dc" type=
"DC" default=
""/> 
13236       <method name=
"base_RenderPage" type=
"bool" overloaded=
"no"> 
13237         <autodoc>base_RenderPage(int pageNum) -
> bool
</autodoc> 
13239           <param name=
"pageNum" type=
"int" default=
""/> 
13242       <method name=
"base_SetZoom" type=
"" overloaded=
"no"> 
13243         <autodoc>base_SetZoom(int percent)
</autodoc> 
13245           <param name=
"percent" type=
"int" default=
""/> 
13248       <method name=
"base_Print" type=
"bool" overloaded=
"no"> 
13249         <autodoc>base_Print(bool interactive) -
> bool
</autodoc> 
13251           <param name=
"interactive" type=
"bool" default=
""/> 
13254       <method name=
"base_DetermineScaling" type=
"" overloaded=
"no"> 
13255         <autodoc>base_DetermineScaling()
</autodoc> 
13258     <class name=
"PyPreviewFrame" oldname=
"wxPyPreviewFrame" module=
"windows"> 
13259       <baseclass name=
"PreviewFrame"/> 
13260       <constructor name=
"PyPreviewFrame" overloaded=
"no"> 
13261         <autodoc>__init__(PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition, 
 
13262     Size size=DefaultSize, 
 
13263     long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -
> PyPreviewFrame
</autodoc> 
13265           <param name=
"preview" type=
"PrintPreview" default=
""/> 
13266           <param name=
"parent" type=
"Frame" default=
""/> 
13267           <param name=
"title" type=
"String" default=
""/> 
13268           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
13269           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
13270           <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/> 
13271           <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/> 
13274       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
13275         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
13277           <param name=
"self" type=
"PyObject" default=
""/> 
13278           <param name=
"_class" type=
"PyObject" default=
""/> 
13281       <method name=
"SetPreviewCanvas" type=
"" overloaded=
"no"> 
13282         <autodoc>SetPreviewCanvas(PreviewCanvas canvas)
</autodoc> 
13284           <param name=
"canvas" type=
"PreviewCanvas" default=
""/> 
13287       <method name=
"SetControlBar" type=
"" overloaded=
"no"> 
13288         <autodoc>SetControlBar(PreviewControlBar bar)
</autodoc> 
13290           <param name=
"bar" type=
"PreviewControlBar" default=
""/> 
13293       <method name=
"base_Initialize" type=
"" overloaded=
"no"> 
13294         <autodoc>base_Initialize()
</autodoc> 
13296       <method name=
"base_CreateCanvas" type=
"" overloaded=
"no"> 
13297         <autodoc>base_CreateCanvas()
</autodoc> 
13299       <method name=
"base_CreateControlBar" type=
"" overloaded=
"no"> 
13300         <autodoc>base_CreateControlBar()
</autodoc> 
13303     <class name=
"PyPreviewControlBar" oldname=
"wxPyPreviewControlBar" module=
"windows"> 
13304       <baseclass name=
"PreviewControlBar"/> 
13305       <constructor name=
"PyPreviewControlBar" overloaded=
"no"> 
13306         <autodoc>__init__(PrintPreview preview, long buttons, Window parent, 
 
13307     Point pos=DefaultPosition, Size size=DefaultSize, 
 
13308     long style=
0, String name=PanelNameStr) -
> PyPreviewControlBar
</autodoc> 
13310           <param name=
"preview" type=
"PrintPreview" default=
""/> 
13311           <param name=
"buttons" type=
"long" default=
""/> 
13312           <param name=
"parent" type=
"Window" default=
""/> 
13313           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
13314           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
13315           <param name=
"style" type=
"long" default=
"0"/> 
13316           <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/> 
13319       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
13320         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
13322           <param name=
"self" type=
"PyObject" default=
""/> 
13323           <param name=
"_class" type=
"PyObject" default=
""/> 
13326       <method name=
"SetPrintPreview" type=
"" overloaded=
"no"> 
13327         <autodoc>SetPrintPreview(PrintPreview preview)
</autodoc> 
13329           <param name=
"preview" type=
"PrintPreview" default=
""/> 
13332       <method name=
"base_CreateButtons" type=
"" overloaded=
"no"> 
13333         <autodoc>base_CreateButtons()
</autodoc> 
13335       <method name=
"base_SetZoomControl" type=
"" overloaded=
"no"> 
13336         <autodoc>base_SetZoomControl(int zoom)
</autodoc> 
13338           <param name=
"zoom" type=
"int" default=
""/> 
13343   <module name=
"controls"> 
13344     <import name=
"core"/> 
13345     <pythoncode> wx = core 
</pythoncode> 
13347 #---------------------------------------------------------------------------
 
13349     <class name=
"Button" oldname=
"wxButton" module=
"controls"> 
13350       <docstring>A button is a control that contains a text string, and is one of the most
 
13351 common elements of a GUI.  It may be placed on a dialog box or panel, or
 
13352 indeed almost any other window.
</docstring> 
13355     wx.BU_LEFT:     Left-justifies the label. WIN32 only.
 
13356     wx.BU_TOP:      Aligns the label to the top of the button. WIN32 only.
 
13357     wx.BU_RIGHT:    Right-justifies the bitmap label. WIN32 only.
 
13358     wx.BU_BOTTOM:   Aligns the label to the bottom of the button. WIN32 only.
 
13359     wx.BU_EXACTFIT: Creates the button as small as possible instead of making
 
13360                     it of the standard size (which is the default behaviour.)
 
13363      EVT_BUTTON:    Sent when the button is clicked.
 
13365       <baseclass name=
"Control"/> 
13366       <constructor name=
"Button" overloaded=
"no"> 
13367         <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition, 
 
13368     Size size=DefaultSize, long style=
0, 
 
13369     Validator validator=DefaultValidator, String name=ButtonNameStr) -
> Button
</autodoc> 
13370         <docstring>Create and show a button.
</docstring> 
13372           <param name=
"parent" type=
"Window" default=
""/> 
13373           <param name=
"id" type=
"int" default=
""/> 
13374           <param name=
"label" type=
"String" default=
""/> 
13375           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
13376           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
13377           <param name=
"style" type=
"long" default=
"0"/> 
13378           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
13379           <param name=
"name" type=
"String" default=
"wxPyButtonNameStr"/> 
13382       <constructor name=
"PreButton" overloaded=
"no"> 
13383         <autodoc>PreButton() -
> Button
</autodoc> 
13384         <docstring>Precreate a Button for 
2-phase creation.
</docstring> 
13386       <method name=
"Create" type=
"bool" overloaded=
"no"> 
13387         <autodoc>Create(Window parent, int id, String label, Point pos=DefaultPosition, 
 
13388     Size size=DefaultSize, long style=
0, 
 
13389     Validator validator=DefaultValidator, String name=ButtonNameStr) -
> bool
</autodoc> 
13390         <docstring>Acutally create the GUI Button for 
2-phase creation.
</docstring> 
13392           <param name=
"parent" type=
"Window" default=
""/> 
13393           <param name=
"id" type=
"int" default=
""/> 
13394           <param name=
"label" type=
"String" default=
""/> 
13395           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
13396           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
13397           <param name=
"style" type=
"long" default=
"0"/> 
13398           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
13399           <param name=
"name" type=
"String" default=
"wxPyButtonNameStr"/> 
13402       <method name=
"SetDefault" type=
"" overloaded=
"no"> 
13403         <autodoc>SetDefault()
</autodoc> 
13404         <docstring>This sets the button to be the default item for the panel or dialog box.
</docstring> 
13406       <staticmethod name=
"GetDefaultSize" type=
"Size" overloaded=
"no"> 
13407         <autodoc>Button.GetDefaultSize() -
> Size
</autodoc> 
13410     <class name=
"BitmapButton" oldname=
"wxBitmapButton" module=
"controls"> 
13411       <docstring>A Buttont that contains a bitmap.
</docstring> 
13412       <baseclass name=
"Button"/> 
13413       <constructor name=
"BitmapButton" overloaded=
"no"> 
13414         <autodoc>__init__(Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition, 
 
13415     Size size=DefaultSize, long style=BU_AUTODRAW, 
 
13416     Validator validator=DefaultValidator, 
 
13417     String name=ButtonNameStr) -
> BitmapButton
</autodoc> 
13418         <docstring>Create and show a button.
</docstring> 
13420           <param name=
"parent" type=
"Window" default=
""/> 
13421           <param name=
"id" type=
"int" default=
""/> 
13422           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
13423           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
13424           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
13425           <param name=
"style" type=
"long" default=
"wxBU_AUTODRAW"/> 
13426           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
13427           <param name=
"name" type=
"String" default=
"wxPyButtonNameStr"/> 
13430       <constructor name=
"PreBitmapButton" overloaded=
"no"> 
13431         <autodoc>PreBitmapButton() -
> BitmapButton
</autodoc> 
13432         <docstring>Precreate a BitmapButton for 
2-phase creation.
</docstring> 
13434       <method name=
"Create" type=
"bool" overloaded=
"no"> 
13435         <autodoc>Create(Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition, 
 
13436     Size size=DefaultSize, long style=BU_AUTODRAW, 
 
13437     Validator validator=DefaultValidator, 
 
13438     String name=ButtonNameStr) -
> bool
</autodoc> 
13439         <docstring>Acutally create the GUI BitmapButton for 
2-phase creation.
</docstring> 
13441           <param name=
"parent" type=
"Window" default=
""/> 
13442           <param name=
"id" type=
"int" default=
""/> 
13443           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
13444           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
13445           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
13446           <param name=
"style" type=
"long" default=
"wxBU_AUTODRAW"/> 
13447           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
13448           <param name=
"name" type=
"String" default=
"wxPyButtonNameStr"/> 
13451       <method name=
"GetBitmapLabel" type=
"Bitmap" overloaded=
"no"> 
13452         <autodoc>GetBitmapLabel() -
> Bitmap
</autodoc> 
13453         <docstring>Returns the label bitmap (the one passed to the constructor).
</docstring> 
13455       <method name=
"GetBitmapDisabled" type=
"Bitmap" overloaded=
"no"> 
13456         <autodoc>GetBitmapDisabled() -
> Bitmap
</autodoc> 
13457         <docstring>Returns the bitmap for the disabled state.
</docstring> 
13459       <method name=
"GetBitmapFocus" type=
"Bitmap" overloaded=
"no"> 
13460         <autodoc>GetBitmapFocus() -
> Bitmap
</autodoc> 
13461         <docstring>Returns the bitmap for the focused state.
</docstring> 
13463       <method name=
"GetBitmapSelected" type=
"Bitmap" overloaded=
"no"> 
13464         <autodoc>GetBitmapSelected() -
> Bitmap
</autodoc> 
13465         <docstring>Returns the bitmap for the selected state.
</docstring> 
13467       <method name=
"SetBitmapDisabled" type=
"" overloaded=
"no"> 
13468         <autodoc>SetBitmapDisabled(Bitmap bitmap)
</autodoc> 
13469         <docstring>Sets the bitmap for the disabled button appearance.
</docstring> 
13471           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
13474       <method name=
"SetBitmapFocus" type=
"" overloaded=
"no"> 
13475         <autodoc>SetBitmapFocus(Bitmap bitmap)
</autodoc> 
13476         <docstring>Sets the bitmap for the button appearance when it has the keyboard focus.
</docstring> 
13478           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
13481       <method name=
"SetBitmapSelected" type=
"" overloaded=
"no"> 
13482         <autodoc>SetBitmapSelected(Bitmap bitmap)
</autodoc> 
13483         <docstring>Sets the bitmap for the selected (depressed) button appearance.
</docstring> 
13485           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
13488       <method name=
"SetBitmapLabel" type=
"" overloaded=
"no"> 
13489         <autodoc>SetBitmapLabel(Bitmap bitmap)
</autodoc> 
13490         <docstring>Sets the bitmap label for the button.  This is the bitmap used for the
 
13491 unselected state, and for all other states if no other bitmaps are provided.
</docstring> 
13493           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
13496       <method name=
"SetMargins" type=
"" overloaded=
"no"> 
13497         <autodoc>SetMargins(int x, int y)
</autodoc> 
13499           <param name=
"x" type=
"int" default=
""/> 
13500           <param name=
"y" type=
"int" default=
""/> 
13503       <method name=
"GetMarginX" type=
"int" overloaded=
"no"> 
13504         <autodoc>GetMarginX() -
> int
</autodoc> 
13506       <method name=
"GetMarginY" type=
"int" overloaded=
"no"> 
13507         <autodoc>GetMarginY() -
> int
</autodoc> 
13511 #---------------------------------------------------------------------------
 
13513     <class name=
"CheckBox" oldname=
"wxCheckBox" module=
"controls"> 
13514       <baseclass name=
"Control"/> 
13515       <constructor name=
"CheckBox" overloaded=
"no"> 
13516         <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition, 
 
13517     Size size=DefaultSize, long style=
0, 
 
13518     Validator validator=DefaultValidator, String name=CheckBoxNameStr) -
> CheckBox
</autodoc> 
13520           <param name=
"parent" type=
"Window" default=
""/> 
13521           <param name=
"id" type=
"int" default=
""/> 
13522           <param name=
"label" type=
"String" default=
""/> 
13523           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
13524           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
13525           <param name=
"style" type=
"long" default=
"0"/> 
13526           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
13527           <param name=
"name" type=
"String" default=
"wxPyCheckBoxNameStr"/> 
13530       <constructor name=
"PreCheckBox" overloaded=
"no"> 
13531         <autodoc>PreCheckBox() -
> CheckBox
</autodoc> 
13533       <method name=
"Create" type=
"bool" overloaded=
"no"> 
13534         <autodoc>Create(Window parent, int id, String label, Point pos=DefaultPosition, 
 
13535     Size size=DefaultSize, long style=
0, 
 
13536     Validator validator=DefaultValidator, String name=CheckBoxNameStr) -
> bool
</autodoc> 
13538           <param name=
"parent" type=
"Window" default=
""/> 
13539           <param name=
"id" type=
"int" default=
""/> 
13540           <param name=
"label" type=
"String" default=
""/> 
13541           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
13542           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
13543           <param name=
"style" type=
"long" default=
"0"/> 
13544           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
13545           <param name=
"name" type=
"String" default=
"wxPyCheckBoxNameStr"/> 
13548       <method name=
"GetValue" type=
"bool" overloaded=
"no"> 
13549         <autodoc>GetValue() -
> bool
</autodoc> 
13551       <method name=
"IsChecked" type=
"bool" overloaded=
"no"> 
13552         <autodoc>IsChecked() -
> bool
</autodoc> 
13554       <method name=
"SetValue" type=
"" overloaded=
"no"> 
13555         <autodoc>SetValue(bool state)
</autodoc> 
13557           <param name=
"state" type=
"bool" default=
""/> 
13560       <method name=
"Get3StateValue" type=
"wxCheckBoxState" overloaded=
"no"> 
13561         <autodoc>Get3StateValue() -
> int
</autodoc> 
13563       <method name=
"Set3StateValue" type=
"" overloaded=
"no"> 
13564         <autodoc>Set3StateValue(int state)
</autodoc> 
13566           <param name=
"state" type=
"wxCheckBoxState" default=
""/> 
13569       <method name=
"Is3State" type=
"bool" overloaded=
"no"> 
13570         <autodoc>Is3State() -
> bool
</autodoc> 
13572       <method name=
"Is3rdStateAllowedForUser" type=
"bool" overloaded=
"no"> 
13573         <autodoc>Is3rdStateAllowedForUser() -
> bool
</autodoc> 
13577 #---------------------------------------------------------------------------
 
13579     <class name=
"Choice" oldname=
"wxChoice" module=
"controls"> 
13580       <baseclass name=
"ControlWithItems"/> 
13581       <constructor name=
"Choice" overloaded=
"no"> 
13582         <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
13583     int choices=
0, String choices_array=None, 
 
13584     long style=
0, Validator validator=DefaultValidator, 
 
13585     String name=ChoiceNameStr) -
> Choice
</autodoc> 
13587           <param name=
"parent" type=
"Window" default=
""/> 
13588           <param name=
"id" type=
"int" default=
""/> 
13589           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
13590           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
13591           <param name=
"choices" type=
"int" default=
"0"/> 
13592           <param name=
"choices_array" type=
"String" default=
"NULL"/> 
13593           <param name=
"style" type=
"long" default=
"0"/> 
13594           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
13595           <param name=
"name" type=
"String" default=
"wxPyChoiceNameStr"/> 
13598       <constructor name=
"PreChoice" overloaded=
"no"> 
13599         <autodoc>PreChoice() -
> Choice
</autodoc> 
13601       <method name=
"Create" type=
"bool" overloaded=
"no"> 
13602         <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
13603     int choices=
0, String choices_array=None, 
 
13604     long style=
0, Validator validator=DefaultValidator, 
 
13605     String name=ChoiceNameStr) -
> bool
</autodoc> 
13607           <param name=
"parent" type=
"Window" default=
""/> 
13608           <param name=
"id" type=
"int" default=
""/> 
13609           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
13610           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
13611           <param name=
"choices" type=
"int" default=
"0"/> 
13612           <param name=
"choices_array" type=
"String" default=
"NULL"/> 
13613           <param name=
"style" type=
"long" default=
"0"/> 
13614           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
13615           <param name=
"name" type=
"String" default=
"wxPyChoiceNameStr"/> 
13618       <method name=
"GetColumns" type=
"int" overloaded=
"no"> 
13619         <autodoc>GetColumns() -
> int
</autodoc> 
13621       <method name=
"SetColumns" type=
"" overloaded=
"no"> 
13622         <autodoc>SetColumns(int n=
1)
</autodoc> 
13624           <param name=
"n" type=
"int" default=
"1"/> 
13627       <method name=
"SetSelection" type=
"" overloaded=
"no"> 
13628         <autodoc>SetSelection(int n)
</autodoc> 
13630           <param name=
"n" type=
"int" default=
""/> 
13633       <method name=
"SetStringSelection" type=
"" overloaded=
"no"> 
13634         <autodoc>SetStringSelection(String string)
</autodoc> 
13636           <param name=
"string" type=
"String" default=
""/> 
13639       <method name=
"SetString" type=
"" overloaded=
"no"> 
13640         <autodoc>SetString(int n, String s)
</autodoc> 
13642           <param name=
"n" type=
"int" default=
""/> 
13643           <param name=
"s" type=
"String" default=
""/> 
13648 #---------------------------------------------------------------------------
 
13650     <class name=
"ComboBox" oldname=
"wxComboBox" module=
"controls"> 
13651       <baseclass name=
"Control"/> 
13652       <baseclass name=
"ItemContainer"/> 
13653       <constructor name=
"ComboBox" overloaded=
"no"> 
13654         <autodoc>__init__(Window parent, int id, String value=EmptyString, Point pos=DefaultPosition, 
 
13655     Size size=DefaultSize, 
 
13656     int choices=
0, String choices_array=None, 
 
13657     long style=
0, Validator validator=DefaultValidator, 
 
13658     String name=ComboBoxNameStr) -
> ComboBox
</autodoc> 
13660           <param name=
"parent" type=
"Window" default=
""/> 
13661           <param name=
"id" type=
"int" default=
""/> 
13662           <param name=
"value" type=
"String" default=
"wxPyEmptyString"/> 
13663           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
13664           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
13665           <param name=
"choices" type=
"int" default=
"0"/> 
13666           <param name=
"choices_array" type=
"String" default=
"NULL"/> 
13667           <param name=
"style" type=
"long" default=
"0"/> 
13668           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
13669           <param name=
"name" type=
"String" default=
"wxPyComboBoxNameStr"/> 
13672       <constructor name=
"PreComboBox" overloaded=
"no"> 
13673         <autodoc>PreComboBox() -
> ComboBox
</autodoc> 
13675       <method name=
"Create" type=
"bool" overloaded=
"no"> 
13676         <autodoc>Create(Window parent, int id, String value=EmptyString, Point pos=DefaultPosition, 
 
13677     Size size=DefaultSize, 
 
13678     int choices=
0, String choices_array=None, 
 
13679     long style=
0, Validator validator=DefaultValidator, 
 
13680     String name=ComboBoxNameStr) -
> bool
</autodoc> 
13682           <param name=
"parent" type=
"Window" default=
""/> 
13683           <param name=
"id" type=
"int" default=
""/> 
13684           <param name=
"value" type=
"String" default=
"wxPyEmptyString"/> 
13685           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
13686           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
13687           <param name=
"choices" type=
"int" default=
"0"/> 
13688           <param name=
"choices_array" type=
"String" default=
"NULL"/> 
13689           <param name=
"style" type=
"long" default=
"0"/> 
13690           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
13691           <param name=
"name" type=
"String" default=
"wxPyComboBoxNameStr"/> 
13694       <method name=
"GetValue" type=
"String" overloaded=
"no"> 
13695         <autodoc>GetValue() -
> String
</autodoc> 
13697       <method name=
"SetValue" type=
"" overloaded=
"no"> 
13698         <autodoc>SetValue(String value)
</autodoc> 
13700           <param name=
"value" type=
"String" default=
""/> 
13703       <method name=
"Copy" type=
"" overloaded=
"no"> 
13704         <autodoc>Copy()
</autodoc> 
13706       <method name=
"Cut" type=
"" overloaded=
"no"> 
13707         <autodoc>Cut()
</autodoc> 
13709       <method name=
"Paste" type=
"" overloaded=
"no"> 
13710         <autodoc>Paste()
</autodoc> 
13712       <method name=
"SetInsertionPoint" type=
"" overloaded=
"no"> 
13713         <autodoc>SetInsertionPoint(long pos)
</autodoc> 
13715           <param name=
"pos" type=
"long" default=
""/> 
13718       <method name=
"GetInsertionPoint" type=
"long" overloaded=
"no"> 
13719         <autodoc>GetInsertionPoint() -
> long
</autodoc> 
13721       <method name=
"GetLastPosition" type=
"long" overloaded=
"no"> 
13722         <autodoc>GetLastPosition() -
> long
</autodoc> 
13724       <method name=
"Replace" type=
"" overloaded=
"no"> 
13725         <autodoc>Replace(long from, long to, String value)
</autodoc> 
13727           <param name=
"from" type=
"long" default=
""/> 
13728           <param name=
"to" type=
"long" default=
""/> 
13729           <param name=
"value" type=
"String" default=
""/> 
13732       <method name=
"SetSelection" type=
"" overloaded=
"no"> 
13733         <autodoc>SetSelection(int n)
</autodoc> 
13735           <param name=
"n" type=
"int" default=
""/> 
13738       <method name=
"SetMark" type=
"" overloaded=
"no"> 
13739         <autodoc>SetMark(long from, long to)
</autodoc> 
13741           <param name=
"from" type=
"long" default=
""/> 
13742           <param name=
"to" type=
"long" default=
""/> 
13745       <method name=
"SetEditable" type=
"" overloaded=
"no"> 
13746         <autodoc>SetEditable(bool editable)
</autodoc> 
13748           <param name=
"editable" type=
"bool" default=
""/> 
13751       <method name=
"SetInsertionPointEnd" type=
"" overloaded=
"no"> 
13752         <autodoc>SetInsertionPointEnd()
</autodoc> 
13754       <method name=
"Remove" type=
"" overloaded=
"no"> 
13755         <autodoc>Remove(long from, long to)
</autodoc> 
13757           <param name=
"from" type=
"long" default=
""/> 
13758           <param name=
"to" type=
"long" default=
""/> 
13763 #---------------------------------------------------------------------------
 
13765     <class name=
"Gauge" oldname=
"wxGauge" module=
"controls"> 
13766       <baseclass name=
"Control"/> 
13767       <constructor name=
"Gauge" overloaded=
"no"> 
13768         <autodoc>__init__(Window parent, int id, int range, Point pos=DefaultPosition, 
 
13769     Size size=DefaultSize, long style=GA_HORIZONTAL, 
 
13770     Validator validator=DefaultValidator, 
 
13771     String name=GaugeNameStr) -
> Gauge
</autodoc> 
13773           <param name=
"parent" type=
"Window" default=
""/> 
13774           <param name=
"id" type=
"int" default=
""/> 
13775           <param name=
"range" type=
"int" default=
""/> 
13776           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
13777           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
13778           <param name=
"style" type=
"long" default=
"wxGA_HORIZONTAL"/> 
13779           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
13780           <param name=
"name" type=
"String" default=
"wxPyGaugeNameStr"/> 
13783       <constructor name=
"PreGauge" overloaded=
"no"> 
13784         <autodoc>PreGauge() -
> Gauge
</autodoc> 
13786       <method name=
"Create" type=
"bool" overloaded=
"no"> 
13787         <autodoc>Create(Window parent, int id, int range, Point pos=DefaultPosition, 
 
13788     Size size=DefaultSize, long style=GA_HORIZONTAL, 
 
13789     Validator validator=DefaultValidator, 
 
13790     String name=GaugeNameStr) -
> bool
</autodoc> 
13792           <param name=
"parent" type=
"Window" default=
""/> 
13793           <param name=
"id" type=
"int" default=
""/> 
13794           <param name=
"range" type=
"int" default=
""/> 
13795           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
13796           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
13797           <param name=
"style" type=
"long" default=
"wxGA_HORIZONTAL"/> 
13798           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
13799           <param name=
"name" type=
"String" default=
"wxPyGaugeNameStr"/> 
13802       <method name=
"SetRange" type=
"" overloaded=
"no"> 
13803         <autodoc>SetRange(int range)
</autodoc> 
13805           <param name=
"range" type=
"int" default=
""/> 
13808       <method name=
"GetRange" type=
"int" overloaded=
"no"> 
13809         <autodoc>GetRange() -
> int
</autodoc> 
13811       <method name=
"SetValue" type=
"" overloaded=
"no"> 
13812         <autodoc>SetValue(int pos)
</autodoc> 
13814           <param name=
"pos" type=
"int" default=
""/> 
13817       <method name=
"GetValue" type=
"int" overloaded=
"no"> 
13818         <autodoc>GetValue() -
> int
</autodoc> 
13820       <method name=
"IsVertical" type=
"bool" overloaded=
"no"> 
13821         <autodoc>IsVertical() -
> bool
</autodoc> 
13823       <method name=
"SetShadowWidth" type=
"" overloaded=
"no"> 
13824         <autodoc>SetShadowWidth(int w)
</autodoc> 
13826           <param name=
"w" type=
"int" default=
""/> 
13829       <method name=
"GetShadowWidth" type=
"int" overloaded=
"no"> 
13830         <autodoc>GetShadowWidth() -
> int
</autodoc> 
13832       <method name=
"SetBezelFace" type=
"" overloaded=
"no"> 
13833         <autodoc>SetBezelFace(int w)
</autodoc> 
13835           <param name=
"w" type=
"int" default=
""/> 
13838       <method name=
"GetBezelFace" type=
"int" overloaded=
"no"> 
13839         <autodoc>GetBezelFace() -
> int
</autodoc> 
13843 #---------------------------------------------------------------------------
 
13845     <class name=
"StaticBox" oldname=
"wxStaticBox" module=
"controls"> 
13846       <baseclass name=
"Control"/> 
13847       <constructor name=
"StaticBox" overloaded=
"no"> 
13848         <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition, 
 
13849     Size size=DefaultSize, long style=
0, 
 
13850     String name=StaticBoxNameStr) -
> StaticBox
</autodoc> 
13852           <param name=
"parent" type=
"Window" default=
""/> 
13853           <param name=
"id" type=
"int" default=
""/> 
13854           <param name=
"label" type=
"String" default=
""/> 
13855           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
13856           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
13857           <param name=
"style" type=
"long" default=
"0"/> 
13858           <param name=
"name" type=
"String" default=
"wxPyStaticBoxNameStr"/> 
13861       <constructor name=
"PreStaticBox" overloaded=
"no"> 
13862         <autodoc>PreStaticBox() -
> StaticBox
</autodoc> 
13864       <method name=
"Create" type=
"bool" overloaded=
"no"> 
13865         <autodoc>Create(Window parent, int id, String label, Point pos=DefaultPosition, 
 
13866     Size size=DefaultSize, long style=
0, 
 
13867     String name=StaticBoxNameStr) -
> bool
</autodoc> 
13869           <param name=
"parent" type=
"Window" default=
""/> 
13870           <param name=
"id" type=
"int" default=
""/> 
13871           <param name=
"label" type=
"String" default=
""/> 
13872           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
13873           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
13874           <param name=
"style" type=
"long" default=
"0"/> 
13875           <param name=
"name" type=
"String" default=
"wxPyStaticBoxNameStr"/> 
13880 #---------------------------------------------------------------------------
 
13882     <class name=
"StaticLine" oldname=
"wxStaticLine" module=
"controls"> 
13883       <baseclass name=
"Control"/> 
13884       <constructor name=
"StaticLine" overloaded=
"no"> 
13885         <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
13886     long style=LI_HORIZONTAL, 
 
13887     String name=StaticTextNameStr) -
> StaticLine
</autodoc> 
13889           <param name=
"parent" type=
"Window" default=
""/> 
13890           <param name=
"id" type=
"int" default=
""/> 
13891           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
13892           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
13893           <param name=
"style" type=
"long" default=
"wxLI_HORIZONTAL"/> 
13894           <param name=
"name" type=
"String" default=
"wxPyStaticTextNameStr"/> 
13897       <constructor name=
"PreStaticLine" overloaded=
"no"> 
13898         <autodoc>PreStaticLine() -
> StaticLine
</autodoc> 
13900       <method name=
"Create" type=
"bool" overloaded=
"no"> 
13901         <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
13902     long style=LI_HORIZONTAL, 
 
13903     String name=StaticTextNameStr) -
> bool
</autodoc> 
13905           <param name=
"parent" type=
"Window" default=
""/> 
13906           <param name=
"id" type=
"int" default=
""/> 
13907           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
13908           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
13909           <param name=
"style" type=
"long" default=
"wxLI_HORIZONTAL"/> 
13910           <param name=
"name" type=
"String" default=
"wxPyStaticTextNameStr"/> 
13913       <method name=
"IsVertical" type=
"bool" overloaded=
"no"> 
13914         <autodoc>IsVertical() -
> bool
</autodoc> 
13916       <staticmethod name=
"GetDefaultSize" type=
"int" overloaded=
"no"> 
13917         <autodoc>StaticLine.GetDefaultSize() -
> int
</autodoc> 
13921 #---------------------------------------------------------------------------
 
13923     <class name=
"StaticText" oldname=
"wxStaticText" module=
"controls"> 
13924       <baseclass name=
"Control"/> 
13925       <constructor name=
"StaticText" overloaded=
"no"> 
13926         <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition, 
 
13927     Size size=DefaultSize, long style=
0, 
 
13928     String name=StaticTextNameStr) -
> StaticText
</autodoc> 
13930           <param name=
"parent" type=
"Window" default=
""/> 
13931           <param name=
"id" type=
"int" default=
""/> 
13932           <param name=
"label" type=
"String" default=
""/> 
13933           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
13934           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
13935           <param name=
"style" type=
"long" default=
"0"/> 
13936           <param name=
"name" type=
"String" default=
"wxPyStaticTextNameStr"/> 
13939       <constructor name=
"PreStaticText" overloaded=
"no"> 
13940         <autodoc>PreStaticText() -
> StaticText
</autodoc> 
13942       <method name=
"Create" type=
"bool" overloaded=
"no"> 
13943         <autodoc>Create(Window parent, int id, String label, Point pos=DefaultPosition, 
 
13944     Size size=DefaultSize, long style=
0, 
 
13945     String name=StaticTextNameStr) -
> bool
</autodoc> 
13947           <param name=
"parent" type=
"Window" default=
""/> 
13948           <param name=
"id" type=
"int" default=
""/> 
13949           <param name=
"label" type=
"String" default=
""/> 
13950           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
13951           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
13952           <param name=
"style" type=
"long" default=
"0"/> 
13953           <param name=
"name" type=
"String" default=
"wxPyStaticTextNameStr"/> 
13958 #---------------------------------------------------------------------------
 
13960     <class name=
"StaticBitmap" oldname=
"wxStaticBitmap" module=
"controls"> 
13961       <baseclass name=
"Control"/> 
13962       <constructor name=
"StaticBitmap" overloaded=
"no"> 
13963         <autodoc>__init__(Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition, 
 
13964     Size size=DefaultSize, long style=
0, 
 
13965     String name=StaticBitmapNameStr) -
> StaticBitmap
</autodoc> 
13967           <param name=
"parent" type=
"Window" default=
""/> 
13968           <param name=
"id" type=
"int" default=
""/> 
13969           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
13970           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
13971           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
13972           <param name=
"style" type=
"long" default=
"0"/> 
13973           <param name=
"name" type=
"String" default=
"wxPyStaticBitmapNameStr"/> 
13976       <constructor name=
"PreStaticBitmap" overloaded=
"no"> 
13977         <autodoc>PreStaticBitmap() -
> StaticBitmap
</autodoc> 
13979       <method name=
"Create" type=
"bool" overloaded=
"no"> 
13980         <autodoc>Create(Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition, 
 
13981     Size size=DefaultSize, long style=
0, 
 
13982     String name=StaticBitmapNameStr) -
> bool
</autodoc> 
13984           <param name=
"parent" type=
"Window" default=
""/> 
13985           <param name=
"id" type=
"int" default=
""/> 
13986           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
13987           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
13988           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
13989           <param name=
"style" type=
"long" default=
"0"/> 
13990           <param name=
"name" type=
"String" default=
"wxPyStaticBitmapNameStr"/> 
13993       <method name=
"GetBitmap" type=
"Bitmap" overloaded=
"no"> 
13994         <autodoc>GetBitmap() -
> Bitmap
</autodoc> 
13996       <method name=
"SetBitmap" type=
"" overloaded=
"no"> 
13997         <autodoc>SetBitmap(Bitmap bitmap)
</autodoc> 
13999           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
14002       <method name=
"SetIcon" type=
"" overloaded=
"no"> 
14003         <autodoc>SetIcon(Icon icon)
</autodoc> 
14005           <param name=
"icon" type=
"Icon" default=
""/> 
14010 #---------------------------------------------------------------------------
 
14012     <class name=
"ListBox" oldname=
"wxListBox" module=
"controls"> 
14013       <baseclass name=
"ControlWithItems"/> 
14014       <constructor name=
"ListBox" overloaded=
"no"> 
14015         <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
14016     int choices=
0, String choices_array=None, 
 
14017     long style=
0, Validator validator=DefaultValidator, 
 
14018     String name=ListBoxNameStr) -
> ListBox
</autodoc> 
14020           <param name=
"parent" type=
"Window" default=
""/> 
14021           <param name=
"id" type=
"int" default=
""/> 
14022           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
14023           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
14024           <param name=
"choices" type=
"int" default=
"0"/> 
14025           <param name=
"choices_array" type=
"String" default=
"NULL"/> 
14026           <param name=
"style" type=
"long" default=
"0"/> 
14027           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
14028           <param name=
"name" type=
"String" default=
"wxPyListBoxNameStr"/> 
14031       <constructor name=
"PreListBox" overloaded=
"no"> 
14032         <autodoc>PreListBox() -
> ListBox
</autodoc> 
14034       <method name=
"Create" type=
"bool" overloaded=
"no"> 
14035         <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
14036     int choices=
0, String choices_array=None, 
 
14037     long style=
0, Validator validator=DefaultValidator, 
 
14038     String name=ListBoxNameStr) -
> bool
</autodoc> 
14040           <param name=
"parent" type=
"Window" default=
""/> 
14041           <param name=
"id" type=
"int" default=
""/> 
14042           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
14043           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
14044           <param name=
"choices" type=
"int" default=
"0"/> 
14045           <param name=
"choices_array" type=
"String" default=
"NULL"/> 
14046           <param name=
"style" type=
"long" default=
"0"/> 
14047           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
14048           <param name=
"name" type=
"String" default=
"wxPyListBoxNameStr"/> 
14051       <method name=
"Insert" type=
"" overloaded=
"no"> 
14052         <autodoc>Insert(String item, int pos, PyObject clientData=None)
</autodoc> 
14054           <param name=
"item" type=
"String" default=
""/> 
14055           <param name=
"pos" type=
"int" default=
""/> 
14056           <param name=
"clientData" type=
"PyObject" default=
"NULL"/> 
14059       <method name=
"InsertItems" type=
"" overloaded=
"no"> 
14060         <autodoc>InsertItems(wxArrayString items, int pos)
</autodoc> 
14062           <param name=
"items" type=
"wxArrayString" default=
""/> 
14063           <param name=
"pos" type=
"int" default=
""/> 
14066       <method name=
"Set" type=
"" overloaded=
"no"> 
14067         <autodoc>Set(wxArrayString items)
</autodoc> 
14069           <param name=
"items" type=
"wxArrayString" default=
""/> 
14072       <method name=
"IsSelected" type=
"bool" overloaded=
"no"> 
14073         <autodoc>IsSelected(int n) -
> bool
</autodoc> 
14075           <param name=
"n" type=
"int" default=
""/> 
14078       <method name=
"SetSelection" type=
"" overloaded=
"no"> 
14079         <autodoc>SetSelection(int n, bool select=True)
</autodoc> 
14081           <param name=
"n" type=
"int" default=
""/> 
14082           <param name=
"select" type=
"bool" default=
"True"/> 
14085       <method name=
"Select" type=
"" overloaded=
"no"> 
14086         <autodoc>Select(int n)
</autodoc> 
14088           <param name=
"n" type=
"int" default=
""/> 
14091       <method name=
"Deselect" type=
"" overloaded=
"no"> 
14092         <autodoc>Deselect(int n)
</autodoc> 
14094           <param name=
"n" type=
"int" default=
""/> 
14097       <method name=
"DeselectAll" type=
"" overloaded=
"no"> 
14098         <autodoc>DeselectAll(int itemToLeaveSelected=-
1)
</autodoc> 
14100           <param name=
"itemToLeaveSelected" type=
"int" default=
"-1"/> 
14103       <method name=
"SetStringSelection" type=
"bool" overloaded=
"no"> 
14104         <autodoc>SetStringSelection(String s, bool select=True) -
> bool
</autodoc> 
14106           <param name=
"s" type=
"String" default=
""/> 
14107           <param name=
"select" type=
"bool" default=
"True"/> 
14110       <method name=
"GetSelections" type=
"PyObject" overloaded=
"no"> 
14111         <autodoc>GetSelections() -
> PyObject
</autodoc> 
14113       <method name=
"SetFirstItem" type=
"" overloaded=
"no"> 
14114         <autodoc>SetFirstItem(int n)
</autodoc> 
14116           <param name=
"n" type=
"int" default=
""/> 
14119       <method name=
"SetFirstItemStr" type=
"" overloaded=
"no"> 
14120         <autodoc>SetFirstItemStr(String s)
</autodoc> 
14122           <param name=
"s" type=
"String" default=
""/> 
14125       <method name=
"EnsureVisible" type=
"" overloaded=
"no"> 
14126         <autodoc>EnsureVisible(int n)
</autodoc> 
14128           <param name=
"n" type=
"int" default=
""/> 
14131       <method name=
"AppendAndEnsureVisible" type=
"" overloaded=
"no"> 
14132         <autodoc>AppendAndEnsureVisible(String s)
</autodoc> 
14134           <param name=
"s" type=
"String" default=
""/> 
14137       <method name=
"IsSorted" type=
"bool" overloaded=
"no"> 
14138         <autodoc>IsSorted() -
> bool
</autodoc> 
14142 #---------------------------------------------------------------------------
 
14144     <class name=
"CheckListBox" oldname=
"wxCheckListBox" module=
"controls"> 
14145       <baseclass name=
"ListBox"/> 
14146       <constructor name=
"CheckListBox" overloaded=
"no"> 
14147         <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
14148     int choices=
0, String choices_array=None, 
 
14149     long style=
0, Validator validator=DefaultValidator, 
 
14150     String name=ListBoxNameStr) -
> CheckListBox
</autodoc> 
14152           <param name=
"parent" type=
"Window" default=
""/> 
14153           <param name=
"id" type=
"int" default=
""/> 
14154           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
14155           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
14156           <param name=
"choices" type=
"int" default=
"0"/> 
14157           <param name=
"choices_array" type=
"String" default=
"NULL"/> 
14158           <param name=
"style" type=
"long" default=
"0"/> 
14159           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
14160           <param name=
"name" type=
"String" default=
"wxPyListBoxNameStr"/> 
14163       <constructor name=
"PreCheckListBox" overloaded=
"no"> 
14164         <autodoc>PreCheckListBox() -
> CheckListBox
</autodoc> 
14166       <method name=
"Create" type=
"bool" overloaded=
"no"> 
14167         <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
14168     int choices=
0, String choices_array=None, 
 
14169     long style=
0, Validator validator=DefaultValidator, 
 
14170     String name=ListBoxNameStr) -
> bool
</autodoc> 
14172           <param name=
"parent" type=
"Window" default=
""/> 
14173           <param name=
"id" type=
"int" default=
""/> 
14174           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
14175           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
14176           <param name=
"choices" type=
"int" default=
"0"/> 
14177           <param name=
"choices_array" type=
"String" default=
"NULL"/> 
14178           <param name=
"style" type=
"long" default=
"0"/> 
14179           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
14180           <param name=
"name" type=
"String" default=
"wxPyListBoxNameStr"/> 
14183       <method name=
"IsChecked" type=
"bool" overloaded=
"no"> 
14184         <autodoc>IsChecked(int index) -
> bool
</autodoc> 
14186           <param name=
"index" type=
"int" default=
""/> 
14189       <method name=
"Check" type=
"" overloaded=
"no"> 
14190         <autodoc>Check(int index, int check=True)
</autodoc> 
14192           <param name=
"index" type=
"int" default=
""/> 
14193           <param name=
"check" type=
"int" default=
"True"/> 
14196       <method name=
"GetItemHeight" type=
"int" overloaded=
"no"> 
14197         <autodoc>GetItemHeight() -
> int
</autodoc> 
14199       <method name=
"HitTest" type=
"int" overloaded=
"no"> 
14200         <autodoc>HitTest(Point pt) -
> int
</autodoc> 
14202           <param name=
"pt" type=
"Point" default=
""/> 
14205       <method name=
"HitTestXY" type=
"int" overloaded=
"no"> 
14206         <autodoc>HitTestXY(int x, int y) -
> int
</autodoc> 
14208           <param name=
"x" type=
"int" default=
""/> 
14209           <param name=
"y" type=
"int" default=
""/> 
14214 #---------------------------------------------------------------------------
 
14216     <class name=
"TextAttr" oldname=
"wxTextAttr" module=
"controls"> 
14217       <constructor name=
"TextAttr" overloaded=
"yes"/> 
14218       <constructor name=
"TextAttr" overloaded=
"yes"> 
14219         <autodoc>__init__() -
> TextAttr
 
14220 __init__(Colour colText, Colour colBack=wxNullColour, Font font=wxNullFont, 
 
14221     int alignment=TEXT_ALIGNMENT_DEFAULT) -
> TextAttr
</autodoc> 
14223           <param name=
"colText" type=
"Colour" default=
""/> 
14224           <param name=
"colBack" type=
"Colour" default=
"wxNullColour"/> 
14225           <param name=
"font" type=
"Font" default=
"wxNullFont"/> 
14226           <param name=
"alignment" type=
"wxTextAttrAlignment" default=
"wxTEXT_ALIGNMENT_DEFAULT"/> 
14229       <method name=
"Init" type=
"" overloaded=
"no"> 
14230         <autodoc>Init()
</autodoc> 
14232       <method name=
"SetTextColour" type=
"" overloaded=
"no"> 
14233         <autodoc>SetTextColour(Colour colText)
</autodoc> 
14235           <param name=
"colText" type=
"Colour" default=
""/> 
14238       <method name=
"SetBackgroundColour" type=
"" overloaded=
"no"> 
14239         <autodoc>SetBackgroundColour(Colour colBack)
</autodoc> 
14241           <param name=
"colBack" type=
"Colour" default=
""/> 
14244       <method name=
"SetFont" type=
"" overloaded=
"no"> 
14245         <autodoc>SetFont(Font font, long flags=TEXT_ATTR_FONT)
</autodoc> 
14247           <param name=
"font" type=
"Font" default=
""/> 
14248           <param name=
"flags" type=
"long" default=
"wxTEXT_ATTR_FONT"/> 
14251       <method name=
"SetAlignment" type=
"" overloaded=
"no"> 
14252         <autodoc>SetAlignment(int alignment)
</autodoc> 
14254           <param name=
"alignment" type=
"wxTextAttrAlignment" default=
""/> 
14257       <method name=
"SetTabs" type=
"" overloaded=
"no"> 
14258         <autodoc>SetTabs(wxArrayInt tabs)
</autodoc> 
14260           <param name=
"tabs" type=
"wxArrayInt" default=
""/> 
14263       <method name=
"SetLeftIndent" type=
"" overloaded=
"no"> 
14264         <autodoc>SetLeftIndent(int indent)
</autodoc> 
14266           <param name=
"indent" type=
"int" default=
""/> 
14269       <method name=
"SetRightIndent" type=
"" overloaded=
"no"> 
14270         <autodoc>SetRightIndent(int indent)
</autodoc> 
14272           <param name=
"indent" type=
"int" default=
""/> 
14275       <method name=
"SetFlags" type=
"" overloaded=
"no"> 
14276         <autodoc>SetFlags(long flags)
</autodoc> 
14278           <param name=
"flags" type=
"long" default=
""/> 
14281       <method name=
"HasTextColour" type=
"bool" overloaded=
"no"> 
14282         <autodoc>HasTextColour() -
> bool
</autodoc> 
14284       <method name=
"HasBackgroundColour" type=
"bool" overloaded=
"no"> 
14285         <autodoc>HasBackgroundColour() -
> bool
</autodoc> 
14287       <method name=
"HasFont" type=
"bool" overloaded=
"no"> 
14288         <autodoc>HasFont() -
> bool
</autodoc> 
14290       <method name=
"HasAlignment" type=
"bool" overloaded=
"no"> 
14291         <autodoc>HasAlignment() -
> bool
</autodoc> 
14293       <method name=
"HasTabs" type=
"bool" overloaded=
"no"> 
14294         <autodoc>HasTabs() -
> bool
</autodoc> 
14296       <method name=
"HasLeftIndent" type=
"bool" overloaded=
"no"> 
14297         <autodoc>HasLeftIndent() -
> bool
</autodoc> 
14299       <method name=
"HasRightIndent" type=
"bool" overloaded=
"no"> 
14300         <autodoc>HasRightIndent() -
> bool
</autodoc> 
14302       <method name=
"HasFlag" type=
"bool" overloaded=
"no"> 
14303         <autodoc>HasFlag(long flag) -
> bool
</autodoc> 
14305           <param name=
"flag" type=
"long" default=
""/> 
14308       <method name=
"GetTextColour" type=
"Colour" overloaded=
"no"> 
14309         <autodoc>GetTextColour() -
> Colour
</autodoc> 
14311       <method name=
"GetBackgroundColour" type=
"Colour" overloaded=
"no"> 
14312         <autodoc>GetBackgroundColour() -
> Colour
</autodoc> 
14314       <method name=
"GetFont" type=
"Font" overloaded=
"no"> 
14315         <autodoc>GetFont() -
> Font
</autodoc> 
14317       <method name=
"GetAlignment" type=
"wxTextAttrAlignment" overloaded=
"no"> 
14318         <autodoc>GetAlignment() -
> int
</autodoc> 
14320       <method name=
"GetTabs" type=
"wxArrayInt" overloaded=
"no"> 
14321         <autodoc>GetTabs() -
> wxArrayInt
</autodoc> 
14323       <method name=
"GetLeftIndent" type=
"long" overloaded=
"no"> 
14324         <autodoc>GetLeftIndent() -
> long
</autodoc> 
14326       <method name=
"GetRightIndent" type=
"long" overloaded=
"no"> 
14327         <autodoc>GetRightIndent() -
> long
</autodoc> 
14329       <method name=
"GetFlags" type=
"long" overloaded=
"no"> 
14330         <autodoc>GetFlags() -
> long
</autodoc> 
14332       <method name=
"IsDefault" type=
"bool" overloaded=
"no"> 
14333         <autodoc>IsDefault() -
> bool
</autodoc> 
14335       <staticmethod name=
"Combine" type=
"TextAttr" overloaded=
"no"> 
14336         <autodoc>TextAttr.Combine(TextAttr attr, TextAttr attrDef, TextCtrl text) -
> TextAttr
</autodoc> 
14338           <param name=
"attr" type=
"TextAttr" default=
""/> 
14339           <param name=
"attrDef" type=
"TextAttr" default=
""/> 
14340           <param name=
"text" type=
"wxTextCtrl" default=
""/> 
14344     <class name=
"TextCtrl" oldname=
"wxTextCtrl" module=
"controls"> 
14345       <baseclass name=
"Control"/> 
14346       <constructor name=
"TextCtrl" overloaded=
"no"> 
14347         <autodoc>__init__(Window parent, int id, String value=EmptyString, Point pos=DefaultPosition, 
 
14348     Size size=DefaultSize, 
 
14349     long style=
0, Validator validator=DefaultValidator, 
 
14350     String name=TextCtrlNameStr) -
> TextCtrl
</autodoc> 
14352           <param name=
"parent" type=
"Window" default=
""/> 
14353           <param name=
"id" type=
"int" default=
""/> 
14354           <param name=
"value" type=
"String" default=
"wxPyEmptyString"/> 
14355           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
14356           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
14357           <param name=
"style" type=
"long" default=
"0"/> 
14358           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
14359           <param name=
"name" type=
"String" default=
"wxPyTextCtrlNameStr"/> 
14362       <constructor name=
"PreTextCtrl" overloaded=
"no"> 
14363         <autodoc>PreTextCtrl() -
> TextCtrl
</autodoc> 
14365       <method name=
"Create" type=
"bool" overloaded=
"no"> 
14366         <autodoc>Create(Window parent, int id, String value=EmptyString, Point pos=DefaultPosition, 
 
14367     Size size=DefaultSize, 
 
14368     long style=
0, Validator validator=DefaultValidator, 
 
14369     String name=TextCtrlNameStr) -
> bool
</autodoc> 
14371           <param name=
"parent" type=
"Window" default=
""/> 
14372           <param name=
"id" type=
"int" default=
""/> 
14373           <param name=
"value" type=
"String" default=
"wxPyEmptyString"/> 
14374           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
14375           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
14376           <param name=
"style" type=
"long" default=
"0"/> 
14377           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
14378           <param name=
"name" type=
"String" default=
"wxPyTextCtrlNameStr"/> 
14381       <method name=
"GetValue" type=
"String" overloaded=
"no"> 
14382         <autodoc>GetValue() -
> String
</autodoc> 
14384       <method name=
"SetValue" type=
"" overloaded=
"no"> 
14385         <autodoc>SetValue(String value)
</autodoc> 
14387           <param name=
"value" type=
"String" default=
""/> 
14390       <method name=
"GetRange" type=
"String" overloaded=
"no"> 
14391         <autodoc>GetRange(long from, long to) -
> String
</autodoc> 
14393           <param name=
"from" type=
"long" default=
""/> 
14394           <param name=
"to" type=
"long" default=
""/> 
14397       <method name=
"GetLineLength" type=
"int" overloaded=
"no"> 
14398         <autodoc>GetLineLength(long lineNo) -
> int
</autodoc> 
14400           <param name=
"lineNo" type=
"long" default=
""/> 
14403       <method name=
"GetLineText" type=
"String" overloaded=
"no"> 
14404         <autodoc>GetLineText(long lineNo) -
> String
</autodoc> 
14406           <param name=
"lineNo" type=
"long" default=
""/> 
14409       <method name=
"GetNumberOfLines" type=
"int" overloaded=
"no"> 
14410         <autodoc>GetNumberOfLines() -
> int
</autodoc> 
14412       <method name=
"IsModified" type=
"bool" overloaded=
"no"> 
14413         <autodoc>IsModified() -
> bool
</autodoc> 
14415       <method name=
"IsEditable" type=
"bool" overloaded=
"no"> 
14416         <autodoc>IsEditable() -
> bool
</autodoc> 
14418       <method name=
"IsSingleLine" type=
"bool" overloaded=
"no"> 
14419         <autodoc>IsSingleLine() -
> bool
</autodoc> 
14421       <method name=
"IsMultiLine" type=
"bool" overloaded=
"no"> 
14422         <autodoc>IsMultiLine() -
> bool
</autodoc> 
14424       <method name=
"GetSelection" type=
"" overloaded=
"no"> 
14425         <autodoc>GetSelection() -
> (from, to)
</autodoc> 
14426         <docstring>If the return values from and to are the same, there is no selection.
</docstring> 
14428           <param name=
"OUTPUT" type=
"long" default=
""/> 
14429           <param name=
"OUTPUT" type=
"long" default=
""/> 
14432       <method name=
"GetStringSelection" type=
"String" overloaded=
"no"> 
14433         <autodoc>GetStringSelection() -
> String
</autodoc> 
14435       <method name=
"Clear" type=
"" overloaded=
"no"> 
14436         <autodoc>Clear()
</autodoc> 
14438       <method name=
"Replace" type=
"" overloaded=
"no"> 
14439         <autodoc>Replace(long from, long to, String value)
</autodoc> 
14441           <param name=
"from" type=
"long" default=
""/> 
14442           <param name=
"to" type=
"long" default=
""/> 
14443           <param name=
"value" type=
"String" default=
""/> 
14446       <method name=
"Remove" type=
"" overloaded=
"no"> 
14447         <autodoc>Remove(long from, long to)
</autodoc> 
14449           <param name=
"from" type=
"long" default=
""/> 
14450           <param name=
"to" type=
"long" default=
""/> 
14453       <method name=
"LoadFile" type=
"bool" overloaded=
"no"> 
14454         <autodoc>LoadFile(String file) -
> bool
</autodoc> 
14456           <param name=
"file" type=
"String" default=
""/> 
14459       <method name=
"SaveFile" type=
"bool" overloaded=
"no"> 
14460         <autodoc>SaveFile(String file=EmptyString) -
> bool
</autodoc> 
14462           <param name=
"file" type=
"String" default=
"wxPyEmptyString"/> 
14465       <method name=
"MarkDirty" type=
"" overloaded=
"no"> 
14466         <autodoc>MarkDirty()
</autodoc> 
14468       <method name=
"DiscardEdits" type=
"" overloaded=
"no"> 
14469         <autodoc>DiscardEdits()
</autodoc> 
14471       <method name=
"SetMaxLength" type=
"" overloaded=
"no"> 
14472         <autodoc>SetMaxLength(unsigned long len)
</autodoc> 
14474           <param name=
"len" type=
"unsigned long" default=
""/> 
14477       <method name=
"WriteText" type=
"" overloaded=
"no"> 
14478         <autodoc>WriteText(String text)
</autodoc> 
14480           <param name=
"text" type=
"String" default=
""/> 
14483       <method name=
"AppendText" type=
"" overloaded=
"no"> 
14484         <autodoc>AppendText(String text)
</autodoc> 
14486           <param name=
"text" type=
"String" default=
""/> 
14489       <method name=
"EmulateKeyPress" type=
"bool" overloaded=
"no"> 
14490         <autodoc>EmulateKeyPress(KeyEvent event) -
> bool
</autodoc> 
14492           <param name=
"event" type=
"KeyEvent" default=
""/> 
14495       <method name=
"SetStyle" type=
"bool" overloaded=
"no"> 
14496         <autodoc>SetStyle(long start, long end, TextAttr style) -
> bool
</autodoc> 
14498           <param name=
"start" type=
"long" default=
""/> 
14499           <param name=
"end" type=
"long" default=
""/> 
14500           <param name=
"style" type=
"TextAttr" default=
""/> 
14503       <method name=
"GetStyle" type=
"bool" overloaded=
"no"> 
14504         <autodoc>GetStyle(long position, TextAttr style) -
> bool
</autodoc> 
14506           <param name=
"position" type=
"long" default=
""/> 
14507           <param name=
"style" type=
"TextAttr" default=
""/> 
14510       <method name=
"SetDefaultStyle" type=
"bool" overloaded=
"no"> 
14511         <autodoc>SetDefaultStyle(TextAttr style) -
> bool
</autodoc> 
14513           <param name=
"style" type=
"TextAttr" default=
""/> 
14516       <method name=
"GetDefaultStyle" type=
"TextAttr" overloaded=
"no"> 
14517         <autodoc>GetDefaultStyle() -
> TextAttr
</autodoc> 
14519       <method name=
"XYToPosition" type=
"long" overloaded=
"no"> 
14520         <autodoc>XYToPosition(long x, long y) -
> long
</autodoc> 
14522           <param name=
"x" type=
"long" default=
""/> 
14523           <param name=
"y" type=
"long" default=
""/> 
14526       <method name=
"PositionToXY" type=
"" overloaded=
"no"> 
14527         <autodoc>PositionToXY(long pos) -
> (x, y)
</autodoc> 
14529           <param name=
"pos" type=
"long" default=
""/> 
14530           <param name=
"OUTPUT" type=
"long" default=
""/> 
14531           <param name=
"OUTPUT" type=
"long" default=
""/> 
14534       <method name=
"ShowPosition" type=
"" overloaded=
"no"> 
14535         <autodoc>ShowPosition(long pos)
</autodoc> 
14537           <param name=
"pos" type=
"long" default=
""/> 
14540       <method name=
"Copy" type=
"" overloaded=
"no"> 
14541         <autodoc>Copy()
</autodoc> 
14543       <method name=
"Cut" type=
"" overloaded=
"no"> 
14544         <autodoc>Cut()
</autodoc> 
14546       <method name=
"Paste" type=
"" overloaded=
"no"> 
14547         <autodoc>Paste()
</autodoc> 
14549       <method name=
"CanCopy" type=
"bool" overloaded=
"no"> 
14550         <autodoc>CanCopy() -
> bool
</autodoc> 
14552       <method name=
"CanCut" type=
"bool" overloaded=
"no"> 
14553         <autodoc>CanCut() -
> bool
</autodoc> 
14555       <method name=
"CanPaste" type=
"bool" overloaded=
"no"> 
14556         <autodoc>CanPaste() -
> bool
</autodoc> 
14558       <method name=
"Undo" type=
"" overloaded=
"no"> 
14559         <autodoc>Undo()
</autodoc> 
14561       <method name=
"Redo" type=
"" overloaded=
"no"> 
14562         <autodoc>Redo()
</autodoc> 
14564       <method name=
"CanUndo" type=
"bool" overloaded=
"no"> 
14565         <autodoc>CanUndo() -
> bool
</autodoc> 
14567       <method name=
"CanRedo" type=
"bool" overloaded=
"no"> 
14568         <autodoc>CanRedo() -
> bool
</autodoc> 
14570       <method name=
"SetInsertionPoint" type=
"" overloaded=
"no"> 
14571         <autodoc>SetInsertionPoint(long pos)
</autodoc> 
14573           <param name=
"pos" type=
"long" default=
""/> 
14576       <method name=
"SetInsertionPointEnd" type=
"" overloaded=
"no"> 
14577         <autodoc>SetInsertionPointEnd()
</autodoc> 
14579       <method name=
"GetInsertionPoint" type=
"long" overloaded=
"no"> 
14580         <autodoc>GetInsertionPoint() -
> long
</autodoc> 
14582       <method name=
"GetLastPosition" type=
"long" overloaded=
"no"> 
14583         <autodoc>GetLastPosition() -
> long
</autodoc> 
14585       <method name=
"SetSelection" type=
"" overloaded=
"no"> 
14586         <autodoc>SetSelection(long from, long to)
</autodoc> 
14588           <param name=
"from" type=
"long" default=
""/> 
14589           <param name=
"to" type=
"long" default=
""/> 
14592       <method name=
"SelectAll" type=
"" overloaded=
"no"> 
14593         <autodoc>SelectAll()
</autodoc> 
14595       <method name=
"SetEditable" type=
"" overloaded=
"no"> 
14596         <autodoc>SetEditable(bool editable)
</autodoc> 
14598           <param name=
"editable" type=
"bool" default=
""/> 
14601       <method name=
"write" type=
"" overloaded=
"no"> 
14602         <autodoc>write(String text)
</autodoc> 
14604           <param name=
"text" type=
"String" default=
""/> 
14607       <method name=
"GetString" type=
"String" overloaded=
"no"> 
14608         <autodoc>GetString(long from, long to) -
> String
</autodoc> 
14610           <param name=
"from" type=
"long" default=
""/> 
14611           <param name=
"to" type=
"long" default=
""/> 
14615     <class name=
"TextUrlEvent" oldname=
"wxTextUrlEvent" module=
"controls"> 
14616       <baseclass name=
"CommandEvent"/> 
14617       <constructor name=
"TextUrlEvent" overloaded=
"no"> 
14618         <autodoc>__init__(int winid, MouseEvent evtMouse, long start, long end) -
> TextUrlEvent
</autodoc> 
14620           <param name=
"winid" type=
"int" default=
""/> 
14621           <param name=
"evtMouse" type=
"MouseEvent" default=
""/> 
14622           <param name=
"start" type=
"long" default=
""/> 
14623           <param name=
"end" type=
"long" default=
""/> 
14626       <method name=
"GetMouseEvent" type=
"MouseEvent" overloaded=
"no"> 
14627         <autodoc>GetMouseEvent() -
> MouseEvent
</autodoc> 
14629       <method name=
"GetURLStart" type=
"long" overloaded=
"no"> 
14630         <autodoc>GetURLStart() -
> long
</autodoc> 
14632       <method name=
"GetURLEnd" type=
"long" overloaded=
"no"> 
14633         <autodoc>GetURLEnd() -
> long
</autodoc> 
14637 EVT_TEXT        = wx.PyEventBinder( wxEVT_COMMAND_TEXT_UPDATED, 
1)
 
14638 EVT_TEXT_ENTER  = wx.PyEventBinder( wxEVT_COMMAND_TEXT_ENTER, 
1)
 
14639 EVT_TEXT_URL    = wx.PyEventBinder( wxEVT_COMMAND_TEXT_URL, 
1) 
 
14640 EVT_TEXT_MAXLEN = wx.PyEventBinder( wxEVT_COMMAND_TEXT_MAXLEN, 
1)
 
14643 #---------------------------------------------------------------------------
 
14645     <class name=
"ScrollBar" oldname=
"wxScrollBar" module=
"controls"> 
14646       <baseclass name=
"Control"/> 
14647       <constructor name=
"ScrollBar" overloaded=
"no"> 
14648         <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
14649     Size size=DefaultSize, long style=SB_HORIZONTAL, 
 
14650     Validator validator=DefaultValidator, String name=ScrollBarNameStr) -
> ScrollBar
</autodoc> 
14652           <param name=
"parent" type=
"Window" default=
""/> 
14653           <param name=
"id" type=
"int" default=
"-1"/> 
14654           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
14655           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
14656           <param name=
"style" type=
"long" default=
"wxSB_HORIZONTAL"/> 
14657           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
14658           <param name=
"name" type=
"String" default=
"wxPyScrollBarNameStr"/> 
14661       <constructor name=
"PreScrollBar" overloaded=
"no"> 
14662         <autodoc>PreScrollBar() -
> ScrollBar
</autodoc> 
14664       <method name=
"Create" type=
"bool" overloaded=
"no"> 
14665         <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
14666     Size size=DefaultSize, long style=SB_HORIZONTAL, 
 
14667     Validator validator=DefaultValidator, String name=ScrollBarNameStr) -
> bool
</autodoc> 
14669           <param name=
"parent" type=
"Window" default=
""/> 
14670           <param name=
"id" type=
"int" default=
"-1"/> 
14671           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
14672           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
14673           <param name=
"style" type=
"long" default=
"wxSB_HORIZONTAL"/> 
14674           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
14675           <param name=
"name" type=
"String" default=
"wxPyScrollBarNameStr"/> 
14678       <method name=
"GetThumbPosition" type=
"int" overloaded=
"no"> 
14679         <autodoc>GetThumbPosition() -
> int
</autodoc> 
14681       <method name=
"GetThumbSize" type=
"int" overloaded=
"no"> 
14682         <autodoc>GetThumbSize() -
> int
</autodoc> 
14684       <method name=
"GetPageSize" type=
"int" overloaded=
"no"> 
14685         <autodoc>GetPageSize() -
> int
</autodoc> 
14687       <method name=
"GetRange" type=
"int" overloaded=
"no"> 
14688         <autodoc>GetRange() -
> int
</autodoc> 
14690       <method name=
"IsVertical" type=
"bool" overloaded=
"no"> 
14691         <autodoc>IsVertical() -
> bool
</autodoc> 
14693       <method name=
"SetThumbPosition" type=
"" overloaded=
"no"> 
14694         <autodoc>SetThumbPosition(int viewStart)
</autodoc> 
14696           <param name=
"viewStart" type=
"int" default=
""/> 
14699       <method name=
"SetScrollbar" type=
"" overloaded=
"no"> 
14700         <autodoc>SetScrollbar(int position, int thumbSize, int range, int pageSize, 
 
14701     bool refresh=True)
</autodoc> 
14703           <param name=
"position" type=
"int" default=
""/> 
14704           <param name=
"thumbSize" type=
"int" default=
""/> 
14705           <param name=
"range" type=
"int" default=
""/> 
14706           <param name=
"pageSize" type=
"int" default=
""/> 
14707           <param name=
"refresh" type=
"bool" default=
"True"/> 
14712 #---------------------------------------------------------------------------
 
14714     <class name=
"SpinButton" oldname=
"wxSpinButton" module=
"controls"> 
14715       <baseclass name=
"Control"/> 
14716       <constructor name=
"SpinButton" overloaded=
"no"> 
14717         <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
14718     Size size=DefaultSize, long style=SP_HORIZONTAL, 
 
14719     String name=SPIN_BUTTON_NAME) -
> SpinButton
</autodoc> 
14721           <param name=
"parent" type=
"Window" default=
""/> 
14722           <param name=
"id" type=
"int" default=
"-1"/> 
14723           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
14724           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
14725           <param name=
"style" type=
"long" default=
"wxSP_HORIZONTAL"/> 
14726           <param name=
"name" type=
"String" default=
"wxPySPIN_BUTTON_NAME"/> 
14729       <constructor name=
"PreSpinButton" overloaded=
"no"> 
14730         <autodoc>PreSpinButton() -
> SpinButton
</autodoc> 
14732       <method name=
"Create" type=
"bool" overloaded=
"no"> 
14733         <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
14734     Size size=DefaultSize, long style=SP_HORIZONTAL, 
 
14735     String name=SPIN_BUTTON_NAME) -
> bool
</autodoc> 
14737           <param name=
"parent" type=
"Window" default=
""/> 
14738           <param name=
"id" type=
"int" default=
"-1"/> 
14739           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
14740           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
14741           <param name=
"style" type=
"long" default=
"wxSP_HORIZONTAL"/> 
14742           <param name=
"name" type=
"String" default=
"wxPySPIN_BUTTON_NAME"/> 
14745       <method name=
"GetValue" type=
"int" overloaded=
"no"> 
14746         <autodoc>GetValue() -
> int
</autodoc> 
14748       <method name=
"GetMin" type=
"int" overloaded=
"no"> 
14749         <autodoc>GetMin() -
> int
</autodoc> 
14751       <method name=
"GetMax" type=
"int" overloaded=
"no"> 
14752         <autodoc>GetMax() -
> int
</autodoc> 
14754       <method name=
"SetValue" type=
"" overloaded=
"no"> 
14755         <autodoc>SetValue(int val)
</autodoc> 
14757           <param name=
"val" type=
"int" default=
""/> 
14760       <method name=
"SetMin" type=
"" overloaded=
"no"> 
14761         <autodoc>SetMin(int minVal)
</autodoc> 
14763           <param name=
"minVal" type=
"int" default=
""/> 
14766       <method name=
"SetMax" type=
"" overloaded=
"no"> 
14767         <autodoc>SetMax(int maxVal)
</autodoc> 
14769           <param name=
"maxVal" type=
"int" default=
""/> 
14772       <method name=
"SetRange" type=
"" overloaded=
"no"> 
14773         <autodoc>SetRange(int minVal, int maxVal)
</autodoc> 
14775           <param name=
"minVal" type=
"int" default=
""/> 
14776           <param name=
"maxVal" type=
"int" default=
""/> 
14779       <method name=
"IsVertical" type=
"bool" overloaded=
"no"> 
14780         <autodoc>IsVertical() -
> bool
</autodoc> 
14783     <class name=
"SpinCtrl" oldname=
"wxSpinCtrl" module=
"controls"> 
14784       <baseclass name=
"Control"/> 
14785       <constructor name=
"SpinCtrl" overloaded=
"no"> 
14786         <autodoc>__init__(Window parent, int id=-
1, String value=EmptyString, 
 
14787     Point pos=DefaultPosition, Size size=DefaultSize, 
 
14788     long style=SP_ARROW_KEYS, int min=
0, int max=
100, 
 
14789     int initial=
0, String name=SpinCtrlNameStr) -
> SpinCtrl
</autodoc> 
14791           <param name=
"parent" type=
"Window" default=
""/> 
14792           <param name=
"id" type=
"int" default=
"-1"/> 
14793           <param name=
"value" type=
"String" default=
"wxPyEmptyString"/> 
14794           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
14795           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
14796           <param name=
"style" type=
"long" default=
"wxSP_ARROW_KEYS"/> 
14797           <param name=
"min" type=
"int" default=
"0"/> 
14798           <param name=
"max" type=
"int" default=
"100"/> 
14799           <param name=
"initial" type=
"int" default=
"0"/> 
14800           <param name=
"name" type=
"String" default=
"wxPySpinCtrlNameStr"/> 
14803       <constructor name=
"PreSpinCtrl" overloaded=
"no"> 
14804         <autodoc>PreSpinCtrl() -
> SpinCtrl
</autodoc> 
14806       <method name=
"Create" type=
"bool" overloaded=
"no"> 
14807         <autodoc>Create(Window parent, int id=-
1, String value=EmptyString, 
 
14808     Point pos=DefaultPosition, Size size=DefaultSize, 
 
14809     long style=SP_ARROW_KEYS, int min=
0, int max=
100, 
 
14810     int initial=
0, String name=SpinCtrlNameStr) -
> bool
</autodoc> 
14812           <param name=
"parent" type=
"Window" default=
""/> 
14813           <param name=
"id" type=
"int" default=
"-1"/> 
14814           <param name=
"value" type=
"String" default=
"wxPyEmptyString"/> 
14815           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
14816           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
14817           <param name=
"style" type=
"long" default=
"wxSP_ARROW_KEYS"/> 
14818           <param name=
"min" type=
"int" default=
"0"/> 
14819           <param name=
"max" type=
"int" default=
"100"/> 
14820           <param name=
"initial" type=
"int" default=
"0"/> 
14821           <param name=
"name" type=
"String" default=
"wxPySpinCtrlNameStr"/> 
14824       <method name=
"GetValue" type=
"int" overloaded=
"no"> 
14825         <autodoc>GetValue() -
> int
</autodoc> 
14827       <method name=
"SetValue" type=
"" overloaded=
"no"> 
14828         <autodoc>SetValue(int value)
</autodoc> 
14830           <param name=
"value" type=
"int" default=
""/> 
14833       <method name=
"SetValueString" type=
"" overloaded=
"no"> 
14834         <autodoc>SetValueString(String text)
</autodoc> 
14836           <param name=
"text" type=
"String" default=
""/> 
14839       <method name=
"SetRange" type=
"" overloaded=
"no"> 
14840         <autodoc>SetRange(int minVal, int maxVal)
</autodoc> 
14842           <param name=
"minVal" type=
"int" default=
""/> 
14843           <param name=
"maxVal" type=
"int" default=
""/> 
14846       <method name=
"GetMin" type=
"int" overloaded=
"no"> 
14847         <autodoc>GetMin() -
> int
</autodoc> 
14849       <method name=
"GetMax" type=
"int" overloaded=
"no"> 
14850         <autodoc>GetMax() -
> int
</autodoc> 
14852       <method name=
"SetSelection" type=
"" overloaded=
"no"> 
14853         <autodoc>SetSelection(long from, long to)
</autodoc> 
14855           <param name=
"from" type=
"long" default=
""/> 
14856           <param name=
"to" type=
"long" default=
""/> 
14860     <class name=
"SpinEvent" oldname=
"wxSpinEvent" module=
"controls"> 
14861       <baseclass name=
"NotifyEvent"/> 
14862       <constructor name=
"SpinEvent" overloaded=
"no"> 
14863         <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int winid=
0) -
> SpinEvent
</autodoc> 
14865           <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/> 
14866           <param name=
"winid" type=
"int" default=
"0"/> 
14869       <method name=
"GetPosition" type=
"int" overloaded=
"no"> 
14870         <autodoc>GetPosition() -
> int
</autodoc> 
14872       <method name=
"SetPosition" type=
"" overloaded=
"no"> 
14873         <autodoc>SetPosition(int pos)
</autodoc> 
14875           <param name=
"pos" type=
"int" default=
""/> 
14880 EVT_SPIN_UP   = wx.PyEventBinder( wx.wxEVT_SCROLL_LINEUP, 
1)
 
14881 EVT_SPIN_DOWN = wx.PyEventBinder( wx.wxEVT_SCROLL_LINEDOWN, 
1)
 
14882 EVT_SPIN      = wx.PyEventBinder( wx.wxEVT_SCROLL_THUMBTRACK, 
1)
 
14883 EVT_SPINCTRL  = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED, 
1)
 
14886 #---------------------------------------------------------------------------
 
14888     <class name=
"RadioBox" oldname=
"wxRadioBox" module=
"controls"> 
14889       <baseclass name=
"Control"/> 
14890       <constructor name=
"RadioBox" overloaded=
"no"> 
14891         <autodoc>__init__(Window parent, int id, String label, Point point=DefaultPosition, 
 
14892     Size size=DefaultSize, int choices=
0, 
 
14893     String choices_array=None, int majorDimension=
0, 
 
14894     long style=RA_HORIZONTAL, Validator validator=DefaultValidator, 
 
14895     String name=RadioBoxNameStr) -
> RadioBox
</autodoc> 
14897           <param name=
"parent" type=
"Window" default=
""/> 
14898           <param name=
"id" type=
"int" default=
""/> 
14899           <param name=
"label" type=
"String" default=
""/> 
14900           <param name=
"point" type=
"Point" default=
"wxDefaultPosition"/> 
14901           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
14902           <param name=
"choices" type=
"int" default=
"0"/> 
14903           <param name=
"choices_array" type=
"String" default=
"NULL"/> 
14904           <param name=
"majorDimension" type=
"int" default=
"0"/> 
14905           <param name=
"style" type=
"long" default=
"wxRA_HORIZONTAL"/> 
14906           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
14907           <param name=
"name" type=
"String" default=
"wxPyRadioBoxNameStr"/> 
14910       <constructor name=
"PreRadioBox" overloaded=
"no"> 
14911         <autodoc>PreRadioBox() -
> RadioBox
</autodoc> 
14913       <method name=
"Create" type=
"bool" overloaded=
"no"> 
14914         <autodoc>Create(Window parent, int id, String label, Point point=DefaultPosition, 
 
14915     Size size=DefaultSize, int choices=
0, 
 
14916     String choices_array=None, int majorDimension=
0, 
 
14917     long style=RA_HORIZONTAL, Validator validator=DefaultValidator, 
 
14918     String name=RadioBoxNameStr) -
> bool
</autodoc> 
14920           <param name=
"parent" type=
"Window" default=
""/> 
14921           <param name=
"id" type=
"int" default=
""/> 
14922           <param name=
"label" type=
"String" default=
""/> 
14923           <param name=
"point" type=
"Point" default=
"wxDefaultPosition"/> 
14924           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
14925           <param name=
"choices" type=
"int" default=
"0"/> 
14926           <param name=
"choices_array" type=
"String" default=
"NULL"/> 
14927           <param name=
"majorDimension" type=
"int" default=
"0"/> 
14928           <param name=
"style" type=
"long" default=
"wxRA_HORIZONTAL"/> 
14929           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
14930           <param name=
"name" type=
"String" default=
"wxPyRadioBoxNameStr"/> 
14933       <method name=
"SetSelection" type=
"" overloaded=
"no"> 
14934         <autodoc>SetSelection(int n)
</autodoc> 
14936           <param name=
"n" type=
"int" default=
""/> 
14939       <method name=
"GetSelection" type=
"int" overloaded=
"no"> 
14940         <autodoc>GetSelection() -
> int
</autodoc> 
14942       <method name=
"GetStringSelection" type=
"String" overloaded=
"no"> 
14943         <autodoc>GetStringSelection() -
> String
</autodoc> 
14945       <method name=
"SetStringSelection" type=
"bool" overloaded=
"no"> 
14946         <autodoc>SetStringSelection(String s) -
> bool
</autodoc> 
14948           <param name=
"s" type=
"String" default=
""/> 
14951       <method name=
"GetCount" type=
"int" overloaded=
"no"> 
14952         <autodoc>GetCount() -
> int
</autodoc> 
14954       <method name=
"FindString" type=
"int" overloaded=
"no"> 
14955         <autodoc>FindString(String s) -
> int
</autodoc> 
14957           <param name=
"s" type=
"String" default=
""/> 
14960       <method name=
"GetString" type=
"String" overloaded=
"no"> 
14961         <autodoc>GetString(int n) -
> String
</autodoc> 
14963           <param name=
"n" type=
"int" default=
""/> 
14966       <method name=
"SetString" type=
"" overloaded=
"no"> 
14967         <autodoc>SetString(int n, String label)
</autodoc> 
14969           <param name=
"n" type=
"int" default=
""/> 
14970           <param name=
"label" type=
"String" default=
""/> 
14973       <method name=
"EnableItem" type=
"" overloaded=
"no"> 
14974         <autodoc>EnableItem(int n, bool enable=True)
</autodoc> 
14976           <param name=
"n" type=
"int" default=
""/> 
14977           <param name=
"enable" type=
"bool" default=
"True"/> 
14980       <method name=
"ShowItem" type=
"" overloaded=
"no"> 
14981         <autodoc>ShowItem(int n, bool show=True)
</autodoc> 
14983           <param name=
"n" type=
"int" default=
""/> 
14984           <param name=
"show" type=
"bool" default=
"True"/> 
14987       <method name=
"GetColumnCount" type=
"int" overloaded=
"no"> 
14988         <autodoc>GetColumnCount() -
> int
</autodoc> 
14990       <method name=
"GetRowCount" type=
"int" overloaded=
"no"> 
14991         <autodoc>GetRowCount() -
> int
</autodoc> 
14993       <method name=
"GetNextItem" type=
"int" overloaded=
"no"> 
14994         <autodoc>GetNextItem(int item, int dir, long style) -
> int
</autodoc> 
14996           <param name=
"item" type=
"int" default=
""/> 
14997           <param name=
"dir" type=
"wxDirection" default=
""/> 
14998           <param name=
"style" type=
"long" default=
""/> 
15003 #---------------------------------------------------------------------------
 
15005     <class name=
"RadioButton" oldname=
"wxRadioButton" module=
"controls"> 
15006       <baseclass name=
"Control"/> 
15007       <constructor name=
"RadioButton" overloaded=
"no"> 
15008         <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition, 
 
15009     Size size=DefaultSize, long style=
0, 
 
15010     Validator validator=DefaultValidator, String name=RadioButtonNameStr) -
> RadioButton
</autodoc> 
15012           <param name=
"parent" type=
"Window" default=
""/> 
15013           <param name=
"id" type=
"int" default=
""/> 
15014           <param name=
"label" type=
"String" default=
""/> 
15015           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
15016           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
15017           <param name=
"style" type=
"long" default=
"0"/> 
15018           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
15019           <param name=
"name" type=
"String" default=
"wxPyRadioButtonNameStr"/> 
15022       <constructor name=
"PreRadioButton" overloaded=
"no"> 
15023         <autodoc>PreRadioButton() -
> RadioButton
</autodoc> 
15025       <method name=
"Create" type=
"bool" overloaded=
"no"> 
15026         <autodoc>Create(Window parent, int id, String label, Point pos=DefaultPosition, 
 
15027     Size size=DefaultSize, long style=
0, 
 
15028     Validator validator=DefaultValidator, String name=RadioButtonNameStr) -
> bool
</autodoc> 
15030           <param name=
"parent" type=
"Window" default=
""/> 
15031           <param name=
"id" type=
"int" default=
""/> 
15032           <param name=
"label" type=
"String" default=
""/> 
15033           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
15034           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
15035           <param name=
"style" type=
"long" default=
"0"/> 
15036           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
15037           <param name=
"name" type=
"String" default=
"wxPyRadioButtonNameStr"/> 
15040       <method name=
"GetValue" type=
"bool" overloaded=
"no"> 
15041         <autodoc>GetValue() -
> bool
</autodoc> 
15043       <method name=
"SetValue" type=
"" overloaded=
"no"> 
15044         <autodoc>SetValue(bool value)
</autodoc> 
15046           <param name=
"value" type=
"bool" default=
""/> 
15051 #---------------------------------------------------------------------------
 
15053     <class name=
"Slider" oldname=
"wxSlider" module=
"controls"> 
15054       <baseclass name=
"Control"/> 
15055       <constructor name=
"Slider" overloaded=
"no"> 
15056         <autodoc>__init__(Window parent, int id, int value, int minValue, int maxValue, 
 
15057     Point point=DefaultPosition, Size size=DefaultSize, 
 
15058     long style=SL_HORIZONTAL, Validator validator=DefaultValidator, 
 
15059     String name=SliderNameStr) -
> Slider
</autodoc> 
15061           <param name=
"parent" type=
"Window" default=
""/> 
15062           <param name=
"id" type=
"int" default=
""/> 
15063           <param name=
"value" type=
"int" default=
""/> 
15064           <param name=
"minValue" type=
"int" default=
""/> 
15065           <param name=
"maxValue" type=
"int" default=
""/> 
15066           <param name=
"point" type=
"Point" default=
"wxDefaultPosition"/> 
15067           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
15068           <param name=
"style" type=
"long" default=
"wxSL_HORIZONTAL"/> 
15069           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
15070           <param name=
"name" type=
"String" default=
"wxPySliderNameStr"/> 
15073       <constructor name=
"PreSlider" overloaded=
"no"> 
15074         <autodoc>PreSlider() -
> Slider
</autodoc> 
15076       <method name=
"Create" type=
"bool" overloaded=
"no"> 
15077         <autodoc>Create(Window parent, int id, int value, int minValue, int maxValue, 
 
15078     Point point=DefaultPosition, Size size=DefaultSize, 
 
15079     long style=SL_HORIZONTAL, Validator validator=DefaultValidator, 
 
15080     String name=SliderNameStr) -
> bool
</autodoc> 
15082           <param name=
"parent" type=
"Window" default=
""/> 
15083           <param name=
"id" type=
"int" default=
""/> 
15084           <param name=
"value" type=
"int" default=
""/> 
15085           <param name=
"minValue" type=
"int" default=
""/> 
15086           <param name=
"maxValue" type=
"int" default=
""/> 
15087           <param name=
"point" type=
"Point" default=
"wxDefaultPosition"/> 
15088           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
15089           <param name=
"style" type=
"long" default=
"wxSL_HORIZONTAL"/> 
15090           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
15091           <param name=
"name" type=
"String" default=
"wxPySliderNameStr"/> 
15094       <method name=
"GetValue" type=
"int" overloaded=
"no"> 
15095         <autodoc>GetValue() -
> int
</autodoc> 
15097       <method name=
"SetValue" type=
"" overloaded=
"no"> 
15098         <autodoc>SetValue(int value)
</autodoc> 
15100           <param name=
"value" type=
"int" default=
""/> 
15103       <method name=
"SetRange" type=
"" overloaded=
"no"> 
15104         <autodoc>SetRange(int minValue, int maxValue)
</autodoc> 
15106           <param name=
"minValue" type=
"int" default=
""/> 
15107           <param name=
"maxValue" type=
"int" default=
""/> 
15110       <method name=
"GetMin" type=
"int" overloaded=
"no"> 
15111         <autodoc>GetMin() -
> int
</autodoc> 
15113       <method name=
"GetMax" type=
"int" overloaded=
"no"> 
15114         <autodoc>GetMax() -
> int
</autodoc> 
15116       <method name=
"SetMin" type=
"" overloaded=
"no"> 
15117         <autodoc>SetMin(int minValue)
</autodoc> 
15119           <param name=
"minValue" type=
"int" default=
""/> 
15122       <method name=
"SetMax" type=
"" overloaded=
"no"> 
15123         <autodoc>SetMax(int maxValue)
</autodoc> 
15125           <param name=
"maxValue" type=
"int" default=
""/> 
15128       <method name=
"SetLineSize" type=
"" overloaded=
"no"> 
15129         <autodoc>SetLineSize(int lineSize)
</autodoc> 
15131           <param name=
"lineSize" type=
"int" default=
""/> 
15134       <method name=
"SetPageSize" type=
"" overloaded=
"no"> 
15135         <autodoc>SetPageSize(int pageSize)
</autodoc> 
15137           <param name=
"pageSize" type=
"int" default=
""/> 
15140       <method name=
"GetLineSize" type=
"int" overloaded=
"no"> 
15141         <autodoc>GetLineSize() -
> int
</autodoc> 
15143       <method name=
"GetPageSize" type=
"int" overloaded=
"no"> 
15144         <autodoc>GetPageSize() -
> int
</autodoc> 
15146       <method name=
"SetThumbLength" type=
"" overloaded=
"no"> 
15147         <autodoc>SetThumbLength(int lenPixels)
</autodoc> 
15149           <param name=
"lenPixels" type=
"int" default=
""/> 
15152       <method name=
"GetThumbLength" type=
"int" overloaded=
"no"> 
15153         <autodoc>GetThumbLength() -
> int
</autodoc> 
15155       <method name=
"SetTickFreq" type=
"" overloaded=
"no"> 
15156         <autodoc>SetTickFreq(int n, int pos)
</autodoc> 
15158           <param name=
"n" type=
"int" default=
""/> 
15159           <param name=
"pos" type=
"int" default=
""/> 
15162       <method name=
"GetTickFreq" type=
"int" overloaded=
"no"> 
15163         <autodoc>GetTickFreq() -
> int
</autodoc> 
15165       <method name=
"ClearTicks" type=
"" overloaded=
"no"> 
15166         <autodoc>ClearTicks()
</autodoc> 
15168       <method name=
"SetTick" type=
"" overloaded=
"no"> 
15169         <autodoc>SetTick(int tickPos)
</autodoc> 
15171           <param name=
"tickPos" type=
"int" default=
""/> 
15174       <method name=
"ClearSel" type=
"" overloaded=
"no"> 
15175         <autodoc>ClearSel()
</autodoc> 
15177       <method name=
"GetSelEnd" type=
"int" overloaded=
"no"> 
15178         <autodoc>GetSelEnd() -
> int
</autodoc> 
15180       <method name=
"GetSelStart" type=
"int" overloaded=
"no"> 
15181         <autodoc>GetSelStart() -
> int
</autodoc> 
15183       <method name=
"SetSelection" type=
"" overloaded=
"no"> 
15184         <autodoc>SetSelection(int min, int max)
</autodoc> 
15186           <param name=
"min" type=
"int" default=
""/> 
15187           <param name=
"max" type=
"int" default=
""/> 
15192 #---------------------------------------------------------------------------
 
15195     EVT_TOGGLEBUTTON = wx.PyEventBinder( wxEVT_COMMAND_TOGGLEBUTTON_CLICKED, 
1)
 
15197     <class name=
"ToggleButton" oldname=
"wxToggleButton" module=
"controls"> 
15198       <baseclass name=
"Control"/> 
15199       <constructor name=
"ToggleButton" overloaded=
"no"> 
15200         <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition, 
 
15201     Size size=DefaultSize, long style=
0, 
 
15202     Validator validator=DefaultValidator, String name=ToggleButtonNameStr) -
> ToggleButton
</autodoc> 
15204           <param name=
"parent" type=
"Window" default=
""/> 
15205           <param name=
"id" type=
"int" default=
""/> 
15206           <param name=
"label" type=
"String" default=
""/> 
15207           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
15208           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
15209           <param name=
"style" type=
"long" default=
"0"/> 
15210           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
15211           <param name=
"name" type=
"String" default=
"wxPyToggleButtonNameStr"/> 
15214       <constructor name=
"PreToggleButton" overloaded=
"no"> 
15215         <autodoc>PreToggleButton() -
> ToggleButton
</autodoc> 
15217       <method name=
"Create" type=
"bool" overloaded=
"no"> 
15218         <autodoc>Create(Window parent, int id, String label, Point pos=DefaultPosition, 
 
15219     Size size=DefaultSize, long style=
0, 
 
15220     Validator validator=DefaultValidator, String name=ToggleButtonNameStr) -
> bool
</autodoc> 
15222           <param name=
"parent" type=
"Window" default=
""/> 
15223           <param name=
"id" type=
"int" default=
""/> 
15224           <param name=
"label" type=
"String" default=
""/> 
15225           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
15226           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
15227           <param name=
"style" type=
"long" default=
"0"/> 
15228           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
15229           <param name=
"name" type=
"String" default=
"wxPyToggleButtonNameStr"/> 
15232       <method name=
"SetValue" type=
"" overloaded=
"no"> 
15233         <autodoc>SetValue(bool value)
</autodoc> 
15235           <param name=
"value" type=
"bool" default=
""/> 
15238       <method name=
"GetValue" type=
"bool" overloaded=
"no"> 
15239         <autodoc>GetValue() -
> bool
</autodoc> 
15241       <method name=
"SetLabel" type=
"" overloaded=
"no"> 
15242         <autodoc>SetLabel(String label)
</autodoc> 
15244           <param name=
"label" type=
"String" default=
""/> 
15249 #---------------------------------------------------------------------------
 
15251     <class name=
"BookCtrl" oldname=
"wxBookCtrl" module=
"controls"> 
15252       <baseclass name=
"Control"/> 
15253       <method name=
"GetPageCount" type=
"size_t" overloaded=
"no"> 
15254         <autodoc>GetPageCount() -
> size_t
</autodoc> 
15256       <method name=
"GetPage" type=
"Window" overloaded=
"no"> 
15257         <autodoc>GetPage(size_t n) -
> Window
</autodoc> 
15259           <param name=
"n" type=
"size_t" default=
""/> 
15262       <method name=
"GetSelection" type=
"int" overloaded=
"no"> 
15263         <autodoc>GetSelection() -
> int
</autodoc> 
15265       <method name=
"SetPageText" type=
"bool" overloaded=
"no"> 
15266         <autodoc>SetPageText(size_t n, String strText) -
> bool
</autodoc> 
15268           <param name=
"n" type=
"size_t" default=
""/> 
15269           <param name=
"strText" type=
"String" default=
""/> 
15272       <method name=
"GetPageText" type=
"String" overloaded=
"no"> 
15273         <autodoc>GetPageText(size_t n) -
> String
</autodoc> 
15275           <param name=
"n" type=
"size_t" default=
""/> 
15278       <method name=
"SetImageList" type=
"" overloaded=
"no"> 
15279         <autodoc>SetImageList(ImageList imageList)
</autodoc> 
15281           <param name=
"imageList" type=
"ImageList" default=
""/> 
15284       <method name=
"AssignImageList" type=
"" overloaded=
"no"> 
15285         <autodoc>AssignImageList(ImageList imageList)
</autodoc> 
15287           <param name=
"imageList" type=
"ImageList" default=
""/> 
15290       <method name=
"GetImageList" type=
"ImageList" overloaded=
"no"> 
15291         <autodoc>GetImageList() -
> ImageList
</autodoc> 
15293       <method name=
"GetPageImage" type=
"int" overloaded=
"no"> 
15294         <autodoc>GetPageImage(size_t n) -
> int
</autodoc> 
15296           <param name=
"n" type=
"size_t" default=
""/> 
15299       <method name=
"SetPageImage" type=
"bool" overloaded=
"no"> 
15300         <autodoc>SetPageImage(size_t n, int imageId) -
> bool
</autodoc> 
15302           <param name=
"n" type=
"size_t" default=
""/> 
15303           <param name=
"imageId" type=
"int" default=
""/> 
15306       <method name=
"SetPageSize" type=
"" overloaded=
"no"> 
15307         <autodoc>SetPageSize(Size size)
</autodoc> 
15309           <param name=
"size" type=
"Size" default=
""/> 
15312       <method name=
"CalcSizeFromPage" type=
"Size" overloaded=
"no"> 
15313         <autodoc>CalcSizeFromPage(Size sizePage) -
> Size
</autodoc> 
15315           <param name=
"sizePage" type=
"Size" default=
""/> 
15318       <method name=
"DeletePage" type=
"bool" overloaded=
"no"> 
15319         <autodoc>DeletePage(size_t n) -
> bool
</autodoc> 
15321           <param name=
"n" type=
"size_t" default=
""/> 
15324       <method name=
"RemovePage" type=
"bool" overloaded=
"no"> 
15325         <autodoc>RemovePage(size_t n) -
> bool
</autodoc> 
15327           <param name=
"n" type=
"size_t" default=
""/> 
15330       <method name=
"DeleteAllPages" type=
"bool" overloaded=
"no"> 
15331         <autodoc>DeleteAllPages() -
> bool
</autodoc> 
15333       <method name=
"AddPage" type=
"bool" overloaded=
"no"> 
15334         <autodoc>AddPage(Window page, String text, bool select=False, int imageId=-
1) -
> bool
</autodoc> 
15336           <param name=
"page" type=
"Window" default=
""/> 
15337           <param name=
"text" type=
"String" default=
""/> 
15338           <param name=
"select" type=
"bool" default=
"False"/> 
15339           <param name=
"imageId" type=
"int" default=
"-1"/> 
15342       <method name=
"InsertPage" type=
"bool" overloaded=
"no"> 
15343         <autodoc>InsertPage(size_t n, Window page, String text, bool select=False, 
 
15344     int imageId=-
1) -
> bool
</autodoc> 
15346           <param name=
"n" type=
"size_t" default=
""/> 
15347           <param name=
"page" type=
"Window" default=
""/> 
15348           <param name=
"text" type=
"String" default=
""/> 
15349           <param name=
"select" type=
"bool" default=
"False"/> 
15350           <param name=
"imageId" type=
"int" default=
"-1"/> 
15353       <method name=
"SetSelection" type=
"int" overloaded=
"no"> 
15354         <autodoc>SetSelection(size_t n) -
> int
</autodoc> 
15356           <param name=
"n" type=
"size_t" default=
""/> 
15359       <method name=
"AdvanceSelection" type=
"" overloaded=
"no"> 
15360         <autodoc>AdvanceSelection(bool forward=True)
</autodoc> 
15362           <param name=
"forward" type=
"bool" default=
"True"/> 
15366     <class name=
"BookCtrlEvent" oldname=
"wxBookCtrlEvent" module=
"controls"> 
15367       <baseclass name=
"NotifyEvent"/> 
15368       <constructor name=
"BookCtrlEvent" overloaded=
"no"> 
15369         <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int id=
0, int nSel=-
1, 
 
15370     int nOldSel=-
1) -
> BookCtrlEvent
</autodoc> 
15372           <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/> 
15373           <param name=
"id" type=
"int" default=
"0"/> 
15374           <param name=
"nSel" type=
"int" default=
"-1"/> 
15375           <param name=
"nOldSel" type=
"int" default=
"-1"/> 
15378       <method name=
"GetSelection" type=
"int" overloaded=
"no"> 
15379         <autodoc>GetSelection() -
> int
</autodoc> 
15381       <method name=
"SetSelection" type=
"" overloaded=
"no"> 
15382         <autodoc>SetSelection(int nSel)
</autodoc> 
15384           <param name=
"nSel" type=
"int" default=
""/> 
15387       <method name=
"GetOldSelection" type=
"int" overloaded=
"no"> 
15388         <autodoc>GetOldSelection() -
> int
</autodoc> 
15390       <method name=
"SetOldSelection" type=
"" overloaded=
"no"> 
15391         <autodoc>SetOldSelection(int nOldSel)
</autodoc> 
15393           <param name=
"nOldSel" type=
"int" default=
""/> 
15398 #---------------------------------------------------------------------------
 
15400     <class name=
"Notebook" oldname=
"wxNotebook" module=
"controls"> 
15401       <baseclass name=
"BookCtrl"/> 
15402       <constructor name=
"Notebook" overloaded=
"no"> 
15403         <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
15404     long style=
0, String name=NOTEBOOK_NAME) -
> Notebook
</autodoc> 
15406           <param name=
"parent" type=
"Window" default=
""/> 
15407           <param name=
"id" type=
"int" default=
""/> 
15408           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
15409           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
15410           <param name=
"style" type=
"long" default=
"0"/> 
15411           <param name=
"name" type=
"String" default=
"wxPyNOTEBOOK_NAME"/> 
15414       <constructor name=
"PreNotebook" overloaded=
"no"> 
15415         <autodoc>PreNotebook() -
> Notebook
</autodoc> 
15417       <method name=
"Create" type=
"bool" overloaded=
"no"> 
15418         <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
15419     long style=
0, String name=NOTEBOOK_NAME) -
> bool
</autodoc> 
15421           <param name=
"parent" type=
"Window" default=
""/> 
15422           <param name=
"id" type=
"int" default=
""/> 
15423           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
15424           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
15425           <param name=
"style" type=
"long" default=
"0"/> 
15426           <param name=
"name" type=
"String" default=
"wxPyNOTEBOOK_NAME"/> 
15429       <method name=
"GetRowCount" type=
"int" overloaded=
"no"> 
15430         <autodoc>GetRowCount() -
> int
</autodoc> 
15432       <method name=
"SetPadding" type=
"" overloaded=
"no"> 
15433         <autodoc>SetPadding(Size padding)
</autodoc> 
15435           <param name=
"padding" type=
"Size" default=
""/> 
15438       <method name=
"SetTabSize" type=
"" overloaded=
"no"> 
15439         <autodoc>SetTabSize(Size sz)
</autodoc> 
15441           <param name=
"sz" type=
"Size" default=
""/> 
15444       <method name=
"HitTest" type=
"int" overloaded=
"no"> 
15445         <autodoc>HitTest(Point pt) -
> (tab, where)
</autodoc> 
15446         <docstring>Returns the tab which is hit, and flags indicating where using wxNB_HITTEST_ flags.
</docstring> 
15448           <param name=
"pt" type=
"Point" default=
""/> 
15449           <param name=
"OUTPUT" type=
"long" default=
""/> 
15452       <method name=
"CalcSizeFromPage" type=
"Size" overloaded=
"no"> 
15453         <autodoc>CalcSizeFromPage(Size sizePage) -
> Size
</autodoc> 
15455           <param name=
"sizePage" type=
"Size" default=
""/> 
15459     <class name=
"NotebookEvent" oldname=
"wxNotebookEvent" module=
"controls"> 
15460       <baseclass name=
"BookCtrlEvent"/> 
15461       <constructor name=
"NotebookEvent" overloaded=
"no"> 
15462         <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int id=
0, int nSel=-
1, 
 
15463     int nOldSel=-
1) -
> NotebookEvent
</autodoc> 
15465           <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/> 
15466           <param name=
"id" type=
"int" default=
"0"/> 
15467           <param name=
"nSel" type=
"int" default=
"-1"/> 
15468           <param name=
"nOldSel" type=
"int" default=
"-1"/> 
15473     # wxNotebook events
 
15474     EVT_NOTEBOOK_PAGE_CHANGED  = wx.PyEventBinder( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, 
1 )
 
15475     EVT_NOTEBOOK_PAGE_CHANGING = wx.PyEventBinder( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, 
1 )
 
15478 #----------------------------------------------------------------------------
 
15480 class NotebookPage(wx.Panel):
 
15482     There is an old (and apparently unsolvable) bug when placing a
 
15483     window with a nonstandard background colour in a wxNotebook on
 
15484     wxGTK, as the notbooks's background colour would always be used
 
15485     when the window is refreshed.  The solution is to place a panel in
 
15486     the notbook and the coloured window on the panel, sized to cover
 
15487     the panel.  This simple class does that for you, just put an
 
15488     instance of this in the notebook and make your regular window a
 
15489     child of this one and it will handle the resize for you.
 
15491     def __init__(self, parent, id=-
1,
 
15492                  pos=wx.DefaultPosition, size=wx.DefaultSize,
 
15493                  style=wx.TAB_TRAVERSAL, 
name="panel"):
 
15494         wx.Panel.__init__(self, parent, id, pos, size, style, name)
 
15496         EVT_SIZE(self, self.OnSize)
 
15498     def OnSize(self, evt):
 
15499         if self.child is None:
 
15500             children = self.GetChildren()
 
15502                 self.child = children[
0]
 
15504             self.child.SetPosition((
0,
0))
 
15505             self.child.SetSize(self.GetSize())
 
15509 #---------------------------------------------------------------------------
 
15511     <class name=
"Listbook" oldname=
"wxListbook" module=
"controls"> 
15512       <baseclass name=
"BookCtrl"/> 
15513       <constructor name=
"Listbook" overloaded=
"no"> 
15514         <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
15515     long style=
0, String name=EmptyString) -
> Listbook
</autodoc> 
15517           <param name=
"parent" type=
"Window" default=
""/> 
15518           <param name=
"id" type=
"int" default=
""/> 
15519           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
15520           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
15521           <param name=
"style" type=
"long" default=
"0"/> 
15522           <param name=
"name" type=
"String" default=
"wxPyEmptyString"/> 
15525       <constructor name=
"PreListbook" overloaded=
"no"> 
15526         <autodoc>PreListbook() -
> Listbook
</autodoc> 
15528       <method name=
"Create" type=
"bool" overloaded=
"no"> 
15529         <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
15530     long style=
0, String name=EmptyString) -
> bool
</autodoc> 
15532           <param name=
"parent" type=
"Window" default=
""/> 
15533           <param name=
"id" type=
"int" default=
""/> 
15534           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
15535           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
15536           <param name=
"style" type=
"long" default=
"0"/> 
15537           <param name=
"name" type=
"String" default=
"wxPyEmptyString"/> 
15540       <method name=
"IsVertical" type=
"bool" overloaded=
"no"> 
15541         <autodoc>IsVertical() -
> bool
</autodoc> 
15544     <class name=
"ListbookEvent" oldname=
"wxListbookEvent" module=
"controls"> 
15545       <baseclass name=
"BookCtrlEvent"/> 
15546       <constructor name=
"ListbookEvent" overloaded=
"no"> 
15547         <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int id=
0, int nSel=-
1, 
 
15548     int nOldSel=-
1) -
> ListbookEvent
</autodoc> 
15550           <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/> 
15551           <param name=
"id" type=
"int" default=
"0"/> 
15552           <param name=
"nSel" type=
"int" default=
"-1"/> 
15553           <param name=
"nOldSel" type=
"int" default=
"-1"/> 
15558     EVT_LISTBOOK_PAGE_CHANGED  = wx.PyEventBinder( wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED, 
1 )
 
15559     EVT_LISTBOOK_PAGE_CHANGING = wx.PyEventBinder( wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING, 
1 )
 
15562 #---------------------------------------------------------------------------
 
15564     <class name=
"BookCtrlSizer" oldname=
"wxBookCtrlSizer" module=
"controls"> 
15565       <baseclass name=
"Sizer"/> 
15566       <constructor name=
"BookCtrlSizer" overloaded=
"no"> 
15567         <autodoc>__init__(BookCtrl nb) -
> BookCtrlSizer
</autodoc> 
15569           <param name=
"nb" type=
"BookCtrl" default=
""/> 
15572       <method name=
"RecalcSizes" type=
"" overloaded=
"no"> 
15573         <autodoc>RecalcSizes()
</autodoc> 
15575       <method name=
"CalcMin" type=
"Size" overloaded=
"no"> 
15576         <autodoc>CalcMin() -
> Size
</autodoc> 
15578       <method name=
"GetControl" type=
"BookCtrl" overloaded=
"no"> 
15579         <autodoc>GetControl() -
> BookCtrl
</autodoc> 
15582     <class name=
"NotebookSizer" oldname=
"wxNotebookSizer" module=
"controls"> 
15583       <baseclass name=
"Sizer"/> 
15584       <constructor name=
"NotebookSizer" overloaded=
"no"> 
15585         <autodoc>__init__(Notebook nb) -
> NotebookSizer
</autodoc> 
15587           <param name=
"nb" type=
"Notebook" default=
""/> 
15590       <method name=
"RecalcSizes" type=
"" overloaded=
"no"> 
15591         <autodoc>RecalcSizes()
</autodoc> 
15593       <method name=
"CalcMin" type=
"Size" overloaded=
"no"> 
15594         <autodoc>CalcMin() -
> Size
</autodoc> 
15596       <method name=
"GetNotebook" type=
"Notebook" overloaded=
"no"> 
15597         <autodoc>GetNotebook() -
> Notebook
</autodoc> 
15601 #---------------------------------------------------------------------------
 
15603     <class name=
"ToolBarToolBase" oldname=
"wxToolBarToolBase" module=
"controls"> 
15604       <baseclass name=
"Object"/> 
15605       <method name=
"GetId" type=
"int" overloaded=
"no"> 
15606         <autodoc>GetId() -
> int
</autodoc> 
15608       <method name=
"GetControl" type=
"Control" overloaded=
"no"> 
15609         <autodoc>GetControl() -
> Control
</autodoc> 
15611       <method name=
"GetToolBar" type=
"wxToolBarBase" overloaded=
"no"> 
15612         <autodoc>GetToolBar() -
> ToolBarBase
</autodoc> 
15614       <method name=
"IsButton" type=
"int" overloaded=
"no"> 
15615         <autodoc>IsButton() -
> int
</autodoc> 
15617       <method name=
"IsControl" type=
"int" overloaded=
"no"> 
15618         <autodoc>IsControl() -
> int
</autodoc> 
15620       <method name=
"IsSeparator" type=
"int" overloaded=
"no"> 
15621         <autodoc>IsSeparator() -
> int
</autodoc> 
15623       <method name=
"GetStyle" type=
"int" overloaded=
"no"> 
15624         <autodoc>GetStyle() -
> int
</autodoc> 
15626       <method name=
"GetKind" type=
"wxItemKind" overloaded=
"no"> 
15627         <autodoc>GetKind() -
> int
</autodoc> 
15629       <method name=
"IsEnabled" type=
"bool" overloaded=
"no"> 
15630         <autodoc>IsEnabled() -
> bool
</autodoc> 
15632       <method name=
"IsToggled" type=
"bool" overloaded=
"no"> 
15633         <autodoc>IsToggled() -
> bool
</autodoc> 
15635       <method name=
"CanBeToggled" type=
"bool" overloaded=
"no"> 
15636         <autodoc>CanBeToggled() -
> bool
</autodoc> 
15638       <method name=
"GetNormalBitmap" type=
"Bitmap" overloaded=
"no"> 
15639         <autodoc>GetNormalBitmap() -
> Bitmap
</autodoc> 
15641       <method name=
"GetDisabledBitmap" type=
"Bitmap" overloaded=
"no"> 
15642         <autodoc>GetDisabledBitmap() -
> Bitmap
</autodoc> 
15644       <method name=
"GetBitmap" type=
"Bitmap" overloaded=
"no"> 
15645         <autodoc>GetBitmap() -
> Bitmap
</autodoc> 
15647       <method name=
"GetLabel" type=
"String" overloaded=
"no"> 
15648         <autodoc>GetLabel() -
> String
</autodoc> 
15650       <method name=
"GetShortHelp" type=
"String" overloaded=
"no"> 
15651         <autodoc>GetShortHelp() -
> String
</autodoc> 
15653       <method name=
"GetLongHelp" type=
"String" overloaded=
"no"> 
15654         <autodoc>GetLongHelp() -
> String
</autodoc> 
15656       <method name=
"Enable" type=
"bool" overloaded=
"no"> 
15657         <autodoc>Enable(bool enable) -
> bool
</autodoc> 
15659           <param name=
"enable" type=
"bool" default=
""/> 
15662       <method name=
"Toggle" type=
"" overloaded=
"no"> 
15663         <autodoc>Toggle()
</autodoc> 
15665       <method name=
"SetToggle" type=
"bool" overloaded=
"no"> 
15666         <autodoc>SetToggle(bool toggle) -
> bool
</autodoc> 
15668           <param name=
"toggle" type=
"bool" default=
""/> 
15671       <method name=
"SetShortHelp" type=
"bool" overloaded=
"no"> 
15672         <autodoc>SetShortHelp(String help) -
> bool
</autodoc> 
15674           <param name=
"help" type=
"String" default=
""/> 
15677       <method name=
"SetLongHelp" type=
"bool" overloaded=
"no"> 
15678         <autodoc>SetLongHelp(String help) -
> bool
</autodoc> 
15680           <param name=
"help" type=
"String" default=
""/> 
15683       <method name=
"SetNormalBitmap" type=
"" overloaded=
"no"> 
15684         <autodoc>SetNormalBitmap(Bitmap bmp)
</autodoc> 
15686           <param name=
"bmp" type=
"Bitmap" default=
""/> 
15689       <method name=
"SetDisabledBitmap" type=
"" overloaded=
"no"> 
15690         <autodoc>SetDisabledBitmap(Bitmap bmp)
</autodoc> 
15692           <param name=
"bmp" type=
"Bitmap" default=
""/> 
15695       <method name=
"SetLabel" type=
"" overloaded=
"no"> 
15696         <autodoc>SetLabel(String label)
</autodoc> 
15698           <param name=
"label" type=
"String" default=
""/> 
15701       <method name=
"Detach" type=
"" overloaded=
"no"> 
15702         <autodoc>Detach()
</autodoc> 
15704       <method name=
"Attach" type=
"" overloaded=
"no"> 
15705         <autodoc>Attach(ToolBarBase tbar)
</autodoc> 
15707           <param name=
"tbar" type=
"wxToolBarBase" default=
""/> 
15710       <method name=
"GetClientData" type=
"PyObject" overloaded=
"no"> 
15711         <autodoc>GetClientData() -
> PyObject
</autodoc> 
15713       <method name=
"SetClientData" type=
"" overloaded=
"no"> 
15714         <autodoc>SetClientData(PyObject clientData)
</autodoc> 
15716           <param name=
"clientData" type=
"PyObject" default=
""/> 
15720     <class name=
"ToolBarBase" oldname=
"wxToolBarBase" module=
"controls"> 
15721       <baseclass name=
"Control"/> 
15722       <method name=
"DoAddTool" type=
"ToolBarToolBase" overloaded=
"no"> 
15723         <autodoc>DoAddTool(int id, String label, Bitmap bitmap, Bitmap bmpDisabled=wxNullBitmap, 
 
15724     int kind=ITEM_NORMAL, String shortHelp=EmptyString, 
 
15725     String longHelp=EmptyString, 
 
15726     PyObject clientData=None) -
> ToolBarToolBase
</autodoc> 
15728           <param name=
"id" type=
"int" default=
""/> 
15729           <param name=
"label" type=
"String" default=
""/> 
15730           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
15731           <param name=
"bmpDisabled" type=
"Bitmap" default=
"wxNullBitmap"/> 
15732           <param name=
"kind" type=
"wxItemKind" default=
"wxITEM_NORMAL"/> 
15733           <param name=
"shortHelp" type=
"String" default=
"wxPyEmptyString"/> 
15734           <param name=
"longHelp" type=
"String" default=
"wxPyEmptyString"/> 
15735           <param name=
"clientData" type=
"PyObject" default=
"NULL"/> 
15738       <method name=
"DoInsertTool" type=
"ToolBarToolBase" overloaded=
"no"> 
15739         <autodoc>DoInsertTool(size_t pos, int id, String label, Bitmap bitmap, Bitmap bmpDisabled=wxNullBitmap, 
 
15740     int kind=ITEM_NORMAL, 
 
15741     String shortHelp=EmptyString, String longHelp=EmptyString, 
 
15742     PyObject clientData=None) -
> ToolBarToolBase
</autodoc> 
15744           <param name=
"pos" type=
"size_t" default=
""/> 
15745           <param name=
"id" type=
"int" default=
""/> 
15746           <param name=
"label" type=
"String" default=
""/> 
15747           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
15748           <param name=
"bmpDisabled" type=
"Bitmap" default=
"wxNullBitmap"/> 
15749           <param name=
"kind" type=
"wxItemKind" default=
"wxITEM_NORMAL"/> 
15750           <param name=
"shortHelp" type=
"String" default=
"wxPyEmptyString"/> 
15751           <param name=
"longHelp" type=
"String" default=
"wxPyEmptyString"/> 
15752           <param name=
"clientData" type=
"PyObject" default=
"NULL"/> 
15755       <method name=
"AddToolItem" type=
"ToolBarToolBase" overloaded=
"no"> 
15756         <autodoc>AddToolItem(ToolBarToolBase tool) -
> ToolBarToolBase
</autodoc> 
15758           <param name=
"tool" type=
"ToolBarToolBase" default=
""/> 
15761       <method name=
"InsertToolItem" type=
"ToolBarToolBase" overloaded=
"no"> 
15762         <autodoc>InsertToolItem(size_t pos, ToolBarToolBase tool) -
> ToolBarToolBase
</autodoc> 
15764           <param name=
"pos" type=
"size_t" default=
""/> 
15765           <param name=
"tool" type=
"ToolBarToolBase" default=
""/> 
15768       <method name=
"AddControl" type=
"ToolBarToolBase" overloaded=
"no"> 
15769         <autodoc>AddControl(Control control) -
> ToolBarToolBase
</autodoc> 
15771           <param name=
"control" type=
"Control" default=
""/> 
15774       <method name=
"InsertControl" type=
"ToolBarToolBase" overloaded=
"no"> 
15775         <autodoc>InsertControl(size_t pos, Control control) -
> ToolBarToolBase
</autodoc> 
15777           <param name=
"pos" type=
"size_t" default=
""/> 
15778           <param name=
"control" type=
"Control" default=
""/> 
15781       <method name=
"FindControl" type=
"Control" overloaded=
"no"> 
15782         <autodoc>FindControl(int id) -
> Control
</autodoc> 
15784           <param name=
"id" type=
"int" default=
""/> 
15787       <method name=
"AddSeparator" type=
"ToolBarToolBase" overloaded=
"no"> 
15788         <autodoc>AddSeparator() -
> ToolBarToolBase
</autodoc> 
15790       <method name=
"InsertSeparator" type=
"ToolBarToolBase" overloaded=
"no"> 
15791         <autodoc>InsertSeparator(size_t pos) -
> ToolBarToolBase
</autodoc> 
15793           <param name=
"pos" type=
"size_t" default=
""/> 
15796       <method name=
"RemoveTool" type=
"ToolBarToolBase" overloaded=
"no"> 
15797         <autodoc>RemoveTool(int id) -
> ToolBarToolBase
</autodoc> 
15799           <param name=
"id" type=
"int" default=
""/> 
15802       <method name=
"DeleteToolByPos" type=
"bool" overloaded=
"no"> 
15803         <autodoc>DeleteToolByPos(size_t pos) -
> bool
</autodoc> 
15805           <param name=
"pos" type=
"size_t" default=
""/> 
15808       <method name=
"DeleteTool" type=
"bool" overloaded=
"no"> 
15809         <autodoc>DeleteTool(int id) -
> bool
</autodoc> 
15811           <param name=
"id" type=
"int" default=
""/> 
15814       <method name=
"ClearTools" type=
"" overloaded=
"no"> 
15815         <autodoc>ClearTools()
</autodoc> 
15817       <method name=
"Realize" type=
"bool" overloaded=
"no"> 
15818         <autodoc>Realize() -
> bool
</autodoc> 
15820       <method name=
"EnableTool" type=
"" overloaded=
"no"> 
15821         <autodoc>EnableTool(int id, bool enable)
</autodoc> 
15823           <param name=
"id" type=
"int" default=
""/> 
15824           <param name=
"enable" type=
"bool" default=
""/> 
15827       <method name=
"ToggleTool" type=
"" overloaded=
"no"> 
15828         <autodoc>ToggleTool(int id, bool toggle)
</autodoc> 
15830           <param name=
"id" type=
"int" default=
""/> 
15831           <param name=
"toggle" type=
"bool" default=
""/> 
15834       <method name=
"SetToggle" type=
"" overloaded=
"no"> 
15835         <autodoc>SetToggle(int id, bool toggle)
</autodoc> 
15837           <param name=
"id" type=
"int" default=
""/> 
15838           <param name=
"toggle" type=
"bool" default=
""/> 
15841       <method name=
"GetToolClientData" type=
"PyObject" overloaded=
"no"> 
15842         <autodoc>GetToolClientData(int id) -
> PyObject
</autodoc> 
15844           <param name=
"id" type=
"int" default=
""/> 
15847       <method name=
"SetToolClientData" type=
"" overloaded=
"no"> 
15848         <autodoc>SetToolClientData(int id, PyObject clientData)
</autodoc> 
15850           <param name=
"id" type=
"int" default=
""/> 
15851           <param name=
"clientData" type=
"PyObject" default=
""/> 
15854       <method name=
"GetToolPos" type=
"int" overloaded=
"no"> 
15855         <autodoc>GetToolPos(int id) -
> int
</autodoc> 
15857           <param name=
"id" type=
"int" default=
""/> 
15860       <method name=
"GetToolState" type=
"bool" overloaded=
"no"> 
15861         <autodoc>GetToolState(int id) -
> bool
</autodoc> 
15863           <param name=
"id" type=
"int" default=
""/> 
15866       <method name=
"GetToolEnabled" type=
"bool" overloaded=
"no"> 
15867         <autodoc>GetToolEnabled(int id) -
> bool
</autodoc> 
15869           <param name=
"id" type=
"int" default=
""/> 
15872       <method name=
"SetToolShortHelp" type=
"" overloaded=
"no"> 
15873         <autodoc>SetToolShortHelp(int id, String helpString)
</autodoc> 
15875           <param name=
"id" type=
"int" default=
""/> 
15876           <param name=
"helpString" type=
"String" default=
""/> 
15879       <method name=
"GetToolShortHelp" type=
"String" overloaded=
"no"> 
15880         <autodoc>GetToolShortHelp(int id) -
> String
</autodoc> 
15882           <param name=
"id" type=
"int" default=
""/> 
15885       <method name=
"SetToolLongHelp" type=
"" overloaded=
"no"> 
15886         <autodoc>SetToolLongHelp(int id, String helpString)
</autodoc> 
15888           <param name=
"id" type=
"int" default=
""/> 
15889           <param name=
"helpString" type=
"String" default=
""/> 
15892       <method name=
"GetToolLongHelp" type=
"String" overloaded=
"no"> 
15893         <autodoc>GetToolLongHelp(int id) -
> String
</autodoc> 
15895           <param name=
"id" type=
"int" default=
""/> 
15898       <method name=
"SetMarginsXY" type=
"" overloaded=
"no"> 
15899         <autodoc>SetMarginsXY(int x, int y)
</autodoc> 
15901           <param name=
"x" type=
"int" default=
""/> 
15902           <param name=
"y" type=
"int" default=
""/> 
15905       <method name=
"SetMargins" type=
"" overloaded=
"no"> 
15906         <autodoc>SetMargins(Size size)
</autodoc> 
15908           <param name=
"size" type=
"Size" default=
""/> 
15911       <method name=
"SetToolPacking" type=
"" overloaded=
"no"> 
15912         <autodoc>SetToolPacking(int packing)
</autodoc> 
15914           <param name=
"packing" type=
"int" default=
""/> 
15917       <method name=
"SetToolSeparation" type=
"" overloaded=
"no"> 
15918         <autodoc>SetToolSeparation(int separation)
</autodoc> 
15920           <param name=
"separation" type=
"int" default=
""/> 
15923       <method name=
"GetToolMargins" type=
"Size" overloaded=
"no"> 
15924         <autodoc>GetToolMargins() -
> Size
</autodoc> 
15926       <method name=
"GetMargins" type=
"Size" overloaded=
"no"> 
15927         <autodoc>GetMargins() -
> Size
</autodoc> 
15929       <method name=
"GetToolPacking" type=
"int" overloaded=
"no"> 
15930         <autodoc>GetToolPacking() -
> int
</autodoc> 
15932       <method name=
"GetToolSeparation" type=
"int" overloaded=
"no"> 
15933         <autodoc>GetToolSeparation() -
> int
</autodoc> 
15935       <method name=
"SetRows" type=
"" overloaded=
"no"> 
15936         <autodoc>SetRows(int nRows)
</autodoc> 
15938           <param name=
"nRows" type=
"int" default=
""/> 
15941       <method name=
"SetMaxRowsCols" type=
"" overloaded=
"no"> 
15942         <autodoc>SetMaxRowsCols(int rows, int cols)
</autodoc> 
15944           <param name=
"rows" type=
"int" default=
""/> 
15945           <param name=
"cols" type=
"int" default=
""/> 
15948       <method name=
"GetMaxRows" type=
"int" overloaded=
"no"> 
15949         <autodoc>GetMaxRows() -
> int
</autodoc> 
15951       <method name=
"GetMaxCols" type=
"int" overloaded=
"no"> 
15952         <autodoc>GetMaxCols() -
> int
</autodoc> 
15954       <method name=
"SetToolBitmapSize" type=
"" overloaded=
"no"> 
15955         <autodoc>SetToolBitmapSize(Size size)
</autodoc> 
15957           <param name=
"size" type=
"Size" default=
""/> 
15960       <method name=
"GetToolBitmapSize" type=
"Size" overloaded=
"no"> 
15961         <autodoc>GetToolBitmapSize() -
> Size
</autodoc> 
15963       <method name=
"GetToolSize" type=
"Size" overloaded=
"no"> 
15964         <autodoc>GetToolSize() -
> Size
</autodoc> 
15966       <method name=
"FindToolForPosition" type=
"ToolBarToolBase" overloaded=
"no"> 
15967         <autodoc>FindToolForPosition(int x, int y) -
> ToolBarToolBase
</autodoc> 
15969           <param name=
"x" type=
"int" default=
""/> 
15970           <param name=
"y" type=
"int" default=
""/> 
15973       <method name=
"FindById" type=
"ToolBarToolBase" overloaded=
"no"> 
15974         <autodoc>FindById(int toolid) -
> ToolBarToolBase
</autodoc> 
15976           <param name=
"toolid" type=
"int" default=
""/> 
15979       <method name=
"IsVertical" type=
"bool" overloaded=
"no"> 
15980         <autodoc>IsVertical() -
> bool
</autodoc> 
15983     <class name=
"ToolBar" oldname=
"wxToolBar" module=
"controls"> 
15984       <baseclass name=
"ToolBarBase"/> 
15985       <constructor name=
"ToolBar" overloaded=
"no"> 
15986         <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
15987     long style=wxNO_BORDER|wxTB_HORIZONTAL, 
 
15988     String name=wxPyToolBarNameStr) -
> ToolBar
</autodoc> 
15990           <param name=
"parent" type=
"Window" default=
""/> 
15991           <param name=
"id" type=
"int" default=
""/> 
15992           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
15993           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
15994           <param name=
"style" type=
"long" default=
"wxNO_BORDER|wxTB_HORIZONTAL"/> 
15995           <param name=
"name" type=
"String" default=
"wxPyToolBarNameStr"/> 
15998       <constructor name=
"PreToolBar" overloaded=
"no"> 
15999         <autodoc>PreToolBar() -
> ToolBar
</autodoc> 
16001       <method name=
"Create" type=
"bool" overloaded=
"no"> 
16002         <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
16003     long style=wxNO_BORDER|wxTB_HORIZONTAL, 
 
16004     String name=wxPyToolBarNameStr) -
> bool
</autodoc> 
16006           <param name=
"parent" type=
"Window" default=
""/> 
16007           <param name=
"id" type=
"int" default=
""/> 
16008           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
16009           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
16010           <param name=
"style" type=
"long" default=
"wxNO_BORDER|wxTB_HORIZONTAL"/> 
16011           <param name=
"name" type=
"String" default=
"wxPyToolBarNameStr"/> 
16014       <method name=
"FindToolForPosition" type=
"ToolBarToolBase" overloaded=
"no"> 
16015         <autodoc>FindToolForPosition(int x, int y) -
> ToolBarToolBase
</autodoc> 
16017           <param name=
"x" type=
"int" default=
""/> 
16018           <param name=
"y" type=
"int" default=
""/> 
16023 #---------------------------------------------------------------------------
 
16026 #---------------------------------------------------------------------------
 
16028     <class name=
"ListItemAttr" oldname=
"wxListItemAttr" module=
"controls"> 
16029       <constructor name=
"ListItemAttr" overloaded=
"no"> 
16030         <autodoc>__init__(Colour colText=wxNullColour, Colour colBack=wxNullColour, 
 
16031     Font font=wxNullFont) -
> ListItemAttr
</autodoc> 
16033           <param name=
"colText" type=
"Colour" default=
"wxNullColour"/> 
16034           <param name=
"colBack" type=
"Colour" default=
"wxNullColour"/> 
16035           <param name=
"font" type=
"Font" default=
"wxNullFont"/> 
16038       <method name=
"SetTextColour" type=
"" overloaded=
"no"> 
16039         <autodoc>SetTextColour(Colour colText)
</autodoc> 
16041           <param name=
"colText" type=
"Colour" default=
""/> 
16044       <method name=
"SetBackgroundColour" type=
"" overloaded=
"no"> 
16045         <autodoc>SetBackgroundColour(Colour colBack)
</autodoc> 
16047           <param name=
"colBack" type=
"Colour" default=
""/> 
16050       <method name=
"SetFont" type=
"" overloaded=
"no"> 
16051         <autodoc>SetFont(Font font)
</autodoc> 
16053           <param name=
"font" type=
"Font" default=
""/> 
16056       <method name=
"HasTextColour" type=
"bool" overloaded=
"no"> 
16057         <autodoc>HasTextColour() -
> bool
</autodoc> 
16059       <method name=
"HasBackgroundColour" type=
"bool" overloaded=
"no"> 
16060         <autodoc>HasBackgroundColour() -
> bool
</autodoc> 
16062       <method name=
"HasFont" type=
"bool" overloaded=
"no"> 
16063         <autodoc>HasFont() -
> bool
</autodoc> 
16065       <method name=
"GetTextColour" type=
"Colour" overloaded=
"no"> 
16066         <autodoc>GetTextColour() -
> Colour
</autodoc> 
16068       <method name=
"GetBackgroundColour" type=
"Colour" overloaded=
"no"> 
16069         <autodoc>GetBackgroundColour() -
> Colour
</autodoc> 
16071       <method name=
"GetFont" type=
"Font" overloaded=
"no"> 
16072         <autodoc>GetFont() -
> Font
</autodoc> 
16074       <method name=
"Destroy" type=
"" overloaded=
"no"> 
16075         <autodoc>Destroy()
</autodoc> 
16079 #---------------------------------------------------------------------------
 
16081     <class name=
"ListItem" oldname=
"wxListItem" module=
"controls"> 
16082       <baseclass name=
"Object"/> 
16083       <constructor name=
"ListItem" overloaded=
"no"> 
16084         <autodoc>__init__() -
> ListItem
</autodoc> 
16086       <destructor name=
"~wxListItem" overloaded=
"no"> 
16087         <autodoc>__del__()
</autodoc> 
16089       <method name=
"Clear" type=
"" overloaded=
"no"> 
16090         <autodoc>Clear()
</autodoc> 
16092       <method name=
"ClearAttributes" type=
"" overloaded=
"no"> 
16093         <autodoc>ClearAttributes()
</autodoc> 
16095       <method name=
"SetMask" type=
"" overloaded=
"no"> 
16096         <autodoc>SetMask(long mask)
</autodoc> 
16098           <param name=
"mask" type=
"long" default=
""/> 
16101       <method name=
"SetId" type=
"" overloaded=
"no"> 
16102         <autodoc>SetId(long id)
</autodoc> 
16104           <param name=
"id" type=
"long" default=
""/> 
16107       <method name=
"SetColumn" type=
"" overloaded=
"no"> 
16108         <autodoc>SetColumn(int col)
</autodoc> 
16110           <param name=
"col" type=
"int" default=
""/> 
16113       <method name=
"SetState" type=
"" overloaded=
"no"> 
16114         <autodoc>SetState(long state)
</autodoc> 
16116           <param name=
"state" type=
"long" default=
""/> 
16119       <method name=
"SetStateMask" type=
"" overloaded=
"no"> 
16120         <autodoc>SetStateMask(long stateMask)
</autodoc> 
16122           <param name=
"stateMask" type=
"long" default=
""/> 
16125       <method name=
"SetText" type=
"" overloaded=
"no"> 
16126         <autodoc>SetText(String text)
</autodoc> 
16128           <param name=
"text" type=
"String" default=
""/> 
16131       <method name=
"SetImage" type=
"" overloaded=
"no"> 
16132         <autodoc>SetImage(int image)
</autodoc> 
16134           <param name=
"image" type=
"int" default=
""/> 
16137       <method name=
"SetData" type=
"" overloaded=
"no"> 
16138         <autodoc>SetData(long data)
</autodoc> 
16140           <param name=
"data" type=
"long" default=
""/> 
16143       <method name=
"SetWidth" type=
"" overloaded=
"no"> 
16144         <autodoc>SetWidth(int width)
</autodoc> 
16146           <param name=
"width" type=
"int" default=
""/> 
16149       <method name=
"SetAlign" type=
"" overloaded=
"no"> 
16150         <autodoc>SetAlign(int align)
</autodoc> 
16152           <param name=
"align" type=
"wxListColumnFormat" default=
""/> 
16155       <method name=
"SetTextColour" type=
"" overloaded=
"no"> 
16156         <autodoc>SetTextColour(Colour colText)
</autodoc> 
16158           <param name=
"colText" type=
"Colour" default=
""/> 
16161       <method name=
"SetBackgroundColour" type=
"" overloaded=
"no"> 
16162         <autodoc>SetBackgroundColour(Colour colBack)
</autodoc> 
16164           <param name=
"colBack" type=
"Colour" default=
""/> 
16167       <method name=
"SetFont" type=
"" overloaded=
"no"> 
16168         <autodoc>SetFont(Font font)
</autodoc> 
16170           <param name=
"font" type=
"Font" default=
""/> 
16173       <method name=
"GetMask" type=
"long" overloaded=
"no"> 
16174         <autodoc>GetMask() -
> long
</autodoc> 
16176       <method name=
"GetId" type=
"long" overloaded=
"no"> 
16177         <autodoc>GetId() -
> long
</autodoc> 
16179       <method name=
"GetColumn" type=
"int" overloaded=
"no"> 
16180         <autodoc>GetColumn() -
> int
</autodoc> 
16182       <method name=
"GetState" type=
"long" overloaded=
"no"> 
16183         <autodoc>GetState() -
> long
</autodoc> 
16185       <method name=
"GetText" type=
"String" overloaded=
"no"> 
16186         <autodoc>GetText() -
> String
</autodoc> 
16188       <method name=
"GetImage" type=
"int" overloaded=
"no"> 
16189         <autodoc>GetImage() -
> int
</autodoc> 
16191       <method name=
"GetData" type=
"long" overloaded=
"no"> 
16192         <autodoc>GetData() -
> long
</autodoc> 
16194       <method name=
"GetWidth" type=
"int" overloaded=
"no"> 
16195         <autodoc>GetWidth() -
> int
</autodoc> 
16197       <method name=
"GetAlign" type=
"wxListColumnFormat" overloaded=
"no"> 
16198         <autodoc>GetAlign() -
> int
</autodoc> 
16200       <method name=
"GetAttributes" type=
"ListItemAttr" overloaded=
"no"> 
16201         <autodoc>GetAttributes() -
> ListItemAttr
</autodoc> 
16203       <method name=
"HasAttributes" type=
"bool" overloaded=
"no"> 
16204         <autodoc>HasAttributes() -
> bool
</autodoc> 
16206       <method name=
"GetTextColour" type=
"Colour" overloaded=
"no"> 
16207         <autodoc>GetTextColour() -
> Colour
</autodoc> 
16209       <method name=
"GetBackgroundColour" type=
"Colour" overloaded=
"no"> 
16210         <autodoc>GetBackgroundColour() -
> Colour
</autodoc> 
16212       <method name=
"GetFont" type=
"Font" overloaded=
"no"> 
16213         <autodoc>GetFont() -
> Font
</autodoc> 
16215       <property name=
"m_mask" type=
"long" readonly=
"no"/> 
16216       <property name=
"m_itemId" type=
"long" readonly=
"no"/> 
16217       <property name=
"m_col" type=
"int" readonly=
"no"/> 
16218       <property name=
"m_state" type=
"long" readonly=
"no"/> 
16219       <property name=
"m_stateMask" type=
"long" readonly=
"no"/> 
16220       <property name=
"m_text" type=
"String" readonly=
"no"/> 
16221       <property name=
"m_image" type=
"int" readonly=
"no"/> 
16222       <property name=
"m_data" type=
"long" readonly=
"no"/> 
16223       <property name=
"m_format" type=
"int" readonly=
"no"/> 
16224       <property name=
"m_width" type=
"int" readonly=
"no"/> 
16227 #---------------------------------------------------------------------------
 
16229     <class name=
"ListEvent" oldname=
"wxListEvent" module=
"controls"> 
16230       <baseclass name=
"NotifyEvent"/> 
16231       <constructor name=
"ListEvent" overloaded=
"no"> 
16232         <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int id=
0) -
> ListEvent
</autodoc> 
16234           <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/> 
16235           <param name=
"id" type=
"int" default=
"0"/> 
16238       <property name=
"m_code" type=
"int" readonly=
"no"/> 
16239       <property name=
"m_oldItemIndex" type=
"long" readonly=
"no"/> 
16240       <property name=
"m_itemIndex" type=
"long" readonly=
"no"/> 
16241       <property name=
"m_col" type=
"int" readonly=
"no"/> 
16242       <property name=
"m_pointDrag" type=
"Point" readonly=
"no"/> 
16243       <property name=
"m_item" type=
"ListItem" readonly=
"yes"/> 
16244       <method name=
"GetKeyCode" type=
"int" overloaded=
"no"> 
16245         <autodoc>GetKeyCode() -
> int
</autodoc> 
16247       <method name=
"GetIndex" type=
"long" overloaded=
"no"> 
16248         <autodoc>GetIndex() -
> long
</autodoc> 
16250       <method name=
"GetColumn" type=
"int" overloaded=
"no"> 
16251         <autodoc>GetColumn() -
> int
</autodoc> 
16253       <method name=
"GetPoint" type=
"Point" overloaded=
"no"> 
16254         <autodoc>GetPoint() -
> Point
</autodoc> 
16256       <method name=
"GetLabel" type=
"String" overloaded=
"no"> 
16257         <autodoc>GetLabel() -
> String
</autodoc> 
16259       <method name=
"GetText" type=
"String" overloaded=
"no"> 
16260         <autodoc>GetText() -
> String
</autodoc> 
16262       <method name=
"GetImage" type=
"int" overloaded=
"no"> 
16263         <autodoc>GetImage() -
> int
</autodoc> 
16265       <method name=
"GetData" type=
"long" overloaded=
"no"> 
16266         <autodoc>GetData() -
> long
</autodoc> 
16268       <method name=
"GetMask" type=
"long" overloaded=
"no"> 
16269         <autodoc>GetMask() -
> long
</autodoc> 
16271       <method name=
"GetItem" type=
"ListItem" overloaded=
"no"> 
16272         <autodoc>GetItem() -
> ListItem
</autodoc> 
16274       <method name=
"GetCacheFrom" type=
"long" overloaded=
"no"> 
16275         <autodoc>GetCacheFrom() -
> long
</autodoc> 
16277       <method name=
"GetCacheTo" type=
"long" overloaded=
"no"> 
16278         <autodoc>GetCacheTo() -
> long
</autodoc> 
16280       <method name=
"IsEditCancelled" type=
"bool" overloaded=
"no"> 
16281         <autodoc>IsEditCancelled() -
> bool
</autodoc> 
16283       <method name=
"SetEditCanceled" type=
"" overloaded=
"no"> 
16284         <autodoc>SetEditCanceled(bool editCancelled)
</autodoc> 
16286           <param name=
"editCancelled" type=
"bool" default=
""/> 
16292 EVT_LIST_BEGIN_DRAG        = wx.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_DRAG       , 
1)
 
16293 EVT_LIST_BEGIN_RDRAG       = wx.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_RDRAG      , 
1)
 
16294 EVT_LIST_BEGIN_LABEL_EDIT  = wx.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT , 
1)
 
16295 EVT_LIST_END_LABEL_EDIT    = wx.PyEventBinder(wxEVT_COMMAND_LIST_END_LABEL_EDIT   , 
1)
 
16296 EVT_LIST_DELETE_ITEM       = wx.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ITEM      , 
1)
 
16297 EVT_LIST_DELETE_ALL_ITEMS  = wx.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS , 
1)
 
16298 EVT_LIST_GET_INFO          = wx.PyEventBinder(wxEVT_COMMAND_LIST_GET_INFO         , 
1)
 
16299 EVT_LIST_SET_INFO          = wx.PyEventBinder(wxEVT_COMMAND_LIST_SET_INFO         , 
1)
 
16300 EVT_LIST_ITEM_SELECTED     = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_SELECTED    , 
1)
 
16301 EVT_LIST_ITEM_DESELECTED   = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_DESELECTED  , 
1)
 
16302 EVT_LIST_KEY_DOWN          = wx.PyEventBinder(wxEVT_COMMAND_LIST_KEY_DOWN         , 
1)
 
16303 EVT_LIST_INSERT_ITEM       = wx.PyEventBinder(wxEVT_COMMAND_LIST_INSERT_ITEM      , 
1)
 
16304 EVT_LIST_COL_CLICK         = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_CLICK        , 
1)
 
16305 EVT_LIST_ITEM_RIGHT_CLICK  = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK , 
1)
 
16306 EVT_LIST_ITEM_MIDDLE_CLICK = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK, 
1)
 
16307 EVT_LIST_ITEM_ACTIVATED    = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_ACTIVATED   , 
1)
 
16308 EVT_LIST_CACHE_HINT        = wx.PyEventBinder(wxEVT_COMMAND_LIST_CACHE_HINT       , 
1)
 
16309 EVT_LIST_COL_RIGHT_CLICK   = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_RIGHT_CLICK  , 
1)
 
16310 EVT_LIST_COL_BEGIN_DRAG    = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG   , 
1)
 
16311 EVT_LIST_COL_DRAGGING      = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_DRAGGING     , 
1)
 
16312 EVT_LIST_COL_END_DRAG      = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_END_DRAG     , 
1)
 
16313 EVT_LIST_ITEM_FOCUSED      = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_FOCUSED     , 
1)
 
16316 #---------------------------------------------------------------------------
 
16318     <class name=
"ListCtrl" oldname=
"wxPyListCtrl" module=
"controls"> 
16319       <baseclass name=
"Control"/> 
16320       <constructor name=
"wxPyListCtrl" overloaded=
"no"> 
16321         <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
16322     Size size=DefaultSize, long style=LC_ICON, 
 
16323     Validator validator=DefaultValidator, String name=ListCtrlNameStr) -
> ListCtrl
</autodoc> 
16325           <param name=
"parent" type=
"Window" default=
""/> 
16326           <param name=
"id" type=
"int" default=
"-1"/> 
16327           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
16328           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
16329           <param name=
"style" type=
"long" default=
"wxLC_ICON"/> 
16330           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
16331           <param name=
"name" type=
"String" default=
"wxPyListCtrlNameStr"/> 
16334       <constructor name=
"PreListCtrl" overloaded=
"no"> 
16335         <autodoc>PreListCtrl() -
> ListCtrl
</autodoc> 
16337       <method name=
"Create" type=
"bool" overloaded=
"no"> 
16338         <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
16339     Size size=DefaultSize, long style=LC_ICON, 
 
16340     Validator validator=DefaultValidator, String name=ListCtrlNameStr) -
> bool
</autodoc> 
16342           <param name=
"parent" type=
"Window" default=
""/> 
16343           <param name=
"id" type=
"int" default=
"-1"/> 
16344           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
16345           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
16346           <param name=
"style" type=
"long" default=
"wxLC_ICON"/> 
16347           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
16348           <param name=
"name" type=
"String" default=
"wxPyListCtrlNameStr"/> 
16351       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
16352         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
16354           <param name=
"self" type=
"PyObject" default=
""/> 
16355           <param name=
"_class" type=
"PyObject" default=
""/> 
16358       <method name=
"SetForegroundColour" type=
"bool" overloaded=
"no"> 
16359         <autodoc>SetForegroundColour(Colour col) -
> bool
</autodoc> 
16361           <param name=
"col" type=
"Colour" default=
""/> 
16364       <method name=
"SetBackgroundColour" type=
"bool" overloaded=
"no"> 
16365         <autodoc>SetBackgroundColour(Colour col) -
> bool
</autodoc> 
16367           <param name=
"col" type=
"Colour" default=
""/> 
16370       <method name=
"GetColumn" type=
"ListItem" overloaded=
"no"> 
16371         <autodoc>GetColumn(int col) -
> ListItem
</autodoc> 
16373           <param name=
"col" type=
"int" default=
""/> 
16376       <method name=
"SetColumn" type=
"bool" overloaded=
"no"> 
16377         <autodoc>SetColumn(int col, ListItem item) -
> bool
</autodoc> 
16379           <param name=
"col" type=
"int" default=
""/> 
16380           <param name=
"item" type=
"ListItem" default=
""/> 
16383       <method name=
"GetColumnWidth" type=
"int" overloaded=
"no"> 
16384         <autodoc>GetColumnWidth(int col) -
> int
</autodoc> 
16386           <param name=
"col" type=
"int" default=
""/> 
16389       <method name=
"SetColumnWidth" type=
"bool" overloaded=
"no"> 
16390         <autodoc>SetColumnWidth(int col, int width) -
> bool
</autodoc> 
16392           <param name=
"col" type=
"int" default=
""/> 
16393           <param name=
"width" type=
"int" default=
""/> 
16396       <method name=
"GetCountPerPage" type=
"int" overloaded=
"no"> 
16397         <autodoc>GetCountPerPage() -
> int
</autodoc> 
16399       <method name=
"GetViewRect" type=
"Rect" overloaded=
"no"> 
16400         <autodoc>GetViewRect() -
> Rect
</autodoc> 
16402       <method name=
"GetItem" type=
"ListItem" overloaded=
"no"> 
16403         <autodoc>GetItem(long itemId, int col=
0) -
> ListItem
</autodoc> 
16405           <param name=
"itemId" type=
"long" default=
""/> 
16406           <param name=
"col" type=
"int" default=
"0"/> 
16409       <method name=
"SetItem" type=
"bool" overloaded=
"no"> 
16410         <autodoc>SetItem(ListItem info) -
> bool
</autodoc> 
16412           <param name=
"info" type=
"ListItem" default=
""/> 
16415       <method name=
"SetStringItem" type=
"long" overloaded=
"no"> 
16416         <autodoc>SetStringItem(long index, int col, String label, int imageId=-
1) -
> long
</autodoc> 
16418           <param name=
"index" type=
"long" default=
""/> 
16419           <param name=
"col" type=
"int" default=
""/> 
16420           <param name=
"label" type=
"String" default=
""/> 
16421           <param name=
"imageId" type=
"int" default=
"-1"/> 
16424       <method name=
"GetItemState" type=
"int" overloaded=
"no"> 
16425         <autodoc>GetItemState(long item, long stateMask) -
> int
</autodoc> 
16427           <param name=
"item" type=
"long" default=
""/> 
16428           <param name=
"stateMask" type=
"long" default=
""/> 
16431       <method name=
"SetItemState" type=
"bool" overloaded=
"no"> 
16432         <autodoc>SetItemState(long item, long state, long stateMask) -
> bool
</autodoc> 
16434           <param name=
"item" type=
"long" default=
""/> 
16435           <param name=
"state" type=
"long" default=
""/> 
16436           <param name=
"stateMask" type=
"long" default=
""/> 
16439       <method name=
"SetItemImage" type=
"bool" overloaded=
"no"> 
16440         <autodoc>SetItemImage(long item, int image, int selImage) -
> bool
</autodoc> 
16442           <param name=
"item" type=
"long" default=
""/> 
16443           <param name=
"image" type=
"int" default=
""/> 
16444           <param name=
"selImage" type=
"int" default=
""/> 
16447       <method name=
"GetItemText" type=
"String" overloaded=
"no"> 
16448         <autodoc>GetItemText(long item) -
> String
</autodoc> 
16450           <param name=
"item" type=
"long" default=
""/> 
16453       <method name=
"SetItemText" type=
"" overloaded=
"no"> 
16454         <autodoc>SetItemText(long item, String str)
</autodoc> 
16456           <param name=
"item" type=
"long" default=
""/> 
16457           <param name=
"str" type=
"String" default=
""/> 
16460       <method name=
"GetItemData" type=
"long" overloaded=
"no"> 
16461         <autodoc>GetItemData(long item) -
> long
</autodoc> 
16463           <param name=
"item" type=
"long" default=
""/> 
16466       <method name=
"SetItemData" type=
"bool" overloaded=
"no"> 
16467         <autodoc>SetItemData(long item, long data) -
> bool
</autodoc> 
16469           <param name=
"item" type=
"long" default=
""/> 
16470           <param name=
"data" type=
"long" default=
""/> 
16473       <method name=
"GetItemPosition" type=
"Point" overloaded=
"no"> 
16474         <autodoc>GetItemPosition(long item) -
> Point
</autodoc> 
16476           <param name=
"item" type=
"long" default=
""/> 
16479       <method name=
"GetItemRect" type=
"Rect" overloaded=
"no"> 
16480         <autodoc>GetItemRect(long item, int code=LIST_RECT_BOUNDS) -
> Rect
</autodoc> 
16482           <param name=
"item" type=
"long" default=
""/> 
16483           <param name=
"code" type=
"int" default=
"wxLIST_RECT_BOUNDS"/> 
16486       <method name=
"SetItemPosition" type=
"bool" overloaded=
"no"> 
16487         <autodoc>SetItemPosition(long item, Point pos) -
> bool
</autodoc> 
16489           <param name=
"item" type=
"long" default=
""/> 
16490           <param name=
"pos" type=
"Point" default=
""/> 
16493       <method name=
"GetItemCount" type=
"int" overloaded=
"no"> 
16494         <autodoc>GetItemCount() -
> int
</autodoc> 
16496       <method name=
"GetColumnCount" type=
"int" overloaded=
"no"> 
16497         <autodoc>GetColumnCount() -
> int
</autodoc> 
16499       <method name=
"GetItemSpacing" type=
"Size" overloaded=
"no"> 
16500         <autodoc>GetItemSpacing() -
> Size
</autodoc> 
16502       <method name=
"SetItemSpacing" type=
"" overloaded=
"no"> 
16503         <autodoc>SetItemSpacing(int spacing, bool isSmall=False)
</autodoc> 
16505           <param name=
"spacing" type=
"int" default=
""/> 
16506           <param name=
"isSmall" type=
"bool" default=
"False"/> 
16509       <method name=
"GetSelectedItemCount" type=
"int" overloaded=
"no"> 
16510         <autodoc>GetSelectedItemCount() -
> int
</autodoc> 
16512       <method name=
"GetTextColour" type=
"Colour" overloaded=
"no"> 
16513         <autodoc>GetTextColour() -
> Colour
</autodoc> 
16515       <method name=
"SetTextColour" type=
"" overloaded=
"no"> 
16516         <autodoc>SetTextColour(Colour col)
</autodoc> 
16518           <param name=
"col" type=
"Colour" default=
""/> 
16521       <method name=
"GetTopItem" type=
"long" overloaded=
"no"> 
16522         <autodoc>GetTopItem() -
> long
</autodoc> 
16524       <method name=
"SetSingleStyle" type=
"" overloaded=
"no"> 
16525         <autodoc>SetSingleStyle(long style, bool add=True)
</autodoc> 
16527           <param name=
"style" type=
"long" default=
""/> 
16528           <param name=
"add" type=
"bool" default=
"True"/> 
16531       <method name=
"SetWindowStyleFlag" type=
"" overloaded=
"no"> 
16532         <autodoc>SetWindowStyleFlag(long style)
</autodoc> 
16534           <param name=
"style" type=
"long" default=
""/> 
16537       <method name=
"GetNextItem" type=
"long" overloaded=
"no"> 
16538         <autodoc>GetNextItem(long item, int geometry=LIST_NEXT_ALL, int state=LIST_STATE_DONTCARE) -
> long
</autodoc> 
16540           <param name=
"item" type=
"long" default=
""/> 
16541           <param name=
"geometry" type=
"int" default=
"wxLIST_NEXT_ALL"/> 
16542           <param name=
"state" type=
"int" default=
"wxLIST_STATE_DONTCARE"/> 
16545       <method name=
"GetImageList" type=
"ImageList" overloaded=
"no"> 
16546         <autodoc>GetImageList(int which) -
> ImageList
</autodoc> 
16548           <param name=
"which" type=
"int" default=
""/> 
16551       <method name=
"SetImageList" type=
"" overloaded=
"no"> 
16552         <autodoc>SetImageList(ImageList imageList, int which)
</autodoc> 
16554           <param name=
"imageList" type=
"ImageList" default=
""/> 
16555           <param name=
"which" type=
"int" default=
""/> 
16558       <method name=
"AssignImageList" type=
"" overloaded=
"no"> 
16559         <autodoc>AssignImageList(ImageList imageList, int which)
</autodoc> 
16561           <param name=
"imageList" type=
"ImageList" default=
""/> 
16562           <param name=
"which" type=
"int" default=
""/> 
16565       <method name=
"IsVirtual" type=
"bool" overloaded=
"no"> 
16566         <autodoc>IsVirtual() -
> bool
</autodoc> 
16568       <method name=
"RefreshItem" type=
"" overloaded=
"no"> 
16569         <autodoc>RefreshItem(long item)
</autodoc> 
16571           <param name=
"item" type=
"long" default=
""/> 
16574       <method name=
"RefreshItems" type=
"" overloaded=
"no"> 
16575         <autodoc>RefreshItems(long itemFrom, long itemTo)
</autodoc> 
16577           <param name=
"itemFrom" type=
"long" default=
""/> 
16578           <param name=
"itemTo" type=
"long" default=
""/> 
16581       <method name=
"Arrange" type=
"bool" overloaded=
"no"> 
16582         <autodoc>Arrange(int flag=LIST_ALIGN_DEFAULT) -
> bool
</autodoc> 
16584           <param name=
"flag" type=
"int" default=
"wxLIST_ALIGN_DEFAULT"/> 
16587       <method name=
"DeleteItem" type=
"bool" overloaded=
"no"> 
16588         <autodoc>DeleteItem(long item) -
> bool
</autodoc> 
16590           <param name=
"item" type=
"long" default=
""/> 
16593       <method name=
"DeleteAllItems" type=
"bool" overloaded=
"no"> 
16594         <autodoc>DeleteAllItems() -
> bool
</autodoc> 
16596       <method name=
"DeleteColumn" type=
"bool" overloaded=
"no"> 
16597         <autodoc>DeleteColumn(int col) -
> bool
</autodoc> 
16599           <param name=
"col" type=
"int" default=
""/> 
16602       <method name=
"DeleteAllColumns" type=
"bool" overloaded=
"no"> 
16603         <autodoc>DeleteAllColumns() -
> bool
</autodoc> 
16605       <method name=
"ClearAll" type=
"" overloaded=
"no"> 
16606         <autodoc>ClearAll()
</autodoc> 
16608       <method name=
"EditLabel" type=
"" overloaded=
"no"> 
16609         <autodoc>EditLabel(long item)
</autodoc> 
16611           <param name=
"item" type=
"long" default=
""/> 
16614       <method name=
"EnsureVisible" type=
"bool" overloaded=
"no"> 
16615         <autodoc>EnsureVisible(long item) -
> bool
</autodoc> 
16617           <param name=
"item" type=
"long" default=
""/> 
16620       <method name=
"FindItem" type=
"long" overloaded=
"no"> 
16621         <autodoc>FindItem(long start, String str, bool partial=False) -
> long
</autodoc> 
16623           <param name=
"start" type=
"long" default=
""/> 
16624           <param name=
"str" type=
"String" default=
""/> 
16625           <param name=
"partial" type=
"bool" default=
"False"/> 
16628       <method name=
"FindItemData" type=
"long" overloaded=
"no"> 
16629         <autodoc>FindItemData(long start, long data) -
> long
</autodoc> 
16631           <param name=
"start" type=
"long" default=
""/> 
16632           <param name=
"data" type=
"long" default=
""/> 
16635       <method name=
"FindItemAtPos" type=
"long" overloaded=
"no"> 
16636         <autodoc>FindItemAtPos(long start, Point pt, int direction) -
> long
</autodoc> 
16638           <param name=
"start" type=
"long" default=
""/> 
16639           <param name=
"pt" type=
"Point" default=
""/> 
16640           <param name=
"direction" type=
"int" default=
""/> 
16643       <method name=
"HitTest" type=
"long" overloaded=
"no"> 
16644         <autodoc>HitTest(Point point) -
> (item, where)
</autodoc> 
16645         <docstring>Determines which item (if any) is at the specified point,
 
16646 giving details in the second return value (see wxLIST_HITTEST_... flags.)
</docstring> 
16648           <param name=
"point" type=
"Point" default=
""/> 
16649           <param name=
"OUTPUT" type=
"int" default=
""/> 
16652       <method name=
"InsertItem" type=
"long" overloaded=
"no"> 
16653         <autodoc>InsertItem(ListItem info) -
> long
</autodoc> 
16655           <param name=
"info" type=
"ListItem" default=
""/> 
16658       <method name=
"InsertStringItem" type=
"long" overloaded=
"no"> 
16659         <autodoc>InsertStringItem(long index, String label) -
> long
</autodoc> 
16661           <param name=
"index" type=
"long" default=
""/> 
16662           <param name=
"label" type=
"String" default=
""/> 
16665       <method name=
"InsertImageItem" type=
"long" overloaded=
"no"> 
16666         <autodoc>InsertImageItem(long index, int imageIndex) -
> long
</autodoc> 
16668           <param name=
"index" type=
"long" default=
""/> 
16669           <param name=
"imageIndex" type=
"int" default=
""/> 
16672       <method name=
"InsertImageStringItem" type=
"long" overloaded=
"no"> 
16673         <autodoc>InsertImageStringItem(long index, String label, int imageIndex) -
> long
</autodoc> 
16675           <param name=
"index" type=
"long" default=
""/> 
16676           <param name=
"label" type=
"String" default=
""/> 
16677           <param name=
"imageIndex" type=
"int" default=
""/> 
16680       <method name=
"InsertColumnInfo" type=
"long" overloaded=
"no"> 
16681         <autodoc>InsertColumnInfo(long col, ListItem info) -
> long
</autodoc> 
16683           <param name=
"col" type=
"long" default=
""/> 
16684           <param name=
"info" type=
"ListItem" default=
""/> 
16687       <method name=
"InsertColumn" type=
"long" overloaded=
"no"> 
16688         <autodoc>InsertColumn(long col, String heading, int format=LIST_FORMAT_LEFT, 
 
16689     int width=-
1) -
> long
</autodoc> 
16691           <param name=
"col" type=
"long" default=
""/> 
16692           <param name=
"heading" type=
"String" default=
""/> 
16693           <param name=
"format" type=
"int" default=
"wxLIST_FORMAT_LEFT"/> 
16694           <param name=
"width" type=
"int" default=
"-1"/> 
16697       <method name=
"SetItemCount" type=
"" overloaded=
"no"> 
16698         <autodoc>SetItemCount(long count)
</autodoc> 
16700           <param name=
"count" type=
"long" default=
""/> 
16703       <method name=
"ScrollList" type=
"bool" overloaded=
"no"> 
16704         <autodoc>ScrollList(int dx, int dy) -
> bool
</autodoc> 
16706           <param name=
"dx" type=
"int" default=
""/> 
16707           <param name=
"dy" type=
"int" default=
""/> 
16710       <method name=
"SetItemTextColour" type=
"" overloaded=
"no"> 
16711         <autodoc>SetItemTextColour(long item, Colour col)
</autodoc> 
16713           <param name=
"item" type=
"long" default=
""/> 
16714           <param name=
"col" type=
"Colour" default=
""/> 
16717       <method name=
"GetItemTextColour" type=
"Colour" overloaded=
"no"> 
16718         <autodoc>GetItemTextColour(long item) -
> Colour
</autodoc> 
16720           <param name=
"item" type=
"long" default=
""/> 
16723       <method name=
"SetItemBackgroundColour" type=
"" overloaded=
"no"> 
16724         <autodoc>SetItemBackgroundColour(long item, Colour col)
</autodoc> 
16726           <param name=
"item" type=
"long" default=
""/> 
16727           <param name=
"col" type=
"Colour" default=
""/> 
16730       <method name=
"GetItemBackgroundColour" type=
"Colour" overloaded=
"no"> 
16731         <autodoc>GetItemBackgroundColour(long item) -
> Colour
</autodoc> 
16733           <param name=
"item" type=
"long" default=
""/> 
16736       <method name=
"SortItems" type=
"bool" overloaded=
"no"> 
16737         <autodoc>SortItems(PyObject func) -
> bool
</autodoc> 
16739           <param name=
"func" type=
"PyObject" default=
""/> 
16742       <method name=
"GetMainWindow" type=
"Window" overloaded=
"no"> 
16743         <autodoc>GetMainWindow() -
> Window
</autodoc> 
16747 #---------------------------------------------------------------------------
 
16749     <class name=
"ListView" oldname=
"wxListView" module=
"controls"> 
16750       <baseclass name=
"ListCtrl"/> 
16751       <constructor name=
"ListView" overloaded=
"no"> 
16752         <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
16753     Size size=DefaultSize, long style=LC_REPORT, 
 
16754     Validator validator=DefaultValidator, String name=ListCtrlNameStr) -
> ListView
</autodoc> 
16756           <param name=
"parent" type=
"Window" default=
""/> 
16757           <param name=
"id" type=
"int" default=
"-1"/> 
16758           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
16759           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
16760           <param name=
"style" type=
"long" default=
"wxLC_REPORT"/> 
16761           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
16762           <param name=
"name" type=
"String" default=
"wxPyListCtrlNameStr"/> 
16765       <constructor name=
"PreListView" overloaded=
"no"> 
16766         <autodoc>PreListView() -
> ListView
</autodoc> 
16768       <method name=
"Create" type=
"bool" overloaded=
"no"> 
16769         <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
16770     Size size=DefaultSize, long style=LC_REPORT, 
 
16771     Validator validator=DefaultValidator, String name=ListCtrlNameStr) -
> bool
</autodoc> 
16773           <param name=
"parent" type=
"Window" default=
""/> 
16774           <param name=
"id" type=
"int" default=
"-1"/> 
16775           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
16776           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
16777           <param name=
"style" type=
"long" default=
"wxLC_REPORT"/> 
16778           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
16779           <param name=
"name" type=
"String" default=
"wxPyListCtrlNameStr"/> 
16782       <method name=
"Select" type=
"" overloaded=
"no"> 
16783         <autodoc>Select(long n, bool on=True)
</autodoc> 
16785           <param name=
"n" type=
"long" default=
""/> 
16786           <param name=
"on" type=
"bool" default=
"True"/> 
16789       <method name=
"Focus" type=
"" overloaded=
"no"> 
16790         <autodoc>Focus(long index)
</autodoc> 
16792           <param name=
"index" type=
"long" default=
""/> 
16795       <method name=
"GetFocusedItem" type=
"long" overloaded=
"no"> 
16796         <autodoc>GetFocusedItem() -
> long
</autodoc> 
16798       <method name=
"GetNextSelected" type=
"long" overloaded=
"no"> 
16799         <autodoc>GetNextSelected(long item) -
> long
</autodoc> 
16801           <param name=
"item" type=
"long" default=
""/> 
16804       <method name=
"GetFirstSelected" type=
"long" overloaded=
"no"> 
16805         <autodoc>GetFirstSelected() -
> long
</autodoc> 
16807       <method name=
"IsSelected" type=
"bool" overloaded=
"no"> 
16808         <autodoc>IsSelected(long index) -
> bool
</autodoc> 
16810           <param name=
"index" type=
"long" default=
""/> 
16813       <method name=
"SetColumnImage" type=
"" overloaded=
"no"> 
16814         <autodoc>SetColumnImage(int col, int image)
</autodoc> 
16816           <param name=
"col" type=
"int" default=
""/> 
16817           <param name=
"image" type=
"int" default=
""/> 
16820       <method name=
"ClearColumnImage" type=
"" overloaded=
"no"> 
16821         <autodoc>ClearColumnImage(int col)
</autodoc> 
16823           <param name=
"col" type=
"int" default=
""/> 
16828 #---------------------------------------------------------------------------
 
16831 #---------------------------------------------------------------------------
 
16833     <class name=
"TreeItemId" oldname=
"wxTreeItemId" module=
"controls"> 
16834       <constructor name=
"TreeItemId" overloaded=
"no"> 
16835         <autodoc>__init__() -
> TreeItemId
</autodoc> 
16837       <destructor name=
"~wxTreeItemId" overloaded=
"no"> 
16838         <autodoc>__del__()
</autodoc> 
16840       <method name=
"IsOk" type=
"bool" overloaded=
"no"> 
16841         <autodoc>IsOk() -
> bool
</autodoc> 
16843       <method name=
"__eq__" type=
"bool" overloaded=
"no"> 
16844         <autodoc>__eq__(TreeItemId other) -
> bool
</autodoc> 
16846           <param name=
"other" type=
"TreeItemId" default=
""/> 
16849       <method name=
"__ne__" type=
"bool" overloaded=
"no"> 
16850         <autodoc>__ne__(TreeItemId other) -
> bool
</autodoc> 
16852           <param name=
"other" type=
"TreeItemId" default=
""/> 
16855       <property name=
"m_pItem" type=
"wxTreeItemIdValue" readonly=
"no"/> 
16857     <class name=
"TreeItemData" oldname=
"wxPyTreeItemData" module=
"controls"> 
16858       <constructor name=
"wxPyTreeItemData" overloaded=
"no"> 
16859         <autodoc>__init__(PyObject obj=None) -
> TreeItemData
</autodoc> 
16861           <param name=
"obj" type=
"PyObject" default=
"NULL"/> 
16864       <method name=
"GetData" type=
"PyObject" overloaded=
"no"> 
16865         <autodoc>GetData() -
> PyObject
</autodoc> 
16867       <method name=
"SetData" type=
"" overloaded=
"no"> 
16868         <autodoc>SetData(PyObject obj)
</autodoc> 
16870           <param name=
"obj" type=
"PyObject" default=
""/> 
16873       <method name=
"GetId" type=
"TreeItemId" overloaded=
"no"> 
16874         <autodoc>GetId() -
> TreeItemId
</autodoc> 
16876       <method name=
"SetId" type=
"" overloaded=
"no"> 
16877         <autodoc>SetId(TreeItemId id)
</autodoc> 
16879           <param name=
"id" type=
"TreeItemId" default=
""/> 
16882       <method name=
"Destroy" type=
"" overloaded=
"no"> 
16883         <autodoc>Destroy()
</autodoc> 
16887 #---------------------------------------------------------------------------
 
16891 EVT_TREE_BEGIN_DRAG        = wx.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_DRAG       , 
1)
 
16892 EVT_TREE_BEGIN_RDRAG       = wx.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_RDRAG      , 
1)
 
16893 EVT_TREE_BEGIN_LABEL_EDIT  = wx.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT , 
1)
 
16894 EVT_TREE_END_LABEL_EDIT    = wx.PyEventBinder(wxEVT_COMMAND_TREE_END_LABEL_EDIT   , 
1)
 
16895 EVT_TREE_DELETE_ITEM       = wx.PyEventBinder(wxEVT_COMMAND_TREE_DELETE_ITEM      , 
1)
 
16896 EVT_TREE_GET_INFO          = wx.PyEventBinder(wxEVT_COMMAND_TREE_GET_INFO         , 
1)
 
16897 EVT_TREE_SET_INFO          = wx.PyEventBinder(wxEVT_COMMAND_TREE_SET_INFO         , 
1)
 
16898 EVT_TREE_ITEM_EXPANDED     = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_EXPANDED    , 
1)
 
16899 EVT_TREE_ITEM_EXPANDING    = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_EXPANDING   , 
1)
 
16900 EVT_TREE_ITEM_COLLAPSED    = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_COLLAPSED   , 
1)
 
16901 EVT_TREE_ITEM_COLLAPSING   = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_COLLAPSING  , 
1)
 
16902 EVT_TREE_SEL_CHANGED       = wx.PyEventBinder(wxEVT_COMMAND_TREE_SEL_CHANGED      , 
1)
 
16903 EVT_TREE_SEL_CHANGING      = wx.PyEventBinder(wxEVT_COMMAND_TREE_SEL_CHANGING     , 
1)
 
16904 EVT_TREE_KEY_DOWN          = wx.PyEventBinder(wxEVT_COMMAND_TREE_KEY_DOWN         , 
1)
 
16905 EVT_TREE_ITEM_ACTIVATED    = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_ACTIVATED   , 
1)
 
16906 EVT_TREE_ITEM_RIGHT_CLICK  = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK , 
1)
 
16907 EVT_TREE_ITEM_MIDDLE_CLICK = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK, 
1)
 
16908 EVT_TREE_END_DRAG          = wx.PyEventBinder(wxEVT_COMMAND_TREE_END_DRAG         , 
1)
 
16909 EVT_TREE_STATE_IMAGE_CLICK = wx.PyEventBinder(wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK, 
1)
 
16910 EVT_TREE_ITEM_GETTOOLTIP   = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP,   
1)
 
16912     <class name=
"TreeEvent" oldname=
"wxTreeEvent" module=
"controls"> 
16913       <baseclass name=
"NotifyEvent"/> 
16914       <constructor name=
"TreeEvent" overloaded=
"no"> 
16915         <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int id=
0) -
> TreeEvent
</autodoc> 
16917           <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/> 
16918           <param name=
"id" type=
"int" default=
"0"/> 
16921       <method name=
"GetItem" type=
"TreeItemId" overloaded=
"no"> 
16922         <autodoc>GetItem() -
> TreeItemId
</autodoc> 
16924       <method name=
"SetItem" type=
"" overloaded=
"no"> 
16925         <autodoc>SetItem(TreeItemId item)
</autodoc> 
16927           <param name=
"item" type=
"TreeItemId" default=
""/> 
16930       <method name=
"GetOldItem" type=
"TreeItemId" overloaded=
"no"> 
16931         <autodoc>GetOldItem() -
> TreeItemId
</autodoc> 
16933       <method name=
"SetOldItem" type=
"" overloaded=
"no"> 
16934         <autodoc>SetOldItem(TreeItemId item)
</autodoc> 
16936           <param name=
"item" type=
"TreeItemId" default=
""/> 
16939       <method name=
"GetPoint" type=
"Point" overloaded=
"no"> 
16940         <autodoc>GetPoint() -
> Point
</autodoc> 
16942       <method name=
"SetPoint" type=
"" overloaded=
"no"> 
16943         <autodoc>SetPoint(Point pt)
</autodoc> 
16945           <param name=
"pt" type=
"Point" default=
""/> 
16948       <method name=
"GetKeyEvent" type=
"KeyEvent" overloaded=
"no"> 
16949         <autodoc>GetKeyEvent() -
> KeyEvent
</autodoc> 
16951       <method name=
"GetKeyCode" type=
"int" overloaded=
"no"> 
16952         <autodoc>GetKeyCode() -
> int
</autodoc> 
16954       <method name=
"SetKeyEvent" type=
"" overloaded=
"no"> 
16955         <autodoc>SetKeyEvent(KeyEvent evt)
</autodoc> 
16957           <param name=
"evt" type=
"KeyEvent" default=
""/> 
16960       <method name=
"GetLabel" type=
"String" overloaded=
"no"> 
16961         <autodoc>GetLabel() -
> String
</autodoc> 
16963       <method name=
"SetLabel" type=
"" overloaded=
"no"> 
16964         <autodoc>SetLabel(String label)
</autodoc> 
16966           <param name=
"label" type=
"String" default=
""/> 
16969       <method name=
"IsEditCancelled" type=
"bool" overloaded=
"no"> 
16970         <autodoc>IsEditCancelled() -
> bool
</autodoc> 
16972       <method name=
"SetEditCanceled" type=
"" overloaded=
"no"> 
16973         <autodoc>SetEditCanceled(bool editCancelled)
</autodoc> 
16975           <param name=
"editCancelled" type=
"bool" default=
""/> 
16978       <method name=
"SetToolTip" type=
"" overloaded=
"no"> 
16979         <autodoc>SetToolTip(String toolTip)
</autodoc> 
16981           <param name=
"toolTip" type=
"String" default=
""/> 
16986 #---------------------------------------------------------------------------
 
16988     <class name=
"TreeCtrl" oldname=
"wxPyTreeCtrl" module=
"controls"> 
16989       <baseclass name=
"Control"/> 
16990       <constructor name=
"wxPyTreeCtrl" overloaded=
"no"> 
16991         <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
16992     Size size=DefaultSize, long style=TR_DEFAULT_STYLE, 
 
16993     Validator validator=DefaultValidator, 
 
16994     String name=TreeCtrlNameStr) -
> TreeCtrl
</autodoc> 
16996           <param name=
"parent" type=
"Window" default=
""/> 
16997           <param name=
"id" type=
"int" default=
"-1"/> 
16998           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
16999           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
17000           <param name=
"style" type=
"long" default=
"wxTR_DEFAULT_STYLE"/> 
17001           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
17002           <param name=
"name" type=
"String" default=
"wxPyTreeCtrlNameStr"/> 
17005       <constructor name=
"PreTreeCtrl" overloaded=
"no"> 
17006         <autodoc>PreTreeCtrl() -
> TreeCtrl
</autodoc> 
17008       <method name=
"Create" type=
"bool" overloaded=
"no"> 
17009         <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
17010     Size size=DefaultSize, long style=TR_DEFAULT_STYLE, 
 
17011     Validator validator=DefaultValidator, 
 
17012     String name=TreeCtrlNameStr) -
> bool
</autodoc> 
17014           <param name=
"parent" type=
"Window" default=
""/> 
17015           <param name=
"id" type=
"int" default=
"-1"/> 
17016           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
17017           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
17018           <param name=
"style" type=
"long" default=
"wxTR_DEFAULT_STYLE"/> 
17019           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
17020           <param name=
"name" type=
"String" default=
"wxPyTreeCtrlNameStr"/> 
17023       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
17024         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
17026           <param name=
"self" type=
"PyObject" default=
""/> 
17027           <param name=
"_class" type=
"PyObject" default=
""/> 
17030       <method name=
"GetCount" type=
"size_t" overloaded=
"no"> 
17031         <autodoc>GetCount() -
> size_t
</autodoc> 
17033       <method name=
"GetIndent" type=
"unsigned int" overloaded=
"no"> 
17034         <autodoc>GetIndent() -
> unsigned int
</autodoc> 
17036       <method name=
"SetIndent" type=
"" overloaded=
"no"> 
17037         <autodoc>SetIndent(unsigned int indent)
</autodoc> 
17039           <param name=
"indent" type=
"unsigned int" default=
""/> 
17042       <method name=
"GetSpacing" type=
"unsigned int" overloaded=
"no"> 
17043         <autodoc>GetSpacing() -
> unsigned int
</autodoc> 
17045       <method name=
"SetSpacing" type=
"" overloaded=
"no"> 
17046         <autodoc>SetSpacing(unsigned int spacing)
</autodoc> 
17048           <param name=
"spacing" type=
"unsigned int" default=
""/> 
17051       <method name=
"GetImageList" type=
"ImageList" overloaded=
"no"> 
17052         <autodoc>GetImageList() -
> ImageList
</autodoc> 
17054       <method name=
"GetStateImageList" type=
"ImageList" overloaded=
"no"> 
17055         <autodoc>GetStateImageList() -
> ImageList
</autodoc> 
17057       <method name=
"SetImageList" type=
"" overloaded=
"no"> 
17058         <autodoc>SetImageList(ImageList imageList)
</autodoc> 
17060           <param name=
"imageList" type=
"ImageList" default=
""/> 
17063       <method name=
"SetStateImageList" type=
"" overloaded=
"no"> 
17064         <autodoc>SetStateImageList(ImageList imageList)
</autodoc> 
17066           <param name=
"imageList" type=
"ImageList" default=
""/> 
17069       <method name=
"AssignImageList" type=
"" overloaded=
"no"> 
17070         <autodoc>AssignImageList(ImageList imageList)
</autodoc> 
17072           <param name=
"imageList" type=
"ImageList" default=
""/> 
17075       <method name=
"AssignStateImageList" type=
"" overloaded=
"no"> 
17076         <autodoc>AssignStateImageList(ImageList imageList)
</autodoc> 
17078           <param name=
"imageList" type=
"ImageList" default=
""/> 
17081       <method name=
"GetItemText" type=
"String" overloaded=
"no"> 
17082         <autodoc>GetItemText(TreeItemId item) -
> String
</autodoc> 
17084           <param name=
"item" type=
"TreeItemId" default=
""/> 
17087       <method name=
"GetItemImage" type=
"int" overloaded=
"no"> 
17088         <autodoc>GetItemImage(TreeItemId item, int which=TreeItemIcon_Normal) -
> int
</autodoc> 
17090           <param name=
"item" type=
"TreeItemId" default=
""/> 
17091           <param name=
"which" type=
"wxTreeItemIcon" default=
"wxTreeItemIcon_Normal"/> 
17094       <method name=
"GetItemData" type=
"TreeItemData" overloaded=
"no"> 
17095         <autodoc>GetItemData(TreeItemId item) -
> TreeItemData
</autodoc> 
17097           <param name=
"item" type=
"TreeItemId" default=
""/> 
17100       <method name=
"GetItemPyData" type=
"PyObject" overloaded=
"no"> 
17101         <autodoc>GetItemPyData(TreeItemId item) -
> PyObject
</autodoc> 
17103           <param name=
"item" type=
"TreeItemId" default=
""/> 
17106       <method name=
"GetItemTextColour" type=
"Colour" overloaded=
"no"> 
17107         <autodoc>GetItemTextColour(TreeItemId item) -
> Colour
</autodoc> 
17109           <param name=
"item" type=
"TreeItemId" default=
""/> 
17112       <method name=
"GetItemBackgroundColour" type=
"Colour" overloaded=
"no"> 
17113         <autodoc>GetItemBackgroundColour(TreeItemId item) -
> Colour
</autodoc> 
17115           <param name=
"item" type=
"TreeItemId" default=
""/> 
17118       <method name=
"GetItemFont" type=
"Font" overloaded=
"no"> 
17119         <autodoc>GetItemFont(TreeItemId item) -
> Font
</autodoc> 
17121           <param name=
"item" type=
"TreeItemId" default=
""/> 
17124       <method name=
"SetItemText" type=
"" overloaded=
"no"> 
17125         <autodoc>SetItemText(TreeItemId item, String text)
</autodoc> 
17127           <param name=
"item" type=
"TreeItemId" default=
""/> 
17128           <param name=
"text" type=
"String" default=
""/> 
17131       <method name=
"SetItemImage" type=
"" overloaded=
"no"> 
17132         <autodoc>SetItemImage(TreeItemId item, int image, int which=TreeItemIcon_Normal)
</autodoc> 
17134           <param name=
"item" type=
"TreeItemId" default=
""/> 
17135           <param name=
"image" type=
"int" default=
""/> 
17136           <param name=
"which" type=
"wxTreeItemIcon" default=
"wxTreeItemIcon_Normal"/> 
17139       <method name=
"SetItemData" type=
"" overloaded=
"no"> 
17140         <autodoc>SetItemData(TreeItemId item, TreeItemData data)
</autodoc> 
17142           <param name=
"item" type=
"TreeItemId" default=
""/> 
17143           <param name=
"data" type=
"TreeItemData" default=
""/> 
17146       <method name=
"SetItemPyData" type=
"" overloaded=
"no"> 
17147         <autodoc>SetItemPyData(TreeItemId item, PyObject obj)
</autodoc> 
17149           <param name=
"item" type=
"TreeItemId" default=
""/> 
17150           <param name=
"obj" type=
"PyObject" default=
""/> 
17153       <method name=
"SetItemHasChildren" type=
"" overloaded=
"no"> 
17154         <autodoc>SetItemHasChildren(TreeItemId item, bool has=True)
</autodoc> 
17156           <param name=
"item" type=
"TreeItemId" default=
""/> 
17157           <param name=
"has" type=
"bool" default=
"True"/> 
17160       <method name=
"SetItemBold" type=
"" overloaded=
"no"> 
17161         <autodoc>SetItemBold(TreeItemId item, bool bold=True)
</autodoc> 
17163           <param name=
"item" type=
"TreeItemId" default=
""/> 
17164           <param name=
"bold" type=
"bool" default=
"True"/> 
17167       <method name=
"SetItemTextColour" type=
"" overloaded=
"no"> 
17168         <autodoc>SetItemTextColour(TreeItemId item, Colour col)
</autodoc> 
17170           <param name=
"item" type=
"TreeItemId" default=
""/> 
17171           <param name=
"col" type=
"Colour" default=
""/> 
17174       <method name=
"SetItemBackgroundColour" type=
"" overloaded=
"no"> 
17175         <autodoc>SetItemBackgroundColour(TreeItemId item, Colour col)
</autodoc> 
17177           <param name=
"item" type=
"TreeItemId" default=
""/> 
17178           <param name=
"col" type=
"Colour" default=
""/> 
17181       <method name=
"SetItemFont" type=
"" overloaded=
"no"> 
17182         <autodoc>SetItemFont(TreeItemId item, Font font)
</autodoc> 
17184           <param name=
"item" type=
"TreeItemId" default=
""/> 
17185           <param name=
"font" type=
"Font" default=
""/> 
17188       <method name=
"IsVisible" type=
"bool" overloaded=
"no"> 
17189         <autodoc>IsVisible(TreeItemId item) -
> bool
</autodoc> 
17191           <param name=
"item" type=
"TreeItemId" default=
""/> 
17194       <method name=
"ItemHasChildren" type=
"bool" overloaded=
"no"> 
17195         <autodoc>ItemHasChildren(TreeItemId item) -
> bool
</autodoc> 
17197           <param name=
"item" type=
"TreeItemId" default=
""/> 
17200       <method name=
"IsExpanded" type=
"bool" overloaded=
"no"> 
17201         <autodoc>IsExpanded(TreeItemId item) -
> bool
</autodoc> 
17203           <param name=
"item" type=
"TreeItemId" default=
""/> 
17206       <method name=
"IsSelected" type=
"bool" overloaded=
"no"> 
17207         <autodoc>IsSelected(TreeItemId item) -
> bool
</autodoc> 
17209           <param name=
"item" type=
"TreeItemId" default=
""/> 
17212       <method name=
"IsBold" type=
"bool" overloaded=
"no"> 
17213         <autodoc>IsBold(TreeItemId item) -
> bool
</autodoc> 
17215           <param name=
"item" type=
"TreeItemId" default=
""/> 
17218       <method name=
"GetChildrenCount" type=
"size_t" overloaded=
"no"> 
17219         <autodoc>GetChildrenCount(TreeItemId item, bool recursively=True) -
> size_t
</autodoc> 
17221           <param name=
"item" type=
"TreeItemId" default=
""/> 
17222           <param name=
"recursively" type=
"bool" default=
"True"/> 
17225       <method name=
"GetRootItem" type=
"TreeItemId" overloaded=
"no"> 
17226         <autodoc>GetRootItem() -
> TreeItemId
</autodoc> 
17228       <method name=
"GetSelection" type=
"TreeItemId" overloaded=
"no"> 
17229         <autodoc>GetSelection() -
> TreeItemId
</autodoc> 
17231       <method name=
"GetSelections" type=
"PyObject" overloaded=
"no"> 
17232         <autodoc>GetSelections() -
> PyObject
</autodoc> 
17234       <method name=
"GetItemParent" type=
"TreeItemId" overloaded=
"no"> 
17235         <autodoc>GetItemParent(TreeItemId item) -
> TreeItemId
</autodoc> 
17237           <param name=
"item" type=
"TreeItemId" default=
""/> 
17240       <method name=
"GetFirstChild" type=
"PyObject" overloaded=
"no"> 
17241         <autodoc>GetFirstChild(TreeItemId item) -
> PyObject
</autodoc> 
17243           <param name=
"item" type=
"TreeItemId" default=
""/> 
17246       <method name=
"GetNextChild" type=
"PyObject" overloaded=
"no"> 
17247         <autodoc>GetNextChild(TreeItemId item, wxTreeItemIdValue cookie) -
> PyObject
</autodoc> 
17249           <param name=
"item" type=
"TreeItemId" default=
""/> 
17250           <param name=
"cookie" type=
"wxTreeItemIdValue" default=
""/> 
17253       <method name=
"GetLastChild" type=
"TreeItemId" overloaded=
"no"> 
17254         <autodoc>GetLastChild(TreeItemId item) -
> TreeItemId
</autodoc> 
17256           <param name=
"item" type=
"TreeItemId" default=
""/> 
17259       <method name=
"GetNextSibling" type=
"TreeItemId" overloaded=
"no"> 
17260         <autodoc>GetNextSibling(TreeItemId item) -
> TreeItemId
</autodoc> 
17262           <param name=
"item" type=
"TreeItemId" default=
""/> 
17265       <method name=
"GetPrevSibling" type=
"TreeItemId" overloaded=
"no"> 
17266         <autodoc>GetPrevSibling(TreeItemId item) -
> TreeItemId
</autodoc> 
17268           <param name=
"item" type=
"TreeItemId" default=
""/> 
17271       <method name=
"GetFirstVisibleItem" type=
"TreeItemId" overloaded=
"no"> 
17272         <autodoc>GetFirstVisibleItem() -
> TreeItemId
</autodoc> 
17274       <method name=
"GetNextVisible" type=
"TreeItemId" overloaded=
"no"> 
17275         <autodoc>GetNextVisible(TreeItemId item) -
> TreeItemId
</autodoc> 
17277           <param name=
"item" type=
"TreeItemId" default=
""/> 
17280       <method name=
"GetPrevVisible" type=
"TreeItemId" overloaded=
"no"> 
17281         <autodoc>GetPrevVisible(TreeItemId item) -
> TreeItemId
</autodoc> 
17283           <param name=
"item" type=
"TreeItemId" default=
""/> 
17286       <method name=
"AddRoot" type=
"TreeItemId" overloaded=
"no"> 
17287         <autodoc>AddRoot(String text, int image=-
1, int selectedImage=-
1, TreeItemData data=None) -
> TreeItemId
</autodoc> 
17289           <param name=
"text" type=
"String" default=
""/> 
17290           <param name=
"image" type=
"int" default=
"-1"/> 
17291           <param name=
"selectedImage" type=
"int" default=
"-1"/> 
17292           <param name=
"data" type=
"TreeItemData" default=
"NULL"/> 
17295       <method name=
"PrependItem" type=
"TreeItemId" overloaded=
"no"> 
17296         <autodoc>PrependItem(TreeItemId parent, String text, int image=-
1, int selectedImage=-
1, 
 
17297     TreeItemData data=None) -
> TreeItemId
</autodoc> 
17299           <param name=
"parent" type=
"TreeItemId" default=
""/> 
17300           <param name=
"text" type=
"String" default=
""/> 
17301           <param name=
"image" type=
"int" default=
"-1"/> 
17302           <param name=
"selectedImage" type=
"int" default=
"-1"/> 
17303           <param name=
"data" type=
"TreeItemData" default=
"NULL"/> 
17306       <method name=
"InsertItem" type=
"TreeItemId" overloaded=
"no"> 
17307         <autodoc>InsertItem(TreeItemId parent, TreeItemId idPrevious, String text, 
 
17308     int image=-
1, int selectedImage=-
1, TreeItemData data=None) -
> TreeItemId
</autodoc> 
17310           <param name=
"parent" type=
"TreeItemId" default=
""/> 
17311           <param name=
"idPrevious" type=
"TreeItemId" default=
""/> 
17312           <param name=
"text" type=
"String" default=
""/> 
17313           <param name=
"image" type=
"int" default=
"-1"/> 
17314           <param name=
"selectedImage" type=
"int" default=
"-1"/> 
17315           <param name=
"data" type=
"TreeItemData" default=
"NULL"/> 
17318       <method name=
"InsertItemBefore" type=
"TreeItemId" overloaded=
"no"> 
17319         <autodoc>InsertItemBefore(TreeItemId parent, size_t index, String text, int image=-
1, 
 
17320     int selectedImage=-
1, TreeItemData data=None) -
> TreeItemId
</autodoc> 
17322           <param name=
"parent" type=
"TreeItemId" default=
""/> 
17323           <param name=
"index" type=
"size_t" default=
""/> 
17324           <param name=
"text" type=
"String" default=
""/> 
17325           <param name=
"image" type=
"int" default=
"-1"/> 
17326           <param name=
"selectedImage" type=
"int" default=
"-1"/> 
17327           <param name=
"data" type=
"TreeItemData" default=
"NULL"/> 
17330       <method name=
"AppendItem" type=
"TreeItemId" overloaded=
"no"> 
17331         <autodoc>AppendItem(TreeItemId parent, String text, int image=-
1, int selectedImage=-
1, 
 
17332     TreeItemData data=None) -
> TreeItemId
</autodoc> 
17334           <param name=
"parent" type=
"TreeItemId" default=
""/> 
17335           <param name=
"text" type=
"String" default=
""/> 
17336           <param name=
"image" type=
"int" default=
"-1"/> 
17337           <param name=
"selectedImage" type=
"int" default=
"-1"/> 
17338           <param name=
"data" type=
"TreeItemData" default=
"NULL"/> 
17341       <method name=
"Delete" type=
"" overloaded=
"no"> 
17342         <autodoc>Delete(TreeItemId item)
</autodoc> 
17344           <param name=
"item" type=
"TreeItemId" default=
""/> 
17347       <method name=
"DeleteChildren" type=
"" overloaded=
"no"> 
17348         <autodoc>DeleteChildren(TreeItemId item)
</autodoc> 
17350           <param name=
"item" type=
"TreeItemId" default=
""/> 
17353       <method name=
"DeleteAllItems" type=
"" overloaded=
"no"> 
17354         <autodoc>DeleteAllItems()
</autodoc> 
17356       <method name=
"Expand" type=
"" overloaded=
"no"> 
17357         <autodoc>Expand(TreeItemId item)
</autodoc> 
17359           <param name=
"item" type=
"TreeItemId" default=
""/> 
17362       <method name=
"Collapse" type=
"" overloaded=
"no"> 
17363         <autodoc>Collapse(TreeItemId item)
</autodoc> 
17365           <param name=
"item" type=
"TreeItemId" default=
""/> 
17368       <method name=
"CollapseAndReset" type=
"" overloaded=
"no"> 
17369         <autodoc>CollapseAndReset(TreeItemId item)
</autodoc> 
17371           <param name=
"item" type=
"TreeItemId" default=
""/> 
17374       <method name=
"Toggle" type=
"" overloaded=
"no"> 
17375         <autodoc>Toggle(TreeItemId item)
</autodoc> 
17377           <param name=
"item" type=
"TreeItemId" default=
""/> 
17380       <method name=
"Unselect" type=
"" overloaded=
"no"> 
17381         <autodoc>Unselect()
</autodoc> 
17383       <method name=
"UnselectAll" type=
"" overloaded=
"no"> 
17384         <autodoc>UnselectAll()
</autodoc> 
17386       <method name=
"SelectItem" type=
"" overloaded=
"no"> 
17387         <autodoc>SelectItem(TreeItemId item)
</autodoc> 
17389           <param name=
"item" type=
"TreeItemId" default=
""/> 
17392       <method name=
"EnsureVisible" type=
"" overloaded=
"no"> 
17393         <autodoc>EnsureVisible(TreeItemId item)
</autodoc> 
17395           <param name=
"item" type=
"TreeItemId" default=
""/> 
17398       <method name=
"ScrollTo" type=
"" overloaded=
"no"> 
17399         <autodoc>ScrollTo(TreeItemId item)
</autodoc> 
17401           <param name=
"item" type=
"TreeItemId" default=
""/> 
17404       <method name=
"EditLabel" type=
"" overloaded=
"no"> 
17405         <autodoc>EditLabel(TreeItemId item)
</autodoc> 
17407           <param name=
"item" type=
"TreeItemId" default=
""/> 
17410       <method name=
"GetEditControl" type=
"TextCtrl" overloaded=
"no"> 
17411         <autodoc>GetEditControl() -
> TextCtrl
</autodoc> 
17413       <method name=
"SortChildren" type=
"" overloaded=
"no"> 
17414         <autodoc>SortChildren(TreeItemId item)
</autodoc> 
17416           <param name=
"item" type=
"TreeItemId" default=
""/> 
17419       <method name=
"HitTest" type=
"TreeItemId" overloaded=
"no"> 
17420         <autodoc>HitTest(Point point) -
> (item, where)
</autodoc> 
17421         <docstring>Determine which item (if any) belongs the given point.  The
 
17422 coordinates specified are relative to the client area of tree ctrl
 
17423 and the where return value is set to a bitmask of wxTREE_HITTEST_xxx
 
17427           <param name=
"point" type=
"Point" default=
""/> 
17428           <param name=
"OUTPUT" type=
"int" default=
""/> 
17431       <method name=
"GetBoundingRect" type=
"PyObject" overloaded=
"no"> 
17432         <autodoc>GetBoundingRect(TreeItemId item, bool textOnly=False) -
> PyObject
</autodoc> 
17434           <param name=
"item" type=
"TreeItemId" default=
""/> 
17435           <param name=
"textOnly" type=
"bool" default=
"False"/> 
17440 #---------------------------------------------------------------------------
 
17442     <class name=
"GenericDirCtrl" oldname=
"wxGenericDirCtrl" module=
"controls"> 
17443       <baseclass name=
"Control"/> 
17444       <constructor name=
"GenericDirCtrl" overloaded=
"no"> 
17445         <autodoc>__init__(Window parent, int id=-
1, String dir=DirDialogDefaultFolderStr, 
 
17446     Point pos=DefaultPosition, Size size=DefaultSize, 
 
17447     long style=wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER, 
 
17448     String filter=EmptyString, 
 
17449     int defaultFilter=
0, String name=TreeCtrlNameStr) -
> GenericDirCtrl
</autodoc> 
17451           <param name=
"parent" type=
"Window" default=
""/> 
17452           <param name=
"id" type=
"int" default=
"-1"/> 
17453           <param name=
"dir" type=
"String" default=
"wxPyDirDialogDefaultFolderStr"/> 
17454           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
17455           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
17456           <param name=
"style" type=
"long" default=
"wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER"/> 
17457           <param name=
"filter" type=
"String" default=
"wxPyEmptyString"/> 
17458           <param name=
"defaultFilter" type=
"int" default=
"0"/> 
17459           <param name=
"name" type=
"String" default=
"wxPyTreeCtrlNameStr"/> 
17462       <constructor name=
"PreGenericDirCtrl" overloaded=
"no"> 
17463         <autodoc>PreGenericDirCtrl() -
> GenericDirCtrl
</autodoc> 
17465       <method name=
"Create" type=
"bool" overloaded=
"no"> 
17466         <autodoc>Create(Window parent, int id=-
1, String dir=DirDialogDefaultFolderStr, 
 
17467     Point pos=DefaultPosition, Size size=DefaultSize, 
 
17468     long style=wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER, 
 
17469     String filter=EmptyString, 
 
17470     int defaultFilter=
0, String name=TreeCtrlNameStr) -
> bool
</autodoc> 
17472           <param name=
"parent" type=
"Window" default=
""/> 
17473           <param name=
"id" type=
"int" default=
"-1"/> 
17474           <param name=
"dir" type=
"String" default=
"wxPyDirDialogDefaultFolderStr"/> 
17475           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
17476           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
17477           <param name=
"style" type=
"long" default=
"wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER"/> 
17478           <param name=
"filter" type=
"String" default=
"wxPyEmptyString"/> 
17479           <param name=
"defaultFilter" type=
"int" default=
"0"/> 
17480           <param name=
"name" type=
"String" default=
"wxPyTreeCtrlNameStr"/> 
17483       <method name=
"ExpandPath" type=
"bool" overloaded=
"no"> 
17484         <autodoc>ExpandPath(String path) -
> bool
</autodoc> 
17486           <param name=
"path" type=
"String" default=
""/> 
17489       <method name=
"GetDefaultPath" type=
"String" overloaded=
"no"> 
17490         <autodoc>GetDefaultPath() -
> String
</autodoc> 
17492       <method name=
"SetDefaultPath" type=
"" overloaded=
"no"> 
17493         <autodoc>SetDefaultPath(String path)
</autodoc> 
17495           <param name=
"path" type=
"String" default=
""/> 
17498       <method name=
"GetPath" type=
"String" overloaded=
"no"> 
17499         <autodoc>GetPath() -
> String
</autodoc> 
17501       <method name=
"GetFilePath" type=
"String" overloaded=
"no"> 
17502         <autodoc>GetFilePath() -
> String
</autodoc> 
17504       <method name=
"SetPath" type=
"" overloaded=
"no"> 
17505         <autodoc>SetPath(String path)
</autodoc> 
17507           <param name=
"path" type=
"String" default=
""/> 
17510       <method name=
"ShowHidden" type=
"" overloaded=
"no"> 
17511         <autodoc>ShowHidden(bool show)
</autodoc> 
17513           <param name=
"show" type=
"bool" default=
""/> 
17516       <method name=
"GetShowHidden" type=
"bool" overloaded=
"no"> 
17517         <autodoc>GetShowHidden() -
> bool
</autodoc> 
17519       <method name=
"GetFilter" type=
"String" overloaded=
"no"> 
17520         <autodoc>GetFilter() -
> String
</autodoc> 
17522       <method name=
"SetFilter" type=
"" overloaded=
"no"> 
17523         <autodoc>SetFilter(String filter)
</autodoc> 
17525           <param name=
"filter" type=
"String" default=
""/> 
17528       <method name=
"GetFilterIndex" type=
"int" overloaded=
"no"> 
17529         <autodoc>GetFilterIndex() -
> int
</autodoc> 
17531       <method name=
"SetFilterIndex" type=
"" overloaded=
"no"> 
17532         <autodoc>SetFilterIndex(int n)
</autodoc> 
17534           <param name=
"n" type=
"int" default=
""/> 
17537       <method name=
"GetRootId" type=
"TreeItemId" overloaded=
"no"> 
17538         <autodoc>GetRootId() -
> TreeItemId
</autodoc> 
17540       <method name=
"GetTreeCtrl" type=
"TreeCtrl" overloaded=
"no"> 
17541         <autodoc>GetTreeCtrl() -
> TreeCtrl
</autodoc> 
17543       <method name=
"GetFilterListCtrl" type=
"wxDirFilterListCtrl" overloaded=
"no"> 
17544         <autodoc>GetFilterListCtrl() -
> DirFilterListCtrl
</autodoc> 
17546       <method name=
"FindChild" type=
"TreeItemId" overloaded=
"no"> 
17547         <autodoc>FindChild(wxTreeItemId parentId, wxString path) -
> (item, done)
</autodoc> 
17548         <docstring>Find the child that matches the first part of 'path'.  E.g. if a child path is
 
17549 "/usr" and 'path' is "/usr/include" then the child for /usr is returned.
 
17550 If the path string has been used (we're at the leaf), done is set to True
 
17553           <param name=
"parentId" type=
"TreeItemId" default=
""/> 
17554           <param name=
"path" type=
"String" default=
""/> 
17555           <param name=
"OUTPUT" type=
"bool" default=
""/> 
17558       <method name=
"DoResize" type=
"" overloaded=
"no"> 
17559         <autodoc>DoResize()
</autodoc> 
17561       <method name=
"ReCreateTree" type=
"" overloaded=
"no"> 
17562         <autodoc>ReCreateTree()
</autodoc> 
17565     <class name=
"DirFilterListCtrl" oldname=
"wxDirFilterListCtrl" module=
"controls"> 
17566       <baseclass name=
"Choice"/> 
17567       <constructor name=
"DirFilterListCtrl" overloaded=
"no"> 
17568         <autodoc>__init__(GenericDirCtrl parent, int id=-
1, Point pos=DefaultPosition, 
 
17569     Size size=DefaultSize, long style=
0) -
> DirFilterListCtrl
</autodoc> 
17571           <param name=
"parent" type=
"GenericDirCtrl" default=
""/> 
17572           <param name=
"id" type=
"int" default=
"-1"/> 
17573           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
17574           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
17575           <param name=
"style" type=
"long" default=
"0"/> 
17578       <constructor name=
"PreDirFilterListCtrl" overloaded=
"no"> 
17579         <autodoc>PreDirFilterListCtrl() -
> DirFilterListCtrl
</autodoc> 
17581       <method name=
"Create" type=
"bool" overloaded=
"no"> 
17582         <autodoc>Create(GenericDirCtrl parent, int id=-
1, Point pos=DefaultPosition, 
 
17583     Size size=DefaultSize, long style=
0) -
> bool
</autodoc> 
17585           <param name=
"parent" type=
"GenericDirCtrl" default=
""/> 
17586           <param name=
"id" type=
"int" default=
"-1"/> 
17587           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
17588           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
17589           <param name=
"style" type=
"long" default=
"0"/> 
17592       <method name=
"FillFilterList" type=
"" overloaded=
"no"> 
17593         <autodoc>FillFilterList(String filter, int defaultFilter)
</autodoc> 
17595           <param name=
"filter" type=
"String" default=
""/> 
17596           <param name=
"defaultFilter" type=
"int" default=
""/> 
17601 #---------------------------------------------------------------------------
 
17603     <class name=
"PyControl" oldname=
"wxPyControl" module=
"controls"> 
17604       <baseclass name=
"Control"/> 
17605       <constructor name=
"PyControl" overloaded=
"no"> 
17606         <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
17607     long style=
0, Validator validator=DefaultValidator, 
 
17608     String name=ControlNameStr) -
> PyControl
</autodoc> 
17610           <param name=
"parent" type=
"Window" default=
""/> 
17611           <param name=
"id" type=
"int" default=
""/> 
17612           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
17613           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
17614           <param name=
"style" type=
"long" default=
"0"/> 
17615           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
17616           <param name=
"name" type=
"String" default=
"wxPyControlNameStr"/> 
17619       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
17620         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
17622           <param name=
"self" type=
"PyObject" default=
""/> 
17623           <param name=
"_class" type=
"PyObject" default=
""/> 
17626       <method name=
"base_DoMoveWindow" type=
"" overloaded=
"no"> 
17627         <autodoc>base_DoMoveWindow(int x, int y, int width, int height)
</autodoc> 
17629           <param name=
"x" type=
"int" default=
""/> 
17630           <param name=
"y" type=
"int" default=
""/> 
17631           <param name=
"width" type=
"int" default=
""/> 
17632           <param name=
"height" type=
"int" default=
""/> 
17635       <method name=
"base_DoSetSize" type=
"" overloaded=
"no"> 
17636         <autodoc>base_DoSetSize(int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)
</autodoc> 
17638           <param name=
"x" type=
"int" default=
""/> 
17639           <param name=
"y" type=
"int" default=
""/> 
17640           <param name=
"width" type=
"int" default=
""/> 
17641           <param name=
"height" type=
"int" default=
""/> 
17642           <param name=
"sizeFlags" type=
"int" default=
"wxSIZE_AUTO"/> 
17645       <method name=
"base_DoSetClientSize" type=
"" overloaded=
"no"> 
17646         <autodoc>base_DoSetClientSize(int width, int height)
</autodoc> 
17648           <param name=
"width" type=
"int" default=
""/> 
17649           <param name=
"height" type=
"int" default=
""/> 
17652       <method name=
"base_DoSetVirtualSize" type=
"" overloaded=
"no"> 
17653         <autodoc>base_DoSetVirtualSize(int x, int y)
</autodoc> 
17655           <param name=
"x" type=
"int" default=
""/> 
17656           <param name=
"y" type=
"int" default=
""/> 
17659       <method name=
"base_DoGetSize" type=
"" overloaded=
"no"> 
17660         <autodoc>base_DoGetSize() -
> (width, height)
</autodoc> 
17662           <param name=
"OUTPUT" type=
"int" default=
""/> 
17663           <param name=
"OUTPUT" type=
"int" default=
""/> 
17666       <method name=
"base_DoGetClientSize" type=
"" overloaded=
"no"> 
17667         <autodoc>base_DoGetClientSize() -
> (width, height)
</autodoc> 
17669           <param name=
"OUTPUT" type=
"int" default=
""/> 
17670           <param name=
"OUTPUT" type=
"int" default=
""/> 
17673       <method name=
"base_DoGetPosition" type=
"" overloaded=
"no"> 
17674         <autodoc>base_DoGetPosition() -
> (x,y)
</autodoc> 
17676           <param name=
"OUTPUT" type=
"int" default=
""/> 
17677           <param name=
"OUTPUT" type=
"int" default=
""/> 
17680       <method name=
"base_DoGetVirtualSize" type=
"Size" overloaded=
"no"> 
17681         <autodoc>base_DoGetVirtualSize() -
> Size
</autodoc> 
17683       <method name=
"base_DoGetBestSize" type=
"Size" overloaded=
"no"> 
17684         <autodoc>base_DoGetBestSize() -
> Size
</autodoc> 
17686       <method name=
"base_InitDialog" type=
"" overloaded=
"no"> 
17687         <autodoc>base_InitDialog()
</autodoc> 
17689       <method name=
"base_TransferDataToWindow" type=
"bool" overloaded=
"no"> 
17690         <autodoc>base_TransferDataToWindow() -
> bool
</autodoc> 
17692       <method name=
"base_TransferDataFromWindow" type=
"bool" overloaded=
"no"> 
17693         <autodoc>base_TransferDataFromWindow() -
> bool
</autodoc> 
17695       <method name=
"base_Validate" type=
"bool" overloaded=
"no"> 
17696         <autodoc>base_Validate() -
> bool
</autodoc> 
17698       <method name=
"base_AcceptsFocus" type=
"bool" overloaded=
"no"> 
17699         <autodoc>base_AcceptsFocus() -
> bool
</autodoc> 
17701       <method name=
"base_AcceptsFocusFromKeyboard" type=
"bool" overloaded=
"no"> 
17702         <autodoc>base_AcceptsFocusFromKeyboard() -
> bool
</autodoc> 
17704       <method name=
"base_GetMaxSize" type=
"Size" overloaded=
"no"> 
17705         <autodoc>base_GetMaxSize() -
> Size
</autodoc> 
17707       <method name=
"base_AddChild" type=
"" overloaded=
"no"> 
17708         <autodoc>base_AddChild(Window child)
</autodoc> 
17710           <param name=
"child" type=
"Window" default=
""/> 
17713       <method name=
"base_RemoveChild" type=
"" overloaded=
"no"> 
17714         <autodoc>base_RemoveChild(Window child)
</autodoc> 
17716           <param name=
"child" type=
"Window" default=
""/> 
17721 #---------------------------------------------------------------------------
 
17724 EVT_HELP = wx.PyEventBinder( wxEVT_HELP, 
1)
 
17725 EVT_HELP_RANGE = wx.PyEventBinder(  wxEVT_HELP, 
2)
 
17726 EVT_DETAILED_HELP = wx.PyEventBinder( wxEVT_DETAILED_HELP, 
1)
 
17727 EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 
2)
 
17729     <class name=
"HelpEvent" oldname=
"wxHelpEvent" module=
"controls"> 
17730       <baseclass name=
"CommandEvent"/> 
17731       <constructor name=
"HelpEvent" overloaded=
"no"> 
17732         <autodoc>__init__(wxEventType type=wxEVT_NULL, int winid=
0, Point pt=DefaultPosition) -
> HelpEvent
</autodoc> 
17734           <param name=
"type" type=
"wxEventType" default=
"wxEVT_NULL"/> 
17735           <param name=
"winid" type=
"int" default=
"0"/> 
17736           <param name=
"pt" type=
"Point" default=
"wxDefaultPosition"/> 
17739       <method name=
"GetPosition" type=
"Point" overloaded=
"no"> 
17740         <autodoc>GetPosition() -
> Point
</autodoc> 
17742       <method name=
"SetPosition" type=
"" overloaded=
"no"> 
17743         <autodoc>SetPosition(Point pos)
</autodoc> 
17745           <param name=
"pos" type=
"Point" default=
""/> 
17748       <method name=
"GetLink" type=
"String" overloaded=
"no"> 
17749         <autodoc>GetLink() -
> String
</autodoc> 
17751       <method name=
"SetLink" type=
"" overloaded=
"no"> 
17752         <autodoc>SetLink(String link)
</autodoc> 
17754           <param name=
"link" type=
"String" default=
""/> 
17757       <method name=
"GetTarget" type=
"String" overloaded=
"no"> 
17758         <autodoc>GetTarget() -
> String
</autodoc> 
17760       <method name=
"SetTarget" type=
"" overloaded=
"no"> 
17761         <autodoc>SetTarget(String target)
</autodoc> 
17763           <param name=
"target" type=
"String" default=
""/> 
17767     <class name=
"ContextHelp" oldname=
"wxContextHelp" module=
"controls"> 
17768       <baseclass name=
"Object"/> 
17769       <constructor name=
"ContextHelp" overloaded=
"no"> 
17770         <autodoc>__init__(Window window=None, bool doNow=True) -
> ContextHelp
</autodoc> 
17772           <param name=
"window" type=
"Window" default=
"NULL"/> 
17773           <param name=
"doNow" type=
"bool" default=
"True"/> 
17776       <destructor name=
"~wxContextHelp" overloaded=
"no"> 
17777         <autodoc>__del__()
</autodoc> 
17779       <method name=
"BeginContextHelp" type=
"bool" overloaded=
"no"> 
17780         <autodoc>BeginContextHelp(Window window=None) -
> bool
</autodoc> 
17782           <param name=
"window" type=
"Window" default=
"NULL"/> 
17785       <method name=
"EndContextHelp" type=
"bool" overloaded=
"no"> 
17786         <autodoc>EndContextHelp() -
> bool
</autodoc> 
17789     <class name=
"ContextHelpButton" oldname=
"wxContextHelpButton" module=
"controls"> 
17790       <baseclass name=
"BitmapButton"/> 
17791       <constructor name=
"ContextHelpButton" overloaded=
"no"> 
17792         <autodoc>__init__(Window parent, int id=ID_CONTEXT_HELP, Point pos=DefaultPosition, 
 
17793     Size size=DefaultSize, long style=BU_AUTODRAW) -
> ContextHelpButton
</autodoc> 
17795           <param name=
"parent" type=
"Window" default=
""/> 
17796           <param name=
"id" type=
"int" default=
"wxID_CONTEXT_HELP"/> 
17797           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
17798           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
17799           <param name=
"style" type=
"long" default=
"wxBU_AUTODRAW"/> 
17803     <class name=
"HelpProvider" oldname=
"wxHelpProvider" module=
"controls"> 
17804       <staticmethod name=
"Set" type=
"HelpProvider" overloaded=
"no"> 
17805         <autodoc>HelpProvider.Set(HelpProvider helpProvider) -
> HelpProvider
</autodoc> 
17807           <param name=
"helpProvider" type=
"HelpProvider" default=
""/> 
17810       <staticmethod name=
"Get" type=
"HelpProvider" overloaded=
"no"> 
17811         <autodoc>HelpProvider.Get() -
> HelpProvider
</autodoc> 
17813       <method name=
"GetHelp" type=
"String" overloaded=
"no"> 
17814         <autodoc>GetHelp(Window window) -
> String
</autodoc> 
17816           <param name=
"window" type=
"Window" default=
""/> 
17819       <method name=
"ShowHelp" type=
"bool" overloaded=
"no"> 
17820         <autodoc>ShowHelp(Window window) -
> bool
</autodoc> 
17822           <param name=
"window" type=
"Window" default=
""/> 
17825       <method name=
"AddHelp" type=
"" overloaded=
"no"> 
17826         <autodoc>AddHelp(Window window, String text)
</autodoc> 
17828           <param name=
"window" type=
"Window" default=
""/> 
17829           <param name=
"text" type=
"String" default=
""/> 
17832       <method name=
"AddHelpById" type=
"" overloaded=
"no"> 
17833         <autodoc>AddHelpById(int id, String text)
</autodoc> 
17835           <param name=
"id" type=
"int" default=
""/> 
17836           <param name=
"text" type=
"String" default=
""/> 
17839       <method name=
"Destroy" type=
"" overloaded=
"no"> 
17840         <autodoc>Destroy()
</autodoc> 
17843     <class name=
"SimpleHelpProvider" oldname=
"wxSimpleHelpProvider" module=
"controls"> 
17844       <baseclass name=
"HelpProvider"/> 
17845       <constructor name=
"SimpleHelpProvider" overloaded=
"no"> 
17846         <autodoc>__init__() -
> SimpleHelpProvider
</autodoc> 
17850 #---------------------------------------------------------------------------
 
17852     <class name=
"DragImage" oldname=
"wxGenericDragImage" module=
"controls"> 
17853       <baseclass name=
"Object"/> 
17854       <constructor name=
"wxGenericDragImage" overloaded=
"no"> 
17855         <autodoc>__init__(Bitmap image, Cursor cursor=wxNullCursor) -
> DragImage
</autodoc> 
17857           <param name=
"image" type=
"Bitmap" default=
""/> 
17858           <param name=
"cursor" type=
"Cursor" default=
"wxNullCursor"/> 
17861       <constructor name=
"DragIcon" overloaded=
"no"> 
17862         <autodoc>DragIcon(Icon image, Cursor cursor=wxNullCursor) -
> DragImage
</autodoc> 
17864           <param name=
"image" type=
"Icon" default=
""/> 
17865           <param name=
"cursor" type=
"Cursor" default=
"wxNullCursor"/> 
17868       <constructor name=
"DragString" overloaded=
"no"> 
17869         <autodoc>DragString(String str, Cursor cursor=wxNullCursor) -
> DragImage
</autodoc> 
17871           <param name=
"str" type=
"String" default=
""/> 
17872           <param name=
"cursor" type=
"Cursor" default=
"wxNullCursor"/> 
17875       <constructor name=
"DragTreeItem" overloaded=
"no"> 
17876         <autodoc>DragTreeItem(TreeCtrl treeCtrl, TreeItemId id) -
> DragImage
</autodoc> 
17878           <param name=
"treeCtrl" type=
"TreeCtrl" default=
""/> 
17879           <param name=
"id" type=
"TreeItemId" default=
""/> 
17882       <constructor name=
"DragListItem" overloaded=
"no"> 
17883         <autodoc>DragListItem(ListCtrl listCtrl, long id) -
> DragImage
</autodoc> 
17885           <param name=
"listCtrl" type=
"ListCtrl" default=
""/> 
17886           <param name=
"id" type=
"long" default=
""/> 
17889       <destructor name=
"~wxGenericDragImage" overloaded=
"no"> 
17890         <autodoc>__del__()
</autodoc> 
17892       <method name=
"SetBackingBitmap" type=
"" overloaded=
"no"> 
17893         <autodoc>SetBackingBitmap(Bitmap bitmap)
</autodoc> 
17895           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
17898       <method name=
"BeginDrag" type=
"bool" overloaded=
"no"> 
17899         <autodoc>BeginDrag(Point hotspot, Window window, bool fullScreen=False, 
 
17900     Rect rect=None) -
> bool
</autodoc> 
17902           <param name=
"hotspot" type=
"Point" default=
""/> 
17903           <param name=
"window" type=
"Window" default=
""/> 
17904           <param name=
"fullScreen" type=
"bool" default=
"False"/> 
17905           <param name=
"rect" type=
"Rect" default=
"NULL"/> 
17908       <method name=
"BeginDragBounded" type=
"bool" overloaded=
"no"> 
17909         <autodoc>BeginDragBounded(Point hotspot, Window window, Window boundingWindow) -
> bool
</autodoc> 
17911           <param name=
"hotspot" type=
"Point" default=
""/> 
17912           <param name=
"window" type=
"Window" default=
""/> 
17913           <param name=
"boundingWindow" type=
"Window" default=
""/> 
17916       <method name=
"EndDrag" type=
"bool" overloaded=
"no"> 
17917         <autodoc>EndDrag() -
> bool
</autodoc> 
17919       <method name=
"Move" type=
"bool" overloaded=
"no"> 
17920         <autodoc>Move(Point pt) -
> bool
</autodoc> 
17922           <param name=
"pt" type=
"Point" default=
""/> 
17925       <method name=
"Show" type=
"bool" overloaded=
"no"> 
17926         <autodoc>Show() -
> bool
</autodoc> 
17928       <method name=
"Hide" type=
"bool" overloaded=
"no"> 
17929         <autodoc>Hide() -
> bool
</autodoc> 
17931       <method name=
"GetImageRect" type=
"Rect" overloaded=
"no"> 
17932         <autodoc>GetImageRect(Point pos) -
> Rect
</autodoc> 
17934           <param name=
"pos" type=
"Point" default=
""/> 
17937       <method name=
"DoDrawImage" type=
"bool" overloaded=
"no"> 
17938         <autodoc>DoDrawImage(DC dc, Point pos) -
> bool
</autodoc> 
17940           <param name=
"dc" type=
"DC" default=
""/> 
17941           <param name=
"pos" type=
"Point" default=
""/> 
17944       <method name=
"UpdateBackingFromWindow" type=
"bool" overloaded=
"no"> 
17945         <autodoc>UpdateBackingFromWindow(DC windowDC, MemoryDC destDC, Rect sourceRect, Rect destRect) -
> bool
</autodoc> 
17947           <param name=
"windowDC" type=
"DC" default=
""/> 
17948           <param name=
"destDC" type=
"MemoryDC" default=
""/> 
17949           <param name=
"sourceRect" type=
"Rect" default=
""/> 
17950           <param name=
"destRect" type=
"Rect" default=
""/> 
17953       <method name=
"RedrawImage" type=
"bool" overloaded=
"no"> 
17954         <autodoc>RedrawImage(Point oldPos, Point newPos, bool eraseOld, bool drawNew) -
> bool
</autodoc> 
17956           <param name=
"oldPos" type=
"Point" default=
""/> 
17957           <param name=
"newPos" type=
"Point" default=
""/> 
17958           <param name=
"eraseOld" type=
"bool" default=
""/> 
17959           <param name=
"drawNew" type=
"bool" default=
""/> 
17964   <module name=
"misc"> 
17965     <import name=
"core"/> 
17966     <pythoncode> wx = core 
</pythoncode> 
17968 #---------------------------------------------------------------------------
 
17970     <class name=
"SystemSettings" oldname=
"wxSystemSettings" module=
"misc"> 
17971       <staticmethod name=
"GetColour" type=
"Colour" overloaded=
"no"> 
17972         <autodoc>SystemSettings.GetColour(int index) -
> Colour
</autodoc> 
17974           <param name=
"index" type=
"wxSystemColour" default=
""/> 
17977       <staticmethod name=
"GetFont" type=
"Font" overloaded=
"no"> 
17978         <autodoc>SystemSettings.GetFont(int index) -
> Font
</autodoc> 
17980           <param name=
"index" type=
"wxSystemFont" default=
""/> 
17983       <staticmethod name=
"GetMetric" type=
"int" overloaded=
"no"> 
17984         <autodoc>SystemSettings.GetMetric(int index) -
> int
</autodoc> 
17986           <param name=
"index" type=
"wxSystemMetric" default=
""/> 
17989       <staticmethod name=
"HasFeature" type=
"bool" overloaded=
"no"> 
17990         <autodoc>SystemSettings.HasFeature(int index) -
> bool
</autodoc> 
17992           <param name=
"index" type=
"wxSystemFeature" default=
""/> 
17995       <staticmethod name=
"GetScreenType" type=
"wxSystemScreenType" overloaded=
"no"> 
17996         <autodoc>SystemSettings.GetScreenType() -
> int
</autodoc> 
17998       <staticmethod name=
"SetScreenType" type=
"" overloaded=
"no"> 
17999         <autodoc>SystemSettings.SetScreenType(int screen)
</autodoc> 
18001           <param name=
"screen" type=
"wxSystemScreenType" default=
""/> 
18005     <class name=
"SystemOptions" oldname=
"wxSystemOptions" module=
"misc"> 
18006       <baseclass name=
"Object"/> 
18007       <constructor name=
"SystemOptions" overloaded=
"no"> 
18008         <autodoc>__init__() -
> SystemOptions
</autodoc> 
18010       <staticmethod name=
"SetOption" type=
"" overloaded=
"no"> 
18011         <autodoc>SystemOptions.SetOption(String name, String value)
</autodoc> 
18013           <param name=
"name" type=
"String" default=
""/> 
18014           <param name=
"value" type=
"String" default=
""/> 
18017       <staticmethod name=
"SetOptionInt" type=
"" overloaded=
"no"> 
18018         <autodoc>SystemOptions.SetOptionInt(String name, int value)
</autodoc> 
18020           <param name=
"name" type=
"String" default=
""/> 
18021           <param name=
"value" type=
"int" default=
""/> 
18024       <staticmethod name=
"GetOption" type=
"String" overloaded=
"no"> 
18025         <autodoc>SystemOptions.GetOption(String name) -
> String
</autodoc> 
18027           <param name=
"name" type=
"String" default=
""/> 
18030       <staticmethod name=
"GetOptionInt" type=
"int" overloaded=
"no"> 
18031         <autodoc>SystemOptions.GetOptionInt(String name) -
> int
</autodoc> 
18033           <param name=
"name" type=
"String" default=
""/> 
18036       <staticmethod name=
"HasOption" type=
"bool" overloaded=
"no"> 
18037         <autodoc>SystemOptions.HasOption(String name) -
> bool
</autodoc> 
18039           <param name=
"name" type=
"String" default=
""/> 
18044 #---------------------------------------------------------------------------
 
18046     <method name=
"NewId" oldname=
"wxNewId" type=
"long" overloaded=
"no"> 
18047       <autodoc>NewId() -
> long
</autodoc> 
18049     <method name=
"RegisterId" oldname=
"wxRegisterId" type=
"" overloaded=
"no"> 
18050       <autodoc>RegisterId(long id)
</autodoc> 
18052         <param name=
"id" type=
"long" default=
""/> 
18055     <method name=
"GetCurrentId" oldname=
"wxGetCurrentId" type=
"long" overloaded=
"no"> 
18056       <autodoc>GetCurrentId() -
> long
</autodoc> 
18058     <method name=
"Bell" oldname=
"wxBell" type=
"" overloaded=
"no"> 
18059       <autodoc>Bell()
</autodoc> 
18061     <method name=
"EndBusyCursor" oldname=
"wxEndBusyCursor" type=
"" overloaded=
"no"> 
18062       <autodoc>EndBusyCursor()
</autodoc> 
18064     <method name=
"GetElapsedTime" oldname=
"wxGetElapsedTime" type=
"long" overloaded=
"no"> 
18065       <autodoc>GetElapsedTime(bool resetTimer=True) -
> long
</autodoc> 
18067         <param name=
"resetTimer" type=
"bool" default=
"True"/> 
18070     <method name=
"GetMousePosition" oldname=
"wxGetMousePosition" type=
"" overloaded=
"no"> 
18071       <autodoc>GetMousePosition() -
> (x,y)
</autodoc> 
18073         <param name=
"OUTPUT" type=
"int" default=
""/> 
18074         <param name=
"OUTPUT" type=
"int" default=
""/> 
18077     <method name=
"IsBusy" oldname=
"wxIsBusy" type=
"bool" overloaded=
"no"> 
18078       <autodoc>IsBusy() -
> bool
</autodoc> 
18080     <method name=
"Now" oldname=
"wxNow" type=
"String" overloaded=
"no"> 
18081       <autodoc>Now() -
> String
</autodoc> 
18083     <method name=
"Shell" oldname=
"wxShell" type=
"bool" overloaded=
"no"> 
18084       <autodoc>Shell(String command=EmptyString) -
> bool
</autodoc> 
18086         <param name=
"command" type=
"String" default=
"wxPyEmptyString"/> 
18089     <method name=
"StartTimer" oldname=
"wxStartTimer" type=
"" overloaded=
"no"> 
18090       <autodoc>StartTimer()
</autodoc> 
18092     <method name=
"GetOsVersion" oldname=
"wxGetOsVersion" type=
"int" overloaded=
"no"> 
18093       <autodoc>GetOsVersion() -
> (platform, major, minor)
</autodoc> 
18095         <param name=
"OUTPUT" type=
"int" default=
""/> 
18096         <param name=
"OUTPUT" type=
"int" default=
""/> 
18099     <method name=
"GetOsDescription" oldname=
"wxGetOsDescription" type=
"String" overloaded=
"no"> 
18100       <autodoc>GetOsDescription() -
> String
</autodoc> 
18102     <method name=
"GetFreeMemory" oldname=
"wxGetFreeMemory" type=
"long" overloaded=
"no"> 
18103       <autodoc>GetFreeMemory() -
> long
</autodoc> 
18105     <method name=
"Shutdown" oldname=
"wxShutdown" type=
"bool" overloaded=
"no"> 
18106       <autodoc>Shutdown(int wFlags) -
> bool
</autodoc> 
18108         <param name=
"wFlags" type=
"wxShutdownFlags" default=
""/> 
18111     <method name=
"Sleep" oldname=
"wxSleep" type=
"" overloaded=
"no"> 
18112       <autodoc>Sleep(int secs)
</autodoc> 
18114         <param name=
"secs" type=
"int" default=
""/> 
18117     <method name=
"Usleep" oldname=
"wxUsleep" type=
"" overloaded=
"no"> 
18118       <autodoc>Usleep(unsigned long milliseconds)
</autodoc> 
18120         <param name=
"milliseconds" type=
"unsigned long" default=
""/> 
18123     <method name=
"EnableTopLevelWindows" oldname=
"wxEnableTopLevelWindows" type=
"" overloaded=
"no"> 
18124       <autodoc>EnableTopLevelWindows(bool enable)
</autodoc> 
18126         <param name=
"enable" type=
"bool" default=
""/> 
18129     <method name=
"StripMenuCodes" oldname=
"wxStripMenuCodes" type=
"String" overloaded=
"no"> 
18130       <autodoc>StripMenuCodes(String in) -
> String
</autodoc> 
18132         <param name=
"in" type=
"String" default=
""/> 
18135     <method name=
"GetEmailAddress" oldname=
"wxGetEmailAddress" type=
"String" overloaded=
"no"> 
18136       <autodoc>GetEmailAddress() -
> String
</autodoc> 
18138     <method name=
"GetHostName" oldname=
"wxGetHostName" type=
"String" overloaded=
"no"> 
18139       <autodoc>GetHostName() -
> String
</autodoc> 
18141     <method name=
"GetFullHostName" oldname=
"wxGetFullHostName" type=
"String" overloaded=
"no"> 
18142       <autodoc>GetFullHostName() -
> String
</autodoc> 
18144     <method name=
"GetUserId" oldname=
"wxGetUserId" type=
"String" overloaded=
"no"> 
18145       <autodoc>GetUserId() -
> String
</autodoc> 
18147     <method name=
"GetUserName" oldname=
"wxGetUserName" type=
"String" overloaded=
"no"> 
18148       <autodoc>GetUserName() -
> String
</autodoc> 
18150     <method name=
"GetHomeDir" oldname=
"wxGetHomeDir" type=
"String" overloaded=
"no"> 
18151       <autodoc>GetHomeDir() -
> String
</autodoc> 
18153     <method name=
"GetUserHome" oldname=
"wxGetUserHome" type=
"String" overloaded=
"no"> 
18154       <autodoc>GetUserHome(String user=EmptyString) -
> String
</autodoc> 
18156         <param name=
"user" type=
"String" default=
"wxPyEmptyString"/> 
18159     <method name=
"GetProcessId" oldname=
"wxGetProcessId" type=
"unsigned long" overloaded=
"no"> 
18160       <autodoc>GetProcessId() -
> unsigned long
</autodoc> 
18162     <method name=
"Trap" oldname=
"wxTrap" type=
"" overloaded=
"no"> 
18163       <autodoc>Trap()
</autodoc> 
18165     <method name=
"FileSelector" oldname=
"wxFileSelector" type=
"String" overloaded=
"no"> 
18166       <autodoc>FileSelector(String message=FileSelectorPromptStr, String default_path=EmptyString, 
 
18167     String default_filename=EmptyString, 
 
18168     String default_extension=EmptyString, 
 
18169     String wildcard=FileSelectorDefaultWildcardStr, 
 
18170     int flags=
0, Window parent=None, int x=-
1, 
 
18171     int y=-
1) -
> String
</autodoc> 
18173         <param name=
"message" type=
"String" default=
"wxPyFileSelectorPromptStr"/> 
18174         <param name=
"default_path" type=
"String" default=
"wxPyEmptyString"/> 
18175         <param name=
"default_filename" type=
"String" default=
"wxPyEmptyString"/> 
18176         <param name=
"default_extension" type=
"String" default=
"wxPyEmptyString"/> 
18177         <param name=
"wildcard" type=
"String" default=
"wxPyFileSelectorDefaultWildcardStr"/> 
18178         <param name=
"flags" type=
"int" default=
"0"/> 
18179         <param name=
"parent" type=
"Window" default=
"NULL"/> 
18180         <param name=
"x" type=
"int" default=
"-1"/> 
18181         <param name=
"y" type=
"int" default=
"-1"/> 
18184     <method name=
"LoadFileSelector" oldname=
"wxLoadFileSelector" type=
"String" overloaded=
"no"> 
18185       <autodoc>LoadFileSelector(String what, String extension, String default_name=EmptyString, 
 
18186     Window parent=None) -
> String
</autodoc> 
18188         <param name=
"what" type=
"String" default=
""/> 
18189         <param name=
"extension" type=
"String" default=
""/> 
18190         <param name=
"default_name" type=
"String" default=
"wxPyEmptyString"/> 
18191         <param name=
"parent" type=
"Window" default=
"NULL"/> 
18194     <method name=
"SaveFileSelector" oldname=
"wxSaveFileSelector" type=
"String" overloaded=
"no"> 
18195       <autodoc>SaveFileSelector(String what, String extension, String default_name=EmptyString, 
 
18196     Window parent=None) -
> String
</autodoc> 
18198         <param name=
"what" type=
"String" default=
""/> 
18199         <param name=
"extension" type=
"String" default=
""/> 
18200         <param name=
"default_name" type=
"String" default=
"wxPyEmptyString"/> 
18201         <param name=
"parent" type=
"Window" default=
"NULL"/> 
18204     <method name=
"DirSelector" oldname=
"wxDirSelector" type=
"String" overloaded=
"no"> 
18205       <autodoc>DirSelector(String message=DirSelectorPromptStr, String defaultPath=EmptyString, 
 
18206     long style=DD_DEFAULT_STYLE, 
 
18207     Point pos=DefaultPosition, Window parent=None) -
> String
</autodoc> 
18209         <param name=
"message" type=
"String" default=
"wxPyDirSelectorPromptStr"/> 
18210         <param name=
"defaultPath" type=
"String" default=
"wxPyEmptyString"/> 
18211         <param name=
"style" type=
"long" default=
"wxDD_DEFAULT_STYLE"/> 
18212         <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
18213         <param name=
"parent" type=
"Window" default=
"NULL"/> 
18216     <method name=
"GetTextFromUser" oldname=
"wxGetTextFromUser" type=
"String" overloaded=
"no"> 
18217       <autodoc>GetTextFromUser(String message, String caption=EmptyString, String default_value=EmptyString, 
 
18218     Window parent=None, 
 
18219     int x=-
1, int y=-
1, bool centre=True) -
> String
</autodoc> 
18221         <param name=
"message" type=
"String" default=
""/> 
18222         <param name=
"caption" type=
"String" default=
"wxPyEmptyString"/> 
18223         <param name=
"default_value" type=
"String" default=
"wxPyEmptyString"/> 
18224         <param name=
"parent" type=
"Window" default=
"NULL"/> 
18225         <param name=
"x" type=
"int" default=
"-1"/> 
18226         <param name=
"y" type=
"int" default=
"-1"/> 
18227         <param name=
"centre" type=
"bool" default=
"True"/> 
18230     <method name=
"GetPasswordFromUser" oldname=
"wxGetPasswordFromUser" type=
"String" overloaded=
"no"> 
18231       <autodoc>GetPasswordFromUser(String message, String caption=EmptyString, String default_value=EmptyString, 
 
18232     Window parent=None) -
> String
</autodoc> 
18234         <param name=
"message" type=
"String" default=
""/> 
18235         <param name=
"caption" type=
"String" default=
"wxPyEmptyString"/> 
18236         <param name=
"default_value" type=
"String" default=
"wxPyEmptyString"/> 
18237         <param name=
"parent" type=
"Window" default=
"NULL"/> 
18240     <method name=
"GetSingleChoice" oldname=
"wxGetSingleChoice" type=
"String" overloaded=
"no"> 
18241       <autodoc>GetSingleChoice(String message, String caption, int choices, String choices_array, 
 
18242     Window parent=None, int x=-
1, 
 
18243     int y=-
1, bool centre=True, int width=
150, int height=
200) -
> String
</autodoc> 
18245         <param name=
"message" type=
"String" default=
""/> 
18246         <param name=
"caption" type=
"String" default=
""/> 
18247         <param name=
"choices" type=
"int" default=
""/> 
18248         <param name=
"choices_array" type=
"String" default=
""/> 
18249         <param name=
"parent" type=
"Window" default=
"NULL"/> 
18250         <param name=
"x" type=
"int" default=
"-1"/> 
18251         <param name=
"y" type=
"int" default=
"-1"/> 
18252         <param name=
"centre" type=
"bool" default=
"True"/> 
18253         <param name=
"width" type=
"int" default=
"150"/> 
18254         <param name=
"height" type=
"int" default=
"200"/> 
18257     <method name=
"GetSingleChoiceIndex" oldname=
"wxGetSingleChoiceIndex" type=
"int" overloaded=
"no"> 
18258       <autodoc>GetSingleChoiceIndex(String message, String caption, int choices, String choices_array, 
 
18259     Window parent=None, int x=-
1, 
 
18260     int y=-
1, bool centre=True, int width=
150, int height=
200) -
> int
</autodoc> 
18262         <param name=
"message" type=
"String" default=
""/> 
18263         <param name=
"caption" type=
"String" default=
""/> 
18264         <param name=
"choices" type=
"int" default=
""/> 
18265         <param name=
"choices_array" type=
"String" default=
""/> 
18266         <param name=
"parent" type=
"Window" default=
"NULL"/> 
18267         <param name=
"x" type=
"int" default=
"-1"/> 
18268         <param name=
"y" type=
"int" default=
"-1"/> 
18269         <param name=
"centre" type=
"bool" default=
"True"/> 
18270         <param name=
"width" type=
"int" default=
"150"/> 
18271         <param name=
"height" type=
"int" default=
"200"/> 
18274     <method name=
"MessageBox" oldname=
"wxMessageBox" type=
"int" overloaded=
"no"> 
18275       <autodoc>MessageBox(String message, String caption=EmptyString, int style=wxOK|wxCENTRE, 
 
18276     Window parent=None, int x=-
1, 
 
18277     int y=-
1) -
> int
</autodoc> 
18279         <param name=
"message" type=
"String" default=
""/> 
18280         <param name=
"caption" type=
"String" default=
"wxPyEmptyString"/> 
18281         <param name=
"style" type=
"int" default=
"wxOK|wxCENTRE"/> 
18282         <param name=
"parent" type=
"Window" default=
"NULL"/> 
18283         <param name=
"x" type=
"int" default=
"-1"/> 
18284         <param name=
"y" type=
"int" default=
"-1"/> 
18287     <method name=
"GetNumberFromUser" oldname=
"wxGetNumberFromUser" type=
"long" overloaded=
"no"> 
18288       <autodoc>GetNumberFromUser(String message, String prompt, String caption, long value, 
 
18289     long min=
0, long max=
100, Window parent=None, 
 
18290     Point pos=DefaultPosition) -
> long
</autodoc> 
18292         <param name=
"message" type=
"String" default=
""/> 
18293         <param name=
"prompt" type=
"String" default=
""/> 
18294         <param name=
"caption" type=
"String" default=
""/> 
18295         <param name=
"value" type=
"long" default=
""/> 
18296         <param name=
"min" type=
"long" default=
"0"/> 
18297         <param name=
"max" type=
"long" default=
"100"/> 
18298         <param name=
"parent" type=
"Window" default=
"NULL"/> 
18299         <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
18302     <method name=
"ColourDisplay" oldname=
"wxColourDisplay" type=
"bool" overloaded=
"no"> 
18303       <autodoc>ColourDisplay() -
> bool
</autodoc> 
18305     <method name=
"DisplayDepth" oldname=
"wxDisplayDepth" type=
"int" overloaded=
"no"> 
18306       <autodoc>DisplayDepth() -
> int
</autodoc> 
18308     <method name=
"GetDisplayDepth" oldname=
"wxGetDisplayDepth" type=
"int" overloaded=
"no"> 
18309       <autodoc>GetDisplayDepth() -
> int
</autodoc> 
18311     <method name=
"DisplaySize" oldname=
"wxDisplaySize" type=
"" overloaded=
"no"> 
18312       <autodoc>DisplaySize() -
> (width, height)
</autodoc> 
18314         <param name=
"OUTPUT" type=
"int" default=
""/> 
18315         <param name=
"OUTPUT" type=
"int" default=
""/> 
18318     <method name=
"GetDisplaySize" oldname=
"wxGetDisplaySize" type=
"Size" overloaded=
"no"> 
18319       <autodoc>GetDisplaySize() -
> Size
</autodoc> 
18321     <method name=
"DisplaySizeMM" oldname=
"wxDisplaySizeMM" type=
"" overloaded=
"no"> 
18322       <autodoc>DisplaySizeMM() -
> (width, height)
</autodoc> 
18324         <param name=
"OUTPUT" type=
"int" default=
""/> 
18325         <param name=
"OUTPUT" type=
"int" default=
""/> 
18328     <method name=
"GetDisplaySizeMM" oldname=
"wxGetDisplaySizeMM" type=
"Size" overloaded=
"no"> 
18329       <autodoc>GetDisplaySizeMM() -
> Size
</autodoc> 
18331     <method name=
"ClientDisplayRect" oldname=
"wxClientDisplayRect" type=
"" overloaded=
"no"> 
18332       <autodoc>ClientDisplayRect() -
> (x, y, width, height)
</autodoc> 
18334         <param name=
"OUTPUT" type=
"int" default=
""/> 
18335         <param name=
"OUTPUT" type=
"int" default=
""/> 
18336         <param name=
"OUTPUT" type=
"int" default=
""/> 
18337         <param name=
"OUTPUT" type=
"int" default=
""/> 
18340     <method name=
"GetClientDisplayRect" oldname=
"wxGetClientDisplayRect" type=
"Rect" overloaded=
"no"> 
18341       <autodoc>GetClientDisplayRect() -
> Rect
</autodoc> 
18343     <method name=
"SetCursor" oldname=
"wxSetCursor" type=
"" overloaded=
"no"> 
18344       <autodoc>SetCursor(Cursor cursor)
</autodoc> 
18346         <param name=
"cursor" type=
"Cursor" default=
""/> 
18349     <method name=
"BeginBusyCursor" oldname=
"wxBeginBusyCursor" type=
"" overloaded=
"no"> 
18350       <autodoc>BeginBusyCursor(Cursor cursor=wxHOURGLASS_CURSOR)
</autodoc> 
18352         <param name=
"cursor" type=
"Cursor" default=
"wxHOURGLASS_CURSOR"/> 
18355     <method name=
"GetActiveWindow" oldname=
"wxGetActiveWindow" type=
"Window" overloaded=
"no"> 
18356       <autodoc>GetActiveWindow() -
> Window
</autodoc> 
18358     <method name=
"GenericFindWindowAtPoint" oldname=
"wxGenericFindWindowAtPoint" type=
"Window" overloaded=
"no"> 
18359       <autodoc>GenericFindWindowAtPoint(Point pt) -
> Window
</autodoc> 
18361         <param name=
"pt" type=
"Point" default=
""/> 
18364     <method name=
"FindWindowAtPoint" oldname=
"wxFindWindowAtPoint" type=
"Window" overloaded=
"no"> 
18365       <autodoc>FindWindowAtPoint(Point pt) -
> Window
</autodoc> 
18367         <param name=
"pt" type=
"Point" default=
""/> 
18370     <method name=
"GetTopLevelParent" oldname=
"wxGetTopLevelParent" type=
"Window" overloaded=
"no"> 
18371       <autodoc>GetTopLevelParent(Window win) -
> Window
</autodoc> 
18373         <param name=
"win" type=
"Window" default=
""/> 
18376     <method name=
"GetKeyState" oldname=
"wxGetKeyState" type=
"bool" overloaded=
"no"> 
18377       <autodoc>GetKeyState(int key) -
> bool
</autodoc> 
18379         <param name=
"key" type=
"wxKeyCode" default=
""/> 
18382     <method name=
"WakeUpMainThread" oldname=
"wxWakeUpMainThread" type=
"" overloaded=
"no"> 
18383       <autodoc>WakeUpMainThread()
</autodoc> 
18385     <method name=
"MutexGuiEnter" oldname=
"wxMutexGuiEnter" type=
"" overloaded=
"no"> 
18386       <autodoc>MutexGuiEnter()
</autodoc> 
18388     <method name=
"MutexGuiLeave" oldname=
"wxMutexGuiLeave" type=
"" overloaded=
"no"> 
18389       <autodoc>MutexGuiLeave()
</autodoc> 
18391     <class name=
"MutexGuiLocker" oldname=
"wxMutexGuiLocker" module=
"misc"> 
18392       <constructor name=
"MutexGuiLocker" overloaded=
"no"> 
18393         <autodoc>__init__() -
> MutexGuiLocker
</autodoc> 
18395       <destructor name=
"~wxMutexGuiLocker" overloaded=
"no"> 
18396         <autodoc>__del__()
</autodoc> 
18399     <method name=
"Thread_IsMain" oldname=
"wxThread_IsMain" type=
"bool" overloaded=
"no"> 
18400       <autodoc>Thread_IsMain() -
> bool
</autodoc> 
18403 #---------------------------------------------------------------------------
 
18405     <class name=
"ToolTip" oldname=
"wxToolTip" module=
"misc"> 
18406       <baseclass name=
"Object"/> 
18407       <constructor name=
"ToolTip" overloaded=
"no"> 
18408         <autodoc>__init__(String tip) -
> ToolTip
</autodoc> 
18410           <param name=
"tip" type=
"String" default=
""/> 
18413       <method name=
"SetTip" type=
"" overloaded=
"no"> 
18414         <autodoc>SetTip(String tip)
</autodoc> 
18416           <param name=
"tip" type=
"String" default=
""/> 
18419       <method name=
"GetTip" type=
"String" overloaded=
"no"> 
18420         <autodoc>GetTip() -
> String
</autodoc> 
18422       <method name=
"GetWindow" type=
"Window" overloaded=
"no"> 
18423         <autodoc>GetWindow() -
> Window
</autodoc> 
18425       <staticmethod name=
"Enable" type=
"" overloaded=
"no"> 
18426         <autodoc>ToolTip.Enable(bool flag)
</autodoc> 
18428           <param name=
"flag" type=
"bool" default=
""/> 
18431       <staticmethod name=
"SetDelay" type=
"" overloaded=
"no"> 
18432         <autodoc>ToolTip.SetDelay(long milliseconds)
</autodoc> 
18434           <param name=
"milliseconds" type=
"long" default=
""/> 
18438     <class name=
"Caret" oldname=
"wxCaret" module=
"misc"> 
18439       <constructor name=
"Caret" overloaded=
"no"> 
18440         <autodoc>__init__(Window window, Size size) -
> Caret
</autodoc> 
18442           <param name=
"window" type=
"Window" default=
""/> 
18443           <param name=
"size" type=
"Size" default=
""/> 
18446       <destructor name=
"~wxCaret" overloaded=
"no"> 
18447         <autodoc>__del__()
</autodoc> 
18449       <method name=
"IsOk" type=
"bool" overloaded=
"no"> 
18450         <autodoc>IsOk() -
> bool
</autodoc> 
18452       <method name=
"IsVisible" type=
"bool" overloaded=
"no"> 
18453         <autodoc>IsVisible() -
> bool
</autodoc> 
18455       <method name=
"GetPosition" type=
"Point" overloaded=
"no"> 
18456         <autodoc>GetPosition() -
> Point
</autodoc> 
18458       <method name=
"GetPositionTuple" type=
"" overloaded=
"no"> 
18459         <autodoc>GetPositionTuple() -
> (x,y)
</autodoc> 
18461           <param name=
"OUTPUT" type=
"int" default=
""/> 
18462           <param name=
"OUTPUT" type=
"int" default=
""/> 
18465       <method name=
"GetSize" type=
"Size" overloaded=
"no"> 
18466         <autodoc>GetSize() -
> Size
</autodoc> 
18468       <method name=
"GetSizeTuple" type=
"" overloaded=
"no"> 
18469         <autodoc>GetSizeTuple() -
> (width, height)
</autodoc> 
18471           <param name=
"OUTPUT" type=
"int" default=
""/> 
18472           <param name=
"OUTPUT" type=
"int" default=
""/> 
18475       <method name=
"GetWindow" type=
"Window" overloaded=
"no"> 
18476         <autodoc>GetWindow() -
> Window
</autodoc> 
18478       <method name=
"MoveXY" type=
"" overloaded=
"no"> 
18479         <autodoc>MoveXY(int x, int y)
</autodoc> 
18481           <param name=
"x" type=
"int" default=
""/> 
18482           <param name=
"y" type=
"int" default=
""/> 
18485       <method name=
"Move" type=
"" overloaded=
"no"> 
18486         <autodoc>Move(Point pt)
</autodoc> 
18488           <param name=
"pt" type=
"Point" default=
""/> 
18491       <method name=
"SetSizeWH" type=
"" overloaded=
"no"> 
18492         <autodoc>SetSizeWH(int width, int height)
</autodoc> 
18494           <param name=
"width" type=
"int" default=
""/> 
18495           <param name=
"height" type=
"int" default=
""/> 
18498       <method name=
"SetSize" type=
"" overloaded=
"no"> 
18499         <autodoc>SetSize(Size size)
</autodoc> 
18501           <param name=
"size" type=
"Size" default=
""/> 
18504       <method name=
"Show" type=
"" overloaded=
"no"> 
18505         <autodoc>Show(int show=True)
</autodoc> 
18507           <param name=
"show" type=
"int" default=
"True"/> 
18510       <method name=
"Hide" type=
"" overloaded=
"no"> 
18511         <autodoc>Hide()
</autodoc> 
18514     <method name=
"Caret_GetBlinkTime" oldname=
"wxCaret_GetBlinkTime" type=
"int" overloaded=
"no"> 
18515       <autodoc>Caret_GetBlinkTime() -
> int
</autodoc> 
18517     <method name=
"Caret_SetBlinkTime" oldname=
"wxCaret_SetBlinkTime" type=
"" overloaded=
"no"> 
18518       <autodoc>Caret_SetBlinkTime(int milliseconds)
</autodoc> 
18520         <param name=
"milliseconds" type=
"int" default=
""/> 
18523     <class name=
"BusyCursor" oldname=
"wxBusyCursor" module=
"misc"> 
18524       <constructor name=
"BusyCursor" overloaded=
"no"> 
18525         <autodoc>__init__(Cursor cursor=wxHOURGLASS_CURSOR) -
> BusyCursor
</autodoc> 
18527           <param name=
"cursor" type=
"Cursor" default=
"wxHOURGLASS_CURSOR"/> 
18530       <destructor name=
"~wxBusyCursor" overloaded=
"no"> 
18531         <autodoc>__del__()
</autodoc> 
18534     <class name=
"WindowDisabler" oldname=
"wxWindowDisabler" module=
"misc"> 
18535       <constructor name=
"WindowDisabler" overloaded=
"no"> 
18536         <autodoc>__init__(Window winToSkip=None) -
> WindowDisabler
</autodoc> 
18538           <param name=
"winToSkip" type=
"Window" default=
"NULL"/> 
18541       <destructor name=
"~wxWindowDisabler" overloaded=
"no"> 
18542         <autodoc>__del__()
</autodoc> 
18545     <class name=
"BusyInfo" oldname=
"wxBusyInfo" module=
"misc"> 
18546       <baseclass name=
"Object"/> 
18547       <constructor name=
"BusyInfo" overloaded=
"no"> 
18548         <autodoc>__init__(String message) -
> BusyInfo
</autodoc> 
18550           <param name=
"message" type=
"String" default=
""/> 
18553       <destructor name=
"~wxBusyInfo" overloaded=
"no"> 
18554         <autodoc>__del__()
</autodoc> 
18557     <class name=
"StopWatch" oldname=
"wxStopWatch" module=
"misc"> 
18558       <constructor name=
"StopWatch" overloaded=
"no"> 
18559         <autodoc>__init__() -
> StopWatch
</autodoc> 
18561       <method name=
"Start" type=
"" overloaded=
"no"> 
18562         <autodoc>Start(long t0=
0)
</autodoc> 
18564           <param name=
"t0" type=
"long" default=
"0"/> 
18567       <method name=
"Pause" type=
"" overloaded=
"no"> 
18568         <autodoc>Pause()
</autodoc> 
18570       <method name=
"Resume" type=
"" overloaded=
"no"> 
18571         <autodoc>Resume()
</autodoc> 
18573       <method name=
"Time" type=
"long" overloaded=
"no"> 
18574         <autodoc>Time() -
> long
</autodoc> 
18577     <class name=
"FileHistory" oldname=
"wxFileHistory" module=
"misc"> 
18578       <baseclass name=
"Object"/> 
18579       <constructor name=
"FileHistory" overloaded=
"no"> 
18580         <autodoc>__init__(int maxFiles=
9) -
> FileHistory
</autodoc> 
18582           <param name=
"maxFiles" type=
"int" default=
"9"/> 
18585       <destructor name=
"~wxFileHistory" overloaded=
"no"> 
18586         <autodoc>__del__()
</autodoc> 
18588       <method name=
"AddFileToHistory" type=
"" overloaded=
"no"> 
18589         <autodoc>AddFileToHistory(String file)
</autodoc> 
18591           <param name=
"file" type=
"String" default=
""/> 
18594       <method name=
"RemoveFileFromHistory" type=
"" overloaded=
"no"> 
18595         <autodoc>RemoveFileFromHistory(int i)
</autodoc> 
18597           <param name=
"i" type=
"int" default=
""/> 
18600       <method name=
"GetMaxFiles" type=
"int" overloaded=
"no"> 
18601         <autodoc>GetMaxFiles() -
> int
</autodoc> 
18603       <method name=
"UseMenu" type=
"" overloaded=
"no"> 
18604         <autodoc>UseMenu(Menu menu)
</autodoc> 
18606           <param name=
"menu" type=
"Menu" default=
""/> 
18609       <method name=
"RemoveMenu" type=
"" overloaded=
"no"> 
18610         <autodoc>RemoveMenu(Menu menu)
</autodoc> 
18612           <param name=
"menu" type=
"Menu" default=
""/> 
18615       <method name=
"Load" type=
"" overloaded=
"no"> 
18616         <autodoc>Load(ConfigBase config)
</autodoc> 
18618           <param name=
"config" type=
"wxConfigBase" default=
""/> 
18621       <method name=
"Save" type=
"" overloaded=
"no"> 
18622         <autodoc>Save(ConfigBase config)
</autodoc> 
18624           <param name=
"config" type=
"wxConfigBase" default=
""/> 
18627       <method name=
"AddFilesToMenu" type=
"" overloaded=
"no"> 
18628         <autodoc>AddFilesToMenu()
</autodoc> 
18630       <method name=
"AddFilesToThisMenu" type=
"" overloaded=
"no"> 
18631         <autodoc>AddFilesToThisMenu(Menu menu)
</autodoc> 
18633           <param name=
"menu" type=
"Menu" default=
""/> 
18636       <method name=
"GetHistoryFile" type=
"String" overloaded=
"no"> 
18637         <autodoc>GetHistoryFile(int i) -
> String
</autodoc> 
18639           <param name=
"i" type=
"int" default=
""/> 
18642       <method name=
"GetCount" type=
"int" overloaded=
"no"> 
18643         <autodoc>GetCount() -
> int
</autodoc> 
18646     <class name=
"SingleInstanceChecker" oldname=
"wxSingleInstanceChecker" module=
"misc"> 
18647       <constructor name=
"SingleInstanceChecker" overloaded=
"no"> 
18648         <autodoc>__init__(String name, String path=EmptyString) -
> SingleInstanceChecker
</autodoc> 
18650           <param name=
"name" type=
"String" default=
""/> 
18651           <param name=
"path" type=
"String" default=
"wxPyEmptyString"/> 
18654       <constructor name=
"PreSingleInstanceChecker" overloaded=
"no"> 
18655         <autodoc>PreSingleInstanceChecker() -
> SingleInstanceChecker
</autodoc> 
18657       <destructor name=
"~wxSingleInstanceChecker" overloaded=
"no"> 
18658         <autodoc>__del__()
</autodoc> 
18660       <method name=
"Create" type=
"bool" overloaded=
"no"> 
18661         <autodoc>Create(String name, String path=EmptyString) -
> bool
</autodoc> 
18663           <param name=
"name" type=
"String" default=
""/> 
18664           <param name=
"path" type=
"String" default=
"wxPyEmptyString"/> 
18667       <method name=
"IsAnotherRunning" type=
"bool" overloaded=
"no"> 
18668         <autodoc>IsAnotherRunning() -
> bool
</autodoc> 
18671     <method name=
"DrawWindowOnDC" oldname=
"wxDrawWindowOnDC" type=
"" overloaded=
"no"> 
18672       <autodoc>DrawWindowOnDC(Window window, DC dc, int method)
</autodoc> 
18674         <param name=
"window" type=
"Window" default=
""/> 
18675         <param name=
"dc" type=
"DC" default=
""/> 
18676         <param name=
"method" type=
"int" default=
""/> 
18680 #---------------------------------------------------------------------------
 
18682     <class name=
"TipProvider" oldname=
"wxTipProvider" module=
"misc"> 
18683       <destructor name=
"~wxTipProvider" overloaded=
"no"> 
18684         <autodoc>__del__()
</autodoc> 
18686       <method name=
"GetTip" type=
"String" overloaded=
"no"> 
18687         <autodoc>GetTip() -
> String
</autodoc> 
18689       <method name=
"GetCurrentTip" type=
"size_t" overloaded=
"no"> 
18690         <autodoc>GetCurrentTip() -
> size_t
</autodoc> 
18692       <method name=
"PreprocessTip" type=
"String" overloaded=
"no"> 
18693         <autodoc>PreprocessTip(String tip) -
> String
</autodoc> 
18695           <param name=
"tip" type=
"String" default=
""/> 
18699     <class name=
"PyTipProvider" oldname=
"wxPyTipProvider" module=
"misc"> 
18700       <baseclass name=
"TipProvider"/> 
18701       <constructor name=
"PyTipProvider" overloaded=
"no"> 
18702         <autodoc>__init__(size_t currentTip) -
> PyTipProvider
</autodoc> 
18704           <param name=
"currentTip" type=
"size_t" default=
""/> 
18707       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
18708         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
18710           <param name=
"self" type=
"PyObject" default=
""/> 
18711           <param name=
"_class" type=
"PyObject" default=
""/> 
18715     <method name=
"ShowTip" oldname=
"wxShowTip" type=
"bool" overloaded=
"no"> 
18716       <autodoc>ShowTip(Window parent, TipProvider tipProvider, bool showAtStartup=True) -
> bool
</autodoc> 
18718         <param name=
"parent" type=
"Window" default=
""/> 
18719         <param name=
"tipProvider" type=
"TipProvider" default=
""/> 
18720         <param name=
"showAtStartup" type=
"bool" default=
"True"/> 
18723     <method name=
"CreateFileTipProvider" oldname=
"wxCreateFileTipProvider" type=
"TipProvider" overloaded=
"no"> 
18724       <autodoc>CreateFileTipProvider(String filename, size_t currentTip) -
> TipProvider
</autodoc> 
18726         <param name=
"filename" type=
"String" default=
""/> 
18727         <param name=
"currentTip" type=
"size_t" default=
""/> 
18731 #---------------------------------------------------------------------------
 
18733     <class name=
"Timer" oldname=
"wxPyTimer" module=
"misc"> 
18734       <baseclass name=
"EvtHandler"/> 
18735       <constructor name=
"wxPyTimer" overloaded=
"no"> 
18736         <autodoc>__init__(EvtHandler owner=None, int id=-
1) -
> Timer
</autodoc> 
18738           <param name=
"owner" type=
"EvtHandler" default=
"NULL"/> 
18739           <param name=
"id" type=
"int" default=
"-1"/> 
18742       <destructor name=
"~wxPyTimer" overloaded=
"no"> 
18743         <autodoc>__del__()
</autodoc> 
18745       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
18746         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
18748           <param name=
"self" type=
"PyObject" default=
""/> 
18749           <param name=
"_class" type=
"PyObject" default=
""/> 
18752       <method name=
"SetOwner" type=
"" overloaded=
"no"> 
18753         <autodoc>SetOwner(EvtHandler owner, int id=-
1)
</autodoc> 
18755           <param name=
"owner" type=
"EvtHandler" default=
""/> 
18756           <param name=
"id" type=
"int" default=
"-1"/> 
18759       <method name=
"Start" type=
"bool" overloaded=
"no"> 
18760         <autodoc>Start(int milliseconds=-
1, bool oneShot=False) -
> bool
</autodoc> 
18762           <param name=
"milliseconds" type=
"int" default=
"-1"/> 
18763           <param name=
"oneShot" type=
"bool" default=
"False"/> 
18766       <method name=
"Stop" type=
"" overloaded=
"no"> 
18767         <autodoc>Stop()
</autodoc> 
18769       <method name=
"IsRunning" type=
"bool" overloaded=
"no"> 
18770         <autodoc>IsRunning() -
> bool
</autodoc> 
18772       <method name=
"GetInterval" type=
"int" overloaded=
"no"> 
18773         <autodoc>GetInterval() -
> int
</autodoc> 
18775       <method name=
"IsOneShot" type=
"bool" overloaded=
"no"> 
18776         <autodoc>IsOneShot() -
> bool
</autodoc> 
18778       <method name=
"GetId" type=
"int" overloaded=
"no"> 
18779         <autodoc>GetId() -
> int
</autodoc> 
18783 # For backwards compatibility with 
2.4 
18784 class PyTimer(Timer):
 
18785     def __init__(self, notify):
 
18786         Timer.__init__(self)
 
18787         self.notify = notify
 
18794 EVT_TIMER = wx.PyEventBinder( wxEVT_TIMER, 
1 )
 
18797     <class name=
"TimerEvent" oldname=
"wxTimerEvent" module=
"misc"> 
18798       <baseclass name=
"Event"/> 
18799       <constructor name=
"TimerEvent" overloaded=
"no"> 
18800         <autodoc>__init__(int timerid=
0, int interval=
0) -
> TimerEvent
</autodoc> 
18802           <param name=
"timerid" type=
"int" default=
"0"/> 
18803           <param name=
"interval" type=
"int" default=
"0"/> 
18806       <method name=
"GetInterval" type=
"int" overloaded=
"no"> 
18807         <autodoc>GetInterval() -
> int
</autodoc> 
18810     <class name=
"TimerRunner" oldname=
"wxTimerRunner" module=
"misc"> 
18811       <constructor name=
"TimerRunner" overloaded=
"yes"> 
18813           <param name=
"timer" type=
"wxTimer" default=
""/> 
18816       <constructor name=
"TimerRunner" overloaded=
"yes"> 
18817         <autodoc>__init__(wxTimer timer) -
> TimerRunner
 
18818 __init__(wxTimer timer, int milli, bool oneShot=False) -
> TimerRunner
</autodoc> 
18820           <param name=
"timer" type=
"wxTimer" default=
""/> 
18821           <param name=
"milli" type=
"int" default=
""/> 
18822           <param name=
"oneShot" type=
"bool" default=
"False"/> 
18825       <destructor name=
"~wxTimerRunner" overloaded=
"no"> 
18826         <autodoc>__del__()
</autodoc> 
18828       <method name=
"Start" type=
"" overloaded=
"no"> 
18829         <autodoc>Start(int milli, bool oneShot=False)
</autodoc> 
18831           <param name=
"milli" type=
"int" default=
""/> 
18832           <param name=
"oneShot" type=
"bool" default=
"False"/> 
18837 #---------------------------------------------------------------------------
 
18839     <class name=
"Log" oldname=
"wxLog" module=
"misc"> 
18840       <constructor name=
"Log" overloaded=
"no"> 
18841         <autodoc>__init__() -
> Log
</autodoc> 
18843       <staticmethod name=
"IsEnabled" type=
"bool" overloaded=
"no"> 
18844         <autodoc>Log.IsEnabled() -
> bool
</autodoc> 
18846       <staticmethod name=
"EnableLogging" type=
"bool" overloaded=
"no"> 
18847         <autodoc>Log.EnableLogging(bool doIt=True) -
> bool
</autodoc> 
18849           <param name=
"doIt" type=
"bool" default=
"True"/> 
18852       <staticmethod name=
"OnLog" type=
"" overloaded=
"no"> 
18853         <autodoc>Log.OnLog(wxLogLevel level, wxChar szString, time_t t)
</autodoc> 
18855           <param name=
"level" type=
"wxLogLevel" default=
""/> 
18856           <param name=
"szString" type=
"wxChar" default=
""/> 
18857           <param name=
"t" type=
"time_t" default=
""/> 
18860       <method name=
"Flush" type=
"" overloaded=
"no"> 
18861         <autodoc>Flush()
</autodoc> 
18863       <staticmethod name=
"FlushActive" type=
"" overloaded=
"no"> 
18864         <autodoc>Log.FlushActive()
</autodoc> 
18866       <staticmethod name=
"GetActiveTarget" type=
"Log" overloaded=
"no"> 
18867         <autodoc>Log.GetActiveTarget() -
> Log
</autodoc> 
18869       <staticmethod name=
"SetActiveTarget" type=
"Log" overloaded=
"no"> 
18870         <autodoc>Log.SetActiveTarget(Log pLogger) -
> Log
</autodoc> 
18872           <param name=
"pLogger" type=
"Log" default=
""/> 
18875       <staticmethod name=
"Suspend" type=
"" overloaded=
"no"> 
18876         <autodoc>Log.Suspend()
</autodoc> 
18878       <staticmethod name=
"Resume" type=
"" overloaded=
"no"> 
18879         <autodoc>Log.Resume()
</autodoc> 
18881       <staticmethod name=
"SetVerbose" type=
"" overloaded=
"no"> 
18882         <autodoc>Log.SetVerbose(bool bVerbose=True)
</autodoc> 
18884           <param name=
"bVerbose" type=
"bool" default=
"True"/> 
18887       <staticmethod name=
"SetLogLevel" type=
"" overloaded=
"no"> 
18888         <autodoc>Log.SetLogLevel(wxLogLevel logLevel)
</autodoc> 
18890           <param name=
"logLevel" type=
"wxLogLevel" default=
""/> 
18893       <staticmethod name=
"DontCreateOnDemand" type=
"" overloaded=
"no"> 
18894         <autodoc>Log.DontCreateOnDemand()
</autodoc> 
18896       <staticmethod name=
"SetTraceMask" type=
"" overloaded=
"no"> 
18897         <autodoc>Log.SetTraceMask(wxTraceMask ulMask)
</autodoc> 
18899           <param name=
"ulMask" type=
"wxTraceMask" default=
""/> 
18902       <staticmethod name=
"AddTraceMask" type=
"" overloaded=
"no"> 
18903         <autodoc>Log.AddTraceMask(String str)
</autodoc> 
18905           <param name=
"str" type=
"String" default=
""/> 
18908       <staticmethod name=
"RemoveTraceMask" type=
"" overloaded=
"no"> 
18909         <autodoc>Log.RemoveTraceMask(String str)
</autodoc> 
18911           <param name=
"str" type=
"String" default=
""/> 
18914       <staticmethod name=
"ClearTraceMasks" type=
"" overloaded=
"no"> 
18915         <autodoc>Log.ClearTraceMasks()
</autodoc> 
18917       <staticmethod name=
"GetTraceMasks" type=
"wxArrayString" overloaded=
"no"> 
18918         <autodoc>Log.GetTraceMasks() -
> wxArrayString
</autodoc> 
18920       <staticmethod name=
"SetTimestamp" type=
"" overloaded=
"no"> 
18921         <autodoc>Log.SetTimestamp(wxChar ts)
</autodoc> 
18923           <param name=
"ts" type=
"wxChar" default=
""/> 
18926       <staticmethod name=
"GetVerbose" type=
"bool" overloaded=
"no"> 
18927         <autodoc>Log.GetVerbose() -
> bool
</autodoc> 
18929       <staticmethod name=
"GetTraceMask" type=
"wxTraceMask" overloaded=
"no"> 
18930         <autodoc>Log.GetTraceMask() -
> wxTraceMask
</autodoc> 
18932       <staticmethod name=
"IsAllowedTraceMask" type=
"bool" overloaded=
"no"> 
18933         <autodoc>Log.IsAllowedTraceMask(wxChar mask) -
> bool
</autodoc> 
18935           <param name=
"mask" type=
"wxChar" default=
""/> 
18938       <staticmethod name=
"GetLogLevel" type=
"wxLogLevel" overloaded=
"no"> 
18939         <autodoc>Log.GetLogLevel() -
> wxLogLevel
</autodoc> 
18941       <staticmethod name=
"GetTimestamp" type=
"wxChar" overloaded=
"no"> 
18942         <autodoc>Log.GetTimestamp() -
> wxChar
</autodoc> 
18944       <staticmethod name=
"TimeStamp" type=
"String" overloaded=
"no"> 
18945         <autodoc>Log.TimeStamp() -
> String
</autodoc> 
18947       <method name=
"Destroy" type=
"" overloaded=
"no"> 
18948         <autodoc>Destroy()
</autodoc> 
18951     <class name=
"LogStderr" oldname=
"wxLogStderr" module=
"misc"> 
18952       <baseclass name=
"Log"/> 
18953       <constructor name=
"LogStderr" overloaded=
"no"> 
18954         <autodoc>__init__() -
> LogStderr
</autodoc> 
18957     <class name=
"LogTextCtrl" oldname=
"wxLogTextCtrl" module=
"misc"> 
18958       <baseclass name=
"Log"/> 
18959       <constructor name=
"LogTextCtrl" overloaded=
"no"> 
18960         <autodoc>__init__(wxTextCtrl pTextCtrl) -
> LogTextCtrl
</autodoc> 
18962           <param name=
"pTextCtrl" type=
"TextCtrl" default=
""/> 
18966     <class name=
"LogGui" oldname=
"wxLogGui" module=
"misc"> 
18967       <baseclass name=
"Log"/> 
18968       <constructor name=
"LogGui" overloaded=
"no"> 
18969         <autodoc>__init__() -
> LogGui
</autodoc> 
18972     <class name=
"LogWindow" oldname=
"wxLogWindow" module=
"misc"> 
18973       <baseclass name=
"Log"/> 
18974       <constructor name=
"LogWindow" overloaded=
"no"> 
18975         <autodoc>__init__(wxFrame pParent, String szTitle, bool bShow=True, bool bPassToOld=True) -
> LogWindow
</autodoc> 
18977           <param name=
"pParent" type=
"Frame" default=
""/> 
18978           <param name=
"szTitle" type=
"String" default=
""/> 
18979           <param name=
"bShow" type=
"bool" default=
"True"/> 
18980           <param name=
"bPassToOld" type=
"bool" default=
"True"/> 
18983       <method name=
"Show" type=
"" overloaded=
"no"> 
18984         <autodoc>Show(bool bShow=True)
</autodoc> 
18986           <param name=
"bShow" type=
"bool" default=
"True"/> 
18989       <method name=
"GetFrame" type=
"Frame" overloaded=
"no"> 
18990         <autodoc>GetFrame() -
> wxFrame
</autodoc> 
18992       <method name=
"GetOldLog" type=
"Log" overloaded=
"no"> 
18993         <autodoc>GetOldLog() -
> Log
</autodoc> 
18995       <method name=
"IsPassingMessages" type=
"bool" overloaded=
"no"> 
18996         <autodoc>IsPassingMessages() -
> bool
</autodoc> 
18998       <method name=
"PassMessages" type=
"" overloaded=
"no"> 
18999         <autodoc>PassMessages(bool bDoPass)
</autodoc> 
19001           <param name=
"bDoPass" type=
"bool" default=
""/> 
19005     <class name=
"LogChain" oldname=
"wxLogChain" module=
"misc"> 
19006       <baseclass name=
"Log"/> 
19007       <constructor name=
"LogChain" overloaded=
"no"> 
19008         <autodoc>__init__(Log logger) -
> LogChain
</autodoc> 
19010           <param name=
"logger" type=
"Log" default=
""/> 
19013       <method name=
"SetLog" type=
"" overloaded=
"no"> 
19014         <autodoc>SetLog(Log logger)
</autodoc> 
19016           <param name=
"logger" type=
"Log" default=
""/> 
19019       <method name=
"PassMessages" type=
"" overloaded=
"no"> 
19020         <autodoc>PassMessages(bool bDoPass)
</autodoc> 
19022           <param name=
"bDoPass" type=
"bool" default=
""/> 
19025       <method name=
"IsPassingMessages" type=
"bool" overloaded=
"no"> 
19026         <autodoc>IsPassingMessages() -
> bool
</autodoc> 
19028       <method name=
"GetOldLog" type=
"Log" overloaded=
"no"> 
19029         <autodoc>GetOldLog() -
> Log
</autodoc> 
19032     <method name=
"SysErrorCode" oldname=
"wxSysErrorCode" type=
"unsigned long" overloaded=
"no"> 
19033       <autodoc>SysErrorCode() -
> unsigned long
</autodoc> 
19035     <method name=
"SysErrorMsg" oldname=
"wxSysErrorMsg" type=
"String" overloaded=
"no"> 
19036       <autodoc>SysErrorMsg(unsigned long nErrCode=
0) -
> String
</autodoc> 
19038         <param name=
"nErrCode" type=
"unsigned long" default=
"0"/> 
19041     <method name=
"LogFatalError" oldname=
"wxLogFatalError" type=
"" overloaded=
"no"> 
19042       <autodoc>LogFatalError(String msg)
</autodoc> 
19044         <param name=
"msg" type=
"String" default=
""/> 
19047     <method name=
"LogError" oldname=
"wxLogError" type=
"" overloaded=
"no"> 
19048       <autodoc>LogError(String msg)
</autodoc> 
19050         <param name=
"msg" type=
"String" default=
""/> 
19053     <method name=
"LogWarning" oldname=
"wxLogWarning" type=
"" overloaded=
"no"> 
19054       <autodoc>LogWarning(String msg)
</autodoc> 
19056         <param name=
"msg" type=
"String" default=
""/> 
19059     <method name=
"LogMessage" oldname=
"wxLogMessage" type=
"" overloaded=
"no"> 
19060       <autodoc>LogMessage(String msg)
</autodoc> 
19062         <param name=
"msg" type=
"String" default=
""/> 
19065     <method name=
"LogInfo" oldname=
"wxLogInfo" type=
"" overloaded=
"no"> 
19066       <autodoc>LogInfo(String msg)
</autodoc> 
19068         <param name=
"msg" type=
"String" default=
""/> 
19071     <method name=
"LogDebug" oldname=
"wxLogDebug" type=
"" overloaded=
"no"> 
19072       <autodoc>LogDebug(String msg)
</autodoc> 
19074         <param name=
"msg" type=
"String" default=
""/> 
19077     <method name=
"LogVerbose" oldname=
"wxLogVerbose" type=
"" overloaded=
"no"> 
19078       <autodoc>LogVerbose(String msg)
</autodoc> 
19080         <param name=
"msg" type=
"String" default=
""/> 
19083     <method name=
"LogStatus" oldname=
"wxLogStatus" type=
"" overloaded=
"no"> 
19084       <autodoc>LogStatus(String msg)
</autodoc> 
19086         <param name=
"msg" type=
"String" default=
""/> 
19089     <method name=
"LogStatusFrame" oldname=
"wxLogStatus" type=
"" overloaded=
"no"> 
19090       <autodoc>LogStatusFrame(wxFrame pFrame, String msg)
</autodoc> 
19092         <param name=
"pFrame" type=
"Frame" default=
""/> 
19093         <param name=
"msg" type=
"String" default=
""/> 
19096     <method name=
"LogSysError" oldname=
"wxLogSysError" type=
"" overloaded=
"no"> 
19097       <autodoc>LogSysError(String msg)
</autodoc> 
19099         <param name=
"msg" type=
"String" default=
""/> 
19102     <method name=
"LogTrace" oldname=
"wxLogTrace" type=
"" overloaded=
"yes"> 
19104         <param name=
"mask" type=
"unsigned long" default=
""/> 
19105         <param name=
"msg" type=
"String" default=
""/> 
19108     <method name=
"LogTrace" oldname=
"wxLogTrace" type=
"" overloaded=
"yes"> 
19109       <autodoc>LogTrace(unsigned long mask, String msg)
 
19110 LogTrace(String mask, String msg)
</autodoc> 
19112         <param name=
"mask" type=
"String" default=
""/> 
19113         <param name=
"msg" type=
"String" default=
""/> 
19116     <method name=
"LogGeneric" oldname=
"wxLogGeneric" type=
"" overloaded=
"no"> 
19117       <autodoc>LogGeneric(unsigned long level, String msg)
</autodoc> 
19119         <param name=
"level" type=
"unsigned long" default=
""/> 
19120         <param name=
"msg" type=
"String" default=
""/> 
19123     <method name=
"SafeShowMessage" oldname=
"wxSafeShowMessage" type=
"" overloaded=
"no"> 
19124       <autodoc>SafeShowMessage(String title, String text)
</autodoc> 
19126         <param name=
"title" type=
"String" default=
""/> 
19127         <param name=
"text" type=
"String" default=
""/> 
19130     <class name=
"LogNull" oldname=
"wxLogNull" module=
"misc"> 
19131       <constructor name=
"LogNull" overloaded=
"no"> 
19132         <autodoc>__init__() -
> LogNull
</autodoc> 
19134       <destructor name=
"~wxLogNull" overloaded=
"no"> 
19135         <autodoc>__del__()
</autodoc> 
19138     <class name=
"PyLog" oldname=
"wxPyLog" module=
"misc"> 
19139       <baseclass name=
"Log"/> 
19140       <constructor name=
"PyLog" overloaded=
"no"> 
19141         <autodoc>__init__() -
> PyLog
</autodoc> 
19143       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
19144         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
19146           <param name=
"self" type=
"PyObject" default=
""/> 
19147           <param name=
"_class" type=
"PyObject" default=
""/> 
19152 #---------------------------------------------------------------------------
 
19154     <class name=
"Process" oldname=
"wxPyProcess" module=
"misc"> 
19155       <baseclass name=
"EvtHandler"/> 
19156       <constructor name=
"wxPyProcess" overloaded=
"no"> 
19157         <autodoc>__init__(EvtHandler parent=None, int id=-
1) -
> Process
</autodoc> 
19159           <param name=
"parent" type=
"EvtHandler" default=
"NULL"/> 
19160           <param name=
"id" type=
"int" default=
"-1"/> 
19163       <staticmethod name=
"Kill" type=
"wxKillError" overloaded=
"no"> 
19164         <autodoc>Process.Kill(int pid, int sig=SIGTERM) -
> int
</autodoc> 
19166           <param name=
"pid" type=
"int" default=
""/> 
19167           <param name=
"sig" type=
"wxSignal" default=
"wxSIGTERM"/> 
19170       <staticmethod name=
"Exists" type=
"bool" overloaded=
"no"> 
19171         <autodoc>Process.Exists(int pid) -
> bool
</autodoc> 
19173           <param name=
"pid" type=
"int" default=
""/> 
19176       <staticmethod name=
"Open" type=
"Process" overloaded=
"no"> 
19177         <autodoc>Process.Open(String cmd, int flags=EXEC_ASYNC) -
> Process
</autodoc> 
19179           <param name=
"cmd" type=
"String" default=
""/> 
19180           <param name=
"flags" type=
"int" default=
"wxEXEC_ASYNC"/> 
19183       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
19184         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
19186           <param name=
"self" type=
"PyObject" default=
""/> 
19187           <param name=
"_class" type=
"PyObject" default=
""/> 
19190       <method name=
"base_OnTerminate" type=
"" overloaded=
"no"> 
19191         <autodoc>base_OnTerminate(int pid, int status)
</autodoc> 
19193           <param name=
"pid" type=
"int" default=
""/> 
19194           <param name=
"status" type=
"int" default=
""/> 
19197       <method name=
"Redirect" type=
"" overloaded=
"no"> 
19198         <autodoc>Redirect()
</autodoc> 
19200       <method name=
"IsRedirected" type=
"bool" overloaded=
"no"> 
19201         <autodoc>IsRedirected() -
> bool
</autodoc> 
19203       <method name=
"Detach" type=
"" overloaded=
"no"> 
19204         <autodoc>Detach()
</autodoc> 
19206       <method name=
"GetInputStream" type=
"wxInputStream" overloaded=
"no"> 
19207         <autodoc>GetInputStream() -
> InputStream
</autodoc> 
19209       <method name=
"GetErrorStream" type=
"wxInputStream" overloaded=
"no"> 
19210         <autodoc>GetErrorStream() -
> InputStream
</autodoc> 
19212       <method name=
"GetOutputStream" type=
"OutputStream" overloaded=
"no"> 
19213         <autodoc>GetOutputStream() -
> OutputStream
</autodoc> 
19215       <method name=
"CloseOutput" type=
"" overloaded=
"no"> 
19216         <autodoc>CloseOutput()
</autodoc> 
19218       <method name=
"IsInputOpened" type=
"bool" overloaded=
"no"> 
19219         <autodoc>IsInputOpened() -
> bool
</autodoc> 
19221       <method name=
"IsInputAvailable" type=
"bool" overloaded=
"no"> 
19222         <autodoc>IsInputAvailable() -
> bool
</autodoc> 
19224       <method name=
"IsErrorAvailable" type=
"bool" overloaded=
"no"> 
19225         <autodoc>IsErrorAvailable() -
> bool
</autodoc> 
19228     <class name=
"ProcessEvent" oldname=
"wxProcessEvent" module=
"misc"> 
19229       <baseclass name=
"Event"/> 
19230       <constructor name=
"ProcessEvent" overloaded=
"no"> 
19231         <autodoc>__init__(int id=
0, int pid=
0, int exitcode=
0) -
> ProcessEvent
</autodoc> 
19233           <param name=
"id" type=
"int" default=
"0"/> 
19234           <param name=
"pid" type=
"int" default=
"0"/> 
19235           <param name=
"exitcode" type=
"int" default=
"0"/> 
19238       <method name=
"GetPid" type=
"int" overloaded=
"no"> 
19239         <autodoc>GetPid() -
> int
</autodoc> 
19241       <method name=
"GetExitCode" type=
"int" overloaded=
"no"> 
19242         <autodoc>GetExitCode() -
> int
</autodoc> 
19244       <property name=
"m_pid" type=
"int" readonly=
"no"/> 
19245       <property name=
"m_exitcode" type=
"int" readonly=
"no"/> 
19248 EVT_END_PROCESS = wx.PyEventBinder( wxEVT_END_PROCESS, 
1 )
 
19250     <method name=
"Execute" oldname=
"wxExecute" type=
"long" overloaded=
"no"> 
19251       <autodoc>Execute(String command, int flags=EXEC_ASYNC, Process process=None) -
> long
</autodoc> 
19253         <param name=
"command" type=
"String" default=
""/> 
19254         <param name=
"flags" type=
"int" default=
"wxEXEC_ASYNC"/> 
19255         <param name=
"process" type=
"Process" default=
"NULL"/> 
19259 #---------------------------------------------------------------------------
 
19261     <class name=
"Joystick" oldname=
"wxJoystick" module=
"misc"> 
19262       <constructor name=
"Joystick" overloaded=
"no"> 
19263         <autodoc>__init__(int joystick=JOYSTICK1) -
> Joystick
</autodoc> 
19265           <param name=
"joystick" type=
"int" default=
"wxJOYSTICK1"/> 
19268       <destructor name=
"~wxJoystick" overloaded=
"no"> 
19269         <autodoc>__del__()
</autodoc> 
19271       <method name=
"GetPosition" type=
"Point" overloaded=
"no"> 
19272         <autodoc>GetPosition() -
> Point
</autodoc> 
19274       <method name=
"GetZPosition" type=
"int" overloaded=
"no"> 
19275         <autodoc>GetZPosition() -
> int
</autodoc> 
19277       <method name=
"GetButtonState" type=
"int" overloaded=
"no"> 
19278         <autodoc>GetButtonState() -
> int
</autodoc> 
19280       <method name=
"GetPOVPosition" type=
"int" overloaded=
"no"> 
19281         <autodoc>GetPOVPosition() -
> int
</autodoc> 
19283       <method name=
"GetPOVCTSPosition" type=
"int" overloaded=
"no"> 
19284         <autodoc>GetPOVCTSPosition() -
> int
</autodoc> 
19286       <method name=
"GetRudderPosition" type=
"int" overloaded=
"no"> 
19287         <autodoc>GetRudderPosition() -
> int
</autodoc> 
19289       <method name=
"GetUPosition" type=
"int" overloaded=
"no"> 
19290         <autodoc>GetUPosition() -
> int
</autodoc> 
19292       <method name=
"GetVPosition" type=
"int" overloaded=
"no"> 
19293         <autodoc>GetVPosition() -
> int
</autodoc> 
19295       <method name=
"GetMovementThreshold" type=
"int" overloaded=
"no"> 
19296         <autodoc>GetMovementThreshold() -
> int
</autodoc> 
19298       <method name=
"SetMovementThreshold" type=
"" overloaded=
"no"> 
19299         <autodoc>SetMovementThreshold(int threshold)
</autodoc> 
19301           <param name=
"threshold" type=
"int" default=
""/> 
19304       <method name=
"IsOk" type=
"bool" overloaded=
"no"> 
19305         <autodoc>IsOk() -
> bool
</autodoc> 
19307       <method name=
"GetNumberJoysticks" type=
"int" overloaded=
"no"> 
19308         <autodoc>GetNumberJoysticks() -
> int
</autodoc> 
19310       <method name=
"GetManufacturerId" type=
"int" overloaded=
"no"> 
19311         <autodoc>GetManufacturerId() -
> int
</autodoc> 
19313       <method name=
"GetProductId" type=
"int" overloaded=
"no"> 
19314         <autodoc>GetProductId() -
> int
</autodoc> 
19316       <method name=
"GetProductName" type=
"String" overloaded=
"no"> 
19317         <autodoc>GetProductName() -
> String
</autodoc> 
19319       <method name=
"GetXMin" type=
"int" overloaded=
"no"> 
19320         <autodoc>GetXMin() -
> int
</autodoc> 
19322       <method name=
"GetYMin" type=
"int" overloaded=
"no"> 
19323         <autodoc>GetYMin() -
> int
</autodoc> 
19325       <method name=
"GetZMin" type=
"int" overloaded=
"no"> 
19326         <autodoc>GetZMin() -
> int
</autodoc> 
19328       <method name=
"GetXMax" type=
"int" overloaded=
"no"> 
19329         <autodoc>GetXMax() -
> int
</autodoc> 
19331       <method name=
"GetYMax" type=
"int" overloaded=
"no"> 
19332         <autodoc>GetYMax() -
> int
</autodoc> 
19334       <method name=
"GetZMax" type=
"int" overloaded=
"no"> 
19335         <autodoc>GetZMax() -
> int
</autodoc> 
19337       <method name=
"GetNumberButtons" type=
"int" overloaded=
"no"> 
19338         <autodoc>GetNumberButtons() -
> int
</autodoc> 
19340       <method name=
"GetNumberAxes" type=
"int" overloaded=
"no"> 
19341         <autodoc>GetNumberAxes() -
> int
</autodoc> 
19343       <method name=
"GetMaxButtons" type=
"int" overloaded=
"no"> 
19344         <autodoc>GetMaxButtons() -
> int
</autodoc> 
19346       <method name=
"GetMaxAxes" type=
"int" overloaded=
"no"> 
19347         <autodoc>GetMaxAxes() -
> int
</autodoc> 
19349       <method name=
"GetPollingMin" type=
"int" overloaded=
"no"> 
19350         <autodoc>GetPollingMin() -
> int
</autodoc> 
19352       <method name=
"GetPollingMax" type=
"int" overloaded=
"no"> 
19353         <autodoc>GetPollingMax() -
> int
</autodoc> 
19355       <method name=
"GetRudderMin" type=
"int" overloaded=
"no"> 
19356         <autodoc>GetRudderMin() -
> int
</autodoc> 
19358       <method name=
"GetRudderMax" type=
"int" overloaded=
"no"> 
19359         <autodoc>GetRudderMax() -
> int
</autodoc> 
19361       <method name=
"GetUMin" type=
"int" overloaded=
"no"> 
19362         <autodoc>GetUMin() -
> int
</autodoc> 
19364       <method name=
"GetUMax" type=
"int" overloaded=
"no"> 
19365         <autodoc>GetUMax() -
> int
</autodoc> 
19367       <method name=
"GetVMin" type=
"int" overloaded=
"no"> 
19368         <autodoc>GetVMin() -
> int
</autodoc> 
19370       <method name=
"GetVMax" type=
"int" overloaded=
"no"> 
19371         <autodoc>GetVMax() -
> int
</autodoc> 
19373       <method name=
"HasRudder" type=
"bool" overloaded=
"no"> 
19374         <autodoc>HasRudder() -
> bool
</autodoc> 
19376       <method name=
"HasZ" type=
"bool" overloaded=
"no"> 
19377         <autodoc>HasZ() -
> bool
</autodoc> 
19379       <method name=
"HasU" type=
"bool" overloaded=
"no"> 
19380         <autodoc>HasU() -
> bool
</autodoc> 
19382       <method name=
"HasV" type=
"bool" overloaded=
"no"> 
19383         <autodoc>HasV() -
> bool
</autodoc> 
19385       <method name=
"HasPOV" type=
"bool" overloaded=
"no"> 
19386         <autodoc>HasPOV() -
> bool
</autodoc> 
19388       <method name=
"HasPOV4Dir" type=
"bool" overloaded=
"no"> 
19389         <autodoc>HasPOV4Dir() -
> bool
</autodoc> 
19391       <method name=
"HasPOVCTS" type=
"bool" overloaded=
"no"> 
19392         <autodoc>HasPOVCTS() -
> bool
</autodoc> 
19394       <method name=
"SetCapture" type=
"bool" overloaded=
"no"> 
19395         <autodoc>SetCapture(Window win, int pollingFreq=
0) -
> bool
</autodoc> 
19397           <param name=
"win" type=
"Window" default=
""/> 
19398           <param name=
"pollingFreq" type=
"int" default=
"0"/> 
19401       <method name=
"ReleaseCapture" type=
"bool" overloaded=
"no"> 
19402         <autodoc>ReleaseCapture() -
> bool
</autodoc> 
19405     <class name=
"JoystickEvent" oldname=
"wxJoystickEvent" module=
"misc"> 
19406       <baseclass name=
"Event"/> 
19407       <constructor name=
"JoystickEvent" overloaded=
"no"> 
19408         <autodoc>__init__(wxEventType type=wxEVT_NULL, int state=
0, int joystick=JOYSTICK1, 
 
19409     int change=
0) -
> JoystickEvent
</autodoc> 
19411           <param name=
"type" type=
"wxEventType" default=
"wxEVT_NULL"/> 
19412           <param name=
"state" type=
"int" default=
"0"/> 
19413           <param name=
"joystick" type=
"int" default=
"wxJOYSTICK1"/> 
19414           <param name=
"change" type=
"int" default=
"0"/> 
19417       <property name=
"m_pos" type=
"Point" readonly=
"no"/> 
19418       <property name=
"m_zPosition" type=
"int" readonly=
"no"/> 
19419       <property name=
"m_buttonChange" type=
"int" readonly=
"no"/> 
19420       <property name=
"m_buttonState" type=
"int" readonly=
"no"/> 
19421       <property name=
"m_joyStick" type=
"int" readonly=
"no"/> 
19422       <method name=
"GetPosition" type=
"Point" overloaded=
"no"> 
19423         <autodoc>GetPosition() -
> Point
</autodoc> 
19425       <method name=
"GetZPosition" type=
"int" overloaded=
"no"> 
19426         <autodoc>GetZPosition() -
> int
</autodoc> 
19428       <method name=
"GetButtonState" type=
"int" overloaded=
"no"> 
19429         <autodoc>GetButtonState() -
> int
</autodoc> 
19431       <method name=
"GetButtonChange" type=
"int" overloaded=
"no"> 
19432         <autodoc>GetButtonChange() -
> int
</autodoc> 
19434       <method name=
"GetJoystick" type=
"int" overloaded=
"no"> 
19435         <autodoc>GetJoystick() -
> int
</autodoc> 
19437       <method name=
"SetJoystick" type=
"" overloaded=
"no"> 
19438         <autodoc>SetJoystick(int stick)
</autodoc> 
19440           <param name=
"stick" type=
"int" default=
""/> 
19443       <method name=
"SetButtonState" type=
"" overloaded=
"no"> 
19444         <autodoc>SetButtonState(int state)
</autodoc> 
19446           <param name=
"state" type=
"int" default=
""/> 
19449       <method name=
"SetButtonChange" type=
"" overloaded=
"no"> 
19450         <autodoc>SetButtonChange(int change)
</autodoc> 
19452           <param name=
"change" type=
"int" default=
""/> 
19455       <method name=
"SetPosition" type=
"" overloaded=
"no"> 
19456         <autodoc>SetPosition(Point pos)
</autodoc> 
19458           <param name=
"pos" type=
"Point" default=
""/> 
19461       <method name=
"SetZPosition" type=
"" overloaded=
"no"> 
19462         <autodoc>SetZPosition(int zPos)
</autodoc> 
19464           <param name=
"zPos" type=
"int" default=
""/> 
19467       <method name=
"IsButton" type=
"bool" overloaded=
"no"> 
19468         <autodoc>IsButton() -
> bool
</autodoc> 
19470       <method name=
"IsMove" type=
"bool" overloaded=
"no"> 
19471         <autodoc>IsMove() -
> bool
</autodoc> 
19473       <method name=
"IsZMove" type=
"bool" overloaded=
"no"> 
19474         <autodoc>IsZMove() -
> bool
</autodoc> 
19476       <method name=
"ButtonDown" type=
"bool" overloaded=
"no"> 
19477         <autodoc>ButtonDown(int but=JOY_BUTTON_ANY) -
> bool
</autodoc> 
19479           <param name=
"but" type=
"int" default=
"wxJOY_BUTTON_ANY"/> 
19482       <method name=
"ButtonUp" type=
"bool" overloaded=
"no"> 
19483         <autodoc>ButtonUp(int but=JOY_BUTTON_ANY) -
> bool
</autodoc> 
19485           <param name=
"but" type=
"int" default=
"wxJOY_BUTTON_ANY"/> 
19488       <method name=
"ButtonIsDown" type=
"bool" overloaded=
"no"> 
19489         <autodoc>ButtonIsDown(int but=JOY_BUTTON_ANY) -
> bool
</autodoc> 
19491           <param name=
"but" type=
"int" default=
"wxJOY_BUTTON_ANY"/> 
19496 EVT_JOY_BUTTON_DOWN = wx.PyEventBinder( wxEVT_JOY_BUTTON_DOWN )
 
19497 EVT_JOY_BUTTON_UP = wx.PyEventBinder( wxEVT_JOY_BUTTON_UP )
 
19498 EVT_JOY_MOVE = wx.PyEventBinder( wxEVT_JOY_MOVE )
 
19499 EVT_JOY_ZMOVE = wx.PyEventBinder( wxEVT_JOY_ZMOVE )
 
19501 EVT_JOYSTICK_EVENTS = wx.PyEventBinder([ wxEVT_JOY_BUTTON_DOWN,
 
19502                                         wxEVT_JOY_BUTTON_UP, 
 
19509 #---------------------------------------------------------------------------
 
19511     <class name=
"Wave" oldname=
"wxWave" module=
"misc"> 
19512       <constructor name=
"Wave" overloaded=
"no"> 
19513         <autodoc>__init__(String fileName, bool isResource=False) -
> Wave
</autodoc> 
19515           <param name=
"fileName" type=
"String" default=
""/> 
19516           <param name=
"isResource" type=
"bool" default=
"False"/> 
19519       <constructor name=
"WaveData" overloaded=
"no"> 
19520         <autodoc>WaveData(String data) -
> Wave
</autodoc> 
19522           <param name=
"data" type=
"String" default=
""/> 
19525       <destructor name=
"~wxWave" overloaded=
"no"> 
19526         <autodoc>__del__()
</autodoc> 
19528       <method name=
"IsOk" type=
"bool" overloaded=
"no"> 
19529         <autodoc>IsOk() -
> bool
</autodoc> 
19531       <method name=
"Play" type=
"bool" overloaded=
"no"> 
19532         <autodoc>Play(bool async=True, bool looped=False) -
> bool
</autodoc> 
19534           <param name=
"async" type=
"bool" default=
"True"/> 
19535           <param name=
"looped" type=
"bool" default=
"False"/> 
19540 #---------------------------------------------------------------------------
 
19542     <class name=
"FileTypeInfo" oldname=
"wxFileTypeInfo" module=
"misc"> 
19543       <constructor name=
"FileTypeInfo" overloaded=
"no"> 
19544         <autodoc>__init__(String mimeType, String openCmd, String printCmd, String desc) -
> FileTypeInfo
</autodoc> 
19546           <param name=
"mimeType" type=
"String" default=
""/> 
19547           <param name=
"openCmd" type=
"String" default=
""/> 
19548           <param name=
"printCmd" type=
"String" default=
""/> 
19549           <param name=
"desc" type=
"String" default=
""/> 
19552       <constructor name=
"FileTypeInfoSequence" overloaded=
"no"> 
19553         <autodoc>FileTypeInfoSequence(wxArrayString sArray) -
> FileTypeInfo
</autodoc> 
19555           <param name=
"sArray" type=
"wxArrayString" default=
""/> 
19558       <constructor name=
"NullFileTypeInfo" overloaded=
"no"> 
19559         <autodoc>NullFileTypeInfo() -
> FileTypeInfo
</autodoc> 
19561       <method name=
"IsValid" type=
"bool" overloaded=
"no"> 
19562         <autodoc>IsValid() -
> bool
</autodoc> 
19564       <method name=
"SetIcon" type=
"" overloaded=
"no"> 
19565         <autodoc>SetIcon(String iconFile, int iconIndex=
0)
</autodoc> 
19567           <param name=
"iconFile" type=
"String" default=
""/> 
19568           <param name=
"iconIndex" type=
"int" default=
"0"/> 
19571       <method name=
"SetShortDesc" type=
"" overloaded=
"no"> 
19572         <autodoc>SetShortDesc(String shortDesc)
</autodoc> 
19574           <param name=
"shortDesc" type=
"String" default=
""/> 
19577       <method name=
"GetMimeType" type=
"String" overloaded=
"no"> 
19578         <autodoc>GetMimeType() -
> String
</autodoc> 
19580       <method name=
"GetOpenCommand" type=
"String" overloaded=
"no"> 
19581         <autodoc>GetOpenCommand() -
> String
</autodoc> 
19583       <method name=
"GetPrintCommand" type=
"String" overloaded=
"no"> 
19584         <autodoc>GetPrintCommand() -
> String
</autodoc> 
19586       <method name=
"GetShortDesc" type=
"String" overloaded=
"no"> 
19587         <autodoc>GetShortDesc() -
> String
</autodoc> 
19589       <method name=
"GetDescription" type=
"String" overloaded=
"no"> 
19590         <autodoc>GetDescription() -
> String
</autodoc> 
19592       <method name=
"GetExtensions" type=
"wxArrayString" overloaded=
"no"> 
19593         <autodoc>GetExtensions() -
> wxArrayString
</autodoc> 
19595       <method name=
"GetExtensionsCount" type=
"int" overloaded=
"no"> 
19596         <autodoc>GetExtensionsCount() -
> int
</autodoc> 
19598       <method name=
"GetIconFile" type=
"String" overloaded=
"no"> 
19599         <autodoc>GetIconFile() -
> String
</autodoc> 
19601       <method name=
"GetIconIndex" type=
"int" overloaded=
"no"> 
19602         <autodoc>GetIconIndex() -
> int
</autodoc> 
19605     <class name=
"FileType" oldname=
"wxFileType" module=
"misc"> 
19606       <constructor name=
"FileType" overloaded=
"no"> 
19607         <autodoc>__init__(FileTypeInfo ftInfo) -
> FileType
</autodoc> 
19609           <param name=
"ftInfo" type=
"FileTypeInfo" default=
""/> 
19612       <destructor name=
"~wxFileType" overloaded=
"no"> 
19613         <autodoc>__del__()
</autodoc> 
19615       <method name=
"GetMimeType" type=
"PyObject" overloaded=
"no"> 
19616         <autodoc>GetMimeType() -
> PyObject
</autodoc> 
19618       <method name=
"GetMimeTypes" type=
"PyObject" overloaded=
"no"> 
19619         <autodoc>GetMimeTypes() -
> PyObject
</autodoc> 
19621       <method name=
"GetExtensions" type=
"PyObject" overloaded=
"no"> 
19622         <autodoc>GetExtensions() -
> PyObject
</autodoc> 
19624       <method name=
"GetIcon" type=
"Icon" overloaded=
"no"> 
19625         <autodoc>GetIcon() -
> Icon
</autodoc> 
19627       <method name=
"GetIconInfo" type=
"PyObject" overloaded=
"no"> 
19628         <autodoc>GetIconInfo() -
> PyObject
</autodoc> 
19630       <method name=
"GetDescription" type=
"PyObject" overloaded=
"no"> 
19631         <autodoc>GetDescription() -
> PyObject
</autodoc> 
19633       <method name=
"GetOpenCommand" type=
"PyObject" overloaded=
"no"> 
19634         <autodoc>GetOpenCommand(String filename, String mimetype=EmptyString) -
> PyObject
</autodoc> 
19636           <param name=
"filename" type=
"String" default=
""/> 
19637           <param name=
"mimetype" type=
"String" default=
"wxPyEmptyString"/> 
19640       <method name=
"GetPrintCommand" type=
"PyObject" overloaded=
"no"> 
19641         <autodoc>GetPrintCommand(String filename, String mimetype=EmptyString) -
> PyObject
</autodoc> 
19643           <param name=
"filename" type=
"String" default=
""/> 
19644           <param name=
"mimetype" type=
"String" default=
"wxPyEmptyString"/> 
19647       <method name=
"GetAllCommands" type=
"PyObject" overloaded=
"no"> 
19648         <autodoc>GetAllCommands(String filename, String mimetype=EmptyString) -
> PyObject
</autodoc> 
19650           <param name=
"filename" type=
"String" default=
""/> 
19651           <param name=
"mimetype" type=
"String" default=
"wxPyEmptyString"/> 
19654       <method name=
"SetCommand" type=
"bool" overloaded=
"no"> 
19655         <autodoc>SetCommand(String cmd, String verb, bool overwriteprompt=True) -
> bool
</autodoc> 
19657           <param name=
"cmd" type=
"String" default=
""/> 
19658           <param name=
"verb" type=
"String" default=
""/> 
19659           <param name=
"overwriteprompt" type=
"bool" default=
"True"/> 
19662       <method name=
"SetDefaultIcon" type=
"bool" overloaded=
"no"> 
19663         <autodoc>SetDefaultIcon(String cmd=EmptyString, int index=
0) -
> bool
</autodoc> 
19665           <param name=
"cmd" type=
"String" default=
"wxPyEmptyString"/> 
19666           <param name=
"index" type=
"int" default=
"0"/> 
19669       <method name=
"Unassociate" type=
"bool" overloaded=
"no"> 
19670         <autodoc>Unassociate() -
> bool
</autodoc> 
19672       <staticmethod name=
"ExpandCommand" type=
"String" overloaded=
"no"> 
19673         <autodoc>FileType.ExpandCommand(String command, String filename, String mimetype=EmptyString) -
> String
</autodoc> 
19675           <param name=
"command" type=
"String" default=
""/> 
19676           <param name=
"filename" type=
"String" default=
""/> 
19677           <param name=
"mimetype" type=
"String" default=
"wxPyEmptyString"/> 
19681     <class name=
"MimeTypesManager" oldname=
"wxMimeTypesManager" module=
"misc"> 
19682       <constructor name=
"MimeTypesManager" overloaded=
"no"> 
19683         <autodoc>__init__() -
> MimeTypesManager
</autodoc> 
19685       <destructor name=
"~wxMimeTypesManager" overloaded=
"no"> 
19686         <autodoc>__del__()
</autodoc> 
19688       <staticmethod name=
"IsOfType" type=
"bool" overloaded=
"no"> 
19689         <autodoc>MimeTypesManager.IsOfType(String mimeType, String wildcard) -
> bool
</autodoc> 
19691           <param name=
"mimeType" type=
"String" default=
""/> 
19692           <param name=
"wildcard" type=
"String" default=
""/> 
19695       <method name=
"Initialize" type=
"" overloaded=
"no"> 
19696         <autodoc>Initialize(int mailcapStyle=MAILCAP_ALL, String extraDir=EmptyString)
</autodoc> 
19698           <param name=
"mailcapStyle" type=
"int" default=
"wxMAILCAP_ALL"/> 
19699           <param name=
"extraDir" type=
"String" default=
"wxPyEmptyString"/> 
19702       <method name=
"ClearData" type=
"" overloaded=
"no"> 
19703         <autodoc>ClearData()
</autodoc> 
19705       <method name=
"GetFileTypeFromExtension" type=
"FileType" overloaded=
"no"> 
19706         <autodoc>GetFileTypeFromExtension(String ext) -
> FileType
</autodoc> 
19708           <param name=
"ext" type=
"String" default=
""/> 
19711       <method name=
"GetFileTypeFromMimeType" type=
"FileType" overloaded=
"no"> 
19712         <autodoc>GetFileTypeFromMimeType(String mimeType) -
> FileType
</autodoc> 
19714           <param name=
"mimeType" type=
"String" default=
""/> 
19717       <method name=
"ReadMailcap" type=
"bool" overloaded=
"no"> 
19718         <autodoc>ReadMailcap(String filename, bool fallback=False) -
> bool
</autodoc> 
19720           <param name=
"filename" type=
"String" default=
""/> 
19721           <param name=
"fallback" type=
"bool" default=
"False"/> 
19724       <method name=
"ReadMimeTypes" type=
"bool" overloaded=
"no"> 
19725         <autodoc>ReadMimeTypes(String filename) -
> bool
</autodoc> 
19727           <param name=
"filename" type=
"String" default=
""/> 
19730       <method name=
"EnumAllFileTypes" type=
"PyObject" overloaded=
"no"> 
19731         <autodoc>EnumAllFileTypes() -
> PyObject
</autodoc> 
19733       <method name=
"AddFallback" type=
"" overloaded=
"no"> 
19734         <autodoc>AddFallback(FileTypeInfo ft)
</autodoc> 
19736           <param name=
"ft" type=
"FileTypeInfo" default=
""/> 
19739       <method name=
"Associate" type=
"FileType" overloaded=
"no"> 
19740         <autodoc>Associate(FileTypeInfo ftInfo) -
> FileType
</autodoc> 
19742           <param name=
"ftInfo" type=
"FileTypeInfo" default=
""/> 
19745       <method name=
"Unassociate" type=
"bool" overloaded=
"no"> 
19746         <autodoc>Unassociate(FileType ft) -
> bool
</autodoc> 
19748           <param name=
"ft" type=
"FileType" default=
""/> 
19753 #---------------------------------------------------------------------------
 
19755     <class name=
"ArtProvider" oldname=
"wxPyArtProvider" module=
"misc"> 
19756       <constructor name=
"wxPyArtProvider" overloaded=
"no"> 
19757         <autodoc>__init__() -
> ArtProvider
</autodoc> 
19759       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
19760         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
19762           <param name=
"self" type=
"PyObject" default=
""/> 
19763           <param name=
"_class" type=
"PyObject" default=
""/> 
19766       <staticmethod name=
"PushProvider" type=
"" overloaded=
"no"> 
19767         <autodoc>ArtProvider.PushProvider(ArtProvider provider)
</autodoc> 
19768         <docstring>Add new provider to the top of providers stack.
</docstring> 
19770           <param name=
"provider" type=
"ArtProvider" default=
""/> 
19773       <staticmethod name=
"PopProvider" type=
"bool" overloaded=
"no"> 
19774         <autodoc>ArtProvider.PopProvider() -
> bool
</autodoc> 
19775         <docstring>Remove latest added provider and delete it.
</docstring> 
19777       <staticmethod name=
"RemoveProvider" type=
"bool" overloaded=
"no"> 
19778         <autodoc>ArtProvider.RemoveProvider(ArtProvider provider) -
> bool
</autodoc> 
19779         <docstring>Remove provider. The provider must have been added previously!
 
19780 The provider is _not_ deleted.
</docstring> 
19782           <param name=
"provider" type=
"ArtProvider" default=
""/> 
19785       <staticmethod name=
"GetBitmap" type=
"Bitmap" overloaded=
"no"> 
19786         <autodoc>ArtProvider.GetBitmap(String id, String client=ART_OTHER, Size size=DefaultSize) -
> Bitmap
</autodoc> 
19787         <docstring>Query the providers for bitmap with given ID and return it. Return
 
19788 wx.NullBitmap if no provider provides it.
</docstring> 
19790           <param name=
"id" type=
"String" default=
""/> 
19791           <param name=
"client" type=
"String" default=
"wxPyART_OTHER"/> 
19792           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
19795       <staticmethod name=
"GetIcon" type=
"Icon" overloaded=
"no"> 
19796         <autodoc>ArtProvider.GetIcon(String id, String client=ART_OTHER, Size size=DefaultSize) -
> Icon
</autodoc> 
19797         <docstring>Query the providers for icon with given ID and return it. Return
 
19798 wx.NullIcon if no provider provides it.
</docstring> 
19800           <param name=
"id" type=
"String" default=
""/> 
19801           <param name=
"client" type=
"String" default=
"wxPyART_OTHER"/> 
19802           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
19805       <method name=
"Destroy" type=
"" overloaded=
"no"> 
19806         <autodoc>Destroy()
</autodoc> 
19810 #---------------------------------------------------------------------------
 
19812     <class name=
"ConfigBase" oldname=
"wxConfigBase" module=
"misc"> 
19813       <destructor name=
"~wxConfigBase" overloaded=
"no"> 
19814         <autodoc>__del__()
</autodoc> 
19816       <staticmethod name=
"Set" type=
"ConfigBase" overloaded=
"no"> 
19817         <autodoc>ConfigBase.Set(ConfigBase pConfig) -
> ConfigBase
</autodoc> 
19819           <param name=
"pConfig" type=
"ConfigBase" default=
""/> 
19822       <staticmethod name=
"Get" type=
"ConfigBase" overloaded=
"no"> 
19823         <autodoc>ConfigBase.Get(bool createOnDemand=True) -
> ConfigBase
</autodoc> 
19825           <param name=
"createOnDemand" type=
"bool" default=
"True"/> 
19828       <staticmethod name=
"Create" type=
"ConfigBase" overloaded=
"no"> 
19829         <autodoc>ConfigBase.Create() -
> ConfigBase
</autodoc> 
19831       <staticmethod name=
"DontCreateOnDemand" type=
"" overloaded=
"no"> 
19832         <autodoc>ConfigBase.DontCreateOnDemand()
</autodoc> 
19834       <method name=
"SetPath" type=
"" overloaded=
"no"> 
19835         <autodoc>SetPath(String strPath)
</autodoc> 
19837           <param name=
"strPath" type=
"String" default=
""/> 
19840       <method name=
"GetPath" type=
"String" overloaded=
"no"> 
19841         <autodoc>GetPath() -
> String
</autodoc> 
19843       <method name=
"GetFirstGroup" type=
"PyObject" overloaded=
"no"> 
19844         <autodoc>GetFirstGroup() -
> PyObject
</autodoc> 
19846       <method name=
"GetNextGroup" type=
"PyObject" overloaded=
"no"> 
19847         <autodoc>GetNextGroup(long index) -
> PyObject
</autodoc> 
19849           <param name=
"index" type=
"long" default=
""/> 
19852       <method name=
"GetFirstEntry" type=
"PyObject" overloaded=
"no"> 
19853         <autodoc>GetFirstEntry() -
> PyObject
</autodoc> 
19855       <method name=
"GetNextEntry" type=
"PyObject" overloaded=
"no"> 
19856         <autodoc>GetNextEntry(long index) -
> PyObject
</autodoc> 
19858           <param name=
"index" type=
"long" default=
""/> 
19861       <method name=
"GetNumberOfEntries" type=
"size_t" overloaded=
"no"> 
19862         <autodoc>GetNumberOfEntries(bool bRecursive=False) -
> size_t
</autodoc> 
19864           <param name=
"bRecursive" type=
"bool" default=
"False"/> 
19867       <method name=
"GetNumberOfGroups" type=
"size_t" overloaded=
"no"> 
19868         <autodoc>GetNumberOfGroups(bool bRecursive=False) -
> size_t
</autodoc> 
19870           <param name=
"bRecursive" type=
"bool" default=
"False"/> 
19873       <method name=
"HasGroup" type=
"bool" overloaded=
"no"> 
19874         <autodoc>HasGroup(String strName) -
> bool
</autodoc> 
19876           <param name=
"strName" type=
"String" default=
""/> 
19879       <method name=
"HasEntry" type=
"bool" overloaded=
"no"> 
19880         <autodoc>HasEntry(String strName) -
> bool
</autodoc> 
19882           <param name=
"strName" type=
"String" default=
""/> 
19885       <method name=
"Exists" type=
"bool" overloaded=
"no"> 
19886         <autodoc>Exists(String strName) -
> bool
</autodoc> 
19888           <param name=
"strName" type=
"String" default=
""/> 
19891       <method name=
"GetEntryType" type=
"wxConfigBase::EntryType" overloaded=
"no"> 
19892         <autodoc>GetEntryType(String name) -
> int
</autodoc> 
19894           <param name=
"name" type=
"String" default=
""/> 
19897       <method name=
"Read" type=
"String" overloaded=
"no"> 
19898         <autodoc>Read(String key, String defaultVal=EmptyString) -
> String
</autodoc> 
19900           <param name=
"key" type=
"String" default=
""/> 
19901           <param name=
"defaultVal" type=
"String" default=
"wxPyEmptyString"/> 
19904       <method name=
"ReadInt" type=
"long" overloaded=
"no"> 
19905         <autodoc>ReadInt(String key, long defaultVal=
0) -
> long
</autodoc> 
19907           <param name=
"key" type=
"String" default=
""/> 
19908           <param name=
"defaultVal" type=
"long" default=
"0"/> 
19911       <method name=
"ReadFloat" type=
"double" overloaded=
"no"> 
19912         <autodoc>ReadFloat(String key, double defaultVal=
0.0) -
> double
</autodoc> 
19914           <param name=
"key" type=
"String" default=
""/> 
19915           <param name=
"defaultVal" type=
"double" default=
"0.0"/> 
19918       <method name=
"ReadBool" type=
"bool" overloaded=
"no"> 
19919         <autodoc>ReadBool(String key, bool defaultVal=False) -
> bool
</autodoc> 
19921           <param name=
"key" type=
"String" default=
""/> 
19922           <param name=
"defaultVal" type=
"bool" default=
"False"/> 
19925       <method name=
"Write" type=
"bool" overloaded=
"no"> 
19926         <autodoc>Write(String key, String value) -
> bool
</autodoc> 
19928           <param name=
"key" type=
"String" default=
""/> 
19929           <param name=
"value" type=
"String" default=
""/> 
19932       <method name=
"WriteInt" type=
"bool" overloaded=
"no"> 
19933         <autodoc>WriteInt(String key, long value) -
> bool
</autodoc> 
19935           <param name=
"key" type=
"String" default=
""/> 
19936           <param name=
"value" type=
"long" default=
""/> 
19939       <method name=
"WriteFloat" type=
"bool" overloaded=
"no"> 
19940         <autodoc>WriteFloat(String key, double value) -
> bool
</autodoc> 
19942           <param name=
"key" type=
"String" default=
""/> 
19943           <param name=
"value" type=
"double" default=
""/> 
19946       <method name=
"WriteBool" type=
"bool" overloaded=
"no"> 
19947         <autodoc>WriteBool(String key, bool value) -
> bool
</autodoc> 
19949           <param name=
"key" type=
"String" default=
""/> 
19950           <param name=
"value" type=
"bool" default=
""/> 
19953       <method name=
"Flush" type=
"bool" overloaded=
"no"> 
19954         <autodoc>Flush(bool bCurrentOnly=False) -
> bool
</autodoc> 
19956           <param name=
"bCurrentOnly" type=
"bool" default=
"False"/> 
19959       <method name=
"RenameEntry" type=
"bool" overloaded=
"no"> 
19960         <autodoc>RenameEntry(String oldName, String newName) -
> bool
</autodoc> 
19962           <param name=
"oldName" type=
"String" default=
""/> 
19963           <param name=
"newName" type=
"String" default=
""/> 
19966       <method name=
"RenameGroup" type=
"bool" overloaded=
"no"> 
19967         <autodoc>RenameGroup(String oldName, String newName) -
> bool
</autodoc> 
19969           <param name=
"oldName" type=
"String" default=
""/> 
19970           <param name=
"newName" type=
"String" default=
""/> 
19973       <method name=
"DeleteEntry" type=
"bool" overloaded=
"no"> 
19974         <autodoc>DeleteEntry(String key, bool bDeleteGroupIfEmpty=True) -
> bool
</autodoc> 
19976           <param name=
"key" type=
"String" default=
""/> 
19977           <param name=
"bDeleteGroupIfEmpty" type=
"bool" default=
"True"/> 
19980       <method name=
"DeleteGroup" type=
"bool" overloaded=
"no"> 
19981         <autodoc>DeleteGroup(String key) -
> bool
</autodoc> 
19983           <param name=
"key" type=
"String" default=
""/> 
19986       <method name=
"DeleteAll" type=
"bool" overloaded=
"no"> 
19987         <autodoc>DeleteAll() -
> bool
</autodoc> 
19989       <method name=
"IsExpandingEnvVars" type=
"bool" overloaded=
"no"> 
19990         <autodoc>IsExpandingEnvVars() -
> bool
</autodoc> 
19992       <method name=
"SetExpandEnvVars" type=
"" overloaded=
"no"> 
19993         <autodoc>SetExpandEnvVars(bool bDoIt=True)
</autodoc> 
19995           <param name=
"bDoIt" type=
"bool" default=
"True"/> 
19998       <method name=
"SetRecordDefaults" type=
"" overloaded=
"no"> 
19999         <autodoc>SetRecordDefaults(bool bDoIt=True)
</autodoc> 
20001           <param name=
"bDoIt" type=
"bool" default=
"True"/> 
20004       <method name=
"IsRecordingDefaults" type=
"bool" overloaded=
"no"> 
20005         <autodoc>IsRecordingDefaults() -
> bool
</autodoc> 
20007       <method name=
"ExpandEnvVars" type=
"String" overloaded=
"no"> 
20008         <autodoc>ExpandEnvVars(String str) -
> String
</autodoc> 
20010           <param name=
"str" type=
"String" default=
""/> 
20013       <method name=
"GetAppName" type=
"String" overloaded=
"no"> 
20014         <autodoc>GetAppName() -
> String
</autodoc> 
20016       <method name=
"GetVendorName" type=
"String" overloaded=
"no"> 
20017         <autodoc>GetVendorName() -
> String
</autodoc> 
20019       <method name=
"SetAppName" type=
"" overloaded=
"no"> 
20020         <autodoc>SetAppName(String appName)
</autodoc> 
20022           <param name=
"appName" type=
"String" default=
""/> 
20025       <method name=
"SetVendorName" type=
"" overloaded=
"no"> 
20026         <autodoc>SetVendorName(String vendorName)
</autodoc> 
20028           <param name=
"vendorName" type=
"String" default=
""/> 
20031       <method name=
"SetStyle" type=
"" overloaded=
"no"> 
20032         <autodoc>SetStyle(long style)
</autodoc> 
20034           <param name=
"style" type=
"long" default=
""/> 
20037       <method name=
"GetStyle" type=
"long" overloaded=
"no"> 
20038         <autodoc>GetStyle() -
> long
</autodoc> 
20041     <class name=
"ConfigPathChanger" oldname=
"wxConfigPathChanger" module=
"misc"> 
20042       <constructor name=
"ConfigPathChanger" overloaded=
"no"> 
20043         <autodoc>__init__(ConfigBase pContainer, String strEntry) -
> ConfigPathChanger
</autodoc> 
20045           <param name=
"pContainer" type=
"ConfigBase" default=
""/> 
20046           <param name=
"strEntry" type=
"String" default=
""/> 
20049       <destructor name=
"~wxConfigPathChanger" overloaded=
"no"> 
20050         <autodoc>__del__()
</autodoc> 
20052       <method name=
"Name" type=
"String" overloaded=
"no"> 
20053         <autodoc>Name() -
> String
</autodoc> 
20056     <class name=
"Config" oldname=
"wxConfig" module=
"misc"> 
20057       <baseclass name=
"ConfigBase"/> 
20058       <constructor name=
"Config" overloaded=
"no"> 
20059         <autodoc>__init__(String appName=EmptyString, String vendorName=EmptyString, 
 
20060     String localFilename=EmptyString, String globalFilename=EmptyString, 
 
20061     long style=
0) -
> Config
</autodoc> 
20063           <param name=
"appName" type=
"String" default=
"wxPyEmptyString"/> 
20064           <param name=
"vendorName" type=
"String" default=
"wxPyEmptyString"/> 
20065           <param name=
"localFilename" type=
"String" default=
"wxPyEmptyString"/> 
20066           <param name=
"globalFilename" type=
"String" default=
"wxPyEmptyString"/> 
20067           <param name=
"style" type=
"long" default=
"0"/> 
20070       <destructor name=
"~wxConfig" overloaded=
"no"> 
20071         <autodoc>__del__()
</autodoc> 
20074     <class name=
"FileConfig" oldname=
"wxFileConfig" module=
"misc"> 
20075       <baseclass name=
"ConfigBase"/> 
20076       <constructor name=
"FileConfig" overloaded=
"no"> 
20077         <autodoc>__init__(String appName=EmptyString, String vendorName=EmptyString, 
 
20078     String localFilename=EmptyString, String globalFilename=EmptyString, 
 
20079     long style=
0) -
> FileConfig
</autodoc> 
20081           <param name=
"appName" type=
"String" default=
"wxPyEmptyString"/> 
20082           <param name=
"vendorName" type=
"String" default=
"wxPyEmptyString"/> 
20083           <param name=
"localFilename" type=
"String" default=
"wxPyEmptyString"/> 
20084           <param name=
"globalFilename" type=
"String" default=
"wxPyEmptyString"/> 
20085           <param name=
"style" type=
"long" default=
"0"/> 
20088       <destructor name=
"~wxFileConfig" overloaded=
"no"> 
20089         <autodoc>__del__()
</autodoc> 
20092     <method name=
"ExpandEnvVars" oldname=
"wxExpandEnvVars" type=
"String" overloaded=
"no"> 
20093       <autodoc>ExpandEnvVars(String sz) -
> String
</autodoc> 
20095         <param name=
"sz" type=
"String" default=
""/> 
20099 #---------------------------------------------------------------------------
 
20101     <class name=
"DateTime" oldname=
"wxDateTime" module=
"misc"> 
20102       <constructor name=
"DateTime" overloaded=
"no"> 
20103         <autodoc>__init__() -
> DateTime
</autodoc> 
20105       <constructor name=
"DateTimeFromTimeT" overloaded=
"no"> 
20106         <autodoc>DateTimeFromTimeT(time_t timet) -
> DateTime
</autodoc> 
20108           <param name=
"timet" type=
"time_t" default=
""/> 
20111       <constructor name=
"DateTimeFromJDN" overloaded=
"no"> 
20112         <autodoc>DateTimeFromJDN(double jdn) -
> DateTime
</autodoc> 
20114           <param name=
"jdn" type=
"double" default=
""/> 
20117       <constructor name=
"DateTimeFromHMS" overloaded=
"no"> 
20118         <autodoc>DateTimeFromHMS(int hour, int minute=
0, int second=
0, int millisec=
0) -
> DateTime
</autodoc> 
20120           <param name=
"hour" type=
"int" default=
""/> 
20121           <param name=
"minute" type=
"int" default=
"0"/> 
20122           <param name=
"second" type=
"int" default=
"0"/> 
20123           <param name=
"millisec" type=
"int" default=
"0"/> 
20126       <constructor name=
"DateTimeFromDMY" overloaded=
"no"> 
20127         <autodoc>DateTimeFromDMY(int day, int month=Inv_Month, int year=Inv_Year, int hour=
0, 
 
20128     int minute=
0, int second=
0, int millisec=
0) -
> DateTime
</autodoc> 
20130           <param name=
"day" type=
"int" default=
""/> 
20131           <param name=
"month" type=
"wxDateTime::Month" default=
"wxDateTime::Inv_Month"/> 
20132           <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/> 
20133           <param name=
"hour" type=
"int" default=
"0"/> 
20134           <param name=
"minute" type=
"int" default=
"0"/> 
20135           <param name=
"second" type=
"int" default=
"0"/> 
20136           <param name=
"millisec" type=
"int" default=
"0"/> 
20139       <destructor name=
"~wxDateTime" overloaded=
"no"> 
20140         <autodoc>__del__()
</autodoc> 
20142       <staticmethod name=
"SetCountry" type=
"" overloaded=
"no"> 
20143         <autodoc>DateTime.SetCountry(int country)
</autodoc> 
20145           <param name=
"country" type=
"wxDateTime::Country" default=
""/> 
20148       <staticmethod name=
"GetCountry" type=
"wxDateTime::Country" overloaded=
"no"> 
20149         <autodoc>DateTime.GetCountry() -
> int
</autodoc> 
20151       <staticmethod name=
"IsWestEuropeanCountry" type=
"bool" overloaded=
"no"> 
20152         <autodoc>DateTime.IsWestEuropeanCountry(int country=Country_Default) -
> bool
</autodoc> 
20154           <param name=
"country" type=
"wxDateTime::Country" default=
"wxDateTime::Country_Default"/> 
20157       <staticmethod name=
"GetCurrentYear" type=
"int" overloaded=
"no"> 
20158         <autodoc>DateTime.GetCurrentYear(int cal=Gregorian) -
> int
</autodoc> 
20160           <param name=
"cal" type=
"wxDateTime::Calendar" default=
"wxDateTime::Gregorian"/> 
20163       <staticmethod name=
"ConvertYearToBC" type=
"int" overloaded=
"no"> 
20164         <autodoc>DateTime.ConvertYearToBC(int year) -
> int
</autodoc> 
20166           <param name=
"year" type=
"int" default=
""/> 
20169       <staticmethod name=
"GetCurrentMonth" type=
"wxDateTime::Month" overloaded=
"no"> 
20170         <autodoc>DateTime.GetCurrentMonth(int cal=Gregorian) -
> int
</autodoc> 
20172           <param name=
"cal" type=
"wxDateTime::Calendar" default=
"wxDateTime::Gregorian"/> 
20175       <staticmethod name=
"IsLeapYear" type=
"bool" overloaded=
"no"> 
20176         <autodoc>DateTime.IsLeapYear(int year=Inv_Year, int cal=Gregorian) -
> bool
</autodoc> 
20178           <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/> 
20179           <param name=
"cal" type=
"wxDateTime::Calendar" default=
"wxDateTime::Gregorian"/> 
20182       <staticmethod name=
"GetCentury" type=
"int" overloaded=
"no"> 
20183         <autodoc>DateTime.GetCentury(int year=Inv_Year) -
> int
</autodoc> 
20185           <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/> 
20188       <staticmethod name=
"GetNumberOfDaysinYear" type=
"int" overloaded=
"no"> 
20189         <autodoc>DateTime.GetNumberOfDaysinYear(int year, int cal=Gregorian) -
> int
</autodoc> 
20191           <param name=
"year" type=
"int" default=
""/> 
20192           <param name=
"cal" type=
"wxDateTime::Calendar" default=
"wxDateTime::Gregorian"/> 
20195       <staticmethod name=
"GetNumberOfDaysInMonth" type=
"int" overloaded=
"no"> 
20196         <autodoc>DateTime.GetNumberOfDaysInMonth(int month, int year=Inv_Year, int cal=Gregorian) -
> int
</autodoc> 
20198           <param name=
"month" type=
"wxDateTime::Month" default=
""/> 
20199           <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/> 
20200           <param name=
"cal" type=
"wxDateTime::Calendar" default=
"wxDateTime::Gregorian"/> 
20203       <staticmethod name=
"GetMonthName" type=
"String" overloaded=
"no"> 
20204         <autodoc>DateTime.GetMonthName(int month, int flags=Name_Full) -
> String
</autodoc> 
20206           <param name=
"month" type=
"wxDateTime::Month" default=
""/> 
20207           <param name=
"flags" type=
"wxDateTime::NameFlags" default=
"wxDateTime::Name_Full"/> 
20210       <staticmethod name=
"GetWeekDayName" type=
"String" overloaded=
"no"> 
20211         <autodoc>DateTime.GetWeekDayName(int weekday, int flags=Name_Full) -
> String
</autodoc> 
20213           <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/> 
20214           <param name=
"flags" type=
"wxDateTime::NameFlags" default=
"wxDateTime::Name_Full"/> 
20217       <staticmethod name=
"GetAmPmStrings" type=
"" overloaded=
"no"> 
20218         <autodoc>GetAmPmStrings() -
> (am, pm)
</autodoc> 
20219         <docstring>Get the AM and PM strings in the current locale (may be empty)
</docstring> 
20221           <param name=
"OUTPUT" type=
"String" default=
""/> 
20222           <param name=
"OUTPUT" type=
"String" default=
""/> 
20225       <staticmethod name=
"IsDSTApplicable" type=
"bool" overloaded=
"no"> 
20226         <autodoc>DateTime.IsDSTApplicable(int year=Inv_Year, int country=Country_Default) -
> bool
</autodoc> 
20228           <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/> 
20229           <param name=
"country" type=
"wxDateTime::Country" default=
"wxDateTime::Country_Default"/> 
20232       <staticmethod name=
"GetBeginDST" type=
"DateTime" overloaded=
"no"> 
20233         <autodoc>DateTime.GetBeginDST(int year=Inv_Year, int country=Country_Default) -
> DateTime
</autodoc> 
20235           <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/> 
20236           <param name=
"country" type=
"wxDateTime::Country" default=
"wxDateTime::Country_Default"/> 
20239       <staticmethod name=
"GetEndDST" type=
"DateTime" overloaded=
"no"> 
20240         <autodoc>DateTime.GetEndDST(int year=Inv_Year, int country=Country_Default) -
> DateTime
</autodoc> 
20242           <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/> 
20243           <param name=
"country" type=
"wxDateTime::Country" default=
"wxDateTime::Country_Default"/> 
20246       <staticmethod name=
"Now" type=
"DateTime" overloaded=
"no"> 
20247         <autodoc>DateTime.Now() -
> DateTime
</autodoc> 
20249       <staticmethod name=
"UNow" type=
"DateTime" overloaded=
"no"> 
20250         <autodoc>DateTime.UNow() -
> DateTime
</autodoc> 
20252       <staticmethod name=
"Today" type=
"DateTime" overloaded=
"no"> 
20253         <autodoc>DateTime.Today() -
> DateTime
</autodoc> 
20255       <method name=
"SetToCurrent" type=
"DateTime" overloaded=
"no"> 
20256         <autodoc>SetToCurrent() -
> DateTime
</autodoc> 
20258       <method name=
"SetTimeT" type=
"DateTime" overloaded=
"no"> 
20259         <autodoc>SetTimeT(time_t timet) -
> DateTime
</autodoc> 
20261           <param name=
"timet" type=
"time_t" default=
""/> 
20264       <method name=
"SetJDN" type=
"DateTime" overloaded=
"no"> 
20265         <autodoc>SetJDN(double jdn) -
> DateTime
</autodoc> 
20267           <param name=
"jdn" type=
"double" default=
""/> 
20270       <method name=
"SetHMS" type=
"DateTime" overloaded=
"no"> 
20271         <autodoc>SetHMS(int hour, int minute=
0, int second=
0, int millisec=
0) -
> DateTime
</autodoc> 
20273           <param name=
"hour" type=
"int" default=
""/> 
20274           <param name=
"minute" type=
"int" default=
"0"/> 
20275           <param name=
"second" type=
"int" default=
"0"/> 
20276           <param name=
"millisec" type=
"int" default=
"0"/> 
20279       <method name=
"Set" type=
"DateTime" overloaded=
"no"> 
20280         <autodoc>Set(int day, int month=Inv_Month, int year=Inv_Year, int hour=
0, 
 
20281     int minute=
0, int second=
0, int millisec=
0) -
> DateTime
</autodoc> 
20283           <param name=
"day" type=
"int" default=
""/> 
20284           <param name=
"month" type=
"wxDateTime::Month" default=
"wxDateTime::Inv_Month"/> 
20285           <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/> 
20286           <param name=
"hour" type=
"int" default=
"0"/> 
20287           <param name=
"minute" type=
"int" default=
"0"/> 
20288           <param name=
"second" type=
"int" default=
"0"/> 
20289           <param name=
"millisec" type=
"int" default=
"0"/> 
20292       <method name=
"ResetTime" type=
"DateTime" overloaded=
"no"> 
20293         <autodoc>ResetTime() -
> DateTime
</autodoc> 
20295       <method name=
"SetYear" type=
"DateTime" overloaded=
"no"> 
20296         <autodoc>SetYear(int year) -
> DateTime
</autodoc> 
20298           <param name=
"year" type=
"int" default=
""/> 
20301       <method name=
"SetMonth" type=
"DateTime" overloaded=
"no"> 
20302         <autodoc>SetMonth(int month) -
> DateTime
</autodoc> 
20304           <param name=
"month" type=
"wxDateTime::Month" default=
""/> 
20307       <method name=
"SetDay" type=
"DateTime" overloaded=
"no"> 
20308         <autodoc>SetDay(int day) -
> DateTime
</autodoc> 
20310           <param name=
"day" type=
"int" default=
""/> 
20313       <method name=
"SetHour" type=
"DateTime" overloaded=
"no"> 
20314         <autodoc>SetHour(int hour) -
> DateTime
</autodoc> 
20316           <param name=
"hour" type=
"int" default=
""/> 
20319       <method name=
"SetMinute" type=
"DateTime" overloaded=
"no"> 
20320         <autodoc>SetMinute(int minute) -
> DateTime
</autodoc> 
20322           <param name=
"minute" type=
"int" default=
""/> 
20325       <method name=
"SetSecond" type=
"DateTime" overloaded=
"no"> 
20326         <autodoc>SetSecond(int second) -
> DateTime
</autodoc> 
20328           <param name=
"second" type=
"int" default=
""/> 
20331       <method name=
"SetMillisecond" type=
"DateTime" overloaded=
"no"> 
20332         <autodoc>SetMillisecond(int millisecond) -
> DateTime
</autodoc> 
20334           <param name=
"millisecond" type=
"int" default=
""/> 
20337       <method name=
"SetToWeekDayInSameWeek" type=
"DateTime" overloaded=
"no"> 
20338         <autodoc>SetToWeekDayInSameWeek(int weekday, int flags=Monday_First) -
> DateTime
</autodoc> 
20340           <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/> 
20341           <param name=
"flags" type=
"wxDateTime::WeekFlags" default=
"wxDateTime::Monday_First"/> 
20344       <method name=
"GetWeekDayInSameWeek" type=
"DateTime" overloaded=
"no"> 
20345         <autodoc>GetWeekDayInSameWeek(int weekday, int flags=Monday_First) -
> DateTime
</autodoc> 
20347           <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/> 
20348           <param name=
"flags" type=
"wxDateTime::WeekFlags" default=
"wxDateTime::Monday_First"/> 
20351       <method name=
"SetToNextWeekDay" type=
"DateTime" overloaded=
"no"> 
20352         <autodoc>SetToNextWeekDay(int weekday) -
> DateTime
</autodoc> 
20354           <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/> 
20357       <method name=
"GetNextWeekDay" type=
"DateTime" overloaded=
"no"> 
20358         <autodoc>GetNextWeekDay(int weekday) -
> DateTime
</autodoc> 
20360           <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/> 
20363       <method name=
"SetToPrevWeekDay" type=
"DateTime" overloaded=
"no"> 
20364         <autodoc>SetToPrevWeekDay(int weekday) -
> DateTime
</autodoc> 
20366           <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/> 
20369       <method name=
"GetPrevWeekDay" type=
"DateTime" overloaded=
"no"> 
20370         <autodoc>GetPrevWeekDay(int weekday) -
> DateTime
</autodoc> 
20372           <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/> 
20375       <method name=
"SetToWeekDay" type=
"bool" overloaded=
"no"> 
20376         <autodoc>SetToWeekDay(int weekday, int n=
1, int month=Inv_Month, int year=Inv_Year) -
> bool
</autodoc> 
20378           <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/> 
20379           <param name=
"n" type=
"int" default=
"1"/> 
20380           <param name=
"month" type=
"wxDateTime::Month" default=
"wxDateTime::Inv_Month"/> 
20381           <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/> 
20384       <method name=
"SetToLastWeekDay" type=
"bool" overloaded=
"no"> 
20385         <autodoc>SetToLastWeekDay(int weekday, int month=Inv_Month, int year=Inv_Year) -
> bool
</autodoc> 
20387           <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/> 
20388           <param name=
"month" type=
"wxDateTime::Month" default=
"wxDateTime::Inv_Month"/> 
20389           <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/> 
20392       <method name=
"GetLastWeekDay" type=
"DateTime" overloaded=
"no"> 
20393         <autodoc>GetLastWeekDay(int weekday, int month=Inv_Month, int year=Inv_Year) -
> DateTime
</autodoc> 
20395           <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/> 
20396           <param name=
"month" type=
"wxDateTime::Month" default=
"wxDateTime::Inv_Month"/> 
20397           <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/> 
20400       <method name=
"SetToTheWeek" type=
"bool" overloaded=
"no"> 
20401         <autodoc>SetToTheWeek(int numWeek, int weekday=Mon, int flags=Monday_First) -
> bool
</autodoc> 
20403           <param name=
"numWeek" type=
"int" default=
""/> 
20404           <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
"wxDateTime::Mon"/> 
20405           <param name=
"flags" type=
"wxDateTime::WeekFlags" default=
"wxDateTime::Monday_First"/> 
20408       <method name=
"GetWeek" type=
"DateTime" overloaded=
"no"> 
20409         <autodoc>GetWeek(int numWeek, int weekday=Mon, int flags=Monday_First) -
> DateTime
</autodoc> 
20411           <param name=
"numWeek" type=
"int" default=
""/> 
20412           <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
"wxDateTime::Mon"/> 
20413           <param name=
"flags" type=
"wxDateTime::WeekFlags" default=
"wxDateTime::Monday_First"/> 
20416       <method name=
"SetToLastMonthDay" type=
"DateTime" overloaded=
"no"> 
20417         <autodoc>SetToLastMonthDay(int month=Inv_Month, int year=Inv_Year) -
> DateTime
</autodoc> 
20419           <param name=
"month" type=
"wxDateTime::Month" default=
"wxDateTime::Inv_Month"/> 
20420           <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/> 
20423       <method name=
"GetLastMonthDay" type=
"DateTime" overloaded=
"no"> 
20424         <autodoc>GetLastMonthDay(int month=Inv_Month, int year=Inv_Year) -
> DateTime
</autodoc> 
20426           <param name=
"month" type=
"wxDateTime::Month" default=
"wxDateTime::Inv_Month"/> 
20427           <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/> 
20430       <method name=
"SetToYearDay" type=
"DateTime" overloaded=
"no"> 
20431         <autodoc>SetToYearDay(int yday) -
> DateTime
</autodoc> 
20433           <param name=
"yday" type=
"int" default=
""/> 
20436       <method name=
"GetYearDay" type=
"DateTime" overloaded=
"no"> 
20437         <autodoc>GetYearDay(int yday) -
> DateTime
</autodoc> 
20439           <param name=
"yday" type=
"int" default=
""/> 
20442       <method name=
"GetJulianDayNumber" type=
"double" overloaded=
"no"> 
20443         <autodoc>GetJulianDayNumber() -
> double
</autodoc> 
20445       <method name=
"GetJDN" type=
"double" overloaded=
"no"> 
20446         <autodoc>GetJDN() -
> double
</autodoc> 
20448       <method name=
"GetModifiedJulianDayNumber" type=
"double" overloaded=
"no"> 
20449         <autodoc>GetModifiedJulianDayNumber() -
> double
</autodoc> 
20451       <method name=
"GetMJD" type=
"double" overloaded=
"no"> 
20452         <autodoc>GetMJD() -
> double
</autodoc> 
20454       <method name=
"GetRataDie" type=
"double" overloaded=
"no"> 
20455         <autodoc>GetRataDie() -
> double
</autodoc> 
20457       <method name=
"ToTimezone" type=
"DateTime" overloaded=
"no"> 
20458         <autodoc>ToTimezone(wxDateTime::TimeZone tz, bool noDST=False) -
> DateTime
</autodoc> 
20460           <param name=
"tz" type=
"wxDateTime::TimeZone" default=
""/> 
20461           <param name=
"noDST" type=
"bool" default=
"False"/> 
20464       <method name=
"MakeTimezone" type=
"DateTime" overloaded=
"no"> 
20465         <autodoc>MakeTimezone(wxDateTime::TimeZone tz, bool noDST=False) -
> DateTime
</autodoc> 
20467           <param name=
"tz" type=
"wxDateTime::TimeZone" default=
""/> 
20468           <param name=
"noDST" type=
"bool" default=
"False"/> 
20471       <method name=
"ToGMT" type=
"DateTime" overloaded=
"no"> 
20472         <autodoc>ToGMT(bool noDST=False) -
> DateTime
</autodoc> 
20474           <param name=
"noDST" type=
"bool" default=
"False"/> 
20477       <method name=
"MakeGMT" type=
"DateTime" overloaded=
"no"> 
20478         <autodoc>MakeGMT(bool noDST=False) -
> DateTime
</autodoc> 
20480           <param name=
"noDST" type=
"bool" default=
"False"/> 
20483       <method name=
"IsDST" type=
"int" overloaded=
"no"> 
20484         <autodoc>IsDST(int country=Country_Default) -
> int
</autodoc> 
20486           <param name=
"country" type=
"wxDateTime::Country" default=
"wxDateTime::Country_Default"/> 
20489       <method name=
"IsValid" type=
"bool" overloaded=
"no"> 
20490         <autodoc>IsValid() -
> bool
</autodoc> 
20492       <method name=
"GetTicks" type=
"time_t" overloaded=
"no"> 
20493         <autodoc>GetTicks() -
> time_t
</autodoc> 
20495       <method name=
"GetYear" type=
"int" overloaded=
"no"> 
20496         <autodoc>GetYear(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc> 
20498           <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/> 
20501       <method name=
"GetMonth" type=
"wxDateTime::Month" overloaded=
"no"> 
20502         <autodoc>GetMonth(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc> 
20504           <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/> 
20507       <method name=
"GetDay" type=
"int" overloaded=
"no"> 
20508         <autodoc>GetDay(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc> 
20510           <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/> 
20513       <method name=
"GetWeekDay" type=
"wxDateTime::WeekDay" overloaded=
"no"> 
20514         <autodoc>GetWeekDay(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc> 
20516           <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/> 
20519       <method name=
"GetHour" type=
"int" overloaded=
"no"> 
20520         <autodoc>GetHour(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc> 
20522           <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/> 
20525       <method name=
"GetMinute" type=
"int" overloaded=
"no"> 
20526         <autodoc>GetMinute(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc> 
20528           <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/> 
20531       <method name=
"GetSecond" type=
"int" overloaded=
"no"> 
20532         <autodoc>GetSecond(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc> 
20534           <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/> 
20537       <method name=
"GetMillisecond" type=
"int" overloaded=
"no"> 
20538         <autodoc>GetMillisecond(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc> 
20540           <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/> 
20543       <method name=
"GetDayOfYear" type=
"int" overloaded=
"no"> 
20544         <autodoc>GetDayOfYear(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc> 
20546           <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/> 
20549       <method name=
"GetWeekOfYear" type=
"int" overloaded=
"no"> 
20550         <autodoc>GetWeekOfYear(int flags=Monday_First, wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc> 
20552           <param name=
"flags" type=
"wxDateTime::WeekFlags" default=
"wxDateTime::Monday_First"/> 
20553           <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/> 
20556       <method name=
"GetWeekOfMonth" type=
"int" overloaded=
"no"> 
20557         <autodoc>GetWeekOfMonth(int flags=Monday_First, wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc> 
20559           <param name=
"flags" type=
"wxDateTime::WeekFlags" default=
"wxDateTime::Monday_First"/> 
20560           <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/> 
20563       <method name=
"IsWorkDay" type=
"bool" overloaded=
"no"> 
20564         <autodoc>IsWorkDay(int country=Country_Default) -
> bool
</autodoc> 
20566           <param name=
"country" type=
"wxDateTime::Country" default=
"wxDateTime::Country_Default"/> 
20569       <method name=
"IsEqualTo" type=
"bool" overloaded=
"no"> 
20570         <autodoc>IsEqualTo(DateTime datetime) -
> bool
</autodoc> 
20572           <param name=
"datetime" type=
"DateTime" default=
""/> 
20575       <method name=
"IsEarlierThan" type=
"bool" overloaded=
"no"> 
20576         <autodoc>IsEarlierThan(DateTime datetime) -
> bool
</autodoc> 
20578           <param name=
"datetime" type=
"DateTime" default=
""/> 
20581       <method name=
"IsLaterThan" type=
"bool" overloaded=
"no"> 
20582         <autodoc>IsLaterThan(DateTime datetime) -
> bool
</autodoc> 
20584           <param name=
"datetime" type=
"DateTime" default=
""/> 
20587       <method name=
"IsStrictlyBetween" type=
"bool" overloaded=
"no"> 
20588         <autodoc>IsStrictlyBetween(DateTime t1, DateTime t2) -
> bool
</autodoc> 
20590           <param name=
"t1" type=
"DateTime" default=
""/> 
20591           <param name=
"t2" type=
"DateTime" default=
""/> 
20594       <method name=
"IsBetween" type=
"bool" overloaded=
"no"> 
20595         <autodoc>IsBetween(DateTime t1, DateTime t2) -
> bool
</autodoc> 
20597           <param name=
"t1" type=
"DateTime" default=
""/> 
20598           <param name=
"t2" type=
"DateTime" default=
""/> 
20601       <method name=
"IsSameDate" type=
"bool" overloaded=
"no"> 
20602         <autodoc>IsSameDate(DateTime dt) -
> bool
</autodoc> 
20604           <param name=
"dt" type=
"DateTime" default=
""/> 
20607       <method name=
"IsSameTime" type=
"bool" overloaded=
"no"> 
20608         <autodoc>IsSameTime(DateTime dt) -
> bool
</autodoc> 
20610           <param name=
"dt" type=
"DateTime" default=
""/> 
20613       <method name=
"IsEqualUpTo" type=
"bool" overloaded=
"no"> 
20614         <autodoc>IsEqualUpTo(DateTime dt, TimeSpan ts) -
> bool
</autodoc> 
20616           <param name=
"dt" type=
"DateTime" default=
""/> 
20617           <param name=
"ts" type=
"wxTimeSpan" default=
""/> 
20620       <method name=
"AddTS" type=
"DateTime" overloaded=
"no"> 
20621         <autodoc>AddTS(TimeSpan diff) -
> DateTime
</autodoc> 
20623           <param name=
"diff" type=
"wxTimeSpan" default=
""/> 
20626       <method name=
"AddDS" type=
"DateTime" overloaded=
"no"> 
20627         <autodoc>AddDS(DateSpan diff) -
> DateTime
</autodoc> 
20629           <param name=
"diff" type=
"wxDateSpan" default=
""/> 
20632       <method name=
"SubtractTS" type=
"DateTime" overloaded=
"no"> 
20633         <autodoc>SubtractTS(TimeSpan diff) -
> DateTime
</autodoc> 
20635           <param name=
"diff" type=
"wxTimeSpan" default=
""/> 
20638       <method name=
"SubtractDS" type=
"DateTime" overloaded=
"no"> 
20639         <autodoc>SubtractDS(DateSpan diff) -
> DateTime
</autodoc> 
20641           <param name=
"diff" type=
"wxDateSpan" default=
""/> 
20644       <method name=
"Subtract" type=
"wxTimeSpan" overloaded=
"no"> 
20645         <autodoc>Subtract(DateTime dt) -
> TimeSpan
</autodoc> 
20647           <param name=
"dt" type=
"DateTime" default=
""/> 
20650       <method name=
"__iadd__" type=
"DateTime" overloaded=
"yes"> 
20652           <param name=
"diff" type=
"wxTimeSpan" default=
""/> 
20655       <method name=
"__iadd__" type=
"DateTime" overloaded=
"yes"> 
20656         <autodoc>__iadd__(TimeSpan diff) -
> DateTime
 
20657 __iadd__(DateSpan diff) -
> DateTime
</autodoc> 
20659           <param name=
"diff" type=
"wxDateSpan" default=
""/> 
20662       <method name=
"__isub__" type=
"DateTime" overloaded=
"yes"> 
20664           <param name=
"diff" type=
"wxTimeSpan" default=
""/> 
20667       <method name=
"__isub__" type=
"DateTime" overloaded=
"yes"> 
20668         <autodoc>__isub__(TimeSpan diff) -
> DateTime
 
20669 __isub__(DateSpan diff) -
> DateTime
</autodoc> 
20671           <param name=
"diff" type=
"wxDateSpan" default=
""/> 
20674       <method name=
"__add__" type=
"DateTime" overloaded=
"yes"> 
20676           <param name=
"other" type=
"wxTimeSpan" default=
""/> 
20679       <method name=
"__add__" type=
"DateTime" overloaded=
"yes"> 
20680         <autodoc>__add__(TimeSpan other) -
> DateTime
 
20681 __add__(DateSpan other) -
> DateTime
</autodoc> 
20683           <param name=
"other" type=
"wxDateSpan" default=
""/> 
20686       <method name=
"__sub__" type=
"wxTimeSpan" overloaded=
"yes"> 
20688           <param name=
"other" type=
"DateTime" default=
""/> 
20691       <method name=
"__sub__" type=
"DateTime" overloaded=
"yes"> 
20693           <param name=
"other" type=
"wxTimeSpan" default=
""/> 
20696       <method name=
"__sub__" type=
"DateTime" overloaded=
"yes"> 
20697         <autodoc>__sub__(DateTime other) -
> TimeSpan
 
20698 __sub__(TimeSpan other) -
> DateTime
 
20699 __sub__(DateSpan other) -
> DateTime
</autodoc> 
20701           <param name=
"other" type=
"wxDateSpan" default=
""/> 
20704       <method name=
"__lt__" type=
"bool" overloaded=
"no"> 
20705         <autodoc>__lt__(DateTime other) -
> bool
</autodoc> 
20707           <param name=
"other" type=
"DateTime" default=
""/> 
20710       <method name=
"__le__" type=
"bool" overloaded=
"no"> 
20711         <autodoc>__le__(DateTime other) -
> bool
</autodoc> 
20713           <param name=
"other" type=
"DateTime" default=
""/> 
20716       <method name=
"__gt__" type=
"bool" overloaded=
"no"> 
20717         <autodoc>__gt__(DateTime other) -
> bool
</autodoc> 
20719           <param name=
"other" type=
"DateTime" default=
""/> 
20722       <method name=
"__ge__" type=
"bool" overloaded=
"no"> 
20723         <autodoc>__ge__(DateTime other) -
> bool
</autodoc> 
20725           <param name=
"other" type=
"DateTime" default=
""/> 
20728       <method name=
"__eq__" type=
"bool" overloaded=
"no"> 
20729         <autodoc>__eq__(DateTime other) -
> bool
</autodoc> 
20731           <param name=
"other" type=
"DateTime" default=
""/> 
20734       <method name=
"__ne__" type=
"bool" overloaded=
"no"> 
20735         <autodoc>__ne__(DateTime other) -
> bool
</autodoc> 
20737           <param name=
"other" type=
"DateTime" default=
""/> 
20740       <method name=
"ParseRfc822Date" type=
"int" overloaded=
"no"> 
20741         <autodoc>ParseRfc822Date(String date) -
> int
</autodoc> 
20743           <param name=
"date" type=
"String" default=
""/> 
20746       <method name=
"ParseFormat" type=
"int" overloaded=
"no"> 
20747         <autodoc>ParseFormat(String date, String format=DateFormatStr, DateTime dateDef=wxDefaultDateTime) -
> int
</autodoc> 
20749           <param name=
"date" type=
"String" default=
""/> 
20750           <param name=
"format" type=
"String" default=
"wxPyDateFormatStr"/> 
20751           <param name=
"dateDef" type=
"DateTime" default=
"wxDefaultDateTime"/> 
20754       <method name=
"ParseDateTime" type=
"int" overloaded=
"no"> 
20755         <autodoc>ParseDateTime(String datetime) -
> int
</autodoc> 
20757           <param name=
"datetime" type=
"String" default=
""/> 
20760       <method name=
"ParseDate" type=
"int" overloaded=
"no"> 
20761         <autodoc>ParseDate(String date) -
> int
</autodoc> 
20763           <param name=
"date" type=
"String" default=
""/> 
20766       <method name=
"ParseTime" type=
"int" overloaded=
"no"> 
20767         <autodoc>ParseTime(String time) -
> int
</autodoc> 
20769           <param name=
"time" type=
"String" default=
""/> 
20772       <method name=
"Format" type=
"String" overloaded=
"no"> 
20773         <autodoc>Format(String format=DateFormatStr, wxDateTime::TimeZone tz=LOCAL_TZ) -
> String
</autodoc> 
20775           <param name=
"format" type=
"String" default=
"wxPyDateFormatStr"/> 
20776           <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/> 
20779       <method name=
"FormatDate" type=
"String" overloaded=
"no"> 
20780         <autodoc>FormatDate() -
> String
</autodoc> 
20782       <method name=
"FormatTime" type=
"String" overloaded=
"no"> 
20783         <autodoc>FormatTime() -
> String
</autodoc> 
20785       <method name=
"FormatISODate" type=
"String" overloaded=
"no"> 
20786         <autodoc>FormatISODate() -
> String
</autodoc> 
20788       <method name=
"FormatISOTime" type=
"String" overloaded=
"no"> 
20789         <autodoc>FormatISOTime() -
> String
</autodoc> 
20792     <class name=
"TimeSpan" oldname=
"wxTimeSpan" module=
"misc"> 
20793       <constructor name=
"TimeSpan" overloaded=
"no"> 
20794         <autodoc>__init__(long hours=
0, long minutes=
0, long seconds=
0, long milliseconds=
0) -
> TimeSpan
</autodoc> 
20796           <param name=
"hours" type=
"long" default=
"0"/> 
20797           <param name=
"minutes" type=
"long" default=
"0"/> 
20798           <param name=
"seconds" type=
"long" default=
"0"/> 
20799           <param name=
"milliseconds" type=
"long" default=
"0"/> 
20802       <destructor name=
"~wxTimeSpan" overloaded=
"no"> 
20803         <autodoc>__del__()
</autodoc> 
20805       <staticmethod name=
"Seconds" type=
"TimeSpan" overloaded=
"no"> 
20806         <autodoc>TimeSpan.Seconds(long sec) -
> TimeSpan
</autodoc> 
20808           <param name=
"sec" type=
"long" default=
""/> 
20811       <staticmethod name=
"Second" type=
"TimeSpan" overloaded=
"no"> 
20812         <autodoc>TimeSpan.Second() -
> TimeSpan
</autodoc> 
20814       <staticmethod name=
"Minutes" type=
"TimeSpan" overloaded=
"no"> 
20815         <autodoc>TimeSpan.Minutes(long min) -
> TimeSpan
</autodoc> 
20817           <param name=
"min" type=
"long" default=
""/> 
20820       <staticmethod name=
"Minute" type=
"TimeSpan" overloaded=
"no"> 
20821         <autodoc>TimeSpan.Minute() -
> TimeSpan
</autodoc> 
20823       <staticmethod name=
"Hours" type=
"TimeSpan" overloaded=
"no"> 
20824         <autodoc>TimeSpan.Hours(long hours) -
> TimeSpan
</autodoc> 
20826           <param name=
"hours" type=
"long" default=
""/> 
20829       <staticmethod name=
"Hour" type=
"TimeSpan" overloaded=
"no"> 
20830         <autodoc>TimeSpan.Hour() -
> TimeSpan
</autodoc> 
20832       <staticmethod name=
"Days" type=
"TimeSpan" overloaded=
"no"> 
20833         <autodoc>TimeSpan.Days(long days) -
> TimeSpan
</autodoc> 
20835           <param name=
"days" type=
"long" default=
""/> 
20838       <staticmethod name=
"Day" type=
"TimeSpan" overloaded=
"no"> 
20839         <autodoc>TimeSpan.Day() -
> TimeSpan
</autodoc> 
20841       <staticmethod name=
"Weeks" type=
"TimeSpan" overloaded=
"no"> 
20842         <autodoc>TimeSpan.Weeks(long days) -
> TimeSpan
</autodoc> 
20844           <param name=
"days" type=
"long" default=
""/> 
20847       <staticmethod name=
"Week" type=
"TimeSpan" overloaded=
"no"> 
20848         <autodoc>TimeSpan.Week() -
> TimeSpan
</autodoc> 
20850       <method name=
"Add" type=
"TimeSpan" overloaded=
"no"> 
20851         <autodoc>Add(TimeSpan diff) -
> TimeSpan
</autodoc> 
20853           <param name=
"diff" type=
"TimeSpan" default=
""/> 
20856       <method name=
"Subtract" type=
"TimeSpan" overloaded=
"no"> 
20857         <autodoc>Subtract(TimeSpan diff) -
> TimeSpan
</autodoc> 
20859           <param name=
"diff" type=
"TimeSpan" default=
""/> 
20862       <method name=
"Multiply" type=
"TimeSpan" overloaded=
"no"> 
20863         <autodoc>Multiply(int n) -
> TimeSpan
</autodoc> 
20865           <param name=
"n" type=
"int" default=
""/> 
20868       <method name=
"Neg" type=
"TimeSpan" overloaded=
"no"> 
20869         <autodoc>Neg() -
> TimeSpan
</autodoc> 
20871       <method name=
"Abs" type=
"TimeSpan" overloaded=
"no"> 
20872         <autodoc>Abs() -
> TimeSpan
</autodoc> 
20874       <method name=
"__iadd__" type=
"TimeSpan" overloaded=
"no"> 
20875         <autodoc>__iadd__(TimeSpan diff) -
> TimeSpan
</autodoc> 
20877           <param name=
"diff" type=
"TimeSpan" default=
""/> 
20880       <method name=
"__isub__" type=
"TimeSpan" overloaded=
"no"> 
20881         <autodoc>__isub__(TimeSpan diff) -
> TimeSpan
</autodoc> 
20883           <param name=
"diff" type=
"TimeSpan" default=
""/> 
20886       <method name=
"__imul__" type=
"TimeSpan" overloaded=
"no"> 
20887         <autodoc>__imul__(int n) -
> TimeSpan
</autodoc> 
20889           <param name=
"n" type=
"int" default=
""/> 
20892       <method name=
"__neg__" type=
"TimeSpan" overloaded=
"no"> 
20893         <autodoc>__neg__() -
> TimeSpan
</autodoc> 
20895       <method name=
"__add__" type=
"TimeSpan" overloaded=
"no"> 
20896         <autodoc>__add__(TimeSpan other) -
> TimeSpan
</autodoc> 
20898           <param name=
"other" type=
"TimeSpan" default=
""/> 
20901       <method name=
"__sub__" type=
"TimeSpan" overloaded=
"no"> 
20902         <autodoc>__sub__(TimeSpan other) -
> TimeSpan
</autodoc> 
20904           <param name=
"other" type=
"TimeSpan" default=
""/> 
20907       <method name=
"__mul__" type=
"TimeSpan" overloaded=
"no"> 
20908         <autodoc>__mul__(int n) -
> TimeSpan
</autodoc> 
20910           <param name=
"n" type=
"int" default=
""/> 
20913       <method name=
"__rmul__" type=
"TimeSpan" overloaded=
"no"> 
20914         <autodoc>__rmul__(int n) -
> TimeSpan
</autodoc> 
20916           <param name=
"n" type=
"int" default=
""/> 
20919       <method name=
"__lt__" type=
"bool" overloaded=
"no"> 
20920         <autodoc>__lt__(TimeSpan other) -
> bool
</autodoc> 
20922           <param name=
"other" type=
"TimeSpan" default=
""/> 
20925       <method name=
"__le__" type=
"bool" overloaded=
"no"> 
20926         <autodoc>__le__(TimeSpan other) -
> bool
</autodoc> 
20928           <param name=
"other" type=
"TimeSpan" default=
""/> 
20931       <method name=
"__gt__" type=
"bool" overloaded=
"no"> 
20932         <autodoc>__gt__(TimeSpan other) -
> bool
</autodoc> 
20934           <param name=
"other" type=
"TimeSpan" default=
""/> 
20937       <method name=
"__ge__" type=
"bool" overloaded=
"no"> 
20938         <autodoc>__ge__(TimeSpan other) -
> bool
</autodoc> 
20940           <param name=
"other" type=
"TimeSpan" default=
""/> 
20943       <method name=
"__eq__" type=
"bool" overloaded=
"no"> 
20944         <autodoc>__eq__(TimeSpan other) -
> bool
</autodoc> 
20946           <param name=
"other" type=
"TimeSpan" default=
""/> 
20949       <method name=
"__ne__" type=
"bool" overloaded=
"no"> 
20950         <autodoc>__ne__(TimeSpan other) -
> bool
</autodoc> 
20952           <param name=
"other" type=
"TimeSpan" default=
""/> 
20955       <method name=
"IsNull" type=
"bool" overloaded=
"no"> 
20956         <autodoc>IsNull() -
> bool
</autodoc> 
20958       <method name=
"IsPositive" type=
"bool" overloaded=
"no"> 
20959         <autodoc>IsPositive() -
> bool
</autodoc> 
20961       <method name=
"IsNegative" type=
"bool" overloaded=
"no"> 
20962         <autodoc>IsNegative() -
> bool
</autodoc> 
20964       <method name=
"IsEqualTo" type=
"bool" overloaded=
"no"> 
20965         <autodoc>IsEqualTo(TimeSpan ts) -
> bool
</autodoc> 
20967           <param name=
"ts" type=
"TimeSpan" default=
""/> 
20970       <method name=
"IsLongerThan" type=
"bool" overloaded=
"no"> 
20971         <autodoc>IsLongerThan(TimeSpan ts) -
> bool
</autodoc> 
20973           <param name=
"ts" type=
"TimeSpan" default=
""/> 
20976       <method name=
"IsShorterThan" type=
"bool" overloaded=
"no"> 
20977         <autodoc>IsShorterThan(TimeSpan t) -
> bool
</autodoc> 
20979           <param name=
"t" type=
"TimeSpan" default=
""/> 
20982       <method name=
"GetWeeks" type=
"int" overloaded=
"no"> 
20983         <autodoc>GetWeeks() -
> int
</autodoc> 
20985       <method name=
"GetDays" type=
"int" overloaded=
"no"> 
20986         <autodoc>GetDays() -
> int
</autodoc> 
20988       <method name=
"GetHours" type=
"int" overloaded=
"no"> 
20989         <autodoc>GetHours() -
> int
</autodoc> 
20991       <method name=
"GetMinutes" type=
"int" overloaded=
"no"> 
20992         <autodoc>GetMinutes() -
> int
</autodoc> 
20994       <method name=
"GetSeconds" type=
"wxLongLong" overloaded=
"no"> 
20995         <autodoc>GetSeconds() -
> wxLongLong
</autodoc> 
20997       <method name=
"GetMilliseconds" type=
"wxLongLong" overloaded=
"no"> 
20998         <autodoc>GetMilliseconds() -
> wxLongLong
</autodoc> 
21000       <method name=
"Format" type=
"String" overloaded=
"no"> 
21001         <autodoc>Format(String format=TimeSpanFormatStr) -
> String
</autodoc> 
21003           <param name=
"format" type=
"String" default=
"wxPyTimeSpanFormatStr"/> 
21007     <class name=
"DateSpan" oldname=
"wxDateSpan" module=
"misc"> 
21008       <constructor name=
"DateSpan" overloaded=
"no"> 
21009         <autodoc>__init__(int years=
0, int months=
0, int weeks=
0, int days=
0) -
> DateSpan
</autodoc> 
21011           <param name=
"years" type=
"int" default=
"0"/> 
21012           <param name=
"months" type=
"int" default=
"0"/> 
21013           <param name=
"weeks" type=
"int" default=
"0"/> 
21014           <param name=
"days" type=
"int" default=
"0"/> 
21017       <destructor name=
"~wxDateSpan" overloaded=
"no"> 
21018         <autodoc>__del__()
</autodoc> 
21020       <staticmethod name=
"Days" type=
"DateSpan" overloaded=
"no"> 
21021         <autodoc>DateSpan.Days(int days) -
> DateSpan
</autodoc> 
21023           <param name=
"days" type=
"int" default=
""/> 
21026       <staticmethod name=
"Day" type=
"DateSpan" overloaded=
"no"> 
21027         <autodoc>DateSpan.Day() -
> DateSpan
</autodoc> 
21029       <staticmethod name=
"Weeks" type=
"DateSpan" overloaded=
"no"> 
21030         <autodoc>DateSpan.Weeks(int weeks) -
> DateSpan
</autodoc> 
21032           <param name=
"weeks" type=
"int" default=
""/> 
21035       <staticmethod name=
"Week" type=
"DateSpan" overloaded=
"no"> 
21036         <autodoc>DateSpan.Week() -
> DateSpan
</autodoc> 
21038       <staticmethod name=
"Months" type=
"DateSpan" overloaded=
"no"> 
21039         <autodoc>DateSpan.Months(int mon) -
> DateSpan
</autodoc> 
21041           <param name=
"mon" type=
"int" default=
""/> 
21044       <staticmethod name=
"Month" type=
"DateSpan" overloaded=
"no"> 
21045         <autodoc>DateSpan.Month() -
> DateSpan
</autodoc> 
21047       <staticmethod name=
"Years" type=
"DateSpan" overloaded=
"no"> 
21048         <autodoc>DateSpan.Years(int years) -
> DateSpan
</autodoc> 
21050           <param name=
"years" type=
"int" default=
""/> 
21053       <staticmethod name=
"Year" type=
"DateSpan" overloaded=
"no"> 
21054         <autodoc>DateSpan.Year() -
> DateSpan
</autodoc> 
21056       <method name=
"SetYears" type=
"DateSpan" overloaded=
"no"> 
21057         <autodoc>SetYears(int n) -
> DateSpan
</autodoc> 
21059           <param name=
"n" type=
"int" default=
""/> 
21062       <method name=
"SetMonths" type=
"DateSpan" overloaded=
"no"> 
21063         <autodoc>SetMonths(int n) -
> DateSpan
</autodoc> 
21065           <param name=
"n" type=
"int" default=
""/> 
21068       <method name=
"SetWeeks" type=
"DateSpan" overloaded=
"no"> 
21069         <autodoc>SetWeeks(int n) -
> DateSpan
</autodoc> 
21071           <param name=
"n" type=
"int" default=
""/> 
21074       <method name=
"SetDays" type=
"DateSpan" overloaded=
"no"> 
21075         <autodoc>SetDays(int n) -
> DateSpan
</autodoc> 
21077           <param name=
"n" type=
"int" default=
""/> 
21080       <method name=
"GetYears" type=
"int" overloaded=
"no"> 
21081         <autodoc>GetYears() -
> int
</autodoc> 
21083       <method name=
"GetMonths" type=
"int" overloaded=
"no"> 
21084         <autodoc>GetMonths() -
> int
</autodoc> 
21086       <method name=
"GetWeeks" type=
"int" overloaded=
"no"> 
21087         <autodoc>GetWeeks() -
> int
</autodoc> 
21089       <method name=
"GetDays" type=
"int" overloaded=
"no"> 
21090         <autodoc>GetDays() -
> int
</autodoc> 
21092       <method name=
"GetTotalDays" type=
"int" overloaded=
"no"> 
21093         <autodoc>GetTotalDays() -
> int
</autodoc> 
21095       <method name=
"Add" type=
"DateSpan" overloaded=
"no"> 
21096         <autodoc>Add(DateSpan other) -
> DateSpan
</autodoc> 
21098           <param name=
"other" type=
"DateSpan" default=
""/> 
21101       <method name=
"Subtract" type=
"DateSpan" overloaded=
"no"> 
21102         <autodoc>Subtract(DateSpan other) -
> DateSpan
</autodoc> 
21104           <param name=
"other" type=
"DateSpan" default=
""/> 
21107       <method name=
"Neg" type=
"DateSpan" overloaded=
"no"> 
21108         <autodoc>Neg() -
> DateSpan
</autodoc> 
21110       <method name=
"Multiply" type=
"DateSpan" overloaded=
"no"> 
21111         <autodoc>Multiply(int factor) -
> DateSpan
</autodoc> 
21113           <param name=
"factor" type=
"int" default=
""/> 
21116       <method name=
"__iadd__" type=
"DateSpan" overloaded=
"no"> 
21117         <autodoc>__iadd__(DateSpan other) -
> DateSpan
</autodoc> 
21119           <param name=
"other" type=
"DateSpan" default=
""/> 
21122       <method name=
"__isub__" type=
"DateSpan" overloaded=
"no"> 
21123         <autodoc>__isub__(DateSpan other) -
> DateSpan
</autodoc> 
21125           <param name=
"other" type=
"DateSpan" default=
""/> 
21128       <method name=
"__neg__" type=
"DateSpan" overloaded=
"no"> 
21129         <autodoc>__neg__() -
> DateSpan
</autodoc> 
21131       <method name=
"__imul__" type=
"DateSpan" overloaded=
"no"> 
21132         <autodoc>__imul__(int factor) -
> DateSpan
</autodoc> 
21134           <param name=
"factor" type=
"int" default=
""/> 
21137       <method name=
"__add__" type=
"DateSpan" overloaded=
"no"> 
21138         <autodoc>__add__(DateSpan other) -
> DateSpan
</autodoc> 
21140           <param name=
"other" type=
"DateSpan" default=
""/> 
21143       <method name=
"__sub__" type=
"DateSpan" overloaded=
"no"> 
21144         <autodoc>__sub__(DateSpan other) -
> DateSpan
</autodoc> 
21146           <param name=
"other" type=
"DateSpan" default=
""/> 
21149       <method name=
"__mul__" type=
"DateSpan" overloaded=
"no"> 
21150         <autodoc>__mul__(int n) -
> DateSpan
</autodoc> 
21152           <param name=
"n" type=
"int" default=
""/> 
21155       <method name=
"__rmul__" type=
"DateSpan" overloaded=
"no"> 
21156         <autodoc>__rmul__(int n) -
> DateSpan
</autodoc> 
21158           <param name=
"n" type=
"int" default=
""/> 
21161       <method name=
"__eq__" type=
"bool" overloaded=
"no"> 
21162         <autodoc>__eq__(DateSpan other) -
> bool
</autodoc> 
21164           <param name=
"other" type=
"DateSpan" default=
""/> 
21167       <method name=
"__ne__" type=
"bool" overloaded=
"no"> 
21168         <autodoc>__ne__(DateSpan other) -
> bool
</autodoc> 
21170           <param name=
"other" type=
"DateSpan" default=
""/> 
21174     <method name=
"GetLocalTime" oldname=
"wxGetLocalTime" type=
"long" overloaded=
"no"> 
21175       <autodoc>GetLocalTime() -
> long
</autodoc> 
21177     <method name=
"GetUTCTime" oldname=
"wxGetUTCTime" type=
"long" overloaded=
"no"> 
21178       <autodoc>GetUTCTime() -
> long
</autodoc> 
21180     <method name=
"GetCurrentTime" oldname=
"wxGetCurrentTime" type=
"long" overloaded=
"no"> 
21181       <autodoc>GetCurrentTime() -
> long
</autodoc> 
21183     <method name=
"GetLocalTimeMillis" oldname=
"wxGetLocalTimeMillis" type=
"wxLongLong" overloaded=
"no"> 
21184       <autodoc>GetLocalTimeMillis() -
> wxLongLong
</autodoc> 
21187 #---------------------------------------------------------------------------
 
21189     <class name=
"DataFormat" oldname=
"wxDataFormat" module=
"misc"> 
21190       <constructor name=
"DataFormat" overloaded=
"no"> 
21191         <autodoc>__init__(int type) -
> DataFormat
</autodoc> 
21193           <param name=
"type" type=
"wxDataFormatId" default=
""/> 
21196       <constructor name=
"CustomDataFormat" overloaded=
"no"> 
21197         <autodoc>CustomDataFormat(String format) -
> DataFormat
</autodoc> 
21199           <param name=
"format" type=
"String" default=
""/> 
21202       <destructor name=
"~wxDataFormat" overloaded=
"no"> 
21203         <autodoc>__del__()
</autodoc> 
21205       <method name=
"__eq__" type=
"bool" overloaded=
"yes"> 
21207           <param name=
"format" type=
"wxDataFormatId" default=
""/> 
21210       <method name=
"__ne__" type=
"bool" overloaded=
"yes"> 
21212           <param name=
"format" type=
"wxDataFormatId" default=
""/> 
21215       <method name=
"__eq__" type=
"bool" overloaded=
"yes"> 
21216         <autodoc>__eq__(int format) -
> bool
 
21217 __eq__(DataFormat format) -
> bool
</autodoc> 
21219           <param name=
"format" type=
"DataFormat" default=
""/> 
21222       <method name=
"__ne__" type=
"bool" overloaded=
"yes"> 
21223         <autodoc>__ne__(int format) -
> bool
 
21224 __ne__(DataFormat format) -
> bool
</autodoc> 
21226           <param name=
"format" type=
"DataFormat" default=
""/> 
21229       <method name=
"SetType" type=
"" overloaded=
"no"> 
21230         <autodoc>SetType(int format)
</autodoc> 
21232           <param name=
"format" type=
"wxDataFormatId" default=
""/> 
21235       <method name=
"GetType" type=
"wxDataFormatId" overloaded=
"no"> 
21236         <autodoc>GetType() -
> int
</autodoc> 
21238       <method name=
"GetId" type=
"String" overloaded=
"no"> 
21239         <autodoc>GetId() -
> String
</autodoc> 
21241       <method name=
"SetId" type=
"" overloaded=
"no"> 
21242         <autodoc>SetId(String format)
</autodoc> 
21244           <param name=
"format" type=
"String" default=
""/> 
21248     <class name=
"DataObject" oldname=
"wxDataObject" module=
"misc"> 
21249       <destructor name=
"~wxDataObject" overloaded=
"no"> 
21250         <autodoc>__del__()
</autodoc> 
21252       <method name=
"GetPreferredFormat" type=
"DataFormat" overloaded=
"no"> 
21253         <autodoc>GetPreferredFormat(int dir=Get) -
> DataFormat
</autodoc> 
21255           <param name=
"dir" type=
"wxDataObject::Direction" default=
"wxDataObject::Get"/> 
21258       <method name=
"GetFormatCount" type=
"size_t" overloaded=
"no"> 
21259         <autodoc>GetFormatCount(int dir=Get) -
> size_t
</autodoc> 
21261           <param name=
"dir" type=
"wxDataObject::Direction" default=
"wxDataObject::Get"/> 
21264       <method name=
"IsSupported" type=
"bool" overloaded=
"no"> 
21265         <autodoc>IsSupported(DataFormat format, int dir=Get) -
> bool
</autodoc> 
21267           <param name=
"format" type=
"DataFormat" default=
""/> 
21268           <param name=
"dir" type=
"wxDataObject::Direction" default=
"wxDataObject::Get"/> 
21271       <method name=
"GetDataSize" type=
"size_t" overloaded=
"no"> 
21272         <autodoc>GetDataSize(DataFormat format) -
> size_t
</autodoc> 
21274           <param name=
"format" type=
"DataFormat" default=
""/> 
21277       <method name=
"GetAllFormats" type=
"" overloaded=
"no"> 
21278         <autodoc>GetAllFormats(DataFormat formats, int dir=Get)
</autodoc> 
21280           <param name=
"formats" type=
"DataFormat" default=
""/> 
21281           <param name=
"dir" type=
"wxDataObject::Direction" default=
"wxDataObject::Get"/> 
21284       <method name=
"GetDataHere" type=
"bool" overloaded=
"no"> 
21285         <autodoc>GetDataHere(DataFormat format, void buf) -
> bool
</autodoc> 
21287           <param name=
"format" type=
"DataFormat" default=
""/> 
21288           <param name=
"buf" type=
"" default=
""/> 
21291       <method name=
"SetData" type=
"bool" overloaded=
"no"> 
21292         <autodoc>SetData(DataFormat format, size_t len, void buf) -
> bool
</autodoc> 
21294           <param name=
"format" type=
"DataFormat" default=
""/> 
21295           <param name=
"len" type=
"size_t" default=
""/> 
21296           <param name=
"buf" type=
"" default=
""/> 
21300     <class name=
"DataObjectSimple" oldname=
"wxDataObjectSimple" module=
"misc"> 
21301       <baseclass name=
"DataObject"/> 
21302       <constructor name=
"DataObjectSimple" overloaded=
"no"> 
21303         <autodoc>__init__(DataFormat format=FormatInvalid) -
> DataObjectSimple
</autodoc> 
21305           <param name=
"format" type=
"DataFormat" default=
"wxFormatInvalid"/> 
21308       <method name=
"GetFormat" type=
"DataFormat" overloaded=
"no"> 
21309         <autodoc>GetFormat() -
> DataFormat
</autodoc> 
21311       <method name=
"SetFormat" type=
"" overloaded=
"no"> 
21312         <autodoc>SetFormat(DataFormat format)
</autodoc> 
21314           <param name=
"format" type=
"DataFormat" default=
""/> 
21318     <class name=
"PyDataObjectSimple" oldname=
"wxPyDataObjectSimple" module=
"misc"> 
21319       <baseclass name=
"DataObjectSimple"/> 
21320       <constructor name=
"PyDataObjectSimple" overloaded=
"no"> 
21321         <autodoc>__init__(DataFormat format=FormatInvalid) -
> PyDataObjectSimple
</autodoc> 
21323           <param name=
"format" type=
"DataFormat" default=
"wxFormatInvalid"/> 
21326       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
21327         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
21329           <param name=
"self" type=
"PyObject" default=
""/> 
21330           <param name=
"_class" type=
"PyObject" default=
""/> 
21334     <class name=
"DataObjectComposite" oldname=
"wxDataObjectComposite" module=
"misc"> 
21335       <baseclass name=
"DataObject"/> 
21336       <constructor name=
"DataObjectComposite" overloaded=
"no"> 
21337         <autodoc>__init__() -
> DataObjectComposite
</autodoc> 
21339       <method name=
"Add" type=
"" overloaded=
"no"> 
21340         <autodoc>Add(DataObjectSimple dataObject, int preferred=False)
</autodoc> 
21342           <param name=
"dataObject" type=
"DataObjectSimple" default=
""/> 
21343           <param name=
"preferred" type=
"int" default=
"False"/> 
21347     <class name=
"TextDataObject" oldname=
"wxTextDataObject" module=
"misc"> 
21348       <baseclass name=
"DataObjectSimple"/> 
21349       <constructor name=
"TextDataObject" overloaded=
"no"> 
21350         <autodoc>__init__(String text=EmptyString) -
> TextDataObject
</autodoc> 
21352           <param name=
"text" type=
"String" default=
"wxPyEmptyString"/> 
21355       <method name=
"GetTextLength" type=
"size_t" overloaded=
"no"> 
21356         <autodoc>GetTextLength() -
> size_t
</autodoc> 
21358       <method name=
"GetText" type=
"String" overloaded=
"no"> 
21359         <autodoc>GetText() -
> String
</autodoc> 
21361       <method name=
"SetText" type=
"" overloaded=
"no"> 
21362         <autodoc>SetText(String text)
</autodoc> 
21364           <param name=
"text" type=
"String" default=
""/> 
21368     <class name=
"PyTextDataObject" oldname=
"wxPyTextDataObject" module=
"misc"> 
21369       <baseclass name=
"TextDataObject"/> 
21370       <constructor name=
"PyTextDataObject" overloaded=
"no"> 
21371         <autodoc>__init__(String text=EmptyString) -
> PyTextDataObject
</autodoc> 
21373           <param name=
"text" type=
"String" default=
"wxPyEmptyString"/> 
21376       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
21377         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
21379           <param name=
"self" type=
"PyObject" default=
""/> 
21380           <param name=
"_class" type=
"PyObject" default=
""/> 
21384     <class name=
"BitmapDataObject" oldname=
"wxBitmapDataObject" module=
"misc"> 
21385       <baseclass name=
"DataObjectSimple"/> 
21386       <constructor name=
"BitmapDataObject" overloaded=
"no"> 
21387         <autodoc>__init__(Bitmap bitmap=wxNullBitmap) -
> BitmapDataObject
</autodoc> 
21389           <param name=
"bitmap" type=
"Bitmap" default=
"wxNullBitmap"/> 
21392       <method name=
"GetBitmap" type=
"Bitmap" overloaded=
"no"> 
21393         <autodoc>GetBitmap() -
> Bitmap
</autodoc> 
21395       <method name=
"SetBitmap" type=
"" overloaded=
"no"> 
21396         <autodoc>SetBitmap(Bitmap bitmap)
</autodoc> 
21398           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
21402     <class name=
"PyBitmapDataObject" oldname=
"wxPyBitmapDataObject" module=
"misc"> 
21403       <baseclass name=
"BitmapDataObject"/> 
21404       <constructor name=
"PyBitmapDataObject" overloaded=
"no"> 
21405         <autodoc>__init__(Bitmap bitmap=wxNullBitmap) -
> PyBitmapDataObject
</autodoc> 
21407           <param name=
"bitmap" type=
"Bitmap" default=
"wxNullBitmap"/> 
21410       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
21411         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
21413           <param name=
"self" type=
"PyObject" default=
""/> 
21414           <param name=
"_class" type=
"PyObject" default=
""/> 
21418     <class name=
"FileDataObject" oldname=
"wxFileDataObject" module=
"misc"> 
21419       <baseclass name=
"DataObjectSimple"/> 
21420       <constructor name=
"FileDataObject" overloaded=
"no"> 
21421         <autodoc>__init__() -
> FileDataObject
</autodoc> 
21423       <method name=
"GetFilenames" type=
"wxArrayString" overloaded=
"no"> 
21424         <autodoc>GetFilenames() -
> wxArrayString
</autodoc> 
21427     <class name=
"CustomDataObject" oldname=
"wxCustomDataObject" module=
"misc"> 
21428       <baseclass name=
"DataObjectSimple"/> 
21429       <constructor name=
"CustomDataObject" overloaded=
"no"> 
21430         <autodoc>__init__(DataFormat format=FormatInvalid) -
> CustomDataObject
</autodoc> 
21432           <param name=
"format" type=
"DataFormat" default=
"wxFormatInvalid"/> 
21435       <method name=
"TakeData" type=
"" overloaded=
"no"> 
21436         <autodoc>TakeData(PyObject data)
</autodoc> 
21438           <param name=
"data" type=
"PyObject" default=
""/> 
21441       <method name=
"SetData" type=
"bool" overloaded=
"no"> 
21442         <autodoc>SetData(PyObject data) -
> bool
</autodoc> 
21444           <param name=
"data" type=
"PyObject" default=
""/> 
21447       <method name=
"GetSize" type=
"size_t" overloaded=
"no"> 
21448         <autodoc>GetSize() -
> size_t
</autodoc> 
21450       <method name=
"GetData" type=
"PyObject" overloaded=
"no"> 
21451         <autodoc>GetData() -
> PyObject
</autodoc> 
21454     <class name=
"URLDataObject" oldname=
"wxURLDataObject" module=
"misc"> 
21455       <baseclass name=
"DataObjectComposite"/> 
21456       <constructor name=
"URLDataObject" overloaded=
"no"> 
21457         <autodoc>__init__() -
> URLDataObject
</autodoc> 
21459       <method name=
"GetURL" type=
"String" overloaded=
"no"> 
21460         <autodoc>GetURL() -
> String
</autodoc> 
21462       <method name=
"SetURL" type=
"" overloaded=
"no"> 
21463         <autodoc>SetURL(String url)
</autodoc> 
21465           <param name=
"url" type=
"String" default=
""/> 
21469     <class name=
"MetafileDataObject" oldname=
"wxMetafileDataObject" module=
"misc"> 
21470       <baseclass name=
"DataObjectSimple"/> 
21471       <constructor name=
"MetafileDataObject" overloaded=
"no"> 
21472         <autodoc>__init__() -
> MetafileDataObject
</autodoc> 
21476 #---------------------------------------------------------------------------
 
21478     <method name=
"IsDragResultOk" oldname=
"wxIsDragResultOk" type=
"bool" overloaded=
"no"> 
21479       <autodoc>IsDragResultOk(int res) -
> bool
</autodoc> 
21481         <param name=
"res" type=
"wxDragResult" default=
""/> 
21484     <class name=
"DropSource" oldname=
"wxPyDropSource" module=
"misc"> 
21485       <constructor name=
"wxPyDropSource" overloaded=
"no"> 
21486         <autodoc>__init__(Window win, Icon copy=wxNullIcon, Icon move=wxNullIcon, 
 
21487     Icon none=wxNullIcon) -
> DropSource
</autodoc> 
21489           <param name=
"win" type=
"Window" default=
""/> 
21490           <param name=
"copy" type=
"Icon" default=
"wxNullIcon"/> 
21491           <param name=
"move" type=
"Icon" default=
"wxNullIcon"/> 
21492           <param name=
"none" type=
"Icon" default=
"wxNullIcon"/> 
21495       <destructor name=
"~wxPyDropSource" overloaded=
"no"> 
21496         <autodoc>__del__()
</autodoc> 
21498       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
21499         <autodoc>_setCallbackInfo(PyObject self, PyObject _class, int incref)
</autodoc> 
21501           <param name=
"self" type=
"PyObject" default=
""/> 
21502           <param name=
"_class" type=
"PyObject" default=
""/> 
21503           <param name=
"incref" type=
"int" default=
""/> 
21506       <method name=
"SetData" type=
"" overloaded=
"no"> 
21507         <autodoc>SetData(DataObject data)
</autodoc> 
21509           <param name=
"data" type=
"DataObject" default=
""/> 
21512       <method name=
"GetDataObject" type=
"DataObject" overloaded=
"no"> 
21513         <autodoc>GetDataObject() -
> DataObject
</autodoc> 
21515       <method name=
"SetCursor" type=
"" overloaded=
"no"> 
21516         <autodoc>SetCursor(int res, Cursor cursor)
</autodoc> 
21518           <param name=
"res" type=
"wxDragResult" default=
""/> 
21519           <param name=
"cursor" type=
"Cursor" default=
""/> 
21522       <method name=
"DoDragDrop" type=
"wxDragResult" overloaded=
"no"> 
21523         <autodoc>DoDragDrop(int flags=Drag_CopyOnly) -
> int
</autodoc> 
21525           <param name=
"flags" type=
"int" default=
"wxDrag_CopyOnly"/> 
21528       <method name=
"base_GiveFeedback" type=
"bool" overloaded=
"no"> 
21529         <autodoc>base_GiveFeedback(int effect) -
> bool
</autodoc> 
21531           <param name=
"effect" type=
"wxDragResult" default=
""/> 
21535     <class name=
"DropTarget" oldname=
"wxPyDropTarget" module=
"misc"> 
21536       <constructor name=
"PyDropTarget" overloaded=
"no"> 
21537         <autodoc>PyDropTarget(DataObject dataObject=None) -
> DropTarget
</autodoc> 
21539           <param name=
"dataObject" type=
"DataObject" default=
"NULL"/> 
21542       <destructor name=
"~wxPyDropTarget" overloaded=
"no"> 
21543         <autodoc>__del__()
</autodoc> 
21545       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
21546         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
21548           <param name=
"self" type=
"PyObject" default=
""/> 
21549           <param name=
"_class" type=
"PyObject" default=
""/> 
21552       <method name=
"GetDataObject" type=
"DataObject" overloaded=
"no"> 
21553         <autodoc>GetDataObject() -
> DataObject
</autodoc> 
21555       <method name=
"SetDataObject" type=
"" overloaded=
"no"> 
21556         <autodoc>SetDataObject(DataObject dataObject)
</autodoc> 
21558           <param name=
"dataObject" type=
"DataObject" default=
""/> 
21561       <method name=
"base_OnEnter" type=
"wxDragResult" overloaded=
"no"> 
21562         <autodoc>base_OnEnter(int x, int y, int def) -
> int
</autodoc> 
21564           <param name=
"x" type=
"int" default=
""/> 
21565           <param name=
"y" type=
"int" default=
""/> 
21566           <param name=
"def" type=
"wxDragResult" default=
""/> 
21569       <method name=
"base_OnDragOver" type=
"wxDragResult" overloaded=
"no"> 
21570         <autodoc>base_OnDragOver(int x, int y, int def) -
> int
</autodoc> 
21572           <param name=
"x" type=
"int" default=
""/> 
21573           <param name=
"y" type=
"int" default=
""/> 
21574           <param name=
"def" type=
"wxDragResult" default=
""/> 
21577       <method name=
"base_OnLeave" type=
"" overloaded=
"no"> 
21578         <autodoc>base_OnLeave()
</autodoc> 
21580       <method name=
"base_OnDrop" type=
"bool" overloaded=
"no"> 
21581         <autodoc>base_OnDrop(int x, int y) -
> bool
</autodoc> 
21583           <param name=
"x" type=
"int" default=
""/> 
21584           <param name=
"y" type=
"int" default=
""/> 
21587       <method name=
"GetData" type=
"bool" overloaded=
"no"> 
21588         <autodoc>GetData() -
> bool
</autodoc> 
21591     <pythoncode> PyDropTarget = DropTarget 
</pythoncode> 
21592     <class name=
"TextDropTarget" oldname=
"wxPyTextDropTarget" module=
"misc"> 
21593       <baseclass name=
"DropTarget"/> 
21594       <constructor name=
"wxPyTextDropTarget" overloaded=
"no"> 
21595         <autodoc>__init__() -
> TextDropTarget
</autodoc> 
21597       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
21598         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
21600           <param name=
"self" type=
"PyObject" default=
""/> 
21601           <param name=
"_class" type=
"PyObject" default=
""/> 
21604       <method name=
"base_OnEnter" type=
"wxDragResult" overloaded=
"no"> 
21605         <autodoc>base_OnEnter(int x, int y, int def) -
> int
</autodoc> 
21607           <param name=
"x" type=
"int" default=
""/> 
21608           <param name=
"y" type=
"int" default=
""/> 
21609           <param name=
"def" type=
"wxDragResult" default=
""/> 
21612       <method name=
"base_OnDragOver" type=
"wxDragResult" overloaded=
"no"> 
21613         <autodoc>base_OnDragOver(int x, int y, int def) -
> int
</autodoc> 
21615           <param name=
"x" type=
"int" default=
""/> 
21616           <param name=
"y" type=
"int" default=
""/> 
21617           <param name=
"def" type=
"wxDragResult" default=
""/> 
21620       <method name=
"base_OnLeave" type=
"" overloaded=
"no"> 
21621         <autodoc>base_OnLeave()
</autodoc> 
21623       <method name=
"base_OnDrop" type=
"bool" overloaded=
"no"> 
21624         <autodoc>base_OnDrop(int x, int y) -
> bool
</autodoc> 
21626           <param name=
"x" type=
"int" default=
""/> 
21627           <param name=
"y" type=
"int" default=
""/> 
21630       <method name=
"base_OnData" type=
"wxDragResult" overloaded=
"no"> 
21631         <autodoc>base_OnData(int x, int y, int def) -
> int
</autodoc> 
21633           <param name=
"x" type=
"int" default=
""/> 
21634           <param name=
"y" type=
"int" default=
""/> 
21635           <param name=
"def" type=
"wxDragResult" default=
""/> 
21639     <class name=
"FileDropTarget" oldname=
"wxPyFileDropTarget" module=
"misc"> 
21640       <baseclass name=
"DropTarget"/> 
21641       <constructor name=
"wxPyFileDropTarget" overloaded=
"no"> 
21642         <autodoc>__init__() -
> FileDropTarget
</autodoc> 
21644       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
21645         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
21647           <param name=
"self" type=
"PyObject" default=
""/> 
21648           <param name=
"_class" type=
"PyObject" default=
""/> 
21651       <method name=
"base_OnEnter" type=
"wxDragResult" overloaded=
"no"> 
21652         <autodoc>base_OnEnter(int x, int y, int def) -
> int
</autodoc> 
21654           <param name=
"x" type=
"int" default=
""/> 
21655           <param name=
"y" type=
"int" default=
""/> 
21656           <param name=
"def" type=
"wxDragResult" default=
""/> 
21659       <method name=
"base_OnDragOver" type=
"wxDragResult" overloaded=
"no"> 
21660         <autodoc>base_OnDragOver(int x, int y, int def) -
> int
</autodoc> 
21662           <param name=
"x" type=
"int" default=
""/> 
21663           <param name=
"y" type=
"int" default=
""/> 
21664           <param name=
"def" type=
"wxDragResult" default=
""/> 
21667       <method name=
"base_OnLeave" type=
"" overloaded=
"no"> 
21668         <autodoc>base_OnLeave()
</autodoc> 
21670       <method name=
"base_OnDrop" type=
"bool" overloaded=
"no"> 
21671         <autodoc>base_OnDrop(int x, int y) -
> bool
</autodoc> 
21673           <param name=
"x" type=
"int" default=
""/> 
21674           <param name=
"y" type=
"int" default=
""/> 
21677       <method name=
"base_OnData" type=
"wxDragResult" overloaded=
"no"> 
21678         <autodoc>base_OnData(int x, int y, int def) -
> int
</autodoc> 
21680           <param name=
"x" type=
"int" default=
""/> 
21681           <param name=
"y" type=
"int" default=
""/> 
21682           <param name=
"def" type=
"wxDragResult" default=
""/> 
21687 #---------------------------------------------------------------------------
 
21689     <class name=
"Clipboard" oldname=
"wxClipboard" module=
"misc"> 
21690       <baseclass name=
"Object"/> 
21691       <constructor name=
"Clipboard" overloaded=
"no"> 
21692         <autodoc>__init__() -
> Clipboard
</autodoc> 
21694       <destructor name=
"~wxClipboard" overloaded=
"no"> 
21695         <autodoc>__del__()
</autodoc> 
21697       <method name=
"Open" type=
"bool" overloaded=
"no"> 
21698         <autodoc>Open() -
> bool
</autodoc> 
21700       <method name=
"Close" type=
"" overloaded=
"no"> 
21701         <autodoc>Close()
</autodoc> 
21703       <method name=
"IsOpened" type=
"bool" overloaded=
"no"> 
21704         <autodoc>IsOpened() -
> bool
</autodoc> 
21706       <method name=
"AddData" type=
"bool" overloaded=
"no"> 
21707         <autodoc>AddData(DataObject data) -
> bool
</autodoc> 
21709           <param name=
"data" type=
"DataObject" default=
""/> 
21712       <method name=
"SetData" type=
"bool" overloaded=
"no"> 
21713         <autodoc>SetData(DataObject data) -
> bool
</autodoc> 
21715           <param name=
"data" type=
"DataObject" default=
""/> 
21718       <method name=
"IsSupported" type=
"bool" overloaded=
"no"> 
21719         <autodoc>IsSupported(DataFormat format) -
> bool
</autodoc> 
21721           <param name=
"format" type=
"DataFormat" default=
""/> 
21724       <method name=
"GetData" type=
"bool" overloaded=
"no"> 
21725         <autodoc>GetData(DataObject data) -
> bool
</autodoc> 
21727           <param name=
"data" type=
"DataObject" default=
""/> 
21730       <method name=
"Clear" type=
"" overloaded=
"no"> 
21731         <autodoc>Clear()
</autodoc> 
21733       <method name=
"Flush" type=
"bool" overloaded=
"no"> 
21734         <autodoc>Flush() -
> bool
</autodoc> 
21736       <method name=
"UsePrimarySelection" type=
"" overloaded=
"no"> 
21737         <autodoc>UsePrimarySelection(bool primary=False)
</autodoc> 
21739           <param name=
"primary" type=
"bool" default=
"False"/> 
21743     <class name=
"ClipboardLocker" oldname=
"wxClipboardLocker" module=
"misc"> 
21744       <constructor name=
"ClipboardLocker" overloaded=
"no"> 
21745         <autodoc>__init__(Clipboard clipboard=None) -
> ClipboardLocker
</autodoc> 
21747           <param name=
"clipboard" type=
"Clipboard" default=
"NULL"/> 
21750       <destructor name=
"~wxClipboardLocker" overloaded=
"no"> 
21751         <autodoc>__del__()
</autodoc> 
21753       <method name=
"__nonzero__" type=
"bool" overloaded=
"no"> 
21754         <autodoc>__nonzero__() -
> bool
</autodoc> 
21758   <module name=
"calendar"> 
21759     <import name=
"misc"/> 
21760     <pythoncode> wx = core 
</pythoncode> 
21761     <class name=
"CalendarDateAttr" oldname=
"wxCalendarDateAttr" module=
"calendar"> 
21762       <constructor name=
"CalendarDateAttr" overloaded=
"no"> 
21763         <autodoc>__init__(Colour colText, Colour colBack=wxNullColour, Colour colBorder=wxNullColour, 
 
21764     Font font=wxNullFont, 
 
21765     int border=CAL_BORDER_NONE) -
> CalendarDateAttr
</autodoc> 
21767           <param name=
"colText" type=
"Colour" default=
""/> 
21768           <param name=
"colBack" type=
"Colour" default=
"wxNullColour"/> 
21769           <param name=
"colBorder" type=
"Colour" default=
"wxNullColour"/> 
21770           <param name=
"font" type=
"Font" default=
"wxNullFont"/> 
21771           <param name=
"border" type=
"wxCalendarDateBorder" default=
"wxCAL_BORDER_NONE"/> 
21774       <constructor name=
"CalendarDateAttrBorder" overloaded=
"no"> 
21775         <autodoc>CalendarDateAttrBorder(int border, Colour colBorder=wxNullColour) -
> CalendarDateAttr
</autodoc> 
21777           <param name=
"border" type=
"wxCalendarDateBorder" default=
""/> 
21778           <param name=
"colBorder" type=
"Colour" default=
"wxNullColour"/> 
21781       <method name=
"SetTextColour" type=
"" overloaded=
"no"> 
21782         <autodoc>SetTextColour(Colour colText)
</autodoc> 
21784           <param name=
"colText" type=
"Colour" default=
""/> 
21787       <method name=
"SetBackgroundColour" type=
"" overloaded=
"no"> 
21788         <autodoc>SetBackgroundColour(Colour colBack)
</autodoc> 
21790           <param name=
"colBack" type=
"Colour" default=
""/> 
21793       <method name=
"SetBorderColour" type=
"" overloaded=
"no"> 
21794         <autodoc>SetBorderColour(Colour col)
</autodoc> 
21796           <param name=
"col" type=
"Colour" default=
""/> 
21799       <method name=
"SetFont" type=
"" overloaded=
"no"> 
21800         <autodoc>SetFont(Font font)
</autodoc> 
21802           <param name=
"font" type=
"Font" default=
""/> 
21805       <method name=
"SetBorder" type=
"" overloaded=
"no"> 
21806         <autodoc>SetBorder(int border)
</autodoc> 
21808           <param name=
"border" type=
"wxCalendarDateBorder" default=
""/> 
21811       <method name=
"SetHoliday" type=
"" overloaded=
"no"> 
21812         <autodoc>SetHoliday(bool holiday)
</autodoc> 
21814           <param name=
"holiday" type=
"bool" default=
""/> 
21817       <method name=
"HasTextColour" type=
"bool" overloaded=
"no"> 
21818         <autodoc>HasTextColour() -
> bool
</autodoc> 
21820       <method name=
"HasBackgroundColour" type=
"bool" overloaded=
"no"> 
21821         <autodoc>HasBackgroundColour() -
> bool
</autodoc> 
21823       <method name=
"HasBorderColour" type=
"bool" overloaded=
"no"> 
21824         <autodoc>HasBorderColour() -
> bool
</autodoc> 
21826       <method name=
"HasFont" type=
"bool" overloaded=
"no"> 
21827         <autodoc>HasFont() -
> bool
</autodoc> 
21829       <method name=
"HasBorder" type=
"bool" overloaded=
"no"> 
21830         <autodoc>HasBorder() -
> bool
</autodoc> 
21832       <method name=
"IsHoliday" type=
"bool" overloaded=
"no"> 
21833         <autodoc>IsHoliday() -
> bool
</autodoc> 
21835       <method name=
"GetTextColour" type=
"Colour" overloaded=
"no"> 
21836         <autodoc>GetTextColour() -
> Colour
</autodoc> 
21838       <method name=
"GetBackgroundColour" type=
"Colour" overloaded=
"no"> 
21839         <autodoc>GetBackgroundColour() -
> Colour
</autodoc> 
21841       <method name=
"GetBorderColour" type=
"Colour" overloaded=
"no"> 
21842         <autodoc>GetBorderColour() -
> Colour
</autodoc> 
21844       <method name=
"GetFont" type=
"Font" overloaded=
"no"> 
21845         <autodoc>GetFont() -
> Font
</autodoc> 
21847       <method name=
"GetBorder" type=
"wxCalendarDateBorder" overloaded=
"no"> 
21848         <autodoc>GetBorder() -
> int
</autodoc> 
21851     <class name=
"CalendarEvent" oldname=
"wxCalendarEvent" module=
"calendar"> 
21852       <baseclass name=
"CommandEvent"/> 
21853       <constructor name=
"CalendarEvent" overloaded=
"no"> 
21854         <autodoc>__init__(CalendarCtrl cal, wxEventType type) -
> CalendarEvent
</autodoc> 
21856           <param name=
"cal" type=
"wxCalendarCtrl" default=
""/> 
21857           <param name=
"type" type=
"wxEventType" default=
""/> 
21860       <method name=
"GetDate" type=
"DateTime" overloaded=
"no"> 
21861         <autodoc>GetDate() -
> DateTime
</autodoc> 
21863       <method name=
"SetDate" type=
"" overloaded=
"no"> 
21864         <autodoc>SetDate(DateTime date)
</autodoc> 
21866           <param name=
"date" type=
"DateTime" default=
""/> 
21869       <method name=
"SetWeekDay" type=
"" overloaded=
"no"> 
21870         <autodoc>SetWeekDay(int wd)
</autodoc> 
21872           <param name=
"wd" type=
"wxDateTime::WeekDay" default=
""/> 
21875       <method name=
"GetWeekDay" type=
"wxDateTime::WeekDay" overloaded=
"no"> 
21876         <autodoc>GetWeekDay() -
> int
</autodoc> 
21880 EVT_CALENDAR =                 wx.PyEventBinder( wxEVT_CALENDAR_DOUBLECLICKED, 
1)
 
21881 EVT_CALENDAR_SEL_CHANGED =     wx.PyEventBinder( wxEVT_CALENDAR_SEL_CHANGED, 
1)
 
21882 EVT_CALENDAR_DAY =             wx.PyEventBinder( wxEVT_CALENDAR_DAY_CHANGED, 
1)
 
21883 EVT_CALENDAR_MONTH =           wx.PyEventBinder( wxEVT_CALENDAR_MONTH_CHANGED, 
1)
 
21884 EVT_CALENDAR_YEAR =            wx.PyEventBinder( wxEVT_CALENDAR_YEAR_CHANGED, 
1)
 
21885 EVT_CALENDAR_WEEKDAY_CLICKED = wx.PyEventBinder( wxEVT_CALENDAR_WEEKDAY_CLICKED, 
1)
 
21887     <class name=
"CalendarCtrl" oldname=
"wxCalendarCtrl" module=
"calendar"> 
21888       <baseclass name=
"Control"/> 
21889       <constructor name=
"CalendarCtrl" overloaded=
"no"> 
21890         <autodoc>__init__(Window parent, int id, DateTime date=wxDefaultDateTime, 
 
21891     Point pos=DefaultPosition, Size size=DefaultSize, 
 
21892     long style=wxCAL_SHOW_HOLIDAYS|wxWANTS_CHARS, 
 
21893     String name=CalendarNameStr) -
> CalendarCtrl
</autodoc> 
21895           <param name=
"parent" type=
"Window" default=
""/> 
21896           <param name=
"id" type=
"int" default=
""/> 
21897           <param name=
"date" type=
"DateTime" default=
"wxDefaultDateTime"/> 
21898           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
21899           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
21900           <param name=
"style" type=
"long" default=
"wxCAL_SHOW_HOLIDAYS|wxWANTS_CHARS"/> 
21901           <param name=
"name" type=
"String" default=
"wxPyCalendarNameStr"/> 
21904       <constructor name=
"PreCalendarCtrl" overloaded=
"no"> 
21905         <autodoc>PreCalendarCtrl() -
> CalendarCtrl
</autodoc> 
21907       <method name=
"Create" type=
"bool" overloaded=
"no"> 
21908         <autodoc>Create(Window parent, int id, DateTime date=wxDefaultDateTime, 
 
21909     Point pos=DefaultPosition, Size size=DefaultSize, 
 
21910     long style=wxCAL_SHOW_HOLIDAYS|wxWANTS_CHARS, 
 
21911     String name=CalendarNameStr) -
> bool
</autodoc> 
21913           <param name=
"parent" type=
"Window" default=
""/> 
21914           <param name=
"id" type=
"int" default=
""/> 
21915           <param name=
"date" type=
"DateTime" default=
"wxDefaultDateTime"/> 
21916           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
21917           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
21918           <param name=
"style" type=
"long" default=
"wxCAL_SHOW_HOLIDAYS|wxWANTS_CHARS"/> 
21919           <param name=
"name" type=
"String" default=
"wxPyCalendarNameStr"/> 
21922       <method name=
"SetDate" type=
"" overloaded=
"no"> 
21923         <autodoc>SetDate(DateTime date)
</autodoc> 
21925           <param name=
"date" type=
"DateTime" default=
""/> 
21928       <method name=
"GetDate" type=
"DateTime" overloaded=
"no"> 
21929         <autodoc>GetDate() -
> DateTime
</autodoc> 
21931       <method name=
"SetLowerDateLimit" type=
"bool" overloaded=
"no"> 
21932         <autodoc>SetLowerDateLimit(DateTime date=wxDefaultDateTime) -
> bool
</autodoc> 
21934           <param name=
"date" type=
"DateTime" default=
"wxDefaultDateTime"/> 
21937       <method name=
"GetLowerDateLimit" type=
"DateTime" overloaded=
"no"> 
21938         <autodoc>GetLowerDateLimit() -
> DateTime
</autodoc> 
21940       <method name=
"SetUpperDateLimit" type=
"bool" overloaded=
"no"> 
21941         <autodoc>SetUpperDateLimit(DateTime date=wxDefaultDateTime) -
> bool
</autodoc> 
21943           <param name=
"date" type=
"DateTime" default=
"wxDefaultDateTime"/> 
21946       <method name=
"GetUpperDateLimit" type=
"DateTime" overloaded=
"no"> 
21947         <autodoc>GetUpperDateLimit() -
> DateTime
</autodoc> 
21949       <method name=
"SetDateRange" type=
"bool" overloaded=
"no"> 
21950         <autodoc>SetDateRange(DateTime lowerdate=wxDefaultDateTime, DateTime upperdate=wxDefaultDateTime) -
> bool
</autodoc> 
21952           <param name=
"lowerdate" type=
"DateTime" default=
"wxDefaultDateTime"/> 
21953           <param name=
"upperdate" type=
"DateTime" default=
"wxDefaultDateTime"/> 
21956       <method name=
"EnableYearChange" type=
"" overloaded=
"no"> 
21957         <autodoc>EnableYearChange(bool enable=True)
</autodoc> 
21959           <param name=
"enable" type=
"bool" default=
"True"/> 
21962       <method name=
"EnableMonthChange" type=
"" overloaded=
"no"> 
21963         <autodoc>EnableMonthChange(bool enable=True)
</autodoc> 
21965           <param name=
"enable" type=
"bool" default=
"True"/> 
21968       <method name=
"EnableHolidayDisplay" type=
"" overloaded=
"no"> 
21969         <autodoc>EnableHolidayDisplay(bool display=True)
</autodoc> 
21971           <param name=
"display" type=
"bool" default=
"True"/> 
21974       <method name=
"SetHeaderColours" type=
"" overloaded=
"no"> 
21975         <autodoc>SetHeaderColours(Colour colFg, Colour colBg)
</autodoc> 
21977           <param name=
"colFg" type=
"Colour" default=
""/> 
21978           <param name=
"colBg" type=
"Colour" default=
""/> 
21981       <method name=
"GetHeaderColourFg" type=
"Colour" overloaded=
"no"> 
21982         <autodoc>GetHeaderColourFg() -
> Colour
</autodoc> 
21984       <method name=
"GetHeaderColourBg" type=
"Colour" overloaded=
"no"> 
21985         <autodoc>GetHeaderColourBg() -
> Colour
</autodoc> 
21987       <method name=
"SetHighlightColours" type=
"" overloaded=
"no"> 
21988         <autodoc>SetHighlightColours(Colour colFg, Colour colBg)
</autodoc> 
21990           <param name=
"colFg" type=
"Colour" default=
""/> 
21991           <param name=
"colBg" type=
"Colour" default=
""/> 
21994       <method name=
"GetHighlightColourFg" type=
"Colour" overloaded=
"no"> 
21995         <autodoc>GetHighlightColourFg() -
> Colour
</autodoc> 
21997       <method name=
"GetHighlightColourBg" type=
"Colour" overloaded=
"no"> 
21998         <autodoc>GetHighlightColourBg() -
> Colour
</autodoc> 
22000       <method name=
"SetHolidayColours" type=
"" overloaded=
"no"> 
22001         <autodoc>SetHolidayColours(Colour colFg, Colour colBg)
</autodoc> 
22003           <param name=
"colFg" type=
"Colour" default=
""/> 
22004           <param name=
"colBg" type=
"Colour" default=
""/> 
22007       <method name=
"GetHolidayColourFg" type=
"Colour" overloaded=
"no"> 
22008         <autodoc>GetHolidayColourFg() -
> Colour
</autodoc> 
22010       <method name=
"GetHolidayColourBg" type=
"Colour" overloaded=
"no"> 
22011         <autodoc>GetHolidayColourBg() -
> Colour
</autodoc> 
22013       <method name=
"GetAttr" type=
"CalendarDateAttr" overloaded=
"no"> 
22014         <autodoc>GetAttr(size_t day) -
> CalendarDateAttr
</autodoc> 
22016           <param name=
"day" type=
"size_t" default=
""/> 
22019       <method name=
"SetAttr" type=
"" overloaded=
"no"> 
22020         <autodoc>SetAttr(size_t day, CalendarDateAttr attr)
</autodoc> 
22022           <param name=
"day" type=
"size_t" default=
""/> 
22023           <param name=
"attr" type=
"CalendarDateAttr" default=
""/> 
22026       <method name=
"SetHoliday" type=
"" overloaded=
"no"> 
22027         <autodoc>SetHoliday(size_t day)
</autodoc> 
22029           <param name=
"day" type=
"size_t" default=
""/> 
22032       <method name=
"ResetAttr" type=
"" overloaded=
"no"> 
22033         <autodoc>ResetAttr(size_t day)
</autodoc> 
22035           <param name=
"day" type=
"size_t" default=
""/> 
22038       <method name=
"HitTest" type=
"wxCalendarHitTestResult" overloaded=
"no"> 
22039         <autodoc>HitTest(Point pos, DateTime date=None, int wd=None) -
> int
</autodoc> 
22041           <param name=
"pos" type=
"Point" default=
""/> 
22042           <param name=
"date" type=
"DateTime" default=
"NULL"/> 
22043           <param name=
"wd" type=
"wxDateTime::WeekDay" default=
"NULL"/> 
22046       <method name=
"Enable" type=
"bool" overloaded=
"no"> 
22047         <autodoc>Enable(bool enable=True) -
> bool
</autodoc> 
22049           <param name=
"enable" type=
"bool" default=
"True"/> 
22052       <method name=
"Show" type=
"bool" overloaded=
"no"> 
22053         <autodoc>Show(bool show=True) -
> bool
</autodoc> 
22055           <param name=
"show" type=
"bool" default=
"True"/> 
22058       <method name=
"GetMonthControl" type=
"Control" overloaded=
"no"> 
22059         <autodoc>GetMonthControl() -
> Control
</autodoc> 
22061       <method name=
"GetYearControl" type=
"Control" overloaded=
"no"> 
22062         <autodoc>GetYearControl() -
> Control
</autodoc> 
22066   <module name=
"grid"> 
22067     <import name=
"windows"/> 
22068     <pythoncode> wx = core 
</pythoncode> 
22069     <class name=
"GridCellRenderer" oldname=
"wxGridCellRenderer" module=
"grid"> 
22070       <method name=
"_setOORInfo" type=
"" overloaded=
"no"> 
22071         <autodoc>_setOORInfo(PyObject _self)
</autodoc> 
22073           <param name=
"_self" type=
"PyObject" default=
""/> 
22076       <method name=
"SetParameters" type=
"" overloaded=
"no"> 
22077         <autodoc>SetParameters(String params)
</autodoc> 
22079           <param name=
"params" type=
"String" default=
""/> 
22082       <method name=
"IncRef" type=
"" overloaded=
"no"> 
22083         <autodoc>IncRef()
</autodoc> 
22085       <method name=
"DecRef" type=
"" overloaded=
"no"> 
22086         <autodoc>DecRef()
</autodoc> 
22088       <method name=
"Draw" type=
"" overloaded=
"no"> 
22089         <autodoc>Draw(Grid grid, GridCellAttr attr, DC dc, Rect rect, int row, 
 
22090     int col, bool isSelected)
</autodoc> 
22092           <param name=
"grid" type=
"wxGrid" default=
""/> 
22093           <param name=
"attr" type=
"wxGridCellAttr" default=
""/> 
22094           <param name=
"dc" type=
"DC" default=
""/> 
22095           <param name=
"rect" type=
"Rect" default=
""/> 
22096           <param name=
"row" type=
"int" default=
""/> 
22097           <param name=
"col" type=
"int" default=
""/> 
22098           <param name=
"isSelected" type=
"bool" default=
""/> 
22101       <method name=
"GetBestSize" type=
"Size" overloaded=
"no"> 
22102         <autodoc>GetBestSize(Grid grid, GridCellAttr attr, DC dc, int row, int col) -
> Size
</autodoc> 
22104           <param name=
"grid" type=
"wxGrid" default=
""/> 
22105           <param name=
"attr" type=
"wxGridCellAttr" default=
""/> 
22106           <param name=
"dc" type=
"DC" default=
""/> 
22107           <param name=
"row" type=
"int" default=
""/> 
22108           <param name=
"col" type=
"int" default=
""/> 
22111       <method name=
"Clone" type=
"GridCellRenderer" overloaded=
"no"> 
22112         <autodoc>Clone() -
> GridCellRenderer
</autodoc> 
22115     <class name=
"PyGridCellRenderer" oldname=
"wxPyGridCellRenderer" module=
"grid"> 
22116       <baseclass name=
"GridCellRenderer"/> 
22117       <constructor name=
"PyGridCellRenderer" overloaded=
"no"> 
22118         <autodoc>__init__() -
> PyGridCellRenderer
</autodoc> 
22120       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
22121         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
22123           <param name=
"self" type=
"PyObject" default=
""/> 
22124           <param name=
"_class" type=
"PyObject" default=
""/> 
22127       <method name=
"base_SetParameters" type=
"" overloaded=
"no"> 
22128         <autodoc>base_SetParameters(String params)
</autodoc> 
22130           <param name=
"params" type=
"String" default=
""/> 
22134     <class name=
"GridCellStringRenderer" oldname=
"wxGridCellStringRenderer" module=
"grid"> 
22135       <baseclass name=
"GridCellRenderer"/> 
22136       <constructor name=
"GridCellStringRenderer" overloaded=
"no"> 
22137         <autodoc>__init__() -
> GridCellStringRenderer
</autodoc> 
22140     <class name=
"GridCellNumberRenderer" oldname=
"wxGridCellNumberRenderer" module=
"grid"> 
22141       <baseclass name=
"GridCellStringRenderer"/> 
22142       <constructor name=
"GridCellNumberRenderer" overloaded=
"no"> 
22143         <autodoc>__init__() -
> GridCellNumberRenderer
</autodoc> 
22146     <class name=
"GridCellFloatRenderer" oldname=
"wxGridCellFloatRenderer" module=
"grid"> 
22147       <baseclass name=
"GridCellStringRenderer"/> 
22148       <constructor name=
"GridCellFloatRenderer" overloaded=
"no"> 
22149         <autodoc>__init__(int width=-
1, int precision=-
1) -
> GridCellFloatRenderer
</autodoc> 
22151           <param name=
"width" type=
"int" default=
"-1"/> 
22152           <param name=
"precision" type=
"int" default=
"-1"/> 
22155       <method name=
"GetWidth" type=
"int" overloaded=
"no"> 
22156         <autodoc>GetWidth() -
> int
</autodoc> 
22158       <method name=
"SetWidth" type=
"" overloaded=
"no"> 
22159         <autodoc>SetWidth(int width)
</autodoc> 
22161           <param name=
"width" type=
"int" default=
""/> 
22164       <method name=
"GetPrecision" type=
"int" overloaded=
"no"> 
22165         <autodoc>GetPrecision() -
> int
</autodoc> 
22167       <method name=
"SetPrecision" type=
"" overloaded=
"no"> 
22168         <autodoc>SetPrecision(int precision)
</autodoc> 
22170           <param name=
"precision" type=
"int" default=
""/> 
22174     <class name=
"GridCellBoolRenderer" oldname=
"wxGridCellBoolRenderer" module=
"grid"> 
22175       <baseclass name=
"GridCellRenderer"/> 
22176       <constructor name=
"GridCellBoolRenderer" overloaded=
"no"> 
22177         <autodoc>__init__() -
> GridCellBoolRenderer
</autodoc> 
22180     <class name=
"GridCellDateTimeRenderer" oldname=
"wxGridCellDateTimeRenderer" module=
"grid"> 
22181       <baseclass name=
"GridCellStringRenderer"/> 
22182       <constructor name=
"GridCellDateTimeRenderer" overloaded=
"no"> 
22183         <autodoc>__init__(String outformat=DateTimeFormatStr, String informat=DateTimeFormatStr) -
> GridCellDateTimeRenderer
</autodoc> 
22185           <param name=
"outformat" type=
"String" default=
"wxPyDateTimeFormatStr"/> 
22186           <param name=
"informat" type=
"String" default=
"wxPyDateTimeFormatStr"/> 
22190     <class name=
"GridCellEnumRenderer" oldname=
"wxGridCellEnumRenderer" module=
"grid"> 
22191       <baseclass name=
"GridCellStringRenderer"/> 
22192       <constructor name=
"GridCellEnumRenderer" overloaded=
"no"> 
22193         <autodoc>__init__(String choices=EmptyString) -
> GridCellEnumRenderer
</autodoc> 
22195           <param name=
"choices" type=
"String" default=
"wxPyEmptyString"/> 
22199     <class name=
"GridCellAutoWrapStringRenderer" oldname=
"wxGridCellAutoWrapStringRenderer" module=
"grid"> 
22200       <baseclass name=
"GridCellStringRenderer"/> 
22201       <constructor name=
"GridCellAutoWrapStringRenderer" overloaded=
"no"> 
22202         <autodoc>__init__() -
> GridCellAutoWrapStringRenderer
</autodoc> 
22205     <class name=
"GridCellEditor" oldname=
"wxGridCellEditor" module=
"grid"> 
22206       <method name=
"_setOORInfo" type=
"" overloaded=
"no"> 
22207         <autodoc>_setOORInfo(PyObject _self)
</autodoc> 
22209           <param name=
"_self" type=
"PyObject" default=
""/> 
22212       <method name=
"IsCreated" type=
"bool" overloaded=
"no"> 
22213         <autodoc>IsCreated() -
> bool
</autodoc> 
22215       <method name=
"GetControl" type=
"Control" overloaded=
"no"> 
22216         <autodoc>GetControl() -
> Control
</autodoc> 
22218       <method name=
"SetControl" type=
"" overloaded=
"no"> 
22219         <autodoc>SetControl(Control control)
</autodoc> 
22221           <param name=
"control" type=
"Control" default=
""/> 
22224       <method name=
"GetCellAttr" type=
"wxGridCellAttr" overloaded=
"no"> 
22225         <autodoc>GetCellAttr() -
> GridCellAttr
</autodoc> 
22227       <method name=
"SetCellAttr" type=
"" overloaded=
"no"> 
22228         <autodoc>SetCellAttr(GridCellAttr attr)
</autodoc> 
22230           <param name=
"attr" type=
"wxGridCellAttr" default=
""/> 
22233       <method name=
"SetParameters" type=
"" overloaded=
"no"> 
22234         <autodoc>SetParameters(String params)
</autodoc> 
22236           <param name=
"params" type=
"String" default=
""/> 
22239       <method name=
"IncRef" type=
"" overloaded=
"no"> 
22240         <autodoc>IncRef()
</autodoc> 
22242       <method name=
"DecRef" type=
"" overloaded=
"no"> 
22243         <autodoc>DecRef()
</autodoc> 
22245       <method name=
"Create" type=
"" overloaded=
"no"> 
22246         <autodoc>Create(Window parent, int id, EvtHandler evtHandler)
</autodoc> 
22248           <param name=
"parent" type=
"Window" default=
""/> 
22249           <param name=
"id" type=
"int" default=
""/> 
22250           <param name=
"evtHandler" type=
"EvtHandler" default=
""/> 
22253       <method name=
"BeginEdit" type=
"" overloaded=
"no"> 
22254         <autodoc>BeginEdit(int row, int col, Grid grid)
</autodoc> 
22256           <param name=
"row" type=
"int" default=
""/> 
22257           <param name=
"col" type=
"int" default=
""/> 
22258           <param name=
"grid" type=
"wxGrid" default=
""/> 
22261       <method name=
"EndEdit" type=
"bool" overloaded=
"no"> 
22262         <autodoc>EndEdit(int row, int col, Grid grid) -
> bool
</autodoc> 
22264           <param name=
"row" type=
"int" default=
""/> 
22265           <param name=
"col" type=
"int" default=
""/> 
22266           <param name=
"grid" type=
"wxGrid" default=
""/> 
22269       <method name=
"Reset" type=
"" overloaded=
"no"> 
22270         <autodoc>Reset()
</autodoc> 
22272       <method name=
"Clone" type=
"GridCellEditor" overloaded=
"no"> 
22273         <autodoc>Clone() -
> GridCellEditor
</autodoc> 
22275       <method name=
"SetSize" type=
"" overloaded=
"no"> 
22276         <autodoc>SetSize(Rect rect)
</autodoc> 
22278           <param name=
"rect" type=
"Rect" default=
""/> 
22281       <method name=
"Show" type=
"" overloaded=
"no"> 
22282         <autodoc>Show(bool show, GridCellAttr attr=None)
</autodoc> 
22284           <param name=
"show" type=
"bool" default=
""/> 
22285           <param name=
"attr" type=
"wxGridCellAttr" default=
"NULL"/> 
22288       <method name=
"PaintBackground" type=
"" overloaded=
"no"> 
22289         <autodoc>PaintBackground(Rect rectCell, GridCellAttr attr)
</autodoc> 
22291           <param name=
"rectCell" type=
"Rect" default=
""/> 
22292           <param name=
"attr" type=
"wxGridCellAttr" default=
""/> 
22295       <method name=
"IsAcceptedKey" type=
"bool" overloaded=
"no"> 
22296         <autodoc>IsAcceptedKey(KeyEvent event) -
> bool
</autodoc> 
22298           <param name=
"event" type=
"KeyEvent" default=
""/> 
22301       <method name=
"StartingKey" type=
"" overloaded=
"no"> 
22302         <autodoc>StartingKey(KeyEvent event)
</autodoc> 
22304           <param name=
"event" type=
"KeyEvent" default=
""/> 
22307       <method name=
"StartingClick" type=
"" overloaded=
"no"> 
22308         <autodoc>StartingClick()
</autodoc> 
22310       <method name=
"HandleReturn" type=
"" overloaded=
"no"> 
22311         <autodoc>HandleReturn(KeyEvent event)
</autodoc> 
22313           <param name=
"event" type=
"KeyEvent" default=
""/> 
22316       <method name=
"Destroy" type=
"" overloaded=
"no"> 
22317         <autodoc>Destroy()
</autodoc> 
22320     <class name=
"PyGridCellEditor" oldname=
"wxPyGridCellEditor" module=
"grid"> 
22321       <baseclass name=
"GridCellEditor"/> 
22322       <constructor name=
"PyGridCellEditor" overloaded=
"no"> 
22323         <autodoc>__init__() -
> PyGridCellEditor
</autodoc> 
22325       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
22326         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
22328           <param name=
"self" type=
"PyObject" default=
""/> 
22329           <param name=
"_class" type=
"PyObject" default=
""/> 
22332       <method name=
"base_SetSize" type=
"" overloaded=
"no"> 
22333         <autodoc>base_SetSize(Rect rect)
</autodoc> 
22335           <param name=
"rect" type=
"Rect" default=
""/> 
22338       <method name=
"base_Show" type=
"" overloaded=
"no"> 
22339         <autodoc>base_Show(bool show, GridCellAttr attr=None)
</autodoc> 
22341           <param name=
"show" type=
"bool" default=
""/> 
22342           <param name=
"attr" type=
"wxGridCellAttr" default=
"NULL"/> 
22345       <method name=
"base_PaintBackground" type=
"" overloaded=
"no"> 
22346         <autodoc>base_PaintBackground(Rect rectCell, GridCellAttr attr)
</autodoc> 
22348           <param name=
"rectCell" type=
"Rect" default=
""/> 
22349           <param name=
"attr" type=
"wxGridCellAttr" default=
""/> 
22352       <method name=
"base_IsAcceptedKey" type=
"bool" overloaded=
"no"> 
22353         <autodoc>base_IsAcceptedKey(KeyEvent event) -
> bool
</autodoc> 
22355           <param name=
"event" type=
"KeyEvent" default=
""/> 
22358       <method name=
"base_StartingKey" type=
"" overloaded=
"no"> 
22359         <autodoc>base_StartingKey(KeyEvent event)
</autodoc> 
22361           <param name=
"event" type=
"KeyEvent" default=
""/> 
22364       <method name=
"base_StartingClick" type=
"" overloaded=
"no"> 
22365         <autodoc>base_StartingClick()
</autodoc> 
22367       <method name=
"base_HandleReturn" type=
"" overloaded=
"no"> 
22368         <autodoc>base_HandleReturn(KeyEvent event)
</autodoc> 
22370           <param name=
"event" type=
"KeyEvent" default=
""/> 
22373       <method name=
"base_Destroy" type=
"" overloaded=
"no"> 
22374         <autodoc>base_Destroy()
</autodoc> 
22376       <method name=
"base_SetParameters" type=
"" overloaded=
"no"> 
22377         <autodoc>base_SetParameters(String params)
</autodoc> 
22379           <param name=
"params" type=
"String" default=
""/> 
22383     <class name=
"GridCellTextEditor" oldname=
"wxGridCellTextEditor" module=
"grid"> 
22384       <baseclass name=
"GridCellEditor"/> 
22385       <constructor name=
"GridCellTextEditor" overloaded=
"no"> 
22386         <autodoc>__init__() -
> GridCellTextEditor
</autodoc> 
22388       <method name=
"GetValue" type=
"String" overloaded=
"no"> 
22389         <autodoc>GetValue() -
> String
</autodoc> 
22392     <class name=
"GridCellNumberEditor" oldname=
"wxGridCellNumberEditor" module=
"grid"> 
22393       <baseclass name=
"GridCellTextEditor"/> 
22394       <constructor name=
"GridCellNumberEditor" overloaded=
"no"> 
22395         <autodoc>__init__(int min=-
1, int max=-
1) -
> GridCellNumberEditor
</autodoc> 
22397           <param name=
"min" type=
"int" default=
"-1"/> 
22398           <param name=
"max" type=
"int" default=
"-1"/> 
22401       <method name=
"GetValue" type=
"String" overloaded=
"no"> 
22402         <autodoc>GetValue() -
> String
</autodoc> 
22405     <class name=
"GridCellFloatEditor" oldname=
"wxGridCellFloatEditor" module=
"grid"> 
22406       <baseclass name=
"GridCellTextEditor"/> 
22407       <constructor name=
"GridCellFloatEditor" overloaded=
"no"> 
22408         <autodoc>__init__() -
> GridCellFloatEditor
</autodoc> 
22410       <method name=
"GetValue" type=
"String" overloaded=
"no"> 
22411         <autodoc>GetValue() -
> String
</autodoc> 
22414     <class name=
"GridCellBoolEditor" oldname=
"wxGridCellBoolEditor" module=
"grid"> 
22415       <baseclass name=
"GridCellEditor"/> 
22416       <constructor name=
"GridCellBoolEditor" overloaded=
"no"> 
22417         <autodoc>__init__() -
> GridCellBoolEditor
</autodoc> 
22419       <method name=
"GetValue" type=
"String" overloaded=
"no"> 
22420         <autodoc>GetValue() -
> String
</autodoc> 
22423     <class name=
"GridCellChoiceEditor" oldname=
"wxGridCellChoiceEditor" module=
"grid"> 
22424       <baseclass name=
"GridCellEditor"/> 
22425       <constructor name=
"GridCellChoiceEditor" overloaded=
"no"> 
22426         <autodoc>__init__(int choices=
0, String choices_array=None, bool allowOthers=False) -
> GridCellChoiceEditor
</autodoc> 
22428           <param name=
"choices" type=
"int" default=
"0"/> 
22429           <param name=
"choices_array" type=
"String" default=
"NULL"/> 
22430           <param name=
"allowOthers" type=
"bool" default=
"False"/> 
22433       <method name=
"GetValue" type=
"String" overloaded=
"no"> 
22434         <autodoc>GetValue() -
> String
</autodoc> 
22437     <class name=
"GridCellEnumEditor" oldname=
"wxGridCellEnumEditor" module=
"grid"> 
22438       <baseclass name=
"GridCellChoiceEditor"/> 
22439       <constructor name=
"GridCellEnumEditor" overloaded=
"no"> 
22440         <autodoc>__init__(String choices=EmptyString) -
> GridCellEnumEditor
</autodoc> 
22442           <param name=
"choices" type=
"String" default=
"wxPyEmptyString"/> 
22445       <method name=
"GetValue" type=
"String" overloaded=
"no"> 
22446         <autodoc>GetValue() -
> String
</autodoc> 
22449     <class name=
"GridCellAutoWrapStringEditor" oldname=
"wxGridCellAutoWrapStringEditor" module=
"grid"> 
22450       <baseclass name=
"GridCellTextEditor"/> 
22451       <constructor name=
"GridCellAutoWrapStringEditor" overloaded=
"no"> 
22452         <autodoc>__init__() -
> GridCellAutoWrapStringEditor
</autodoc> 
22454       <method name=
"GetValue" type=
"String" overloaded=
"no"> 
22455         <autodoc>GetValue() -
> String
</autodoc> 
22458     <class name=
"GridCellAttr" oldname=
"wxGridCellAttr" module=
"grid"> 
22459       <constructor name=
"GridCellAttr" overloaded=
"no"> 
22460         <autodoc>__init__(GridCellAttr attrDefault=None) -
> GridCellAttr
</autodoc> 
22462           <param name=
"attrDefault" type=
"GridCellAttr" default=
"NULL"/> 
22465       <method name=
"_setOORInfo" type=
"" overloaded=
"no"> 
22466         <autodoc>_setOORInfo(PyObject _self)
</autodoc> 
22468           <param name=
"_self" type=
"PyObject" default=
""/> 
22471       <method name=
"Clone" type=
"GridCellAttr" overloaded=
"no"> 
22472         <autodoc>Clone() -
> GridCellAttr
</autodoc> 
22474       <method name=
"MergeWith" type=
"" overloaded=
"no"> 
22475         <autodoc>MergeWith(GridCellAttr mergefrom)
</autodoc> 
22477           <param name=
"mergefrom" type=
"GridCellAttr" default=
""/> 
22480       <method name=
"IncRef" type=
"" overloaded=
"no"> 
22481         <autodoc>IncRef()
</autodoc> 
22483       <method name=
"DecRef" type=
"" overloaded=
"no"> 
22484         <autodoc>DecRef()
</autodoc> 
22486       <method name=
"SetTextColour" type=
"" overloaded=
"no"> 
22487         <autodoc>SetTextColour(Colour colText)
</autodoc> 
22489           <param name=
"colText" type=
"Colour" default=
""/> 
22492       <method name=
"SetBackgroundColour" type=
"" overloaded=
"no"> 
22493         <autodoc>SetBackgroundColour(Colour colBack)
</autodoc> 
22495           <param name=
"colBack" type=
"Colour" default=
""/> 
22498       <method name=
"SetFont" type=
"" overloaded=
"no"> 
22499         <autodoc>SetFont(Font font)
</autodoc> 
22501           <param name=
"font" type=
"Font" default=
""/> 
22504       <method name=
"SetAlignment" type=
"" overloaded=
"no"> 
22505         <autodoc>SetAlignment(int hAlign, int vAlign)
</autodoc> 
22507           <param name=
"hAlign" type=
"int" default=
""/> 
22508           <param name=
"vAlign" type=
"int" default=
""/> 
22511       <method name=
"SetSize" type=
"" overloaded=
"no"> 
22512         <autodoc>SetSize(int num_rows, int num_cols)
</autodoc> 
22514           <param name=
"num_rows" type=
"int" default=
""/> 
22515           <param name=
"num_cols" type=
"int" default=
""/> 
22518       <method name=
"SetOverflow" type=
"" overloaded=
"no"> 
22519         <autodoc>SetOverflow(bool allow=True)
</autodoc> 
22521           <param name=
"allow" type=
"bool" default=
"True"/> 
22524       <method name=
"SetReadOnly" type=
"" overloaded=
"no"> 
22525         <autodoc>SetReadOnly(bool isReadOnly=True)
</autodoc> 
22527           <param name=
"isReadOnly" type=
"bool" default=
"True"/> 
22530       <method name=
"SetRenderer" type=
"" overloaded=
"no"> 
22531         <autodoc>SetRenderer(GridCellRenderer renderer)
</autodoc> 
22533           <param name=
"renderer" type=
"GridCellRenderer" default=
""/> 
22536       <method name=
"SetEditor" type=
"" overloaded=
"no"> 
22537         <autodoc>SetEditor(GridCellEditor editor)
</autodoc> 
22539           <param name=
"editor" type=
"GridCellEditor" default=
""/> 
22542       <method name=
"SetKind" type=
"" overloaded=
"no"> 
22543         <autodoc>SetKind(int kind)
</autodoc> 
22545           <param name=
"kind" type=
"wxGridCellAttr::wxAttrKind" default=
""/> 
22548       <method name=
"HasTextColour" type=
"bool" overloaded=
"no"> 
22549         <autodoc>HasTextColour() -
> bool
</autodoc> 
22551       <method name=
"HasBackgroundColour" type=
"bool" overloaded=
"no"> 
22552         <autodoc>HasBackgroundColour() -
> bool
</autodoc> 
22554       <method name=
"HasFont" type=
"bool" overloaded=
"no"> 
22555         <autodoc>HasFont() -
> bool
</autodoc> 
22557       <method name=
"HasAlignment" type=
"bool" overloaded=
"no"> 
22558         <autodoc>HasAlignment() -
> bool
</autodoc> 
22560       <method name=
"HasRenderer" type=
"bool" overloaded=
"no"> 
22561         <autodoc>HasRenderer() -
> bool
</autodoc> 
22563       <method name=
"HasEditor" type=
"bool" overloaded=
"no"> 
22564         <autodoc>HasEditor() -
> bool
</autodoc> 
22566       <method name=
"HasReadWriteMode" type=
"bool" overloaded=
"no"> 
22567         <autodoc>HasReadWriteMode() -
> bool
</autodoc> 
22569       <method name=
"HasOverflowMode" type=
"bool" overloaded=
"no"> 
22570         <autodoc>HasOverflowMode() -
> bool
</autodoc> 
22572       <method name=
"GetTextColour" type=
"Colour" overloaded=
"no"> 
22573         <autodoc>GetTextColour() -
> Colour
</autodoc> 
22575       <method name=
"GetBackgroundColour" type=
"Colour" overloaded=
"no"> 
22576         <autodoc>GetBackgroundColour() -
> Colour
</autodoc> 
22578       <method name=
"GetFont" type=
"Font" overloaded=
"no"> 
22579         <autodoc>GetFont() -
> Font
</autodoc> 
22581       <method name=
"GetAlignment" type=
"" overloaded=
"no"> 
22582         <autodoc>GetAlignment() -
> (hAlign, vAlign)
</autodoc> 
22584           <param name=
"OUTPUT" type=
"int" default=
""/> 
22585           <param name=
"OUTPUT" type=
"int" default=
""/> 
22588       <method name=
"GetSize" type=
"" overloaded=
"no"> 
22589         <autodoc>GetSize() -
> (num_rows, num_cols)
</autodoc> 
22591           <param name=
"OUTPUT" type=
"int" default=
""/> 
22592           <param name=
"OUTPUT" type=
"int" default=
""/> 
22595       <method name=
"GetOverflow" type=
"bool" overloaded=
"no"> 
22596         <autodoc>GetOverflow() -
> bool
</autodoc> 
22598       <method name=
"GetRenderer" type=
"GridCellRenderer" overloaded=
"no"> 
22599         <autodoc>GetRenderer(Grid grid, int row, int col) -
> GridCellRenderer
</autodoc> 
22601           <param name=
"grid" type=
"wxGrid" default=
""/> 
22602           <param name=
"row" type=
"int" default=
""/> 
22603           <param name=
"col" type=
"int" default=
""/> 
22606       <method name=
"GetEditor" type=
"GridCellEditor" overloaded=
"no"> 
22607         <autodoc>GetEditor(Grid grid, int row, int col) -
> GridCellEditor
</autodoc> 
22609           <param name=
"grid" type=
"wxGrid" default=
""/> 
22610           <param name=
"row" type=
"int" default=
""/> 
22611           <param name=
"col" type=
"int" default=
""/> 
22614       <method name=
"IsReadOnly" type=
"bool" overloaded=
"no"> 
22615         <autodoc>IsReadOnly() -
> bool
</autodoc> 
22617       <method name=
"SetDefAttr" type=
"" overloaded=
"no"> 
22618         <autodoc>SetDefAttr(GridCellAttr defAttr)
</autodoc> 
22620           <param name=
"defAttr" type=
"GridCellAttr" default=
""/> 
22624     <class name=
"GridCellAttrProvider" oldname=
"wxGridCellAttrProvider" module=
"grid"> 
22625       <constructor name=
"GridCellAttrProvider" overloaded=
"no"> 
22626         <autodoc>__init__() -
> GridCellAttrProvider
</autodoc> 
22628       <method name=
"_setOORInfo" type=
"" overloaded=
"no"> 
22629         <autodoc>_setOORInfo(PyObject _self)
</autodoc> 
22631           <param name=
"_self" type=
"PyObject" default=
""/> 
22634       <method name=
"GetAttr" type=
"GridCellAttr" overloaded=
"no"> 
22635         <autodoc>GetAttr(int row, int col, int kind) -
> GridCellAttr
</autodoc> 
22637           <param name=
"row" type=
"int" default=
""/> 
22638           <param name=
"col" type=
"int" default=
""/> 
22639           <param name=
"kind" type=
"wxGridCellAttr::wxAttrKind" default=
""/> 
22642       <method name=
"SetAttr" type=
"" overloaded=
"no"> 
22643         <autodoc>SetAttr(GridCellAttr attr, int row, int col)
</autodoc> 
22645           <param name=
"attr" type=
"GridCellAttr" default=
""/> 
22646           <param name=
"row" type=
"int" default=
""/> 
22647           <param name=
"col" type=
"int" default=
""/> 
22650       <method name=
"SetRowAttr" type=
"" overloaded=
"no"> 
22651         <autodoc>SetRowAttr(GridCellAttr attr, int row)
</autodoc> 
22653           <param name=
"attr" type=
"GridCellAttr" default=
""/> 
22654           <param name=
"row" type=
"int" default=
""/> 
22657       <method name=
"SetColAttr" type=
"" overloaded=
"no"> 
22658         <autodoc>SetColAttr(GridCellAttr attr, int col)
</autodoc> 
22660           <param name=
"attr" type=
"GridCellAttr" default=
""/> 
22661           <param name=
"col" type=
"int" default=
""/> 
22664       <method name=
"UpdateAttrRows" type=
"" overloaded=
"no"> 
22665         <autodoc>UpdateAttrRows(size_t pos, int numRows)
</autodoc> 
22667           <param name=
"pos" type=
"size_t" default=
""/> 
22668           <param name=
"numRows" type=
"int" default=
""/> 
22671       <method name=
"UpdateAttrCols" type=
"" overloaded=
"no"> 
22672         <autodoc>UpdateAttrCols(size_t pos, int numCols)
</autodoc> 
22674           <param name=
"pos" type=
"size_t" default=
""/> 
22675           <param name=
"numCols" type=
"int" default=
""/> 
22679     <class name=
"PyGridCellAttrProvider" oldname=
"wxPyGridCellAttrProvider" module=
"grid"> 
22680       <baseclass name=
"GridCellAttrProvider"/> 
22681       <constructor name=
"PyGridCellAttrProvider" overloaded=
"no"> 
22682         <autodoc>__init__() -
> PyGridCellAttrProvider
</autodoc> 
22684       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
22685         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
22687           <param name=
"self" type=
"PyObject" default=
""/> 
22688           <param name=
"_class" type=
"PyObject" default=
""/> 
22691       <method name=
"base_GetAttr" type=
"GridCellAttr" overloaded=
"no"> 
22692         <autodoc>base_GetAttr(int row, int col, int kind) -
> GridCellAttr
</autodoc> 
22694           <param name=
"row" type=
"int" default=
""/> 
22695           <param name=
"col" type=
"int" default=
""/> 
22696           <param name=
"kind" type=
"wxGridCellAttr::wxAttrKind" default=
""/> 
22699       <method name=
"base_SetAttr" type=
"" overloaded=
"no"> 
22700         <autodoc>base_SetAttr(GridCellAttr attr, int row, int col)
</autodoc> 
22702           <param name=
"attr" type=
"GridCellAttr" default=
""/> 
22703           <param name=
"row" type=
"int" default=
""/> 
22704           <param name=
"col" type=
"int" default=
""/> 
22707       <method name=
"base_SetRowAttr" type=
"" overloaded=
"no"> 
22708         <autodoc>base_SetRowAttr(GridCellAttr attr, int row)
</autodoc> 
22710           <param name=
"attr" type=
"GridCellAttr" default=
""/> 
22711           <param name=
"row" type=
"int" default=
""/> 
22714       <method name=
"base_SetColAttr" type=
"" overloaded=
"no"> 
22715         <autodoc>base_SetColAttr(GridCellAttr attr, int col)
</autodoc> 
22717           <param name=
"attr" type=
"GridCellAttr" default=
""/> 
22718           <param name=
"col" type=
"int" default=
""/> 
22722     <class name=
"GridTableBase" oldname=
"wxGridTableBase" module=
"grid"> 
22723       <baseclass name=
"Object"/> 
22724       <method name=
"_setOORInfo" type=
"" overloaded=
"no"> 
22725         <autodoc>_setOORInfo(PyObject _self)
</autodoc> 
22727           <param name=
"_self" type=
"PyObject" default=
""/> 
22730       <method name=
"SetAttrProvider" type=
"" overloaded=
"no"> 
22731         <autodoc>SetAttrProvider(GridCellAttrProvider attrProvider)
</autodoc> 
22733           <param name=
"attrProvider" type=
"GridCellAttrProvider" default=
""/> 
22736       <method name=
"GetAttrProvider" type=
"GridCellAttrProvider" overloaded=
"no"> 
22737         <autodoc>GetAttrProvider() -
> GridCellAttrProvider
</autodoc> 
22739       <method name=
"SetView" type=
"" overloaded=
"no"> 
22740         <autodoc>SetView(Grid grid)
</autodoc> 
22742           <param name=
"grid" type=
"wxGrid" default=
""/> 
22745       <method name=
"GetView" type=
"wxGrid" overloaded=
"no"> 
22746         <autodoc>GetView() -
> Grid
</autodoc> 
22748       <method name=
"GetNumberRows" type=
"int" overloaded=
"no"> 
22749         <autodoc>GetNumberRows() -
> int
</autodoc> 
22751       <method name=
"GetNumberCols" type=
"int" overloaded=
"no"> 
22752         <autodoc>GetNumberCols() -
> int
</autodoc> 
22754       <method name=
"IsEmptyCell" type=
"bool" overloaded=
"no"> 
22755         <autodoc>IsEmptyCell(int row, int col) -
> bool
</autodoc> 
22757           <param name=
"row" type=
"int" default=
""/> 
22758           <param name=
"col" type=
"int" default=
""/> 
22761       <method name=
"GetValue" type=
"String" overloaded=
"no"> 
22762         <autodoc>GetValue(int row, int col) -
> String
</autodoc> 
22764           <param name=
"row" type=
"int" default=
""/> 
22765           <param name=
"col" type=
"int" default=
""/> 
22768       <method name=
"SetValue" type=
"" overloaded=
"no"> 
22769         <autodoc>SetValue(int row, int col, String value)
</autodoc> 
22771           <param name=
"row" type=
"int" default=
""/> 
22772           <param name=
"col" type=
"int" default=
""/> 
22773           <param name=
"value" type=
"String" default=
""/> 
22776       <method name=
"GetTypeName" type=
"String" overloaded=
"no"> 
22777         <autodoc>GetTypeName(int row, int col) -
> String
</autodoc> 
22779           <param name=
"row" type=
"int" default=
""/> 
22780           <param name=
"col" type=
"int" default=
""/> 
22783       <method name=
"CanGetValueAs" type=
"bool" overloaded=
"no"> 
22784         <autodoc>CanGetValueAs(int row, int col, String typeName) -
> bool
</autodoc> 
22786           <param name=
"row" type=
"int" default=
""/> 
22787           <param name=
"col" type=
"int" default=
""/> 
22788           <param name=
"typeName" type=
"String" default=
""/> 
22791       <method name=
"CanSetValueAs" type=
"bool" overloaded=
"no"> 
22792         <autodoc>CanSetValueAs(int row, int col, String typeName) -
> bool
</autodoc> 
22794           <param name=
"row" type=
"int" default=
""/> 
22795           <param name=
"col" type=
"int" default=
""/> 
22796           <param name=
"typeName" type=
"String" default=
""/> 
22799       <method name=
"GetValueAsLong" type=
"long" overloaded=
"no"> 
22800         <autodoc>GetValueAsLong(int row, int col) -
> long
</autodoc> 
22802           <param name=
"row" type=
"int" default=
""/> 
22803           <param name=
"col" type=
"int" default=
""/> 
22806       <method name=
"GetValueAsDouble" type=
"double" overloaded=
"no"> 
22807         <autodoc>GetValueAsDouble(int row, int col) -
> double
</autodoc> 
22809           <param name=
"row" type=
"int" default=
""/> 
22810           <param name=
"col" type=
"int" default=
""/> 
22813       <method name=
"GetValueAsBool" type=
"bool" overloaded=
"no"> 
22814         <autodoc>GetValueAsBool(int row, int col) -
> bool
</autodoc> 
22816           <param name=
"row" type=
"int" default=
""/> 
22817           <param name=
"col" type=
"int" default=
""/> 
22820       <method name=
"SetValueAsLong" type=
"" overloaded=
"no"> 
22821         <autodoc>SetValueAsLong(int row, int col, long value)
</autodoc> 
22823           <param name=
"row" type=
"int" default=
""/> 
22824           <param name=
"col" type=
"int" default=
""/> 
22825           <param name=
"value" type=
"long" default=
""/> 
22828       <method name=
"SetValueAsDouble" type=
"" overloaded=
"no"> 
22829         <autodoc>SetValueAsDouble(int row, int col, double value)
</autodoc> 
22831           <param name=
"row" type=
"int" default=
""/> 
22832           <param name=
"col" type=
"int" default=
""/> 
22833           <param name=
"value" type=
"double" default=
""/> 
22836       <method name=
"SetValueAsBool" type=
"" overloaded=
"no"> 
22837         <autodoc>SetValueAsBool(int row, int col, bool value)
</autodoc> 
22839           <param name=
"row" type=
"int" default=
""/> 
22840           <param name=
"col" type=
"int" default=
""/> 
22841           <param name=
"value" type=
"bool" default=
""/> 
22844       <method name=
"Clear" type=
"" overloaded=
"no"> 
22845         <autodoc>Clear()
</autodoc> 
22847       <method name=
"InsertRows" type=
"bool" overloaded=
"no"> 
22848         <autodoc>InsertRows(size_t pos=
0, size_t numRows=
1) -
> bool
</autodoc> 
22850           <param name=
"pos" type=
"size_t" default=
"0"/> 
22851           <param name=
"numRows" type=
"size_t" default=
"1"/> 
22854       <method name=
"AppendRows" type=
"bool" overloaded=
"no"> 
22855         <autodoc>AppendRows(size_t numRows=
1) -
> bool
</autodoc> 
22857           <param name=
"numRows" type=
"size_t" default=
"1"/> 
22860       <method name=
"DeleteRows" type=
"bool" overloaded=
"no"> 
22861         <autodoc>DeleteRows(size_t pos=
0, size_t numRows=
1) -
> bool
</autodoc> 
22863           <param name=
"pos" type=
"size_t" default=
"0"/> 
22864           <param name=
"numRows" type=
"size_t" default=
"1"/> 
22867       <method name=
"InsertCols" type=
"bool" overloaded=
"no"> 
22868         <autodoc>InsertCols(size_t pos=
0, size_t numCols=
1) -
> bool
</autodoc> 
22870           <param name=
"pos" type=
"size_t" default=
"0"/> 
22871           <param name=
"numCols" type=
"size_t" default=
"1"/> 
22874       <method name=
"AppendCols" type=
"bool" overloaded=
"no"> 
22875         <autodoc>AppendCols(size_t numCols=
1) -
> bool
</autodoc> 
22877           <param name=
"numCols" type=
"size_t" default=
"1"/> 
22880       <method name=
"DeleteCols" type=
"bool" overloaded=
"no"> 
22881         <autodoc>DeleteCols(size_t pos=
0, size_t numCols=
1) -
> bool
</autodoc> 
22883           <param name=
"pos" type=
"size_t" default=
"0"/> 
22884           <param name=
"numCols" type=
"size_t" default=
"1"/> 
22887       <method name=
"GetRowLabelValue" type=
"String" overloaded=
"no"> 
22888         <autodoc>GetRowLabelValue(int row) -
> String
</autodoc> 
22890           <param name=
"row" type=
"int" default=
""/> 
22893       <method name=
"GetColLabelValue" type=
"String" overloaded=
"no"> 
22894         <autodoc>GetColLabelValue(int col) -
> String
</autodoc> 
22896           <param name=
"col" type=
"int" default=
""/> 
22899       <method name=
"SetRowLabelValue" type=
"" overloaded=
"no"> 
22900         <autodoc>SetRowLabelValue(int row, String value)
</autodoc> 
22902           <param name=
"row" type=
"int" default=
""/> 
22903           <param name=
"value" type=
"String" default=
""/> 
22906       <method name=
"SetColLabelValue" type=
"" overloaded=
"no"> 
22907         <autodoc>SetColLabelValue(int col, String value)
</autodoc> 
22909           <param name=
"col" type=
"int" default=
""/> 
22910           <param name=
"value" type=
"String" default=
""/> 
22913       <method name=
"CanHaveAttributes" type=
"bool" overloaded=
"no"> 
22914         <autodoc>CanHaveAttributes() -
> bool
</autodoc> 
22916       <method name=
"GetAttr" type=
"GridCellAttr" overloaded=
"no"> 
22917         <autodoc>GetAttr(int row, int col, int kind) -
> GridCellAttr
</autodoc> 
22919           <param name=
"row" type=
"int" default=
""/> 
22920           <param name=
"col" type=
"int" default=
""/> 
22921           <param name=
"kind" type=
"wxGridCellAttr::wxAttrKind" default=
""/> 
22924       <method name=
"SetAttr" type=
"" overloaded=
"no"> 
22925         <autodoc>SetAttr(GridCellAttr attr, int row, int col)
</autodoc> 
22927           <param name=
"attr" type=
"GridCellAttr" default=
""/> 
22928           <param name=
"row" type=
"int" default=
""/> 
22929           <param name=
"col" type=
"int" default=
""/> 
22932       <method name=
"SetRowAttr" type=
"" overloaded=
"no"> 
22933         <autodoc>SetRowAttr(GridCellAttr attr, int row)
</autodoc> 
22935           <param name=
"attr" type=
"GridCellAttr" default=
""/> 
22936           <param name=
"row" type=
"int" default=
""/> 
22939       <method name=
"SetColAttr" type=
"" overloaded=
"no"> 
22940         <autodoc>SetColAttr(GridCellAttr attr, int col)
</autodoc> 
22942           <param name=
"attr" type=
"GridCellAttr" default=
""/> 
22943           <param name=
"col" type=
"int" default=
""/> 
22947     <class name=
"PyGridTableBase" oldname=
"wxPyGridTableBase" module=
"grid"> 
22948       <baseclass name=
"GridTableBase"/> 
22949       <constructor name=
"PyGridTableBase" overloaded=
"no"> 
22950         <autodoc>__init__() -
> PyGridTableBase
</autodoc> 
22952       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
22953         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
22955           <param name=
"self" type=
"PyObject" default=
""/> 
22956           <param name=
"_class" type=
"PyObject" default=
""/> 
22959       <method name=
"Destroy" type=
"" overloaded=
"no"> 
22960         <autodoc>Destroy()
</autodoc> 
22961         <docstring>Deletes the C++ object this Python object is a proxy for.
</docstring> 
22963       <method name=
"base_GetTypeName" type=
"String" overloaded=
"no"> 
22964         <autodoc>base_GetTypeName(int row, int col) -
> String
</autodoc> 
22966           <param name=
"row" type=
"int" default=
""/> 
22967           <param name=
"col" type=
"int" default=
""/> 
22970       <method name=
"base_CanGetValueAs" type=
"bool" overloaded=
"no"> 
22971         <autodoc>base_CanGetValueAs(int row, int col, String typeName) -
> bool
</autodoc> 
22973           <param name=
"row" type=
"int" default=
""/> 
22974           <param name=
"col" type=
"int" default=
""/> 
22975           <param name=
"typeName" type=
"String" default=
""/> 
22978       <method name=
"base_CanSetValueAs" type=
"bool" overloaded=
"no"> 
22979         <autodoc>base_CanSetValueAs(int row, int col, String typeName) -
> bool
</autodoc> 
22981           <param name=
"row" type=
"int" default=
""/> 
22982           <param name=
"col" type=
"int" default=
""/> 
22983           <param name=
"typeName" type=
"String" default=
""/> 
22986       <method name=
"base_Clear" type=
"" overloaded=
"no"> 
22987         <autodoc>base_Clear()
</autodoc> 
22989       <method name=
"base_InsertRows" type=
"bool" overloaded=
"no"> 
22990         <autodoc>base_InsertRows(size_t pos=
0, size_t numRows=
1) -
> bool
</autodoc> 
22992           <param name=
"pos" type=
"size_t" default=
"0"/> 
22993           <param name=
"numRows" type=
"size_t" default=
"1"/> 
22996       <method name=
"base_AppendRows" type=
"bool" overloaded=
"no"> 
22997         <autodoc>base_AppendRows(size_t numRows=
1) -
> bool
</autodoc> 
22999           <param name=
"numRows" type=
"size_t" default=
"1"/> 
23002       <method name=
"base_DeleteRows" type=
"bool" overloaded=
"no"> 
23003         <autodoc>base_DeleteRows(size_t pos=
0, size_t numRows=
1) -
> bool
</autodoc> 
23005           <param name=
"pos" type=
"size_t" default=
"0"/> 
23006           <param name=
"numRows" type=
"size_t" default=
"1"/> 
23009       <method name=
"base_InsertCols" type=
"bool" overloaded=
"no"> 
23010         <autodoc>base_InsertCols(size_t pos=
0, size_t numCols=
1) -
> bool
</autodoc> 
23012           <param name=
"pos" type=
"size_t" default=
"0"/> 
23013           <param name=
"numCols" type=
"size_t" default=
"1"/> 
23016       <method name=
"base_AppendCols" type=
"bool" overloaded=
"no"> 
23017         <autodoc>base_AppendCols(size_t numCols=
1) -
> bool
</autodoc> 
23019           <param name=
"numCols" type=
"size_t" default=
"1"/> 
23022       <method name=
"base_DeleteCols" type=
"bool" overloaded=
"no"> 
23023         <autodoc>base_DeleteCols(size_t pos=
0, size_t numCols=
1) -
> bool
</autodoc> 
23025           <param name=
"pos" type=
"size_t" default=
"0"/> 
23026           <param name=
"numCols" type=
"size_t" default=
"1"/> 
23029       <method name=
"base_GetRowLabelValue" type=
"String" overloaded=
"no"> 
23030         <autodoc>base_GetRowLabelValue(int row) -
> String
</autodoc> 
23032           <param name=
"row" type=
"int" default=
""/> 
23035       <method name=
"base_GetColLabelValue" type=
"String" overloaded=
"no"> 
23036         <autodoc>base_GetColLabelValue(int col) -
> String
</autodoc> 
23038           <param name=
"col" type=
"int" default=
""/> 
23041       <method name=
"base_SetRowLabelValue" type=
"" overloaded=
"no"> 
23042         <autodoc>base_SetRowLabelValue(int row, String value)
</autodoc> 
23044           <param name=
"row" type=
"int" default=
""/> 
23045           <param name=
"value" type=
"String" default=
""/> 
23048       <method name=
"base_SetColLabelValue" type=
"" overloaded=
"no"> 
23049         <autodoc>base_SetColLabelValue(int col, String value)
</autodoc> 
23051           <param name=
"col" type=
"int" default=
""/> 
23052           <param name=
"value" type=
"String" default=
""/> 
23055       <method name=
"base_CanHaveAttributes" type=
"bool" overloaded=
"no"> 
23056         <autodoc>base_CanHaveAttributes() -
> bool
</autodoc> 
23058       <method name=
"base_GetAttr" type=
"GridCellAttr" overloaded=
"no"> 
23059         <autodoc>base_GetAttr(int row, int col, int kind) -
> GridCellAttr
</autodoc> 
23061           <param name=
"row" type=
"int" default=
""/> 
23062           <param name=
"col" type=
"int" default=
""/> 
23063           <param name=
"kind" type=
"wxGridCellAttr::wxAttrKind" default=
""/> 
23066       <method name=
"base_SetAttr" type=
"" overloaded=
"no"> 
23067         <autodoc>base_SetAttr(GridCellAttr attr, int row, int col)
</autodoc> 
23069           <param name=
"attr" type=
"GridCellAttr" default=
""/> 
23070           <param name=
"row" type=
"int" default=
""/> 
23071           <param name=
"col" type=
"int" default=
""/> 
23074       <method name=
"base_SetRowAttr" type=
"" overloaded=
"no"> 
23075         <autodoc>base_SetRowAttr(GridCellAttr attr, int row)
</autodoc> 
23077           <param name=
"attr" type=
"GridCellAttr" default=
""/> 
23078           <param name=
"row" type=
"int" default=
""/> 
23081       <method name=
"base_SetColAttr" type=
"" overloaded=
"no"> 
23082         <autodoc>base_SetColAttr(GridCellAttr attr, int col)
</autodoc> 
23084           <param name=
"attr" type=
"GridCellAttr" default=
""/> 
23085           <param name=
"col" type=
"int" default=
""/> 
23089     <class name=
"GridStringTable" oldname=
"wxGridStringTable" module=
"grid"> 
23090       <baseclass name=
"GridTableBase"/> 
23091       <constructor name=
"GridStringTable" overloaded=
"no"> 
23092         <autodoc>__init__(int numRows=
0, int numCols=
0) -
> GridStringTable
</autodoc> 
23094           <param name=
"numRows" type=
"int" default=
"0"/> 
23095           <param name=
"numCols" type=
"int" default=
"0"/> 
23099     <class name=
"GridTableMessage" oldname=
"wxGridTableMessage" module=
"grid"> 
23100       <constructor name=
"GridTableMessage" overloaded=
"no"> 
23101         <autodoc>__init__(GridTableBase table, int id, int comInt1=-
1, int comInt2=-
1) -
> GridTableMessage
</autodoc> 
23103           <param name=
"table" type=
"GridTableBase" default=
""/> 
23104           <param name=
"id" type=
"int" default=
""/> 
23105           <param name=
"comInt1" type=
"int" default=
"-1"/> 
23106           <param name=
"comInt2" type=
"int" default=
"-1"/> 
23109       <destructor name=
"~wxGridTableMessage" overloaded=
"no"> 
23110         <autodoc>__del__()
</autodoc> 
23112       <method name=
"SetTableObject" type=
"" overloaded=
"no"> 
23113         <autodoc>SetTableObject(GridTableBase table)
</autodoc> 
23115           <param name=
"table" type=
"GridTableBase" default=
""/> 
23118       <method name=
"GetTableObject" type=
"GridTableBase" overloaded=
"no"> 
23119         <autodoc>GetTableObject() -
> GridTableBase
</autodoc> 
23121       <method name=
"SetId" type=
"" overloaded=
"no"> 
23122         <autodoc>SetId(int id)
</autodoc> 
23124           <param name=
"id" type=
"int" default=
""/> 
23127       <method name=
"GetId" type=
"int" overloaded=
"no"> 
23128         <autodoc>GetId() -
> int
</autodoc> 
23130       <method name=
"SetCommandInt" type=
"" overloaded=
"no"> 
23131         <autodoc>SetCommandInt(int comInt1)
</autodoc> 
23133           <param name=
"comInt1" type=
"int" default=
""/> 
23136       <method name=
"GetCommandInt" type=
"int" overloaded=
"no"> 
23137         <autodoc>GetCommandInt() -
> int
</autodoc> 
23139       <method name=
"SetCommandInt2" type=
"" overloaded=
"no"> 
23140         <autodoc>SetCommandInt2(int comInt2)
</autodoc> 
23142           <param name=
"comInt2" type=
"int" default=
""/> 
23145       <method name=
"GetCommandInt2" type=
"int" overloaded=
"no"> 
23146         <autodoc>GetCommandInt2() -
> int
</autodoc> 
23149     <class name=
"GridCellCoords" oldname=
"wxGridCellCoords" module=
"grid"> 
23150       <constructor name=
"GridCellCoords" overloaded=
"no"> 
23151         <autodoc>__init__(int r=-
1, int c=-
1) -
> GridCellCoords
</autodoc> 
23153           <param name=
"r" type=
"int" default=
"-1"/> 
23154           <param name=
"c" type=
"int" default=
"-1"/> 
23157       <destructor name=
"~wxGridCellCoords" overloaded=
"no"> 
23158         <autodoc>__del__()
</autodoc> 
23160       <method name=
"GetRow" type=
"int" overloaded=
"no"> 
23161         <autodoc>GetRow() -
> int
</autodoc> 
23163       <method name=
"SetRow" type=
"" overloaded=
"no"> 
23164         <autodoc>SetRow(int n)
</autodoc> 
23166           <param name=
"n" type=
"int" default=
""/> 
23169       <method name=
"GetCol" type=
"int" overloaded=
"no"> 
23170         <autodoc>GetCol() -
> int
</autodoc> 
23172       <method name=
"SetCol" type=
"" overloaded=
"no"> 
23173         <autodoc>SetCol(int n)
</autodoc> 
23175           <param name=
"n" type=
"int" default=
""/> 
23178       <method name=
"Set" type=
"" overloaded=
"no"> 
23179         <autodoc>Set(int row, int col)
</autodoc> 
23181           <param name=
"row" type=
"int" default=
""/> 
23182           <param name=
"col" type=
"int" default=
""/> 
23185       <method name=
"__eq__" type=
"bool" overloaded=
"no"> 
23186         <autodoc>__eq__(GridCellCoords other) -
> bool
</autodoc> 
23188           <param name=
"other" type=
"GridCellCoords" default=
""/> 
23191       <method name=
"__ne__" type=
"bool" overloaded=
"no"> 
23192         <autodoc>__ne__(GridCellCoords other) -
> bool
</autodoc> 
23194           <param name=
"other" type=
"GridCellCoords" default=
""/> 
23197       <method name=
"asTuple" type=
"PyObject" overloaded=
"no"> 
23198         <autodoc>asTuple() -
> PyObject
</autodoc> 
23201     <class name=
"Grid" oldname=
"wxGrid" module=
"grid"> 
23202       <baseclass name=
"ScrolledWindow"/> 
23203       <constructor name=
"Grid" overloaded=
"no"> 
23204         <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
23205     long style=WANTS_CHARS, 
 
23206     String name=PanelNameStr) -
> Grid
</autodoc> 
23208           <param name=
"parent" type=
"Window" default=
""/> 
23209           <param name=
"id" type=
"int" default=
""/> 
23210           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
23211           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
23212           <param name=
"style" type=
"long" default=
"wxWANTS_CHARS"/> 
23213           <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/> 
23216       <method name=
"CreateGrid" type=
"bool" overloaded=
"no"> 
23217         <autodoc>CreateGrid(int numRows, int numCols, WXGRIDSELECTIONMODES selmode=wxGridSelectCells) -
> bool
</autodoc> 
23219           <param name=
"numRows" type=
"int" default=
""/> 
23220           <param name=
"numCols" type=
"int" default=
""/> 
23221           <param name=
"selmode" type=
"WXGRIDSELECTIONMODES" default=
"wxGrid::wxGridSelectCells"/> 
23224       <method name=
"SetSelectionMode" type=
"" overloaded=
"no"> 
23225         <autodoc>SetSelectionMode(WXGRIDSELECTIONMODES selmode)
</autodoc> 
23227           <param name=
"selmode" type=
"WXGRIDSELECTIONMODES" default=
""/> 
23230       <method name=
"GetSelectionMode" type=
"WXGRIDSELECTIONMODES" overloaded=
"no"> 
23231         <autodoc>GetSelectionMode() -
> WXGRIDSELECTIONMODES
</autodoc> 
23233       <method name=
"GetNumberRows" type=
"int" overloaded=
"no"> 
23234         <autodoc>GetNumberRows() -
> int
</autodoc> 
23236       <method name=
"GetNumberCols" type=
"int" overloaded=
"no"> 
23237         <autodoc>GetNumberCols() -
> int
</autodoc> 
23239       <method name=
"ProcessTableMessage" type=
"bool" overloaded=
"no"> 
23240         <autodoc>ProcessTableMessage(GridTableMessage ??) -
> bool
</autodoc> 
23242           <param name=
"" type=
"GridTableMessage" default=
""/> 
23245       <method name=
"GetTable" type=
"GridTableBase" overloaded=
"no"> 
23246         <autodoc>GetTable() -
> GridTableBase
</autodoc> 
23248       <method name=
"SetTable" type=
"bool" overloaded=
"no"> 
23249         <autodoc>SetTable(GridTableBase table, bool takeOwnership=False, WXGRIDSELECTIONMODES selmode=wxGridSelectCells) -
> bool
</autodoc> 
23251           <param name=
"table" type=
"GridTableBase" default=
""/> 
23252           <param name=
"takeOwnership" type=
"bool" default=
"False"/> 
23253           <param name=
"selmode" type=
"WXGRIDSELECTIONMODES" default=
"wxGrid::wxGridSelectCells"/> 
23256       <method name=
"ClearGrid" type=
"" overloaded=
"no"> 
23257         <autodoc>ClearGrid()
</autodoc> 
23259       <method name=
"InsertRows" type=
"bool" overloaded=
"no"> 
23260         <autodoc>InsertRows(int pos=
0, int numRows=
1, bool updateLabels=True) -
> bool
</autodoc> 
23262           <param name=
"pos" type=
"int" default=
"0"/> 
23263           <param name=
"numRows" type=
"int" default=
"1"/> 
23264           <param name=
"updateLabels" type=
"bool" default=
"True"/> 
23267       <method name=
"AppendRows" type=
"bool" overloaded=
"no"> 
23268         <autodoc>AppendRows(int numRows=
1, bool updateLabels=True) -
> bool
</autodoc> 
23270           <param name=
"numRows" type=
"int" default=
"1"/> 
23271           <param name=
"updateLabels" type=
"bool" default=
"True"/> 
23274       <method name=
"DeleteRows" type=
"bool" overloaded=
"no"> 
23275         <autodoc>DeleteRows(int pos=
0, int numRows=
1, bool updateLabels=True) -
> bool
</autodoc> 
23277           <param name=
"pos" type=
"int" default=
"0"/> 
23278           <param name=
"numRows" type=
"int" default=
"1"/> 
23279           <param name=
"updateLabels" type=
"bool" default=
"True"/> 
23282       <method name=
"InsertCols" type=
"bool" overloaded=
"no"> 
23283         <autodoc>InsertCols(int pos=
0, int numCols=
1, bool updateLabels=True) -
> bool
</autodoc> 
23285           <param name=
"pos" type=
"int" default=
"0"/> 
23286           <param name=
"numCols" type=
"int" default=
"1"/> 
23287           <param name=
"updateLabels" type=
"bool" default=
"True"/> 
23290       <method name=
"AppendCols" type=
"bool" overloaded=
"no"> 
23291         <autodoc>AppendCols(int numCols=
1, bool updateLabels=True) -
> bool
</autodoc> 
23293           <param name=
"numCols" type=
"int" default=
"1"/> 
23294           <param name=
"updateLabels" type=
"bool" default=
"True"/> 
23297       <method name=
"DeleteCols" type=
"bool" overloaded=
"no"> 
23298         <autodoc>DeleteCols(int pos=
0, int numCols=
1, bool updateLabels=True) -
> bool
</autodoc> 
23300           <param name=
"pos" type=
"int" default=
"0"/> 
23301           <param name=
"numCols" type=
"int" default=
"1"/> 
23302           <param name=
"updateLabels" type=
"bool" default=
"True"/> 
23305       <method name=
"DrawCellHighlight" type=
"" overloaded=
"no"> 
23306         <autodoc>DrawCellHighlight(DC dc, GridCellAttr attr)
</autodoc> 
23308           <param name=
"dc" type=
"DC" default=
""/> 
23309           <param name=
"attr" type=
"GridCellAttr" default=
""/> 
23312       <method name=
"DrawTextRectangle" type=
"" overloaded=
"no"> 
23313         <autodoc>DrawTextRectangle(DC dc, String ??, Rect ??, int horizontalAlignment=LEFT, 
 
23314     int verticalAlignment=TOP, int textOrientation=HORIZONTAL)
</autodoc> 
23316           <param name=
"dc" type=
"DC" default=
""/> 
23317           <param name=
"" type=
"String" default=
""/> 
23318           <param name=
"" type=
"Rect" default=
""/> 
23319           <param name=
"horizontalAlignment" type=
"int" default=
"wxLEFT"/> 
23320           <param name=
"verticalAlignment" type=
"int" default=
"wxTOP"/> 
23321           <param name=
"textOrientation" type=
"int" default=
"wxHORIZONTAL"/> 
23324       <method name=
"GetTextBoxSize" type=
"" overloaded=
"no"> 
23325         <autodoc>GetTextBoxSize(DC dc, list lines) -
> (width, height)
</autodoc> 
23327           <param name=
"dc" type=
"DC" default=
""/> 
23328           <param name=
"lines" type=
"wxArrayString" default=
""/> 
23329           <param name=
"OUTPUT" type=
"long" default=
""/> 
23330           <param name=
"OUTPUT" type=
"long" default=
""/> 
23333       <method name=
"BeginBatch" type=
"" overloaded=
"no"> 
23334         <autodoc>BeginBatch()
</autodoc> 
23336       <method name=
"EndBatch" type=
"" overloaded=
"no"> 
23337         <autodoc>EndBatch()
</autodoc> 
23339       <method name=
"GetBatchCount" type=
"int" overloaded=
"no"> 
23340         <autodoc>GetBatchCount() -
> int
</autodoc> 
23342       <method name=
"ForceRefresh" type=
"" overloaded=
"no"> 
23343         <autodoc>ForceRefresh()
</autodoc> 
23345       <method name=
"Refresh" type=
"" overloaded=
"no"> 
23346         <autodoc>Refresh(bool eraseb=True, Rect rect=None)
</autodoc> 
23348           <param name=
"eraseb" type=
"bool" default=
"True"/> 
23349           <param name=
"rect" type=
"Rect" default=
"NULL"/> 
23352       <method name=
"IsEditable" type=
"bool" overloaded=
"no"> 
23353         <autodoc>IsEditable() -
> bool
</autodoc> 
23355       <method name=
"EnableEditing" type=
"" overloaded=
"no"> 
23356         <autodoc>EnableEditing(bool edit)
</autodoc> 
23358           <param name=
"edit" type=
"bool" default=
""/> 
23361       <method name=
"EnableCellEditControl" type=
"" overloaded=
"no"> 
23362         <autodoc>EnableCellEditControl(bool enable=True)
</autodoc> 
23364           <param name=
"enable" type=
"bool" default=
"True"/> 
23367       <method name=
"DisableCellEditControl" type=
"" overloaded=
"no"> 
23368         <autodoc>DisableCellEditControl()
</autodoc> 
23370       <method name=
"CanEnableCellControl" type=
"bool" overloaded=
"no"> 
23371         <autodoc>CanEnableCellControl() -
> bool
</autodoc> 
23373       <method name=
"IsCellEditControlEnabled" type=
"bool" overloaded=
"no"> 
23374         <autodoc>IsCellEditControlEnabled() -
> bool
</autodoc> 
23376       <method name=
"IsCellEditControlShown" type=
"bool" overloaded=
"no"> 
23377         <autodoc>IsCellEditControlShown() -
> bool
</autodoc> 
23379       <method name=
"IsCurrentCellReadOnly" type=
"bool" overloaded=
"no"> 
23380         <autodoc>IsCurrentCellReadOnly() -
> bool
</autodoc> 
23382       <method name=
"ShowCellEditControl" type=
"" overloaded=
"no"> 
23383         <autodoc>ShowCellEditControl()
</autodoc> 
23385       <method name=
"HideCellEditControl" type=
"" overloaded=
"no"> 
23386         <autodoc>HideCellEditControl()
</autodoc> 
23388       <method name=
"SaveEditControlValue" type=
"" overloaded=
"no"> 
23389         <autodoc>SaveEditControlValue()
</autodoc> 
23391       <method name=
"XYToCell" type=
"GridCellCoords" overloaded=
"no"> 
23392         <autodoc>XYToCell(int x, int y) -
> GridCellCoords
</autodoc> 
23394           <param name=
"x" type=
"int" default=
""/> 
23395           <param name=
"y" type=
"int" default=
""/> 
23398       <method name=
"YToRow" type=
"int" overloaded=
"no"> 
23399         <autodoc>YToRow(int y) -
> int
</autodoc> 
23401           <param name=
"y" type=
"int" default=
""/> 
23404       <method name=
"XToCol" type=
"int" overloaded=
"no"> 
23405         <autodoc>XToCol(int x) -
> int
</autodoc> 
23407           <param name=
"x" type=
"int" default=
""/> 
23410       <method name=
"YToEdgeOfRow" type=
"int" overloaded=
"no"> 
23411         <autodoc>YToEdgeOfRow(int y) -
> int
</autodoc> 
23413           <param name=
"y" type=
"int" default=
""/> 
23416       <method name=
"XToEdgeOfCol" type=
"int" overloaded=
"no"> 
23417         <autodoc>XToEdgeOfCol(int x) -
> int
</autodoc> 
23419           <param name=
"x" type=
"int" default=
""/> 
23422       <method name=
"CellToRect" type=
"Rect" overloaded=
"no"> 
23423         <autodoc>CellToRect(int row, int col) -
> Rect
</autodoc> 
23425           <param name=
"row" type=
"int" default=
""/> 
23426           <param name=
"col" type=
"int" default=
""/> 
23429       <method name=
"GetGridCursorRow" type=
"int" overloaded=
"no"> 
23430         <autodoc>GetGridCursorRow() -
> int
</autodoc> 
23432       <method name=
"GetGridCursorCol" type=
"int" overloaded=
"no"> 
23433         <autodoc>GetGridCursorCol() -
> int
</autodoc> 
23435       <method name=
"IsVisible" type=
"bool" overloaded=
"no"> 
23436         <autodoc>IsVisible(int row, int col, bool wholeCellVisible=True) -
> bool
</autodoc> 
23438           <param name=
"row" type=
"int" default=
""/> 
23439           <param name=
"col" type=
"int" default=
""/> 
23440           <param name=
"wholeCellVisible" type=
"bool" default=
"True"/> 
23443       <method name=
"MakeCellVisible" type=
"" overloaded=
"no"> 
23444         <autodoc>MakeCellVisible(int row, int col)
</autodoc> 
23446           <param name=
"row" type=
"int" default=
""/> 
23447           <param name=
"col" type=
"int" default=
""/> 
23450       <method name=
"SetGridCursor" type=
"" overloaded=
"no"> 
23451         <autodoc>SetGridCursor(int row, int col)
</autodoc> 
23453           <param name=
"row" type=
"int" default=
""/> 
23454           <param name=
"col" type=
"int" default=
""/> 
23457       <method name=
"MoveCursorUp" type=
"bool" overloaded=
"no"> 
23458         <autodoc>MoveCursorUp(bool expandSelection) -
> bool
</autodoc> 
23460           <param name=
"expandSelection" type=
"bool" default=
""/> 
23463       <method name=
"MoveCursorDown" type=
"bool" overloaded=
"no"> 
23464         <autodoc>MoveCursorDown(bool expandSelection) -
> bool
</autodoc> 
23466           <param name=
"expandSelection" type=
"bool" default=
""/> 
23469       <method name=
"MoveCursorLeft" type=
"bool" overloaded=
"no"> 
23470         <autodoc>MoveCursorLeft(bool expandSelection) -
> bool
</autodoc> 
23472           <param name=
"expandSelection" type=
"bool" default=
""/> 
23475       <method name=
"MoveCursorRight" type=
"bool" overloaded=
"no"> 
23476         <autodoc>MoveCursorRight(bool expandSelection) -
> bool
</autodoc> 
23478           <param name=
"expandSelection" type=
"bool" default=
""/> 
23481       <method name=
"MovePageDown" type=
"bool" overloaded=
"no"> 
23482         <autodoc>MovePageDown() -
> bool
</autodoc> 
23484       <method name=
"MovePageUp" type=
"bool" overloaded=
"no"> 
23485         <autodoc>MovePageUp() -
> bool
</autodoc> 
23487       <method name=
"MoveCursorUpBlock" type=
"bool" overloaded=
"no"> 
23488         <autodoc>MoveCursorUpBlock(bool expandSelection) -
> bool
</autodoc> 
23490           <param name=
"expandSelection" type=
"bool" default=
""/> 
23493       <method name=
"MoveCursorDownBlock" type=
"bool" overloaded=
"no"> 
23494         <autodoc>MoveCursorDownBlock(bool expandSelection) -
> bool
</autodoc> 
23496           <param name=
"expandSelection" type=
"bool" default=
""/> 
23499       <method name=
"MoveCursorLeftBlock" type=
"bool" overloaded=
"no"> 
23500         <autodoc>MoveCursorLeftBlock(bool expandSelection) -
> bool
</autodoc> 
23502           <param name=
"expandSelection" type=
"bool" default=
""/> 
23505       <method name=
"MoveCursorRightBlock" type=
"bool" overloaded=
"no"> 
23506         <autodoc>MoveCursorRightBlock(bool expandSelection) -
> bool
</autodoc> 
23508           <param name=
"expandSelection" type=
"bool" default=
""/> 
23511       <method name=
"GetDefaultRowLabelSize" type=
"int" overloaded=
"no"> 
23512         <autodoc>GetDefaultRowLabelSize() -
> int
</autodoc> 
23514       <method name=
"GetRowLabelSize" type=
"int" overloaded=
"no"> 
23515         <autodoc>GetRowLabelSize() -
> int
</autodoc> 
23517       <method name=
"GetDefaultColLabelSize" type=
"int" overloaded=
"no"> 
23518         <autodoc>GetDefaultColLabelSize() -
> int
</autodoc> 
23520       <method name=
"GetColLabelSize" type=
"int" overloaded=
"no"> 
23521         <autodoc>GetColLabelSize() -
> int
</autodoc> 
23523       <method name=
"GetLabelBackgroundColour" type=
"Colour" overloaded=
"no"> 
23524         <autodoc>GetLabelBackgroundColour() -
> Colour
</autodoc> 
23526       <method name=
"GetLabelTextColour" type=
"Colour" overloaded=
"no"> 
23527         <autodoc>GetLabelTextColour() -
> Colour
</autodoc> 
23529       <method name=
"GetLabelFont" type=
"Font" overloaded=
"no"> 
23530         <autodoc>GetLabelFont() -
> Font
</autodoc> 
23532       <method name=
"GetRowLabelAlignment" type=
"" overloaded=
"no"> 
23533         <autodoc>GetRowLabelAlignment() -
> (horiz, vert)
</autodoc> 
23535           <param name=
"OUTPUT" type=
"int" default=
""/> 
23536           <param name=
"OUTPUT" type=
"int" default=
""/> 
23539       <method name=
"GetColLabelAlignment" type=
"" overloaded=
"no"> 
23540         <autodoc>GetColLabelAlignment() -
> (horiz, vert)
</autodoc> 
23542           <param name=
"OUTPUT" type=
"int" default=
""/> 
23543           <param name=
"OUTPUT" type=
"int" default=
""/> 
23546       <method name=
"GetColLabelTextOrientation" type=
"int" overloaded=
"no"> 
23547         <autodoc>GetColLabelTextOrientation() -
> int
</autodoc> 
23549       <method name=
"GetRowLabelValue" type=
"String" overloaded=
"no"> 
23550         <autodoc>GetRowLabelValue(int row) -
> String
</autodoc> 
23552           <param name=
"row" type=
"int" default=
""/> 
23555       <method name=
"GetColLabelValue" type=
"String" overloaded=
"no"> 
23556         <autodoc>GetColLabelValue(int col) -
> String
</autodoc> 
23558           <param name=
"col" type=
"int" default=
""/> 
23561       <method name=
"GetGridLineColour" type=
"Colour" overloaded=
"no"> 
23562         <autodoc>GetGridLineColour() -
> Colour
</autodoc> 
23564       <method name=
"GetCellHighlightColour" type=
"Colour" overloaded=
"no"> 
23565         <autodoc>GetCellHighlightColour() -
> Colour
</autodoc> 
23567       <method name=
"GetCellHighlightPenWidth" type=
"int" overloaded=
"no"> 
23568         <autodoc>GetCellHighlightPenWidth() -
> int
</autodoc> 
23570       <method name=
"GetCellHighlightROPenWidth" type=
"int" overloaded=
"no"> 
23571         <autodoc>GetCellHighlightROPenWidth() -
> int
</autodoc> 
23573       <method name=
"SetRowLabelSize" type=
"" overloaded=
"no"> 
23574         <autodoc>SetRowLabelSize(int width)
</autodoc> 
23576           <param name=
"width" type=
"int" default=
""/> 
23579       <method name=
"SetColLabelSize" type=
"" overloaded=
"no"> 
23580         <autodoc>SetColLabelSize(int height)
</autodoc> 
23582           <param name=
"height" type=
"int" default=
""/> 
23585       <method name=
"SetLabelBackgroundColour" type=
"" overloaded=
"no"> 
23586         <autodoc>SetLabelBackgroundColour(Colour ??)
</autodoc> 
23588           <param name=
"" type=
"Colour" default=
""/> 
23591       <method name=
"SetLabelTextColour" type=
"" overloaded=
"no"> 
23592         <autodoc>SetLabelTextColour(Colour ??)
</autodoc> 
23594           <param name=
"" type=
"Colour" default=
""/> 
23597       <method name=
"SetLabelFont" type=
"" overloaded=
"no"> 
23598         <autodoc>SetLabelFont(Font ??)
</autodoc> 
23600           <param name=
"" type=
"Font" default=
""/> 
23603       <method name=
"SetRowLabelAlignment" type=
"" overloaded=
"no"> 
23604         <autodoc>SetRowLabelAlignment(int horiz, int vert)
</autodoc> 
23606           <param name=
"horiz" type=
"int" default=
""/> 
23607           <param name=
"vert" type=
"int" default=
""/> 
23610       <method name=
"SetColLabelAlignment" type=
"" overloaded=
"no"> 
23611         <autodoc>SetColLabelAlignment(int horiz, int vert)
</autodoc> 
23613           <param name=
"horiz" type=
"int" default=
""/> 
23614           <param name=
"vert" type=
"int" default=
""/> 
23617       <method name=
"SetColLabelTextOrientation" type=
"" overloaded=
"no"> 
23618         <autodoc>SetColLabelTextOrientation(int textOrientation)
</autodoc> 
23620           <param name=
"textOrientation" type=
"int" default=
""/> 
23623       <method name=
"SetRowLabelValue" type=
"" overloaded=
"no"> 
23624         <autodoc>SetRowLabelValue(int row, String ??)
</autodoc> 
23626           <param name=
"row" type=
"int" default=
""/> 
23627           <param name=
"" type=
"String" default=
""/> 
23630       <method name=
"SetColLabelValue" type=
"" overloaded=
"no"> 
23631         <autodoc>SetColLabelValue(int col, String ??)
</autodoc> 
23633           <param name=
"col" type=
"int" default=
""/> 
23634           <param name=
"" type=
"String" default=
""/> 
23637       <method name=
"SetGridLineColour" type=
"" overloaded=
"no"> 
23638         <autodoc>SetGridLineColour(Colour ??)
</autodoc> 
23640           <param name=
"" type=
"Colour" default=
""/> 
23643       <method name=
"SetCellHighlightColour" type=
"" overloaded=
"no"> 
23644         <autodoc>SetCellHighlightColour(Colour ??)
</autodoc> 
23646           <param name=
"" type=
"Colour" default=
""/> 
23649       <method name=
"SetCellHighlightPenWidth" type=
"" overloaded=
"no"> 
23650         <autodoc>SetCellHighlightPenWidth(int width)
</autodoc> 
23652           <param name=
"width" type=
"int" default=
""/> 
23655       <method name=
"SetCellHighlightROPenWidth" type=
"" overloaded=
"no"> 
23656         <autodoc>SetCellHighlightROPenWidth(int width)
</autodoc> 
23658           <param name=
"width" type=
"int" default=
""/> 
23661       <method name=
"EnableDragRowSize" type=
"" overloaded=
"no"> 
23662         <autodoc>EnableDragRowSize(bool enable=True)
</autodoc> 
23664           <param name=
"enable" type=
"bool" default=
"True"/> 
23667       <method name=
"DisableDragRowSize" type=
"" overloaded=
"no"> 
23668         <autodoc>DisableDragRowSize()
</autodoc> 
23670       <method name=
"CanDragRowSize" type=
"bool" overloaded=
"no"> 
23671         <autodoc>CanDragRowSize() -
> bool
</autodoc> 
23673       <method name=
"EnableDragColSize" type=
"" overloaded=
"no"> 
23674         <autodoc>EnableDragColSize(bool enable=True)
</autodoc> 
23676           <param name=
"enable" type=
"bool" default=
"True"/> 
23679       <method name=
"DisableDragColSize" type=
"" overloaded=
"no"> 
23680         <autodoc>DisableDragColSize()
</autodoc> 
23682       <method name=
"CanDragColSize" type=
"bool" overloaded=
"no"> 
23683         <autodoc>CanDragColSize() -
> bool
</autodoc> 
23685       <method name=
"EnableDragGridSize" type=
"" overloaded=
"no"> 
23686         <autodoc>EnableDragGridSize(bool enable=True)
</autodoc> 
23688           <param name=
"enable" type=
"bool" default=
"True"/> 
23691       <method name=
"DisableDragGridSize" type=
"" overloaded=
"no"> 
23692         <autodoc>DisableDragGridSize()
</autodoc> 
23694       <method name=
"CanDragGridSize" type=
"bool" overloaded=
"no"> 
23695         <autodoc>CanDragGridSize() -
> bool
</autodoc> 
23697       <method name=
"SetAttr" type=
"" overloaded=
"no"> 
23698         <autodoc>SetAttr(int row, int col, GridCellAttr attr)
</autodoc> 
23700           <param name=
"row" type=
"int" default=
""/> 
23701           <param name=
"col" type=
"int" default=
""/> 
23702           <param name=
"attr" type=
"GridCellAttr" default=
""/> 
23705       <method name=
"SetRowAttr" type=
"" overloaded=
"no"> 
23706         <autodoc>SetRowAttr(int row, GridCellAttr attr)
</autodoc> 
23708           <param name=
"row" type=
"int" default=
""/> 
23709           <param name=
"attr" type=
"GridCellAttr" default=
""/> 
23712       <method name=
"SetColAttr" type=
"" overloaded=
"no"> 
23713         <autodoc>SetColAttr(int col, GridCellAttr attr)
</autodoc> 
23715           <param name=
"col" type=
"int" default=
""/> 
23716           <param name=
"attr" type=
"GridCellAttr" default=
""/> 
23719       <method name=
"SetColFormatBool" type=
"" overloaded=
"no"> 
23720         <autodoc>SetColFormatBool(int col)
</autodoc> 
23722           <param name=
"col" type=
"int" default=
""/> 
23725       <method name=
"SetColFormatNumber" type=
"" overloaded=
"no"> 
23726         <autodoc>SetColFormatNumber(int col)
</autodoc> 
23728           <param name=
"col" type=
"int" default=
""/> 
23731       <method name=
"SetColFormatFloat" type=
"" overloaded=
"no"> 
23732         <autodoc>SetColFormatFloat(int col, int width=-
1, int precision=-
1)
</autodoc> 
23734           <param name=
"col" type=
"int" default=
""/> 
23735           <param name=
"width" type=
"int" default=
"-1"/> 
23736           <param name=
"precision" type=
"int" default=
"-1"/> 
23739       <method name=
"SetColFormatCustom" type=
"" overloaded=
"no"> 
23740         <autodoc>SetColFormatCustom(int col, String typeName)
</autodoc> 
23742           <param name=
"col" type=
"int" default=
""/> 
23743           <param name=
"typeName" type=
"String" default=
""/> 
23746       <method name=
"EnableGridLines" type=
"" overloaded=
"no"> 
23747         <autodoc>EnableGridLines(bool enable=True)
</autodoc> 
23749           <param name=
"enable" type=
"bool" default=
"True"/> 
23752       <method name=
"GridLinesEnabled" type=
"bool" overloaded=
"no"> 
23753         <autodoc>GridLinesEnabled() -
> bool
</autodoc> 
23755       <method name=
"GetDefaultRowSize" type=
"int" overloaded=
"no"> 
23756         <autodoc>GetDefaultRowSize() -
> int
</autodoc> 
23758       <method name=
"GetRowSize" type=
"int" overloaded=
"no"> 
23759         <autodoc>GetRowSize(int row) -
> int
</autodoc> 
23761           <param name=
"row" type=
"int" default=
""/> 
23764       <method name=
"GetDefaultColSize" type=
"int" overloaded=
"no"> 
23765         <autodoc>GetDefaultColSize() -
> int
</autodoc> 
23767       <method name=
"GetColSize" type=
"int" overloaded=
"no"> 
23768         <autodoc>GetColSize(int col) -
> int
</autodoc> 
23770           <param name=
"col" type=
"int" default=
""/> 
23773       <method name=
"GetDefaultCellBackgroundColour" type=
"Colour" overloaded=
"no"> 
23774         <autodoc>GetDefaultCellBackgroundColour() -
> Colour
</autodoc> 
23776       <method name=
"GetCellBackgroundColour" type=
"Colour" overloaded=
"no"> 
23777         <autodoc>GetCellBackgroundColour(int row, int col) -
> Colour
</autodoc> 
23779           <param name=
"row" type=
"int" default=
""/> 
23780           <param name=
"col" type=
"int" default=
""/> 
23783       <method name=
"GetDefaultCellTextColour" type=
"Colour" overloaded=
"no"> 
23784         <autodoc>GetDefaultCellTextColour() -
> Colour
</autodoc> 
23786       <method name=
"GetCellTextColour" type=
"Colour" overloaded=
"no"> 
23787         <autodoc>GetCellTextColour(int row, int col) -
> Colour
</autodoc> 
23789           <param name=
"row" type=
"int" default=
""/> 
23790           <param name=
"col" type=
"int" default=
""/> 
23793       <method name=
"GetDefaultCellFont" type=
"Font" overloaded=
"no"> 
23794         <autodoc>GetDefaultCellFont() -
> Font
</autodoc> 
23796       <method name=
"GetCellFont" type=
"Font" overloaded=
"no"> 
23797         <autodoc>GetCellFont(int row, int col) -
> Font
</autodoc> 
23799           <param name=
"row" type=
"int" default=
""/> 
23800           <param name=
"col" type=
"int" default=
""/> 
23803       <method name=
"GetDefaultCellAlignment" type=
"" overloaded=
"no"> 
23804         <autodoc>GetDefaultCellAlignment() -
> (horiz, vert)
</autodoc> 
23806           <param name=
"OUTPUT" type=
"int" default=
""/> 
23807           <param name=
"OUTPUT" type=
"int" default=
""/> 
23810       <method name=
"GetCellAlignment" type=
"" overloaded=
"no"> 
23811         <autodoc>GetCellAlignment() -
> (horiz, vert)
</autodoc> 
23813           <param name=
"row" type=
"int" default=
""/> 
23814           <param name=
"col" type=
"int" default=
""/> 
23815           <param name=
"OUTPUT" type=
"int" default=
""/> 
23816           <param name=
"OUTPUT" type=
"int" default=
""/> 
23819       <method name=
"GetDefaultCellOverflow" type=
"bool" overloaded=
"no"> 
23820         <autodoc>GetDefaultCellOverflow() -
> bool
</autodoc> 
23822       <method name=
"GetCellOverflow" type=
"bool" overloaded=
"no"> 
23823         <autodoc>GetCellOverflow(int row, int col) -
> bool
</autodoc> 
23825           <param name=
"row" type=
"int" default=
""/> 
23826           <param name=
"col" type=
"int" default=
""/> 
23829       <method name=
"GetCellSize" type=
"" overloaded=
"no"> 
23830         <autodoc>GetCellSize(int row, int col) -
> (num_rows, num_cols)
</autodoc> 
23832           <param name=
"row" type=
"int" default=
""/> 
23833           <param name=
"col" type=
"int" default=
""/> 
23834           <param name=
"OUTPUT" type=
"int" default=
""/> 
23835           <param name=
"OUTPUT" type=
"int" default=
""/> 
23838       <method name=
"SetDefaultRowSize" type=
"" overloaded=
"no"> 
23839         <autodoc>SetDefaultRowSize(int height, bool resizeExistingRows=False)
</autodoc> 
23841           <param name=
"height" type=
"int" default=
""/> 
23842           <param name=
"resizeExistingRows" type=
"bool" default=
"False"/> 
23845       <method name=
"SetRowSize" type=
"" overloaded=
"no"> 
23846         <autodoc>SetRowSize(int row, int height)
</autodoc> 
23848           <param name=
"row" type=
"int" default=
""/> 
23849           <param name=
"height" type=
"int" default=
""/> 
23852       <method name=
"SetDefaultColSize" type=
"" overloaded=
"no"> 
23853         <autodoc>SetDefaultColSize(int width, bool resizeExistingCols=False)
</autodoc> 
23855           <param name=
"width" type=
"int" default=
""/> 
23856           <param name=
"resizeExistingCols" type=
"bool" default=
"False"/> 
23859       <method name=
"SetColSize" type=
"" overloaded=
"no"> 
23860         <autodoc>SetColSize(int col, int width)
</autodoc> 
23862           <param name=
"col" type=
"int" default=
""/> 
23863           <param name=
"width" type=
"int" default=
""/> 
23866       <method name=
"AutoSizeColumn" type=
"" overloaded=
"no"> 
23867         <autodoc>AutoSizeColumn(int col, bool setAsMin=True)
</autodoc> 
23869           <param name=
"col" type=
"int" default=
""/> 
23870           <param name=
"setAsMin" type=
"bool" default=
"True"/> 
23873       <method name=
"AutoSizeRow" type=
"" overloaded=
"no"> 
23874         <autodoc>AutoSizeRow(int row, bool setAsMin=True)
</autodoc> 
23876           <param name=
"row" type=
"int" default=
""/> 
23877           <param name=
"setAsMin" type=
"bool" default=
"True"/> 
23880       <method name=
"AutoSizeColumns" type=
"" overloaded=
"no"> 
23881         <autodoc>AutoSizeColumns(bool setAsMin=True)
</autodoc> 
23883           <param name=
"setAsMin" type=
"bool" default=
"True"/> 
23886       <method name=
"AutoSizeRows" type=
"" overloaded=
"no"> 
23887         <autodoc>AutoSizeRows(bool setAsMin=True)
</autodoc> 
23889           <param name=
"setAsMin" type=
"bool" default=
"True"/> 
23892       <method name=
"AutoSize" type=
"" overloaded=
"no"> 
23893         <autodoc>AutoSize()
</autodoc> 
23895       <method name=
"AutoSizeRowLabelSize" type=
"" overloaded=
"no"> 
23896         <autodoc>AutoSizeRowLabelSize(int row)
</autodoc> 
23898           <param name=
"row" type=
"int" default=
""/> 
23901       <method name=
"AutoSizeColLabelSize" type=
"" overloaded=
"no"> 
23902         <autodoc>AutoSizeColLabelSize(int col)
</autodoc> 
23904           <param name=
"col" type=
"int" default=
""/> 
23907       <method name=
"SetColMinimalWidth" type=
"" overloaded=
"no"> 
23908         <autodoc>SetColMinimalWidth(int col, int width)
</autodoc> 
23910           <param name=
"col" type=
"int" default=
""/> 
23911           <param name=
"width" type=
"int" default=
""/> 
23914       <method name=
"SetRowMinimalHeight" type=
"" overloaded=
"no"> 
23915         <autodoc>SetRowMinimalHeight(int row, int width)
</autodoc> 
23917           <param name=
"row" type=
"int" default=
""/> 
23918           <param name=
"width" type=
"int" default=
""/> 
23921       <method name=
"SetColMinimalAcceptableWidth" type=
"" overloaded=
"no"> 
23922         <autodoc>SetColMinimalAcceptableWidth(int width)
</autodoc> 
23924           <param name=
"width" type=
"int" default=
""/> 
23927       <method name=
"SetRowMinimalAcceptableHeight" type=
"" overloaded=
"no"> 
23928         <autodoc>SetRowMinimalAcceptableHeight(int width)
</autodoc> 
23930           <param name=
"width" type=
"int" default=
""/> 
23933       <method name=
"GetColMinimalAcceptableWidth" type=
"int" overloaded=
"no"> 
23934         <autodoc>GetColMinimalAcceptableWidth() -
> int
</autodoc> 
23936       <method name=
"GetRowMinimalAcceptableHeight" type=
"int" overloaded=
"no"> 
23937         <autodoc>GetRowMinimalAcceptableHeight() -
> int
</autodoc> 
23939       <method name=
"SetDefaultCellBackgroundColour" type=
"" overloaded=
"no"> 
23940         <autodoc>SetDefaultCellBackgroundColour(Colour ??)
</autodoc> 
23942           <param name=
"" type=
"Colour" default=
""/> 
23945       <method name=
"SetCellBackgroundColour" type=
"" overloaded=
"no"> 
23946         <autodoc>SetCellBackgroundColour(int row, int col, Colour ??)
</autodoc> 
23948           <param name=
"row" type=
"int" default=
""/> 
23949           <param name=
"col" type=
"int" default=
""/> 
23950           <param name=
"" type=
"Colour" default=
""/> 
23953       <method name=
"SetDefaultCellTextColour" type=
"" overloaded=
"no"> 
23954         <autodoc>SetDefaultCellTextColour(Colour ??)
</autodoc> 
23956           <param name=
"" type=
"Colour" default=
""/> 
23959       <method name=
"SetCellTextColour" type=
"" overloaded=
"no"> 
23960         <autodoc>SetCellTextColour(int row, int col, Colour ??)
</autodoc> 
23962           <param name=
"row" type=
"int" default=
""/> 
23963           <param name=
"col" type=
"int" default=
""/> 
23964           <param name=
"" type=
"Colour" default=
""/> 
23967       <method name=
"SetDefaultCellFont" type=
"" overloaded=
"no"> 
23968         <autodoc>SetDefaultCellFont(Font ??)
</autodoc> 
23970           <param name=
"" type=
"Font" default=
""/> 
23973       <method name=
"SetCellFont" type=
"" overloaded=
"no"> 
23974         <autodoc>SetCellFont(int row, int col, Font ??)
</autodoc> 
23976           <param name=
"row" type=
"int" default=
""/> 
23977           <param name=
"col" type=
"int" default=
""/> 
23978           <param name=
"" type=
"Font" default=
""/> 
23981       <method name=
"SetDefaultCellAlignment" type=
"" overloaded=
"no"> 
23982         <autodoc>SetDefaultCellAlignment(int horiz, int vert)
</autodoc> 
23984           <param name=
"horiz" type=
"int" default=
""/> 
23985           <param name=
"vert" type=
"int" default=
""/> 
23988       <method name=
"SetCellAlignment" type=
"" overloaded=
"no"> 
23989         <autodoc>SetCellAlignment(int row, int col, int horiz, int vert)
</autodoc> 
23991           <param name=
"row" type=
"int" default=
""/> 
23992           <param name=
"col" type=
"int" default=
""/> 
23993           <param name=
"horiz" type=
"int" default=
""/> 
23994           <param name=
"vert" type=
"int" default=
""/> 
23997       <method name=
"SetDefaultCellOverflow" type=
"" overloaded=
"no"> 
23998         <autodoc>SetDefaultCellOverflow(bool allow)
</autodoc> 
24000           <param name=
"allow" type=
"bool" default=
""/> 
24003       <method name=
"SetCellOverflow" type=
"" overloaded=
"no"> 
24004         <autodoc>SetCellOverflow(int row, int col, bool allow)
</autodoc> 
24006           <param name=
"row" type=
"int" default=
""/> 
24007           <param name=
"col" type=
"int" default=
""/> 
24008           <param name=
"allow" type=
"bool" default=
""/> 
24011       <method name=
"SetCellSize" type=
"" overloaded=
"no"> 
24012         <autodoc>SetCellSize(int row, int col, int num_rows, int num_cols)
</autodoc> 
24014           <param name=
"row" type=
"int" default=
""/> 
24015           <param name=
"col" type=
"int" default=
""/> 
24016           <param name=
"num_rows" type=
"int" default=
""/> 
24017           <param name=
"num_cols" type=
"int" default=
""/> 
24020       <method name=
"SetDefaultRenderer" type=
"" overloaded=
"no"> 
24021         <autodoc>SetDefaultRenderer(GridCellRenderer renderer)
</autodoc> 
24023           <param name=
"renderer" type=
"GridCellRenderer" default=
""/> 
24026       <method name=
"SetCellRenderer" type=
"" overloaded=
"no"> 
24027         <autodoc>SetCellRenderer(int row, int col, GridCellRenderer renderer)
</autodoc> 
24029           <param name=
"row" type=
"int" default=
""/> 
24030           <param name=
"col" type=
"int" default=
""/> 
24031           <param name=
"renderer" type=
"GridCellRenderer" default=
""/> 
24034       <method name=
"GetDefaultRenderer" type=
"GridCellRenderer" overloaded=
"no"> 
24035         <autodoc>GetDefaultRenderer() -
> GridCellRenderer
</autodoc> 
24037       <method name=
"GetCellRenderer" type=
"GridCellRenderer" overloaded=
"no"> 
24038         <autodoc>GetCellRenderer(int row, int col) -
> GridCellRenderer
</autodoc> 
24040           <param name=
"row" type=
"int" default=
""/> 
24041           <param name=
"col" type=
"int" default=
""/> 
24044       <method name=
"SetDefaultEditor" type=
"" overloaded=
"no"> 
24045         <autodoc>SetDefaultEditor(GridCellEditor editor)
</autodoc> 
24047           <param name=
"editor" type=
"GridCellEditor" default=
""/> 
24050       <method name=
"SetCellEditor" type=
"" overloaded=
"no"> 
24051         <autodoc>SetCellEditor(int row, int col, GridCellEditor editor)
</autodoc> 
24053           <param name=
"row" type=
"int" default=
""/> 
24054           <param name=
"col" type=
"int" default=
""/> 
24055           <param name=
"editor" type=
"GridCellEditor" default=
""/> 
24058       <method name=
"GetDefaultEditor" type=
"GridCellEditor" overloaded=
"no"> 
24059         <autodoc>GetDefaultEditor() -
> GridCellEditor
</autodoc> 
24061       <method name=
"GetCellEditor" type=
"GridCellEditor" overloaded=
"no"> 
24062         <autodoc>GetCellEditor(int row, int col) -
> GridCellEditor
</autodoc> 
24064           <param name=
"row" type=
"int" default=
""/> 
24065           <param name=
"col" type=
"int" default=
""/> 
24068       <method name=
"GetCellValue" type=
"String" overloaded=
"no"> 
24069         <autodoc>GetCellValue(int row, int col) -
> String
</autodoc> 
24071           <param name=
"row" type=
"int" default=
""/> 
24072           <param name=
"col" type=
"int" default=
""/> 
24075       <method name=
"SetCellValue" type=
"" overloaded=
"no"> 
24076         <autodoc>SetCellValue(int row, int col, String s)
</autodoc> 
24078           <param name=
"row" type=
"int" default=
""/> 
24079           <param name=
"col" type=
"int" default=
""/> 
24080           <param name=
"s" type=
"String" default=
""/> 
24083       <method name=
"IsReadOnly" type=
"bool" overloaded=
"no"> 
24084         <autodoc>IsReadOnly(int row, int col) -
> bool
</autodoc> 
24086           <param name=
"row" type=
"int" default=
""/> 
24087           <param name=
"col" type=
"int" default=
""/> 
24090       <method name=
"SetReadOnly" type=
"" overloaded=
"no"> 
24091         <autodoc>SetReadOnly(int row, int col, bool isReadOnly=True)
</autodoc> 
24093           <param name=
"row" type=
"int" default=
""/> 
24094           <param name=
"col" type=
"int" default=
""/> 
24095           <param name=
"isReadOnly" type=
"bool" default=
"True"/> 
24098       <method name=
"SelectRow" type=
"" overloaded=
"no"> 
24099         <autodoc>SelectRow(int row, bool addToSelected=False)
</autodoc> 
24101           <param name=
"row" type=
"int" default=
""/> 
24102           <param name=
"addToSelected" type=
"bool" default=
"False"/> 
24105       <method name=
"SelectCol" type=
"" overloaded=
"no"> 
24106         <autodoc>SelectCol(int col, bool addToSelected=False)
</autodoc> 
24108           <param name=
"col" type=
"int" default=
""/> 
24109           <param name=
"addToSelected" type=
"bool" default=
"False"/> 
24112       <method name=
"SelectBlock" type=
"" overloaded=
"no"> 
24113         <autodoc>SelectBlock(int topRow, int leftCol, int bottomRow, int rightCol, 
 
24114     bool addToSelected=False)
</autodoc> 
24116           <param name=
"topRow" type=
"int" default=
""/> 
24117           <param name=
"leftCol" type=
"int" default=
""/> 
24118           <param name=
"bottomRow" type=
"int" default=
""/> 
24119           <param name=
"rightCol" type=
"int" default=
""/> 
24120           <param name=
"addToSelected" type=
"bool" default=
"False"/> 
24123       <method name=
"SelectAll" type=
"" overloaded=
"no"> 
24124         <autodoc>SelectAll()
</autodoc> 
24126       <method name=
"IsSelection" type=
"bool" overloaded=
"no"> 
24127         <autodoc>IsSelection() -
> bool
</autodoc> 
24129       <method name=
"ClearSelection" type=
"" overloaded=
"no"> 
24130         <autodoc>ClearSelection()
</autodoc> 
24132       <method name=
"IsInSelection" type=
"bool" overloaded=
"no"> 
24133         <autodoc>IsInSelection(int row, int col) -
> bool
</autodoc> 
24135           <param name=
"row" type=
"int" default=
""/> 
24136           <param name=
"col" type=
"int" default=
""/> 
24139       <method name=
"GetSelectedCells" type=
"wxGridCellCoordsArray" overloaded=
"no"> 
24140         <autodoc>GetSelectedCells() -
> wxGridCellCoordsArray
</autodoc> 
24142       <method name=
"GetSelectionBlockTopLeft" type=
"wxGridCellCoordsArray" overloaded=
"no"> 
24143         <autodoc>GetSelectionBlockTopLeft() -
> wxGridCellCoordsArray
</autodoc> 
24145       <method name=
"GetSelectionBlockBottomRight" type=
"wxGridCellCoordsArray" overloaded=
"no"> 
24146         <autodoc>GetSelectionBlockBottomRight() -
> wxGridCellCoordsArray
</autodoc> 
24148       <method name=
"GetSelectedRows" type=
"wxArrayInt" overloaded=
"no"> 
24149         <autodoc>GetSelectedRows() -
> wxArrayInt
</autodoc> 
24151       <method name=
"GetSelectedCols" type=
"wxArrayInt" overloaded=
"no"> 
24152         <autodoc>GetSelectedCols() -
> wxArrayInt
</autodoc> 
24154       <method name=
"DeselectRow" type=
"" overloaded=
"no"> 
24155         <autodoc>DeselectRow(int row)
</autodoc> 
24157           <param name=
"row" type=
"int" default=
""/> 
24160       <method name=
"DeselectCol" type=
"" overloaded=
"no"> 
24161         <autodoc>DeselectCol(int col)
</autodoc> 
24163           <param name=
"col" type=
"int" default=
""/> 
24166       <method name=
"DeselectCell" type=
"" overloaded=
"no"> 
24167         <autodoc>DeselectCell(int row, int col)
</autodoc> 
24169           <param name=
"row" type=
"int" default=
""/> 
24170           <param name=
"col" type=
"int" default=
""/> 
24173       <method name=
"BlockToDeviceRect" type=
"Rect" overloaded=
"no"> 
24174         <autodoc>BlockToDeviceRect(GridCellCoords topLeft, GridCellCoords bottomRight) -
> Rect
</autodoc> 
24176           <param name=
"topLeft" type=
"GridCellCoords" default=
""/> 
24177           <param name=
"bottomRight" type=
"GridCellCoords" default=
""/> 
24180       <method name=
"GetSelectionBackground" type=
"Colour" overloaded=
"no"> 
24181         <autodoc>GetSelectionBackground() -
> Colour
</autodoc> 
24183       <method name=
"GetSelectionForeground" type=
"Colour" overloaded=
"no"> 
24184         <autodoc>GetSelectionForeground() -
> Colour
</autodoc> 
24186       <method name=
"SetSelectionBackground" type=
"" overloaded=
"no"> 
24187         <autodoc>SetSelectionBackground(Colour c)
</autodoc> 
24189           <param name=
"c" type=
"Colour" default=
""/> 
24192       <method name=
"SetSelectionForeground" type=
"" overloaded=
"no"> 
24193         <autodoc>SetSelectionForeground(Colour c)
</autodoc> 
24195           <param name=
"c" type=
"Colour" default=
""/> 
24198       <method name=
"RegisterDataType" type=
"" overloaded=
"no"> 
24199         <autodoc>RegisterDataType(String typeName, GridCellRenderer renderer, GridCellEditor editor)
</autodoc> 
24201           <param name=
"typeName" type=
"String" default=
""/> 
24202           <param name=
"renderer" type=
"GridCellRenderer" default=
""/> 
24203           <param name=
"editor" type=
"GridCellEditor" default=
""/> 
24206       <method name=
"GetDefaultEditorForCell" type=
"GridCellEditor" overloaded=
"no"> 
24207         <autodoc>GetDefaultEditorForCell(int row, int col) -
> GridCellEditor
</autodoc> 
24209           <param name=
"row" type=
"int" default=
""/> 
24210           <param name=
"col" type=
"int" default=
""/> 
24213       <method name=
"GetDefaultRendererForCell" type=
"GridCellRenderer" overloaded=
"no"> 
24214         <autodoc>GetDefaultRendererForCell(int row, int col) -
> GridCellRenderer
</autodoc> 
24216           <param name=
"row" type=
"int" default=
""/> 
24217           <param name=
"col" type=
"int" default=
""/> 
24220       <method name=
"GetDefaultEditorForType" type=
"GridCellEditor" overloaded=
"no"> 
24221         <autodoc>GetDefaultEditorForType(String typeName) -
> GridCellEditor
</autodoc> 
24223           <param name=
"typeName" type=
"String" default=
""/> 
24226       <method name=
"GetDefaultRendererForType" type=
"GridCellRenderer" overloaded=
"no"> 
24227         <autodoc>GetDefaultRendererForType(String typeName) -
> GridCellRenderer
</autodoc> 
24229           <param name=
"typeName" type=
"String" default=
""/> 
24232       <method name=
"SetMargins" type=
"" overloaded=
"no"> 
24233         <autodoc>SetMargins(int extraWidth, int extraHeight)
</autodoc> 
24235           <param name=
"extraWidth" type=
"int" default=
""/> 
24236           <param name=
"extraHeight" type=
"int" default=
""/> 
24239       <method name=
"GetGridWindow" type=
"Window" overloaded=
"no"> 
24240         <autodoc>GetGridWindow() -
> Window
</autodoc> 
24242       <method name=
"GetGridRowLabelWindow" type=
"Window" overloaded=
"no"> 
24243         <autodoc>GetGridRowLabelWindow() -
> Window
</autodoc> 
24245       <method name=
"GetGridColLabelWindow" type=
"Window" overloaded=
"no"> 
24246         <autodoc>GetGridColLabelWindow() -
> Window
</autodoc> 
24248       <method name=
"GetGridCornerLabelWindow" type=
"Window" overloaded=
"no"> 
24249         <autodoc>GetGridCornerLabelWindow() -
> Window
</autodoc> 
24252     <class name=
"GridEvent" oldname=
"wxGridEvent" module=
"grid"> 
24253       <baseclass name=
"NotifyEvent"/> 
24254       <constructor name=
"GridEvent" overloaded=
"no"> 
24255         <autodoc>__init__(int id, wxEventType type, Grid obj, int row=-
1, int col=-
1, 
 
24256     int x=-
1, int y=-
1, bool sel=True, bool control=False, 
 
24257     bool shift=False, bool alt=False, 
 
24258     bool meta=False) -
> GridEvent
</autodoc> 
24260           <param name=
"id" type=
"int" default=
""/> 
24261           <param name=
"type" type=
"wxEventType" default=
""/> 
24262           <param name=
"obj" type=
"Grid" default=
""/> 
24263           <param name=
"row" type=
"int" default=
"-1"/> 
24264           <param name=
"col" type=
"int" default=
"-1"/> 
24265           <param name=
"x" type=
"int" default=
"-1"/> 
24266           <param name=
"y" type=
"int" default=
"-1"/> 
24267           <param name=
"sel" type=
"bool" default=
"True"/> 
24268           <param name=
"control" type=
"bool" default=
"False"/> 
24269           <param name=
"shift" type=
"bool" default=
"False"/> 
24270           <param name=
"alt" type=
"bool" default=
"False"/> 
24271           <param name=
"meta" type=
"bool" default=
"False"/> 
24274       <method name=
"GetRow" type=
"int" overloaded=
"no"> 
24275         <autodoc>GetRow() -
> int
</autodoc> 
24277       <method name=
"GetCol" type=
"int" overloaded=
"no"> 
24278         <autodoc>GetCol() -
> int
</autodoc> 
24280       <method name=
"GetPosition" type=
"Point" overloaded=
"no"> 
24281         <autodoc>GetPosition() -
> Point
</autodoc> 
24283       <method name=
"Selecting" type=
"bool" overloaded=
"no"> 
24284         <autodoc>Selecting() -
> bool
</autodoc> 
24286       <method name=
"ControlDown" type=
"bool" overloaded=
"no"> 
24287         <autodoc>ControlDown() -
> bool
</autodoc> 
24289       <method name=
"MetaDown" type=
"bool" overloaded=
"no"> 
24290         <autodoc>MetaDown() -
> bool
</autodoc> 
24292       <method name=
"ShiftDown" type=
"bool" overloaded=
"no"> 
24293         <autodoc>ShiftDown() -
> bool
</autodoc> 
24295       <method name=
"AltDown" type=
"bool" overloaded=
"no"> 
24296         <autodoc>AltDown() -
> bool
</autodoc> 
24299     <class name=
"GridSizeEvent" oldname=
"wxGridSizeEvent" module=
"grid"> 
24300       <baseclass name=
"NotifyEvent"/> 
24301       <constructor name=
"GridSizeEvent" overloaded=
"no"> 
24302         <autodoc>__init__(int id, wxEventType type, Grid obj, int rowOrCol=-
1, 
 
24303     int x=-
1, int y=-
1, bool control=False, bool shift=False, 
 
24304     bool alt=False, bool meta=False) -
> GridSizeEvent
</autodoc> 
24306           <param name=
"id" type=
"int" default=
""/> 
24307           <param name=
"type" type=
"wxEventType" default=
""/> 
24308           <param name=
"obj" type=
"Grid" default=
""/> 
24309           <param name=
"rowOrCol" type=
"int" default=
"-1"/> 
24310           <param name=
"x" type=
"int" default=
"-1"/> 
24311           <param name=
"y" type=
"int" default=
"-1"/> 
24312           <param name=
"control" type=
"bool" default=
"False"/> 
24313           <param name=
"shift" type=
"bool" default=
"False"/> 
24314           <param name=
"alt" type=
"bool" default=
"False"/> 
24315           <param name=
"meta" type=
"bool" default=
"False"/> 
24318       <method name=
"GetRowOrCol" type=
"int" overloaded=
"no"> 
24319         <autodoc>GetRowOrCol() -
> int
</autodoc> 
24321       <method name=
"GetPosition" type=
"Point" overloaded=
"no"> 
24322         <autodoc>GetPosition() -
> Point
</autodoc> 
24324       <method name=
"ControlDown" type=
"bool" overloaded=
"no"> 
24325         <autodoc>ControlDown() -
> bool
</autodoc> 
24327       <method name=
"MetaDown" type=
"bool" overloaded=
"no"> 
24328         <autodoc>MetaDown() -
> bool
</autodoc> 
24330       <method name=
"ShiftDown" type=
"bool" overloaded=
"no"> 
24331         <autodoc>ShiftDown() -
> bool
</autodoc> 
24333       <method name=
"AltDown" type=
"bool" overloaded=
"no"> 
24334         <autodoc>AltDown() -
> bool
</autodoc> 
24337     <class name=
"GridRangeSelectEvent" oldname=
"wxGridRangeSelectEvent" module=
"grid"> 
24338       <baseclass name=
"NotifyEvent"/> 
24339       <constructor name=
"GridRangeSelectEvent" overloaded=
"no"> 
24340         <autodoc>__init__(int id, wxEventType type, Grid obj, GridCellCoords topLeft, 
 
24341     GridCellCoords bottomRight, bool sel=True, 
 
24342     bool control=False, bool shift=False, 
 
24343     bool alt=False, bool meta=False) -
> GridRangeSelectEvent
</autodoc> 
24345           <param name=
"id" type=
"int" default=
""/> 
24346           <param name=
"type" type=
"wxEventType" default=
""/> 
24347           <param name=
"obj" type=
"Grid" default=
""/> 
24348           <param name=
"topLeft" type=
"GridCellCoords" default=
""/> 
24349           <param name=
"bottomRight" type=
"GridCellCoords" default=
""/> 
24350           <param name=
"sel" type=
"bool" default=
"True"/> 
24351           <param name=
"control" type=
"bool" default=
"False"/> 
24352           <param name=
"shift" type=
"bool" default=
"False"/> 
24353           <param name=
"alt" type=
"bool" default=
"False"/> 
24354           <param name=
"meta" type=
"bool" default=
"False"/> 
24357       <method name=
"GetTopLeftCoords" type=
"GridCellCoords" overloaded=
"no"> 
24358         <autodoc>GetTopLeftCoords() -
> GridCellCoords
</autodoc> 
24360       <method name=
"GetBottomRightCoords" type=
"GridCellCoords" overloaded=
"no"> 
24361         <autodoc>GetBottomRightCoords() -
> GridCellCoords
</autodoc> 
24363       <method name=
"GetTopRow" type=
"int" overloaded=
"no"> 
24364         <autodoc>GetTopRow() -
> int
</autodoc> 
24366       <method name=
"GetBottomRow" type=
"int" overloaded=
"no"> 
24367         <autodoc>GetBottomRow() -
> int
</autodoc> 
24369       <method name=
"GetLeftCol" type=
"int" overloaded=
"no"> 
24370         <autodoc>GetLeftCol() -
> int
</autodoc> 
24372       <method name=
"GetRightCol" type=
"int" overloaded=
"no"> 
24373         <autodoc>GetRightCol() -
> int
</autodoc> 
24375       <method name=
"Selecting" type=
"bool" overloaded=
"no"> 
24376         <autodoc>Selecting() -
> bool
</autodoc> 
24378       <method name=
"ControlDown" type=
"bool" overloaded=
"no"> 
24379         <autodoc>ControlDown() -
> bool
</autodoc> 
24381       <method name=
"MetaDown" type=
"bool" overloaded=
"no"> 
24382         <autodoc>MetaDown() -
> bool
</autodoc> 
24384       <method name=
"ShiftDown" type=
"bool" overloaded=
"no"> 
24385         <autodoc>ShiftDown() -
> bool
</autodoc> 
24387       <method name=
"AltDown" type=
"bool" overloaded=
"no"> 
24388         <autodoc>AltDown() -
> bool
</autodoc> 
24391     <class name=
"GridEditorCreatedEvent" oldname=
"wxGridEditorCreatedEvent" module=
"grid"> 
24392       <baseclass name=
"CommandEvent"/> 
24393       <constructor name=
"GridEditorCreatedEvent" overloaded=
"no"> 
24394         <autodoc>__init__(int id, wxEventType type, Object obj, int row, int col, 
 
24395     Control ctrl) -
> GridEditorCreatedEvent
</autodoc> 
24397           <param name=
"id" type=
"int" default=
""/> 
24398           <param name=
"type" type=
"wxEventType" default=
""/> 
24399           <param name=
"obj" type=
"Object" default=
""/> 
24400           <param name=
"row" type=
"int" default=
""/> 
24401           <param name=
"col" type=
"int" default=
""/> 
24402           <param name=
"ctrl" type=
"Control" default=
""/> 
24405       <method name=
"GetRow" type=
"int" overloaded=
"no"> 
24406         <autodoc>GetRow() -
> int
</autodoc> 
24408       <method name=
"GetCol" type=
"int" overloaded=
"no"> 
24409         <autodoc>GetCol() -
> int
</autodoc> 
24411       <method name=
"GetControl" type=
"Control" overloaded=
"no"> 
24412         <autodoc>GetControl() -
> Control
</autodoc> 
24414       <method name=
"SetRow" type=
"" overloaded=
"no"> 
24415         <autodoc>SetRow(int row)
</autodoc> 
24417           <param name=
"row" type=
"int" default=
""/> 
24420       <method name=
"SetCol" type=
"" overloaded=
"no"> 
24421         <autodoc>SetCol(int col)
</autodoc> 
24423           <param name=
"col" type=
"int" default=
""/> 
24426       <method name=
"SetControl" type=
"" overloaded=
"no"> 
24427         <autodoc>SetControl(Control ctrl)
</autodoc> 
24429           <param name=
"ctrl" type=
"Control" default=
""/> 
24434 EVT_GRID_CELL_LEFT_CLICK = wx.PyEventBinder( wxEVT_GRID_CELL_LEFT_CLICK )
 
24435 EVT_GRID_CELL_RIGHT_CLICK = wx.PyEventBinder( wxEVT_GRID_CELL_RIGHT_CLICK )
 
24436 EVT_GRID_CELL_LEFT_DCLICK = wx.PyEventBinder( wxEVT_GRID_CELL_LEFT_DCLICK )
 
24437 EVT_GRID_CELL_RIGHT_DCLICK = wx.PyEventBinder( wxEVT_GRID_CELL_RIGHT_DCLICK )
 
24438 EVT_GRID_LABEL_LEFT_CLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_LEFT_CLICK )
 
24439 EVT_GRID_LABEL_RIGHT_CLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_RIGHT_CLICK )
 
24440 EVT_GRID_LABEL_LEFT_DCLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_LEFT_DCLICK )
 
24441 EVT_GRID_LABEL_RIGHT_DCLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_RIGHT_DCLICK )
 
24442 EVT_GRID_ROW_SIZE = wx.PyEventBinder( wxEVT_GRID_ROW_SIZE )
 
24443 EVT_GRID_COL_SIZE = wx.PyEventBinder( wxEVT_GRID_COL_SIZE )
 
24444 EVT_GRID_RANGE_SELECT = wx.PyEventBinder( wxEVT_GRID_RANGE_SELECT )
 
24445 EVT_GRID_CELL_CHANGE = wx.PyEventBinder( wxEVT_GRID_CELL_CHANGE )
 
24446 EVT_GRID_SELECT_CELL = wx.PyEventBinder( wxEVT_GRID_SELECT_CELL )
 
24447 EVT_GRID_EDITOR_SHOWN = wx.PyEventBinder( wxEVT_GRID_EDITOR_SHOWN )
 
24448 EVT_GRID_EDITOR_HIDDEN = wx.PyEventBinder( wxEVT_GRID_EDITOR_HIDDEN )
 
24449 EVT_GRID_EDITOR_CREATED = wx.PyEventBinder( wxEVT_GRID_EDITOR_CREATED )
 
24452   <module name=
"html"> 
24453     <import name=
"windows"/> 
24454     <pythoncode> wx = core 
</pythoncode> 
24456 #---------------------------------------------------------------------------
 
24458     <class name=
"HtmlLinkInfo" oldname=
"wxHtmlLinkInfo" module=
"html"> 
24459       <baseclass name=
"Object"/> 
24460       <constructor name=
"HtmlLinkInfo" overloaded=
"no"> 
24461         <autodoc>__init__(String href, String target=EmptyString) -
> HtmlLinkInfo
</autodoc> 
24463           <param name=
"href" type=
"String" default=
""/> 
24464           <param name=
"target" type=
"String" default=
"wxPyEmptyString"/> 
24467       <method name=
"GetHref" type=
"String" overloaded=
"no"> 
24468         <autodoc>GetHref() -
> String
</autodoc> 
24470       <method name=
"GetTarget" type=
"String" overloaded=
"no"> 
24471         <autodoc>GetTarget() -
> String
</autodoc> 
24473       <method name=
"GetEvent" type=
"MouseEvent" overloaded=
"no"> 
24474         <autodoc>GetEvent() -
> MouseEvent
</autodoc> 
24476       <method name=
"GetHtmlCell" type=
"wxHtmlCell" overloaded=
"no"> 
24477         <autodoc>GetHtmlCell() -
> HtmlCell
</autodoc> 
24479       <method name=
"SetEvent" type=
"" overloaded=
"no"> 
24480         <autodoc>SetEvent(MouseEvent e)
</autodoc> 
24482           <param name=
"e" type=
"MouseEvent" default=
""/> 
24485       <method name=
"SetHtmlCell" type=
"" overloaded=
"no"> 
24486         <autodoc>SetHtmlCell(HtmlCell e)
</autodoc> 
24488           <param name=
"e" type=
"wxHtmlCell" default=
""/> 
24492     <class name=
"HtmlTag" oldname=
"wxHtmlTag" module=
"html"> 
24493       <baseclass name=
"Object"/> 
24494       <method name=
"GetName" type=
"String" overloaded=
"no"> 
24495         <autodoc>GetName() -
> String
</autodoc> 
24497       <method name=
"HasParam" type=
"bool" overloaded=
"no"> 
24498         <autodoc>HasParam(String par) -
> bool
</autodoc> 
24500           <param name=
"par" type=
"String" default=
""/> 
24503       <method name=
"GetParam" type=
"String" overloaded=
"no"> 
24504         <autodoc>GetParam(String par, int with_commas=False) -
> String
</autodoc> 
24506           <param name=
"par" type=
"String" default=
""/> 
24507           <param name=
"with_commas" type=
"int" default=
"False"/> 
24510       <method name=
"GetAllParams" type=
"String" overloaded=
"no"> 
24511         <autodoc>GetAllParams() -
> String
</autodoc> 
24513       <method name=
"HasEnding" type=
"bool" overloaded=
"no"> 
24514         <autodoc>HasEnding() -
> bool
</autodoc> 
24516       <method name=
"GetBeginPos" type=
"int" overloaded=
"no"> 
24517         <autodoc>GetBeginPos() -
> int
</autodoc> 
24519       <method name=
"GetEndPos1" type=
"int" overloaded=
"no"> 
24520         <autodoc>GetEndPos1() -
> int
</autodoc> 
24522       <method name=
"GetEndPos2" type=
"int" overloaded=
"no"> 
24523         <autodoc>GetEndPos2() -
> int
</autodoc> 
24526     <class name=
"HtmlParser" oldname=
"wxHtmlParser" module=
"html"> 
24527       <baseclass name=
"Object"/> 
24528       <method name=
"SetFS" type=
"" overloaded=
"no"> 
24529         <autodoc>SetFS(FileSystem fs)
</autodoc> 
24531           <param name=
"fs" type=
"FileSystem" default=
""/> 
24534       <method name=
"GetFS" type=
"FileSystem" overloaded=
"no"> 
24535         <autodoc>GetFS() -
> FileSystem
</autodoc> 
24537       <method name=
"Parse" type=
"Object" overloaded=
"no"> 
24538         <autodoc>Parse(String source) -
> Object
</autodoc> 
24540           <param name=
"source" type=
"String" default=
""/> 
24543       <method name=
"InitParser" type=
"" overloaded=
"no"> 
24544         <autodoc>InitParser(String source)
</autodoc> 
24546           <param name=
"source" type=
"String" default=
""/> 
24549       <method name=
"DoneParser" type=
"" overloaded=
"no"> 
24550         <autodoc>DoneParser()
</autodoc> 
24552       <method name=
"DoParsing" type=
"" overloaded=
"no"> 
24553         <autodoc>DoParsing(int begin_pos, int end_pos)
</autodoc> 
24555           <param name=
"begin_pos" type=
"int" default=
""/> 
24556           <param name=
"end_pos" type=
"int" default=
""/> 
24559       <method name=
"StopParsing" type=
"" overloaded=
"no"> 
24560         <autodoc>StopParsing()
</autodoc> 
24562       <method name=
"AddTagHandler" type=
"" overloaded=
"no"> 
24563         <autodoc>AddTagHandler(HtmlTagHandler handler)
</autodoc> 
24565           <param name=
"handler" type=
"wxHtmlTagHandler" default=
""/> 
24568       <method name=
"GetSource" type=
"String" overloaded=
"no"> 
24569         <autodoc>GetSource() -
> String
</autodoc> 
24571       <method name=
"PushTagHandler" type=
"" overloaded=
"no"> 
24572         <autodoc>PushTagHandler(HtmlTagHandler handler, String tags)
</autodoc> 
24574           <param name=
"handler" type=
"wxHtmlTagHandler" default=
""/> 
24575           <param name=
"tags" type=
"String" default=
""/> 
24578       <method name=
"PopTagHandler" type=
"" overloaded=
"no"> 
24579         <autodoc>PopTagHandler()
</autodoc> 
24582     <class name=
"HtmlWinParser" oldname=
"wxHtmlWinParser" module=
"html"> 
24583       <baseclass name=
"HtmlParser"/> 
24584       <constructor name=
"HtmlWinParser" overloaded=
"no"> 
24585         <autodoc>__init__(HtmlWindow wnd=None) -
> HtmlWinParser
</autodoc> 
24587           <param name=
"wnd" type=
"wxPyHtmlWindow" default=
"NULL"/> 
24590       <method name=
"SetDC" type=
"" overloaded=
"no"> 
24591         <autodoc>SetDC(DC dc)
</autodoc> 
24593           <param name=
"dc" type=
"DC" default=
""/> 
24596       <method name=
"GetDC" type=
"DC" overloaded=
"no"> 
24597         <autodoc>GetDC() -
> DC
</autodoc> 
24599       <method name=
"GetCharHeight" type=
"int" overloaded=
"no"> 
24600         <autodoc>GetCharHeight() -
> int
</autodoc> 
24602       <method name=
"GetCharWidth" type=
"int" overloaded=
"no"> 
24603         <autodoc>GetCharWidth() -
> int
</autodoc> 
24605       <method name=
"GetWindow" type=
"wxPyHtmlWindow" overloaded=
"no"> 
24606         <autodoc>GetWindow() -
> HtmlWindow
</autodoc> 
24608       <method name=
"SetFonts" type=
"" overloaded=
"no"> 
24609         <autodoc>SetFonts(String normal_face, String fixed_face, PyObject sizes=None)
</autodoc> 
24611           <param name=
"normal_face" type=
"String" default=
""/> 
24612           <param name=
"fixed_face" type=
"String" default=
""/> 
24613           <param name=
"sizes" type=
"PyObject" default=
"NULL"/> 
24616       <method name=
"GetContainer" type=
"wxHtmlContainerCell" overloaded=
"no"> 
24617         <autodoc>GetContainer() -
> HtmlContainerCell
</autodoc> 
24619       <method name=
"OpenContainer" type=
"wxHtmlContainerCell" overloaded=
"no"> 
24620         <autodoc>OpenContainer() -
> HtmlContainerCell
</autodoc> 
24622       <method name=
"SetContainer" type=
"wxHtmlContainerCell" overloaded=
"no"> 
24623         <autodoc>SetContainer(HtmlContainerCell c) -
> HtmlContainerCell
</autodoc> 
24625           <param name=
"c" type=
"wxHtmlContainerCell" default=
""/> 
24628       <method name=
"CloseContainer" type=
"wxHtmlContainerCell" overloaded=
"no"> 
24629         <autodoc>CloseContainer() -
> HtmlContainerCell
</autodoc> 
24631       <method name=
"GetFontSize" type=
"int" overloaded=
"no"> 
24632         <autodoc>GetFontSize() -
> int
</autodoc> 
24634       <method name=
"SetFontSize" type=
"" overloaded=
"no"> 
24635         <autodoc>SetFontSize(int s)
</autodoc> 
24637           <param name=
"s" type=
"int" default=
""/> 
24640       <method name=
"GetFontBold" type=
"int" overloaded=
"no"> 
24641         <autodoc>GetFontBold() -
> int
</autodoc> 
24643       <method name=
"SetFontBold" type=
"" overloaded=
"no"> 
24644         <autodoc>SetFontBold(int x)
</autodoc> 
24646           <param name=
"x" type=
"int" default=
""/> 
24649       <method name=
"GetFontItalic" type=
"int" overloaded=
"no"> 
24650         <autodoc>GetFontItalic() -
> int
</autodoc> 
24652       <method name=
"SetFontItalic" type=
"" overloaded=
"no"> 
24653         <autodoc>SetFontItalic(int x)
</autodoc> 
24655           <param name=
"x" type=
"int" default=
""/> 
24658       <method name=
"GetFontUnderlined" type=
"int" overloaded=
"no"> 
24659         <autodoc>GetFontUnderlined() -
> int
</autodoc> 
24661       <method name=
"SetFontUnderlined" type=
"" overloaded=
"no"> 
24662         <autodoc>SetFontUnderlined(int x)
</autodoc> 
24664           <param name=
"x" type=
"int" default=
""/> 
24667       <method name=
"GetFontFixed" type=
"int" overloaded=
"no"> 
24668         <autodoc>GetFontFixed() -
> int
</autodoc> 
24670       <method name=
"SetFontFixed" type=
"" overloaded=
"no"> 
24671         <autodoc>SetFontFixed(int x)
</autodoc> 
24673           <param name=
"x" type=
"int" default=
""/> 
24676       <method name=
"GetAlign" type=
"int" overloaded=
"no"> 
24677         <autodoc>GetAlign() -
> int
</autodoc> 
24679       <method name=
"SetAlign" type=
"" overloaded=
"no"> 
24680         <autodoc>SetAlign(int a)
</autodoc> 
24682           <param name=
"a" type=
"int" default=
""/> 
24685       <method name=
"GetLinkColor" type=
"Colour" overloaded=
"no"> 
24686         <autodoc>GetLinkColor() -
> Colour
</autodoc> 
24688       <method name=
"SetLinkColor" type=
"" overloaded=
"no"> 
24689         <autodoc>SetLinkColor(Colour clr)
</autodoc> 
24691           <param name=
"clr" type=
"Colour" default=
""/> 
24694       <method name=
"GetActualColor" type=
"Colour" overloaded=
"no"> 
24695         <autodoc>GetActualColor() -
> Colour
</autodoc> 
24697       <method name=
"SetActualColor" type=
"" overloaded=
"no"> 
24698         <autodoc>SetActualColor(Colour clr)
</autodoc> 
24700           <param name=
"clr" type=
"Colour" default=
""/> 
24703       <method name=
"SetLink" type=
"" overloaded=
"no"> 
24704         <autodoc>SetLink(String link)
</autodoc> 
24706           <param name=
"link" type=
"String" default=
""/> 
24709       <method name=
"CreateCurrentFont" type=
"Font" overloaded=
"no"> 
24710         <autodoc>CreateCurrentFont() -
> Font
</autodoc> 
24712       <method name=
"GetLink" type=
"HtmlLinkInfo" overloaded=
"no"> 
24713         <autodoc>GetLink() -
> HtmlLinkInfo
</autodoc> 
24716     <class name=
"HtmlTagHandler" oldname=
"wxPyHtmlTagHandler" module=
"html"> 
24717       <baseclass name=
"Object"/> 
24718       <constructor name=
"wxPyHtmlTagHandler" overloaded=
"no"> 
24719         <autodoc>__init__() -
> HtmlTagHandler
</autodoc> 
24721       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
24722         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
24724           <param name=
"self" type=
"PyObject" default=
""/> 
24725           <param name=
"_class" type=
"PyObject" default=
""/> 
24728       <method name=
"SetParser" type=
"" overloaded=
"no"> 
24729         <autodoc>SetParser(HtmlParser parser)
</autodoc> 
24731           <param name=
"parser" type=
"HtmlParser" default=
""/> 
24734       <method name=
"GetParser" type=
"HtmlParser" overloaded=
"no"> 
24735         <autodoc>GetParser() -
> HtmlParser
</autodoc> 
24737       <method name=
"ParseInner" type=
"" overloaded=
"no"> 
24738         <autodoc>ParseInner(HtmlTag tag)
</autodoc> 
24740           <param name=
"tag" type=
"HtmlTag" default=
""/> 
24744     <class name=
"HtmlWinTagHandler" oldname=
"wxPyHtmlWinTagHandler" module=
"html"> 
24745       <baseclass name=
"HtmlTagHandler"/> 
24746       <constructor name=
"wxPyHtmlWinTagHandler" overloaded=
"no"> 
24747         <autodoc>__init__() -
> HtmlWinTagHandler
</autodoc> 
24749       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
24750         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
24752           <param name=
"self" type=
"PyObject" default=
""/> 
24753           <param name=
"_class" type=
"PyObject" default=
""/> 
24756       <method name=
"SetParser" type=
"" overloaded=
"no"> 
24757         <autodoc>SetParser(HtmlParser parser)
</autodoc> 
24759           <param name=
"parser" type=
"HtmlParser" default=
""/> 
24762       <method name=
"GetParser" type=
"HtmlWinParser" overloaded=
"no"> 
24763         <autodoc>GetParser() -
> HtmlWinParser
</autodoc> 
24765       <method name=
"ParseInner" type=
"" overloaded=
"no"> 
24766         <autodoc>ParseInner(HtmlTag tag)
</autodoc> 
24768           <param name=
"tag" type=
"HtmlTag" default=
""/> 
24772     <method name=
"HtmlWinParser_AddTagHandler" oldname=
"wxHtmlWinParser_AddTagHandler" type=
"" overloaded=
"no"> 
24773       <autodoc>HtmlWinParser_AddTagHandler(PyObject tagHandlerClass)
</autodoc> 
24775         <param name=
"tagHandlerClass" type=
"PyObject" default=
""/> 
24779 #---------------------------------------------------------------------------
 
24781     <class name=
"HtmlSelection" oldname=
"wxHtmlSelection" module=
"html"> 
24782       <constructor name=
"HtmlSelection" overloaded=
"no"> 
24783         <autodoc>__init__() -
> HtmlSelection
</autodoc> 
24785       <destructor name=
"~wxHtmlSelection" overloaded=
"no"> 
24786         <autodoc>__del__()
</autodoc> 
24788       <method name=
"Set" type=
"" overloaded=
"no"> 
24789         <autodoc>Set(Point fromPos, HtmlCell fromCell, Point toPos, HtmlCell toCell)
</autodoc> 
24791           <param name=
"fromPos" type=
"Point" default=
""/> 
24792           <param name=
"fromCell" type=
"wxHtmlCell" default=
""/> 
24793           <param name=
"toPos" type=
"Point" default=
""/> 
24794           <param name=
"toCell" type=
"wxHtmlCell" default=
""/> 
24797       <method name=
"SetCells" type=
"" overloaded=
"no"> 
24798         <autodoc>SetCells(HtmlCell fromCell, HtmlCell toCell)
</autodoc> 
24800           <param name=
"fromCell" type=
"wxHtmlCell" default=
""/> 
24801           <param name=
"toCell" type=
"wxHtmlCell" default=
""/> 
24804       <method name=
"GetFromCell" type=
"wxHtmlCell" overloaded=
"no"> 
24805         <autodoc>GetFromCell() -
> HtmlCell
</autodoc> 
24807       <method name=
"GetToCell" type=
"wxHtmlCell" overloaded=
"no"> 
24808         <autodoc>GetToCell() -
> HtmlCell
</autodoc> 
24810       <method name=
"GetFromPos" type=
"Point" overloaded=
"no"> 
24811         <autodoc>GetFromPos() -
> Point
</autodoc> 
24813       <method name=
"GetToPos" type=
"Point" overloaded=
"no"> 
24814         <autodoc>GetToPos() -
> Point
</autodoc> 
24816       <method name=
"GetFromPrivPos" type=
"Point" overloaded=
"no"> 
24817         <autodoc>GetFromPrivPos() -
> Point
</autodoc> 
24819       <method name=
"GetToPrivPos" type=
"Point" overloaded=
"no"> 
24820         <autodoc>GetToPrivPos() -
> Point
</autodoc> 
24822       <method name=
"SetFromPrivPos" type=
"" overloaded=
"no"> 
24823         <autodoc>SetFromPrivPos(Point pos)
</autodoc> 
24825           <param name=
"pos" type=
"Point" default=
""/> 
24828       <method name=
"SetToPrivPos" type=
"" overloaded=
"no"> 
24829         <autodoc>SetToPrivPos(Point pos)
</autodoc> 
24831           <param name=
"pos" type=
"Point" default=
""/> 
24834       <method name=
"ClearPrivPos" type=
"" overloaded=
"no"> 
24835         <autodoc>ClearPrivPos()
</autodoc> 
24837       <method name=
"IsEmpty" type=
"bool" overloaded=
"no"> 
24838         <autodoc>IsEmpty() -
> bool
</autodoc> 
24841     <class name=
"HtmlRenderingState" oldname=
"wxHtmlRenderingState" module=
"html"> 
24842       <constructor name=
"HtmlRenderingState" overloaded=
"no"> 
24843         <autodoc>__init__() -
> HtmlRenderingState
</autodoc> 
24845       <destructor name=
"~wxHtmlRenderingState" overloaded=
"no"> 
24846         <autodoc>__del__()
</autodoc> 
24848       <method name=
"SetSelectionState" type=
"" overloaded=
"no"> 
24849         <autodoc>SetSelectionState(int s)
</autodoc> 
24851           <param name=
"s" type=
"wxHtmlSelectionState" default=
""/> 
24854       <method name=
"GetSelectionState" type=
"wxHtmlSelectionState" overloaded=
"no"> 
24855         <autodoc>GetSelectionState() -
> int
</autodoc> 
24857       <method name=
"SetFgColour" type=
"" overloaded=
"no"> 
24858         <autodoc>SetFgColour(Colour c)
</autodoc> 
24860           <param name=
"c" type=
"Colour" default=
""/> 
24863       <method name=
"GetFgColour" type=
"Colour" overloaded=
"no"> 
24864         <autodoc>GetFgColour() -
> Colour
</autodoc> 
24866       <method name=
"SetBgColour" type=
"" overloaded=
"no"> 
24867         <autodoc>SetBgColour(Colour c)
</autodoc> 
24869           <param name=
"c" type=
"Colour" default=
""/> 
24872       <method name=
"GetBgColour" type=
"Colour" overloaded=
"no"> 
24873         <autodoc>GetBgColour() -
> Colour
</autodoc> 
24876     <class name=
"HtmlRenderingStyle" oldname=
"wxHtmlRenderingStyle" module=
"html"> 
24877       <method name=
"GetSelectedTextColour" type=
"Colour" overloaded=
"no"> 
24878         <autodoc>GetSelectedTextColour(Colour clr) -
> Colour
</autodoc> 
24880           <param name=
"clr" type=
"Colour" default=
""/> 
24883       <method name=
"GetSelectedTextBgColour" type=
"Colour" overloaded=
"no"> 
24884         <autodoc>GetSelectedTextBgColour(Colour clr) -
> Colour
</autodoc> 
24886           <param name=
"clr" type=
"Colour" default=
""/> 
24890     <class name=
"DefaultHtmlRenderingStyle" oldname=
"wxDefaultHtmlRenderingStyle" module=
"html"> 
24891       <baseclass name=
"HtmlRenderingStyle"/> 
24892       <method name=
"GetSelectedTextColour" type=
"Colour" overloaded=
"no"> 
24893         <autodoc>GetSelectedTextColour(Colour clr) -
> Colour
</autodoc> 
24895           <param name=
"clr" type=
"Colour" default=
""/> 
24898       <method name=
"GetSelectedTextBgColour" type=
"Colour" overloaded=
"no"> 
24899         <autodoc>GetSelectedTextBgColour(Colour clr) -
> Colour
</autodoc> 
24901           <param name=
"clr" type=
"Colour" default=
""/> 
24905     <class name=
"HtmlRenderingInfo" oldname=
"wxHtmlRenderingInfo" module=
"html"> 
24906       <constructor name=
"HtmlRenderingInfo" overloaded=
"no"> 
24907         <autodoc>__init__() -
> HtmlRenderingInfo
</autodoc> 
24909       <destructor name=
"~wxHtmlRenderingInfo" overloaded=
"no"> 
24910         <autodoc>__del__()
</autodoc> 
24912       <method name=
"SetSelection" type=
"" overloaded=
"no"> 
24913         <autodoc>SetSelection(HtmlSelection s)
</autodoc> 
24915           <param name=
"s" type=
"HtmlSelection" default=
""/> 
24918       <method name=
"GetSelection" type=
"HtmlSelection" overloaded=
"no"> 
24919         <autodoc>GetSelection() -
> HtmlSelection
</autodoc> 
24921       <method name=
"SetStyle" type=
"" overloaded=
"no"> 
24922         <autodoc>SetStyle(HtmlRenderingStyle style)
</autodoc> 
24924           <param name=
"style" type=
"HtmlRenderingStyle" default=
""/> 
24927       <method name=
"GetStyle" type=
"HtmlRenderingStyle" overloaded=
"no"> 
24928         <autodoc>GetStyle() -
> HtmlRenderingStyle
</autodoc> 
24930       <method name=
"GetState" type=
"HtmlRenderingState" overloaded=
"no"> 
24931         <autodoc>GetState() -
> HtmlRenderingState
</autodoc> 
24935 #---------------------------------------------------------------------------
 
24937     <class name=
"HtmlCell" oldname=
"wxHtmlCell" module=
"html"> 
24938       <baseclass name=
"Object"/> 
24939       <constructor name=
"HtmlCell" overloaded=
"no"> 
24940         <autodoc>__init__() -
> HtmlCell
</autodoc> 
24942       <method name=
"GetPosX" type=
"int" overloaded=
"no"> 
24943         <autodoc>GetPosX() -
> int
</autodoc> 
24945       <method name=
"GetPosY" type=
"int" overloaded=
"no"> 
24946         <autodoc>GetPosY() -
> int
</autodoc> 
24948       <method name=
"GetWidth" type=
"int" overloaded=
"no"> 
24949         <autodoc>GetWidth() -
> int
</autodoc> 
24951       <method name=
"GetHeight" type=
"int" overloaded=
"no"> 
24952         <autodoc>GetHeight() -
> int
</autodoc> 
24954       <method name=
"GetDescent" type=
"int" overloaded=
"no"> 
24955         <autodoc>GetDescent() -
> int
</autodoc> 
24957       <method name=
"GetId" type=
"String" overloaded=
"no"> 
24958         <autodoc>GetId() -
> String
</autodoc> 
24960       <method name=
"SetId" type=
"" overloaded=
"no"> 
24961         <autodoc>SetId(String id)
</autodoc> 
24963           <param name=
"id" type=
"String" default=
""/> 
24966       <method name=
"GetLink" type=
"HtmlLinkInfo" overloaded=
"no"> 
24967         <autodoc>GetLink(int x=
0, int y=
0) -
> HtmlLinkInfo
</autodoc> 
24969           <param name=
"x" type=
"int" default=
"0"/> 
24970           <param name=
"y" type=
"int" default=
"0"/> 
24973       <method name=
"GetNext" type=
"HtmlCell" overloaded=
"no"> 
24974         <autodoc>GetNext() -
> HtmlCell
</autodoc> 
24976       <method name=
"GetParent" type=
"wxHtmlContainerCell" overloaded=
"no"> 
24977         <autodoc>GetParent() -
> HtmlContainerCell
</autodoc> 
24979       <method name=
"GetFirstChild" type=
"HtmlCell" overloaded=
"no"> 
24980         <autodoc>GetFirstChild() -
> HtmlCell
</autodoc> 
24982       <method name=
"GetCursor" type=
"Cursor" overloaded=
"no"> 
24983         <autodoc>GetCursor() -
> Cursor
</autodoc> 
24985       <method name=
"IsFormattingCell" type=
"bool" overloaded=
"no"> 
24986         <autodoc>IsFormattingCell() -
> bool
</autodoc> 
24988       <method name=
"SetLink" type=
"" overloaded=
"no"> 
24989         <autodoc>SetLink(HtmlLinkInfo link)
</autodoc> 
24991           <param name=
"link" type=
"HtmlLinkInfo" default=
""/> 
24994       <method name=
"SetNext" type=
"" overloaded=
"no"> 
24995         <autodoc>SetNext(HtmlCell cell)
</autodoc> 
24997           <param name=
"cell" type=
"HtmlCell" default=
""/> 
25000       <method name=
"SetParent" type=
"" overloaded=
"no"> 
25001         <autodoc>SetParent(HtmlContainerCell p)
</autodoc> 
25003           <param name=
"p" type=
"wxHtmlContainerCell" default=
""/> 
25006       <method name=
"SetPos" type=
"" overloaded=
"no"> 
25007         <autodoc>SetPos(int x, int y)
</autodoc> 
25009           <param name=
"x" type=
"int" default=
""/> 
25010           <param name=
"y" type=
"int" default=
""/> 
25013       <method name=
"Layout" type=
"" overloaded=
"no"> 
25014         <autodoc>Layout(int w)
</autodoc> 
25016           <param name=
"w" type=
"int" default=
""/> 
25019       <method name=
"Draw" type=
"" overloaded=
"no"> 
25020         <autodoc>Draw(DC dc, int x, int y, int view_y1, int view_y2, HtmlRenderingInfo info)
</autodoc> 
25022           <param name=
"dc" type=
"DC" default=
""/> 
25023           <param name=
"x" type=
"int" default=
""/> 
25024           <param name=
"y" type=
"int" default=
""/> 
25025           <param name=
"view_y1" type=
"int" default=
""/> 
25026           <param name=
"view_y2" type=
"int" default=
""/> 
25027           <param name=
"info" type=
"HtmlRenderingInfo" default=
""/> 
25030       <method name=
"DrawInvisible" type=
"" overloaded=
"no"> 
25031         <autodoc>DrawInvisible(DC dc, int x, int y, HtmlRenderingInfo info)
</autodoc> 
25033           <param name=
"dc" type=
"DC" default=
""/> 
25034           <param name=
"x" type=
"int" default=
""/> 
25035           <param name=
"y" type=
"int" default=
""/> 
25036           <param name=
"info" type=
"HtmlRenderingInfo" default=
""/> 
25039       <method name=
"Find" type=
"HtmlCell" overloaded=
"no"> 
25040         <autodoc>Find(int condition, void param) -
> HtmlCell
</autodoc> 
25042           <param name=
"condition" type=
"int" default=
""/> 
25043           <param name=
"param" type=
"" default=
""/> 
25046       <method name=
"AdjustPagebreak" type=
"bool" overloaded=
"no"> 
25047         <autodoc>AdjustPagebreak(int INOUT) -
> bool
</autodoc> 
25049           <param name=
"INOUT" type=
"int" default=
""/> 
25052       <method name=
"SetCanLiveOnPagebreak" type=
"" overloaded=
"no"> 
25053         <autodoc>SetCanLiveOnPagebreak(bool can)
</autodoc> 
25055           <param name=
"can" type=
"bool" default=
""/> 
25058       <method name=
"IsLinebreakAllowed" type=
"bool" overloaded=
"no"> 
25059         <autodoc>IsLinebreakAllowed() -
> bool
</autodoc> 
25061       <method name=
"IsTerminalCell" type=
"bool" overloaded=
"no"> 
25062         <autodoc>IsTerminalCell() -
> bool
</autodoc> 
25064       <method name=
"FindCellByPos" type=
"HtmlCell" overloaded=
"no"> 
25065         <autodoc>FindCellByPos(int x, int y, unsigned int flags=HTML_FIND_EXACT) -
> HtmlCell
</autodoc> 
25067           <param name=
"x" type=
"int" default=
""/> 
25068           <param name=
"y" type=
"int" default=
""/> 
25069           <param name=
"flags" type=
"unsigned int" default=
"wxHTML_FIND_EXACT"/> 
25072       <method name=
"GetAbsPos" type=
"Point" overloaded=
"no"> 
25073         <autodoc>GetAbsPos() -
> Point
</autodoc> 
25075       <method name=
"GetFirstTerminal" type=
"HtmlCell" overloaded=
"no"> 
25076         <autodoc>GetFirstTerminal() -
> HtmlCell
</autodoc> 
25078       <method name=
"GetLastTerminal" type=
"HtmlCell" overloaded=
"no"> 
25079         <autodoc>GetLastTerminal() -
> HtmlCell
</autodoc> 
25081       <method name=
"GetDepth" type=
"unsigned int" overloaded=
"no"> 
25082         <autodoc>GetDepth() -
> unsigned int
</autodoc> 
25084       <method name=
"IsBefore" type=
"bool" overloaded=
"no"> 
25085         <autodoc>IsBefore(HtmlCell cell) -
> bool
</autodoc> 
25087           <param name=
"cell" type=
"HtmlCell" default=
""/> 
25090       <method name=
"ConvertToText" type=
"String" overloaded=
"no"> 
25091         <autodoc>ConvertToText(HtmlSelection sel) -
> String
</autodoc> 
25093           <param name=
"sel" type=
"HtmlSelection" default=
""/> 
25097     <class name=
"HtmlWordCell" oldname=
"wxHtmlWordCell" module=
"html"> 
25098       <baseclass name=
"HtmlCell"/> 
25099       <constructor name=
"HtmlWordCell" overloaded=
"no"> 
25100         <autodoc>__init__(String word, DC dc) -
> HtmlWordCell
</autodoc> 
25102           <param name=
"word" type=
"String" default=
""/> 
25103           <param name=
"dc" type=
"DC" default=
""/> 
25107     <class name=
"HtmlContainerCell" oldname=
"wxHtmlContainerCell" module=
"html"> 
25108       <baseclass name=
"HtmlCell"/> 
25109       <constructor name=
"HtmlContainerCell" overloaded=
"no"> 
25110         <autodoc>__init__(HtmlContainerCell parent) -
> HtmlContainerCell
</autodoc> 
25112           <param name=
"parent" type=
"HtmlContainerCell" default=
""/> 
25115       <method name=
"InsertCell" type=
"" overloaded=
"no"> 
25116         <autodoc>InsertCell(HtmlCell cell)
</autodoc> 
25118           <param name=
"cell" type=
"HtmlCell" default=
""/> 
25121       <method name=
"SetAlignHor" type=
"" overloaded=
"no"> 
25122         <autodoc>SetAlignHor(int al)
</autodoc> 
25124           <param name=
"al" type=
"int" default=
""/> 
25127       <method name=
"GetAlignHor" type=
"int" overloaded=
"no"> 
25128         <autodoc>GetAlignHor() -
> int
</autodoc> 
25130       <method name=
"SetAlignVer" type=
"" overloaded=
"no"> 
25131         <autodoc>SetAlignVer(int al)
</autodoc> 
25133           <param name=
"al" type=
"int" default=
""/> 
25136       <method name=
"GetAlignVer" type=
"int" overloaded=
"no"> 
25137         <autodoc>GetAlignVer() -
> int
</autodoc> 
25139       <method name=
"SetIndent" type=
"" overloaded=
"no"> 
25140         <autodoc>SetIndent(int i, int what, int units=HTML_UNITS_PIXELS)
</autodoc> 
25142           <param name=
"i" type=
"int" default=
""/> 
25143           <param name=
"what" type=
"int" default=
""/> 
25144           <param name=
"units" type=
"int" default=
"wxHTML_UNITS_PIXELS"/> 
25147       <method name=
"GetIndent" type=
"int" overloaded=
"no"> 
25148         <autodoc>GetIndent(int ind) -
> int
</autodoc> 
25150           <param name=
"ind" type=
"int" default=
""/> 
25153       <method name=
"GetIndentUnits" type=
"int" overloaded=
"no"> 
25154         <autodoc>GetIndentUnits(int ind) -
> int
</autodoc> 
25156           <param name=
"ind" type=
"int" default=
""/> 
25159       <method name=
"SetAlign" type=
"" overloaded=
"no"> 
25160         <autodoc>SetAlign(HtmlTag tag)
</autodoc> 
25162           <param name=
"tag" type=
"HtmlTag" default=
""/> 
25165       <method name=
"SetWidthFloat" type=
"" overloaded=
"no"> 
25166         <autodoc>SetWidthFloat(int w, int units)
</autodoc> 
25168           <param name=
"w" type=
"int" default=
""/> 
25169           <param name=
"units" type=
"int" default=
""/> 
25172       <method name=
"SetWidthFloatFromTag" type=
"" overloaded=
"no"> 
25173         <autodoc>SetWidthFloatFromTag(HtmlTag tag)
</autodoc> 
25175           <param name=
"tag" type=
"HtmlTag" default=
""/> 
25178       <method name=
"SetMinHeight" type=
"" overloaded=
"no"> 
25179         <autodoc>SetMinHeight(int h, int align=HTML_ALIGN_TOP)
</autodoc> 
25181           <param name=
"h" type=
"int" default=
""/> 
25182           <param name=
"align" type=
"int" default=
"wxHTML_ALIGN_TOP"/> 
25185       <method name=
"SetBackgroundColour" type=
"" overloaded=
"no"> 
25186         <autodoc>SetBackgroundColour(Colour clr)
</autodoc> 
25188           <param name=
"clr" type=
"Colour" default=
""/> 
25191       <method name=
"GetBackgroundColour" type=
"Colour" overloaded=
"no"> 
25192         <autodoc>GetBackgroundColour() -
> Colour
</autodoc> 
25194       <method name=
"SetBorder" type=
"" overloaded=
"no"> 
25195         <autodoc>SetBorder(Colour clr1, Colour clr2)
</autodoc> 
25197           <param name=
"clr1" type=
"Colour" default=
""/> 
25198           <param name=
"clr2" type=
"Colour" default=
""/> 
25201       <method name=
"GetFirstChild" type=
"HtmlCell" overloaded=
"no"> 
25202         <autodoc>GetFirstChild() -
> HtmlCell
</autodoc> 
25205     <class name=
"HtmlColourCell" oldname=
"wxHtmlColourCell" module=
"html"> 
25206       <baseclass name=
"HtmlCell"/> 
25207       <constructor name=
"HtmlColourCell" overloaded=
"no"> 
25208         <autodoc>__init__(Colour clr, int flags=HTML_CLR_FOREGROUND) -
> HtmlColourCell
</autodoc> 
25210           <param name=
"clr" type=
"Colour" default=
""/> 
25211           <param name=
"flags" type=
"int" default=
"wxHTML_CLR_FOREGROUND"/> 
25215     <class name=
"HtmlFontCell" oldname=
"wxHtmlFontCell" module=
"html"> 
25216       <baseclass name=
"HtmlCell"/> 
25217       <constructor name=
"HtmlFontCell" overloaded=
"no"> 
25218         <autodoc>__init__(Font font) -
> HtmlFontCell
</autodoc> 
25220           <param name=
"font" type=
"Font" default=
""/> 
25224     <class name=
"HtmlWidgetCell" oldname=
"wxHtmlWidgetCell" module=
"html"> 
25225       <baseclass name=
"HtmlCell"/> 
25226       <constructor name=
"HtmlWidgetCell" overloaded=
"no"> 
25227         <autodoc>__init__(Window wnd, int w=
0) -
> HtmlWidgetCell
</autodoc> 
25229           <param name=
"wnd" type=
"Window" default=
""/> 
25230           <param name=
"w" type=
"int" default=
"0"/> 
25235 #---------------------------------------------------------------------------
 
25237     <class name=
"HtmlFilter" oldname=
"wxPyHtmlFilter" module=
"html"> 
25238       <baseclass name=
"Object"/> 
25239       <constructor name=
"wxPyHtmlFilter" overloaded=
"no"> 
25240         <autodoc>__init__() -
> HtmlFilter
</autodoc> 
25242       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
25243         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
25245           <param name=
"self" type=
"PyObject" default=
""/> 
25246           <param name=
"_class" type=
"PyObject" default=
""/> 
25251 #---------------------------------------------------------------------------
 
25253     <class name=
"HtmlWindow" oldname=
"wxPyHtmlWindow" module=
"html"> 
25254       <baseclass name=
"ScrolledWindow"/> 
25255       <constructor name=
"wxPyHtmlWindow" overloaded=
"no"> 
25256         <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
25257     Size size=DefaultSize, int style=HW_DEFAULT_STYLE, 
 
25258     String name=HtmlWindowNameStr) -
> HtmlWindow
</autodoc> 
25260           <param name=
"parent" type=
"Window" default=
""/> 
25261           <param name=
"id" type=
"int" default=
"-1"/> 
25262           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
25263           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
25264           <param name=
"style" type=
"int" default=
"wxHW_DEFAULT_STYLE"/> 
25265           <param name=
"name" type=
"String" default=
"wxPyHtmlWindowNameStr"/> 
25268       <constructor name=
"PreHtmlWindow" overloaded=
"no"> 
25269         <autodoc>PreHtmlWindow() -
> HtmlWindow
</autodoc> 
25271       <method name=
"Create" type=
"bool" overloaded=
"no"> 
25272         <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
25273     Size size=DefaultSize, int style=HW_SCROLLBAR_AUTO, 
 
25274     String name=HtmlWindowNameStr) -
> bool
</autodoc> 
25276           <param name=
"parent" type=
"Window" default=
""/> 
25277           <param name=
"id" type=
"int" default=
"-1"/> 
25278           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
25279           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
25280           <param name=
"style" type=
"int" default=
"wxHW_SCROLLBAR_AUTO"/> 
25281           <param name=
"name" type=
"String" default=
"wxPyHtmlWindowNameStr"/> 
25284       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
25285         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
25287           <param name=
"self" type=
"PyObject" default=
""/> 
25288           <param name=
"_class" type=
"PyObject" default=
""/> 
25291       <method name=
"SetPage" type=
"bool" overloaded=
"no"> 
25292         <autodoc>SetPage(String source) -
> bool
</autodoc> 
25294           <param name=
"source" type=
"String" default=
""/> 
25297       <method name=
"LoadPage" type=
"bool" overloaded=
"no"> 
25298         <autodoc>LoadPage(String location) -
> bool
</autodoc> 
25300           <param name=
"location" type=
"String" default=
""/> 
25303       <method name=
"LoadFile" type=
"bool" overloaded=
"no"> 
25304         <autodoc>LoadFile(String filename) -
> bool
</autodoc> 
25306           <param name=
"filename" type=
"String" default=
""/> 
25309       <method name=
"AppendToPage" type=
"bool" overloaded=
"no"> 
25310         <autodoc>AppendToPage(String source) -
> bool
</autodoc> 
25312           <param name=
"source" type=
"String" default=
""/> 
25315       <method name=
"GetOpenedPage" type=
"String" overloaded=
"no"> 
25316         <autodoc>GetOpenedPage() -
> String
</autodoc> 
25318       <method name=
"GetOpenedAnchor" type=
"String" overloaded=
"no"> 
25319         <autodoc>GetOpenedAnchor() -
> String
</autodoc> 
25321       <method name=
"GetOpenedPageTitle" type=
"String" overloaded=
"no"> 
25322         <autodoc>GetOpenedPageTitle() -
> String
</autodoc> 
25324       <method name=
"SetRelatedFrame" type=
"" overloaded=
"no"> 
25325         <autodoc>SetRelatedFrame(Frame frame, String format)
</autodoc> 
25327           <param name=
"frame" type=
"Frame" default=
""/> 
25328           <param name=
"format" type=
"String" default=
""/> 
25331       <method name=
"GetRelatedFrame" type=
"Frame" overloaded=
"no"> 
25332         <autodoc>GetRelatedFrame() -
> Frame
</autodoc> 
25334       <method name=
"SetRelatedStatusBar" type=
"" overloaded=
"no"> 
25335         <autodoc>SetRelatedStatusBar(int bar)
</autodoc> 
25337           <param name=
"bar" type=
"int" default=
""/> 
25340       <method name=
"SetFonts" type=
"" overloaded=
"no"> 
25341         <autodoc>SetFonts(String normal_face, String fixed_face, PyObject sizes=None)
</autodoc> 
25343           <param name=
"normal_face" type=
"String" default=
""/> 
25344           <param name=
"fixed_face" type=
"String" default=
""/> 
25345           <param name=
"sizes" type=
"PyObject" default=
"NULL"/> 
25348       <method name=
"SetTitle" type=
"" overloaded=
"no"> 
25349         <autodoc>SetTitle(String title)
</autodoc> 
25351           <param name=
"title" type=
"String" default=
""/> 
25354       <method name=
"SetBorders" type=
"" overloaded=
"no"> 
25355         <autodoc>SetBorders(int b)
</autodoc> 
25357           <param name=
"b" type=
"int" default=
""/> 
25360       <method name=
"ReadCustomization" type=
"" overloaded=
"no"> 
25361         <autodoc>ReadCustomization(ConfigBase cfg, String path=EmptyString)
</autodoc> 
25363           <param name=
"cfg" type=
"ConfigBase" default=
""/> 
25364           <param name=
"path" type=
"String" default=
"wxPyEmptyString"/> 
25367       <method name=
"WriteCustomization" type=
"" overloaded=
"no"> 
25368         <autodoc>WriteCustomization(ConfigBase cfg, String path=EmptyString)
</autodoc> 
25370           <param name=
"cfg" type=
"ConfigBase" default=
""/> 
25371           <param name=
"path" type=
"String" default=
"wxPyEmptyString"/> 
25374       <method name=
"HistoryBack" type=
"bool" overloaded=
"no"> 
25375         <autodoc>HistoryBack() -
> bool
</autodoc> 
25377       <method name=
"HistoryForward" type=
"bool" overloaded=
"no"> 
25378         <autodoc>HistoryForward() -
> bool
</autodoc> 
25380       <method name=
"HistoryCanBack" type=
"bool" overloaded=
"no"> 
25381         <autodoc>HistoryCanBack() -
> bool
</autodoc> 
25383       <method name=
"HistoryCanForward" type=
"bool" overloaded=
"no"> 
25384         <autodoc>HistoryCanForward() -
> bool
</autodoc> 
25386       <method name=
"HistoryClear" type=
"" overloaded=
"no"> 
25387         <autodoc>HistoryClear()
</autodoc> 
25389       <method name=
"GetInternalRepresentation" type=
"HtmlContainerCell" overloaded=
"no"> 
25390         <autodoc>GetInternalRepresentation() -
> HtmlContainerCell
</autodoc> 
25392       <method name=
"GetParser" type=
"HtmlWinParser" overloaded=
"no"> 
25393         <autodoc>GetParser() -
> HtmlWinParser
</autodoc> 
25395       <method name=
"ScrollToAnchor" type=
"bool" overloaded=
"no"> 
25396         <autodoc>ScrollToAnchor(String anchor) -
> bool
</autodoc> 
25398           <param name=
"anchor" type=
"String" default=
""/> 
25401       <method name=
"HasAnchor" type=
"bool" overloaded=
"no"> 
25402         <autodoc>HasAnchor(String anchor) -
> bool
</autodoc> 
25404           <param name=
"anchor" type=
"String" default=
""/> 
25407       <staticmethod name=
"AddFilter" type=
"" overloaded=
"no"> 
25408         <autodoc>HtmlWindow.AddFilter(HtmlFilter filter)
</autodoc> 
25410           <param name=
"filter" type=
"HtmlFilter" default=
""/> 
25413       <method name=
"base_OnLinkClicked" type=
"" overloaded=
"no"> 
25414         <autodoc>base_OnLinkClicked(HtmlLinkInfo link)
</autodoc> 
25416           <param name=
"link" type=
"HtmlLinkInfo" default=
""/> 
25419       <method name=
"base_OnSetTitle" type=
"" overloaded=
"no"> 
25420         <autodoc>base_OnSetTitle(String title)
</autodoc> 
25422           <param name=
"title" type=
"String" default=
""/> 
25425       <method name=
"base_OnCellMouseHover" type=
"" overloaded=
"no"> 
25426         <autodoc>base_OnCellMouseHover(HtmlCell cell, int x, int y)
</autodoc> 
25428           <param name=
"cell" type=
"HtmlCell" default=
""/> 
25429           <param name=
"x" type=
"int" default=
""/> 
25430           <param name=
"y" type=
"int" default=
""/> 
25433       <method name=
"base_OnCellClicked" type=
"" overloaded=
"no"> 
25434         <autodoc>base_OnCellClicked(HtmlCell cell, int x, int y, MouseEvent event)
</autodoc> 
25436           <param name=
"cell" type=
"HtmlCell" default=
""/> 
25437           <param name=
"x" type=
"int" default=
""/> 
25438           <param name=
"y" type=
"int" default=
""/> 
25439           <param name=
"event" type=
"MouseEvent" default=
""/> 
25444 #---------------------------------------------------------------------------
 
25446     <class name=
"HtmlDCRenderer" oldname=
"wxHtmlDCRenderer" module=
"html"> 
25447       <baseclass name=
"Object"/> 
25448       <constructor name=
"HtmlDCRenderer" overloaded=
"no"> 
25449         <autodoc>__init__() -
> HtmlDCRenderer
</autodoc> 
25451       <destructor name=
"~wxHtmlDCRenderer" overloaded=
"no"> 
25452         <autodoc>__del__()
</autodoc> 
25454       <method name=
"SetDC" type=
"" overloaded=
"no"> 
25455         <autodoc>SetDC(DC dc, int maxwidth)
</autodoc> 
25457           <param name=
"dc" type=
"DC" default=
""/> 
25458           <param name=
"maxwidth" type=
"int" default=
""/> 
25461       <method name=
"SetSize" type=
"" overloaded=
"no"> 
25462         <autodoc>SetSize(int width, int height)
</autodoc> 
25464           <param name=
"width" type=
"int" default=
""/> 
25465           <param name=
"height" type=
"int" default=
""/> 
25468       <method name=
"SetHtmlText" type=
"" overloaded=
"no"> 
25469         <autodoc>SetHtmlText(String html, String basepath=EmptyString, bool isdir=True)
</autodoc> 
25471           <param name=
"html" type=
"String" default=
""/> 
25472           <param name=
"basepath" type=
"String" default=
"wxPyEmptyString"/> 
25473           <param name=
"isdir" type=
"bool" default=
"True"/> 
25476       <method name=
"SetFonts" type=
"" overloaded=
"no"> 
25477         <autodoc>SetFonts(String normal_face, String fixed_face, PyObject sizes=None)
</autodoc> 
25479           <param name=
"normal_face" type=
"String" default=
""/> 
25480           <param name=
"fixed_face" type=
"String" default=
""/> 
25481           <param name=
"sizes" type=
"PyObject" default=
"NULL"/> 
25484       <method name=
"Render" type=
"int" overloaded=
"no"> 
25485         <autodoc>Render(int x, int y, int from=
0, int dont_render=False, int to=INT_MAX, 
 
25486     int choices=None, int LCOUNT=
0) -
> int
</autodoc> 
25488           <param name=
"x" type=
"int" default=
""/> 
25489           <param name=
"y" type=
"int" default=
""/> 
25490           <param name=
"from" type=
"int" default=
"0"/> 
25491           <param name=
"dont_render" type=
"int" default=
"False"/> 
25492           <param name=
"to" type=
"int" default=
"INT_MAX"/> 
25493           <param name=
"choices" type=
"int" default=
"NULL"/> 
25494           <param name=
"LCOUNT" type=
"int" default=
"0"/> 
25497       <method name=
"GetTotalHeight" type=
"int" overloaded=
"no"> 
25498         <autodoc>GetTotalHeight() -
> int
</autodoc> 
25501     <class name=
"HtmlPrintout" oldname=
"wxHtmlPrintout" module=
"html"> 
25502       <baseclass name=
"Printout"/> 
25503       <constructor name=
"HtmlPrintout" overloaded=
"no"> 
25504         <autodoc>__init__(String title=HtmlPrintoutTitleStr) -
> HtmlPrintout
</autodoc> 
25506           <param name=
"title" type=
"String" default=
"wxPyHtmlPrintoutTitleStr"/> 
25509       <method name=
"SetHtmlText" type=
"" overloaded=
"no"> 
25510         <autodoc>SetHtmlText(String html, String basepath=EmptyString, bool isdir=True)
</autodoc> 
25512           <param name=
"html" type=
"String" default=
""/> 
25513           <param name=
"basepath" type=
"String" default=
"wxPyEmptyString"/> 
25514           <param name=
"isdir" type=
"bool" default=
"True"/> 
25517       <method name=
"SetHtmlFile" type=
"" overloaded=
"no"> 
25518         <autodoc>SetHtmlFile(String htmlfile)
</autodoc> 
25520           <param name=
"htmlfile" type=
"String" default=
""/> 
25523       <method name=
"SetHeader" type=
"" overloaded=
"no"> 
25524         <autodoc>SetHeader(String header, int pg=PAGE_ALL)
</autodoc> 
25526           <param name=
"header" type=
"String" default=
""/> 
25527           <param name=
"pg" type=
"int" default=
"wxPAGE_ALL"/> 
25530       <method name=
"SetFooter" type=
"" overloaded=
"no"> 
25531         <autodoc>SetFooter(String footer, int pg=PAGE_ALL)
</autodoc> 
25533           <param name=
"footer" type=
"String" default=
""/> 
25534           <param name=
"pg" type=
"int" default=
"wxPAGE_ALL"/> 
25537       <method name=
"SetFonts" type=
"" overloaded=
"no"> 
25538         <autodoc>SetFonts(String normal_face, String fixed_face, PyObject sizes=None)
</autodoc> 
25540           <param name=
"normal_face" type=
"String" default=
""/> 
25541           <param name=
"fixed_face" type=
"String" default=
""/> 
25542           <param name=
"sizes" type=
"PyObject" default=
"NULL"/> 
25545       <method name=
"SetMargins" type=
"" overloaded=
"no"> 
25546         <autodoc>SetMargins(float top=
25.2, float bottom=
25.2, float left=
25.2, 
 
25547     float right=
25.2, float spaces=
5)
</autodoc> 
25549           <param name=
"top" type=
"float" default=
"25.2"/> 
25550           <param name=
"bottom" type=
"float" default=
"25.2"/> 
25551           <param name=
"left" type=
"float" default=
"25.2"/> 
25552           <param name=
"right" type=
"float" default=
"25.2"/> 
25553           <param name=
"spaces" type=
"float" default=
"5"/> 
25556       <staticmethod name=
"AddFilter" type=
"" overloaded=
"no"> 
25557         <autodoc>HtmlPrintout.AddFilter(wxHtmlFilter filter)
</autodoc> 
25559           <param name=
"filter" type=
"wxHtmlFilter" default=
""/> 
25562       <staticmethod name=
"CleanUpStatics" type=
"" overloaded=
"no"> 
25563         <autodoc>HtmlPrintout.CleanUpStatics()
</autodoc> 
25566     <class name=
"HtmlEasyPrinting" oldname=
"wxHtmlEasyPrinting" module=
"html"> 
25567       <baseclass name=
"Object"/> 
25568       <constructor name=
"HtmlEasyPrinting" overloaded=
"no"> 
25569         <autodoc>__init__(String name=HtmlPrintingTitleStr, Window parentWindow=None) -
> HtmlEasyPrinting
</autodoc> 
25571           <param name=
"name" type=
"String" default=
"wxPyHtmlPrintingTitleStr"/> 
25572           <param name=
"parentWindow" type=
"Window" default=
"NULL"/> 
25575       <destructor name=
"~wxHtmlEasyPrinting" overloaded=
"no"> 
25576         <autodoc>__del__()
</autodoc> 
25578       <method name=
"PreviewFile" type=
"" overloaded=
"no"> 
25579         <autodoc>PreviewFile(String htmlfile)
</autodoc> 
25581           <param name=
"htmlfile" type=
"String" default=
""/> 
25584       <method name=
"PreviewText" type=
"" overloaded=
"no"> 
25585         <autodoc>PreviewText(String htmltext, String basepath=EmptyString)
</autodoc> 
25587           <param name=
"htmltext" type=
"String" default=
""/> 
25588           <param name=
"basepath" type=
"String" default=
"wxPyEmptyString"/> 
25591       <method name=
"PrintFile" type=
"" overloaded=
"no"> 
25592         <autodoc>PrintFile(String htmlfile)
</autodoc> 
25594           <param name=
"htmlfile" type=
"String" default=
""/> 
25597       <method name=
"PrintText" type=
"" overloaded=
"no"> 
25598         <autodoc>PrintText(String htmltext, String basepath=EmptyString)
</autodoc> 
25600           <param name=
"htmltext" type=
"String" default=
""/> 
25601           <param name=
"basepath" type=
"String" default=
"wxPyEmptyString"/> 
25604       <method name=
"PrinterSetup" type=
"" overloaded=
"no"> 
25605         <autodoc>PrinterSetup()
</autodoc> 
25607       <method name=
"PageSetup" type=
"" overloaded=
"no"> 
25608         <autodoc>PageSetup()
</autodoc> 
25610       <method name=
"SetHeader" type=
"" overloaded=
"no"> 
25611         <autodoc>SetHeader(String header, int pg=PAGE_ALL)
</autodoc> 
25613           <param name=
"header" type=
"String" default=
""/> 
25614           <param name=
"pg" type=
"int" default=
"wxPAGE_ALL"/> 
25617       <method name=
"SetFooter" type=
"" overloaded=
"no"> 
25618         <autodoc>SetFooter(String footer, int pg=PAGE_ALL)
</autodoc> 
25620           <param name=
"footer" type=
"String" default=
""/> 
25621           <param name=
"pg" type=
"int" default=
"wxPAGE_ALL"/> 
25624       <method name=
"SetFonts" type=
"" overloaded=
"no"> 
25625         <autodoc>SetFonts(String normal_face, String fixed_face, PyObject sizes=None)
</autodoc> 
25627           <param name=
"normal_face" type=
"String" default=
""/> 
25628           <param name=
"fixed_face" type=
"String" default=
""/> 
25629           <param name=
"sizes" type=
"PyObject" default=
"NULL"/> 
25632       <method name=
"GetPrintData" type=
"PrintData" overloaded=
"no"> 
25633         <autodoc>GetPrintData() -
> PrintData
</autodoc> 
25635       <method name=
"GetPageSetupData" type=
"PageSetupDialogData" overloaded=
"no"> 
25636         <autodoc>GetPageSetupData() -
> PageSetupDialogData
</autodoc> 
25640 #---------------------------------------------------------------------------
 
25642     <class name=
"HtmlBookRecord" oldname=
"wxHtmlBookRecord" module=
"html"> 
25643       <constructor name=
"HtmlBookRecord" overloaded=
"no"> 
25644         <autodoc>__init__(String bookfile, String basepath, String title, String start) -
> HtmlBookRecord
</autodoc> 
25646           <param name=
"bookfile" type=
"String" default=
""/> 
25647           <param name=
"basepath" type=
"String" default=
""/> 
25648           <param name=
"title" type=
"String" default=
""/> 
25649           <param name=
"start" type=
"String" default=
""/> 
25652       <method name=
"GetBookFile" type=
"String" overloaded=
"no"> 
25653         <autodoc>GetBookFile() -
> String
</autodoc> 
25655       <method name=
"GetTitle" type=
"String" overloaded=
"no"> 
25656         <autodoc>GetTitle() -
> String
</autodoc> 
25658       <method name=
"GetStart" type=
"String" overloaded=
"no"> 
25659         <autodoc>GetStart() -
> String
</autodoc> 
25661       <method name=
"GetBasePath" type=
"String" overloaded=
"no"> 
25662         <autodoc>GetBasePath() -
> String
</autodoc> 
25664       <method name=
"SetContentsRange" type=
"" overloaded=
"no"> 
25665         <autodoc>SetContentsRange(int start, int end)
</autodoc> 
25667           <param name=
"start" type=
"int" default=
""/> 
25668           <param name=
"end" type=
"int" default=
""/> 
25671       <method name=
"GetContentsStart" type=
"int" overloaded=
"no"> 
25672         <autodoc>GetContentsStart() -
> int
</autodoc> 
25674       <method name=
"GetContentsEnd" type=
"int" overloaded=
"no"> 
25675         <autodoc>GetContentsEnd() -
> int
</autodoc> 
25677       <method name=
"SetTitle" type=
"" overloaded=
"no"> 
25678         <autodoc>SetTitle(String title)
</autodoc> 
25680           <param name=
"title" type=
"String" default=
""/> 
25683       <method name=
"SetBasePath" type=
"" overloaded=
"no"> 
25684         <autodoc>SetBasePath(String path)
</autodoc> 
25686           <param name=
"path" type=
"String" default=
""/> 
25689       <method name=
"SetStart" type=
"" overloaded=
"no"> 
25690         <autodoc>SetStart(String start)
</autodoc> 
25692           <param name=
"start" type=
"String" default=
""/> 
25695       <method name=
"GetFullPath" type=
"String" overloaded=
"no"> 
25696         <autodoc>GetFullPath(String page) -
> String
</autodoc> 
25698           <param name=
"page" type=
"String" default=
""/> 
25702     <class name=
"HtmlContentsItem" oldname=
"wxHtmlContentsItem" module=
"html"> 
25703       <method name=
"GetLevel" type=
"int" overloaded=
"no"> 
25704         <autodoc>GetLevel() -
> int
</autodoc> 
25706       <method name=
"GetID" type=
"int" overloaded=
"no"> 
25707         <autodoc>GetID() -
> int
</autodoc> 
25709       <method name=
"GetName" type=
"String" overloaded=
"no"> 
25710         <autodoc>GetName() -
> String
</autodoc> 
25712       <method name=
"GetPage" type=
"String" overloaded=
"no"> 
25713         <autodoc>GetPage() -
> String
</autodoc> 
25715       <method name=
"GetBook" type=
"HtmlBookRecord" overloaded=
"no"> 
25716         <autodoc>GetBook() -
> HtmlBookRecord
</autodoc> 
25719     <class name=
"HtmlSearchStatus" oldname=
"wxHtmlSearchStatus" module=
"html"> 
25720       <method name=
"Search" type=
"bool" overloaded=
"no"> 
25721         <autodoc>Search() -
> bool
</autodoc> 
25723       <method name=
"IsActive" type=
"bool" overloaded=
"no"> 
25724         <autodoc>IsActive() -
> bool
</autodoc> 
25726       <method name=
"GetCurIndex" type=
"int" overloaded=
"no"> 
25727         <autodoc>GetCurIndex() -
> int
</autodoc> 
25729       <method name=
"GetMaxIndex" type=
"int" overloaded=
"no"> 
25730         <autodoc>GetMaxIndex() -
> int
</autodoc> 
25732       <method name=
"GetName" type=
"String" overloaded=
"no"> 
25733         <autodoc>GetName() -
> String
</autodoc> 
25735       <method name=
"GetContentsItem" type=
"HtmlContentsItem" overloaded=
"no"> 
25736         <autodoc>GetContentsItem() -
> HtmlContentsItem
</autodoc> 
25739     <class name=
"HtmlHelpData" oldname=
"wxHtmlHelpData" module=
"html"> 
25740       <constructor name=
"HtmlHelpData" overloaded=
"no"> 
25741         <autodoc>__init__() -
> HtmlHelpData
</autodoc> 
25743       <destructor name=
"~wxHtmlHelpData" overloaded=
"no"> 
25744         <autodoc>__del__()
</autodoc> 
25746       <method name=
"SetTempDir" type=
"" overloaded=
"no"> 
25747         <autodoc>SetTempDir(String path)
</autodoc> 
25749           <param name=
"path" type=
"String" default=
""/> 
25752       <method name=
"AddBook" type=
"bool" overloaded=
"no"> 
25753         <autodoc>AddBook(String book) -
> bool
</autodoc> 
25755           <param name=
"book" type=
"String" default=
""/> 
25758       <method name=
"FindPageByName" type=
"String" overloaded=
"no"> 
25759         <autodoc>FindPageByName(String page) -
> String
</autodoc> 
25761           <param name=
"page" type=
"String" default=
""/> 
25764       <method name=
"FindPageById" type=
"String" overloaded=
"no"> 
25765         <autodoc>FindPageById(int id) -
> String
</autodoc> 
25767           <param name=
"id" type=
"int" default=
""/> 
25770       <method name=
"GetBookRecArray" type=
"wxHtmlBookRecArray" overloaded=
"no"> 
25771         <autodoc>GetBookRecArray() -
> wxHtmlBookRecArray
</autodoc> 
25773       <method name=
"GetContents" type=
"HtmlContentsItem" overloaded=
"no"> 
25774         <autodoc>GetContents() -
> HtmlContentsItem
</autodoc> 
25776       <method name=
"GetContentsCnt" type=
"int" overloaded=
"no"> 
25777         <autodoc>GetContentsCnt() -
> int
</autodoc> 
25779       <method name=
"GetIndex" type=
"HtmlContentsItem" overloaded=
"no"> 
25780         <autodoc>GetIndex() -
> HtmlContentsItem
</autodoc> 
25782       <method name=
"GetIndexCnt" type=
"int" overloaded=
"no"> 
25783         <autodoc>GetIndexCnt() -
> int
</autodoc> 
25786     <class name=
"HtmlHelpFrame" oldname=
"wxHtmlHelpFrame" module=
"html"> 
25787       <baseclass name=
"Frame"/> 
25788       <constructor name=
"HtmlHelpFrame" overloaded=
"no"> 
25789         <autodoc>__init__(Window parent, int ??, String title=EmptyString, int style=HF_DEFAULTSTYLE, 
 
25790     HtmlHelpData data=None) -
> HtmlHelpFrame
</autodoc> 
25792           <param name=
"parent" type=
"Window" default=
""/> 
25793           <param name=
"" type=
"int" default=
""/> 
25794           <param name=
"title" type=
"String" default=
"wxPyEmptyString"/> 
25795           <param name=
"style" type=
"int" default=
"wxHF_DEFAULTSTYLE"/> 
25796           <param name=
"data" type=
"HtmlHelpData" default=
"NULL"/> 
25799       <method name=
"GetData" type=
"HtmlHelpData" overloaded=
"no"> 
25800         <autodoc>GetData() -
> HtmlHelpData
</autodoc> 
25802       <method name=
"SetTitleFormat" type=
"" overloaded=
"no"> 
25803         <autodoc>SetTitleFormat(String format)
</autodoc> 
25805           <param name=
"format" type=
"String" default=
""/> 
25808       <method name=
"Display" type=
"" overloaded=
"no"> 
25809         <autodoc>Display(String x)
</autodoc> 
25811           <param name=
"x" type=
"String" default=
""/> 
25814       <method name=
"DisplayID" type=
"" overloaded=
"no"> 
25815         <autodoc>DisplayID(int id)
</autodoc> 
25817           <param name=
"id" type=
"int" default=
""/> 
25820       <method name=
"DisplayContents" type=
"" overloaded=
"no"> 
25821         <autodoc>DisplayContents()
</autodoc> 
25823       <method name=
"DisplayIndex" type=
"" overloaded=
"no"> 
25824         <autodoc>DisplayIndex()
</autodoc> 
25826       <method name=
"KeywordSearch" type=
"bool" overloaded=
"no"> 
25827         <autodoc>KeywordSearch(String keyword) -
> bool
</autodoc> 
25829           <param name=
"keyword" type=
"String" default=
""/> 
25832       <method name=
"UseConfig" type=
"" overloaded=
"no"> 
25833         <autodoc>UseConfig(ConfigBase config, String rootpath=EmptyString)
</autodoc> 
25835           <param name=
"config" type=
"ConfigBase" default=
""/> 
25836           <param name=
"rootpath" type=
"String" default=
"wxPyEmptyString"/> 
25839       <method name=
"ReadCustomization" type=
"" overloaded=
"no"> 
25840         <autodoc>ReadCustomization(ConfigBase cfg, String path=EmptyString)
</autodoc> 
25842           <param name=
"cfg" type=
"ConfigBase" default=
""/> 
25843           <param name=
"path" type=
"String" default=
"wxPyEmptyString"/> 
25846       <method name=
"WriteCustomization" type=
"" overloaded=
"no"> 
25847         <autodoc>WriteCustomization(ConfigBase cfg, String path=EmptyString)
</autodoc> 
25849           <param name=
"cfg" type=
"ConfigBase" default=
""/> 
25850           <param name=
"path" type=
"String" default=
"wxPyEmptyString"/> 
25854     <class name=
"HtmlHelpController" oldname=
"wxHtmlHelpController" module=
"html"> 
25855       <baseclass name=
"EvtHandler"/> 
25856       <constructor name=
"HtmlHelpController" overloaded=
"no"> 
25857         <autodoc>__init__(int style=HF_DEFAULTSTYLE) -
> HtmlHelpController
</autodoc> 
25859           <param name=
"style" type=
"int" default=
"wxHF_DEFAULTSTYLE"/> 
25862       <destructor name=
"~wxHtmlHelpController" overloaded=
"no"> 
25863         <autodoc>__del__()
</autodoc> 
25865       <method name=
"SetTitleFormat" type=
"" overloaded=
"no"> 
25866         <autodoc>SetTitleFormat(String format)
</autodoc> 
25868           <param name=
"format" type=
"String" default=
""/> 
25871       <method name=
"SetTempDir" type=
"" overloaded=
"no"> 
25872         <autodoc>SetTempDir(String path)
</autodoc> 
25874           <param name=
"path" type=
"String" default=
""/> 
25877       <method name=
"AddBook" type=
"bool" overloaded=
"no"> 
25878         <autodoc>AddBook(String book, int show_wait_msg=False) -
> bool
</autodoc> 
25880           <param name=
"book" type=
"String" default=
""/> 
25881           <param name=
"show_wait_msg" type=
"int" default=
"False"/> 
25884       <method name=
"Display" type=
"" overloaded=
"no"> 
25885         <autodoc>Display(String x)
</autodoc> 
25887           <param name=
"x" type=
"String" default=
""/> 
25890       <method name=
"DisplayID" type=
"" overloaded=
"no"> 
25891         <autodoc>DisplayID(int id)
</autodoc> 
25893           <param name=
"id" type=
"int" default=
""/> 
25896       <method name=
"DisplayContents" type=
"" overloaded=
"no"> 
25897         <autodoc>DisplayContents()
</autodoc> 
25899       <method name=
"DisplayIndex" type=
"" overloaded=
"no"> 
25900         <autodoc>DisplayIndex()
</autodoc> 
25902       <method name=
"KeywordSearch" type=
"bool" overloaded=
"no"> 
25903         <autodoc>KeywordSearch(String keyword) -
> bool
</autodoc> 
25905           <param name=
"keyword" type=
"String" default=
""/> 
25908       <method name=
"UseConfig" type=
"" overloaded=
"no"> 
25909         <autodoc>UseConfig(ConfigBase config, String rootpath=EmptyString)
</autodoc> 
25911           <param name=
"config" type=
"ConfigBase" default=
""/> 
25912           <param name=
"rootpath" type=
"String" default=
"wxPyEmptyString"/> 
25915       <method name=
"ReadCustomization" type=
"" overloaded=
"no"> 
25916         <autodoc>ReadCustomization(ConfigBase cfg, String path=EmptyString)
</autodoc> 
25918           <param name=
"cfg" type=
"ConfigBase" default=
""/> 
25919           <param name=
"path" type=
"String" default=
"wxPyEmptyString"/> 
25922       <method name=
"WriteCustomization" type=
"" overloaded=
"no"> 
25923         <autodoc>WriteCustomization(ConfigBase cfg, String path=EmptyString)
</autodoc> 
25925           <param name=
"cfg" type=
"ConfigBase" default=
""/> 
25926           <param name=
"path" type=
"String" default=
"wxPyEmptyString"/> 
25929       <method name=
"GetFrame" type=
"HtmlHelpFrame" overloaded=
"no"> 
25930         <autodoc>GetFrame() -
> HtmlHelpFrame
</autodoc> 
25934   <module name=
"wizard"> 
25935     <import name=
"windows"/> 
25936     <pythoncode> wx = core 
</pythoncode> 
25938 EVT_WIZARD_PAGE_CHANGED  = wx.PyEventBinder( wxEVT_WIZARD_PAGE_CHANGED, 
1)
 
25939 EVT_WIZARD_PAGE_CHANGING = wx.PyEventBinder( wxEVT_WIZARD_PAGE_CHANGING, 
1)
 
25940 EVT_WIZARD_CANCEL        = wx.PyEventBinder( wxEVT_WIZARD_CANCEL, 
1)
 
25941 EVT_WIZARD_HELP          = wx.PyEventBinder( wxEVT_WIZARD_HELP, 
1)
 
25942 EVT_WIZARD_FINISHED      = wx.PyEventBinder( wxEVT_WIZARD_FINISHED, 
1)
 
25944     <class name=
"WizardEvent" oldname=
"wxWizardEvent" module=
"wizard"> 
25945       <baseclass name=
"NotifyEvent"/> 
25946       <constructor name=
"WizardEvent" overloaded=
"no"> 
25947         <autodoc>__init__(wxEventType type=wxEVT_NULL, int id=-
1, bool direction=True, 
 
25948     WizardPage page=None) -
> WizardEvent
</autodoc> 
25950           <param name=
"type" type=
"wxEventType" default=
"wxEVT_NULL"/> 
25951           <param name=
"id" type=
"int" default=
"-1"/> 
25952           <param name=
"direction" type=
"bool" default=
"True"/> 
25953           <param name=
"page" type=
"wxWizardPage" default=
"NULL"/> 
25956       <method name=
"GetDirection" type=
"bool" overloaded=
"no"> 
25957         <autodoc>GetDirection() -
> bool
</autodoc> 
25959       <method name=
"GetPage" type=
"wxWizardPage" overloaded=
"no"> 
25960         <autodoc>GetPage() -
> WizardPage
</autodoc> 
25963     <class name=
"WizardPage" oldname=
"wxWizardPage" module=
"wizard"> 
25964       <baseclass name=
"Panel"/> 
25965       <method name=
"Create" type=
"bool" overloaded=
"no"> 
25966         <autodoc>Create(Wizard parent, Bitmap bitmap=wxNullBitmap, String resource=EmptyString) -
> bool
</autodoc> 
25968           <param name=
"parent" type=
"wxWizard" default=
""/> 
25969           <param name=
"bitmap" type=
"Bitmap" default=
"wxNullBitmap"/> 
25970           <param name=
"resource" type=
"String" default=
"wxPyEmptyString"/> 
25973       <method name=
"GetPrev" type=
"WizardPage" overloaded=
"no"> 
25974         <autodoc>GetPrev() -
> WizardPage
</autodoc> 
25976       <method name=
"GetNext" type=
"WizardPage" overloaded=
"no"> 
25977         <autodoc>GetNext() -
> WizardPage
</autodoc> 
25979       <method name=
"GetBitmap" type=
"Bitmap" overloaded=
"no"> 
25980         <autodoc>GetBitmap() -
> Bitmap
</autodoc> 
25983     <class name=
"PyWizardPage" oldname=
"wxPyWizardPage" module=
"wizard"> 
25984       <baseclass name=
"WizardPage"/> 
25985       <constructor name=
"PyWizardPage" overloaded=
"no"> 
25986         <autodoc>__init__(Wizard parent, Bitmap bitmap=
&wxNullBitmap, String resource=
&wxPyEmptyString) -
> PyWizardPage
</autodoc> 
25988           <param name=
"parent" type=
"wxWizard" default=
""/> 
25989           <param name=
"bitmap" type=
"Bitmap" default=
"&wxNullBitmap"/> 
25990           <param name=
"resource" type=
"String" default=
"&wxPyEmptyString"/> 
25993       <constructor name=
"PrePyWizardPage" overloaded=
"no"> 
25994         <autodoc>PrePyWizardPage() -
> PyWizardPage
</autodoc> 
25996       <method name=
"Create" type=
"bool" overloaded=
"no"> 
25997         <autodoc>Create(Wizard parent, Bitmap bitmap=wxNullBitmap, String resource=EmptyString) -
> bool
</autodoc> 
25999           <param name=
"parent" type=
"wxWizard" default=
""/> 
26000           <param name=
"bitmap" type=
"Bitmap" default=
"wxNullBitmap"/> 
26001           <param name=
"resource" type=
"String" default=
"wxPyEmptyString"/> 
26004       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
26005         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
26007           <param name=
"self" type=
"PyObject" default=
""/> 
26008           <param name=
"_class" type=
"PyObject" default=
""/> 
26011       <method name=
"base_DoMoveWindow" type=
"" overloaded=
"no"> 
26012         <autodoc>base_DoMoveWindow(int x, int y, int width, int height)
</autodoc> 
26014           <param name=
"x" type=
"int" default=
""/> 
26015           <param name=
"y" type=
"int" default=
""/> 
26016           <param name=
"width" type=
"int" default=
""/> 
26017           <param name=
"height" type=
"int" default=
""/> 
26020       <method name=
"base_DoSetSize" type=
"" overloaded=
"no"> 
26021         <autodoc>base_DoSetSize(int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)
</autodoc> 
26023           <param name=
"x" type=
"int" default=
""/> 
26024           <param name=
"y" type=
"int" default=
""/> 
26025           <param name=
"width" type=
"int" default=
""/> 
26026           <param name=
"height" type=
"int" default=
""/> 
26027           <param name=
"sizeFlags" type=
"int" default=
"wxSIZE_AUTO"/> 
26030       <method name=
"base_DoSetClientSize" type=
"" overloaded=
"no"> 
26031         <autodoc>base_DoSetClientSize(int width, int height)
</autodoc> 
26033           <param name=
"width" type=
"int" default=
""/> 
26034           <param name=
"height" type=
"int" default=
""/> 
26037       <method name=
"base_DoSetVirtualSize" type=
"" overloaded=
"no"> 
26038         <autodoc>base_DoSetVirtualSize(int x, int y)
</autodoc> 
26040           <param name=
"x" type=
"int" default=
""/> 
26041           <param name=
"y" type=
"int" default=
""/> 
26044       <method name=
"base_DoGetSize" type=
"" overloaded=
"no"> 
26045         <autodoc>base_DoGetSize() -
> (width, height)
</autodoc> 
26047           <param name=
"OUTPUT" type=
"int" default=
""/> 
26048           <param name=
"OUTPUT" type=
"int" default=
""/> 
26051       <method name=
"base_DoGetClientSize" type=
"" overloaded=
"no"> 
26052         <autodoc>base_DoGetClientSize() -
> (width, height)
</autodoc> 
26054           <param name=
"OUTPUT" type=
"int" default=
""/> 
26055           <param name=
"OUTPUT" type=
"int" default=
""/> 
26058       <method name=
"base_DoGetPosition" type=
"" overloaded=
"no"> 
26059         <autodoc>base_DoGetPosition() -
> (x,y)
</autodoc> 
26061           <param name=
"OUTPUT" type=
"int" default=
""/> 
26062           <param name=
"OUTPUT" type=
"int" default=
""/> 
26065       <method name=
"base_DoGetVirtualSize" type=
"Size" overloaded=
"no"> 
26066         <autodoc>base_DoGetVirtualSize() -
> Size
</autodoc> 
26068       <method name=
"base_DoGetBestSize" type=
"Size" overloaded=
"no"> 
26069         <autodoc>base_DoGetBestSize() -
> Size
</autodoc> 
26071       <method name=
"base_InitDialog" type=
"" overloaded=
"no"> 
26072         <autodoc>base_InitDialog()
</autodoc> 
26074       <method name=
"base_TransferDataToWindow" type=
"bool" overloaded=
"no"> 
26075         <autodoc>base_TransferDataToWindow() -
> bool
</autodoc> 
26077       <method name=
"base_TransferDataFromWindow" type=
"bool" overloaded=
"no"> 
26078         <autodoc>base_TransferDataFromWindow() -
> bool
</autodoc> 
26080       <method name=
"base_Validate" type=
"bool" overloaded=
"no"> 
26081         <autodoc>base_Validate() -
> bool
</autodoc> 
26083       <method name=
"base_AcceptsFocus" type=
"bool" overloaded=
"no"> 
26084         <autodoc>base_AcceptsFocus() -
> bool
</autodoc> 
26086       <method name=
"base_AcceptsFocusFromKeyboard" type=
"bool" overloaded=
"no"> 
26087         <autodoc>base_AcceptsFocusFromKeyboard() -
> bool
</autodoc> 
26089       <method name=
"base_GetMaxSize" type=
"Size" overloaded=
"no"> 
26090         <autodoc>base_GetMaxSize() -
> Size
</autodoc> 
26092       <method name=
"base_AddChild" type=
"" overloaded=
"no"> 
26093         <autodoc>base_AddChild(Window child)
</autodoc> 
26095           <param name=
"child" type=
"Window" default=
""/> 
26098       <method name=
"base_RemoveChild" type=
"" overloaded=
"no"> 
26099         <autodoc>base_RemoveChild(Window child)
</autodoc> 
26101           <param name=
"child" type=
"Window" default=
""/> 
26105     <class name=
"WizardPageSimple" oldname=
"wxWizardPageSimple" module=
"wizard"> 
26106       <baseclass name=
"WizardPage"/> 
26107       <constructor name=
"WizardPageSimple" overloaded=
"no"> 
26108         <autodoc>__init__(Wizard parent, WizardPage prev=None, WizardPage next=None, 
 
26109     Bitmap bitmap=wxNullBitmap, wxChar resource=None) -
> WizardPageSimple
</autodoc> 
26111           <param name=
"parent" type=
"wxWizard" default=
""/> 
26112           <param name=
"prev" type=
"WizardPage" default=
"NULL"/> 
26113           <param name=
"next" type=
"WizardPage" default=
"NULL"/> 
26114           <param name=
"bitmap" type=
"Bitmap" default=
"wxNullBitmap"/> 
26115           <param name=
"resource" type=
"wxChar" default=
"NULL"/> 
26118       <constructor name=
"PreWizardPageSimple" overloaded=
"no"> 
26119         <autodoc>PreWizardPageSimple() -
> WizardPageSimple
</autodoc> 
26121       <method name=
"Create" type=
"bool" overloaded=
"no"> 
26122         <autodoc>Create(Wizard parent=None, WizardPage prev=None, WizardPage next=None, 
 
26123     Bitmap bitmap=wxNullBitmap, wxChar resource=None) -
> bool
</autodoc> 
26125           <param name=
"parent" type=
"wxWizard" default=
"NULL"/> 
26126           <param name=
"prev" type=
"WizardPage" default=
"NULL"/> 
26127           <param name=
"next" type=
"WizardPage" default=
"NULL"/> 
26128           <param name=
"bitmap" type=
"Bitmap" default=
"wxNullBitmap"/> 
26129           <param name=
"resource" type=
"wxChar" default=
"NULL"/> 
26132       <method name=
"SetPrev" type=
"" overloaded=
"no"> 
26133         <autodoc>SetPrev(WizardPage prev)
</autodoc> 
26135           <param name=
"prev" type=
"WizardPage" default=
""/> 
26138       <method name=
"SetNext" type=
"" overloaded=
"no"> 
26139         <autodoc>SetNext(WizardPage next)
</autodoc> 
26141           <param name=
"next" type=
"WizardPage" default=
""/> 
26144       <staticmethod name=
"Chain" type=
"" overloaded=
"no"> 
26145         <autodoc>WizardPageSimple.Chain(WizardPageSimple first, WizardPageSimple second)
</autodoc> 
26147           <param name=
"first" type=
"WizardPageSimple" default=
""/> 
26148           <param name=
"second" type=
"WizardPageSimple" default=
""/> 
26152     <class name=
"Wizard" oldname=
"wxWizard" module=
"wizard"> 
26153       <baseclass name=
"Dialog"/> 
26154       <constructor name=
"Wizard" overloaded=
"no"> 
26155         <autodoc>__init__(Window parent, int id=-
1, String title=EmptyString, 
 
26156     Bitmap bitmap=wxNullBitmap, Point pos=DefaultPosition, 
 
26157     long style=DEFAULT_DIALOG_STYLE) -
> Wizard
</autodoc> 
26159           <param name=
"parent" type=
"Window" default=
""/> 
26160           <param name=
"id" type=
"int" default=
"-1"/> 
26161           <param name=
"title" type=
"String" default=
"wxPyEmptyString"/> 
26162           <param name=
"bitmap" type=
"Bitmap" default=
"wxNullBitmap"/> 
26163           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
26164           <param name=
"style" type=
"long" default=
"wxDEFAULT_DIALOG_STYLE"/> 
26167       <constructor name=
"PreWizard" overloaded=
"no"> 
26168         <autodoc>PreWizard() -
> Wizard
</autodoc> 
26170       <method name=
"Create" type=
"bool" overloaded=
"no"> 
26171         <autodoc>Create(Window parent, int id=-
1, String title=EmptyString, 
 
26172     Bitmap bitmap=wxNullBitmap, Point pos=DefaultPosition) -
> bool
</autodoc> 
26174           <param name=
"parent" type=
"Window" default=
""/> 
26175           <param name=
"id" type=
"int" default=
"-1"/> 
26176           <param name=
"title" type=
"String" default=
"wxPyEmptyString"/> 
26177           <param name=
"bitmap" type=
"Bitmap" default=
"wxNullBitmap"/> 
26178           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
26181       <method name=
"Init" type=
"" overloaded=
"no"> 
26182         <autodoc>Init()
</autodoc> 
26184       <method name=
"RunWizard" type=
"bool" overloaded=
"no"> 
26185         <autodoc>RunWizard(WizardPage firstPage) -
> bool
</autodoc> 
26187           <param name=
"firstPage" type=
"WizardPage" default=
""/> 
26190       <method name=
"GetCurrentPage" type=
"WizardPage" overloaded=
"no"> 
26191         <autodoc>GetCurrentPage() -
> WizardPage
</autodoc> 
26193       <method name=
"SetPageSize" type=
"" overloaded=
"no"> 
26194         <autodoc>SetPageSize(Size size)
</autodoc> 
26196           <param name=
"size" type=
"Size" default=
""/> 
26199       <method name=
"GetPageSize" type=
"Size" overloaded=
"no"> 
26200         <autodoc>GetPageSize() -
> Size
</autodoc> 
26202       <method name=
"FitToPage" type=
"" overloaded=
"no"> 
26203         <autodoc>FitToPage(WizardPage firstPage)
</autodoc> 
26205           <param name=
"firstPage" type=
"WizardPage" default=
""/> 
26208       <method name=
"GetPageAreaSizer" type=
"Sizer" overloaded=
"no"> 
26209         <autodoc>GetPageAreaSizer() -
> Sizer
</autodoc> 
26211       <method name=
"SetBorder" type=
"" overloaded=
"no"> 
26212         <autodoc>SetBorder(int border)
</autodoc> 
26214           <param name=
"border" type=
"int" default=
""/> 
26217       <method name=
"IsRunning" type=
"bool" overloaded=
"no"> 
26218         <autodoc>IsRunning() -
> bool
</autodoc> 
26220       <method name=
"ShowPage" type=
"bool" overloaded=
"no"> 
26221         <autodoc>ShowPage(WizardPage page, bool goingForward=True) -
> bool
</autodoc> 
26223           <param name=
"page" type=
"WizardPage" default=
""/> 
26224           <param name=
"goingForward" type=
"bool" default=
"True"/> 
26227       <method name=
"HasNextPage" type=
"bool" overloaded=
"no"> 
26228         <autodoc>HasNextPage(WizardPage page) -
> bool
</autodoc> 
26230           <param name=
"page" type=
"WizardPage" default=
""/> 
26233       <method name=
"HasPrevPage" type=
"bool" overloaded=
"no"> 
26234         <autodoc>HasPrevPage(WizardPage page) -
> bool
</autodoc> 
26236           <param name=
"page" type=
"WizardPage" default=
""/> 
26241   <module name=
"glcanvas"> 
26242     <import name=
"core"/> 
26243     <pythoncode> wx = core 
</pythoncode> 
26244     <class name=
"GLContext" oldname=
"wxGLContext" module=
"glcanvas"> 
26245       <baseclass name=
"Object"/> 
26246       <constructor name=
"GLContext" overloaded=
"no"> 
26247         <autodoc>__init__(bool isRGB, GLCanvas win, wxPalette palette=wxNullPalette, 
 
26248     GLContext other=None) -
> GLContext
</autodoc> 
26250           <param name=
"isRGB" type=
"bool" default=
""/> 
26251           <param name=
"win" type=
"wxGLCanvas" default=
""/> 
26252           <param name=
"palette" type=
"Palette" default=
"wxNullPalette"/> 
26253           <param name=
"other" type=
"GLContext" default=
"NULL"/> 
26256       <destructor name=
"~wxGLContext" overloaded=
"no"> 
26257         <autodoc>__del__()
</autodoc> 
26259       <method name=
"SetCurrent" type=
"" overloaded=
"no"> 
26260         <autodoc>SetCurrent()
</autodoc> 
26262       <method name=
"SetColour" type=
"" overloaded=
"no"> 
26263         <autodoc>SetColour(String colour)
</autodoc> 
26265           <param name=
"colour" type=
"String" default=
""/> 
26268       <method name=
"SwapBuffers" type=
"" overloaded=
"no"> 
26269         <autodoc>SwapBuffers()
</autodoc> 
26271       <method name=
"SetupPixelFormat" type=
"" overloaded=
"no"> 
26272         <autodoc>SetupPixelFormat()
</autodoc> 
26274       <method name=
"SetupPalette" type=
"" overloaded=
"no"> 
26275         <autodoc>SetupPalette(wxPalette palette)
</autodoc> 
26277           <param name=
"palette" type=
"Palette" default=
""/> 
26280       <method name=
"CreateDefaultPalette" type=
"Palette" overloaded=
"no"> 
26281         <autodoc>CreateDefaultPalette() -
> wxPalette
</autodoc> 
26283       <method name=
"GetPalette" type=
"Palette" overloaded=
"no"> 
26284         <autodoc>GetPalette() -
> wxPalette
</autodoc> 
26286       <method name=
"GetWindow" type=
"Window" overloaded=
"no"> 
26287         <autodoc>GetWindow() -
> Window
</autodoc> 
26290     <class name=
"GLCanvas" oldname=
"wxGLCanvas" module=
"glcanvas"> 
26291       <baseclass name=
"Window"/> 
26292       <constructor name=
"GLCanvas" overloaded=
"no"> 
26293         <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
26294     Size size=DefaultSize, long style=
0, String name=GLCanvasNameStr, 
 
26295     int attribList=None, wxPalette palette=wxNullPalette) -
> GLCanvas
</autodoc> 
26297           <param name=
"parent" type=
"Window" default=
""/> 
26298           <param name=
"id" type=
"int" default=
"-1"/> 
26299           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
26300           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
26301           <param name=
"style" type=
"long" default=
"0"/> 
26302           <param name=
"name" type=
"String" default=
"wxPyGLCanvasNameStr"/> 
26303           <param name=
"attribList" type=
"int" default=
"NULL"/> 
26304           <param name=
"palette" type=
"Palette" default=
"wxNullPalette"/> 
26307       <constructor name=
"wxGLCanvasWithContext" overloaded=
"no"> 
26308         <autodoc>wxGLCanvasWithContext(Window parent, GLContext shared=None, int id=-
1, Point pos=DefaultPosition, 
 
26309     Size size=DefaultSize, 
 
26310     long style=
0, String name=GLCanvasNameStr, 
 
26311     int attribList=None, wxPalette palette=wxNullPalette) -
> GLCanvas
</autodoc> 
26313           <param name=
"parent" type=
"Window" default=
""/> 
26314           <param name=
"shared" type=
"GLContext" default=
"NULL"/> 
26315           <param name=
"id" type=
"int" default=
"-1"/> 
26316           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
26317           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
26318           <param name=
"style" type=
"long" default=
"0"/> 
26319           <param name=
"name" type=
"String" default=
"wxPyGLCanvasNameStr"/> 
26320           <param name=
"attribList" type=
"int" default=
"NULL"/> 
26321           <param name=
"palette" type=
"Palette" default=
"wxNullPalette"/> 
26324       <method name=
"SetCurrent" type=
"" overloaded=
"no"> 
26325         <autodoc>SetCurrent()
</autodoc> 
26327       <method name=
"SetColour" type=
"" overloaded=
"no"> 
26328         <autodoc>SetColour(String colour)
</autodoc> 
26330           <param name=
"colour" type=
"String" default=
""/> 
26333       <method name=
"SwapBuffers" type=
"" overloaded=
"no"> 
26334         <autodoc>SwapBuffers()
</autodoc> 
26336       <method name=
"GetContext" type=
"GLContext" overloaded=
"no"> 
26337         <autodoc>GetContext() -
> GLContext
</autodoc> 
26341   <module name=
"ogl"> 
26342     <import name=
"windows"/> 
26343     <pythoncode> wx = core 
</pythoncode> 
26345 #---------------------------------------------------------------------------
 
26347     <class name=
"ShapeRegion" oldname=
"wxShapeRegion" module=
"ogl"> 
26348       <baseclass name=
"Object"/> 
26349       <constructor name=
"ShapeRegion" overloaded=
"no"> 
26350         <autodoc>__init__() -
> ShapeRegion
</autodoc> 
26352       <method name=
"SetText" type=
"" overloaded=
"no"> 
26353         <autodoc>SetText(String s)
</autodoc> 
26355           <param name=
"s" type=
"String" default=
""/> 
26358       <method name=
"SetFont" type=
"" overloaded=
"no"> 
26359         <autodoc>SetFont(Font f)
</autodoc> 
26361           <param name=
"f" type=
"Font" default=
""/> 
26364       <method name=
"SetMinSize" type=
"" overloaded=
"no"> 
26365         <autodoc>SetMinSize(double w, double h)
</autodoc> 
26367           <param name=
"w" type=
"double" default=
""/> 
26368           <param name=
"h" type=
"double" default=
""/> 
26371       <method name=
"SetSize" type=
"" overloaded=
"no"> 
26372         <autodoc>SetSize(double w, double h)
</autodoc> 
26374           <param name=
"w" type=
"double" default=
""/> 
26375           <param name=
"h" type=
"double" default=
""/> 
26378       <method name=
"SetPosition" type=
"" overloaded=
"no"> 
26379         <autodoc>SetPosition(double x, double y)
</autodoc> 
26381           <param name=
"x" type=
"double" default=
""/> 
26382           <param name=
"y" type=
"double" default=
""/> 
26385       <method name=
"SetProportions" type=
"" overloaded=
"no"> 
26386         <autodoc>SetProportions(double x, double y)
</autodoc> 
26388           <param name=
"x" type=
"double" default=
""/> 
26389           <param name=
"y" type=
"double" default=
""/> 
26392       <method name=
"SetFormatMode" type=
"" overloaded=
"no"> 
26393         <autodoc>SetFormatMode(int mode)
</autodoc> 
26395           <param name=
"mode" type=
"int" default=
""/> 
26398       <method name=
"SetName" type=
"" overloaded=
"no"> 
26399         <autodoc>SetName(String s)
</autodoc> 
26401           <param name=
"s" type=
"String" default=
""/> 
26404       <method name=
"SetColour" type=
"" overloaded=
"no"> 
26405         <autodoc>SetColour(String col)
</autodoc> 
26407           <param name=
"col" type=
"String" default=
""/> 
26410       <method name=
"GetText" type=
"String" overloaded=
"no"> 
26411         <autodoc>GetText() -
> String
</autodoc> 
26413       <method name=
"GetFont" type=
"Font" overloaded=
"no"> 
26414         <autodoc>GetFont() -
> Font
</autodoc> 
26416       <method name=
"GetMinSize" type=
"" overloaded=
"no"> 
26417         <autodoc>GetMinSize(double OUTPUT, double OUTPUT)
</autodoc> 
26419           <param name=
"OUTPUT" type=
"double" default=
""/> 
26420           <param name=
"OUTPUT" type=
"double" default=
""/> 
26423       <method name=
"GetProportion" type=
"" overloaded=
"no"> 
26424         <autodoc>GetProportion(double OUTPUT, double OUTPUT)
</autodoc> 
26426           <param name=
"OUTPUT" type=
"double" default=
""/> 
26427           <param name=
"OUTPUT" type=
"double" default=
""/> 
26430       <method name=
"GetSize" type=
"" overloaded=
"no"> 
26431         <autodoc>GetSize(double OUTPUT, double OUTPUT)
</autodoc> 
26433           <param name=
"OUTPUT" type=
"double" default=
""/> 
26434           <param name=
"OUTPUT" type=
"double" default=
""/> 
26437       <method name=
"GetPosition" type=
"" overloaded=
"no"> 
26438         <autodoc>GetPosition(double OUTPUT, double OUTPUT)
</autodoc> 
26440           <param name=
"OUTPUT" type=
"double" default=
""/> 
26441           <param name=
"OUTPUT" type=
"double" default=
""/> 
26444       <method name=
"GetFormatMode" type=
"int" overloaded=
"no"> 
26445         <autodoc>GetFormatMode() -
> int
</autodoc> 
26447       <method name=
"GetName" type=
"String" overloaded=
"no"> 
26448         <autodoc>GetName() -
> String
</autodoc> 
26450       <method name=
"GetColour" type=
"String" overloaded=
"no"> 
26451         <autodoc>GetColour() -
> String
</autodoc> 
26453       <method name=
"GetActualColourObject" type=
"Colour" overloaded=
"no"> 
26454         <autodoc>GetActualColourObject() -
> Colour
</autodoc> 
26456       <method name=
"GetFormattedText" type=
"wxList" overloaded=
"no"> 
26457         <autodoc>GetFormattedText() -
> wxList
</autodoc> 
26459       <method name=
"GetPenColour" type=
"String" overloaded=
"no"> 
26460         <autodoc>GetPenColour() -
> String
</autodoc> 
26462       <method name=
"GetPenStyle" type=
"int" overloaded=
"no"> 
26463         <autodoc>GetPenStyle() -
> int
</autodoc> 
26465       <method name=
"SetPenStyle" type=
"" overloaded=
"no"> 
26466         <autodoc>SetPenStyle(int style)
</autodoc> 
26468           <param name=
"style" type=
"int" default=
""/> 
26471       <method name=
"SetPenColour" type=
"" overloaded=
"no"> 
26472         <autodoc>SetPenColour(String col)
</autodoc> 
26474           <param name=
"col" type=
"String" default=
""/> 
26477       <method name=
"GetActualPen" type=
"Pen" overloaded=
"no"> 
26478         <autodoc>GetActualPen() -
> wxPen
</autodoc> 
26480       <method name=
"GetWidth" type=
"double" overloaded=
"no"> 
26481         <autodoc>GetWidth() -
> double
</autodoc> 
26483       <method name=
"GetHeight" type=
"double" overloaded=
"no"> 
26484         <autodoc>GetHeight() -
> double
</autodoc> 
26486       <method name=
"ClearText" type=
"" overloaded=
"no"> 
26487         <autodoc>ClearText()
</autodoc> 
26490     <class name=
"AttachmentPoint" oldname=
"wxAttachmentPoint" module=
"ogl"> 
26491       <baseclass name=
"Object"/> 
26492       <constructor name=
"AttachmentPoint" overloaded=
"no"> 
26493         <autodoc>__init__(int id=
0, double x=
0.0, double y=
0.0) -
> AttachmentPoint
</autodoc> 
26495           <param name=
"id" type=
"int" default=
"0"/> 
26496           <param name=
"x" type=
"double" default=
"0.0"/> 
26497           <param name=
"y" type=
"double" default=
"0.0"/> 
26500       <property name=
"m_id" type=
"int" readonly=
"no"/> 
26501       <property name=
"m_x" type=
"double" readonly=
"no"/> 
26502       <property name=
"m_y" type=
"double" readonly=
"no"/> 
26504     <class name=
"PyShapeEvtHandler" oldname=
"wxPyShapeEvtHandler" module=
"ogl"> 
26505       <baseclass name=
"Object"/> 
26506       <constructor name=
"PyShapeEvtHandler" overloaded=
"no"> 
26507         <autodoc>__init__(PyShapeEvtHandler prev=None, PyShape shape=None) -
> PyShapeEvtHandler
</autodoc> 
26509           <param name=
"prev" type=
"PyShapeEvtHandler" default=
"NULL"/> 
26510           <param name=
"shape" type=
"wxPyShape" default=
"NULL"/> 
26513       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
26514         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
26516           <param name=
"self" type=
"PyObject" default=
""/> 
26517           <param name=
"_class" type=
"PyObject" default=
""/> 
26520       <method name=
"_setOORInfo" type=
"" overloaded=
"no"> 
26521         <autodoc>_setOORInfo(PyObject _self)
</autodoc> 
26523           <param name=
"_self" type=
"PyObject" default=
""/> 
26526       <method name=
"SetShape" type=
"" overloaded=
"no"> 
26527         <autodoc>SetShape(PyShape sh)
</autodoc> 
26529           <param name=
"sh" type=
"wxPyShape" default=
""/> 
26532       <method name=
"GetShape" type=
"wxPyShape" overloaded=
"no"> 
26533         <autodoc>GetShape() -
> PyShape
</autodoc> 
26535       <method name=
"SetPreviousHandler" type=
"" overloaded=
"no"> 
26536         <autodoc>SetPreviousHandler(PyShapeEvtHandler handler)
</autodoc> 
26538           <param name=
"handler" type=
"PyShapeEvtHandler" default=
""/> 
26541       <method name=
"GetPreviousHandler" type=
"PyShapeEvtHandler" overloaded=
"no"> 
26542         <autodoc>GetPreviousHandler() -
> PyShapeEvtHandler
</autodoc> 
26544       <method name=
"CreateNewCopy" type=
"PyShapeEvtHandler" overloaded=
"no"> 
26545         <autodoc>CreateNewCopy() -
> PyShapeEvtHandler
</autodoc> 
26547       <method name=
"base_OnDelete" type=
"" overloaded=
"no"> 
26548         <autodoc>base_OnDelete()
</autodoc> 
26550       <method name=
"base_OnDraw" type=
"" overloaded=
"no"> 
26551         <autodoc>base_OnDraw(DC dc)
</autodoc> 
26553           <param name=
"dc" type=
"DC" default=
""/> 
26556       <method name=
"base_OnDrawContents" type=
"" overloaded=
"no"> 
26557         <autodoc>base_OnDrawContents(DC dc)
</autodoc> 
26559           <param name=
"dc" type=
"DC" default=
""/> 
26562       <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no"> 
26563         <autodoc>base_OnDrawBranches(DC dc, bool erase=False)
</autodoc> 
26565           <param name=
"dc" type=
"DC" default=
""/> 
26566           <param name=
"erase" type=
"bool" default=
"False"/> 
26569       <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no"> 
26570         <autodoc>base_OnMoveLinks(DC dc)
</autodoc> 
26572           <param name=
"dc" type=
"DC" default=
""/> 
26575       <method name=
"base_OnErase" type=
"" overloaded=
"no"> 
26576         <autodoc>base_OnErase(DC dc)
</autodoc> 
26578           <param name=
"dc" type=
"DC" default=
""/> 
26581       <method name=
"base_OnEraseContents" type=
"" overloaded=
"no"> 
26582         <autodoc>base_OnEraseContents(DC dc)
</autodoc> 
26584           <param name=
"dc" type=
"DC" default=
""/> 
26587       <method name=
"base_OnHighlight" type=
"" overloaded=
"no"> 
26588         <autodoc>base_OnHighlight(DC dc)
</autodoc> 
26590           <param name=
"dc" type=
"DC" default=
""/> 
26593       <method name=
"base_OnLeftClick" type=
"" overloaded=
"no"> 
26594         <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
26596           <param name=
"x" type=
"double" default=
""/> 
26597           <param name=
"y" type=
"double" default=
""/> 
26598           <param name=
"keys" type=
"int" default=
"0"/> 
26599           <param name=
"attachment" type=
"int" default=
"0"/> 
26602       <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no"> 
26603         <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
26605           <param name=
"x" type=
"double" default=
""/> 
26606           <param name=
"y" type=
"double" default=
""/> 
26607           <param name=
"keys" type=
"int" default=
"0"/> 
26608           <param name=
"attachment" type=
"int" default=
"0"/> 
26611       <method name=
"base_OnRightClick" type=
"" overloaded=
"no"> 
26612         <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
26614           <param name=
"x" type=
"double" default=
""/> 
26615           <param name=
"y" type=
"double" default=
""/> 
26616           <param name=
"keys" type=
"int" default=
"0"/> 
26617           <param name=
"attachment" type=
"int" default=
"0"/> 
26620       <method name=
"base_OnSize" type=
"" overloaded=
"no"> 
26621         <autodoc>base_OnSize(double x, double y)
</autodoc> 
26623           <param name=
"x" type=
"double" default=
""/> 
26624           <param name=
"y" type=
"double" default=
""/> 
26627       <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no"> 
26628         <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y, 
 
26629     bool display=True) -
> bool
</autodoc> 
26631           <param name=
"dc" type=
"DC" default=
""/> 
26632           <param name=
"x" type=
"double" default=
""/> 
26633           <param name=
"y" type=
"double" default=
""/> 
26634           <param name=
"old_x" type=
"double" default=
""/> 
26635           <param name=
"old_y" type=
"double" default=
""/> 
26636           <param name=
"display" type=
"bool" default=
"True"/> 
26639       <method name=
"base_OnMovePost" type=
"" overloaded=
"no"> 
26640         <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y, 
 
26641     bool display=True)
</autodoc> 
26643           <param name=
"dc" type=
"DC" default=
""/> 
26644           <param name=
"x" type=
"double" default=
""/> 
26645           <param name=
"y" type=
"double" default=
""/> 
26646           <param name=
"old_x" type=
"double" default=
""/> 
26647           <param name=
"old_y" type=
"double" default=
""/> 
26648           <param name=
"display" type=
"bool" default=
"True"/> 
26651       <method name=
"base_OnDragLeft" type=
"" overloaded=
"no"> 
26652         <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
26654           <param name=
"draw" type=
"bool" default=
""/> 
26655           <param name=
"x" type=
"double" default=
""/> 
26656           <param name=
"y" type=
"double" default=
""/> 
26657           <param name=
"keys" type=
"int" default=
"0"/> 
26658           <param name=
"attachment" type=
"int" default=
"0"/> 
26661       <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no"> 
26662         <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
26664           <param name=
"x" type=
"double" default=
""/> 
26665           <param name=
"y" type=
"double" default=
""/> 
26666           <param name=
"keys" type=
"int" default=
"0"/> 
26667           <param name=
"attachment" type=
"int" default=
"0"/> 
26670       <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no"> 
26671         <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
26673           <param name=
"x" type=
"double" default=
""/> 
26674           <param name=
"y" type=
"double" default=
""/> 
26675           <param name=
"keys" type=
"int" default=
"0"/> 
26676           <param name=
"attachment" type=
"int" default=
"0"/> 
26679       <method name=
"base_OnDragRight" type=
"" overloaded=
"no"> 
26680         <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
26682           <param name=
"draw" type=
"bool" default=
""/> 
26683           <param name=
"x" type=
"double" default=
""/> 
26684           <param name=
"y" type=
"double" default=
""/> 
26685           <param name=
"keys" type=
"int" default=
"0"/> 
26686           <param name=
"attachment" type=
"int" default=
"0"/> 
26689       <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no"> 
26690         <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
26692           <param name=
"x" type=
"double" default=
""/> 
26693           <param name=
"y" type=
"double" default=
""/> 
26694           <param name=
"keys" type=
"int" default=
"0"/> 
26695           <param name=
"attachment" type=
"int" default=
"0"/> 
26698       <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no"> 
26699         <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
26701           <param name=
"x" type=
"double" default=
""/> 
26702           <param name=
"y" type=
"double" default=
""/> 
26703           <param name=
"keys" type=
"int" default=
"0"/> 
26704           <param name=
"attachment" type=
"int" default=
"0"/> 
26707       <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no"> 
26708         <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc> 
26710           <param name=
"dc" type=
"DC" default=
""/> 
26711           <param name=
"x" type=
"double" default=
""/> 
26712           <param name=
"y" type=
"double" default=
""/> 
26713           <param name=
"w" type=
"double" default=
""/> 
26714           <param name=
"h" type=
"double" default=
""/> 
26717       <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no"> 
26718         <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc> 
26720           <param name=
"dc" type=
"DC" default=
""/> 
26723       <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no"> 
26724         <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc> 
26726           <param name=
"dc" type=
"DC" default=
""/> 
26729       <method name=
"base_OnMoveLink" type=
"" overloaded=
"no"> 
26730         <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc> 
26732           <param name=
"dc" type=
"DC" default=
""/> 
26733           <param name=
"moveControlPoints" type=
"bool" default=
"True"/> 
26736       <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no"> 
26737         <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0, 
 
26738     int attachment=
0)
</autodoc> 
26740           <param name=
"pt" type=
"wxPyControlPoint" default=
""/> 
26741           <param name=
"draw" type=
"bool" default=
""/> 
26742           <param name=
"x" type=
"double" default=
""/> 
26743           <param name=
"y" type=
"double" default=
""/> 
26744           <param name=
"keys" type=
"int" default=
"0"/> 
26745           <param name=
"attachment" type=
"int" default=
"0"/> 
26748       <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no"> 
26749         <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
26750     int attachment=
0)
</autodoc> 
26752           <param name=
"pt" type=
"wxPyControlPoint" default=
""/> 
26753           <param name=
"x" type=
"double" default=
""/> 
26754           <param name=
"y" type=
"double" default=
""/> 
26755           <param name=
"keys" type=
"int" default=
"0"/> 
26756           <param name=
"attachment" type=
"int" default=
"0"/> 
26759       <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no"> 
26760         <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
26761     int attachment=
0)
</autodoc> 
26763           <param name=
"pt" type=
"wxPyControlPoint" default=
""/> 
26764           <param name=
"x" type=
"double" default=
""/> 
26765           <param name=
"y" type=
"double" default=
""/> 
26766           <param name=
"keys" type=
"int" default=
"0"/> 
26767           <param name=
"attachment" type=
"int" default=
"0"/> 
26770       <method name=
"base_OnBeginSize" type=
"" overloaded=
"no"> 
26771         <autodoc>base_OnBeginSize(double w, double h)
</autodoc> 
26773           <param name=
"w" type=
"double" default=
""/> 
26774           <param name=
"h" type=
"double" default=
""/> 
26777       <method name=
"base_OnEndSize" type=
"" overloaded=
"no"> 
26778         <autodoc>base_OnEndSize(double w, double h)
</autodoc> 
26780           <param name=
"w" type=
"double" default=
""/> 
26781           <param name=
"h" type=
"double" default=
""/> 
26785     <class name=
"PyShape" oldname=
"wxPyShape" module=
"ogl"> 
26786       <baseclass name=
"PyShapeEvtHandler"/> 
26787       <constructor name=
"PyShape" overloaded=
"no"> 
26788         <autodoc>__init__(PyShapeCanvas can=None) -
> PyShape
</autodoc> 
26790           <param name=
"can" type=
"wxPyShapeCanvas" default=
"NULL"/> 
26793       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
26794         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
26796           <param name=
"self" type=
"PyObject" default=
""/> 
26797           <param name=
"_class" type=
"PyObject" default=
""/> 
26800       <method name=
"GetBoundingBoxMax" type=
"" overloaded=
"no"> 
26801         <autodoc>GetBoundingBoxMax(double OUTPUT, double OUTPUT)
</autodoc> 
26803           <param name=
"OUTPUT" type=
"double" default=
""/> 
26804           <param name=
"OUTPUT" type=
"double" default=
""/> 
26807       <method name=
"GetBoundingBoxMin" type=
"" overloaded=
"no"> 
26808         <autodoc>GetBoundingBoxMin(double OUTPUT, double OUTPUT)
</autodoc> 
26810           <param name=
"OUTPUT" type=
"double" default=
""/> 
26811           <param name=
"OUTPUT" type=
"double" default=
""/> 
26814       <method name=
"GetPerimeterPoint" type=
"bool" overloaded=
"no"> 
26815         <autodoc>GetPerimeterPoint(double x1, double y1, double x2, double y2, double OUTPUT, 
 
26816     double OUTPUT) -
> bool
</autodoc> 
26818           <param name=
"x1" type=
"double" default=
""/> 
26819           <param name=
"y1" type=
"double" default=
""/> 
26820           <param name=
"x2" type=
"double" default=
""/> 
26821           <param name=
"y2" type=
"double" default=
""/> 
26822           <param name=
"OUTPUT" type=
"double" default=
""/> 
26823           <param name=
"OUTPUT" type=
"double" default=
""/> 
26826       <method name=
"GetCanvas" type=
"wxPyShapeCanvas" overloaded=
"no"> 
26827         <autodoc>GetCanvas() -
> PyShapeCanvas
</autodoc> 
26829       <method name=
"SetCanvas" type=
"" overloaded=
"no"> 
26830         <autodoc>SetCanvas(PyShapeCanvas the_canvas)
</autodoc> 
26832           <param name=
"the_canvas" type=
"wxPyShapeCanvas" default=
""/> 
26835       <method name=
"AddToCanvas" type=
"" overloaded=
"no"> 
26836         <autodoc>AddToCanvas(PyShapeCanvas the_canvas, PyShape addAfter=None)
</autodoc> 
26838           <param name=
"the_canvas" type=
"wxPyShapeCanvas" default=
""/> 
26839           <param name=
"addAfter" type=
"PyShape" default=
"NULL"/> 
26842       <method name=
"InsertInCanvas" type=
"" overloaded=
"no"> 
26843         <autodoc>InsertInCanvas(PyShapeCanvas the_canvas)
</autodoc> 
26845           <param name=
"the_canvas" type=
"wxPyShapeCanvas" default=
""/> 
26848       <method name=
"RemoveFromCanvas" type=
"" overloaded=
"no"> 
26849         <autodoc>RemoveFromCanvas(PyShapeCanvas the_canvas)
</autodoc> 
26851           <param name=
"the_canvas" type=
"wxPyShapeCanvas" default=
""/> 
26854       <method name=
"GetX" type=
"double" overloaded=
"no"> 
26855         <autodoc>GetX() -
> double
</autodoc> 
26857       <method name=
"GetY" type=
"double" overloaded=
"no"> 
26858         <autodoc>GetY() -
> double
</autodoc> 
26860       <method name=
"SetX" type=
"" overloaded=
"no"> 
26861         <autodoc>SetX(double x)
</autodoc> 
26863           <param name=
"x" type=
"double" default=
""/> 
26866       <method name=
"SetY" type=
"" overloaded=
"no"> 
26867         <autodoc>SetY(double y)
</autodoc> 
26869           <param name=
"y" type=
"double" default=
""/> 
26872       <method name=
"GetParent" type=
"PyShape" overloaded=
"no"> 
26873         <autodoc>GetParent() -
> PyShape
</autodoc> 
26875       <method name=
"SetParent" type=
"" overloaded=
"no"> 
26876         <autodoc>SetParent(PyShape p)
</autodoc> 
26878           <param name=
"p" type=
"PyShape" default=
""/> 
26881       <method name=
"GetTopAncestor" type=
"PyShape" overloaded=
"no"> 
26882         <autodoc>GetTopAncestor() -
> PyShape
</autodoc> 
26884       <method name=
"GetChildren" type=
"PyObject" overloaded=
"no"> 
26885         <autodoc>GetChildren() -
> PyObject
</autodoc> 
26887       <method name=
"Unlink" type=
"" overloaded=
"no"> 
26888         <autodoc>Unlink()
</autodoc> 
26890       <method name=
"SetDrawHandles" type=
"" overloaded=
"no"> 
26891         <autodoc>SetDrawHandles(bool drawH)
</autodoc> 
26893           <param name=
"drawH" type=
"bool" default=
""/> 
26896       <method name=
"GetDrawHandles" type=
"bool" overloaded=
"no"> 
26897         <autodoc>GetDrawHandles() -
> bool
</autodoc> 
26899       <method name=
"MakeControlPoints" type=
"" overloaded=
"no"> 
26900         <autodoc>MakeControlPoints()
</autodoc> 
26902       <method name=
"DeleteControlPoints" type=
"" overloaded=
"no"> 
26903         <autodoc>DeleteControlPoints(DC dc=None)
</autodoc> 
26905           <param name=
"dc" type=
"DC" default=
"NULL"/> 
26908       <method name=
"ResetControlPoints" type=
"" overloaded=
"no"> 
26909         <autodoc>ResetControlPoints()
</autodoc> 
26911       <method name=
"GetEventHandler" type=
"PyShapeEvtHandler" overloaded=
"no"> 
26912         <autodoc>GetEventHandler() -
> PyShapeEvtHandler
</autodoc> 
26914       <method name=
"SetEventHandler" type=
"" overloaded=
"no"> 
26915         <autodoc>SetEventHandler(PyShapeEvtHandler handler)
</autodoc> 
26917           <param name=
"handler" type=
"PyShapeEvtHandler" default=
""/> 
26920       <method name=
"MakeMandatoryControlPoints" type=
"" overloaded=
"no"> 
26921         <autodoc>MakeMandatoryControlPoints()
</autodoc> 
26923       <method name=
"ResetMandatoryControlPoints" type=
"" overloaded=
"no"> 
26924         <autodoc>ResetMandatoryControlPoints()
</autodoc> 
26926       <method name=
"Recompute" type=
"bool" overloaded=
"no"> 
26927         <autodoc>Recompute() -
> bool
</autodoc> 
26929       <method name=
"CalculateSize" type=
"" overloaded=
"no"> 
26930         <autodoc>CalculateSize()
</autodoc> 
26932       <method name=
"Select" type=
"" overloaded=
"no"> 
26933         <autodoc>Select(bool select=True, DC dc=None)
</autodoc> 
26935           <param name=
"select" type=
"bool" default=
"True"/> 
26936           <param name=
"dc" type=
"DC" default=
"NULL"/> 
26939       <method name=
"SetHighlight" type=
"" overloaded=
"no"> 
26940         <autodoc>SetHighlight(bool hi=True, bool recurse=False)
</autodoc> 
26942           <param name=
"hi" type=
"bool" default=
"True"/> 
26943           <param name=
"recurse" type=
"bool" default=
"False"/> 
26946       <method name=
"IsHighlighted" type=
"bool" overloaded=
"no"> 
26947         <autodoc>IsHighlighted() -
> bool
</autodoc> 
26949       <method name=
"Selected" type=
"bool" overloaded=
"no"> 
26950         <autodoc>Selected() -
> bool
</autodoc> 
26952       <method name=
"AncestorSelected" type=
"bool" overloaded=
"no"> 
26953         <autodoc>AncestorSelected() -
> bool
</autodoc> 
26955       <method name=
"SetSensitivityFilter" type=
"" overloaded=
"no"> 
26956         <autodoc>SetSensitivityFilter(int sens=OP_ALL, bool recursive=False)
</autodoc> 
26958           <param name=
"sens" type=
"int" default=
"OP_ALL"/> 
26959           <param name=
"recursive" type=
"bool" default=
"False"/> 
26962       <method name=
"GetSensitivityFilter" type=
"int" overloaded=
"no"> 
26963         <autodoc>GetSensitivityFilter() -
> int
</autodoc> 
26965       <method name=
"SetDraggable" type=
"" overloaded=
"no"> 
26966         <autodoc>SetDraggable(bool drag, bool recursive=False)
</autodoc> 
26968           <param name=
"drag" type=
"bool" default=
""/> 
26969           <param name=
"recursive" type=
"bool" default=
"False"/> 
26972       <method name=
"SetFixedSize" type=
"" overloaded=
"no"> 
26973         <autodoc>SetFixedSize(bool x, bool y)
</autodoc> 
26975           <param name=
"x" type=
"bool" default=
""/> 
26976           <param name=
"y" type=
"bool" default=
""/> 
26979       <method name=
"GetFixedSize" type=
"" overloaded=
"no"> 
26980         <autodoc>GetFixedSize(bool OUTPUT, bool OUTPUT)
</autodoc> 
26982           <param name=
"OUTPUT" type=
"bool" default=
""/> 
26983           <param name=
"OUTPUT" type=
"bool" default=
""/> 
26986       <method name=
"GetFixedWidth" type=
"bool" overloaded=
"no"> 
26987         <autodoc>GetFixedWidth() -
> bool
</autodoc> 
26989       <method name=
"GetFixedHeight" type=
"bool" overloaded=
"no"> 
26990         <autodoc>GetFixedHeight() -
> bool
</autodoc> 
26992       <method name=
"SetSpaceAttachments" type=
"" overloaded=
"no"> 
26993         <autodoc>SetSpaceAttachments(bool sp)
</autodoc> 
26995           <param name=
"sp" type=
"bool" default=
""/> 
26998       <method name=
"GetSpaceAttachments" type=
"bool" overloaded=
"no"> 
26999         <autodoc>GetSpaceAttachments() -
> bool
</autodoc> 
27001       <method name=
"SetShadowMode" type=
"" overloaded=
"no"> 
27002         <autodoc>SetShadowMode(int mode, bool redraw=False)
</autodoc> 
27004           <param name=
"mode" type=
"int" default=
""/> 
27005           <param name=
"redraw" type=
"bool" default=
"False"/> 
27008       <method name=
"GetShadowMode" type=
"int" overloaded=
"no"> 
27009         <autodoc>GetShadowMode() -
> int
</autodoc> 
27011       <method name=
"HitTest" type=
"bool" overloaded=
"no"> 
27012         <autodoc>HitTest(double x, double y, int OUTPUT, double OUTPUT) -
> bool
</autodoc> 
27014           <param name=
"x" type=
"double" default=
""/> 
27015           <param name=
"y" type=
"double" default=
""/> 
27016           <param name=
"OUTPUT" type=
"int" default=
""/> 
27017           <param name=
"OUTPUT" type=
"double" default=
""/> 
27020       <method name=
"SetCentreResize" type=
"" overloaded=
"no"> 
27021         <autodoc>SetCentreResize(bool cr)
</autodoc> 
27023           <param name=
"cr" type=
"bool" default=
""/> 
27026       <method name=
"GetCentreResize" type=
"bool" overloaded=
"no"> 
27027         <autodoc>GetCentreResize() -
> bool
</autodoc> 
27029       <method name=
"SetMaintainAspectRatio" type=
"" overloaded=
"no"> 
27030         <autodoc>SetMaintainAspectRatio(bool ar)
</autodoc> 
27032           <param name=
"ar" type=
"bool" default=
""/> 
27035       <method name=
"GetMaintainAspectRatio" type=
"bool" overloaded=
"no"> 
27036         <autodoc>GetMaintainAspectRatio() -
> bool
</autodoc> 
27038       <method name=
"GetLines" type=
"PyObject" overloaded=
"no"> 
27039         <autodoc>GetLines() -
> PyObject
</autodoc> 
27041       <method name=
"SetDisableLabel" type=
"" overloaded=
"no"> 
27042         <autodoc>SetDisableLabel(bool flag)
</autodoc> 
27044           <param name=
"flag" type=
"bool" default=
""/> 
27047       <method name=
"GetDisableLabel" type=
"bool" overloaded=
"no"> 
27048         <autodoc>GetDisableLabel() -
> bool
</autodoc> 
27050       <method name=
"SetAttachmentMode" type=
"" overloaded=
"no"> 
27051         <autodoc>SetAttachmentMode(int mode)
</autodoc> 
27053           <param name=
"mode" type=
"int" default=
""/> 
27056       <method name=
"GetAttachmentMode" type=
"int" overloaded=
"no"> 
27057         <autodoc>GetAttachmentMode() -
> int
</autodoc> 
27059       <method name=
"SetId" type=
"" overloaded=
"no"> 
27060         <autodoc>SetId(long i)
</autodoc> 
27062           <param name=
"i" type=
"long" default=
""/> 
27065       <method name=
"GetId" type=
"long" overloaded=
"no"> 
27066         <autodoc>GetId() -
> long
</autodoc> 
27068       <method name=
"SetPen" type=
"" overloaded=
"no"> 
27069         <autodoc>SetPen(wxPen pen)
</autodoc> 
27071           <param name=
"pen" type=
"Pen" default=
""/> 
27074       <method name=
"SetBrush" type=
"" overloaded=
"no"> 
27075         <autodoc>SetBrush(wxBrush brush)
</autodoc> 
27077           <param name=
"brush" type=
"Brush" default=
""/> 
27080       <method name=
"Show" type=
"" overloaded=
"no"> 
27081         <autodoc>Show(bool show)
</autodoc> 
27083           <param name=
"show" type=
"bool" default=
""/> 
27086       <method name=
"IsShown" type=
"bool" overloaded=
"no"> 
27087         <autodoc>IsShown() -
> bool
</autodoc> 
27089       <method name=
"Move" type=
"" overloaded=
"no"> 
27090         <autodoc>Move(DC dc, double x1, double y1, bool display=True)
</autodoc> 
27092           <param name=
"dc" type=
"DC" default=
""/> 
27093           <param name=
"x1" type=
"double" default=
""/> 
27094           <param name=
"y1" type=
"double" default=
""/> 
27095           <param name=
"display" type=
"bool" default=
"True"/> 
27098       <method name=
"Erase" type=
"" overloaded=
"no"> 
27099         <autodoc>Erase(DC dc)
</autodoc> 
27101           <param name=
"dc" type=
"DC" default=
""/> 
27104       <method name=
"EraseContents" type=
"" overloaded=
"no"> 
27105         <autodoc>EraseContents(DC dc)
</autodoc> 
27107           <param name=
"dc" type=
"DC" default=
""/> 
27110       <method name=
"Draw" type=
"" overloaded=
"no"> 
27111         <autodoc>Draw(DC dc)
</autodoc> 
27113           <param name=
"dc" type=
"DC" default=
""/> 
27116       <method name=
"Flash" type=
"" overloaded=
"no"> 
27117         <autodoc>Flash()
</autodoc> 
27119       <method name=
"MoveLinks" type=
"" overloaded=
"no"> 
27120         <autodoc>MoveLinks(DC dc)
</autodoc> 
27122           <param name=
"dc" type=
"DC" default=
""/> 
27125       <method name=
"DrawContents" type=
"" overloaded=
"no"> 
27126         <autodoc>DrawContents(DC dc)
</autodoc> 
27128           <param name=
"dc" type=
"DC" default=
""/> 
27131       <method name=
"SetSize" type=
"" overloaded=
"no"> 
27132         <autodoc>SetSize(double x, double y, bool recursive=True)
</autodoc> 
27134           <param name=
"x" type=
"double" default=
""/> 
27135           <param name=
"y" type=
"double" default=
""/> 
27136           <param name=
"recursive" type=
"bool" default=
"True"/> 
27139       <method name=
"SetAttachmentSize" type=
"" overloaded=
"no"> 
27140         <autodoc>SetAttachmentSize(double x, double y)
</autodoc> 
27142           <param name=
"x" type=
"double" default=
""/> 
27143           <param name=
"y" type=
"double" default=
""/> 
27146       <method name=
"Attach" type=
"" overloaded=
"no"> 
27147         <autodoc>Attach(PyShapeCanvas can)
</autodoc> 
27149           <param name=
"can" type=
"wxPyShapeCanvas" default=
""/> 
27152       <method name=
"Detach" type=
"" overloaded=
"no"> 
27153         <autodoc>Detach()
</autodoc> 
27155       <method name=
"Constrain" type=
"bool" overloaded=
"no"> 
27156         <autodoc>Constrain() -
> bool
</autodoc> 
27158       <method name=
"AddLine" type=
"" overloaded=
"no"> 
27159         <autodoc>AddLine(PyLineShape line, PyShape other, int attachFrom=
0, 
 
27160     int attachTo=
0, int positionFrom=-
1, int positionTo=-
1)
</autodoc> 
27162           <param name=
"line" type=
"wxPyLineShape" default=
""/> 
27163           <param name=
"other" type=
"PyShape" default=
""/> 
27164           <param name=
"attachFrom" type=
"int" default=
"0"/> 
27165           <param name=
"attachTo" type=
"int" default=
"0"/> 
27166           <param name=
"positionFrom" type=
"int" default=
"-1"/> 
27167           <param name=
"positionTo" type=
"int" default=
"-1"/> 
27170       <method name=
"GetLinePosition" type=
"int" overloaded=
"no"> 
27171         <autodoc>GetLinePosition(PyLineShape line) -
> int
</autodoc> 
27173           <param name=
"line" type=
"wxPyLineShape" default=
""/> 
27176       <method name=
"AddText" type=
"" overloaded=
"no"> 
27177         <autodoc>AddText(String string)
</autodoc> 
27179           <param name=
"string" type=
"String" default=
""/> 
27182       <method name=
"GetPen" type=
"Pen" overloaded=
"no"> 
27183         <autodoc>GetPen() -
> wxPen
</autodoc> 
27185       <method name=
"GetBrush" type=
"Brush" overloaded=
"no"> 
27186         <autodoc>GetBrush() -
> wxBrush
</autodoc> 
27188       <method name=
"SetDefaultRegionSize" type=
"" overloaded=
"no"> 
27189         <autodoc>SetDefaultRegionSize()
</autodoc> 
27191       <method name=
"FormatText" type=
"" overloaded=
"no"> 
27192         <autodoc>FormatText(DC dc, String s, int regionId=
0)
</autodoc> 
27194           <param name=
"dc" type=
"DC" default=
""/> 
27195           <param name=
"s" type=
"String" default=
""/> 
27196           <param name=
"regionId" type=
"int" default=
"0"/> 
27199       <method name=
"SetFormatMode" type=
"" overloaded=
"no"> 
27200         <autodoc>SetFormatMode(int mode, int regionId=
0)
</autodoc> 
27202           <param name=
"mode" type=
"int" default=
""/> 
27203           <param name=
"regionId" type=
"int" default=
"0"/> 
27206       <method name=
"GetFormatMode" type=
"int" overloaded=
"no"> 
27207         <autodoc>GetFormatMode(int regionId=
0) -
> int
</autodoc> 
27209           <param name=
"regionId" type=
"int" default=
"0"/> 
27212       <method name=
"SetFont" type=
"" overloaded=
"no"> 
27213         <autodoc>SetFont(Font font, int regionId=
0)
</autodoc> 
27215           <param name=
"font" type=
"Font" default=
""/> 
27216           <param name=
"regionId" type=
"int" default=
"0"/> 
27219       <method name=
"GetFont" type=
"Font" overloaded=
"no"> 
27220         <autodoc>GetFont(int regionId=
0) -
> Font
</autodoc> 
27222           <param name=
"regionId" type=
"int" default=
"0"/> 
27225       <method name=
"SetTextColour" type=
"" overloaded=
"no"> 
27226         <autodoc>SetTextColour(String colour, int regionId=
0)
</autodoc> 
27228           <param name=
"colour" type=
"String" default=
""/> 
27229           <param name=
"regionId" type=
"int" default=
"0"/> 
27232       <method name=
"GetTextColour" type=
"String" overloaded=
"no"> 
27233         <autodoc>GetTextColour(int regionId=
0) -
> String
</autodoc> 
27235           <param name=
"regionId" type=
"int" default=
"0"/> 
27238       <method name=
"GetNumberOfTextRegions" type=
"int" overloaded=
"no"> 
27239         <autodoc>GetNumberOfTextRegions() -
> int
</autodoc> 
27241       <method name=
"SetRegionName" type=
"" overloaded=
"no"> 
27242         <autodoc>SetRegionName(String name, int regionId=
0)
</autodoc> 
27244           <param name=
"name" type=
"String" default=
""/> 
27245           <param name=
"regionId" type=
"int" default=
"0"/> 
27248       <method name=
"GetRegionName" type=
"String" overloaded=
"no"> 
27249         <autodoc>GetRegionName(int regionId) -
> String
</autodoc> 
27251           <param name=
"regionId" type=
"int" default=
""/> 
27254       <method name=
"GetRegionId" type=
"int" overloaded=
"no"> 
27255         <autodoc>GetRegionId(String name) -
> int
</autodoc> 
27257           <param name=
"name" type=
"String" default=
""/> 
27260       <method name=
"NameRegions" type=
"" overloaded=
"no"> 
27261         <autodoc>NameRegions(String parentName=EmptyString)
</autodoc> 
27263           <param name=
"parentName" type=
"String" default=
"wxPyEmptyString"/> 
27266       <method name=
"GetRegions" type=
"PyObject" overloaded=
"no"> 
27267         <autodoc>GetRegions() -
> PyObject
</autodoc> 
27269       <method name=
"AddRegion" type=
"" overloaded=
"no"> 
27270         <autodoc>AddRegion(ShapeRegion region)
</autodoc> 
27272           <param name=
"region" type=
"ShapeRegion" default=
""/> 
27275       <method name=
"ClearRegions" type=
"" overloaded=
"no"> 
27276         <autodoc>ClearRegions()
</autodoc> 
27278       <method name=
"AssignNewIds" type=
"" overloaded=
"no"> 
27279         <autodoc>AssignNewIds()
</autodoc> 
27281       <method name=
"FindRegion" type=
"PyShape" overloaded=
"no"> 
27282         <autodoc>FindRegion(String regionName, int OUTPUT) -
> PyShape
</autodoc> 
27284           <param name=
"regionName" type=
"String" default=
""/> 
27285           <param name=
"OUTPUT" type=
"int" default=
""/> 
27288       <method name=
"FindRegionNames" type=
"" overloaded=
"no"> 
27289         <autodoc>FindRegionNames(wxStringList list)
</autodoc> 
27291           <param name=
"list" type=
"wxStringList" default=
""/> 
27294       <method name=
"ClearText" type=
"" overloaded=
"no"> 
27295         <autodoc>ClearText(int regionId=
0)
</autodoc> 
27297           <param name=
"regionId" type=
"int" default=
"0"/> 
27300       <method name=
"RemoveLine" type=
"" overloaded=
"no"> 
27301         <autodoc>RemoveLine(PyLineShape line)
</autodoc> 
27303           <param name=
"line" type=
"wxPyLineShape" default=
""/> 
27306       <method name=
"GetAttachmentPosition" type=
"bool" overloaded=
"no"> 
27307         <autodoc>GetAttachmentPosition(int attachment, double OUTPUT, double OUTPUT, int nth=
0, 
 
27308     int no_arcs=
1, PyLineShape line=None) -
> bool
</autodoc> 
27310           <param name=
"attachment" type=
"int" default=
""/> 
27311           <param name=
"OUTPUT" type=
"double" default=
""/> 
27312           <param name=
"OUTPUT" type=
"double" default=
""/> 
27313           <param name=
"nth" type=
"int" default=
"0"/> 
27314           <param name=
"no_arcs" type=
"int" default=
"1"/> 
27315           <param name=
"line" type=
"wxPyLineShape" default=
"NULL"/> 
27318       <method name=
"GetNumberOfAttachments" type=
"int" overloaded=
"no"> 
27319         <autodoc>GetNumberOfAttachments() -
> int
</autodoc> 
27321       <method name=
"AttachmentIsValid" type=
"bool" overloaded=
"no"> 
27322         <autodoc>AttachmentIsValid(int attachment) -
> bool
</autodoc> 
27324           <param name=
"attachment" type=
"int" default=
""/> 
27327       <method name=
"GetAttachments" type=
"PyObject" overloaded=
"no"> 
27328         <autodoc>GetAttachments() -
> PyObject
</autodoc> 
27330       <method name=
"GetAttachmentPositionEdge" type=
"bool" overloaded=
"no"> 
27331         <autodoc>GetAttachmentPositionEdge(int attachment, double OUTPUT, double OUTPUT, int nth=
0, 
 
27332     int no_arcs=
1, PyLineShape line=None) -
> bool
</autodoc> 
27334           <param name=
"attachment" type=
"int" default=
""/> 
27335           <param name=
"OUTPUT" type=
"double" default=
""/> 
27336           <param name=
"OUTPUT" type=
"double" default=
""/> 
27337           <param name=
"nth" type=
"int" default=
"0"/> 
27338           <param name=
"no_arcs" type=
"int" default=
"1"/> 
27339           <param name=
"line" type=
"wxPyLineShape" default=
"NULL"/> 
27342       <method name=
"CalcSimpleAttachment" type=
"RealPoint" overloaded=
"no"> 
27343         <autodoc>CalcSimpleAttachment(RealPoint pt1, RealPoint pt2, int nth, int noArcs, 
 
27344     PyLineShape line) -
> RealPoint
</autodoc> 
27346           <param name=
"pt1" type=
"RealPoint" default=
""/> 
27347           <param name=
"pt2" type=
"RealPoint" default=
""/> 
27348           <param name=
"nth" type=
"int" default=
""/> 
27349           <param name=
"noArcs" type=
"int" default=
""/> 
27350           <param name=
"line" type=
"wxPyLineShape" default=
""/> 
27353       <method name=
"AttachmentSortTest" type=
"bool" overloaded=
"no"> 
27354         <autodoc>AttachmentSortTest(int attachmentPoint, RealPoint pt1, RealPoint pt2) -
> bool
</autodoc> 
27356           <param name=
"attachmentPoint" type=
"int" default=
""/> 
27357           <param name=
"pt1" type=
"RealPoint" default=
""/> 
27358           <param name=
"pt2" type=
"RealPoint" default=
""/> 
27361       <method name=
"EraseLinks" type=
"" overloaded=
"no"> 
27362         <autodoc>EraseLinks(DC dc, int attachment=-
1, bool recurse=False)
</autodoc> 
27364           <param name=
"dc" type=
"DC" default=
""/> 
27365           <param name=
"attachment" type=
"int" default=
"-1"/> 
27366           <param name=
"recurse" type=
"bool" default=
"False"/> 
27369       <method name=
"DrawLinks" type=
"" overloaded=
"no"> 
27370         <autodoc>DrawLinks(DC dc, int attachment=-
1, bool recurse=False)
</autodoc> 
27372           <param name=
"dc" type=
"DC" default=
""/> 
27373           <param name=
"attachment" type=
"int" default=
"-1"/> 
27374           <param name=
"recurse" type=
"bool" default=
"False"/> 
27377       <method name=
"MoveLineToNewAttachment" type=
"bool" overloaded=
"no"> 
27378         <autodoc>MoveLineToNewAttachment(DC dc, PyLineShape to_move, double x, double y) -
> bool
</autodoc> 
27380           <param name=
"dc" type=
"DC" default=
""/> 
27381           <param name=
"to_move" type=
"wxPyLineShape" default=
""/> 
27382           <param name=
"x" type=
"double" default=
""/> 
27383           <param name=
"y" type=
"double" default=
""/> 
27386       <method name=
"ApplyAttachmentOrdering" type=
"" overloaded=
"no"> 
27387         <autodoc>ApplyAttachmentOrdering(PyObject linesToSort)
</autodoc> 
27389           <param name=
"linesToSort" type=
"PyObject" default=
""/> 
27392       <method name=
"GetBranchingAttachmentRoot" type=
"RealPoint" overloaded=
"no"> 
27393         <autodoc>GetBranchingAttachmentRoot(int attachment) -
> RealPoint
</autodoc> 
27395           <param name=
"attachment" type=
"int" default=
""/> 
27398       <method name=
"GetBranchingAttachmentInfo" type=
"bool" overloaded=
"no"> 
27399         <autodoc>GetBranchingAttachmentInfo(int attachment, RealPoint root, RealPoint neck, RealPoint shoulder1, 
 
27400     RealPoint shoulder2) -
> bool
</autodoc> 
27402           <param name=
"attachment" type=
"int" default=
""/> 
27403           <param name=
"root" type=
"RealPoint" default=
""/> 
27404           <param name=
"neck" type=
"RealPoint" default=
""/> 
27405           <param name=
"shoulder1" type=
"RealPoint" default=
""/> 
27406           <param name=
"shoulder2" type=
"RealPoint" default=
""/> 
27409       <method name=
"GetBranchingAttachmentPoint" type=
"bool" overloaded=
"no"> 
27410         <autodoc>GetBranchingAttachmentPoint(int attachment, int n, RealPoint attachmentPoint, RealPoint stemPoint) -
> bool
</autodoc> 
27412           <param name=
"attachment" type=
"int" default=
""/> 
27413           <param name=
"n" type=
"int" default=
""/> 
27414           <param name=
"attachmentPoint" type=
"RealPoint" default=
""/> 
27415           <param name=
"stemPoint" type=
"RealPoint" default=
""/> 
27418       <method name=
"GetAttachmentLineCount" type=
"int" overloaded=
"no"> 
27419         <autodoc>GetAttachmentLineCount(int attachment) -
> int
</autodoc> 
27421           <param name=
"attachment" type=
"int" default=
""/> 
27424       <method name=
"SetBranchNeckLength" type=
"" overloaded=
"no"> 
27425         <autodoc>SetBranchNeckLength(int len)
</autodoc> 
27427           <param name=
"len" type=
"int" default=
""/> 
27430       <method name=
"GetBranchNeckLength" type=
"int" overloaded=
"no"> 
27431         <autodoc>GetBranchNeckLength() -
> int
</autodoc> 
27433       <method name=
"SetBranchStemLength" type=
"" overloaded=
"no"> 
27434         <autodoc>SetBranchStemLength(int len)
</autodoc> 
27436           <param name=
"len" type=
"int" default=
""/> 
27439       <method name=
"GetBranchStemLength" type=
"int" overloaded=
"no"> 
27440         <autodoc>GetBranchStemLength() -
> int
</autodoc> 
27442       <method name=
"SetBranchSpacing" type=
"" overloaded=
"no"> 
27443         <autodoc>SetBranchSpacing(int len)
</autodoc> 
27445           <param name=
"len" type=
"int" default=
""/> 
27448       <method name=
"GetBranchSpacing" type=
"int" overloaded=
"no"> 
27449         <autodoc>GetBranchSpacing() -
> int
</autodoc> 
27451       <method name=
"SetBranchStyle" type=
"" overloaded=
"no"> 
27452         <autodoc>SetBranchStyle(long style)
</autodoc> 
27454           <param name=
"style" type=
"long" default=
""/> 
27457       <method name=
"GetBranchStyle" type=
"long" overloaded=
"no"> 
27458         <autodoc>GetBranchStyle() -
> long
</autodoc> 
27460       <method name=
"PhysicalToLogicalAttachment" type=
"int" overloaded=
"no"> 
27461         <autodoc>PhysicalToLogicalAttachment(int physicalAttachment) -
> int
</autodoc> 
27463           <param name=
"physicalAttachment" type=
"int" default=
""/> 
27466       <method name=
"LogicalToPhysicalAttachment" type=
"int" overloaded=
"no"> 
27467         <autodoc>LogicalToPhysicalAttachment(int logicalAttachment) -
> int
</autodoc> 
27469           <param name=
"logicalAttachment" type=
"int" default=
""/> 
27472       <method name=
"Draggable" type=
"bool" overloaded=
"no"> 
27473         <autodoc>Draggable() -
> bool
</autodoc> 
27475       <method name=
"HasDescendant" type=
"bool" overloaded=
"no"> 
27476         <autodoc>HasDescendant(PyShape image) -
> bool
</autodoc> 
27478           <param name=
"image" type=
"PyShape" default=
""/> 
27481       <method name=
"CreateNewCopy" type=
"PyShape" overloaded=
"no"> 
27482         <autodoc>CreateNewCopy(bool resetMapping=True, bool recompute=True) -
> PyShape
</autodoc> 
27484           <param name=
"resetMapping" type=
"bool" default=
"True"/> 
27485           <param name=
"recompute" type=
"bool" default=
"True"/> 
27488       <method name=
"Copy" type=
"" overloaded=
"no"> 
27489         <autodoc>Copy(PyShape copy)
</autodoc> 
27491           <param name=
"copy" type=
"PyShape" default=
""/> 
27494       <method name=
"CopyWithHandler" type=
"" overloaded=
"no"> 
27495         <autodoc>CopyWithHandler(PyShape copy)
</autodoc> 
27497           <param name=
"copy" type=
"PyShape" default=
""/> 
27500       <method name=
"Rotate" type=
"" overloaded=
"no"> 
27501         <autodoc>Rotate(double x, double y, double theta)
</autodoc> 
27503           <param name=
"x" type=
"double" default=
""/> 
27504           <param name=
"y" type=
"double" default=
""/> 
27505           <param name=
"theta" type=
"double" default=
""/> 
27508       <method name=
"GetRotation" type=
"double" overloaded=
"no"> 
27509         <autodoc>GetRotation() -
> double
</autodoc> 
27511       <method name=
"SetRotation" type=
"" overloaded=
"no"> 
27512         <autodoc>SetRotation(double rotation)
</autodoc> 
27514           <param name=
"rotation" type=
"double" default=
""/> 
27517       <method name=
"ClearAttachments" type=
"" overloaded=
"no"> 
27518         <autodoc>ClearAttachments()
</autodoc> 
27520       <method name=
"Recentre" type=
"" overloaded=
"no"> 
27521         <autodoc>Recentre(DC dc)
</autodoc> 
27523           <param name=
"dc" type=
"DC" default=
""/> 
27526       <method name=
"ClearPointList" type=
"" overloaded=
"no"> 
27527         <autodoc>ClearPointList(wxList list)
</autodoc> 
27529           <param name=
"list" type=
"wxList" default=
""/> 
27532       <method name=
"GetBackgroundPen" type=
"Pen" overloaded=
"no"> 
27533         <autodoc>GetBackgroundPen() -
> wxPen
</autodoc> 
27535       <method name=
"GetBackgroundBrush" type=
"Brush" overloaded=
"no"> 
27536         <autodoc>GetBackgroundBrush() -
> wxBrush
</autodoc> 
27538       <method name=
"base_OnDelete" type=
"" overloaded=
"no"> 
27539         <autodoc>base_OnDelete()
</autodoc> 
27541       <method name=
"base_OnDraw" type=
"" overloaded=
"no"> 
27542         <autodoc>base_OnDraw(DC dc)
</autodoc> 
27544           <param name=
"dc" type=
"DC" default=
""/> 
27547       <method name=
"base_OnDrawContents" type=
"" overloaded=
"no"> 
27548         <autodoc>base_OnDrawContents(DC dc)
</autodoc> 
27550           <param name=
"dc" type=
"DC" default=
""/> 
27553       <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no"> 
27554         <autodoc>base_OnDrawBranches(DC dc, bool erase=False)
</autodoc> 
27556           <param name=
"dc" type=
"DC" default=
""/> 
27557           <param name=
"erase" type=
"bool" default=
"False"/> 
27560       <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no"> 
27561         <autodoc>base_OnMoveLinks(DC dc)
</autodoc> 
27563           <param name=
"dc" type=
"DC" default=
""/> 
27566       <method name=
"base_OnErase" type=
"" overloaded=
"no"> 
27567         <autodoc>base_OnErase(DC dc)
</autodoc> 
27569           <param name=
"dc" type=
"DC" default=
""/> 
27572       <method name=
"base_OnEraseContents" type=
"" overloaded=
"no"> 
27573         <autodoc>base_OnEraseContents(DC dc)
</autodoc> 
27575           <param name=
"dc" type=
"DC" default=
""/> 
27578       <method name=
"base_OnHighlight" type=
"" overloaded=
"no"> 
27579         <autodoc>base_OnHighlight(DC dc)
</autodoc> 
27581           <param name=
"dc" type=
"DC" default=
""/> 
27584       <method name=
"base_OnLeftClick" type=
"" overloaded=
"no"> 
27585         <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
27587           <param name=
"x" type=
"double" default=
""/> 
27588           <param name=
"y" type=
"double" default=
""/> 
27589           <param name=
"keys" type=
"int" default=
"0"/> 
27590           <param name=
"attachment" type=
"int" default=
"0"/> 
27593       <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no"> 
27594         <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
27596           <param name=
"x" type=
"double" default=
""/> 
27597           <param name=
"y" type=
"double" default=
""/> 
27598           <param name=
"keys" type=
"int" default=
"0"/> 
27599           <param name=
"attachment" type=
"int" default=
"0"/> 
27602       <method name=
"base_OnRightClick" type=
"" overloaded=
"no"> 
27603         <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
27605           <param name=
"x" type=
"double" default=
""/> 
27606           <param name=
"y" type=
"double" default=
""/> 
27607           <param name=
"keys" type=
"int" default=
"0"/> 
27608           <param name=
"attachment" type=
"int" default=
"0"/> 
27611       <method name=
"base_OnSize" type=
"" overloaded=
"no"> 
27612         <autodoc>base_OnSize(double x, double y)
</autodoc> 
27614           <param name=
"x" type=
"double" default=
""/> 
27615           <param name=
"y" type=
"double" default=
""/> 
27618       <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no"> 
27619         <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y, 
 
27620     bool display=True) -
> bool
</autodoc> 
27622           <param name=
"dc" type=
"DC" default=
""/> 
27623           <param name=
"x" type=
"double" default=
""/> 
27624           <param name=
"y" type=
"double" default=
""/> 
27625           <param name=
"old_x" type=
"double" default=
""/> 
27626           <param name=
"old_y" type=
"double" default=
""/> 
27627           <param name=
"display" type=
"bool" default=
"True"/> 
27630       <method name=
"base_OnMovePost" type=
"" overloaded=
"no"> 
27631         <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y, 
 
27632     bool display=True)
</autodoc> 
27634           <param name=
"dc" type=
"DC" default=
""/> 
27635           <param name=
"x" type=
"double" default=
""/> 
27636           <param name=
"y" type=
"double" default=
""/> 
27637           <param name=
"old_x" type=
"double" default=
""/> 
27638           <param name=
"old_y" type=
"double" default=
""/> 
27639           <param name=
"display" type=
"bool" default=
"True"/> 
27642       <method name=
"base_OnDragLeft" type=
"" overloaded=
"no"> 
27643         <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
27645           <param name=
"draw" type=
"bool" default=
""/> 
27646           <param name=
"x" type=
"double" default=
""/> 
27647           <param name=
"y" type=
"double" default=
""/> 
27648           <param name=
"keys" type=
"int" default=
"0"/> 
27649           <param name=
"attachment" type=
"int" default=
"0"/> 
27652       <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no"> 
27653         <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
27655           <param name=
"x" type=
"double" default=
""/> 
27656           <param name=
"y" type=
"double" default=
""/> 
27657           <param name=
"keys" type=
"int" default=
"0"/> 
27658           <param name=
"attachment" type=
"int" default=
"0"/> 
27661       <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no"> 
27662         <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
27664           <param name=
"x" type=
"double" default=
""/> 
27665           <param name=
"y" type=
"double" default=
""/> 
27666           <param name=
"keys" type=
"int" default=
"0"/> 
27667           <param name=
"attachment" type=
"int" default=
"0"/> 
27670       <method name=
"base_OnDragRight" type=
"" overloaded=
"no"> 
27671         <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
27673           <param name=
"draw" type=
"bool" default=
""/> 
27674           <param name=
"x" type=
"double" default=
""/> 
27675           <param name=
"y" type=
"double" default=
""/> 
27676           <param name=
"keys" type=
"int" default=
"0"/> 
27677           <param name=
"attachment" type=
"int" default=
"0"/> 
27680       <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no"> 
27681         <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
27683           <param name=
"x" type=
"double" default=
""/> 
27684           <param name=
"y" type=
"double" default=
""/> 
27685           <param name=
"keys" type=
"int" default=
"0"/> 
27686           <param name=
"attachment" type=
"int" default=
"0"/> 
27689       <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no"> 
27690         <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
27692           <param name=
"x" type=
"double" default=
""/> 
27693           <param name=
"y" type=
"double" default=
""/> 
27694           <param name=
"keys" type=
"int" default=
"0"/> 
27695           <param name=
"attachment" type=
"int" default=
"0"/> 
27698       <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no"> 
27699         <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc> 
27701           <param name=
"dc" type=
"DC" default=
""/> 
27702           <param name=
"x" type=
"double" default=
""/> 
27703           <param name=
"y" type=
"double" default=
""/> 
27704           <param name=
"w" type=
"double" default=
""/> 
27705           <param name=
"h" type=
"double" default=
""/> 
27708       <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no"> 
27709         <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc> 
27711           <param name=
"dc" type=
"DC" default=
""/> 
27714       <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no"> 
27715         <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc> 
27717           <param name=
"dc" type=
"DC" default=
""/> 
27720       <method name=
"base_OnMoveLink" type=
"" overloaded=
"no"> 
27721         <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc> 
27723           <param name=
"dc" type=
"DC" default=
""/> 
27724           <param name=
"moveControlPoints" type=
"bool" default=
"True"/> 
27727       <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no"> 
27728         <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0, 
 
27729     int attachment=
0)
</autodoc> 
27731           <param name=
"pt" type=
"wxPyControlPoint" default=
""/> 
27732           <param name=
"draw" type=
"bool" default=
""/> 
27733           <param name=
"x" type=
"double" default=
""/> 
27734           <param name=
"y" type=
"double" default=
""/> 
27735           <param name=
"keys" type=
"int" default=
"0"/> 
27736           <param name=
"attachment" type=
"int" default=
"0"/> 
27739       <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no"> 
27740         <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
27741     int attachment=
0)
</autodoc> 
27743           <param name=
"pt" type=
"wxPyControlPoint" default=
""/> 
27744           <param name=
"x" type=
"double" default=
""/> 
27745           <param name=
"y" type=
"double" default=
""/> 
27746           <param name=
"keys" type=
"int" default=
"0"/> 
27747           <param name=
"attachment" type=
"int" default=
"0"/> 
27750       <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no"> 
27751         <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
27752     int attachment=
0)
</autodoc> 
27754           <param name=
"pt" type=
"wxPyControlPoint" default=
""/> 
27755           <param name=
"x" type=
"double" default=
""/> 
27756           <param name=
"y" type=
"double" default=
""/> 
27757           <param name=
"keys" type=
"int" default=
"0"/> 
27758           <param name=
"attachment" type=
"int" default=
"0"/> 
27761       <method name=
"base_OnBeginSize" type=
"" overloaded=
"no"> 
27762         <autodoc>base_OnBeginSize(double w, double h)
</autodoc> 
27764           <param name=
"w" type=
"double" default=
""/> 
27765           <param name=
"h" type=
"double" default=
""/> 
27768       <method name=
"base_OnEndSize" type=
"" overloaded=
"no"> 
27769         <autodoc>base_OnEndSize(double w, double h)
</autodoc> 
27771           <param name=
"w" type=
"double" default=
""/> 
27772           <param name=
"h" type=
"double" default=
""/> 
27776     <class name=
"PseudoMetaFile" oldname=
"wxPseudoMetaFile" module=
"ogl"> 
27777       <baseclass name=
"Object"/> 
27778       <constructor name=
"PseudoMetaFile" overloaded=
"no"> 
27779         <autodoc>__init__() -
> PseudoMetaFile
</autodoc> 
27781       <destructor name=
"~wxPseudoMetaFile" overloaded=
"no"> 
27782         <autodoc>__del__()
</autodoc> 
27784       <method name=
"Draw" type=
"" overloaded=
"no"> 
27785         <autodoc>Draw(DC dc, double xoffset, double yoffset)
</autodoc> 
27787           <param name=
"dc" type=
"DC" default=
""/> 
27788           <param name=
"xoffset" type=
"double" default=
""/> 
27789           <param name=
"yoffset" type=
"double" default=
""/> 
27792       <method name=
"Clear" type=
"" overloaded=
"no"> 
27793         <autodoc>Clear()
</autodoc> 
27795       <method name=
"Copy" type=
"" overloaded=
"no"> 
27796         <autodoc>Copy(PseudoMetaFile copy)
</autodoc> 
27798           <param name=
"copy" type=
"PseudoMetaFile" default=
""/> 
27801       <method name=
"Scale" type=
"" overloaded=
"no"> 
27802         <autodoc>Scale(double sx, double sy)
</autodoc> 
27804           <param name=
"sx" type=
"double" default=
""/> 
27805           <param name=
"sy" type=
"double" default=
""/> 
27808       <method name=
"ScaleTo" type=
"" overloaded=
"no"> 
27809         <autodoc>ScaleTo(double w, double h)
</autodoc> 
27811           <param name=
"w" type=
"double" default=
""/> 
27812           <param name=
"h" type=
"double" default=
""/> 
27815       <method name=
"Translate" type=
"" overloaded=
"no"> 
27816         <autodoc>Translate(double x, double y)
</autodoc> 
27818           <param name=
"x" type=
"double" default=
""/> 
27819           <param name=
"y" type=
"double" default=
""/> 
27822       <method name=
"Rotate" type=
"" overloaded=
"no"> 
27823         <autodoc>Rotate(double x, double y, double theta)
</autodoc> 
27825           <param name=
"x" type=
"double" default=
""/> 
27826           <param name=
"y" type=
"double" default=
""/> 
27827           <param name=
"theta" type=
"double" default=
""/> 
27830       <method name=
"LoadFromMetaFile" type=
"bool" overloaded=
"no"> 
27831         <autodoc>LoadFromMetaFile(String filename, double width, double height) -
> bool
</autodoc> 
27833           <param name=
"filename" type=
"String" default=
""/> 
27834           <param name=
"width" type=
"double" default=
""/> 
27835           <param name=
"height" type=
"double" default=
""/> 
27838       <method name=
"GetBounds" type=
"" overloaded=
"no"> 
27839         <autodoc>GetBounds(double minX, double minY, double maxX, double maxY)
</autodoc> 
27841           <param name=
"minX" type=
"double" default=
""/> 
27842           <param name=
"minY" type=
"double" default=
""/> 
27843           <param name=
"maxX" type=
"double" default=
""/> 
27844           <param name=
"maxY" type=
"double" default=
""/> 
27847       <method name=
"CalculateSize" type=
"" overloaded=
"no"> 
27848         <autodoc>CalculateSize(PyDrawnShape shape)
</autodoc> 
27850           <param name=
"shape" type=
"wxPyDrawnShape" default=
""/> 
27853       <method name=
"SetRotateable" type=
"" overloaded=
"no"> 
27854         <autodoc>SetRotateable(bool rot)
</autodoc> 
27856           <param name=
"rot" type=
"bool" default=
""/> 
27859       <method name=
"GetRotateable" type=
"bool" overloaded=
"no"> 
27860         <autodoc>GetRotateable() -
> bool
</autodoc> 
27862       <method name=
"SetSize" type=
"" overloaded=
"no"> 
27863         <autodoc>SetSize(double w, double h)
</autodoc> 
27865           <param name=
"w" type=
"double" default=
""/> 
27866           <param name=
"h" type=
"double" default=
""/> 
27869       <method name=
"SetFillBrush" type=
"" overloaded=
"no"> 
27870         <autodoc>SetFillBrush(wxBrush brush)
</autodoc> 
27872           <param name=
"brush" type=
"Brush" default=
""/> 
27875       <method name=
"GetFillBrush" type=
"Brush" overloaded=
"no"> 
27876         <autodoc>GetFillBrush() -
> wxBrush
</autodoc> 
27878       <method name=
"SetOutlinePen" type=
"" overloaded=
"no"> 
27879         <autodoc>SetOutlinePen(wxPen pen)
</autodoc> 
27881           <param name=
"pen" type=
"Pen" default=
""/> 
27884       <method name=
"GetOutlinePen" type=
"Pen" overloaded=
"no"> 
27885         <autodoc>GetOutlinePen() -
> wxPen
</autodoc> 
27887       <method name=
"SetOutlineOp" type=
"" overloaded=
"no"> 
27888         <autodoc>SetOutlineOp(int op)
</autodoc> 
27890           <param name=
"op" type=
"int" default=
""/> 
27893       <method name=
"GetOutlineOp" type=
"int" overloaded=
"no"> 
27894         <autodoc>GetOutlineOp() -
> int
</autodoc> 
27896       <method name=
"IsValid" type=
"bool" overloaded=
"no"> 
27897         <autodoc>IsValid() -
> bool
</autodoc> 
27899       <method name=
"DrawLine" type=
"" overloaded=
"no"> 
27900         <autodoc>DrawLine(Point pt1, Point pt2)
</autodoc> 
27902           <param name=
"pt1" type=
"Point" default=
""/> 
27903           <param name=
"pt2" type=
"Point" default=
""/> 
27906       <method name=
"DrawRectangle" type=
"" overloaded=
"no"> 
27907         <autodoc>DrawRectangle(Rect rect)
</autodoc> 
27909           <param name=
"rect" type=
"Rect" default=
""/> 
27912       <method name=
"DrawRoundedRectangle" type=
"" overloaded=
"no"> 
27913         <autodoc>DrawRoundedRectangle(Rect rect, double radius)
</autodoc> 
27915           <param name=
"rect" type=
"Rect" default=
""/> 
27916           <param name=
"radius" type=
"double" default=
""/> 
27919       <method name=
"DrawArc" type=
"" overloaded=
"no"> 
27920         <autodoc>DrawArc(Point centrePt, Point startPt, Point endPt)
</autodoc> 
27922           <param name=
"centrePt" type=
"Point" default=
""/> 
27923           <param name=
"startPt" type=
"Point" default=
""/> 
27924           <param name=
"endPt" type=
"Point" default=
""/> 
27927       <method name=
"DrawEllipticArc" type=
"" overloaded=
"no"> 
27928         <autodoc>DrawEllipticArc(Rect rect, double startAngle, double endAngle)
</autodoc> 
27930           <param name=
"rect" type=
"Rect" default=
""/> 
27931           <param name=
"startAngle" type=
"double" default=
""/> 
27932           <param name=
"endAngle" type=
"double" default=
""/> 
27935       <method name=
"DrawEllipse" type=
"" overloaded=
"no"> 
27936         <autodoc>DrawEllipse(Rect rect)
</autodoc> 
27938           <param name=
"rect" type=
"Rect" default=
""/> 
27941       <method name=
"DrawPoint" type=
"" overloaded=
"no"> 
27942         <autodoc>DrawPoint(Point pt)
</autodoc> 
27944           <param name=
"pt" type=
"Point" default=
""/> 
27947       <method name=
"DrawText" type=
"" overloaded=
"no"> 
27948         <autodoc>DrawText(String text, Point pt)
</autodoc> 
27950           <param name=
"text" type=
"String" default=
""/> 
27951           <param name=
"pt" type=
"Point" default=
""/> 
27954       <method name=
"DrawLines" type=
"" overloaded=
"no"> 
27955         <autodoc>DrawLines(int PCOUNT, Point points)
</autodoc> 
27957           <param name=
"PCOUNT" type=
"int" default=
""/> 
27958           <param name=
"points" type=
"Point" default=
""/> 
27961       <method name=
"DrawPolygon" type=
"" overloaded=
"no"> 
27962         <autodoc>DrawPolygon(int PCOUNT, Point points, int flags=
0)
</autodoc> 
27964           <param name=
"PCOUNT" type=
"int" default=
""/> 
27965           <param name=
"points" type=
"Point" default=
""/> 
27966           <param name=
"flags" type=
"int" default=
"0"/> 
27969       <method name=
"DrawSpline" type=
"" overloaded=
"no"> 
27970         <autodoc>DrawSpline(int PCOUNT, Point points)
</autodoc> 
27972           <param name=
"PCOUNT" type=
"int" default=
""/> 
27973           <param name=
"points" type=
"Point" default=
""/> 
27976       <method name=
"SetClippingRect" type=
"" overloaded=
"no"> 
27977         <autodoc>SetClippingRect(Rect rect)
</autodoc> 
27979           <param name=
"rect" type=
"Rect" default=
""/> 
27982       <method name=
"DestroyClippingRect" type=
"" overloaded=
"no"> 
27983         <autodoc>DestroyClippingRect()
</autodoc> 
27985       <method name=
"SetPen" type=
"" overloaded=
"no"> 
27986         <autodoc>SetPen(wxPen pen, bool isOutline=FALSE)
</autodoc> 
27988           <param name=
"pen" type=
"Pen" default=
""/> 
27989           <param name=
"isOutline" type=
"bool" default=
"FALSE"/> 
27992       <method name=
"SetBrush" type=
"" overloaded=
"no"> 
27993         <autodoc>SetBrush(wxBrush brush, bool isFill=FALSE)
</autodoc> 
27995           <param name=
"brush" type=
"Brush" default=
""/> 
27996           <param name=
"isFill" type=
"bool" default=
"FALSE"/> 
27999       <method name=
"SetFont" type=
"" overloaded=
"no"> 
28000         <autodoc>SetFont(Font font)
</autodoc> 
28002           <param name=
"font" type=
"Font" default=
""/> 
28005       <method name=
"SetTextColour" type=
"" overloaded=
"no"> 
28006         <autodoc>SetTextColour(Colour colour)
</autodoc> 
28008           <param name=
"colour" type=
"Colour" default=
""/> 
28011       <method name=
"SetBackgroundColour" type=
"" overloaded=
"no"> 
28012         <autodoc>SetBackgroundColour(Colour colour)
</autodoc> 
28014           <param name=
"colour" type=
"Colour" default=
""/> 
28017       <method name=
"SetBackgroundMode" type=
"" overloaded=
"no"> 
28018         <autodoc>SetBackgroundMode(int mode)
</autodoc> 
28020           <param name=
"mode" type=
"int" default=
""/> 
28024     <class name=
"PyRectangleShape" oldname=
"wxPyRectangleShape" module=
"ogl"> 
28025       <baseclass name=
"PyShape"/> 
28026       <constructor name=
"PyRectangleShape" overloaded=
"no"> 
28027         <autodoc>__init__(double width=
0.0, double height=
0.0) -
> PyRectangleShape
</autodoc> 
28029           <param name=
"width" type=
"double" default=
"0.0"/> 
28030           <param name=
"height" type=
"double" default=
"0.0"/> 
28033       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
28034         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
28036           <param name=
"self" type=
"PyObject" default=
""/> 
28037           <param name=
"_class" type=
"PyObject" default=
""/> 
28040       <method name=
"SetCornerRadius" type=
"" overloaded=
"no"> 
28041         <autodoc>SetCornerRadius(double radius)
</autodoc> 
28043           <param name=
"radius" type=
"double" default=
""/> 
28046       <method name=
"GetCornerRadius" type=
"double" overloaded=
"no"> 
28047         <autodoc>GetCornerRadius() -
> double
</autodoc> 
28049       <method name=
"base_OnDelete" type=
"" overloaded=
"no"> 
28050         <autodoc>base_OnDelete()
</autodoc> 
28052       <method name=
"base_OnDraw" type=
"" overloaded=
"no"> 
28053         <autodoc>base_OnDraw(DC dc)
</autodoc> 
28055           <param name=
"dc" type=
"DC" default=
""/> 
28058       <method name=
"base_OnDrawContents" type=
"" overloaded=
"no"> 
28059         <autodoc>base_OnDrawContents(DC dc)
</autodoc> 
28061           <param name=
"dc" type=
"DC" default=
""/> 
28064       <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no"> 
28065         <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc> 
28067           <param name=
"dc" type=
"DC" default=
""/> 
28068           <param name=
"erase" type=
"bool" default=
"FALSE"/> 
28071       <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no"> 
28072         <autodoc>base_OnMoveLinks(DC dc)
</autodoc> 
28074           <param name=
"dc" type=
"DC" default=
""/> 
28077       <method name=
"base_OnErase" type=
"" overloaded=
"no"> 
28078         <autodoc>base_OnErase(DC dc)
</autodoc> 
28080           <param name=
"dc" type=
"DC" default=
""/> 
28083       <method name=
"base_OnEraseContents" type=
"" overloaded=
"no"> 
28084         <autodoc>base_OnEraseContents(DC dc)
</autodoc> 
28086           <param name=
"dc" type=
"DC" default=
""/> 
28089       <method name=
"base_OnHighlight" type=
"" overloaded=
"no"> 
28090         <autodoc>base_OnHighlight(DC dc)
</autodoc> 
28092           <param name=
"dc" type=
"DC" default=
""/> 
28095       <method name=
"base_OnLeftClick" type=
"" overloaded=
"no"> 
28096         <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28098           <param name=
"x" type=
"double" default=
""/> 
28099           <param name=
"y" type=
"double" default=
""/> 
28100           <param name=
"keys" type=
"int" default=
"0"/> 
28101           <param name=
"attachment" type=
"int" default=
"0"/> 
28104       <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no"> 
28105         <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28107           <param name=
"x" type=
"double" default=
""/> 
28108           <param name=
"y" type=
"double" default=
""/> 
28109           <param name=
"keys" type=
"int" default=
"0"/> 
28110           <param name=
"attachment" type=
"int" default=
"0"/> 
28113       <method name=
"base_OnRightClick" type=
"" overloaded=
"no"> 
28114         <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28116           <param name=
"x" type=
"double" default=
""/> 
28117           <param name=
"y" type=
"double" default=
""/> 
28118           <param name=
"keys" type=
"int" default=
"0"/> 
28119           <param name=
"attachment" type=
"int" default=
"0"/> 
28122       <method name=
"base_OnSize" type=
"" overloaded=
"no"> 
28123         <autodoc>base_OnSize(double x, double y)
</autodoc> 
28125           <param name=
"x" type=
"double" default=
""/> 
28126           <param name=
"y" type=
"double" default=
""/> 
28129       <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no"> 
28130         <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y, 
 
28131     bool display=True) -
> bool
</autodoc> 
28133           <param name=
"dc" type=
"DC" default=
""/> 
28134           <param name=
"x" type=
"double" default=
""/> 
28135           <param name=
"y" type=
"double" default=
""/> 
28136           <param name=
"old_x" type=
"double" default=
""/> 
28137           <param name=
"old_y" type=
"double" default=
""/> 
28138           <param name=
"display" type=
"bool" default=
"True"/> 
28141       <method name=
"base_OnMovePost" type=
"" overloaded=
"no"> 
28142         <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y, 
 
28143     bool display=True)
</autodoc> 
28145           <param name=
"dc" type=
"DC" default=
""/> 
28146           <param name=
"x" type=
"double" default=
""/> 
28147           <param name=
"y" type=
"double" default=
""/> 
28148           <param name=
"old_x" type=
"double" default=
""/> 
28149           <param name=
"old_y" type=
"double" default=
""/> 
28150           <param name=
"display" type=
"bool" default=
"True"/> 
28153       <method name=
"base_OnDragLeft" type=
"" overloaded=
"no"> 
28154         <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28156           <param name=
"draw" type=
"bool" default=
""/> 
28157           <param name=
"x" type=
"double" default=
""/> 
28158           <param name=
"y" type=
"double" default=
""/> 
28159           <param name=
"keys" type=
"int" default=
"0"/> 
28160           <param name=
"attachment" type=
"int" default=
"0"/> 
28163       <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no"> 
28164         <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28166           <param name=
"x" type=
"double" default=
""/> 
28167           <param name=
"y" type=
"double" default=
""/> 
28168           <param name=
"keys" type=
"int" default=
"0"/> 
28169           <param name=
"attachment" type=
"int" default=
"0"/> 
28172       <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no"> 
28173         <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28175           <param name=
"x" type=
"double" default=
""/> 
28176           <param name=
"y" type=
"double" default=
""/> 
28177           <param name=
"keys" type=
"int" default=
"0"/> 
28178           <param name=
"attachment" type=
"int" default=
"0"/> 
28181       <method name=
"base_OnDragRight" type=
"" overloaded=
"no"> 
28182         <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28184           <param name=
"draw" type=
"bool" default=
""/> 
28185           <param name=
"x" type=
"double" default=
""/> 
28186           <param name=
"y" type=
"double" default=
""/> 
28187           <param name=
"keys" type=
"int" default=
"0"/> 
28188           <param name=
"attachment" type=
"int" default=
"0"/> 
28191       <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no"> 
28192         <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28194           <param name=
"x" type=
"double" default=
""/> 
28195           <param name=
"y" type=
"double" default=
""/> 
28196           <param name=
"keys" type=
"int" default=
"0"/> 
28197           <param name=
"attachment" type=
"int" default=
"0"/> 
28200       <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no"> 
28201         <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28203           <param name=
"x" type=
"double" default=
""/> 
28204           <param name=
"y" type=
"double" default=
""/> 
28205           <param name=
"keys" type=
"int" default=
"0"/> 
28206           <param name=
"attachment" type=
"int" default=
"0"/> 
28209       <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no"> 
28210         <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc> 
28212           <param name=
"dc" type=
"DC" default=
""/> 
28213           <param name=
"x" type=
"double" default=
""/> 
28214           <param name=
"y" type=
"double" default=
""/> 
28215           <param name=
"w" type=
"double" default=
""/> 
28216           <param name=
"h" type=
"double" default=
""/> 
28219       <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no"> 
28220         <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc> 
28222           <param name=
"dc" type=
"DC" default=
""/> 
28225       <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no"> 
28226         <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc> 
28228           <param name=
"dc" type=
"DC" default=
""/> 
28231       <method name=
"base_OnMoveLink" type=
"" overloaded=
"no"> 
28232         <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc> 
28234           <param name=
"dc" type=
"DC" default=
""/> 
28235           <param name=
"moveControlPoints" type=
"bool" default=
"True"/> 
28238       <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no"> 
28239         <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0, 
 
28240     int attachment=
0)
</autodoc> 
28242           <param name=
"pt" type=
"wxPyControlPoint" default=
""/> 
28243           <param name=
"draw" type=
"bool" default=
""/> 
28244           <param name=
"x" type=
"double" default=
""/> 
28245           <param name=
"y" type=
"double" default=
""/> 
28246           <param name=
"keys" type=
"int" default=
"0"/> 
28247           <param name=
"attachment" type=
"int" default=
"0"/> 
28250       <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no"> 
28251         <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
28252     int attachment=
0)
</autodoc> 
28254           <param name=
"pt" type=
"wxPyControlPoint" default=
""/> 
28255           <param name=
"x" type=
"double" default=
""/> 
28256           <param name=
"y" type=
"double" default=
""/> 
28257           <param name=
"keys" type=
"int" default=
"0"/> 
28258           <param name=
"attachment" type=
"int" default=
"0"/> 
28261       <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no"> 
28262         <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
28263     int attachment=
0)
</autodoc> 
28265           <param name=
"pt" type=
"wxPyControlPoint" default=
""/> 
28266           <param name=
"x" type=
"double" default=
""/> 
28267           <param name=
"y" type=
"double" default=
""/> 
28268           <param name=
"keys" type=
"int" default=
"0"/> 
28269           <param name=
"attachment" type=
"int" default=
"0"/> 
28272       <method name=
"base_OnBeginSize" type=
"" overloaded=
"no"> 
28273         <autodoc>base_OnBeginSize(double w, double h)
</autodoc> 
28275           <param name=
"w" type=
"double" default=
""/> 
28276           <param name=
"h" type=
"double" default=
""/> 
28279       <method name=
"base_OnEndSize" type=
"" overloaded=
"no"> 
28280         <autodoc>base_OnEndSize(double w, double h)
</autodoc> 
28282           <param name=
"w" type=
"double" default=
""/> 
28283           <param name=
"h" type=
"double" default=
""/> 
28287     <class name=
"PyControlPoint" oldname=
"wxPyControlPoint" module=
"ogl"> 
28288       <baseclass name=
"PyRectangleShape"/> 
28289       <constructor name=
"PyControlPoint" overloaded=
"no"> 
28290         <autodoc>__init__(PyShapeCanvas the_canvas=None, PyShape object=None, 
 
28291     double size=
0.0, double the_xoffset=
0.0, double the_yoffset=
0.0, 
 
28292     int the_type=
0) -
> PyControlPoint
</autodoc> 
28294           <param name=
"the_canvas" type=
"wxPyShapeCanvas" default=
"NULL"/> 
28295           <param name=
"object" type=
"PyShape" default=
"NULL"/> 
28296           <param name=
"size" type=
"double" default=
"0.0"/> 
28297           <param name=
"the_xoffset" type=
"double" default=
"0.0"/> 
28298           <param name=
"the_yoffset" type=
"double" default=
"0.0"/> 
28299           <param name=
"the_type" type=
"int" default=
"0"/> 
28302       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
28303         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
28305           <param name=
"self" type=
"PyObject" default=
""/> 
28306           <param name=
"_class" type=
"PyObject" default=
""/> 
28309       <method name=
"SetCornerRadius" type=
"" overloaded=
"no"> 
28310         <autodoc>SetCornerRadius(double radius)
</autodoc> 
28312           <param name=
"radius" type=
"double" default=
""/> 
28315       <method name=
"base_OnDelete" type=
"" overloaded=
"no"> 
28316         <autodoc>base_OnDelete()
</autodoc> 
28318       <method name=
"base_OnDraw" type=
"" overloaded=
"no"> 
28319         <autodoc>base_OnDraw(DC dc)
</autodoc> 
28321           <param name=
"dc" type=
"DC" default=
""/> 
28324       <method name=
"base_OnDrawContents" type=
"" overloaded=
"no"> 
28325         <autodoc>base_OnDrawContents(DC dc)
</autodoc> 
28327           <param name=
"dc" type=
"DC" default=
""/> 
28330       <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no"> 
28331         <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc> 
28333           <param name=
"dc" type=
"DC" default=
""/> 
28334           <param name=
"erase" type=
"bool" default=
"FALSE"/> 
28337       <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no"> 
28338         <autodoc>base_OnMoveLinks(DC dc)
</autodoc> 
28340           <param name=
"dc" type=
"DC" default=
""/> 
28343       <method name=
"base_OnErase" type=
"" overloaded=
"no"> 
28344         <autodoc>base_OnErase(DC dc)
</autodoc> 
28346           <param name=
"dc" type=
"DC" default=
""/> 
28349       <method name=
"base_OnEraseContents" type=
"" overloaded=
"no"> 
28350         <autodoc>base_OnEraseContents(DC dc)
</autodoc> 
28352           <param name=
"dc" type=
"DC" default=
""/> 
28355       <method name=
"base_OnHighlight" type=
"" overloaded=
"no"> 
28356         <autodoc>base_OnHighlight(DC dc)
</autodoc> 
28358           <param name=
"dc" type=
"DC" default=
""/> 
28361       <method name=
"base_OnLeftClick" type=
"" overloaded=
"no"> 
28362         <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28364           <param name=
"x" type=
"double" default=
""/> 
28365           <param name=
"y" type=
"double" default=
""/> 
28366           <param name=
"keys" type=
"int" default=
"0"/> 
28367           <param name=
"attachment" type=
"int" default=
"0"/> 
28370       <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no"> 
28371         <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28373           <param name=
"x" type=
"double" default=
""/> 
28374           <param name=
"y" type=
"double" default=
""/> 
28375           <param name=
"keys" type=
"int" default=
"0"/> 
28376           <param name=
"attachment" type=
"int" default=
"0"/> 
28379       <method name=
"base_OnRightClick" type=
"" overloaded=
"no"> 
28380         <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28382           <param name=
"x" type=
"double" default=
""/> 
28383           <param name=
"y" type=
"double" default=
""/> 
28384           <param name=
"keys" type=
"int" default=
"0"/> 
28385           <param name=
"attachment" type=
"int" default=
"0"/> 
28388       <method name=
"base_OnSize" type=
"" overloaded=
"no"> 
28389         <autodoc>base_OnSize(double x, double y)
</autodoc> 
28391           <param name=
"x" type=
"double" default=
""/> 
28392           <param name=
"y" type=
"double" default=
""/> 
28395       <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no"> 
28396         <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y, 
 
28397     bool display=True) -
> bool
</autodoc> 
28399           <param name=
"dc" type=
"DC" default=
""/> 
28400           <param name=
"x" type=
"double" default=
""/> 
28401           <param name=
"y" type=
"double" default=
""/> 
28402           <param name=
"old_x" type=
"double" default=
""/> 
28403           <param name=
"old_y" type=
"double" default=
""/> 
28404           <param name=
"display" type=
"bool" default=
"True"/> 
28407       <method name=
"base_OnMovePost" type=
"" overloaded=
"no"> 
28408         <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y, 
 
28409     bool display=True)
</autodoc> 
28411           <param name=
"dc" type=
"DC" default=
""/> 
28412           <param name=
"x" type=
"double" default=
""/> 
28413           <param name=
"y" type=
"double" default=
""/> 
28414           <param name=
"old_x" type=
"double" default=
""/> 
28415           <param name=
"old_y" type=
"double" default=
""/> 
28416           <param name=
"display" type=
"bool" default=
"True"/> 
28419       <method name=
"base_OnDragLeft" type=
"" overloaded=
"no"> 
28420         <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28422           <param name=
"draw" type=
"bool" default=
""/> 
28423           <param name=
"x" type=
"double" default=
""/> 
28424           <param name=
"y" type=
"double" default=
""/> 
28425           <param name=
"keys" type=
"int" default=
"0"/> 
28426           <param name=
"attachment" type=
"int" default=
"0"/> 
28429       <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no"> 
28430         <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28432           <param name=
"x" type=
"double" default=
""/> 
28433           <param name=
"y" type=
"double" default=
""/> 
28434           <param name=
"keys" type=
"int" default=
"0"/> 
28435           <param name=
"attachment" type=
"int" default=
"0"/> 
28438       <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no"> 
28439         <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28441           <param name=
"x" type=
"double" default=
""/> 
28442           <param name=
"y" type=
"double" default=
""/> 
28443           <param name=
"keys" type=
"int" default=
"0"/> 
28444           <param name=
"attachment" type=
"int" default=
"0"/> 
28447       <method name=
"base_OnDragRight" type=
"" overloaded=
"no"> 
28448         <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28450           <param name=
"draw" type=
"bool" default=
""/> 
28451           <param name=
"x" type=
"double" default=
""/> 
28452           <param name=
"y" type=
"double" default=
""/> 
28453           <param name=
"keys" type=
"int" default=
"0"/> 
28454           <param name=
"attachment" type=
"int" default=
"0"/> 
28457       <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no"> 
28458         <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28460           <param name=
"x" type=
"double" default=
""/> 
28461           <param name=
"y" type=
"double" default=
""/> 
28462           <param name=
"keys" type=
"int" default=
"0"/> 
28463           <param name=
"attachment" type=
"int" default=
"0"/> 
28466       <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no"> 
28467         <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28469           <param name=
"x" type=
"double" default=
""/> 
28470           <param name=
"y" type=
"double" default=
""/> 
28471           <param name=
"keys" type=
"int" default=
"0"/> 
28472           <param name=
"attachment" type=
"int" default=
"0"/> 
28475       <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no"> 
28476         <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc> 
28478           <param name=
"dc" type=
"DC" default=
""/> 
28479           <param name=
"x" type=
"double" default=
""/> 
28480           <param name=
"y" type=
"double" default=
""/> 
28481           <param name=
"w" type=
"double" default=
""/> 
28482           <param name=
"h" type=
"double" default=
""/> 
28485       <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no"> 
28486         <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc> 
28488           <param name=
"dc" type=
"DC" default=
""/> 
28491       <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no"> 
28492         <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc> 
28494           <param name=
"dc" type=
"DC" default=
""/> 
28497       <method name=
"base_OnMoveLink" type=
"" overloaded=
"no"> 
28498         <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc> 
28500           <param name=
"dc" type=
"DC" default=
""/> 
28501           <param name=
"moveControlPoints" type=
"bool" default=
"True"/> 
28504       <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no"> 
28505         <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0, 
 
28506     int attachment=
0)
</autodoc> 
28508           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
28509           <param name=
"draw" type=
"bool" default=
""/> 
28510           <param name=
"x" type=
"double" default=
""/> 
28511           <param name=
"y" type=
"double" default=
""/> 
28512           <param name=
"keys" type=
"int" default=
"0"/> 
28513           <param name=
"attachment" type=
"int" default=
"0"/> 
28516       <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no"> 
28517         <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
28518     int attachment=
0)
</autodoc> 
28520           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
28521           <param name=
"x" type=
"double" default=
""/> 
28522           <param name=
"y" type=
"double" default=
""/> 
28523           <param name=
"keys" type=
"int" default=
"0"/> 
28524           <param name=
"attachment" type=
"int" default=
"0"/> 
28527       <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no"> 
28528         <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
28529     int attachment=
0)
</autodoc> 
28531           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
28532           <param name=
"x" type=
"double" default=
""/> 
28533           <param name=
"y" type=
"double" default=
""/> 
28534           <param name=
"keys" type=
"int" default=
"0"/> 
28535           <param name=
"attachment" type=
"int" default=
"0"/> 
28538       <method name=
"base_OnBeginSize" type=
"" overloaded=
"no"> 
28539         <autodoc>base_OnBeginSize(double w, double h)
</autodoc> 
28541           <param name=
"w" type=
"double" default=
""/> 
28542           <param name=
"h" type=
"double" default=
""/> 
28545       <method name=
"base_OnEndSize" type=
"" overloaded=
"no"> 
28546         <autodoc>base_OnEndSize(double w, double h)
</autodoc> 
28548           <param name=
"w" type=
"double" default=
""/> 
28549           <param name=
"h" type=
"double" default=
""/> 
28553     <class name=
"PyBitmapShape" oldname=
"wxPyBitmapShape" module=
"ogl"> 
28554       <baseclass name=
"PyRectangleShape"/> 
28555       <constructor name=
"PyBitmapShape" overloaded=
"no"> 
28556         <autodoc>__init__() -
> PyBitmapShape
</autodoc> 
28558       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
28559         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
28561           <param name=
"self" type=
"PyObject" default=
""/> 
28562           <param name=
"_class" type=
"PyObject" default=
""/> 
28565       <method name=
"GetBitmap" type=
"Bitmap" overloaded=
"no"> 
28566         <autodoc>GetBitmap() -
> Bitmap
</autodoc> 
28568       <method name=
"GetFilename" type=
"String" overloaded=
"no"> 
28569         <autodoc>GetFilename() -
> String
</autodoc> 
28571       <method name=
"SetBitmap" type=
"" overloaded=
"no"> 
28572         <autodoc>SetBitmap(Bitmap bitmap)
</autodoc> 
28574           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
28577       <method name=
"SetFilename" type=
"" overloaded=
"no"> 
28578         <autodoc>SetFilename(String filename)
</autodoc> 
28580           <param name=
"filename" type=
"String" default=
""/> 
28583       <method name=
"base_OnDelete" type=
"" overloaded=
"no"> 
28584         <autodoc>base_OnDelete()
</autodoc> 
28586       <method name=
"base_OnDraw" type=
"" overloaded=
"no"> 
28587         <autodoc>base_OnDraw(DC dc)
</autodoc> 
28589           <param name=
"dc" type=
"DC" default=
""/> 
28592       <method name=
"base_OnDrawContents" type=
"" overloaded=
"no"> 
28593         <autodoc>base_OnDrawContents(DC dc)
</autodoc> 
28595           <param name=
"dc" type=
"DC" default=
""/> 
28598       <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no"> 
28599         <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc> 
28601           <param name=
"dc" type=
"DC" default=
""/> 
28602           <param name=
"erase" type=
"bool" default=
"FALSE"/> 
28605       <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no"> 
28606         <autodoc>base_OnMoveLinks(DC dc)
</autodoc> 
28608           <param name=
"dc" type=
"DC" default=
""/> 
28611       <method name=
"base_OnErase" type=
"" overloaded=
"no"> 
28612         <autodoc>base_OnErase(DC dc)
</autodoc> 
28614           <param name=
"dc" type=
"DC" default=
""/> 
28617       <method name=
"base_OnEraseContents" type=
"" overloaded=
"no"> 
28618         <autodoc>base_OnEraseContents(DC dc)
</autodoc> 
28620           <param name=
"dc" type=
"DC" default=
""/> 
28623       <method name=
"base_OnHighlight" type=
"" overloaded=
"no"> 
28624         <autodoc>base_OnHighlight(DC dc)
</autodoc> 
28626           <param name=
"dc" type=
"DC" default=
""/> 
28629       <method name=
"base_OnLeftClick" type=
"" overloaded=
"no"> 
28630         <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28632           <param name=
"x" type=
"double" default=
""/> 
28633           <param name=
"y" type=
"double" default=
""/> 
28634           <param name=
"keys" type=
"int" default=
"0"/> 
28635           <param name=
"attachment" type=
"int" default=
"0"/> 
28638       <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no"> 
28639         <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28641           <param name=
"x" type=
"double" default=
""/> 
28642           <param name=
"y" type=
"double" default=
""/> 
28643           <param name=
"keys" type=
"int" default=
"0"/> 
28644           <param name=
"attachment" type=
"int" default=
"0"/> 
28647       <method name=
"base_OnRightClick" type=
"" overloaded=
"no"> 
28648         <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28650           <param name=
"x" type=
"double" default=
""/> 
28651           <param name=
"y" type=
"double" default=
""/> 
28652           <param name=
"keys" type=
"int" default=
"0"/> 
28653           <param name=
"attachment" type=
"int" default=
"0"/> 
28656       <method name=
"base_OnSize" type=
"" overloaded=
"no"> 
28657         <autodoc>base_OnSize(double x, double y)
</autodoc> 
28659           <param name=
"x" type=
"double" default=
""/> 
28660           <param name=
"y" type=
"double" default=
""/> 
28663       <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no"> 
28664         <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y, 
 
28665     bool display=True) -
> bool
</autodoc> 
28667           <param name=
"dc" type=
"DC" default=
""/> 
28668           <param name=
"x" type=
"double" default=
""/> 
28669           <param name=
"y" type=
"double" default=
""/> 
28670           <param name=
"old_x" type=
"double" default=
""/> 
28671           <param name=
"old_y" type=
"double" default=
""/> 
28672           <param name=
"display" type=
"bool" default=
"True"/> 
28675       <method name=
"base_OnMovePost" type=
"" overloaded=
"no"> 
28676         <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y, 
 
28677     bool display=True)
</autodoc> 
28679           <param name=
"dc" type=
"DC" default=
""/> 
28680           <param name=
"x" type=
"double" default=
""/> 
28681           <param name=
"y" type=
"double" default=
""/> 
28682           <param name=
"old_x" type=
"double" default=
""/> 
28683           <param name=
"old_y" type=
"double" default=
""/> 
28684           <param name=
"display" type=
"bool" default=
"True"/> 
28687       <method name=
"base_OnDragLeft" type=
"" overloaded=
"no"> 
28688         <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28690           <param name=
"draw" type=
"bool" default=
""/> 
28691           <param name=
"x" type=
"double" default=
""/> 
28692           <param name=
"y" type=
"double" default=
""/> 
28693           <param name=
"keys" type=
"int" default=
"0"/> 
28694           <param name=
"attachment" type=
"int" default=
"0"/> 
28697       <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no"> 
28698         <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28700           <param name=
"x" type=
"double" default=
""/> 
28701           <param name=
"y" type=
"double" default=
""/> 
28702           <param name=
"keys" type=
"int" default=
"0"/> 
28703           <param name=
"attachment" type=
"int" default=
"0"/> 
28706       <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no"> 
28707         <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28709           <param name=
"x" type=
"double" default=
""/> 
28710           <param name=
"y" type=
"double" default=
""/> 
28711           <param name=
"keys" type=
"int" default=
"0"/> 
28712           <param name=
"attachment" type=
"int" default=
"0"/> 
28715       <method name=
"base_OnDragRight" type=
"" overloaded=
"no"> 
28716         <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28718           <param name=
"draw" type=
"bool" default=
""/> 
28719           <param name=
"x" type=
"double" default=
""/> 
28720           <param name=
"y" type=
"double" default=
""/> 
28721           <param name=
"keys" type=
"int" default=
"0"/> 
28722           <param name=
"attachment" type=
"int" default=
"0"/> 
28725       <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no"> 
28726         <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28728           <param name=
"x" type=
"double" default=
""/> 
28729           <param name=
"y" type=
"double" default=
""/> 
28730           <param name=
"keys" type=
"int" default=
"0"/> 
28731           <param name=
"attachment" type=
"int" default=
"0"/> 
28734       <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no"> 
28735         <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28737           <param name=
"x" type=
"double" default=
""/> 
28738           <param name=
"y" type=
"double" default=
""/> 
28739           <param name=
"keys" type=
"int" default=
"0"/> 
28740           <param name=
"attachment" type=
"int" default=
"0"/> 
28743       <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no"> 
28744         <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc> 
28746           <param name=
"dc" type=
"DC" default=
""/> 
28747           <param name=
"x" type=
"double" default=
""/> 
28748           <param name=
"y" type=
"double" default=
""/> 
28749           <param name=
"w" type=
"double" default=
""/> 
28750           <param name=
"h" type=
"double" default=
""/> 
28753       <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no"> 
28754         <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc> 
28756           <param name=
"dc" type=
"DC" default=
""/> 
28759       <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no"> 
28760         <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc> 
28762           <param name=
"dc" type=
"DC" default=
""/> 
28765       <method name=
"base_OnMoveLink" type=
"" overloaded=
"no"> 
28766         <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc> 
28768           <param name=
"dc" type=
"DC" default=
""/> 
28769           <param name=
"moveControlPoints" type=
"bool" default=
"True"/> 
28772       <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no"> 
28773         <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0, 
 
28774     int attachment=
0)
</autodoc> 
28776           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
28777           <param name=
"draw" type=
"bool" default=
""/> 
28778           <param name=
"x" type=
"double" default=
""/> 
28779           <param name=
"y" type=
"double" default=
""/> 
28780           <param name=
"keys" type=
"int" default=
"0"/> 
28781           <param name=
"attachment" type=
"int" default=
"0"/> 
28784       <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no"> 
28785         <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
28786     int attachment=
0)
</autodoc> 
28788           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
28789           <param name=
"x" type=
"double" default=
""/> 
28790           <param name=
"y" type=
"double" default=
""/> 
28791           <param name=
"keys" type=
"int" default=
"0"/> 
28792           <param name=
"attachment" type=
"int" default=
"0"/> 
28795       <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no"> 
28796         <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
28797     int attachment=
0)
</autodoc> 
28799           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
28800           <param name=
"x" type=
"double" default=
""/> 
28801           <param name=
"y" type=
"double" default=
""/> 
28802           <param name=
"keys" type=
"int" default=
"0"/> 
28803           <param name=
"attachment" type=
"int" default=
"0"/> 
28806       <method name=
"base_OnBeginSize" type=
"" overloaded=
"no"> 
28807         <autodoc>base_OnBeginSize(double w, double h)
</autodoc> 
28809           <param name=
"w" type=
"double" default=
""/> 
28810           <param name=
"h" type=
"double" default=
""/> 
28813       <method name=
"base_OnEndSize" type=
"" overloaded=
"no"> 
28814         <autodoc>base_OnEndSize(double w, double h)
</autodoc> 
28816           <param name=
"w" type=
"double" default=
""/> 
28817           <param name=
"h" type=
"double" default=
""/> 
28821     <class name=
"PyDrawnShape" oldname=
"wxPyDrawnShape" module=
"ogl"> 
28822       <baseclass name=
"PyRectangleShape"/> 
28823       <constructor name=
"PyDrawnShape" overloaded=
"no"> 
28824         <autodoc>__init__() -
> PyDrawnShape
</autodoc> 
28826       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
28827         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
28829           <param name=
"self" type=
"PyObject" default=
""/> 
28830           <param name=
"_class" type=
"PyObject" default=
""/> 
28833       <method name=
"CalculateSize" type=
"" overloaded=
"no"> 
28834         <autodoc>CalculateSize()
</autodoc> 
28836       <method name=
"DestroyClippingRect" type=
"" overloaded=
"no"> 
28837         <autodoc>DestroyClippingRect()
</autodoc> 
28839       <method name=
"DrawArc" type=
"" overloaded=
"no"> 
28840         <autodoc>DrawArc(Point centrePoint, Point startPoint, Point endPoint)
</autodoc> 
28842           <param name=
"centrePoint" type=
"Point" default=
""/> 
28843           <param name=
"startPoint" type=
"Point" default=
""/> 
28844           <param name=
"endPoint" type=
"Point" default=
""/> 
28847       <method name=
"DrawAtAngle" type=
"" overloaded=
"no"> 
28848         <autodoc>DrawAtAngle(int angle)
</autodoc> 
28850           <param name=
"angle" type=
"int" default=
""/> 
28853       <method name=
"DrawEllipticArc" type=
"" overloaded=
"no"> 
28854         <autodoc>DrawEllipticArc(Rect rect, double startAngle, double endAngle)
</autodoc> 
28856           <param name=
"rect" type=
"Rect" default=
""/> 
28857           <param name=
"startAngle" type=
"double" default=
""/> 
28858           <param name=
"endAngle" type=
"double" default=
""/> 
28861       <method name=
"DrawLine" type=
"" overloaded=
"no"> 
28862         <autodoc>DrawLine(Point point1, Point point2)
</autodoc> 
28864           <param name=
"point1" type=
"Point" default=
""/> 
28865           <param name=
"point2" type=
"Point" default=
""/> 
28868       <method name=
"DrawLines" type=
"" overloaded=
"no"> 
28869         <autodoc>DrawLines(int PCOUNT, Point points)
</autodoc> 
28871           <param name=
"PCOUNT" type=
"int" default=
""/> 
28872           <param name=
"points" type=
"Point" default=
""/> 
28875       <method name=
"DrawPoint" type=
"" overloaded=
"no"> 
28876         <autodoc>DrawPoint(Point point)
</autodoc> 
28878           <param name=
"point" type=
"Point" default=
""/> 
28881       <method name=
"DrawPolygon" type=
"" overloaded=
"no"> 
28882         <autodoc>DrawPolygon(int PCOUNT, Point points, int flags=
0)
</autodoc> 
28884           <param name=
"PCOUNT" type=
"int" default=
""/> 
28885           <param name=
"points" type=
"Point" default=
""/> 
28886           <param name=
"flags" type=
"int" default=
"0"/> 
28889       <method name=
"DrawRectangle" type=
"" overloaded=
"no"> 
28890         <autodoc>DrawRectangle(Rect rect)
</autodoc> 
28892           <param name=
"rect" type=
"Rect" default=
""/> 
28895       <method name=
"DrawRoundedRectangle" type=
"" overloaded=
"no"> 
28896         <autodoc>DrawRoundedRectangle(Rect rect, double radius)
</autodoc> 
28898           <param name=
"rect" type=
"Rect" default=
""/> 
28899           <param name=
"radius" type=
"double" default=
""/> 
28902       <method name=
"DrawSpline" type=
"" overloaded=
"no"> 
28903         <autodoc>DrawSpline(int PCOUNT, Point points)
</autodoc> 
28905           <param name=
"PCOUNT" type=
"int" default=
""/> 
28906           <param name=
"points" type=
"Point" default=
""/> 
28909       <method name=
"DrawText" type=
"" overloaded=
"no"> 
28910         <autodoc>DrawText(String text, Point point)
</autodoc> 
28912           <param name=
"text" type=
"String" default=
""/> 
28913           <param name=
"point" type=
"Point" default=
""/> 
28916       <method name=
"GetAngle" type=
"int" overloaded=
"no"> 
28917         <autodoc>GetAngle() -
> int
</autodoc> 
28919       <method name=
"GetMetaFile" type=
"PseudoMetaFile" overloaded=
"no"> 
28920         <autodoc>GetMetaFile() -
> PseudoMetaFile
</autodoc> 
28922       <method name=
"GetRotation" type=
"double" overloaded=
"no"> 
28923         <autodoc>GetRotation() -
> double
</autodoc> 
28925       <method name=
"LoadFromMetaFile" type=
"bool" overloaded=
"no"> 
28926         <autodoc>LoadFromMetaFile(String filename) -
> bool
</autodoc> 
28928           <param name=
"filename" type=
"String" default=
""/> 
28931       <method name=
"Rotate" type=
"" overloaded=
"no"> 
28932         <autodoc>Rotate(double x, double y, double theta)
</autodoc> 
28934           <param name=
"x" type=
"double" default=
""/> 
28935           <param name=
"y" type=
"double" default=
""/> 
28936           <param name=
"theta" type=
"double" default=
""/> 
28939       <method name=
"SetClippingRect" type=
"" overloaded=
"no"> 
28940         <autodoc>SetClippingRect(Rect rect)
</autodoc> 
28942           <param name=
"rect" type=
"Rect" default=
""/> 
28945       <method name=
"SetDrawnBackgroundColour" type=
"" overloaded=
"no"> 
28946         <autodoc>SetDrawnBackgroundColour(Colour colour)
</autodoc> 
28948           <param name=
"colour" type=
"Colour" default=
""/> 
28951       <method name=
"SetDrawnBackgroundMode" type=
"" overloaded=
"no"> 
28952         <autodoc>SetDrawnBackgroundMode(int mode)
</autodoc> 
28954           <param name=
"mode" type=
"int" default=
""/> 
28957       <method name=
"SetDrawnBrush" type=
"" overloaded=
"no"> 
28958         <autodoc>SetDrawnBrush(wxBrush pen, bool isOutline=FALSE)
</autodoc> 
28960           <param name=
"pen" type=
"Brush" default=
""/> 
28961           <param name=
"isOutline" type=
"bool" default=
"FALSE"/> 
28964       <method name=
"SetDrawnFont" type=
"" overloaded=
"no"> 
28965         <autodoc>SetDrawnFont(Font font)
</autodoc> 
28967           <param name=
"font" type=
"Font" default=
""/> 
28970       <method name=
"SetDrawnPen" type=
"" overloaded=
"no"> 
28971         <autodoc>SetDrawnPen(wxPen pen, bool isOutline=FALSE)
</autodoc> 
28973           <param name=
"pen" type=
"Pen" default=
""/> 
28974           <param name=
"isOutline" type=
"bool" default=
"FALSE"/> 
28977       <method name=
"SetDrawnTextColour" type=
"" overloaded=
"no"> 
28978         <autodoc>SetDrawnTextColour(Colour colour)
</autodoc> 
28980           <param name=
"colour" type=
"Colour" default=
""/> 
28983       <method name=
"Scale" type=
"" overloaded=
"no"> 
28984         <autodoc>Scale(double sx, double sy)
</autodoc> 
28986           <param name=
"sx" type=
"double" default=
""/> 
28987           <param name=
"sy" type=
"double" default=
""/> 
28990       <method name=
"SetSaveToFile" type=
"" overloaded=
"no"> 
28991         <autodoc>SetSaveToFile(bool save)
</autodoc> 
28993           <param name=
"save" type=
"bool" default=
""/> 
28996       <method name=
"Translate" type=
"" overloaded=
"no"> 
28997         <autodoc>Translate(double x, double y)
</autodoc> 
28999           <param name=
"x" type=
"double" default=
""/> 
29000           <param name=
"y" type=
"double" default=
""/> 
29003       <method name=
"base_OnDelete" type=
"" overloaded=
"no"> 
29004         <autodoc>base_OnDelete()
</autodoc> 
29006       <method name=
"base_OnDraw" type=
"" overloaded=
"no"> 
29007         <autodoc>base_OnDraw(DC dc)
</autodoc> 
29009           <param name=
"dc" type=
"DC" default=
""/> 
29012       <method name=
"base_OnDrawContents" type=
"" overloaded=
"no"> 
29013         <autodoc>base_OnDrawContents(DC dc)
</autodoc> 
29015           <param name=
"dc" type=
"DC" default=
""/> 
29018       <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no"> 
29019         <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc> 
29021           <param name=
"dc" type=
"DC" default=
""/> 
29022           <param name=
"erase" type=
"bool" default=
"FALSE"/> 
29025       <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no"> 
29026         <autodoc>base_OnMoveLinks(DC dc)
</autodoc> 
29028           <param name=
"dc" type=
"DC" default=
""/> 
29031       <method name=
"base_OnErase" type=
"" overloaded=
"no"> 
29032         <autodoc>base_OnErase(DC dc)
</autodoc> 
29034           <param name=
"dc" type=
"DC" default=
""/> 
29037       <method name=
"base_OnEraseContents" type=
"" overloaded=
"no"> 
29038         <autodoc>base_OnEraseContents(DC dc)
</autodoc> 
29040           <param name=
"dc" type=
"DC" default=
""/> 
29043       <method name=
"base_OnHighlight" type=
"" overloaded=
"no"> 
29044         <autodoc>base_OnHighlight(DC dc)
</autodoc> 
29046           <param name=
"dc" type=
"DC" default=
""/> 
29049       <method name=
"base_OnLeftClick" type=
"" overloaded=
"no"> 
29050         <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29052           <param name=
"x" type=
"double" default=
""/> 
29053           <param name=
"y" type=
"double" default=
""/> 
29054           <param name=
"keys" type=
"int" default=
"0"/> 
29055           <param name=
"attachment" type=
"int" default=
"0"/> 
29058       <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no"> 
29059         <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29061           <param name=
"x" type=
"double" default=
""/> 
29062           <param name=
"y" type=
"double" default=
""/> 
29063           <param name=
"keys" type=
"int" default=
"0"/> 
29064           <param name=
"attachment" type=
"int" default=
"0"/> 
29067       <method name=
"base_OnRightClick" type=
"" overloaded=
"no"> 
29068         <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29070           <param name=
"x" type=
"double" default=
""/> 
29071           <param name=
"y" type=
"double" default=
""/> 
29072           <param name=
"keys" type=
"int" default=
"0"/> 
29073           <param name=
"attachment" type=
"int" default=
"0"/> 
29076       <method name=
"base_OnSize" type=
"" overloaded=
"no"> 
29077         <autodoc>base_OnSize(double x, double y)
</autodoc> 
29079           <param name=
"x" type=
"double" default=
""/> 
29080           <param name=
"y" type=
"double" default=
""/> 
29083       <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no"> 
29084         <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y, 
 
29085     bool display=True) -
> bool
</autodoc> 
29087           <param name=
"dc" type=
"DC" default=
""/> 
29088           <param name=
"x" type=
"double" default=
""/> 
29089           <param name=
"y" type=
"double" default=
""/> 
29090           <param name=
"old_x" type=
"double" default=
""/> 
29091           <param name=
"old_y" type=
"double" default=
""/> 
29092           <param name=
"display" type=
"bool" default=
"True"/> 
29095       <method name=
"base_OnMovePost" type=
"" overloaded=
"no"> 
29096         <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y, 
 
29097     bool display=True)
</autodoc> 
29099           <param name=
"dc" type=
"DC" default=
""/> 
29100           <param name=
"x" type=
"double" default=
""/> 
29101           <param name=
"y" type=
"double" default=
""/> 
29102           <param name=
"old_x" type=
"double" default=
""/> 
29103           <param name=
"old_y" type=
"double" default=
""/> 
29104           <param name=
"display" type=
"bool" default=
"True"/> 
29107       <method name=
"base_OnDragLeft" type=
"" overloaded=
"no"> 
29108         <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29110           <param name=
"draw" type=
"bool" default=
""/> 
29111           <param name=
"x" type=
"double" default=
""/> 
29112           <param name=
"y" type=
"double" default=
""/> 
29113           <param name=
"keys" type=
"int" default=
"0"/> 
29114           <param name=
"attachment" type=
"int" default=
"0"/> 
29117       <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no"> 
29118         <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29120           <param name=
"x" type=
"double" default=
""/> 
29121           <param name=
"y" type=
"double" default=
""/> 
29122           <param name=
"keys" type=
"int" default=
"0"/> 
29123           <param name=
"attachment" type=
"int" default=
"0"/> 
29126       <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no"> 
29127         <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29129           <param name=
"x" type=
"double" default=
""/> 
29130           <param name=
"y" type=
"double" default=
""/> 
29131           <param name=
"keys" type=
"int" default=
"0"/> 
29132           <param name=
"attachment" type=
"int" default=
"0"/> 
29135       <method name=
"base_OnDragRight" type=
"" overloaded=
"no"> 
29136         <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29138           <param name=
"draw" type=
"bool" default=
""/> 
29139           <param name=
"x" type=
"double" default=
""/> 
29140           <param name=
"y" type=
"double" default=
""/> 
29141           <param name=
"keys" type=
"int" default=
"0"/> 
29142           <param name=
"attachment" type=
"int" default=
"0"/> 
29145       <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no"> 
29146         <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29148           <param name=
"x" type=
"double" default=
""/> 
29149           <param name=
"y" type=
"double" default=
""/> 
29150           <param name=
"keys" type=
"int" default=
"0"/> 
29151           <param name=
"attachment" type=
"int" default=
"0"/> 
29154       <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no"> 
29155         <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29157           <param name=
"x" type=
"double" default=
""/> 
29158           <param name=
"y" type=
"double" default=
""/> 
29159           <param name=
"keys" type=
"int" default=
"0"/> 
29160           <param name=
"attachment" type=
"int" default=
"0"/> 
29163       <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no"> 
29164         <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc> 
29166           <param name=
"dc" type=
"DC" default=
""/> 
29167           <param name=
"x" type=
"double" default=
""/> 
29168           <param name=
"y" type=
"double" default=
""/> 
29169           <param name=
"w" type=
"double" default=
""/> 
29170           <param name=
"h" type=
"double" default=
""/> 
29173       <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no"> 
29174         <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc> 
29176           <param name=
"dc" type=
"DC" default=
""/> 
29179       <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no"> 
29180         <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc> 
29182           <param name=
"dc" type=
"DC" default=
""/> 
29185       <method name=
"base_OnMoveLink" type=
"" overloaded=
"no"> 
29186         <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc> 
29188           <param name=
"dc" type=
"DC" default=
""/> 
29189           <param name=
"moveControlPoints" type=
"bool" default=
"True"/> 
29192       <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no"> 
29193         <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0, 
 
29194     int attachment=
0)
</autodoc> 
29196           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
29197           <param name=
"draw" type=
"bool" default=
""/> 
29198           <param name=
"x" type=
"double" default=
""/> 
29199           <param name=
"y" type=
"double" default=
""/> 
29200           <param name=
"keys" type=
"int" default=
"0"/> 
29201           <param name=
"attachment" type=
"int" default=
"0"/> 
29204       <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no"> 
29205         <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
29206     int attachment=
0)
</autodoc> 
29208           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
29209           <param name=
"x" type=
"double" default=
""/> 
29210           <param name=
"y" type=
"double" default=
""/> 
29211           <param name=
"keys" type=
"int" default=
"0"/> 
29212           <param name=
"attachment" type=
"int" default=
"0"/> 
29215       <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no"> 
29216         <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
29217     int attachment=
0)
</autodoc> 
29219           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
29220           <param name=
"x" type=
"double" default=
""/> 
29221           <param name=
"y" type=
"double" default=
""/> 
29222           <param name=
"keys" type=
"int" default=
"0"/> 
29223           <param name=
"attachment" type=
"int" default=
"0"/> 
29226       <method name=
"base_OnBeginSize" type=
"" overloaded=
"no"> 
29227         <autodoc>base_OnBeginSize(double w, double h)
</autodoc> 
29229           <param name=
"w" type=
"double" default=
""/> 
29230           <param name=
"h" type=
"double" default=
""/> 
29233       <method name=
"base_OnEndSize" type=
"" overloaded=
"no"> 
29234         <autodoc>base_OnEndSize(double w, double h)
</autodoc> 
29236           <param name=
"w" type=
"double" default=
""/> 
29237           <param name=
"h" type=
"double" default=
""/> 
29241     <class name=
"OGLConstraint" oldname=
"wxOGLConstraint" module=
"ogl"> 
29242       <baseclass name=
"Object"/> 
29243       <constructor name=
"OGLConstraint" overloaded=
"no"> 
29244         <autodoc>__init__(int type, PyShape constraining, PyObject constrained) -
> OGLConstraint
</autodoc> 
29246           <param name=
"type" type=
"int" default=
""/> 
29247           <param name=
"constraining" type=
"PyShape" default=
""/> 
29248           <param name=
"constrained" type=
"PyObject" default=
""/> 
29251       <method name=
"Evaluate" type=
"bool" overloaded=
"no"> 
29252         <autodoc>Evaluate() -
> bool
</autodoc> 
29254       <method name=
"SetSpacing" type=
"" overloaded=
"no"> 
29255         <autodoc>SetSpacing(double x, double y)
</autodoc> 
29257           <param name=
"x" type=
"double" default=
""/> 
29258           <param name=
"y" type=
"double" default=
""/> 
29261       <method name=
"Equals" type=
"bool" overloaded=
"no"> 
29262         <autodoc>Equals(double a, double b) -
> bool
</autodoc> 
29264           <param name=
"a" type=
"double" default=
""/> 
29265           <param name=
"b" type=
"double" default=
""/> 
29269     <class name=
"PyCompositeShape" oldname=
"wxPyCompositeShape" module=
"ogl"> 
29270       <baseclass name=
"PyRectangleShape"/> 
29271       <constructor name=
"PyCompositeShape" overloaded=
"no"> 
29272         <autodoc>__init__() -
> PyCompositeShape
</autodoc> 
29274       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
29275         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
29277           <param name=
"self" type=
"PyObject" default=
""/> 
29278           <param name=
"_class" type=
"PyObject" default=
""/> 
29281       <method name=
"AddChild" type=
"" overloaded=
"no"> 
29282         <autodoc>AddChild(PyShape child, PyShape addAfter=None)
</autodoc> 
29284           <param name=
"child" type=
"PyShape" default=
""/> 
29285           <param name=
"addAfter" type=
"PyShape" default=
"NULL"/> 
29288       <method name=
"AddConstraint" type=
"OGLConstraint" overloaded=
"no"> 
29289         <autodoc>AddConstraint(OGLConstraint constraint) -
> OGLConstraint
</autodoc> 
29291           <param name=
"constraint" type=
"OGLConstraint" default=
""/> 
29294       <method name=
"AddConstrainedShapes" type=
"OGLConstraint" overloaded=
"no"> 
29295         <autodoc>AddConstrainedShapes(int type, PyShape constraining, PyObject constrained) -
> OGLConstraint
</autodoc> 
29297           <param name=
"type" type=
"int" default=
""/> 
29298           <param name=
"constraining" type=
"PyShape" default=
""/> 
29299           <param name=
"constrained" type=
"PyObject" default=
""/> 
29302       <method name=
"AddSimpleConstraint" type=
"OGLConstraint" overloaded=
"no"> 
29303         <autodoc>AddSimpleConstraint(int type, PyShape constraining, PyShape constrained) -
> OGLConstraint
</autodoc> 
29305           <param name=
"type" type=
"int" default=
""/> 
29306           <param name=
"constraining" type=
"PyShape" default=
""/> 
29307           <param name=
"constrained" type=
"PyShape" default=
""/> 
29310       <method name=
"CalculateSize" type=
"" overloaded=
"no"> 
29311         <autodoc>CalculateSize()
</autodoc> 
29313       <method name=
"ContainsDivision" type=
"bool" overloaded=
"no"> 
29314         <autodoc>ContainsDivision(PyDivisionShape division) -
> bool
</autodoc> 
29316           <param name=
"division" type=
"wxPyDivisionShape" default=
""/> 
29319       <method name=
"DeleteConstraint" type=
"" overloaded=
"no"> 
29320         <autodoc>DeleteConstraint(OGLConstraint constraint)
</autodoc> 
29322           <param name=
"constraint" type=
"OGLConstraint" default=
""/> 
29325       <method name=
"DeleteConstraintsInvolvingChild" type=
"" overloaded=
"no"> 
29326         <autodoc>DeleteConstraintsInvolvingChild(PyShape child)
</autodoc> 
29328           <param name=
"child" type=
"PyShape" default=
""/> 
29331       <method name=
"FindContainerImage" type=
"PyShape" overloaded=
"no"> 
29332         <autodoc>FindContainerImage() -
> PyShape
</autodoc> 
29334       <method name=
"GetConstraints" type=
"PyObject" overloaded=
"no"> 
29335         <autodoc>GetConstraints() -
> PyObject
</autodoc> 
29337       <method name=
"GetDivisions" type=
"PyObject" overloaded=
"no"> 
29338         <autodoc>GetDivisions() -
> PyObject
</autodoc> 
29340       <method name=
"MakeContainer" type=
"" overloaded=
"no"> 
29341         <autodoc>MakeContainer()
</autodoc> 
29343       <method name=
"Recompute" type=
"bool" overloaded=
"no"> 
29344         <autodoc>Recompute() -
> bool
</autodoc> 
29346       <method name=
"RemoveChild" type=
"" overloaded=
"no"> 
29347         <autodoc>RemoveChild(PyShape child)
</autodoc> 
29349           <param name=
"child" type=
"PyShape" default=
""/> 
29352       <method name=
"base_OnDelete" type=
"" overloaded=
"no"> 
29353         <autodoc>base_OnDelete()
</autodoc> 
29355       <method name=
"base_OnDraw" type=
"" overloaded=
"no"> 
29356         <autodoc>base_OnDraw(DC dc)
</autodoc> 
29358           <param name=
"dc" type=
"DC" default=
""/> 
29361       <method name=
"base_OnDrawContents" type=
"" overloaded=
"no"> 
29362         <autodoc>base_OnDrawContents(DC dc)
</autodoc> 
29364           <param name=
"dc" type=
"DC" default=
""/> 
29367       <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no"> 
29368         <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc> 
29370           <param name=
"dc" type=
"DC" default=
""/> 
29371           <param name=
"erase" type=
"bool" default=
"FALSE"/> 
29374       <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no"> 
29375         <autodoc>base_OnMoveLinks(DC dc)
</autodoc> 
29377           <param name=
"dc" type=
"DC" default=
""/> 
29380       <method name=
"base_OnErase" type=
"" overloaded=
"no"> 
29381         <autodoc>base_OnErase(DC dc)
</autodoc> 
29383           <param name=
"dc" type=
"DC" default=
""/> 
29386       <method name=
"base_OnEraseContents" type=
"" overloaded=
"no"> 
29387         <autodoc>base_OnEraseContents(DC dc)
</autodoc> 
29389           <param name=
"dc" type=
"DC" default=
""/> 
29392       <method name=
"base_OnHighlight" type=
"" overloaded=
"no"> 
29393         <autodoc>base_OnHighlight(DC dc)
</autodoc> 
29395           <param name=
"dc" type=
"DC" default=
""/> 
29398       <method name=
"base_OnLeftClick" type=
"" overloaded=
"no"> 
29399         <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29401           <param name=
"x" type=
"double" default=
""/> 
29402           <param name=
"y" type=
"double" default=
""/> 
29403           <param name=
"keys" type=
"int" default=
"0"/> 
29404           <param name=
"attachment" type=
"int" default=
"0"/> 
29407       <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no"> 
29408         <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29410           <param name=
"x" type=
"double" default=
""/> 
29411           <param name=
"y" type=
"double" default=
""/> 
29412           <param name=
"keys" type=
"int" default=
"0"/> 
29413           <param name=
"attachment" type=
"int" default=
"0"/> 
29416       <method name=
"base_OnRightClick" type=
"" overloaded=
"no"> 
29417         <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29419           <param name=
"x" type=
"double" default=
""/> 
29420           <param name=
"y" type=
"double" default=
""/> 
29421           <param name=
"keys" type=
"int" default=
"0"/> 
29422           <param name=
"attachment" type=
"int" default=
"0"/> 
29425       <method name=
"base_OnSize" type=
"" overloaded=
"no"> 
29426         <autodoc>base_OnSize(double x, double y)
</autodoc> 
29428           <param name=
"x" type=
"double" default=
""/> 
29429           <param name=
"y" type=
"double" default=
""/> 
29432       <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no"> 
29433         <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y, 
 
29434     bool display=True) -
> bool
</autodoc> 
29436           <param name=
"dc" type=
"DC" default=
""/> 
29437           <param name=
"x" type=
"double" default=
""/> 
29438           <param name=
"y" type=
"double" default=
""/> 
29439           <param name=
"old_x" type=
"double" default=
""/> 
29440           <param name=
"old_y" type=
"double" default=
""/> 
29441           <param name=
"display" type=
"bool" default=
"True"/> 
29444       <method name=
"base_OnMovePost" type=
"" overloaded=
"no"> 
29445         <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y, 
 
29446     bool display=True)
</autodoc> 
29448           <param name=
"dc" type=
"DC" default=
""/> 
29449           <param name=
"x" type=
"double" default=
""/> 
29450           <param name=
"y" type=
"double" default=
""/> 
29451           <param name=
"old_x" type=
"double" default=
""/> 
29452           <param name=
"old_y" type=
"double" default=
""/> 
29453           <param name=
"display" type=
"bool" default=
"True"/> 
29456       <method name=
"base_OnDragLeft" type=
"" overloaded=
"no"> 
29457         <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29459           <param name=
"draw" type=
"bool" default=
""/> 
29460           <param name=
"x" type=
"double" default=
""/> 
29461           <param name=
"y" type=
"double" default=
""/> 
29462           <param name=
"keys" type=
"int" default=
"0"/> 
29463           <param name=
"attachment" type=
"int" default=
"0"/> 
29466       <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no"> 
29467         <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29469           <param name=
"x" type=
"double" default=
""/> 
29470           <param name=
"y" type=
"double" default=
""/> 
29471           <param name=
"keys" type=
"int" default=
"0"/> 
29472           <param name=
"attachment" type=
"int" default=
"0"/> 
29475       <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no"> 
29476         <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29478           <param name=
"x" type=
"double" default=
""/> 
29479           <param name=
"y" type=
"double" default=
""/> 
29480           <param name=
"keys" type=
"int" default=
"0"/> 
29481           <param name=
"attachment" type=
"int" default=
"0"/> 
29484       <method name=
"base_OnDragRight" type=
"" overloaded=
"no"> 
29485         <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29487           <param name=
"draw" type=
"bool" default=
""/> 
29488           <param name=
"x" type=
"double" default=
""/> 
29489           <param name=
"y" type=
"double" default=
""/> 
29490           <param name=
"keys" type=
"int" default=
"0"/> 
29491           <param name=
"attachment" type=
"int" default=
"0"/> 
29494       <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no"> 
29495         <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29497           <param name=
"x" type=
"double" default=
""/> 
29498           <param name=
"y" type=
"double" default=
""/> 
29499           <param name=
"keys" type=
"int" default=
"0"/> 
29500           <param name=
"attachment" type=
"int" default=
"0"/> 
29503       <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no"> 
29504         <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29506           <param name=
"x" type=
"double" default=
""/> 
29507           <param name=
"y" type=
"double" default=
""/> 
29508           <param name=
"keys" type=
"int" default=
"0"/> 
29509           <param name=
"attachment" type=
"int" default=
"0"/> 
29512       <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no"> 
29513         <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc> 
29515           <param name=
"dc" type=
"DC" default=
""/> 
29516           <param name=
"x" type=
"double" default=
""/> 
29517           <param name=
"y" type=
"double" default=
""/> 
29518           <param name=
"w" type=
"double" default=
""/> 
29519           <param name=
"h" type=
"double" default=
""/> 
29522       <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no"> 
29523         <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc> 
29525           <param name=
"dc" type=
"DC" default=
""/> 
29528       <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no"> 
29529         <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc> 
29531           <param name=
"dc" type=
"DC" default=
""/> 
29534       <method name=
"base_OnMoveLink" type=
"" overloaded=
"no"> 
29535         <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc> 
29537           <param name=
"dc" type=
"DC" default=
""/> 
29538           <param name=
"moveControlPoints" type=
"bool" default=
"True"/> 
29541       <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no"> 
29542         <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0, 
 
29543     int attachment=
0)
</autodoc> 
29545           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
29546           <param name=
"draw" type=
"bool" default=
""/> 
29547           <param name=
"x" type=
"double" default=
""/> 
29548           <param name=
"y" type=
"double" default=
""/> 
29549           <param name=
"keys" type=
"int" default=
"0"/> 
29550           <param name=
"attachment" type=
"int" default=
"0"/> 
29553       <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no"> 
29554         <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
29555     int attachment=
0)
</autodoc> 
29557           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
29558           <param name=
"x" type=
"double" default=
""/> 
29559           <param name=
"y" type=
"double" default=
""/> 
29560           <param name=
"keys" type=
"int" default=
"0"/> 
29561           <param name=
"attachment" type=
"int" default=
"0"/> 
29564       <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no"> 
29565         <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
29566     int attachment=
0)
</autodoc> 
29568           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
29569           <param name=
"x" type=
"double" default=
""/> 
29570           <param name=
"y" type=
"double" default=
""/> 
29571           <param name=
"keys" type=
"int" default=
"0"/> 
29572           <param name=
"attachment" type=
"int" default=
"0"/> 
29575       <method name=
"base_OnBeginSize" type=
"" overloaded=
"no"> 
29576         <autodoc>base_OnBeginSize(double w, double h)
</autodoc> 
29578           <param name=
"w" type=
"double" default=
""/> 
29579           <param name=
"h" type=
"double" default=
""/> 
29582       <method name=
"base_OnEndSize" type=
"" overloaded=
"no"> 
29583         <autodoc>base_OnEndSize(double w, double h)
</autodoc> 
29585           <param name=
"w" type=
"double" default=
""/> 
29586           <param name=
"h" type=
"double" default=
""/> 
29590     <class name=
"PyDividedShape" oldname=
"wxPyDividedShape" module=
"ogl"> 
29591       <baseclass name=
"PyRectangleShape"/> 
29592       <constructor name=
"PyDividedShape" overloaded=
"no"> 
29593         <autodoc>__init__(double width=
0.0, double height=
0.0) -
> PyDividedShape
</autodoc> 
29595           <param name=
"width" type=
"double" default=
"0.0"/> 
29596           <param name=
"height" type=
"double" default=
"0.0"/> 
29599       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
29600         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
29602           <param name=
"self" type=
"PyObject" default=
""/> 
29603           <param name=
"_class" type=
"PyObject" default=
""/> 
29606       <method name=
"EditRegions" type=
"" overloaded=
"no"> 
29607         <autodoc>EditRegions()
</autodoc> 
29609       <method name=
"SetRegionSizes" type=
"" overloaded=
"no"> 
29610         <autodoc>SetRegionSizes()
</autodoc> 
29612       <method name=
"base_OnDelete" type=
"" overloaded=
"no"> 
29613         <autodoc>base_OnDelete()
</autodoc> 
29615       <method name=
"base_OnDraw" type=
"" overloaded=
"no"> 
29616         <autodoc>base_OnDraw(DC dc)
</autodoc> 
29618           <param name=
"dc" type=
"DC" default=
""/> 
29621       <method name=
"base_OnDrawContents" type=
"" overloaded=
"no"> 
29622         <autodoc>base_OnDrawContents(DC dc)
</autodoc> 
29624           <param name=
"dc" type=
"DC" default=
""/> 
29627       <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no"> 
29628         <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc> 
29630           <param name=
"dc" type=
"DC" default=
""/> 
29631           <param name=
"erase" type=
"bool" default=
"FALSE"/> 
29634       <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no"> 
29635         <autodoc>base_OnMoveLinks(DC dc)
</autodoc> 
29637           <param name=
"dc" type=
"DC" default=
""/> 
29640       <method name=
"base_OnErase" type=
"" overloaded=
"no"> 
29641         <autodoc>base_OnErase(DC dc)
</autodoc> 
29643           <param name=
"dc" type=
"DC" default=
""/> 
29646       <method name=
"base_OnEraseContents" type=
"" overloaded=
"no"> 
29647         <autodoc>base_OnEraseContents(DC dc)
</autodoc> 
29649           <param name=
"dc" type=
"DC" default=
""/> 
29652       <method name=
"base_OnHighlight" type=
"" overloaded=
"no"> 
29653         <autodoc>base_OnHighlight(DC dc)
</autodoc> 
29655           <param name=
"dc" type=
"DC" default=
""/> 
29658       <method name=
"base_OnLeftClick" type=
"" overloaded=
"no"> 
29659         <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29661           <param name=
"x" type=
"double" default=
""/> 
29662           <param name=
"y" type=
"double" default=
""/> 
29663           <param name=
"keys" type=
"int" default=
"0"/> 
29664           <param name=
"attachment" type=
"int" default=
"0"/> 
29667       <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no"> 
29668         <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29670           <param name=
"x" type=
"double" default=
""/> 
29671           <param name=
"y" type=
"double" default=
""/> 
29672           <param name=
"keys" type=
"int" default=
"0"/> 
29673           <param name=
"attachment" type=
"int" default=
"0"/> 
29676       <method name=
"base_OnRightClick" type=
"" overloaded=
"no"> 
29677         <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29679           <param name=
"x" type=
"double" default=
""/> 
29680           <param name=
"y" type=
"double" default=
""/> 
29681           <param name=
"keys" type=
"int" default=
"0"/> 
29682           <param name=
"attachment" type=
"int" default=
"0"/> 
29685       <method name=
"base_OnSize" type=
"" overloaded=
"no"> 
29686         <autodoc>base_OnSize(double x, double y)
</autodoc> 
29688           <param name=
"x" type=
"double" default=
""/> 
29689           <param name=
"y" type=
"double" default=
""/> 
29692       <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no"> 
29693         <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y, 
 
29694     bool display=True) -
> bool
</autodoc> 
29696           <param name=
"dc" type=
"DC" default=
""/> 
29697           <param name=
"x" type=
"double" default=
""/> 
29698           <param name=
"y" type=
"double" default=
""/> 
29699           <param name=
"old_x" type=
"double" default=
""/> 
29700           <param name=
"old_y" type=
"double" default=
""/> 
29701           <param name=
"display" type=
"bool" default=
"True"/> 
29704       <method name=
"base_OnMovePost" type=
"" overloaded=
"no"> 
29705         <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y, 
 
29706     bool display=True)
</autodoc> 
29708           <param name=
"dc" type=
"DC" default=
""/> 
29709           <param name=
"x" type=
"double" default=
""/> 
29710           <param name=
"y" type=
"double" default=
""/> 
29711           <param name=
"old_x" type=
"double" default=
""/> 
29712           <param name=
"old_y" type=
"double" default=
""/> 
29713           <param name=
"display" type=
"bool" default=
"True"/> 
29716       <method name=
"base_OnDragLeft" type=
"" overloaded=
"no"> 
29717         <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29719           <param name=
"draw" type=
"bool" default=
""/> 
29720           <param name=
"x" type=
"double" default=
""/> 
29721           <param name=
"y" type=
"double" default=
""/> 
29722           <param name=
"keys" type=
"int" default=
"0"/> 
29723           <param name=
"attachment" type=
"int" default=
"0"/> 
29726       <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no"> 
29727         <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29729           <param name=
"x" type=
"double" default=
""/> 
29730           <param name=
"y" type=
"double" default=
""/> 
29731           <param name=
"keys" type=
"int" default=
"0"/> 
29732           <param name=
"attachment" type=
"int" default=
"0"/> 
29735       <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no"> 
29736         <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29738           <param name=
"x" type=
"double" default=
""/> 
29739           <param name=
"y" type=
"double" default=
""/> 
29740           <param name=
"keys" type=
"int" default=
"0"/> 
29741           <param name=
"attachment" type=
"int" default=
"0"/> 
29744       <method name=
"base_OnDragRight" type=
"" overloaded=
"no"> 
29745         <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29747           <param name=
"draw" type=
"bool" default=
""/> 
29748           <param name=
"x" type=
"double" default=
""/> 
29749           <param name=
"y" type=
"double" default=
""/> 
29750           <param name=
"keys" type=
"int" default=
"0"/> 
29751           <param name=
"attachment" type=
"int" default=
"0"/> 
29754       <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no"> 
29755         <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29757           <param name=
"x" type=
"double" default=
""/> 
29758           <param name=
"y" type=
"double" default=
""/> 
29759           <param name=
"keys" type=
"int" default=
"0"/> 
29760           <param name=
"attachment" type=
"int" default=
"0"/> 
29763       <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no"> 
29764         <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29766           <param name=
"x" type=
"double" default=
""/> 
29767           <param name=
"y" type=
"double" default=
""/> 
29768           <param name=
"keys" type=
"int" default=
"0"/> 
29769           <param name=
"attachment" type=
"int" default=
"0"/> 
29772       <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no"> 
29773         <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc> 
29775           <param name=
"dc" type=
"DC" default=
""/> 
29776           <param name=
"x" type=
"double" default=
""/> 
29777           <param name=
"y" type=
"double" default=
""/> 
29778           <param name=
"w" type=
"double" default=
""/> 
29779           <param name=
"h" type=
"double" default=
""/> 
29782       <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no"> 
29783         <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc> 
29785           <param name=
"dc" type=
"DC" default=
""/> 
29788       <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no"> 
29789         <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc> 
29791           <param name=
"dc" type=
"DC" default=
""/> 
29794       <method name=
"base_OnMoveLink" type=
"" overloaded=
"no"> 
29795         <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc> 
29797           <param name=
"dc" type=
"DC" default=
""/> 
29798           <param name=
"moveControlPoints" type=
"bool" default=
"True"/> 
29801       <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no"> 
29802         <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0, 
 
29803     int attachment=
0)
</autodoc> 
29805           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
29806           <param name=
"draw" type=
"bool" default=
""/> 
29807           <param name=
"x" type=
"double" default=
""/> 
29808           <param name=
"y" type=
"double" default=
""/> 
29809           <param name=
"keys" type=
"int" default=
"0"/> 
29810           <param name=
"attachment" type=
"int" default=
"0"/> 
29813       <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no"> 
29814         <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
29815     int attachment=
0)
</autodoc> 
29817           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
29818           <param name=
"x" type=
"double" default=
""/> 
29819           <param name=
"y" type=
"double" default=
""/> 
29820           <param name=
"keys" type=
"int" default=
"0"/> 
29821           <param name=
"attachment" type=
"int" default=
"0"/> 
29824       <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no"> 
29825         <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
29826     int attachment=
0)
</autodoc> 
29828           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
29829           <param name=
"x" type=
"double" default=
""/> 
29830           <param name=
"y" type=
"double" default=
""/> 
29831           <param name=
"keys" type=
"int" default=
"0"/> 
29832           <param name=
"attachment" type=
"int" default=
"0"/> 
29835       <method name=
"base_OnBeginSize" type=
"" overloaded=
"no"> 
29836         <autodoc>base_OnBeginSize(double w, double h)
</autodoc> 
29838           <param name=
"w" type=
"double" default=
""/> 
29839           <param name=
"h" type=
"double" default=
""/> 
29842       <method name=
"base_OnEndSize" type=
"" overloaded=
"no"> 
29843         <autodoc>base_OnEndSize(double w, double h)
</autodoc> 
29845           <param name=
"w" type=
"double" default=
""/> 
29846           <param name=
"h" type=
"double" default=
""/> 
29850     <class name=
"PyDivisionShape" oldname=
"wxPyDivisionShape" module=
"ogl"> 
29851       <baseclass name=
"PyCompositeShape"/> 
29852       <constructor name=
"PyDivisionShape" overloaded=
"no"> 
29853         <autodoc>__init__() -
> PyDivisionShape
</autodoc> 
29855       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
29856         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
29858           <param name=
"self" type=
"PyObject" default=
""/> 
29859           <param name=
"_class" type=
"PyObject" default=
""/> 
29862       <method name=
"AdjustBottom" type=
"" overloaded=
"no"> 
29863         <autodoc>AdjustBottom(double bottom, bool test)
</autodoc> 
29865           <param name=
"bottom" type=
"double" default=
""/> 
29866           <param name=
"test" type=
"bool" default=
""/> 
29869       <method name=
"AdjustLeft" type=
"" overloaded=
"no"> 
29870         <autodoc>AdjustLeft(double left, bool test)
</autodoc> 
29872           <param name=
"left" type=
"double" default=
""/> 
29873           <param name=
"test" type=
"bool" default=
""/> 
29876       <method name=
"AdjustRight" type=
"" overloaded=
"no"> 
29877         <autodoc>AdjustRight(double right, bool test)
</autodoc> 
29879           <param name=
"right" type=
"double" default=
""/> 
29880           <param name=
"test" type=
"bool" default=
""/> 
29883       <method name=
"AdjustTop" type=
"" overloaded=
"no"> 
29884         <autodoc>AdjustTop(double top, bool test)
</autodoc> 
29886           <param name=
"top" type=
"double" default=
""/> 
29887           <param name=
"test" type=
"bool" default=
""/> 
29890       <method name=
"Divide" type=
"" overloaded=
"no"> 
29891         <autodoc>Divide(int direction)
</autodoc> 
29893           <param name=
"direction" type=
"int" default=
""/> 
29896       <method name=
"EditEdge" type=
"" overloaded=
"no"> 
29897         <autodoc>EditEdge(int side)
</autodoc> 
29899           <param name=
"side" type=
"int" default=
""/> 
29902       <method name=
"GetBottomSide" type=
"PyDivisionShape" overloaded=
"no"> 
29903         <autodoc>GetBottomSide() -
> PyDivisionShape
</autodoc> 
29905       <method name=
"GetHandleSide" type=
"int" overloaded=
"no"> 
29906         <autodoc>GetHandleSide() -
> int
</autodoc> 
29908       <method name=
"GetLeftSide" type=
"PyDivisionShape" overloaded=
"no"> 
29909         <autodoc>GetLeftSide() -
> PyDivisionShape
</autodoc> 
29911       <method name=
"GetLeftSideColour" type=
"String" overloaded=
"no"> 
29912         <autodoc>GetLeftSideColour() -
> String
</autodoc> 
29914       <method name=
"GetLeftSidePen" type=
"Pen" overloaded=
"no"> 
29915         <autodoc>GetLeftSidePen() -
> wxPen
</autodoc> 
29917       <method name=
"GetRightSide" type=
"PyDivisionShape" overloaded=
"no"> 
29918         <autodoc>GetRightSide() -
> PyDivisionShape
</autodoc> 
29920       <method name=
"GetTopSide" type=
"PyDivisionShape" overloaded=
"no"> 
29921         <autodoc>GetTopSide() -
> PyDivisionShape
</autodoc> 
29923       <method name=
"GetTopSidePen" type=
"Pen" overloaded=
"no"> 
29924         <autodoc>GetTopSidePen() -
> wxPen
</autodoc> 
29926       <method name=
"ResizeAdjoining" type=
"" overloaded=
"no"> 
29927         <autodoc>ResizeAdjoining(int side, double newPos, bool test)
</autodoc> 
29929           <param name=
"side" type=
"int" default=
""/> 
29930           <param name=
"newPos" type=
"double" default=
""/> 
29931           <param name=
"test" type=
"bool" default=
""/> 
29934       <method name=
"PopupMenu" type=
"" overloaded=
"no"> 
29935         <autodoc>PopupMenu(double x, double y)
</autodoc> 
29937           <param name=
"x" type=
"double" default=
""/> 
29938           <param name=
"y" type=
"double" default=
""/> 
29941       <method name=
"SetBottomSide" type=
"" overloaded=
"no"> 
29942         <autodoc>SetBottomSide(PyDivisionShape shape)
</autodoc> 
29944           <param name=
"shape" type=
"PyDivisionShape" default=
""/> 
29947       <method name=
"SetHandleSide" type=
"" overloaded=
"no"> 
29948         <autodoc>SetHandleSide(int side)
</autodoc> 
29950           <param name=
"side" type=
"int" default=
""/> 
29953       <method name=
"SetLeftSide" type=
"" overloaded=
"no"> 
29954         <autodoc>SetLeftSide(PyDivisionShape shape)
</autodoc> 
29956           <param name=
"shape" type=
"PyDivisionShape" default=
""/> 
29959       <method name=
"SetLeftSideColour" type=
"" overloaded=
"no"> 
29960         <autodoc>SetLeftSideColour(String colour)
</autodoc> 
29962           <param name=
"colour" type=
"String" default=
""/> 
29965       <method name=
"SetLeftSidePen" type=
"" overloaded=
"no"> 
29966         <autodoc>SetLeftSidePen(wxPen pen)
</autodoc> 
29968           <param name=
"pen" type=
"Pen" default=
""/> 
29971       <method name=
"SetRightSide" type=
"" overloaded=
"no"> 
29972         <autodoc>SetRightSide(PyDivisionShape shape)
</autodoc> 
29974           <param name=
"shape" type=
"PyDivisionShape" default=
""/> 
29977       <method name=
"SetTopSide" type=
"" overloaded=
"no"> 
29978         <autodoc>SetTopSide(PyDivisionShape shape)
</autodoc> 
29980           <param name=
"shape" type=
"PyDivisionShape" default=
""/> 
29983       <method name=
"SetTopSideColour" type=
"" overloaded=
"no"> 
29984         <autodoc>SetTopSideColour(String colour)
</autodoc> 
29986           <param name=
"colour" type=
"String" default=
""/> 
29989       <method name=
"SetTopSidePen" type=
"" overloaded=
"no"> 
29990         <autodoc>SetTopSidePen(wxPen pen)
</autodoc> 
29992           <param name=
"pen" type=
"Pen" default=
""/> 
29995       <method name=
"base_OnDelete" type=
"" overloaded=
"no"> 
29996         <autodoc>base_OnDelete()
</autodoc> 
29998       <method name=
"base_OnDraw" type=
"" overloaded=
"no"> 
29999         <autodoc>base_OnDraw(DC dc)
</autodoc> 
30001           <param name=
"dc" type=
"DC" default=
""/> 
30004       <method name=
"base_OnDrawContents" type=
"" overloaded=
"no"> 
30005         <autodoc>base_OnDrawContents(DC dc)
</autodoc> 
30007           <param name=
"dc" type=
"DC" default=
""/> 
30010       <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no"> 
30011         <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc> 
30013           <param name=
"dc" type=
"DC" default=
""/> 
30014           <param name=
"erase" type=
"bool" default=
"FALSE"/> 
30017       <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no"> 
30018         <autodoc>base_OnMoveLinks(DC dc)
</autodoc> 
30020           <param name=
"dc" type=
"DC" default=
""/> 
30023       <method name=
"base_OnErase" type=
"" overloaded=
"no"> 
30024         <autodoc>base_OnErase(DC dc)
</autodoc> 
30026           <param name=
"dc" type=
"DC" default=
""/> 
30029       <method name=
"base_OnEraseContents" type=
"" overloaded=
"no"> 
30030         <autodoc>base_OnEraseContents(DC dc)
</autodoc> 
30032           <param name=
"dc" type=
"DC" default=
""/> 
30035       <method name=
"base_OnHighlight" type=
"" overloaded=
"no"> 
30036         <autodoc>base_OnHighlight(DC dc)
</autodoc> 
30038           <param name=
"dc" type=
"DC" default=
""/> 
30041       <method name=
"base_OnLeftClick" type=
"" overloaded=
"no"> 
30042         <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30044           <param name=
"x" type=
"double" default=
""/> 
30045           <param name=
"y" type=
"double" default=
""/> 
30046           <param name=
"keys" type=
"int" default=
"0"/> 
30047           <param name=
"attachment" type=
"int" default=
"0"/> 
30050       <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no"> 
30051         <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30053           <param name=
"x" type=
"double" default=
""/> 
30054           <param name=
"y" type=
"double" default=
""/> 
30055           <param name=
"keys" type=
"int" default=
"0"/> 
30056           <param name=
"attachment" type=
"int" default=
"0"/> 
30059       <method name=
"base_OnRightClick" type=
"" overloaded=
"no"> 
30060         <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
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_OnSize" type=
"" overloaded=
"no"> 
30069         <autodoc>base_OnSize(double x, double y)
</autodoc> 
30071           <param name=
"x" type=
"double" default=
""/> 
30072           <param name=
"y" type=
"double" default=
""/> 
30075       <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no"> 
30076         <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y, 
 
30077     bool display=True) -
> bool
</autodoc> 
30079           <param name=
"dc" type=
"DC" default=
""/> 
30080           <param name=
"x" type=
"double" default=
""/> 
30081           <param name=
"y" type=
"double" default=
""/> 
30082           <param name=
"old_x" type=
"double" default=
""/> 
30083           <param name=
"old_y" type=
"double" default=
""/> 
30084           <param name=
"display" type=
"bool" default=
"True"/> 
30087       <method name=
"base_OnMovePost" type=
"" overloaded=
"no"> 
30088         <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y, 
 
30089     bool display=True)
</autodoc> 
30091           <param name=
"dc" type=
"DC" default=
""/> 
30092           <param name=
"x" type=
"double" default=
""/> 
30093           <param name=
"y" type=
"double" default=
""/> 
30094           <param name=
"old_x" type=
"double" default=
""/> 
30095           <param name=
"old_y" type=
"double" default=
""/> 
30096           <param name=
"display" type=
"bool" default=
"True"/> 
30099       <method name=
"base_OnDragLeft" type=
"" overloaded=
"no"> 
30100         <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30102           <param name=
"draw" type=
"bool" default=
""/> 
30103           <param name=
"x" type=
"double" default=
""/> 
30104           <param name=
"y" type=
"double" default=
""/> 
30105           <param name=
"keys" type=
"int" default=
"0"/> 
30106           <param name=
"attachment" type=
"int" default=
"0"/> 
30109       <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no"> 
30110         <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30112           <param name=
"x" type=
"double" default=
""/> 
30113           <param name=
"y" type=
"double" default=
""/> 
30114           <param name=
"keys" type=
"int" default=
"0"/> 
30115           <param name=
"attachment" type=
"int" default=
"0"/> 
30118       <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no"> 
30119         <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30121           <param name=
"x" type=
"double" default=
""/> 
30122           <param name=
"y" type=
"double" default=
""/> 
30123           <param name=
"keys" type=
"int" default=
"0"/> 
30124           <param name=
"attachment" type=
"int" default=
"0"/> 
30127       <method name=
"base_OnDragRight" type=
"" overloaded=
"no"> 
30128         <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30130           <param name=
"draw" type=
"bool" default=
""/> 
30131           <param name=
"x" type=
"double" default=
""/> 
30132           <param name=
"y" type=
"double" default=
""/> 
30133           <param name=
"keys" type=
"int" default=
"0"/> 
30134           <param name=
"attachment" type=
"int" default=
"0"/> 
30137       <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no"> 
30138         <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30140           <param name=
"x" type=
"double" default=
""/> 
30141           <param name=
"y" type=
"double" default=
""/> 
30142           <param name=
"keys" type=
"int" default=
"0"/> 
30143           <param name=
"attachment" type=
"int" default=
"0"/> 
30146       <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no"> 
30147         <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
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_OnDrawOutline" type=
"" overloaded=
"no"> 
30156         <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc> 
30158           <param name=
"dc" type=
"DC" default=
""/> 
30159           <param name=
"x" type=
"double" default=
""/> 
30160           <param name=
"y" type=
"double" default=
""/> 
30161           <param name=
"w" type=
"double" default=
""/> 
30162           <param name=
"h" type=
"double" default=
""/> 
30165       <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no"> 
30166         <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc> 
30168           <param name=
"dc" type=
"DC" default=
""/> 
30171       <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no"> 
30172         <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc> 
30174           <param name=
"dc" type=
"DC" default=
""/> 
30177       <method name=
"base_OnMoveLink" type=
"" overloaded=
"no"> 
30178         <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc> 
30180           <param name=
"dc" type=
"DC" default=
""/> 
30181           <param name=
"moveControlPoints" type=
"bool" default=
"True"/> 
30184       <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no"> 
30185         <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0, 
 
30186     int attachment=
0)
</autodoc> 
30188           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
30189           <param name=
"draw" type=
"bool" default=
""/> 
30190           <param name=
"x" type=
"double" default=
""/> 
30191           <param name=
"y" type=
"double" default=
""/> 
30192           <param name=
"keys" type=
"int" default=
"0"/> 
30193           <param name=
"attachment" type=
"int" default=
"0"/> 
30196       <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no"> 
30197         <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
30198     int attachment=
0)
</autodoc> 
30200           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
30201           <param name=
"x" type=
"double" default=
""/> 
30202           <param name=
"y" type=
"double" default=
""/> 
30203           <param name=
"keys" type=
"int" default=
"0"/> 
30204           <param name=
"attachment" type=
"int" default=
"0"/> 
30207       <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no"> 
30208         <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
30209     int attachment=
0)
</autodoc> 
30211           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
30212           <param name=
"x" type=
"double" default=
""/> 
30213           <param name=
"y" type=
"double" default=
""/> 
30214           <param name=
"keys" type=
"int" default=
"0"/> 
30215           <param name=
"attachment" type=
"int" default=
"0"/> 
30218       <method name=
"base_OnBeginSize" type=
"" overloaded=
"no"> 
30219         <autodoc>base_OnBeginSize(double w, double h)
</autodoc> 
30221           <param name=
"w" type=
"double" default=
""/> 
30222           <param name=
"h" type=
"double" default=
""/> 
30225       <method name=
"base_OnEndSize" type=
"" overloaded=
"no"> 
30226         <autodoc>base_OnEndSize(double w, double h)
</autodoc> 
30228           <param name=
"w" type=
"double" default=
""/> 
30229           <param name=
"h" type=
"double" default=
""/> 
30233     <class name=
"PyEllipseShape" oldname=
"wxPyEllipseShape" module=
"ogl"> 
30234       <baseclass name=
"PyShape"/> 
30235       <constructor name=
"PyEllipseShape" overloaded=
"no"> 
30236         <autodoc>__init__(double width=
0.0, double height=
0.0) -
> PyEllipseShape
</autodoc> 
30238           <param name=
"width" type=
"double" default=
"0.0"/> 
30239           <param name=
"height" type=
"double" default=
"0.0"/> 
30242       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
30243         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
30245           <param name=
"self" type=
"PyObject" default=
""/> 
30246           <param name=
"_class" type=
"PyObject" default=
""/> 
30249       <method name=
"base_OnDraw" type=
"" overloaded=
"no"> 
30250         <autodoc>base_OnDraw(DC dc)
</autodoc> 
30252           <param name=
"dc" type=
"DC" default=
""/> 
30255       <method name=
"base_OnDrawContents" type=
"" overloaded=
"no"> 
30256         <autodoc>base_OnDrawContents(DC dc)
</autodoc> 
30258           <param name=
"dc" type=
"DC" default=
""/> 
30261       <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no"> 
30262         <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc> 
30264           <param name=
"dc" type=
"DC" default=
""/> 
30265           <param name=
"erase" type=
"bool" default=
"FALSE"/> 
30268       <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no"> 
30269         <autodoc>base_OnMoveLinks(DC dc)
</autodoc> 
30271           <param name=
"dc" type=
"DC" default=
""/> 
30274       <method name=
"base_OnErase" type=
"" overloaded=
"no"> 
30275         <autodoc>base_OnErase(DC dc)
</autodoc> 
30277           <param name=
"dc" type=
"DC" default=
""/> 
30280       <method name=
"base_OnEraseContents" type=
"" overloaded=
"no"> 
30281         <autodoc>base_OnEraseContents(DC dc)
</autodoc> 
30283           <param name=
"dc" type=
"DC" default=
""/> 
30286       <method name=
"base_OnHighlight" type=
"" overloaded=
"no"> 
30287         <autodoc>base_OnHighlight(DC dc)
</autodoc> 
30289           <param name=
"dc" type=
"DC" default=
""/> 
30292       <method name=
"base_OnLeftClick" type=
"" overloaded=
"no"> 
30293         <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30295           <param name=
"x" type=
"double" default=
""/> 
30296           <param name=
"y" type=
"double" default=
""/> 
30297           <param name=
"keys" type=
"int" default=
"0"/> 
30298           <param name=
"attachment" type=
"int" default=
"0"/> 
30301       <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no"> 
30302         <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30304           <param name=
"x" type=
"double" default=
""/> 
30305           <param name=
"y" type=
"double" default=
""/> 
30306           <param name=
"keys" type=
"int" default=
"0"/> 
30307           <param name=
"attachment" type=
"int" default=
"0"/> 
30310       <method name=
"base_OnRightClick" type=
"" overloaded=
"no"> 
30311         <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30313           <param name=
"x" type=
"double" default=
""/> 
30314           <param name=
"y" type=
"double" default=
""/> 
30315           <param name=
"keys" type=
"int" default=
"0"/> 
30316           <param name=
"attachment" type=
"int" default=
"0"/> 
30319       <method name=
"base_OnSize" type=
"" overloaded=
"no"> 
30320         <autodoc>base_OnSize(double x, double y)
</autodoc> 
30322           <param name=
"x" type=
"double" default=
""/> 
30323           <param name=
"y" type=
"double" default=
""/> 
30326       <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no"> 
30327         <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y, 
 
30328     bool display=True) -
> bool
</autodoc> 
30330           <param name=
"dc" type=
"DC" default=
""/> 
30331           <param name=
"x" type=
"double" default=
""/> 
30332           <param name=
"y" type=
"double" default=
""/> 
30333           <param name=
"old_x" type=
"double" default=
""/> 
30334           <param name=
"old_y" type=
"double" default=
""/> 
30335           <param name=
"display" type=
"bool" default=
"True"/> 
30338       <method name=
"base_OnMovePost" type=
"" overloaded=
"no"> 
30339         <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y, 
 
30340     bool display=True)
</autodoc> 
30342           <param name=
"dc" type=
"DC" default=
""/> 
30343           <param name=
"x" type=
"double" default=
""/> 
30344           <param name=
"y" type=
"double" default=
""/> 
30345           <param name=
"old_x" type=
"double" default=
""/> 
30346           <param name=
"old_y" type=
"double" default=
""/> 
30347           <param name=
"display" type=
"bool" default=
"True"/> 
30350       <method name=
"base_OnDragLeft" type=
"" overloaded=
"no"> 
30351         <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30353           <param name=
"draw" type=
"bool" default=
""/> 
30354           <param name=
"x" type=
"double" default=
""/> 
30355           <param name=
"y" type=
"double" default=
""/> 
30356           <param name=
"keys" type=
"int" default=
"0"/> 
30357           <param name=
"attachment" type=
"int" default=
"0"/> 
30360       <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no"> 
30361         <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30363           <param name=
"x" type=
"double" default=
""/> 
30364           <param name=
"y" type=
"double" default=
""/> 
30365           <param name=
"keys" type=
"int" default=
"0"/> 
30366           <param name=
"attachment" type=
"int" default=
"0"/> 
30369       <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no"> 
30370         <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30372           <param name=
"x" type=
"double" default=
""/> 
30373           <param name=
"y" type=
"double" default=
""/> 
30374           <param name=
"keys" type=
"int" default=
"0"/> 
30375           <param name=
"attachment" type=
"int" default=
"0"/> 
30378       <method name=
"base_OnDragRight" type=
"" overloaded=
"no"> 
30379         <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30381           <param name=
"draw" type=
"bool" default=
""/> 
30382           <param name=
"x" type=
"double" default=
""/> 
30383           <param name=
"y" type=
"double" default=
""/> 
30384           <param name=
"keys" type=
"int" default=
"0"/> 
30385           <param name=
"attachment" type=
"int" default=
"0"/> 
30388       <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no"> 
30389         <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30391           <param name=
"x" type=
"double" default=
""/> 
30392           <param name=
"y" type=
"double" default=
""/> 
30393           <param name=
"keys" type=
"int" default=
"0"/> 
30394           <param name=
"attachment" type=
"int" default=
"0"/> 
30397       <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no"> 
30398         <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30400           <param name=
"x" type=
"double" default=
""/> 
30401           <param name=
"y" type=
"double" default=
""/> 
30402           <param name=
"keys" type=
"int" default=
"0"/> 
30403           <param name=
"attachment" type=
"int" default=
"0"/> 
30406       <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no"> 
30407         <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc> 
30409           <param name=
"dc" type=
"DC" default=
""/> 
30410           <param name=
"x" type=
"double" default=
""/> 
30411           <param name=
"y" type=
"double" default=
""/> 
30412           <param name=
"w" type=
"double" default=
""/> 
30413           <param name=
"h" type=
"double" default=
""/> 
30416       <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no"> 
30417         <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc> 
30419           <param name=
"dc" type=
"DC" default=
""/> 
30422       <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no"> 
30423         <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc> 
30425           <param name=
"dc" type=
"DC" default=
""/> 
30428       <method name=
"base_OnMoveLink" type=
"" overloaded=
"no"> 
30429         <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc> 
30431           <param name=
"dc" type=
"DC" default=
""/> 
30432           <param name=
"moveControlPoints" type=
"bool" default=
"True"/> 
30435       <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no"> 
30436         <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0, 
 
30437     int attachment=
0)
</autodoc> 
30439           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
30440           <param name=
"draw" type=
"bool" default=
""/> 
30441           <param name=
"x" type=
"double" default=
""/> 
30442           <param name=
"y" type=
"double" default=
""/> 
30443           <param name=
"keys" type=
"int" default=
"0"/> 
30444           <param name=
"attachment" type=
"int" default=
"0"/> 
30447       <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no"> 
30448         <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
30449     int attachment=
0)
</autodoc> 
30451           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
30452           <param name=
"x" type=
"double" default=
""/> 
30453           <param name=
"y" type=
"double" default=
""/> 
30454           <param name=
"keys" type=
"int" default=
"0"/> 
30455           <param name=
"attachment" type=
"int" default=
"0"/> 
30458       <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no"> 
30459         <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
30460     int attachment=
0)
</autodoc> 
30462           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
30463           <param name=
"x" type=
"double" default=
""/> 
30464           <param name=
"y" type=
"double" default=
""/> 
30465           <param name=
"keys" type=
"int" default=
"0"/> 
30466           <param name=
"attachment" type=
"int" default=
"0"/> 
30469       <method name=
"base_OnBeginSize" type=
"" overloaded=
"no"> 
30470         <autodoc>base_OnBeginSize(double w, double h)
</autodoc> 
30472           <param name=
"w" type=
"double" default=
""/> 
30473           <param name=
"h" type=
"double" default=
""/> 
30476       <method name=
"base_OnEndSize" type=
"" overloaded=
"no"> 
30477         <autodoc>base_OnEndSize(double w, double h)
</autodoc> 
30479           <param name=
"w" type=
"double" default=
""/> 
30480           <param name=
"h" type=
"double" default=
""/> 
30484     <class name=
"PyCircleShape" oldname=
"wxPyCircleShape" module=
"ogl"> 
30485       <baseclass name=
"PyEllipseShape"/> 
30486       <constructor name=
"PyCircleShape" overloaded=
"no"> 
30487         <autodoc>__init__(double width=
0.0) -
> PyCircleShape
</autodoc> 
30489           <param name=
"width" type=
"double" default=
"0.0"/> 
30492       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
30493         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
30495           <param name=
"self" type=
"PyObject" default=
""/> 
30496           <param name=
"_class" type=
"PyObject" default=
""/> 
30499       <method name=
"base_OnDraw" type=
"" overloaded=
"no"> 
30500         <autodoc>base_OnDraw(DC dc)
</autodoc> 
30502           <param name=
"dc" type=
"DC" default=
""/> 
30505       <method name=
"base_OnDrawContents" type=
"" overloaded=
"no"> 
30506         <autodoc>base_OnDrawContents(DC dc)
</autodoc> 
30508           <param name=
"dc" type=
"DC" default=
""/> 
30511       <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no"> 
30512         <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc> 
30514           <param name=
"dc" type=
"DC" default=
""/> 
30515           <param name=
"erase" type=
"bool" default=
"FALSE"/> 
30518       <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no"> 
30519         <autodoc>base_OnMoveLinks(DC dc)
</autodoc> 
30521           <param name=
"dc" type=
"DC" default=
""/> 
30524       <method name=
"base_OnErase" type=
"" overloaded=
"no"> 
30525         <autodoc>base_OnErase(DC dc)
</autodoc> 
30527           <param name=
"dc" type=
"DC" default=
""/> 
30530       <method name=
"base_OnEraseContents" type=
"" overloaded=
"no"> 
30531         <autodoc>base_OnEraseContents(DC dc)
</autodoc> 
30533           <param name=
"dc" type=
"DC" default=
""/> 
30536       <method name=
"base_OnHighlight" type=
"" overloaded=
"no"> 
30537         <autodoc>base_OnHighlight(DC dc)
</autodoc> 
30539           <param name=
"dc" type=
"DC" default=
""/> 
30542       <method name=
"base_OnLeftClick" type=
"" overloaded=
"no"> 
30543         <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30545           <param name=
"x" type=
"double" default=
""/> 
30546           <param name=
"y" type=
"double" default=
""/> 
30547           <param name=
"keys" type=
"int" default=
"0"/> 
30548           <param name=
"attachment" type=
"int" default=
"0"/> 
30551       <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no"> 
30552         <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30554           <param name=
"x" type=
"double" default=
""/> 
30555           <param name=
"y" type=
"double" default=
""/> 
30556           <param name=
"keys" type=
"int" default=
"0"/> 
30557           <param name=
"attachment" type=
"int" default=
"0"/> 
30560       <method name=
"base_OnRightClick" type=
"" overloaded=
"no"> 
30561         <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30563           <param name=
"x" type=
"double" default=
""/> 
30564           <param name=
"y" type=
"double" default=
""/> 
30565           <param name=
"keys" type=
"int" default=
"0"/> 
30566           <param name=
"attachment" type=
"int" default=
"0"/> 
30569       <method name=
"base_OnSize" type=
"" overloaded=
"no"> 
30570         <autodoc>base_OnSize(double x, double y)
</autodoc> 
30572           <param name=
"x" type=
"double" default=
""/> 
30573           <param name=
"y" type=
"double" default=
""/> 
30576       <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no"> 
30577         <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y, 
 
30578     bool display=True) -
> bool
</autodoc> 
30580           <param name=
"dc" type=
"DC" default=
""/> 
30581           <param name=
"x" type=
"double" default=
""/> 
30582           <param name=
"y" type=
"double" default=
""/> 
30583           <param name=
"old_x" type=
"double" default=
""/> 
30584           <param name=
"old_y" type=
"double" default=
""/> 
30585           <param name=
"display" type=
"bool" default=
"True"/> 
30588       <method name=
"base_OnMovePost" type=
"" overloaded=
"no"> 
30589         <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y, 
 
30590     bool display=True)
</autodoc> 
30592           <param name=
"dc" type=
"DC" default=
""/> 
30593           <param name=
"x" type=
"double" default=
""/> 
30594           <param name=
"y" type=
"double" default=
""/> 
30595           <param name=
"old_x" type=
"double" default=
""/> 
30596           <param name=
"old_y" type=
"double" default=
""/> 
30597           <param name=
"display" type=
"bool" default=
"True"/> 
30600       <method name=
"base_OnDragLeft" type=
"" overloaded=
"no"> 
30601         <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30603           <param name=
"draw" type=
"bool" default=
""/> 
30604           <param name=
"x" type=
"double" default=
""/> 
30605           <param name=
"y" type=
"double" default=
""/> 
30606           <param name=
"keys" type=
"int" default=
"0"/> 
30607           <param name=
"attachment" type=
"int" default=
"0"/> 
30610       <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no"> 
30611         <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30613           <param name=
"x" type=
"double" default=
""/> 
30614           <param name=
"y" type=
"double" default=
""/> 
30615           <param name=
"keys" type=
"int" default=
"0"/> 
30616           <param name=
"attachment" type=
"int" default=
"0"/> 
30619       <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no"> 
30620         <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30622           <param name=
"x" type=
"double" default=
""/> 
30623           <param name=
"y" type=
"double" default=
""/> 
30624           <param name=
"keys" type=
"int" default=
"0"/> 
30625           <param name=
"attachment" type=
"int" default=
"0"/> 
30628       <method name=
"base_OnDragRight" type=
"" overloaded=
"no"> 
30629         <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30631           <param name=
"draw" type=
"bool" default=
""/> 
30632           <param name=
"x" type=
"double" default=
""/> 
30633           <param name=
"y" type=
"double" default=
""/> 
30634           <param name=
"keys" type=
"int" default=
"0"/> 
30635           <param name=
"attachment" type=
"int" default=
"0"/> 
30638       <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no"> 
30639         <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30641           <param name=
"x" type=
"double" default=
""/> 
30642           <param name=
"y" type=
"double" default=
""/> 
30643           <param name=
"keys" type=
"int" default=
"0"/> 
30644           <param name=
"attachment" type=
"int" default=
"0"/> 
30647       <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no"> 
30648         <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30650           <param name=
"x" type=
"double" default=
""/> 
30651           <param name=
"y" type=
"double" default=
""/> 
30652           <param name=
"keys" type=
"int" default=
"0"/> 
30653           <param name=
"attachment" type=
"int" default=
"0"/> 
30656       <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no"> 
30657         <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc> 
30659           <param name=
"dc" type=
"DC" default=
""/> 
30660           <param name=
"x" type=
"double" default=
""/> 
30661           <param name=
"y" type=
"double" default=
""/> 
30662           <param name=
"w" type=
"double" default=
""/> 
30663           <param name=
"h" type=
"double" default=
""/> 
30666       <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no"> 
30667         <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc> 
30669           <param name=
"dc" type=
"DC" default=
""/> 
30672       <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no"> 
30673         <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc> 
30675           <param name=
"dc" type=
"DC" default=
""/> 
30678       <method name=
"base_OnMoveLink" type=
"" overloaded=
"no"> 
30679         <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc> 
30681           <param name=
"dc" type=
"DC" default=
""/> 
30682           <param name=
"moveControlPoints" type=
"bool" default=
"True"/> 
30685       <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no"> 
30686         <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0, 
 
30687     int attachment=
0)
</autodoc> 
30689           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
30690           <param name=
"draw" type=
"bool" default=
""/> 
30691           <param name=
"x" type=
"double" default=
""/> 
30692           <param name=
"y" type=
"double" default=
""/> 
30693           <param name=
"keys" type=
"int" default=
"0"/> 
30694           <param name=
"attachment" type=
"int" default=
"0"/> 
30697       <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no"> 
30698         <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
30699     int attachment=
0)
</autodoc> 
30701           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
30702           <param name=
"x" type=
"double" default=
""/> 
30703           <param name=
"y" type=
"double" default=
""/> 
30704           <param name=
"keys" type=
"int" default=
"0"/> 
30705           <param name=
"attachment" type=
"int" default=
"0"/> 
30708       <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no"> 
30709         <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
30710     int attachment=
0)
</autodoc> 
30712           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
30713           <param name=
"x" type=
"double" default=
""/> 
30714           <param name=
"y" type=
"double" default=
""/> 
30715           <param name=
"keys" type=
"int" default=
"0"/> 
30716           <param name=
"attachment" type=
"int" default=
"0"/> 
30719       <method name=
"base_OnBeginSize" type=
"" overloaded=
"no"> 
30720         <autodoc>base_OnBeginSize(double w, double h)
</autodoc> 
30722           <param name=
"w" type=
"double" default=
""/> 
30723           <param name=
"h" type=
"double" default=
""/> 
30726       <method name=
"base_OnEndSize" type=
"" overloaded=
"no"> 
30727         <autodoc>base_OnEndSize(double w, double h)
</autodoc> 
30729           <param name=
"w" type=
"double" default=
""/> 
30730           <param name=
"h" type=
"double" default=
""/> 
30734     <class name=
"ArrowHead" oldname=
"wxArrowHead" module=
"ogl"> 
30735       <baseclass name=
"Object"/> 
30736       <constructor name=
"ArrowHead" overloaded=
"no"> 
30737         <autodoc>__init__(int type=
0, int end=
0, double size=
0.0, double dist=
0.0, 
 
30738     String name=EmptyString, PseudoMetaFile mf=None, 
 
30739     long arrowId=-
1) -
> ArrowHead
</autodoc> 
30741           <param name=
"type" type=
"int" default=
"0"/> 
30742           <param name=
"end" type=
"int" default=
"0"/> 
30743           <param name=
"size" type=
"double" default=
"0.0"/> 
30744           <param name=
"dist" type=
"double" default=
"0.0"/> 
30745           <param name=
"name" type=
"String" default=
"wxPyEmptyString"/> 
30746           <param name=
"mf" type=
"PseudoMetaFile" default=
"NULL"/> 
30747           <param name=
"arrowId" type=
"long" default=
"-1"/> 
30750       <destructor name=
"~wxArrowHead" overloaded=
"no"> 
30751         <autodoc>__del__()
</autodoc> 
30753       <method name=
"_GetType" type=
"int" overloaded=
"no"> 
30754         <autodoc>_GetType() -
> int
</autodoc> 
30756       <method name=
"GetPosition" type=
"int" overloaded=
"no"> 
30757         <autodoc>GetPosition() -
> int
</autodoc> 
30759       <method name=
"SetPosition" type=
"" overloaded=
"no"> 
30760         <autodoc>SetPosition(int pos)
</autodoc> 
30762           <param name=
"pos" type=
"int" default=
""/> 
30765       <method name=
"GetXOffset" type=
"double" overloaded=
"no"> 
30766         <autodoc>GetXOffset() -
> double
</autodoc> 
30768       <method name=
"GetYOffset" type=
"double" overloaded=
"no"> 
30769         <autodoc>GetYOffset() -
> double
</autodoc> 
30771       <method name=
"GetSpacing" type=
"double" overloaded=
"no"> 
30772         <autodoc>GetSpacing() -
> double
</autodoc> 
30774       <method name=
"GetSize" type=
"double" overloaded=
"no"> 
30775         <autodoc>GetSize() -
> double
</autodoc> 
30777       <method name=
"GetName" type=
"String" overloaded=
"no"> 
30778         <autodoc>GetName() -
> String
</autodoc> 
30780       <method name=
"SetXOffset" type=
"" overloaded=
"no"> 
30781         <autodoc>SetXOffset(double x)
</autodoc> 
30783           <param name=
"x" type=
"double" default=
""/> 
30786       <method name=
"SetYOffset" type=
"" overloaded=
"no"> 
30787         <autodoc>SetYOffset(double y)
</autodoc> 
30789           <param name=
"y" type=
"double" default=
""/> 
30792       <method name=
"GetMetaFile" type=
"PseudoMetaFile" overloaded=
"no"> 
30793         <autodoc>GetMetaFile() -
> PseudoMetaFile
</autodoc> 
30795       <method name=
"GetId" type=
"long" overloaded=
"no"> 
30796         <autodoc>GetId() -
> long
</autodoc> 
30798       <method name=
"GetArrowEnd" type=
"int" overloaded=
"no"> 
30799         <autodoc>GetArrowEnd() -
> int
</autodoc> 
30801       <method name=
"GetArrowSize" type=
"double" overloaded=
"no"> 
30802         <autodoc>GetArrowSize() -
> double
</autodoc> 
30804       <method name=
"SetSize" type=
"" overloaded=
"no"> 
30805         <autodoc>SetSize(double size)
</autodoc> 
30807           <param name=
"size" type=
"double" default=
""/> 
30810       <method name=
"SetSpacing" type=
"" overloaded=
"no"> 
30811         <autodoc>SetSpacing(double sp)
</autodoc> 
30813           <param name=
"sp" type=
"double" default=
""/> 
30817     <class name=
"PyLineShape" oldname=
"wxPyLineShape" module=
"ogl"> 
30818       <baseclass name=
"PyShape"/> 
30819       <constructor name=
"PyLineShape" overloaded=
"no"> 
30820         <autodoc>__init__() -
> PyLineShape
</autodoc> 
30822       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
30823         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
30825           <param name=
"self" type=
"PyObject" default=
""/> 
30826           <param name=
"_class" type=
"PyObject" default=
""/> 
30829       <method name=
"AddArrow" type=
"" overloaded=
"no"> 
30830         <autodoc>AddArrow(int type, int end=ARROW_POSITION_END, double arrowSize=
10.0, 
 
30831     double xOffset=
0.0, String name=EmptyString, 
 
30832     PseudoMetaFile mf=None, long arrowId=-
1)
</autodoc> 
30834           <param name=
"type" type=
"int" default=
""/> 
30835           <param name=
"end" type=
"int" default=
"ARROW_POSITION_END"/> 
30836           <param name=
"arrowSize" type=
"double" default=
"10.0"/> 
30837           <param name=
"xOffset" type=
"double" default=
"0.0"/> 
30838           <param name=
"name" type=
"String" default=
"wxPyEmptyString"/> 
30839           <param name=
"mf" type=
"PseudoMetaFile" default=
"NULL"/> 
30840           <param name=
"arrowId" type=
"long" default=
"-1"/> 
30843       <method name=
"AddArrowOrdered" type=
"" overloaded=
"no"> 
30844         <autodoc>AddArrowOrdered(ArrowHead arrow, PyObject referenceList, int end)
</autodoc> 
30846           <param name=
"arrow" type=
"ArrowHead" default=
""/> 
30847           <param name=
"referenceList" type=
"PyObject" default=
""/> 
30848           <param name=
"end" type=
"int" default=
""/> 
30851       <method name=
"ClearArrow" type=
"bool" overloaded=
"no"> 
30852         <autodoc>ClearArrow(String name) -
> bool
</autodoc> 
30854           <param name=
"name" type=
"String" default=
""/> 
30857       <method name=
"ClearArrowsAtPosition" type=
"" overloaded=
"no"> 
30858         <autodoc>ClearArrowsAtPosition(int position=-
1)
</autodoc> 
30860           <param name=
"position" type=
"int" default=
"-1"/> 
30863       <method name=
"DrawArrow" type=
"" overloaded=
"no"> 
30864         <autodoc>DrawArrow(DC dc, ArrowHead arrow, double xOffset, bool proportionalOffset)
</autodoc> 
30866           <param name=
"dc" type=
"DC" default=
""/> 
30867           <param name=
"arrow" type=
"ArrowHead" default=
""/> 
30868           <param name=
"xOffset" type=
"double" default=
""/> 
30869           <param name=
"proportionalOffset" type=
"bool" default=
""/> 
30872       <method name=
"DeleteArrowHeadId" type=
"bool" overloaded=
"no"> 
30873         <autodoc>DeleteArrowHeadId(long arrowId) -
> bool
</autodoc> 
30875           <param name=
"arrowId" type=
"long" default=
""/> 
30878       <method name=
"DeleteArrowHead" type=
"bool" overloaded=
"no"> 
30879         <autodoc>DeleteArrowHead(int position, String name) -
> bool
</autodoc> 
30881           <param name=
"position" type=
"int" default=
""/> 
30882           <param name=
"name" type=
"String" default=
""/> 
30885       <method name=
"DeleteLineControlPoint" type=
"bool" overloaded=
"no"> 
30886         <autodoc>DeleteLineControlPoint() -
> bool
</autodoc> 
30888       <method name=
"DrawArrows" type=
"" overloaded=
"no"> 
30889         <autodoc>DrawArrows(DC dc)
</autodoc> 
30891           <param name=
"dc" type=
"DC" default=
""/> 
30894       <method name=
"DrawRegion" type=
"" overloaded=
"no"> 
30895         <autodoc>DrawRegion(DC dc, ShapeRegion region, double x, double y)
</autodoc> 
30897           <param name=
"dc" type=
"DC" default=
""/> 
30898           <param name=
"region" type=
"ShapeRegion" default=
""/> 
30899           <param name=
"x" type=
"double" default=
""/> 
30900           <param name=
"y" type=
"double" default=
""/> 
30903       <method name=
"EraseRegion" type=
"" overloaded=
"no"> 
30904         <autodoc>EraseRegion(DC dc, ShapeRegion region, double x, double y)
</autodoc> 
30906           <param name=
"dc" type=
"DC" default=
""/> 
30907           <param name=
"region" type=
"ShapeRegion" default=
""/> 
30908           <param name=
"x" type=
"double" default=
""/> 
30909           <param name=
"y" type=
"double" default=
""/> 
30912       <method name=
"FindArrowHeadId" type=
"ArrowHead" overloaded=
"no"> 
30913         <autodoc>FindArrowHeadId(long arrowId) -
> ArrowHead
</autodoc> 
30915           <param name=
"arrowId" type=
"long" default=
""/> 
30918       <method name=
"FindArrowHead" type=
"ArrowHead" overloaded=
"no"> 
30919         <autodoc>FindArrowHead(int position, String name) -
> ArrowHead
</autodoc> 
30921           <param name=
"position" type=
"int" default=
""/> 
30922           <param name=
"name" type=
"String" default=
""/> 
30925       <method name=
"FindLineEndPoints" type=
"" overloaded=
"no"> 
30926         <autodoc>FindLineEndPoints(double OUTPUT, double OUTPUT, double OUTPUT, double OUTPUT)
</autodoc> 
30928           <param name=
"OUTPUT" type=
"double" default=
""/> 
30929           <param name=
"OUTPUT" type=
"double" default=
""/> 
30930           <param name=
"OUTPUT" type=
"double" default=
""/> 
30931           <param name=
"OUTPUT" type=
"double" default=
""/> 
30934       <method name=
"FindLinePosition" type=
"int" overloaded=
"no"> 
30935         <autodoc>FindLinePosition(double x, double y) -
> int
</autodoc> 
30937           <param name=
"x" type=
"double" default=
""/> 
30938           <param name=
"y" type=
"double" default=
""/> 
30941       <method name=
"FindMinimumWidth" type=
"double" overloaded=
"no"> 
30942         <autodoc>FindMinimumWidth() -
> double
</autodoc> 
30944       <method name=
"FindNth" type=
"" overloaded=
"no"> 
30945         <autodoc>FindNth(PyShape image, int OUTPUT, int OUTPUT, bool incoming)
</autodoc> 
30947           <param name=
"image" type=
"PyShape" default=
""/> 
30948           <param name=
"OUTPUT" type=
"int" default=
""/> 
30949           <param name=
"OUTPUT" type=
"int" default=
""/> 
30950           <param name=
"incoming" type=
"bool" default=
""/> 
30953       <method name=
"GetAttachmentFrom" type=
"int" overloaded=
"no"> 
30954         <autodoc>GetAttachmentFrom() -
> int
</autodoc> 
30956       <method name=
"GetAttachmentTo" type=
"int" overloaded=
"no"> 
30957         <autodoc>GetAttachmentTo() -
> int
</autodoc> 
30959       <method name=
"GetEnds" type=
"" overloaded=
"no"> 
30960         <autodoc>GetEnds(double OUTPUT, double OUTPUT, double OUTPUT, double OUTPUT)
</autodoc> 
30962           <param name=
"OUTPUT" type=
"double" default=
""/> 
30963           <param name=
"OUTPUT" type=
"double" default=
""/> 
30964           <param name=
"OUTPUT" type=
"double" default=
""/> 
30965           <param name=
"OUTPUT" type=
"double" default=
""/> 
30968       <method name=
"GetFrom" type=
"PyShape" overloaded=
"no"> 
30969         <autodoc>GetFrom() -
> PyShape
</autodoc> 
30971       <method name=
"GetLabelPosition" type=
"" overloaded=
"no"> 
30972         <autodoc>GetLabelPosition(int position, double OUTPUT, double OUTPUT)
</autodoc> 
30974           <param name=
"position" type=
"int" default=
""/> 
30975           <param name=
"OUTPUT" type=
"double" default=
""/> 
30976           <param name=
"OUTPUT" type=
"double" default=
""/> 
30979       <method name=
"GetNextControlPoint" type=
"RealPoint" overloaded=
"no"> 
30980         <autodoc>GetNextControlPoint(PyShape shape) -
> RealPoint
</autodoc> 
30982           <param name=
"shape" type=
"PyShape" default=
""/> 
30985       <method name=
"GetTo" type=
"PyShape" overloaded=
"no"> 
30986         <autodoc>GetTo() -
> PyShape
</autodoc> 
30988       <method name=
"Initialise" type=
"" overloaded=
"no"> 
30989         <autodoc>Initialise()
</autodoc> 
30991       <method name=
"InsertLineControlPoint" type=
"" overloaded=
"no"> 
30992         <autodoc>InsertLineControlPoint(DC dc)
</autodoc> 
30994           <param name=
"dc" type=
"DC" default=
""/> 
30997       <method name=
"IsEnd" type=
"bool" overloaded=
"no"> 
30998         <autodoc>IsEnd(PyShape shape) -
> bool
</autodoc> 
31000           <param name=
"shape" type=
"PyShape" default=
""/> 
31003       <method name=
"IsSpline" type=
"bool" overloaded=
"no"> 
31004         <autodoc>IsSpline() -
> bool
</autodoc> 
31006       <method name=
"MakeLineControlPoints" type=
"" overloaded=
"no"> 
31007         <autodoc>MakeLineControlPoints(int n)
</autodoc> 
31009           <param name=
"n" type=
"int" default=
""/> 
31012       <method name=
"GetLineControlPoints" type=
"PyObject" overloaded=
"no"> 
31013         <autodoc>GetLineControlPoints() -
> PyObject
</autodoc> 
31015       <method name=
"SetAttachmentFrom" type=
"" overloaded=
"no"> 
31016         <autodoc>SetAttachmentFrom(int fromAttach)
</autodoc> 
31018           <param name=
"fromAttach" type=
"int" default=
""/> 
31021       <method name=
"SetAttachments" type=
"" overloaded=
"no"> 
31022         <autodoc>SetAttachments(int fromAttach, int toAttach)
</autodoc> 
31024           <param name=
"fromAttach" type=
"int" default=
""/> 
31025           <param name=
"toAttach" type=
"int" default=
""/> 
31028       <method name=
"SetAttachmentTo" type=
"" overloaded=
"no"> 
31029         <autodoc>SetAttachmentTo(int toAttach)
</autodoc> 
31031           <param name=
"toAttach" type=
"int" default=
""/> 
31034       <method name=
"SetEnds" type=
"" overloaded=
"no"> 
31035         <autodoc>SetEnds(double x1, double y1, double x2, double y2)
</autodoc> 
31037           <param name=
"x1" type=
"double" default=
""/> 
31038           <param name=
"y1" type=
"double" default=
""/> 
31039           <param name=
"x2" type=
"double" default=
""/> 
31040           <param name=
"y2" type=
"double" default=
""/> 
31043       <method name=
"SetFrom" type=
"" overloaded=
"no"> 
31044         <autodoc>SetFrom(PyShape object)
</autodoc> 
31046           <param name=
"object" type=
"PyShape" default=
""/> 
31049       <method name=
"SetIgnoreOffsets" type=
"" overloaded=
"no"> 
31050         <autodoc>SetIgnoreOffsets(bool ignore)
</autodoc> 
31052           <param name=
"ignore" type=
"bool" default=
""/> 
31055       <method name=
"SetSpline" type=
"" overloaded=
"no"> 
31056         <autodoc>SetSpline(bool spline)
</autodoc> 
31058           <param name=
"spline" type=
"bool" default=
""/> 
31061       <method name=
"SetTo" type=
"" overloaded=
"no"> 
31062         <autodoc>SetTo(PyShape object)
</autodoc> 
31064           <param name=
"object" type=
"PyShape" default=
""/> 
31067       <method name=
"Straighten" type=
"" overloaded=
"no"> 
31068         <autodoc>Straighten(DC dc=None)
</autodoc> 
31070           <param name=
"dc" type=
"DC" default=
"NULL"/> 
31073       <method name=
"Unlink" type=
"" overloaded=
"no"> 
31074         <autodoc>Unlink()
</autodoc> 
31076       <method name=
"SetAlignmentOrientation" type=
"" overloaded=
"no"> 
31077         <autodoc>SetAlignmentOrientation(bool isEnd, bool isHoriz)
</autodoc> 
31079           <param name=
"isEnd" type=
"bool" default=
""/> 
31080           <param name=
"isHoriz" type=
"bool" default=
""/> 
31083       <method name=
"SetAlignmentType" type=
"" overloaded=
"no"> 
31084         <autodoc>SetAlignmentType(bool isEnd, int alignType)
</autodoc> 
31086           <param name=
"isEnd" type=
"bool" default=
""/> 
31087           <param name=
"alignType" type=
"int" default=
""/> 
31090       <method name=
"GetAlignmentOrientation" type=
"bool" overloaded=
"no"> 
31091         <autodoc>GetAlignmentOrientation(bool isEnd) -
> bool
</autodoc> 
31093           <param name=
"isEnd" type=
"bool" default=
""/> 
31096       <method name=
"GetAlignmentType" type=
"int" overloaded=
"no"> 
31097         <autodoc>GetAlignmentType(bool isEnd) -
> int
</autodoc> 
31099           <param name=
"isEnd" type=
"bool" default=
""/> 
31102       <method name=
"GetAlignmentStart" type=
"int" overloaded=
"no"> 
31103         <autodoc>GetAlignmentStart() -
> int
</autodoc> 
31105       <method name=
"GetAlignmentEnd" type=
"int" overloaded=
"no"> 
31106         <autodoc>GetAlignmentEnd() -
> int
</autodoc> 
31108       <method name=
"base_OnDraw" type=
"" overloaded=
"no"> 
31109         <autodoc>base_OnDraw(DC dc)
</autodoc> 
31111           <param name=
"dc" type=
"DC" default=
""/> 
31114       <method name=
"base_OnDrawContents" type=
"" overloaded=
"no"> 
31115         <autodoc>base_OnDrawContents(DC dc)
</autodoc> 
31117           <param name=
"dc" type=
"DC" default=
""/> 
31120       <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no"> 
31121         <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc> 
31123           <param name=
"dc" type=
"DC" default=
""/> 
31124           <param name=
"erase" type=
"bool" default=
"FALSE"/> 
31127       <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no"> 
31128         <autodoc>base_OnMoveLinks(DC dc)
</autodoc> 
31130           <param name=
"dc" type=
"DC" default=
""/> 
31133       <method name=
"base_OnErase" type=
"" overloaded=
"no"> 
31134         <autodoc>base_OnErase(DC dc)
</autodoc> 
31136           <param name=
"dc" type=
"DC" default=
""/> 
31139       <method name=
"base_OnEraseContents" type=
"" overloaded=
"no"> 
31140         <autodoc>base_OnEraseContents(DC dc)
</autodoc> 
31142           <param name=
"dc" type=
"DC" default=
""/> 
31145       <method name=
"base_OnHighlight" type=
"" overloaded=
"no"> 
31146         <autodoc>base_OnHighlight(DC dc)
</autodoc> 
31148           <param name=
"dc" type=
"DC" default=
""/> 
31151       <method name=
"base_OnLeftClick" type=
"" overloaded=
"no"> 
31152         <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31154           <param name=
"x" type=
"double" default=
""/> 
31155           <param name=
"y" type=
"double" default=
""/> 
31156           <param name=
"keys" type=
"int" default=
"0"/> 
31157           <param name=
"attachment" type=
"int" default=
"0"/> 
31160       <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no"> 
31161         <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31163           <param name=
"x" type=
"double" default=
""/> 
31164           <param name=
"y" type=
"double" default=
""/> 
31165           <param name=
"keys" type=
"int" default=
"0"/> 
31166           <param name=
"attachment" type=
"int" default=
"0"/> 
31169       <method name=
"base_OnRightClick" type=
"" overloaded=
"no"> 
31170         <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31172           <param name=
"x" type=
"double" default=
""/> 
31173           <param name=
"y" type=
"double" default=
""/> 
31174           <param name=
"keys" type=
"int" default=
"0"/> 
31175           <param name=
"attachment" type=
"int" default=
"0"/> 
31178       <method name=
"base_OnSize" type=
"" overloaded=
"no"> 
31179         <autodoc>base_OnSize(double x, double y)
</autodoc> 
31181           <param name=
"x" type=
"double" default=
""/> 
31182           <param name=
"y" type=
"double" default=
""/> 
31185       <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no"> 
31186         <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y, 
 
31187     bool display=True) -
> bool
</autodoc> 
31189           <param name=
"dc" type=
"DC" default=
""/> 
31190           <param name=
"x" type=
"double" default=
""/> 
31191           <param name=
"y" type=
"double" default=
""/> 
31192           <param name=
"old_x" type=
"double" default=
""/> 
31193           <param name=
"old_y" type=
"double" default=
""/> 
31194           <param name=
"display" type=
"bool" default=
"True"/> 
31197       <method name=
"base_OnMovePost" type=
"" overloaded=
"no"> 
31198         <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y, 
 
31199     bool display=True)
</autodoc> 
31201           <param name=
"dc" type=
"DC" default=
""/> 
31202           <param name=
"x" type=
"double" default=
""/> 
31203           <param name=
"y" type=
"double" default=
""/> 
31204           <param name=
"old_x" type=
"double" default=
""/> 
31205           <param name=
"old_y" type=
"double" default=
""/> 
31206           <param name=
"display" type=
"bool" default=
"True"/> 
31209       <method name=
"base_OnDragLeft" type=
"" overloaded=
"no"> 
31210         <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31212           <param name=
"draw" type=
"bool" default=
""/> 
31213           <param name=
"x" type=
"double" default=
""/> 
31214           <param name=
"y" type=
"double" default=
""/> 
31215           <param name=
"keys" type=
"int" default=
"0"/> 
31216           <param name=
"attachment" type=
"int" default=
"0"/> 
31219       <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no"> 
31220         <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31222           <param name=
"x" type=
"double" default=
""/> 
31223           <param name=
"y" type=
"double" default=
""/> 
31224           <param name=
"keys" type=
"int" default=
"0"/> 
31225           <param name=
"attachment" type=
"int" default=
"0"/> 
31228       <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no"> 
31229         <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31231           <param name=
"x" type=
"double" default=
""/> 
31232           <param name=
"y" type=
"double" default=
""/> 
31233           <param name=
"keys" type=
"int" default=
"0"/> 
31234           <param name=
"attachment" type=
"int" default=
"0"/> 
31237       <method name=
"base_OnDragRight" type=
"" overloaded=
"no"> 
31238         <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31240           <param name=
"draw" type=
"bool" default=
""/> 
31241           <param name=
"x" type=
"double" default=
""/> 
31242           <param name=
"y" type=
"double" default=
""/> 
31243           <param name=
"keys" type=
"int" default=
"0"/> 
31244           <param name=
"attachment" type=
"int" default=
"0"/> 
31247       <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no"> 
31248         <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31250           <param name=
"x" type=
"double" default=
""/> 
31251           <param name=
"y" type=
"double" default=
""/> 
31252           <param name=
"keys" type=
"int" default=
"0"/> 
31253           <param name=
"attachment" type=
"int" default=
"0"/> 
31256       <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no"> 
31257         <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31259           <param name=
"x" type=
"double" default=
""/> 
31260           <param name=
"y" type=
"double" default=
""/> 
31261           <param name=
"keys" type=
"int" default=
"0"/> 
31262           <param name=
"attachment" type=
"int" default=
"0"/> 
31265       <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no"> 
31266         <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc> 
31268           <param name=
"dc" type=
"DC" default=
""/> 
31269           <param name=
"x" type=
"double" default=
""/> 
31270           <param name=
"y" type=
"double" default=
""/> 
31271           <param name=
"w" type=
"double" default=
""/> 
31272           <param name=
"h" type=
"double" default=
""/> 
31275       <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no"> 
31276         <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc> 
31278           <param name=
"dc" type=
"DC" default=
""/> 
31281       <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no"> 
31282         <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc> 
31284           <param name=
"dc" type=
"DC" default=
""/> 
31287       <method name=
"base_OnMoveLink" type=
"" overloaded=
"no"> 
31288         <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc> 
31290           <param name=
"dc" type=
"DC" default=
""/> 
31291           <param name=
"moveControlPoints" type=
"bool" default=
"True"/> 
31294       <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no"> 
31295         <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0, 
 
31296     int attachment=
0)
</autodoc> 
31298           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
31299           <param name=
"draw" type=
"bool" default=
""/> 
31300           <param name=
"x" type=
"double" default=
""/> 
31301           <param name=
"y" type=
"double" default=
""/> 
31302           <param name=
"keys" type=
"int" default=
"0"/> 
31303           <param name=
"attachment" type=
"int" default=
"0"/> 
31306       <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no"> 
31307         <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
31308     int attachment=
0)
</autodoc> 
31310           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
31311           <param name=
"x" type=
"double" default=
""/> 
31312           <param name=
"y" type=
"double" default=
""/> 
31313           <param name=
"keys" type=
"int" default=
"0"/> 
31314           <param name=
"attachment" type=
"int" default=
"0"/> 
31317       <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no"> 
31318         <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
31319     int attachment=
0)
</autodoc> 
31321           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
31322           <param name=
"x" type=
"double" default=
""/> 
31323           <param name=
"y" type=
"double" default=
""/> 
31324           <param name=
"keys" type=
"int" default=
"0"/> 
31325           <param name=
"attachment" type=
"int" default=
"0"/> 
31328       <method name=
"base_OnBeginSize" type=
"" overloaded=
"no"> 
31329         <autodoc>base_OnBeginSize(double w, double h)
</autodoc> 
31331           <param name=
"w" type=
"double" default=
""/> 
31332           <param name=
"h" type=
"double" default=
""/> 
31335       <method name=
"base_OnEndSize" type=
"" overloaded=
"no"> 
31336         <autodoc>base_OnEndSize(double w, double h)
</autodoc> 
31338           <param name=
"w" type=
"double" default=
""/> 
31339           <param name=
"h" type=
"double" default=
""/> 
31343     <class name=
"PyPolygonShape" oldname=
"wxPyPolygonShape" module=
"ogl"> 
31344       <baseclass name=
"PyShape"/> 
31345       <constructor name=
"PyPolygonShape" overloaded=
"no"> 
31346         <autodoc>__init__() -
> PyPolygonShape
</autodoc> 
31348       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
31349         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
31351           <param name=
"self" type=
"PyObject" default=
""/> 
31352           <param name=
"_class" type=
"PyObject" default=
""/> 
31355       <method name=
"Create" type=
"PyObject" overloaded=
"no"> 
31356         <autodoc>Create(PyObject points) -
> PyObject
</autodoc> 
31358           <param name=
"points" type=
"PyObject" default=
""/> 
31361       <method name=
"AddPolygonPoint" type=
"" overloaded=
"no"> 
31362         <autodoc>AddPolygonPoint(int pos=
0)
</autodoc> 
31364           <param name=
"pos" type=
"int" default=
"0"/> 
31367       <method name=
"CalculatePolygonCentre" type=
"" overloaded=
"no"> 
31368         <autodoc>CalculatePolygonCentre()
</autodoc> 
31370       <method name=
"DeletePolygonPoint" type=
"" overloaded=
"no"> 
31371         <autodoc>DeletePolygonPoint(int pos=
0)
</autodoc> 
31373           <param name=
"pos" type=
"int" default=
"0"/> 
31376       <method name=
"GetPoints" type=
"PyObject" overloaded=
"no"> 
31377         <autodoc>GetPoints() -
> PyObject
</autodoc> 
31379       <method name=
"GetOriginalPoints" type=
"PyObject" overloaded=
"no"> 
31380         <autodoc>GetOriginalPoints() -
> PyObject
</autodoc> 
31382       <method name=
"GetOriginalWidth" type=
"double" overloaded=
"no"> 
31383         <autodoc>GetOriginalWidth() -
> double
</autodoc> 
31385       <method name=
"GetOriginalHeight" type=
"double" overloaded=
"no"> 
31386         <autodoc>GetOriginalHeight() -
> double
</autodoc> 
31388       <method name=
"SetOriginalWidth" type=
"" overloaded=
"no"> 
31389         <autodoc>SetOriginalWidth(double w)
</autodoc> 
31391           <param name=
"w" type=
"double" default=
""/> 
31394       <method name=
"SetOriginalHeight" type=
"" overloaded=
"no"> 
31395         <autodoc>SetOriginalHeight(double h)
</autodoc> 
31397           <param name=
"h" type=
"double" default=
""/> 
31400       <method name=
"UpdateOriginalPoints" type=
"" overloaded=
"no"> 
31401         <autodoc>UpdateOriginalPoints()
</autodoc> 
31403       <method name=
"base_OnDraw" type=
"" overloaded=
"no"> 
31404         <autodoc>base_OnDraw(DC dc)
</autodoc> 
31406           <param name=
"dc" type=
"DC" default=
""/> 
31409       <method name=
"base_OnDrawContents" type=
"" overloaded=
"no"> 
31410         <autodoc>base_OnDrawContents(DC dc)
</autodoc> 
31412           <param name=
"dc" type=
"DC" default=
""/> 
31415       <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no"> 
31416         <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc> 
31418           <param name=
"dc" type=
"DC" default=
""/> 
31419           <param name=
"erase" type=
"bool" default=
"FALSE"/> 
31422       <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no"> 
31423         <autodoc>base_OnMoveLinks(DC dc)
</autodoc> 
31425           <param name=
"dc" type=
"DC" default=
""/> 
31428       <method name=
"base_OnErase" type=
"" overloaded=
"no"> 
31429         <autodoc>base_OnErase(DC dc)
</autodoc> 
31431           <param name=
"dc" type=
"DC" default=
""/> 
31434       <method name=
"base_OnEraseContents" type=
"" overloaded=
"no"> 
31435         <autodoc>base_OnEraseContents(DC dc)
</autodoc> 
31437           <param name=
"dc" type=
"DC" default=
""/> 
31440       <method name=
"base_OnHighlight" type=
"" overloaded=
"no"> 
31441         <autodoc>base_OnHighlight(DC dc)
</autodoc> 
31443           <param name=
"dc" type=
"DC" default=
""/> 
31446       <method name=
"base_OnLeftClick" type=
"" overloaded=
"no"> 
31447         <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31449           <param name=
"x" type=
"double" default=
""/> 
31450           <param name=
"y" type=
"double" default=
""/> 
31451           <param name=
"keys" type=
"int" default=
"0"/> 
31452           <param name=
"attachment" type=
"int" default=
"0"/> 
31455       <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no"> 
31456         <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31458           <param name=
"x" type=
"double" default=
""/> 
31459           <param name=
"y" type=
"double" default=
""/> 
31460           <param name=
"keys" type=
"int" default=
"0"/> 
31461           <param name=
"attachment" type=
"int" default=
"0"/> 
31464       <method name=
"base_OnRightClick" type=
"" overloaded=
"no"> 
31465         <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31467           <param name=
"x" type=
"double" default=
""/> 
31468           <param name=
"y" type=
"double" default=
""/> 
31469           <param name=
"keys" type=
"int" default=
"0"/> 
31470           <param name=
"attachment" type=
"int" default=
"0"/> 
31473       <method name=
"base_OnSize" type=
"" overloaded=
"no"> 
31474         <autodoc>base_OnSize(double x, double y)
</autodoc> 
31476           <param name=
"x" type=
"double" default=
""/> 
31477           <param name=
"y" type=
"double" default=
""/> 
31480       <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no"> 
31481         <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y, 
 
31482     bool display=True) -
> bool
</autodoc> 
31484           <param name=
"dc" type=
"DC" default=
""/> 
31485           <param name=
"x" type=
"double" default=
""/> 
31486           <param name=
"y" type=
"double" default=
""/> 
31487           <param name=
"old_x" type=
"double" default=
""/> 
31488           <param name=
"old_y" type=
"double" default=
""/> 
31489           <param name=
"display" type=
"bool" default=
"True"/> 
31492       <method name=
"base_OnMovePost" type=
"" overloaded=
"no"> 
31493         <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y, 
 
31494     bool display=True)
</autodoc> 
31496           <param name=
"dc" type=
"DC" default=
""/> 
31497           <param name=
"x" type=
"double" default=
""/> 
31498           <param name=
"y" type=
"double" default=
""/> 
31499           <param name=
"old_x" type=
"double" default=
""/> 
31500           <param name=
"old_y" type=
"double" default=
""/> 
31501           <param name=
"display" type=
"bool" default=
"True"/> 
31504       <method name=
"base_OnDragLeft" type=
"" overloaded=
"no"> 
31505         <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31507           <param name=
"draw" type=
"bool" default=
""/> 
31508           <param name=
"x" type=
"double" default=
""/> 
31509           <param name=
"y" type=
"double" default=
""/> 
31510           <param name=
"keys" type=
"int" default=
"0"/> 
31511           <param name=
"attachment" type=
"int" default=
"0"/> 
31514       <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no"> 
31515         <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31517           <param name=
"x" type=
"double" default=
""/> 
31518           <param name=
"y" type=
"double" default=
""/> 
31519           <param name=
"keys" type=
"int" default=
"0"/> 
31520           <param name=
"attachment" type=
"int" default=
"0"/> 
31523       <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no"> 
31524         <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31526           <param name=
"x" type=
"double" default=
""/> 
31527           <param name=
"y" type=
"double" default=
""/> 
31528           <param name=
"keys" type=
"int" default=
"0"/> 
31529           <param name=
"attachment" type=
"int" default=
"0"/> 
31532       <method name=
"base_OnDragRight" type=
"" overloaded=
"no"> 
31533         <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31535           <param name=
"draw" type=
"bool" default=
""/> 
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_OnBeginDragRight" type=
"" overloaded=
"no"> 
31543         <autodoc>base_OnBeginDragRight(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_OnEndDragRight" type=
"" overloaded=
"no"> 
31552         <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31554           <param name=
"x" type=
"double" default=
""/> 
31555           <param name=
"y" type=
"double" default=
""/> 
31556           <param name=
"keys" type=
"int" default=
"0"/> 
31557           <param name=
"attachment" type=
"int" default=
"0"/> 
31560       <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no"> 
31561         <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc> 
31563           <param name=
"dc" type=
"DC" default=
""/> 
31564           <param name=
"x" type=
"double" default=
""/> 
31565           <param name=
"y" type=
"double" default=
""/> 
31566           <param name=
"w" type=
"double" default=
""/> 
31567           <param name=
"h" type=
"double" default=
""/> 
31570       <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no"> 
31571         <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc> 
31573           <param name=
"dc" type=
"DC" default=
""/> 
31576       <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no"> 
31577         <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc> 
31579           <param name=
"dc" type=
"DC" default=
""/> 
31582       <method name=
"base_OnMoveLink" type=
"" overloaded=
"no"> 
31583         <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc> 
31585           <param name=
"dc" type=
"DC" default=
""/> 
31586           <param name=
"moveControlPoints" type=
"bool" default=
"True"/> 
31589       <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no"> 
31590         <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0, 
 
31591     int attachment=
0)
</autodoc> 
31593           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
31594           <param name=
"draw" type=
"bool" default=
""/> 
31595           <param name=
"x" type=
"double" default=
""/> 
31596           <param name=
"y" type=
"double" default=
""/> 
31597           <param name=
"keys" type=
"int" default=
"0"/> 
31598           <param name=
"attachment" type=
"int" default=
"0"/> 
31601       <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no"> 
31602         <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
31603     int attachment=
0)
</autodoc> 
31605           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
31606           <param name=
"x" type=
"double" default=
""/> 
31607           <param name=
"y" type=
"double" default=
""/> 
31608           <param name=
"keys" type=
"int" default=
"0"/> 
31609           <param name=
"attachment" type=
"int" default=
"0"/> 
31612       <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no"> 
31613         <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
31614     int attachment=
0)
</autodoc> 
31616           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
31617           <param name=
"x" type=
"double" default=
""/> 
31618           <param name=
"y" type=
"double" default=
""/> 
31619           <param name=
"keys" type=
"int" default=
"0"/> 
31620           <param name=
"attachment" type=
"int" default=
"0"/> 
31623       <method name=
"base_OnBeginSize" type=
"" overloaded=
"no"> 
31624         <autodoc>base_OnBeginSize(double w, double h)
</autodoc> 
31626           <param name=
"w" type=
"double" default=
""/> 
31627           <param name=
"h" type=
"double" default=
""/> 
31630       <method name=
"base_OnEndSize" type=
"" overloaded=
"no"> 
31631         <autodoc>base_OnEndSize(double w, double h)
</autodoc> 
31633           <param name=
"w" type=
"double" default=
""/> 
31634           <param name=
"h" type=
"double" default=
""/> 
31638     <class name=
"PyTextShape" oldname=
"wxPyTextShape" module=
"ogl"> 
31639       <baseclass name=
"PyRectangleShape"/> 
31640       <constructor name=
"PyTextShape" overloaded=
"no"> 
31641         <autodoc>__init__(double width=
0.0, double height=
0.0) -
> PyTextShape
</autodoc> 
31643           <param name=
"width" type=
"double" default=
"0.0"/> 
31644           <param name=
"height" type=
"double" default=
"0.0"/> 
31647       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
31648         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
31650           <param name=
"self" type=
"PyObject" default=
""/> 
31651           <param name=
"_class" type=
"PyObject" default=
""/> 
31654       <method name=
"base_OnDelete" type=
"" overloaded=
"no"> 
31655         <autodoc>base_OnDelete()
</autodoc> 
31657       <method name=
"base_OnDraw" type=
"" overloaded=
"no"> 
31658         <autodoc>base_OnDraw(DC dc)
</autodoc> 
31660           <param name=
"dc" type=
"DC" default=
""/> 
31663       <method name=
"base_OnDrawContents" type=
"" overloaded=
"no"> 
31664         <autodoc>base_OnDrawContents(DC dc)
</autodoc> 
31666           <param name=
"dc" type=
"DC" default=
""/> 
31669       <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no"> 
31670         <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc> 
31672           <param name=
"dc" type=
"DC" default=
""/> 
31673           <param name=
"erase" type=
"bool" default=
"FALSE"/> 
31676       <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no"> 
31677         <autodoc>base_OnMoveLinks(DC dc)
</autodoc> 
31679           <param name=
"dc" type=
"DC" default=
""/> 
31682       <method name=
"base_OnErase" type=
"" overloaded=
"no"> 
31683         <autodoc>base_OnErase(DC dc)
</autodoc> 
31685           <param name=
"dc" type=
"DC" default=
""/> 
31688       <method name=
"base_OnEraseContents" type=
"" overloaded=
"no"> 
31689         <autodoc>base_OnEraseContents(DC dc)
</autodoc> 
31691           <param name=
"dc" type=
"DC" default=
""/> 
31694       <method name=
"base_OnHighlight" type=
"" overloaded=
"no"> 
31695         <autodoc>base_OnHighlight(DC dc)
</autodoc> 
31697           <param name=
"dc" type=
"DC" default=
""/> 
31700       <method name=
"base_OnLeftClick" type=
"" overloaded=
"no"> 
31701         <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31703           <param name=
"x" type=
"double" default=
""/> 
31704           <param name=
"y" type=
"double" default=
""/> 
31705           <param name=
"keys" type=
"int" default=
"0"/> 
31706           <param name=
"attachment" type=
"int" default=
"0"/> 
31709       <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no"> 
31710         <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31712           <param name=
"x" type=
"double" default=
""/> 
31713           <param name=
"y" type=
"double" default=
""/> 
31714           <param name=
"keys" type=
"int" default=
"0"/> 
31715           <param name=
"attachment" type=
"int" default=
"0"/> 
31718       <method name=
"base_OnRightClick" type=
"" overloaded=
"no"> 
31719         <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31721           <param name=
"x" type=
"double" default=
""/> 
31722           <param name=
"y" type=
"double" default=
""/> 
31723           <param name=
"keys" type=
"int" default=
"0"/> 
31724           <param name=
"attachment" type=
"int" default=
"0"/> 
31727       <method name=
"base_OnSize" type=
"" overloaded=
"no"> 
31728         <autodoc>base_OnSize(double x, double y)
</autodoc> 
31730           <param name=
"x" type=
"double" default=
""/> 
31731           <param name=
"y" type=
"double" default=
""/> 
31734       <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no"> 
31735         <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y, 
 
31736     bool display=True) -
> bool
</autodoc> 
31738           <param name=
"dc" type=
"DC" default=
""/> 
31739           <param name=
"x" type=
"double" default=
""/> 
31740           <param name=
"y" type=
"double" default=
""/> 
31741           <param name=
"old_x" type=
"double" default=
""/> 
31742           <param name=
"old_y" type=
"double" default=
""/> 
31743           <param name=
"display" type=
"bool" default=
"True"/> 
31746       <method name=
"base_OnMovePost" type=
"" overloaded=
"no"> 
31747         <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y, 
 
31748     bool display=True)
</autodoc> 
31750           <param name=
"dc" type=
"DC" default=
""/> 
31751           <param name=
"x" type=
"double" default=
""/> 
31752           <param name=
"y" type=
"double" default=
""/> 
31753           <param name=
"old_x" type=
"double" default=
""/> 
31754           <param name=
"old_y" type=
"double" default=
""/> 
31755           <param name=
"display" type=
"bool" default=
"True"/> 
31758       <method name=
"base_OnDragLeft" type=
"" overloaded=
"no"> 
31759         <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31761           <param name=
"draw" type=
"bool" default=
""/> 
31762           <param name=
"x" type=
"double" default=
""/> 
31763           <param name=
"y" type=
"double" default=
""/> 
31764           <param name=
"keys" type=
"int" default=
"0"/> 
31765           <param name=
"attachment" type=
"int" default=
"0"/> 
31768       <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no"> 
31769         <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31771           <param name=
"x" type=
"double" default=
""/> 
31772           <param name=
"y" type=
"double" default=
""/> 
31773           <param name=
"keys" type=
"int" default=
"0"/> 
31774           <param name=
"attachment" type=
"int" default=
"0"/> 
31777       <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no"> 
31778         <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31780           <param name=
"x" type=
"double" default=
""/> 
31781           <param name=
"y" type=
"double" default=
""/> 
31782           <param name=
"keys" type=
"int" default=
"0"/> 
31783           <param name=
"attachment" type=
"int" default=
"0"/> 
31786       <method name=
"base_OnDragRight" type=
"" overloaded=
"no"> 
31787         <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31789           <param name=
"draw" type=
"bool" default=
""/> 
31790           <param name=
"x" type=
"double" default=
""/> 
31791           <param name=
"y" type=
"double" default=
""/> 
31792           <param name=
"keys" type=
"int" default=
"0"/> 
31793           <param name=
"attachment" type=
"int" default=
"0"/> 
31796       <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no"> 
31797         <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31799           <param name=
"x" type=
"double" default=
""/> 
31800           <param name=
"y" type=
"double" default=
""/> 
31801           <param name=
"keys" type=
"int" default=
"0"/> 
31802           <param name=
"attachment" type=
"int" default=
"0"/> 
31805       <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no"> 
31806         <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31808           <param name=
"x" type=
"double" default=
""/> 
31809           <param name=
"y" type=
"double" default=
""/> 
31810           <param name=
"keys" type=
"int" default=
"0"/> 
31811           <param name=
"attachment" type=
"int" default=
"0"/> 
31814       <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no"> 
31815         <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc> 
31817           <param name=
"dc" type=
"DC" default=
""/> 
31818           <param name=
"x" type=
"double" default=
""/> 
31819           <param name=
"y" type=
"double" default=
""/> 
31820           <param name=
"w" type=
"double" default=
""/> 
31821           <param name=
"h" type=
"double" default=
""/> 
31824       <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no"> 
31825         <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc> 
31827           <param name=
"dc" type=
"DC" default=
""/> 
31830       <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no"> 
31831         <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc> 
31833           <param name=
"dc" type=
"DC" default=
""/> 
31836       <method name=
"base_OnMoveLink" type=
"" overloaded=
"no"> 
31837         <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc> 
31839           <param name=
"dc" type=
"DC" default=
""/> 
31840           <param name=
"moveControlPoints" type=
"bool" default=
"True"/> 
31843       <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no"> 
31844         <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0, 
 
31845     int attachment=
0)
</autodoc> 
31847           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
31848           <param name=
"draw" type=
"bool" default=
""/> 
31849           <param name=
"x" type=
"double" default=
""/> 
31850           <param name=
"y" type=
"double" default=
""/> 
31851           <param name=
"keys" type=
"int" default=
"0"/> 
31852           <param name=
"attachment" type=
"int" default=
"0"/> 
31855       <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no"> 
31856         <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
31857     int attachment=
0)
</autodoc> 
31859           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
31860           <param name=
"x" type=
"double" default=
""/> 
31861           <param name=
"y" type=
"double" default=
""/> 
31862           <param name=
"keys" type=
"int" default=
"0"/> 
31863           <param name=
"attachment" type=
"int" default=
"0"/> 
31866       <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no"> 
31867         <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
31868     int attachment=
0)
</autodoc> 
31870           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
31871           <param name=
"x" type=
"double" default=
""/> 
31872           <param name=
"y" type=
"double" default=
""/> 
31873           <param name=
"keys" type=
"int" default=
"0"/> 
31874           <param name=
"attachment" type=
"int" default=
"0"/> 
31877       <method name=
"base_OnBeginSize" type=
"" overloaded=
"no"> 
31878         <autodoc>base_OnBeginSize(double w, double h)
</autodoc> 
31880           <param name=
"w" type=
"double" default=
""/> 
31881           <param name=
"h" type=
"double" default=
""/> 
31884       <method name=
"base_OnEndSize" type=
"" overloaded=
"no"> 
31885         <autodoc>base_OnEndSize(double w, double h)
</autodoc> 
31887           <param name=
"w" type=
"double" default=
""/> 
31888           <param name=
"h" type=
"double" default=
""/> 
31892     <class name=
"Diagram" oldname=
"wxDiagram" module=
"ogl"> 
31893       <baseclass name=
"Object"/> 
31894       <constructor name=
"Diagram" overloaded=
"no"> 
31895         <autodoc>__init__() -
> Diagram
</autodoc> 
31897       <method name=
"AddShape" type=
"" overloaded=
"no"> 
31898         <autodoc>AddShape(PyShape shape, PyShape addAfter=None)
</autodoc> 
31900           <param name=
"shape" type=
"PyShape" default=
""/> 
31901           <param name=
"addAfter" type=
"PyShape" default=
"NULL"/> 
31904       <method name=
"Clear" type=
"" overloaded=
"no"> 
31905         <autodoc>Clear(DC dc)
</autodoc> 
31907           <param name=
"dc" type=
"DC" default=
""/> 
31910       <method name=
"DeleteAllShapes" type=
"" overloaded=
"no"> 
31911         <autodoc>DeleteAllShapes()
</autodoc> 
31913       <method name=
"DrawOutline" type=
"" overloaded=
"no"> 
31914         <autodoc>DrawOutline(DC dc, double x1, double y1, double x2, double y2)
</autodoc> 
31916           <param name=
"dc" type=
"DC" default=
""/> 
31917           <param name=
"x1" type=
"double" default=
""/> 
31918           <param name=
"y1" type=
"double" default=
""/> 
31919           <param name=
"x2" type=
"double" default=
""/> 
31920           <param name=
"y2" type=
"double" default=
""/> 
31923       <method name=
"FindShape" type=
"PyShape" overloaded=
"no"> 
31924         <autodoc>FindShape(long id) -
> PyShape
</autodoc> 
31926           <param name=
"id" type=
"long" default=
""/> 
31929       <method name=
"GetCanvas" type=
"wxPyShapeCanvas" overloaded=
"no"> 
31930         <autodoc>GetCanvas() -
> PyShapeCanvas
</autodoc> 
31932       <method name=
"GetCount" type=
"int" overloaded=
"no"> 
31933         <autodoc>GetCount() -
> int
</autodoc> 
31935       <method name=
"GetGridSpacing" type=
"double" overloaded=
"no"> 
31936         <autodoc>GetGridSpacing() -
> double
</autodoc> 
31938       <method name=
"GetMouseTolerance" type=
"int" overloaded=
"no"> 
31939         <autodoc>GetMouseTolerance() -
> int
</autodoc> 
31941       <method name=
"GetShapeList" type=
"PyObject" overloaded=
"no"> 
31942         <autodoc>GetShapeList() -
> PyObject
</autodoc> 
31944       <method name=
"GetQuickEditMode" type=
"bool" overloaded=
"no"> 
31945         <autodoc>GetQuickEditMode() -
> bool
</autodoc> 
31947       <method name=
"GetSnapToGrid" type=
"bool" overloaded=
"no"> 
31948         <autodoc>GetSnapToGrid() -
> bool
</autodoc> 
31950       <method name=
"InsertShape" type=
"" overloaded=
"no"> 
31951         <autodoc>InsertShape(PyShape shape)
</autodoc> 
31953           <param name=
"shape" type=
"PyShape" default=
""/> 
31956       <method name=
"RecentreAll" type=
"" overloaded=
"no"> 
31957         <autodoc>RecentreAll(DC dc)
</autodoc> 
31959           <param name=
"dc" type=
"DC" default=
""/> 
31962       <method name=
"Redraw" type=
"" overloaded=
"no"> 
31963         <autodoc>Redraw(DC dc)
</autodoc> 
31965           <param name=
"dc" type=
"DC" default=
""/> 
31968       <method name=
"RemoveAllShapes" type=
"" overloaded=
"no"> 
31969         <autodoc>RemoveAllShapes()
</autodoc> 
31971       <method name=
"RemoveShape" type=
"" overloaded=
"no"> 
31972         <autodoc>RemoveShape(PyShape shape)
</autodoc> 
31974           <param name=
"shape" type=
"PyShape" default=
""/> 
31977       <method name=
"SetCanvas" type=
"" overloaded=
"no"> 
31978         <autodoc>SetCanvas(PyShapeCanvas canvas)
</autodoc> 
31980           <param name=
"canvas" type=
"wxPyShapeCanvas" default=
""/> 
31983       <method name=
"SetGridSpacing" type=
"" overloaded=
"no"> 
31984         <autodoc>SetGridSpacing(double spacing)
</autodoc> 
31986           <param name=
"spacing" type=
"double" default=
""/> 
31989       <method name=
"SetMouseTolerance" type=
"" overloaded=
"no"> 
31990         <autodoc>SetMouseTolerance(int tolerance)
</autodoc> 
31992           <param name=
"tolerance" type=
"int" default=
""/> 
31995       <method name=
"SetQuickEditMode" type=
"" overloaded=
"no"> 
31996         <autodoc>SetQuickEditMode(bool mode)
</autodoc> 
31998           <param name=
"mode" type=
"bool" default=
""/> 
32001       <method name=
"SetSnapToGrid" type=
"" overloaded=
"no"> 
32002         <autodoc>SetSnapToGrid(bool snap)
</autodoc> 
32004           <param name=
"snap" type=
"bool" default=
""/> 
32007       <method name=
"ShowAll" type=
"" overloaded=
"no"> 
32008         <autodoc>ShowAll(bool show)
</autodoc> 
32010           <param name=
"show" type=
"bool" default=
""/> 
32013       <method name=
"Snap" type=
"" overloaded=
"no"> 
32014         <autodoc>Snap(double INOUT, double INOUT)
</autodoc> 
32016           <param name=
"INOUT" type=
"double" default=
""/> 
32017           <param name=
"INOUT" type=
"double" default=
""/> 
32021     <class name=
"PyShapeCanvas" oldname=
"wxPyShapeCanvas" module=
"ogl"> 
32022       <baseclass name=
"ScrolledWindow"/> 
32023       <constructor name=
"PyShapeCanvas" overloaded=
"no"> 
32024         <autodoc>__init__(Window parent=None, int id=-
1, Point pos=DefaultPosition, 
 
32025     Size size=DefaultSize, long style=BORDER, 
 
32026     String name=wxPyShapeCanvasNameStr) -
> PyShapeCanvas
</autodoc> 
32028           <param name=
"parent" type=
"Window" default=
"NULL"/> 
32029           <param name=
"id" type=
"int" default=
"-1"/> 
32030           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
32031           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
32032           <param name=
"style" type=
"long" default=
"wxBORDER"/> 
32033           <param name=
"name" type=
"String" default=
"wxPyShapeCanvasNameStr"/> 
32036       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
32037         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
32039           <param name=
"self" type=
"PyObject" default=
""/> 
32040           <param name=
"_class" type=
"PyObject" default=
""/> 
32043       <method name=
"AddShape" type=
"" overloaded=
"no"> 
32044         <autodoc>AddShape(PyShape shape, PyShape addAfter=None)
</autodoc> 
32046           <param name=
"shape" type=
"PyShape" default=
""/> 
32047           <param name=
"addAfter" type=
"PyShape" default=
"NULL"/> 
32050       <method name=
"FindShape" type=
"PyShape" overloaded=
"no"> 
32051         <autodoc>FindShape(double x1, double y, int OUTPUT, wxClassInfo info=None, 
 
32052     PyShape notImage=None) -
> PyShape
</autodoc> 
32054           <param name=
"x1" type=
"double" default=
""/> 
32055           <param name=
"y" type=
"double" default=
""/> 
32056           <param name=
"OUTPUT" type=
"int" default=
""/> 
32057           <param name=
"info" type=
"wxClassInfo" default=
"NULL"/> 
32058           <param name=
"notImage" type=
"PyShape" default=
"NULL"/> 
32061       <method name=
"FindFirstSensitiveShape" type=
"PyShape" overloaded=
"no"> 
32062         <autodoc>FindFirstSensitiveShape(double x1, double y, int OUTPUT, int op) -
> PyShape
</autodoc> 
32064           <param name=
"x1" type=
"double" default=
""/> 
32065           <param name=
"y" type=
"double" default=
""/> 
32066           <param name=
"OUTPUT" type=
"int" default=
""/> 
32067           <param name=
"op" type=
"int" default=
""/> 
32070       <method name=
"GetDiagram" type=
"Diagram" overloaded=
"no"> 
32071         <autodoc>GetDiagram() -
> Diagram
</autodoc> 
32073       <method name=
"GetQuickEditMode" type=
"bool" overloaded=
"no"> 
32074         <autodoc>GetQuickEditMode() -
> bool
</autodoc> 
32076       <method name=
"InsertShape" type=
"" overloaded=
"no"> 
32077         <autodoc>InsertShape(PyShape shape)
</autodoc> 
32079           <param name=
"shape" type=
"PyShape" default=
""/> 
32082       <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no"> 
32083         <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0)
</autodoc> 
32085           <param name=
"x" type=
"double" default=
""/> 
32086           <param name=
"y" type=
"double" default=
""/> 
32087           <param name=
"keys" type=
"int" default=
"0"/> 
32090       <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no"> 
32091         <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0)
</autodoc> 
32093           <param name=
"x" type=
"double" default=
""/> 
32094           <param name=
"y" type=
"double" default=
""/> 
32095           <param name=
"keys" type=
"int" default=
"0"/> 
32098       <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no"> 
32099         <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0)
</autodoc> 
32101           <param name=
"x" type=
"double" default=
""/> 
32102           <param name=
"y" type=
"double" default=
""/> 
32103           <param name=
"keys" type=
"int" default=
"0"/> 
32106       <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no"> 
32107         <autodoc>base_OnEndDragRight(double x, double y, int keys=
0)
</autodoc> 
32109           <param name=
"x" type=
"double" default=
""/> 
32110           <param name=
"y" type=
"double" default=
""/> 
32111           <param name=
"keys" type=
"int" default=
"0"/> 
32114       <method name=
"base_OnDragLeft" type=
"" overloaded=
"no"> 
32115         <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0)
</autodoc> 
32117           <param name=
"draw" type=
"bool" default=
""/> 
32118           <param name=
"x" type=
"double" default=
""/> 
32119           <param name=
"y" type=
"double" default=
""/> 
32120           <param name=
"keys" type=
"int" default=
"0"/> 
32123       <method name=
"base_OnDragRight" type=
"" overloaded=
"no"> 
32124         <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0)
</autodoc> 
32126           <param name=
"draw" type=
"bool" default=
""/> 
32127           <param name=
"x" type=
"double" default=
""/> 
32128           <param name=
"y" type=
"double" default=
""/> 
32129           <param name=
"keys" type=
"int" default=
"0"/> 
32132       <method name=
"base_OnLeftClick" type=
"" overloaded=
"no"> 
32133         <autodoc>base_OnLeftClick(double x, double y, int keys=
0)
</autodoc> 
32135           <param name=
"x" type=
"double" default=
""/> 
32136           <param name=
"y" type=
"double" default=
""/> 
32137           <param name=
"keys" type=
"int" default=
"0"/> 
32140       <method name=
"base_OnRightClick" type=
"" overloaded=
"no"> 
32141         <autodoc>base_OnRightClick(double x, double y, int keys=
0)
</autodoc> 
32143           <param name=
"x" type=
"double" default=
""/> 
32144           <param name=
"y" type=
"double" default=
""/> 
32145           <param name=
"keys" type=
"int" default=
"0"/> 
32148       <method name=
"Redraw" type=
"" overloaded=
"no"> 
32149         <autodoc>Redraw(DC dc)
</autodoc> 
32151           <param name=
"dc" type=
"DC" default=
""/> 
32154       <method name=
"RemoveShape" type=
"" overloaded=
"no"> 
32155         <autodoc>RemoveShape(PyShape shape)
</autodoc> 
32157           <param name=
"shape" type=
"PyShape" default=
""/> 
32160       <method name=
"SetDiagram" type=
"" overloaded=
"no"> 
32161         <autodoc>SetDiagram(Diagram diagram)
</autodoc> 
32163           <param name=
"diagram" type=
"Diagram" default=
""/> 
32166       <method name=
"Snap" type=
"" overloaded=
"no"> 
32167         <autodoc>Snap(double INOUT, double INOUT)
</autodoc> 
32169           <param name=
"INOUT" type=
"double" default=
""/> 
32170           <param name=
"INOUT" type=
"double" default=
""/> 
32176 ShapeCanvas =       PyShapeCanvas
 
32177 ShapeEvtHandler =   PyShapeEvtHandler
 
32179 RectangleShape =    PyRectangleShape
 
32180 BitmapShape =       PyBitmapShape
 
32181 DrawnShape =        PyDrawnShape
 
32182 CompositeShape =    PyCompositeShape
 
32183 DividedShape =      PyDividedShape
 
32184 DivisionShape =     PyDivisionShape
 
32185 EllipseShape =      PyEllipseShape
 
32186 CircleShape =       PyCircleShape
 
32187 LineShape =         PyLineShape
 
32188 PolygonShape =      PyPolygonShape
 
32189 TextShape =         PyTextShape
 
32190 ControlPoint =      PyControlPoint
 
32192     <method name=
"OGLInitialize" oldname=
"wxOGLInitialize" type=
"" overloaded=
"no"> 
32193       <autodoc>OGLInitialize()
</autodoc> 
32195     <method name=
"OGLCleanUp" oldname=
"wxOGLCleanUp" type=
"" overloaded=
"no"> 
32196       <autodoc>OGLCleanUp()
</autodoc> 
32199   <module name=
"stc"> 
32200     <import name=
"core"/> 
32201     <pythoncode> wx = core 
</pythoncode> 
32202     <class name=
"StyledTextCtrl" oldname=
"wxStyledTextCtrl" module=
"stc"> 
32203       <baseclass name=
"Control"/> 
32204       <constructor name=
"StyledTextCtrl" overloaded=
"no"> 
32205         <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
32206     long style=
0, String name=STCNameStr) -
> StyledTextCtrl
</autodoc> 
32208           <param name=
"parent" type=
"Window" default=
""/> 
32209           <param name=
"id" type=
"int" default=
""/> 
32210           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
32211           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
32212           <param name=
"style" type=
"long" default=
"0"/> 
32213           <param name=
"name" type=
"String" default=
"wxPySTCNameStr"/> 
32216       <constructor name=
"PreStyledTextCtrl" overloaded=
"no"> 
32217         <autodoc>PreStyledTextCtrl() -
> StyledTextCtrl
</autodoc> 
32219       <method name=
"Create" type=
"" overloaded=
"no"> 
32220         <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
32221     long style=
0, String name=wxSTCNameStr)
</autodoc> 
32223           <param name=
"parent" type=
"Window" default=
""/> 
32224           <param name=
"id" type=
"int" default=
""/> 
32225           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
32226           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
32227           <param name=
"style" type=
"long" default=
"0"/> 
32228           <param name=
"name" type=
"String" default=
"wxSTCNameStr"/> 
32231       <method name=
"AddText" type=
"" overloaded=
"no"> 
32232         <autodoc>AddText(String text)
</autodoc> 
32234           <param name=
"text" type=
"String" default=
""/> 
32237       <method name=
"AddStyledText" type=
"" overloaded=
"no"> 
32238         <autodoc>AddStyledText(wxMemoryBuffer data)
</autodoc> 
32240           <param name=
"data" type=
"wxMemoryBuffer" default=
""/> 
32243       <method name=
"InsertText" type=
"" overloaded=
"no"> 
32244         <autodoc>InsertText(int pos, String text)
</autodoc> 
32246           <param name=
"pos" type=
"int" default=
""/> 
32247           <param name=
"text" type=
"String" default=
""/> 
32250       <method name=
"ClearAll" type=
"" overloaded=
"no"> 
32251         <autodoc>ClearAll()
</autodoc> 
32253       <method name=
"ClearDocumentStyle" type=
"" overloaded=
"no"> 
32254         <autodoc>ClearDocumentStyle()
</autodoc> 
32256       <method name=
"GetLength" type=
"int" overloaded=
"no"> 
32257         <autodoc>GetLength() -
> int
</autodoc> 
32259       <method name=
"GetCharAt" type=
"int" overloaded=
"no"> 
32260         <autodoc>GetCharAt(int pos) -
> int
</autodoc> 
32262           <param name=
"pos" type=
"int" default=
""/> 
32265       <method name=
"GetCurrentPos" type=
"int" overloaded=
"no"> 
32266         <autodoc>GetCurrentPos() -
> int
</autodoc> 
32268       <method name=
"GetAnchor" type=
"int" overloaded=
"no"> 
32269         <autodoc>GetAnchor() -
> int
</autodoc> 
32271       <method name=
"GetStyleAt" type=
"int" overloaded=
"no"> 
32272         <autodoc>GetStyleAt(int pos) -
> int
</autodoc> 
32274           <param name=
"pos" type=
"int" default=
""/> 
32277       <method name=
"Redo" type=
"" overloaded=
"no"> 
32278         <autodoc>Redo()
</autodoc> 
32280       <method name=
"SetUndoCollection" type=
"" overloaded=
"no"> 
32281         <autodoc>SetUndoCollection(bool collectUndo)
</autodoc> 
32283           <param name=
"collectUndo" type=
"bool" default=
""/> 
32286       <method name=
"SelectAll" type=
"" overloaded=
"no"> 
32287         <autodoc>SelectAll()
</autodoc> 
32289       <method name=
"SetSavePoint" type=
"" overloaded=
"no"> 
32290         <autodoc>SetSavePoint()
</autodoc> 
32292       <method name=
"GetStyledText" type=
"wxMemoryBuffer" overloaded=
"no"> 
32293         <autodoc>GetStyledText(int startPos, int endPos) -
> wxMemoryBuffer
</autodoc> 
32295           <param name=
"startPos" type=
"int" default=
""/> 
32296           <param name=
"endPos" type=
"int" default=
""/> 
32299       <method name=
"CanRedo" type=
"bool" overloaded=
"no"> 
32300         <autodoc>CanRedo() -
> bool
</autodoc> 
32302       <method name=
"MarkerLineFromHandle" type=
"int" overloaded=
"no"> 
32303         <autodoc>MarkerLineFromHandle(int handle) -
> int
</autodoc> 
32305           <param name=
"handle" type=
"int" default=
""/> 
32308       <method name=
"MarkerDeleteHandle" type=
"" overloaded=
"no"> 
32309         <autodoc>MarkerDeleteHandle(int handle)
</autodoc> 
32311           <param name=
"handle" type=
"int" default=
""/> 
32314       <method name=
"GetUndoCollection" type=
"bool" overloaded=
"no"> 
32315         <autodoc>GetUndoCollection() -
> bool
</autodoc> 
32317       <method name=
"GetViewWhiteSpace" type=
"int" overloaded=
"no"> 
32318         <autodoc>GetViewWhiteSpace() -
> int
</autodoc> 
32320       <method name=
"SetViewWhiteSpace" type=
"" overloaded=
"no"> 
32321         <autodoc>SetViewWhiteSpace(int viewWS)
</autodoc> 
32323           <param name=
"viewWS" type=
"int" default=
""/> 
32326       <method name=
"PositionFromPoint" type=
"int" overloaded=
"no"> 
32327         <autodoc>PositionFromPoint(Point pt) -
> int
</autodoc> 
32329           <param name=
"pt" type=
"Point" default=
""/> 
32332       <method name=
"PositionFromPointClose" type=
"int" overloaded=
"no"> 
32333         <autodoc>PositionFromPointClose(int x, int y) -
> int
</autodoc> 
32335           <param name=
"x" type=
"int" default=
""/> 
32336           <param name=
"y" type=
"int" default=
""/> 
32339       <method name=
"GotoLine" type=
"" overloaded=
"no"> 
32340         <autodoc>GotoLine(int line)
</autodoc> 
32342           <param name=
"line" type=
"int" default=
""/> 
32345       <method name=
"GotoPos" type=
"" overloaded=
"no"> 
32346         <autodoc>GotoPos(int pos)
</autodoc> 
32348           <param name=
"pos" type=
"int" default=
""/> 
32351       <method name=
"SetAnchor" type=
"" overloaded=
"no"> 
32352         <autodoc>SetAnchor(int posAnchor)
</autodoc> 
32354           <param name=
"posAnchor" type=
"int" default=
""/> 
32357       <method name=
"GetCurLine" type=
"String" overloaded=
"no"> 
32358         <autodoc>GetCurLine(int OUTPUT) -
> String
</autodoc> 
32360           <param name=
"OUTPUT" type=
"int" default=
""/> 
32363       <method name=
"GetEndStyled" type=
"int" overloaded=
"no"> 
32364         <autodoc>GetEndStyled() -
> int
</autodoc> 
32366       <method name=
"ConvertEOLs" type=
"" overloaded=
"no"> 
32367         <autodoc>ConvertEOLs(int eolMode)
</autodoc> 
32369           <param name=
"eolMode" type=
"int" default=
""/> 
32372       <method name=
"GetEOLMode" type=
"int" overloaded=
"no"> 
32373         <autodoc>GetEOLMode() -
> int
</autodoc> 
32375       <method name=
"SetEOLMode" type=
"" overloaded=
"no"> 
32376         <autodoc>SetEOLMode(int eolMode)
</autodoc> 
32378           <param name=
"eolMode" type=
"int" default=
""/> 
32381       <method name=
"StartStyling" type=
"" overloaded=
"no"> 
32382         <autodoc>StartStyling(int pos, int mask)
</autodoc> 
32384           <param name=
"pos" type=
"int" default=
""/> 
32385           <param name=
"mask" type=
"int" default=
""/> 
32388       <method name=
"SetStyling" type=
"" overloaded=
"no"> 
32389         <autodoc>SetStyling(int length, int style)
</autodoc> 
32391           <param name=
"length" type=
"int" default=
""/> 
32392           <param name=
"style" type=
"int" default=
""/> 
32395       <method name=
"GetBufferedDraw" type=
"bool" overloaded=
"no"> 
32396         <autodoc>GetBufferedDraw() -
> bool
</autodoc> 
32398       <method name=
"SetBufferedDraw" type=
"" overloaded=
"no"> 
32399         <autodoc>SetBufferedDraw(bool buffered)
</autodoc> 
32401           <param name=
"buffered" type=
"bool" default=
""/> 
32404       <method name=
"SetTabWidth" type=
"" overloaded=
"no"> 
32405         <autodoc>SetTabWidth(int tabWidth)
</autodoc> 
32407           <param name=
"tabWidth" type=
"int" default=
""/> 
32410       <method name=
"GetTabWidth" type=
"int" overloaded=
"no"> 
32411         <autodoc>GetTabWidth() -
> int
</autodoc> 
32413       <method name=
"SetCodePage" type=
"" overloaded=
"no"> 
32414         <autodoc>SetCodePage(int codePage)
</autodoc> 
32416           <param name=
"codePage" type=
"int" default=
""/> 
32419       <method name=
"MarkerDefine" type=
"" overloaded=
"no"> 
32420         <autodoc>MarkerDefine(int markerNumber, int markerSymbol, Colour foreground=wxNullColour, 
 
32421     Colour background=wxNullColour)
</autodoc> 
32423           <param name=
"markerNumber" type=
"int" default=
""/> 
32424           <param name=
"markerSymbol" type=
"int" default=
""/> 
32425           <param name=
"foreground" type=
"Colour" default=
"wxNullColour"/> 
32426           <param name=
"background" type=
"Colour" default=
"wxNullColour"/> 
32429       <method name=
"MarkerSetForeground" type=
"" overloaded=
"no"> 
32430         <autodoc>MarkerSetForeground(int markerNumber, Colour fore)
</autodoc> 
32432           <param name=
"markerNumber" type=
"int" default=
""/> 
32433           <param name=
"fore" type=
"Colour" default=
""/> 
32436       <method name=
"MarkerSetBackground" type=
"" overloaded=
"no"> 
32437         <autodoc>MarkerSetBackground(int markerNumber, Colour back)
</autodoc> 
32439           <param name=
"markerNumber" type=
"int" default=
""/> 
32440           <param name=
"back" type=
"Colour" default=
""/> 
32443       <method name=
"MarkerAdd" type=
"int" overloaded=
"no"> 
32444         <autodoc>MarkerAdd(int line, int markerNumber) -
> int
</autodoc> 
32446           <param name=
"line" type=
"int" default=
""/> 
32447           <param name=
"markerNumber" type=
"int" default=
""/> 
32450       <method name=
"MarkerDelete" type=
"" overloaded=
"no"> 
32451         <autodoc>MarkerDelete(int line, int markerNumber)
</autodoc> 
32453           <param name=
"line" type=
"int" default=
""/> 
32454           <param name=
"markerNumber" type=
"int" default=
""/> 
32457       <method name=
"MarkerDeleteAll" type=
"" overloaded=
"no"> 
32458         <autodoc>MarkerDeleteAll(int markerNumber)
</autodoc> 
32460           <param name=
"markerNumber" type=
"int" default=
""/> 
32463       <method name=
"MarkerGet" type=
"int" overloaded=
"no"> 
32464         <autodoc>MarkerGet(int line) -
> int
</autodoc> 
32466           <param name=
"line" type=
"int" default=
""/> 
32469       <method name=
"MarkerNext" type=
"int" overloaded=
"no"> 
32470         <autodoc>MarkerNext(int lineStart, int markerMask) -
> int
</autodoc> 
32472           <param name=
"lineStart" type=
"int" default=
""/> 
32473           <param name=
"markerMask" type=
"int" default=
""/> 
32476       <method name=
"MarkerPrevious" type=
"int" overloaded=
"no"> 
32477         <autodoc>MarkerPrevious(int lineStart, int markerMask) -
> int
</autodoc> 
32479           <param name=
"lineStart" type=
"int" default=
""/> 
32480           <param name=
"markerMask" type=
"int" default=
""/> 
32483       <method name=
"MarkerDefineBitmap" type=
"" overloaded=
"no"> 
32484         <autodoc>MarkerDefineBitmap(int markerNumber, Bitmap bmp)
</autodoc> 
32486           <param name=
"markerNumber" type=
"int" default=
""/> 
32487           <param name=
"bmp" type=
"Bitmap" default=
""/> 
32490       <method name=
"SetMarginType" type=
"" overloaded=
"no"> 
32491         <autodoc>SetMarginType(int margin, int marginType)
</autodoc> 
32493           <param name=
"margin" type=
"int" default=
""/> 
32494           <param name=
"marginType" type=
"int" default=
""/> 
32497       <method name=
"GetMarginType" type=
"int" overloaded=
"no"> 
32498         <autodoc>GetMarginType(int margin) -
> int
</autodoc> 
32500           <param name=
"margin" type=
"int" default=
""/> 
32503       <method name=
"SetMarginWidth" type=
"" overloaded=
"no"> 
32504         <autodoc>SetMarginWidth(int margin, int pixelWidth)
</autodoc> 
32506           <param name=
"margin" type=
"int" default=
""/> 
32507           <param name=
"pixelWidth" type=
"int" default=
""/> 
32510       <method name=
"GetMarginWidth" type=
"int" overloaded=
"no"> 
32511         <autodoc>GetMarginWidth(int margin) -
> int
</autodoc> 
32513           <param name=
"margin" type=
"int" default=
""/> 
32516       <method name=
"SetMarginMask" type=
"" overloaded=
"no"> 
32517         <autodoc>SetMarginMask(int margin, int mask)
</autodoc> 
32519           <param name=
"margin" type=
"int" default=
""/> 
32520           <param name=
"mask" type=
"int" default=
""/> 
32523       <method name=
"GetMarginMask" type=
"int" overloaded=
"no"> 
32524         <autodoc>GetMarginMask(int margin) -
> int
</autodoc> 
32526           <param name=
"margin" type=
"int" default=
""/> 
32529       <method name=
"SetMarginSensitive" type=
"" overloaded=
"no"> 
32530         <autodoc>SetMarginSensitive(int margin, bool sensitive)
</autodoc> 
32532           <param name=
"margin" type=
"int" default=
""/> 
32533           <param name=
"sensitive" type=
"bool" default=
""/> 
32536       <method name=
"GetMarginSensitive" type=
"bool" overloaded=
"no"> 
32537         <autodoc>GetMarginSensitive(int margin) -
> bool
</autodoc> 
32539           <param name=
"margin" type=
"int" default=
""/> 
32542       <method name=
"StyleClearAll" type=
"" overloaded=
"no"> 
32543         <autodoc>StyleClearAll()
</autodoc> 
32545       <method name=
"StyleSetForeground" type=
"" overloaded=
"no"> 
32546         <autodoc>StyleSetForeground(int style, Colour fore)
</autodoc> 
32548           <param name=
"style" type=
"int" default=
""/> 
32549           <param name=
"fore" type=
"Colour" default=
""/> 
32552       <method name=
"StyleSetBackground" type=
"" overloaded=
"no"> 
32553         <autodoc>StyleSetBackground(int style, Colour back)
</autodoc> 
32555           <param name=
"style" type=
"int" default=
""/> 
32556           <param name=
"back" type=
"Colour" default=
""/> 
32559       <method name=
"StyleSetBold" type=
"" overloaded=
"no"> 
32560         <autodoc>StyleSetBold(int style, bool bold)
</autodoc> 
32562           <param name=
"style" type=
"int" default=
""/> 
32563           <param name=
"bold" type=
"bool" default=
""/> 
32566       <method name=
"StyleSetItalic" type=
"" overloaded=
"no"> 
32567         <autodoc>StyleSetItalic(int style, bool italic)
</autodoc> 
32569           <param name=
"style" type=
"int" default=
""/> 
32570           <param name=
"italic" type=
"bool" default=
""/> 
32573       <method name=
"StyleSetSize" type=
"" overloaded=
"no"> 
32574         <autodoc>StyleSetSize(int style, int sizePoints)
</autodoc> 
32576           <param name=
"style" type=
"int" default=
""/> 
32577           <param name=
"sizePoints" type=
"int" default=
""/> 
32580       <method name=
"StyleSetFaceName" type=
"" overloaded=
"no"> 
32581         <autodoc>StyleSetFaceName(int style, String fontName)
</autodoc> 
32583           <param name=
"style" type=
"int" default=
""/> 
32584           <param name=
"fontName" type=
"String" default=
""/> 
32587       <method name=
"StyleSetEOLFilled" type=
"" overloaded=
"no"> 
32588         <autodoc>StyleSetEOLFilled(int style, bool filled)
</autodoc> 
32590           <param name=
"style" type=
"int" default=
""/> 
32591           <param name=
"filled" type=
"bool" default=
""/> 
32594       <method name=
"StyleResetDefault" type=
"" overloaded=
"no"> 
32595         <autodoc>StyleResetDefault()
</autodoc> 
32597       <method name=
"StyleSetUnderline" type=
"" overloaded=
"no"> 
32598         <autodoc>StyleSetUnderline(int style, bool underline)
</autodoc> 
32600           <param name=
"style" type=
"int" default=
""/> 
32601           <param name=
"underline" type=
"bool" default=
""/> 
32604       <method name=
"StyleSetCase" type=
"" overloaded=
"no"> 
32605         <autodoc>StyleSetCase(int style, int caseForce)
</autodoc> 
32607           <param name=
"style" type=
"int" default=
""/> 
32608           <param name=
"caseForce" type=
"int" default=
""/> 
32611       <method name=
"StyleSetCharacterSet" type=
"" overloaded=
"no"> 
32612         <autodoc>StyleSetCharacterSet(int style, int characterSet)
</autodoc> 
32614           <param name=
"style" type=
"int" default=
""/> 
32615           <param name=
"characterSet" type=
"int" default=
""/> 
32618       <method name=
"StyleSetHotSpot" type=
"" overloaded=
"no"> 
32619         <autodoc>StyleSetHotSpot(int style, bool hotspot)
</autodoc> 
32621           <param name=
"style" type=
"int" default=
""/> 
32622           <param name=
"hotspot" type=
"bool" default=
""/> 
32625       <method name=
"SetSelForeground" type=
"" overloaded=
"no"> 
32626         <autodoc>SetSelForeground(bool useSetting, Colour fore)
</autodoc> 
32628           <param name=
"useSetting" type=
"bool" default=
""/> 
32629           <param name=
"fore" type=
"Colour" default=
""/> 
32632       <method name=
"SetSelBackground" type=
"" overloaded=
"no"> 
32633         <autodoc>SetSelBackground(bool useSetting, Colour back)
</autodoc> 
32635           <param name=
"useSetting" type=
"bool" default=
""/> 
32636           <param name=
"back" type=
"Colour" default=
""/> 
32639       <method name=
"SetCaretForeground" type=
"" overloaded=
"no"> 
32640         <autodoc>SetCaretForeground(Colour fore)
</autodoc> 
32642           <param name=
"fore" type=
"Colour" default=
""/> 
32645       <method name=
"CmdKeyAssign" type=
"" overloaded=
"no"> 
32646         <autodoc>CmdKeyAssign(int key, int modifiers, int cmd)
</autodoc> 
32648           <param name=
"key" type=
"int" default=
""/> 
32649           <param name=
"modifiers" type=
"int" default=
""/> 
32650           <param name=
"cmd" type=
"int" default=
""/> 
32653       <method name=
"CmdKeyClear" type=
"" overloaded=
"no"> 
32654         <autodoc>CmdKeyClear(int key, int modifiers)
</autodoc> 
32656           <param name=
"key" type=
"int" default=
""/> 
32657           <param name=
"modifiers" type=
"int" default=
""/> 
32660       <method name=
"CmdKeyClearAll" type=
"" overloaded=
"no"> 
32661         <autodoc>CmdKeyClearAll()
</autodoc> 
32663       <method name=
"SetStyleBytes" type=
"" overloaded=
"no"> 
32664         <autodoc>SetStyleBytes(int length, char styleBytes)
</autodoc> 
32666           <param name=
"length" type=
"int" default=
""/> 
32667           <param name=
"styleBytes" type=
"char" default=
""/> 
32670       <method name=
"StyleSetVisible" type=
"" overloaded=
"no"> 
32671         <autodoc>StyleSetVisible(int style, bool visible)
</autodoc> 
32673           <param name=
"style" type=
"int" default=
""/> 
32674           <param name=
"visible" type=
"bool" default=
""/> 
32677       <method name=
"GetCaretPeriod" type=
"int" overloaded=
"no"> 
32678         <autodoc>GetCaretPeriod() -
> int
</autodoc> 
32680       <method name=
"SetCaretPeriod" type=
"" overloaded=
"no"> 
32681         <autodoc>SetCaretPeriod(int periodMilliseconds)
</autodoc> 
32683           <param name=
"periodMilliseconds" type=
"int" default=
""/> 
32686       <method name=
"SetWordChars" type=
"" overloaded=
"no"> 
32687         <autodoc>SetWordChars(String characters)
</autodoc> 
32689           <param name=
"characters" type=
"String" default=
""/> 
32692       <method name=
"BeginUndoAction" type=
"" overloaded=
"no"> 
32693         <autodoc>BeginUndoAction()
</autodoc> 
32695       <method name=
"EndUndoAction" type=
"" overloaded=
"no"> 
32696         <autodoc>EndUndoAction()
</autodoc> 
32698       <method name=
"IndicatorSetStyle" type=
"" overloaded=
"no"> 
32699         <autodoc>IndicatorSetStyle(int indic, int style)
</autodoc> 
32701           <param name=
"indic" type=
"int" default=
""/> 
32702           <param name=
"style" type=
"int" default=
""/> 
32705       <method name=
"IndicatorGetStyle" type=
"int" overloaded=
"no"> 
32706         <autodoc>IndicatorGetStyle(int indic) -
> int
</autodoc> 
32708           <param name=
"indic" type=
"int" default=
""/> 
32711       <method name=
"IndicatorSetForeground" type=
"" overloaded=
"no"> 
32712         <autodoc>IndicatorSetForeground(int indic, Colour fore)
</autodoc> 
32714           <param name=
"indic" type=
"int" default=
""/> 
32715           <param name=
"fore" type=
"Colour" default=
""/> 
32718       <method name=
"IndicatorGetForeground" type=
"Colour" overloaded=
"no"> 
32719         <autodoc>IndicatorGetForeground(int indic) -
> Colour
</autodoc> 
32721           <param name=
"indic" type=
"int" default=
""/> 
32724       <method name=
"SetWhitespaceForeground" type=
"" overloaded=
"no"> 
32725         <autodoc>SetWhitespaceForeground(bool useSetting, Colour fore)
</autodoc> 
32727           <param name=
"useSetting" type=
"bool" default=
""/> 
32728           <param name=
"fore" type=
"Colour" default=
""/> 
32731       <method name=
"SetWhitespaceBackground" type=
"" overloaded=
"no"> 
32732         <autodoc>SetWhitespaceBackground(bool useSetting, Colour back)
</autodoc> 
32734           <param name=
"useSetting" type=
"bool" default=
""/> 
32735           <param name=
"back" type=
"Colour" default=
""/> 
32738       <method name=
"SetStyleBits" type=
"" overloaded=
"no"> 
32739         <autodoc>SetStyleBits(int bits)
</autodoc> 
32741           <param name=
"bits" type=
"int" default=
""/> 
32744       <method name=
"GetStyleBits" type=
"int" overloaded=
"no"> 
32745         <autodoc>GetStyleBits() -
> int
</autodoc> 
32747       <method name=
"SetLineState" type=
"" overloaded=
"no"> 
32748         <autodoc>SetLineState(int line, int state)
</autodoc> 
32750           <param name=
"line" type=
"int" default=
""/> 
32751           <param name=
"state" type=
"int" default=
""/> 
32754       <method name=
"GetLineState" type=
"int" overloaded=
"no"> 
32755         <autodoc>GetLineState(int line) -
> int
</autodoc> 
32757           <param name=
"line" type=
"int" default=
""/> 
32760       <method name=
"GetMaxLineState" type=
"int" overloaded=
"no"> 
32761         <autodoc>GetMaxLineState() -
> int
</autodoc> 
32763       <method name=
"GetCaretLineVisible" type=
"bool" overloaded=
"no"> 
32764         <autodoc>GetCaretLineVisible() -
> bool
</autodoc> 
32766       <method name=
"SetCaretLineVisible" type=
"" overloaded=
"no"> 
32767         <autodoc>SetCaretLineVisible(bool show)
</autodoc> 
32769           <param name=
"show" type=
"bool" default=
""/> 
32772       <method name=
"GetCaretLineBack" type=
"Colour" overloaded=
"no"> 
32773         <autodoc>GetCaretLineBack() -
> Colour
</autodoc> 
32775       <method name=
"SetCaretLineBack" type=
"" overloaded=
"no"> 
32776         <autodoc>SetCaretLineBack(Colour back)
</autodoc> 
32778           <param name=
"back" type=
"Colour" default=
""/> 
32781       <method name=
"StyleSetChangeable" type=
"" overloaded=
"no"> 
32782         <autodoc>StyleSetChangeable(int style, bool changeable)
</autodoc> 
32784           <param name=
"style" type=
"int" default=
""/> 
32785           <param name=
"changeable" type=
"bool" default=
""/> 
32788       <method name=
"AutoCompShow" type=
"" overloaded=
"no"> 
32789         <autodoc>AutoCompShow(int lenEntered, String itemList)
</autodoc> 
32791           <param name=
"lenEntered" type=
"int" default=
""/> 
32792           <param name=
"itemList" type=
"String" default=
""/> 
32795       <method name=
"AutoCompCancel" type=
"" overloaded=
"no"> 
32796         <autodoc>AutoCompCancel()
</autodoc> 
32798       <method name=
"AutoCompActive" type=
"bool" overloaded=
"no"> 
32799         <autodoc>AutoCompActive() -
> bool
</autodoc> 
32801       <method name=
"AutoCompPosStart" type=
"int" overloaded=
"no"> 
32802         <autodoc>AutoCompPosStart() -
> int
</autodoc> 
32804       <method name=
"AutoCompComplete" type=
"" overloaded=
"no"> 
32805         <autodoc>AutoCompComplete()
</autodoc> 
32807       <method name=
"AutoCompStops" type=
"" overloaded=
"no"> 
32808         <autodoc>AutoCompStops(String characterSet)
</autodoc> 
32810           <param name=
"characterSet" type=
"String" default=
""/> 
32813       <method name=
"AutoCompSetSeparator" type=
"" overloaded=
"no"> 
32814         <autodoc>AutoCompSetSeparator(int separatorCharacter)
</autodoc> 
32816           <param name=
"separatorCharacter" type=
"int" default=
""/> 
32819       <method name=
"AutoCompGetSeparator" type=
"int" overloaded=
"no"> 
32820         <autodoc>AutoCompGetSeparator() -
> int
</autodoc> 
32822       <method name=
"AutoCompSelect" type=
"" overloaded=
"no"> 
32823         <autodoc>AutoCompSelect(String text)
</autodoc> 
32825           <param name=
"text" type=
"String" default=
""/> 
32828       <method name=
"AutoCompSetCancelAtStart" type=
"" overloaded=
"no"> 
32829         <autodoc>AutoCompSetCancelAtStart(bool cancel)
</autodoc> 
32831           <param name=
"cancel" type=
"bool" default=
""/> 
32834       <method name=
"AutoCompGetCancelAtStart" type=
"bool" overloaded=
"no"> 
32835         <autodoc>AutoCompGetCancelAtStart() -
> bool
</autodoc> 
32837       <method name=
"AutoCompSetFillUps" type=
"" overloaded=
"no"> 
32838         <autodoc>AutoCompSetFillUps(String characterSet)
</autodoc> 
32840           <param name=
"characterSet" type=
"String" default=
""/> 
32843       <method name=
"AutoCompSetChooseSingle" type=
"" overloaded=
"no"> 
32844         <autodoc>AutoCompSetChooseSingle(bool chooseSingle)
</autodoc> 
32846           <param name=
"chooseSingle" type=
"bool" default=
""/> 
32849       <method name=
"AutoCompGetChooseSingle" type=
"bool" overloaded=
"no"> 
32850         <autodoc>AutoCompGetChooseSingle() -
> bool
</autodoc> 
32852       <method name=
"AutoCompSetIgnoreCase" type=
"" overloaded=
"no"> 
32853         <autodoc>AutoCompSetIgnoreCase(bool ignoreCase)
</autodoc> 
32855           <param name=
"ignoreCase" type=
"bool" default=
""/> 
32858       <method name=
"AutoCompGetIgnoreCase" type=
"bool" overloaded=
"no"> 
32859         <autodoc>AutoCompGetIgnoreCase() -
> bool
</autodoc> 
32861       <method name=
"UserListShow" type=
"" overloaded=
"no"> 
32862         <autodoc>UserListShow(int listType, String itemList)
</autodoc> 
32864           <param name=
"listType" type=
"int" default=
""/> 
32865           <param name=
"itemList" type=
"String" default=
""/> 
32868       <method name=
"AutoCompSetAutoHide" type=
"" overloaded=
"no"> 
32869         <autodoc>AutoCompSetAutoHide(bool autoHide)
</autodoc> 
32871           <param name=
"autoHide" type=
"bool" default=
""/> 
32874       <method name=
"AutoCompGetAutoHide" type=
"bool" overloaded=
"no"> 
32875         <autodoc>AutoCompGetAutoHide() -
> bool
</autodoc> 
32877       <method name=
"AutoCompSetDropRestOfWord" type=
"" overloaded=
"no"> 
32878         <autodoc>AutoCompSetDropRestOfWord(bool dropRestOfWord)
</autodoc> 
32880           <param name=
"dropRestOfWord" type=
"bool" default=
""/> 
32883       <method name=
"AutoCompGetDropRestOfWord" type=
"bool" overloaded=
"no"> 
32884         <autodoc>AutoCompGetDropRestOfWord() -
> bool
</autodoc> 
32886       <method name=
"RegisterImage" type=
"" overloaded=
"no"> 
32887         <autodoc>RegisterImage(int type, Bitmap bmp)
</autodoc> 
32889           <param name=
"type" type=
"int" default=
""/> 
32890           <param name=
"bmp" type=
"Bitmap" default=
""/> 
32893       <method name=
"ClearRegisteredImages" type=
"" overloaded=
"no"> 
32894         <autodoc>ClearRegisteredImages()
</autodoc> 
32896       <method name=
"AutoCompGetTypeSeparator" type=
"int" overloaded=
"no"> 
32897         <autodoc>AutoCompGetTypeSeparator() -
> int
</autodoc> 
32899       <method name=
"AutoCompSetTypeSeparator" type=
"" overloaded=
"no"> 
32900         <autodoc>AutoCompSetTypeSeparator(int separatorCharacter)
</autodoc> 
32902           <param name=
"separatorCharacter" type=
"int" default=
""/> 
32905       <method name=
"SetIndent" type=
"" overloaded=
"no"> 
32906         <autodoc>SetIndent(int indentSize)
</autodoc> 
32908           <param name=
"indentSize" type=
"int" default=
""/> 
32911       <method name=
"GetIndent" type=
"int" overloaded=
"no"> 
32912         <autodoc>GetIndent() -
> int
</autodoc> 
32914       <method name=
"SetUseTabs" type=
"" overloaded=
"no"> 
32915         <autodoc>SetUseTabs(bool useTabs)
</autodoc> 
32917           <param name=
"useTabs" type=
"bool" default=
""/> 
32920       <method name=
"GetUseTabs" type=
"bool" overloaded=
"no"> 
32921         <autodoc>GetUseTabs() -
> bool
</autodoc> 
32923       <method name=
"SetLineIndentation" type=
"" overloaded=
"no"> 
32924         <autodoc>SetLineIndentation(int line, int indentSize)
</autodoc> 
32926           <param name=
"line" type=
"int" default=
""/> 
32927           <param name=
"indentSize" type=
"int" default=
""/> 
32930       <method name=
"GetLineIndentation" type=
"int" overloaded=
"no"> 
32931         <autodoc>GetLineIndentation(int line) -
> int
</autodoc> 
32933           <param name=
"line" type=
"int" default=
""/> 
32936       <method name=
"GetLineIndentPosition" type=
"int" overloaded=
"no"> 
32937         <autodoc>GetLineIndentPosition(int line) -
> int
</autodoc> 
32939           <param name=
"line" type=
"int" default=
""/> 
32942       <method name=
"GetColumn" type=
"int" overloaded=
"no"> 
32943         <autodoc>GetColumn(int pos) -
> int
</autodoc> 
32945           <param name=
"pos" type=
"int" default=
""/> 
32948       <method name=
"SetUseHorizontalScrollBar" type=
"" overloaded=
"no"> 
32949         <autodoc>SetUseHorizontalScrollBar(bool show)
</autodoc> 
32951           <param name=
"show" type=
"bool" default=
""/> 
32954       <method name=
"GetUseHorizontalScrollBar" type=
"bool" overloaded=
"no"> 
32955         <autodoc>GetUseHorizontalScrollBar() -
> bool
</autodoc> 
32957       <method name=
"SetIndentationGuides" type=
"" overloaded=
"no"> 
32958         <autodoc>SetIndentationGuides(bool show)
</autodoc> 
32960           <param name=
"show" type=
"bool" default=
""/> 
32963       <method name=
"GetIndentationGuides" type=
"bool" overloaded=
"no"> 
32964         <autodoc>GetIndentationGuides() -
> bool
</autodoc> 
32966       <method name=
"SetHighlightGuide" type=
"" overloaded=
"no"> 
32967         <autodoc>SetHighlightGuide(int column)
</autodoc> 
32969           <param name=
"column" type=
"int" default=
""/> 
32972       <method name=
"GetHighlightGuide" type=
"int" overloaded=
"no"> 
32973         <autodoc>GetHighlightGuide() -
> int
</autodoc> 
32975       <method name=
"GetLineEndPosition" type=
"int" overloaded=
"no"> 
32976         <autodoc>GetLineEndPosition(int line) -
> int
</autodoc> 
32978           <param name=
"line" type=
"int" default=
""/> 
32981       <method name=
"GetCodePage" type=
"int" overloaded=
"no"> 
32982         <autodoc>GetCodePage() -
> int
</autodoc> 
32984       <method name=
"GetCaretForeground" type=
"Colour" overloaded=
"no"> 
32985         <autodoc>GetCaretForeground() -
> Colour
</autodoc> 
32987       <method name=
"GetReadOnly" type=
"bool" overloaded=
"no"> 
32988         <autodoc>GetReadOnly() -
> bool
</autodoc> 
32990       <method name=
"SetCurrentPos" type=
"" overloaded=
"no"> 
32991         <autodoc>SetCurrentPos(int pos)
</autodoc> 
32993           <param name=
"pos" type=
"int" default=
""/> 
32996       <method name=
"SetSelectionStart" type=
"" overloaded=
"no"> 
32997         <autodoc>SetSelectionStart(int pos)
</autodoc> 
32999           <param name=
"pos" type=
"int" default=
""/> 
33002       <method name=
"GetSelectionStart" type=
"int" overloaded=
"no"> 
33003         <autodoc>GetSelectionStart() -
> int
</autodoc> 
33005       <method name=
"SetSelectionEnd" type=
"" overloaded=
"no"> 
33006         <autodoc>SetSelectionEnd(int pos)
</autodoc> 
33008           <param name=
"pos" type=
"int" default=
""/> 
33011       <method name=
"GetSelectionEnd" type=
"int" overloaded=
"no"> 
33012         <autodoc>GetSelectionEnd() -
> int
</autodoc> 
33014       <method name=
"SetPrintMagnification" type=
"" overloaded=
"no"> 
33015         <autodoc>SetPrintMagnification(int magnification)
</autodoc> 
33017           <param name=
"magnification" type=
"int" default=
""/> 
33020       <method name=
"GetPrintMagnification" type=
"int" overloaded=
"no"> 
33021         <autodoc>GetPrintMagnification() -
> int
</autodoc> 
33023       <method name=
"SetPrintColourMode" type=
"" overloaded=
"no"> 
33024         <autodoc>SetPrintColourMode(int mode)
</autodoc> 
33026           <param name=
"mode" type=
"int" default=
""/> 
33029       <method name=
"GetPrintColourMode" type=
"int" overloaded=
"no"> 
33030         <autodoc>GetPrintColourMode() -
> int
</autodoc> 
33032       <method name=
"FindText" type=
"int" overloaded=
"no"> 
33033         <autodoc>FindText(int minPos, int maxPos, String text, int flags=
0) -
> int
</autodoc> 
33035           <param name=
"minPos" type=
"int" default=
""/> 
33036           <param name=
"maxPos" type=
"int" default=
""/> 
33037           <param name=
"text" type=
"String" default=
""/> 
33038           <param name=
"flags" type=
"int" default=
"0"/> 
33041       <method name=
"FormatRange" type=
"int" overloaded=
"no"> 
33042         <autodoc>FormatRange(bool doDraw, int startPos, int endPos, DC draw, DC target, 
 
33043     Rect renderRect, Rect pageRect) -
> int
</autodoc> 
33045           <param name=
"doDraw" type=
"bool" default=
""/> 
33046           <param name=
"startPos" type=
"int" default=
""/> 
33047           <param name=
"endPos" type=
"int" default=
""/> 
33048           <param name=
"draw" type=
"DC" default=
""/> 
33049           <param name=
"target" type=
"DC" default=
""/> 
33050           <param name=
"renderRect" type=
"Rect" default=
""/> 
33051           <param name=
"pageRect" type=
"Rect" default=
""/> 
33054       <method name=
"GetFirstVisibleLine" type=
"int" overloaded=
"no"> 
33055         <autodoc>GetFirstVisibleLine() -
> int
</autodoc> 
33057       <method name=
"GetLine" type=
"String" overloaded=
"no"> 
33058         <autodoc>GetLine(int line) -
> String
</autodoc> 
33060           <param name=
"line" type=
"int" default=
""/> 
33063       <method name=
"GetLineCount" type=
"int" overloaded=
"no"> 
33064         <autodoc>GetLineCount() -
> int
</autodoc> 
33066       <method name=
"SetMarginLeft" type=
"" overloaded=
"no"> 
33067         <autodoc>SetMarginLeft(int pixelWidth)
</autodoc> 
33069           <param name=
"pixelWidth" type=
"int" default=
""/> 
33072       <method name=
"GetMarginLeft" type=
"int" overloaded=
"no"> 
33073         <autodoc>GetMarginLeft() -
> int
</autodoc> 
33075       <method name=
"SetMarginRight" type=
"" overloaded=
"no"> 
33076         <autodoc>SetMarginRight(int pixelWidth)
</autodoc> 
33078           <param name=
"pixelWidth" type=
"int" default=
""/> 
33081       <method name=
"GetMarginRight" type=
"int" overloaded=
"no"> 
33082         <autodoc>GetMarginRight() -
> int
</autodoc> 
33084       <method name=
"GetModify" type=
"bool" overloaded=
"no"> 
33085         <autodoc>GetModify() -
> bool
</autodoc> 
33087       <method name=
"SetSelection" type=
"" overloaded=
"no"> 
33088         <autodoc>SetSelection(int start, int end)
</autodoc> 
33090           <param name=
"start" type=
"int" default=
""/> 
33091           <param name=
"end" type=
"int" default=
""/> 
33094       <method name=
"GetSelectedText" type=
"String" overloaded=
"no"> 
33095         <autodoc>GetSelectedText() -
> String
</autodoc> 
33097       <method name=
"GetTextRange" type=
"String" overloaded=
"no"> 
33098         <autodoc>GetTextRange(int startPos, int endPos) -
> String
</autodoc> 
33100           <param name=
"startPos" type=
"int" default=
""/> 
33101           <param name=
"endPos" type=
"int" default=
""/> 
33104       <method name=
"HideSelection" type=
"" overloaded=
"no"> 
33105         <autodoc>HideSelection(bool normal)
</autodoc> 
33107           <param name=
"normal" type=
"bool" default=
""/> 
33110       <method name=
"LineFromPosition" type=
"int" overloaded=
"no"> 
33111         <autodoc>LineFromPosition(int pos) -
> int
</autodoc> 
33113           <param name=
"pos" type=
"int" default=
""/> 
33116       <method name=
"PositionFromLine" type=
"int" overloaded=
"no"> 
33117         <autodoc>PositionFromLine(int line) -
> int
</autodoc> 
33119           <param name=
"line" type=
"int" default=
""/> 
33122       <method name=
"LineScroll" type=
"" overloaded=
"no"> 
33123         <autodoc>LineScroll(int columns, int lines)
</autodoc> 
33125           <param name=
"columns" type=
"int" default=
""/> 
33126           <param name=
"lines" type=
"int" default=
""/> 
33129       <method name=
"EnsureCaretVisible" type=
"" overloaded=
"no"> 
33130         <autodoc>EnsureCaretVisible()
</autodoc> 
33132       <method name=
"ReplaceSelection" type=
"" overloaded=
"no"> 
33133         <autodoc>ReplaceSelection(String text)
</autodoc> 
33135           <param name=
"text" type=
"String" default=
""/> 
33138       <method name=
"SetReadOnly" type=
"" overloaded=
"no"> 
33139         <autodoc>SetReadOnly(bool readOnly)
</autodoc> 
33141           <param name=
"readOnly" type=
"bool" default=
""/> 
33144       <method name=
"CanPaste" type=
"bool" overloaded=
"no"> 
33145         <autodoc>CanPaste() -
> bool
</autodoc> 
33147       <method name=
"CanUndo" type=
"bool" overloaded=
"no"> 
33148         <autodoc>CanUndo() -
> bool
</autodoc> 
33150       <method name=
"EmptyUndoBuffer" type=
"" overloaded=
"no"> 
33151         <autodoc>EmptyUndoBuffer()
</autodoc> 
33153       <method name=
"Undo" type=
"" overloaded=
"no"> 
33154         <autodoc>Undo()
</autodoc> 
33156       <method name=
"Cut" type=
"" overloaded=
"no"> 
33157         <autodoc>Cut()
</autodoc> 
33159       <method name=
"Copy" type=
"" overloaded=
"no"> 
33160         <autodoc>Copy()
</autodoc> 
33162       <method name=
"Paste" type=
"" overloaded=
"no"> 
33163         <autodoc>Paste()
</autodoc> 
33165       <method name=
"Clear" type=
"" overloaded=
"no"> 
33166         <autodoc>Clear()
</autodoc> 
33168       <method name=
"SetText" type=
"" overloaded=
"no"> 
33169         <autodoc>SetText(String text)
</autodoc> 
33171           <param name=
"text" type=
"String" default=
""/> 
33174       <method name=
"GetText" type=
"String" overloaded=
"no"> 
33175         <autodoc>GetText() -
> String
</autodoc> 
33177       <method name=
"GetTextLength" type=
"int" overloaded=
"no"> 
33178         <autodoc>GetTextLength() -
> int
</autodoc> 
33180       <method name=
"SetOvertype" type=
"" overloaded=
"no"> 
33181         <autodoc>SetOvertype(bool overtype)
</autodoc> 
33183           <param name=
"overtype" type=
"bool" default=
""/> 
33186       <method name=
"GetOvertype" type=
"bool" overloaded=
"no"> 
33187         <autodoc>GetOvertype() -
> bool
</autodoc> 
33189       <method name=
"SetCaretWidth" type=
"" overloaded=
"no"> 
33190         <autodoc>SetCaretWidth(int pixelWidth)
</autodoc> 
33192           <param name=
"pixelWidth" type=
"int" default=
""/> 
33195       <method name=
"GetCaretWidth" type=
"int" overloaded=
"no"> 
33196         <autodoc>GetCaretWidth() -
> int
</autodoc> 
33198       <method name=
"SetTargetStart" type=
"" overloaded=
"no"> 
33199         <autodoc>SetTargetStart(int pos)
</autodoc> 
33201           <param name=
"pos" type=
"int" default=
""/> 
33204       <method name=
"GetTargetStart" type=
"int" overloaded=
"no"> 
33205         <autodoc>GetTargetStart() -
> int
</autodoc> 
33207       <method name=
"SetTargetEnd" type=
"" overloaded=
"no"> 
33208         <autodoc>SetTargetEnd(int pos)
</autodoc> 
33210           <param name=
"pos" type=
"int" default=
""/> 
33213       <method name=
"GetTargetEnd" type=
"int" overloaded=
"no"> 
33214         <autodoc>GetTargetEnd() -
> int
</autodoc> 
33216       <method name=
"ReplaceTarget" type=
"int" overloaded=
"no"> 
33217         <autodoc>ReplaceTarget(String text) -
> int
</autodoc> 
33219           <param name=
"text" type=
"String" default=
""/> 
33222       <method name=
"ReplaceTargetRE" type=
"int" overloaded=
"no"> 
33223         <autodoc>ReplaceTargetRE(String text) -
> int
</autodoc> 
33225           <param name=
"text" type=
"String" default=
""/> 
33228       <method name=
"SearchInTarget" type=
"int" overloaded=
"no"> 
33229         <autodoc>SearchInTarget(String text) -
> int
</autodoc> 
33231           <param name=
"text" type=
"String" default=
""/> 
33234       <method name=
"SetSearchFlags" type=
"" overloaded=
"no"> 
33235         <autodoc>SetSearchFlags(int flags)
</autodoc> 
33237           <param name=
"flags" type=
"int" default=
""/> 
33240       <method name=
"GetSearchFlags" type=
"int" overloaded=
"no"> 
33241         <autodoc>GetSearchFlags() -
> int
</autodoc> 
33243       <method name=
"CallTipShow" type=
"" overloaded=
"no"> 
33244         <autodoc>CallTipShow(int pos, String definition)
</autodoc> 
33246           <param name=
"pos" type=
"int" default=
""/> 
33247           <param name=
"definition" type=
"String" default=
""/> 
33250       <method name=
"CallTipCancel" type=
"" overloaded=
"no"> 
33251         <autodoc>CallTipCancel()
</autodoc> 
33253       <method name=
"CallTipActive" type=
"bool" overloaded=
"no"> 
33254         <autodoc>CallTipActive() -
> bool
</autodoc> 
33256       <method name=
"CallTipPosAtStart" type=
"int" overloaded=
"no"> 
33257         <autodoc>CallTipPosAtStart() -
> int
</autodoc> 
33259       <method name=
"CallTipSetHighlight" type=
"" overloaded=
"no"> 
33260         <autodoc>CallTipSetHighlight(int start, int end)
</autodoc> 
33262           <param name=
"start" type=
"int" default=
""/> 
33263           <param name=
"end" type=
"int" default=
""/> 
33266       <method name=
"CallTipSetBackground" type=
"" overloaded=
"no"> 
33267         <autodoc>CallTipSetBackground(Colour back)
</autodoc> 
33269           <param name=
"back" type=
"Colour" default=
""/> 
33272       <method name=
"CallTipSetForeground" type=
"" overloaded=
"no"> 
33273         <autodoc>CallTipSetForeground(Colour fore)
</autodoc> 
33275           <param name=
"fore" type=
"Colour" default=
""/> 
33278       <method name=
"CallTipSetForegroundHighlight" type=
"" overloaded=
"no"> 
33279         <autodoc>CallTipSetForegroundHighlight(Colour fore)
</autodoc> 
33281           <param name=
"fore" type=
"Colour" default=
""/> 
33284       <method name=
"VisibleFromDocLine" type=
"int" overloaded=
"no"> 
33285         <autodoc>VisibleFromDocLine(int line) -
> int
</autodoc> 
33287           <param name=
"line" type=
"int" default=
""/> 
33290       <method name=
"DocLineFromVisible" type=
"int" overloaded=
"no"> 
33291         <autodoc>DocLineFromVisible(int lineDisplay) -
> int
</autodoc> 
33293           <param name=
"lineDisplay" type=
"int" default=
""/> 
33296       <method name=
"SetFoldLevel" type=
"" overloaded=
"no"> 
33297         <autodoc>SetFoldLevel(int line, int level)
</autodoc> 
33299           <param name=
"line" type=
"int" default=
""/> 
33300           <param name=
"level" type=
"int" default=
""/> 
33303       <method name=
"GetFoldLevel" type=
"int" overloaded=
"no"> 
33304         <autodoc>GetFoldLevel(int line) -
> int
</autodoc> 
33306           <param name=
"line" type=
"int" default=
""/> 
33309       <method name=
"GetLastChild" type=
"int" overloaded=
"no"> 
33310         <autodoc>GetLastChild(int line, int level) -
> int
</autodoc> 
33312           <param name=
"line" type=
"int" default=
""/> 
33313           <param name=
"level" type=
"int" default=
""/> 
33316       <method name=
"GetFoldParent" type=
"int" overloaded=
"no"> 
33317         <autodoc>GetFoldParent(int line) -
> int
</autodoc> 
33319           <param name=
"line" type=
"int" default=
""/> 
33322       <method name=
"ShowLines" type=
"" overloaded=
"no"> 
33323         <autodoc>ShowLines(int lineStart, int lineEnd)
</autodoc> 
33325           <param name=
"lineStart" type=
"int" default=
""/> 
33326           <param name=
"lineEnd" type=
"int" default=
""/> 
33329       <method name=
"HideLines" type=
"" overloaded=
"no"> 
33330         <autodoc>HideLines(int lineStart, int lineEnd)
</autodoc> 
33332           <param name=
"lineStart" type=
"int" default=
""/> 
33333           <param name=
"lineEnd" type=
"int" default=
""/> 
33336       <method name=
"GetLineVisible" type=
"bool" overloaded=
"no"> 
33337         <autodoc>GetLineVisible(int line) -
> bool
</autodoc> 
33339           <param name=
"line" type=
"int" default=
""/> 
33342       <method name=
"SetFoldExpanded" type=
"" overloaded=
"no"> 
33343         <autodoc>SetFoldExpanded(int line, bool expanded)
</autodoc> 
33345           <param name=
"line" type=
"int" default=
""/> 
33346           <param name=
"expanded" type=
"bool" default=
""/> 
33349       <method name=
"GetFoldExpanded" type=
"bool" overloaded=
"no"> 
33350         <autodoc>GetFoldExpanded(int line) -
> bool
</autodoc> 
33352           <param name=
"line" type=
"int" default=
""/> 
33355       <method name=
"ToggleFold" type=
"" overloaded=
"no"> 
33356         <autodoc>ToggleFold(int line)
</autodoc> 
33358           <param name=
"line" type=
"int" default=
""/> 
33361       <method name=
"EnsureVisible" type=
"" overloaded=
"no"> 
33362         <autodoc>EnsureVisible(int line)
</autodoc> 
33364           <param name=
"line" type=
"int" default=
""/> 
33367       <method name=
"SetFoldFlags" type=
"" overloaded=
"no"> 
33368         <autodoc>SetFoldFlags(int flags)
</autodoc> 
33370           <param name=
"flags" type=
"int" default=
""/> 
33373       <method name=
"EnsureVisibleEnforcePolicy" type=
"" overloaded=
"no"> 
33374         <autodoc>EnsureVisibleEnforcePolicy(int line)
</autodoc> 
33376           <param name=
"line" type=
"int" default=
""/> 
33379       <method name=
"SetTabIndents" type=
"" overloaded=
"no"> 
33380         <autodoc>SetTabIndents(bool tabIndents)
</autodoc> 
33382           <param name=
"tabIndents" type=
"bool" default=
""/> 
33385       <method name=
"GetTabIndents" type=
"bool" overloaded=
"no"> 
33386         <autodoc>GetTabIndents() -
> bool
</autodoc> 
33388       <method name=
"SetBackSpaceUnIndents" type=
"" overloaded=
"no"> 
33389         <autodoc>SetBackSpaceUnIndents(bool bsUnIndents)
</autodoc> 
33391           <param name=
"bsUnIndents" type=
"bool" default=
""/> 
33394       <method name=
"GetBackSpaceUnIndents" type=
"bool" overloaded=
"no"> 
33395         <autodoc>GetBackSpaceUnIndents() -
> bool
</autodoc> 
33397       <method name=
"SetMouseDwellTime" type=
"" overloaded=
"no"> 
33398         <autodoc>SetMouseDwellTime(int periodMilliseconds)
</autodoc> 
33400           <param name=
"periodMilliseconds" type=
"int" default=
""/> 
33403       <method name=
"GetMouseDwellTime" type=
"int" overloaded=
"no"> 
33404         <autodoc>GetMouseDwellTime() -
> int
</autodoc> 
33406       <method name=
"WordStartPosition" type=
"int" overloaded=
"no"> 
33407         <autodoc>WordStartPosition(int pos, bool onlyWordCharacters) -
> int
</autodoc> 
33409           <param name=
"pos" type=
"int" default=
""/> 
33410           <param name=
"onlyWordCharacters" type=
"bool" default=
""/> 
33413       <method name=
"WordEndPosition" type=
"int" overloaded=
"no"> 
33414         <autodoc>WordEndPosition(int pos, bool onlyWordCharacters) -
> int
</autodoc> 
33416           <param name=
"pos" type=
"int" default=
""/> 
33417           <param name=
"onlyWordCharacters" type=
"bool" default=
""/> 
33420       <method name=
"SetWrapMode" type=
"" overloaded=
"no"> 
33421         <autodoc>SetWrapMode(int mode)
</autodoc> 
33423           <param name=
"mode" type=
"int" default=
""/> 
33426       <method name=
"GetWrapMode" type=
"int" overloaded=
"no"> 
33427         <autodoc>GetWrapMode() -
> int
</autodoc> 
33429       <method name=
"SetLayoutCache" type=
"" overloaded=
"no"> 
33430         <autodoc>SetLayoutCache(int mode)
</autodoc> 
33432           <param name=
"mode" type=
"int" default=
""/> 
33435       <method name=
"GetLayoutCache" type=
"int" overloaded=
"no"> 
33436         <autodoc>GetLayoutCache() -
> int
</autodoc> 
33438       <method name=
"SetScrollWidth" type=
"" overloaded=
"no"> 
33439         <autodoc>SetScrollWidth(int pixelWidth)
</autodoc> 
33441           <param name=
"pixelWidth" type=
"int" default=
""/> 
33444       <method name=
"GetScrollWidth" type=
"int" overloaded=
"no"> 
33445         <autodoc>GetScrollWidth() -
> int
</autodoc> 
33447       <method name=
"TextWidth" type=
"int" overloaded=
"no"> 
33448         <autodoc>TextWidth(int style, String text) -
> int
</autodoc> 
33450           <param name=
"style" type=
"int" default=
""/> 
33451           <param name=
"text" type=
"String" default=
""/> 
33454       <method name=
"SetEndAtLastLine" type=
"" overloaded=
"no"> 
33455         <autodoc>SetEndAtLastLine(bool endAtLastLine)
</autodoc> 
33457           <param name=
"endAtLastLine" type=
"bool" default=
""/> 
33460       <method name=
"GetEndAtLastLine" type=
"int" overloaded=
"no"> 
33461         <autodoc>GetEndAtLastLine() -
> int
</autodoc> 
33463       <method name=
"TextHeight" type=
"int" overloaded=
"no"> 
33464         <autodoc>TextHeight(int line) -
> int
</autodoc> 
33466           <param name=
"line" type=
"int" default=
""/> 
33469       <method name=
"SetUseVerticalScrollBar" type=
"" overloaded=
"no"> 
33470         <autodoc>SetUseVerticalScrollBar(bool show)
</autodoc> 
33472           <param name=
"show" type=
"bool" default=
""/> 
33475       <method name=
"GetUseVerticalScrollBar" type=
"bool" overloaded=
"no"> 
33476         <autodoc>GetUseVerticalScrollBar() -
> bool
</autodoc> 
33478       <method name=
"AppendText" type=
"" overloaded=
"no"> 
33479         <autodoc>AppendText(int length, String text)
</autodoc> 
33481           <param name=
"length" type=
"int" default=
""/> 
33482           <param name=
"text" type=
"String" default=
""/> 
33485       <method name=
"GetTwoPhaseDraw" type=
"bool" overloaded=
"no"> 
33486         <autodoc>GetTwoPhaseDraw() -
> bool
</autodoc> 
33488       <method name=
"SetTwoPhaseDraw" type=
"" overloaded=
"no"> 
33489         <autodoc>SetTwoPhaseDraw(bool twoPhase)
</autodoc> 
33491           <param name=
"twoPhase" type=
"bool" default=
""/> 
33494       <method name=
"TargetFromSelection" type=
"" overloaded=
"no"> 
33495         <autodoc>TargetFromSelection()
</autodoc> 
33497       <method name=
"LinesJoin" type=
"" overloaded=
"no"> 
33498         <autodoc>LinesJoin()
</autodoc> 
33500       <method name=
"LinesSplit" type=
"" overloaded=
"no"> 
33501         <autodoc>LinesSplit(int pixelWidth)
</autodoc> 
33503           <param name=
"pixelWidth" type=
"int" default=
""/> 
33506       <method name=
"SetFoldMarginColour" type=
"" overloaded=
"no"> 
33507         <autodoc>SetFoldMarginColour(bool useSetting, Colour back)
</autodoc> 
33509           <param name=
"useSetting" type=
"bool" default=
""/> 
33510           <param name=
"back" type=
"Colour" default=
""/> 
33513       <method name=
"SetFoldMarginHiColour" type=
"" overloaded=
"no"> 
33514         <autodoc>SetFoldMarginHiColour(bool useSetting, Colour fore)
</autodoc> 
33516           <param name=
"useSetting" type=
"bool" default=
""/> 
33517           <param name=
"fore" type=
"Colour" default=
""/> 
33520       <method name=
"LineDuplicate" type=
"" overloaded=
"no"> 
33521         <autodoc>LineDuplicate()
</autodoc> 
33523       <method name=
"HomeDisplay" type=
"" overloaded=
"no"> 
33524         <autodoc>HomeDisplay()
</autodoc> 
33526       <method name=
"HomeDisplayExtend" type=
"" overloaded=
"no"> 
33527         <autodoc>HomeDisplayExtend()
</autodoc> 
33529       <method name=
"LineEndDisplay" type=
"" overloaded=
"no"> 
33530         <autodoc>LineEndDisplay()
</autodoc> 
33532       <method name=
"LineEndDisplayExtend" type=
"" overloaded=
"no"> 
33533         <autodoc>LineEndDisplayExtend()
</autodoc> 
33535       <method name=
"LineCopy" type=
"" overloaded=
"no"> 
33536         <autodoc>LineCopy()
</autodoc> 
33538       <method name=
"MoveCaretInsideView" type=
"" overloaded=
"no"> 
33539         <autodoc>MoveCaretInsideView()
</autodoc> 
33541       <method name=
"LineLength" type=
"int" overloaded=
"no"> 
33542         <autodoc>LineLength(int line) -
> int
</autodoc> 
33544           <param name=
"line" type=
"int" default=
""/> 
33547       <method name=
"BraceHighlight" type=
"" overloaded=
"no"> 
33548         <autodoc>BraceHighlight(int pos1, int pos2)
</autodoc> 
33550           <param name=
"pos1" type=
"int" default=
""/> 
33551           <param name=
"pos2" type=
"int" default=
""/> 
33554       <method name=
"BraceBadLight" type=
"" overloaded=
"no"> 
33555         <autodoc>BraceBadLight(int pos)
</autodoc> 
33557           <param name=
"pos" type=
"int" default=
""/> 
33560       <method name=
"BraceMatch" type=
"int" overloaded=
"no"> 
33561         <autodoc>BraceMatch(int pos) -
> int
</autodoc> 
33563           <param name=
"pos" type=
"int" default=
""/> 
33566       <method name=
"GetViewEOL" type=
"bool" overloaded=
"no"> 
33567         <autodoc>GetViewEOL() -
> bool
</autodoc> 
33569       <method name=
"SetViewEOL" type=
"" overloaded=
"no"> 
33570         <autodoc>SetViewEOL(bool visible)
</autodoc> 
33572           <param name=
"visible" type=
"bool" default=
""/> 
33575       <method name=
"GetDocPointer" type=
"" overloaded=
"no"> 
33576         <autodoc>GetDocPointer() -
> void
</autodoc> 
33578       <method name=
"SetDocPointer" type=
"" overloaded=
"no"> 
33579         <autodoc>SetDocPointer(void docPointer)
</autodoc> 
33581           <param name=
"docPointer" type=
"" default=
""/> 
33584       <method name=
"SetModEventMask" type=
"" overloaded=
"no"> 
33585         <autodoc>SetModEventMask(int mask)
</autodoc> 
33587           <param name=
"mask" type=
"int" default=
""/> 
33590       <method name=
"GetEdgeColumn" type=
"int" overloaded=
"no"> 
33591         <autodoc>GetEdgeColumn() -
> int
</autodoc> 
33593       <method name=
"SetEdgeColumn" type=
"" overloaded=
"no"> 
33594         <autodoc>SetEdgeColumn(int column)
</autodoc> 
33596           <param name=
"column" type=
"int" default=
""/> 
33599       <method name=
"GetEdgeMode" type=
"int" overloaded=
"no"> 
33600         <autodoc>GetEdgeMode() -
> int
</autodoc> 
33602       <method name=
"SetEdgeMode" type=
"" overloaded=
"no"> 
33603         <autodoc>SetEdgeMode(int mode)
</autodoc> 
33605           <param name=
"mode" type=
"int" default=
""/> 
33608       <method name=
"GetEdgeColour" type=
"Colour" overloaded=
"no"> 
33609         <autodoc>GetEdgeColour() -
> Colour
</autodoc> 
33611       <method name=
"SetEdgeColour" type=
"" overloaded=
"no"> 
33612         <autodoc>SetEdgeColour(Colour edgeColour)
</autodoc> 
33614           <param name=
"edgeColour" type=
"Colour" default=
""/> 
33617       <method name=
"SearchAnchor" type=
"" overloaded=
"no"> 
33618         <autodoc>SearchAnchor()
</autodoc> 
33620       <method name=
"SearchNext" type=
"int" overloaded=
"no"> 
33621         <autodoc>SearchNext(int flags, String text) -
> int
</autodoc> 
33623           <param name=
"flags" type=
"int" default=
""/> 
33624           <param name=
"text" type=
"String" default=
""/> 
33627       <method name=
"SearchPrev" type=
"int" overloaded=
"no"> 
33628         <autodoc>SearchPrev(int flags, String text) -
> int
</autodoc> 
33630           <param name=
"flags" type=
"int" default=
""/> 
33631           <param name=
"text" type=
"String" default=
""/> 
33634       <method name=
"LinesOnScreen" type=
"int" overloaded=
"no"> 
33635         <autodoc>LinesOnScreen() -
> int
</autodoc> 
33637       <method name=
"UsePopUp" type=
"" overloaded=
"no"> 
33638         <autodoc>UsePopUp(bool allowPopUp)
</autodoc> 
33640           <param name=
"allowPopUp" type=
"bool" default=
""/> 
33643       <method name=
"SelectionIsRectangle" type=
"bool" overloaded=
"no"> 
33644         <autodoc>SelectionIsRectangle() -
> bool
</autodoc> 
33646       <method name=
"SetZoom" type=
"" overloaded=
"no"> 
33647         <autodoc>SetZoom(int zoom)
</autodoc> 
33649           <param name=
"zoom" type=
"int" default=
""/> 
33652       <method name=
"GetZoom" type=
"int" overloaded=
"no"> 
33653         <autodoc>GetZoom() -
> int
</autodoc> 
33655       <method name=
"CreateDocument" type=
"" overloaded=
"no"> 
33656         <autodoc>CreateDocument() -
> void
</autodoc> 
33658       <method name=
"AddRefDocument" type=
"" overloaded=
"no"> 
33659         <autodoc>AddRefDocument(void docPointer)
</autodoc> 
33661           <param name=
"docPointer" type=
"" default=
""/> 
33664       <method name=
"ReleaseDocument" type=
"" overloaded=
"no"> 
33665         <autodoc>ReleaseDocument(void docPointer)
</autodoc> 
33667           <param name=
"docPointer" type=
"" default=
""/> 
33670       <method name=
"GetModEventMask" type=
"int" overloaded=
"no"> 
33671         <autodoc>GetModEventMask() -
> int
</autodoc> 
33673       <method name=
"SetSTCFocus" type=
"" overloaded=
"no"> 
33674         <autodoc>SetSTCFocus(bool focus)
</autodoc> 
33676           <param name=
"focus" type=
"bool" default=
""/> 
33679       <method name=
"GetSTCFocus" type=
"bool" overloaded=
"no"> 
33680         <autodoc>GetSTCFocus() -
> bool
</autodoc> 
33682       <method name=
"SetStatus" type=
"" overloaded=
"no"> 
33683         <autodoc>SetStatus(int statusCode)
</autodoc> 
33685           <param name=
"statusCode" type=
"int" default=
""/> 
33688       <method name=
"GetStatus" type=
"int" overloaded=
"no"> 
33689         <autodoc>GetStatus() -
> int
</autodoc> 
33691       <method name=
"SetMouseDownCaptures" type=
"" overloaded=
"no"> 
33692         <autodoc>SetMouseDownCaptures(bool captures)
</autodoc> 
33694           <param name=
"captures" type=
"bool" default=
""/> 
33697       <method name=
"GetMouseDownCaptures" type=
"bool" overloaded=
"no"> 
33698         <autodoc>GetMouseDownCaptures() -
> bool
</autodoc> 
33700       <method name=
"SetSTCCursor" type=
"" overloaded=
"no"> 
33701         <autodoc>SetSTCCursor(int cursorType)
</autodoc> 
33703           <param name=
"cursorType" type=
"int" default=
""/> 
33706       <method name=
"GetSTCCursor" type=
"int" overloaded=
"no"> 
33707         <autodoc>GetSTCCursor() -
> int
</autodoc> 
33709       <method name=
"SetControlCharSymbol" type=
"" overloaded=
"no"> 
33710         <autodoc>SetControlCharSymbol(int symbol)
</autodoc> 
33712           <param name=
"symbol" type=
"int" default=
""/> 
33715       <method name=
"GetControlCharSymbol" type=
"int" overloaded=
"no"> 
33716         <autodoc>GetControlCharSymbol() -
> int
</autodoc> 
33718       <method name=
"WordPartLeft" type=
"" overloaded=
"no"> 
33719         <autodoc>WordPartLeft()
</autodoc> 
33721       <method name=
"WordPartLeftExtend" type=
"" overloaded=
"no"> 
33722         <autodoc>WordPartLeftExtend()
</autodoc> 
33724       <method name=
"WordPartRight" type=
"" overloaded=
"no"> 
33725         <autodoc>WordPartRight()
</autodoc> 
33727       <method name=
"WordPartRightExtend" type=
"" overloaded=
"no"> 
33728         <autodoc>WordPartRightExtend()
</autodoc> 
33730       <method name=
"SetVisiblePolicy" type=
"" overloaded=
"no"> 
33731         <autodoc>SetVisiblePolicy(int visiblePolicy, int visibleSlop)
</autodoc> 
33733           <param name=
"visiblePolicy" type=
"int" default=
""/> 
33734           <param name=
"visibleSlop" type=
"int" default=
""/> 
33737       <method name=
"DelLineLeft" type=
"" overloaded=
"no"> 
33738         <autodoc>DelLineLeft()
</autodoc> 
33740       <method name=
"DelLineRight" type=
"" overloaded=
"no"> 
33741         <autodoc>DelLineRight()
</autodoc> 
33743       <method name=
"SetXOffset" type=
"" overloaded=
"no"> 
33744         <autodoc>SetXOffset(int newOffset)
</autodoc> 
33746           <param name=
"newOffset" type=
"int" default=
""/> 
33749       <method name=
"GetXOffset" type=
"int" overloaded=
"no"> 
33750         <autodoc>GetXOffset() -
> int
</autodoc> 
33752       <method name=
"ChooseCaretX" type=
"" overloaded=
"no"> 
33753         <autodoc>ChooseCaretX()
</autodoc> 
33755       <method name=
"SetXCaretPolicy" type=
"" overloaded=
"no"> 
33756         <autodoc>SetXCaretPolicy(int caretPolicy, int caretSlop)
</autodoc> 
33758           <param name=
"caretPolicy" type=
"int" default=
""/> 
33759           <param name=
"caretSlop" type=
"int" default=
""/> 
33762       <method name=
"SetYCaretPolicy" type=
"" overloaded=
"no"> 
33763         <autodoc>SetYCaretPolicy(int caretPolicy, int caretSlop)
</autodoc> 
33765           <param name=
"caretPolicy" type=
"int" default=
""/> 
33766           <param name=
"caretSlop" type=
"int" default=
""/> 
33769       <method name=
"SetPrintWrapMode" type=
"" overloaded=
"no"> 
33770         <autodoc>SetPrintWrapMode(int mode)
</autodoc> 
33772           <param name=
"mode" type=
"int" default=
""/> 
33775       <method name=
"GetPrintWrapMode" type=
"int" overloaded=
"no"> 
33776         <autodoc>GetPrintWrapMode() -
> int
</autodoc> 
33778       <method name=
"SetHotspotActiveForeground" type=
"" overloaded=
"no"> 
33779         <autodoc>SetHotspotActiveForeground(bool useSetting, Colour fore)
</autodoc> 
33781           <param name=
"useSetting" type=
"bool" default=
""/> 
33782           <param name=
"fore" type=
"Colour" default=
""/> 
33785       <method name=
"SetHotspotActiveBackground" type=
"" overloaded=
"no"> 
33786         <autodoc>SetHotspotActiveBackground(bool useSetting, Colour back)
</autodoc> 
33788           <param name=
"useSetting" type=
"bool" default=
""/> 
33789           <param name=
"back" type=
"Colour" default=
""/> 
33792       <method name=
"SetHotspotActiveUnderline" type=
"" overloaded=
"no"> 
33793         <autodoc>SetHotspotActiveUnderline(bool underline)
</autodoc> 
33795           <param name=
"underline" type=
"bool" default=
""/> 
33798       <method name=
"PositionBefore" type=
"int" overloaded=
"no"> 
33799         <autodoc>PositionBefore(int pos) -
> int
</autodoc> 
33801           <param name=
"pos" type=
"int" default=
""/> 
33804       <method name=
"PositionAfter" type=
"int" overloaded=
"no"> 
33805         <autodoc>PositionAfter(int pos) -
> int
</autodoc> 
33807           <param name=
"pos" type=
"int" default=
""/> 
33810       <method name=
"CopyRange" type=
"" overloaded=
"no"> 
33811         <autodoc>CopyRange(int start, int end)
</autodoc> 
33813           <param name=
"start" type=
"int" default=
""/> 
33814           <param name=
"end" type=
"int" default=
""/> 
33817       <method name=
"CopyText" type=
"" overloaded=
"no"> 
33818         <autodoc>CopyText(int length, String text)
</autodoc> 
33820           <param name=
"length" type=
"int" default=
""/> 
33821           <param name=
"text" type=
"String" default=
""/> 
33824       <method name=
"StartRecord" type=
"" overloaded=
"no"> 
33825         <autodoc>StartRecord()
</autodoc> 
33827       <method name=
"StopRecord" type=
"" overloaded=
"no"> 
33828         <autodoc>StopRecord()
</autodoc> 
33830       <method name=
"SetLexer" type=
"" overloaded=
"no"> 
33831         <autodoc>SetLexer(int lexer)
</autodoc> 
33833           <param name=
"lexer" type=
"int" default=
""/> 
33836       <method name=
"GetLexer" type=
"int" overloaded=
"no"> 
33837         <autodoc>GetLexer() -
> int
</autodoc> 
33839       <method name=
"Colourise" type=
"" overloaded=
"no"> 
33840         <autodoc>Colourise(int start, int end)
</autodoc> 
33842           <param name=
"start" type=
"int" default=
""/> 
33843           <param name=
"end" type=
"int" default=
""/> 
33846       <method name=
"SetProperty" type=
"" overloaded=
"no"> 
33847         <autodoc>SetProperty(String key, String value)
</autodoc> 
33849           <param name=
"key" type=
"String" default=
""/> 
33850           <param name=
"value" type=
"String" default=
""/> 
33853       <method name=
"SetKeyWords" type=
"" overloaded=
"no"> 
33854         <autodoc>SetKeyWords(int keywordSet, String keyWords)
</autodoc> 
33856           <param name=
"keywordSet" type=
"int" default=
""/> 
33857           <param name=
"keyWords" type=
"String" default=
""/> 
33860       <method name=
"SetLexerLanguage" type=
"" overloaded=
"no"> 
33861         <autodoc>SetLexerLanguage(String language)
</autodoc> 
33863           <param name=
"language" type=
"String" default=
""/> 
33866       <method name=
"GetCurrentLine" type=
"int" overloaded=
"no"> 
33867         <autodoc>GetCurrentLine() -
> int
</autodoc> 
33869       <method name=
"StyleSetSpec" type=
"" overloaded=
"no"> 
33870         <autodoc>StyleSetSpec(int styleNum, String spec)
</autodoc> 
33872           <param name=
"styleNum" type=
"int" default=
""/> 
33873           <param name=
"spec" type=
"String" default=
""/> 
33876       <method name=
"StyleSetFont" type=
"" overloaded=
"no"> 
33877         <autodoc>StyleSetFont(int styleNum, Font font)
</autodoc> 
33879           <param name=
"styleNum" type=
"int" default=
""/> 
33880           <param name=
"font" type=
"Font" default=
""/> 
33883       <method name=
"StyleSetFontAttr" type=
"" overloaded=
"no"> 
33884         <autodoc>StyleSetFontAttr(int styleNum, int size, String faceName, bool bold, 
 
33885     bool italic, bool underline)
</autodoc> 
33887           <param name=
"styleNum" type=
"int" default=
""/> 
33888           <param name=
"size" type=
"int" default=
""/> 
33889           <param name=
"faceName" type=
"String" default=
""/> 
33890           <param name=
"bold" type=
"bool" default=
""/> 
33891           <param name=
"italic" type=
"bool" default=
""/> 
33892           <param name=
"underline" type=
"bool" default=
""/> 
33895       <method name=
"CmdKeyExecute" type=
"" overloaded=
"no"> 
33896         <autodoc>CmdKeyExecute(int cmd)
</autodoc> 
33898           <param name=
"cmd" type=
"int" default=
""/> 
33901       <method name=
"SetMargins" type=
"" overloaded=
"no"> 
33902         <autodoc>SetMargins(int left, int right)
</autodoc> 
33904           <param name=
"left" type=
"int" default=
""/> 
33905           <param name=
"right" type=
"int" default=
""/> 
33908       <method name=
"GetSelection" type=
"" overloaded=
"no"> 
33909         <autodoc>GetSelection(int OUTPUT, int OUTPUT)
</autodoc> 
33911           <param name=
"OUTPUT" type=
"int" default=
""/> 
33912           <param name=
"OUTPUT" type=
"int" default=
""/> 
33915       <method name=
"PointFromPosition" type=
"Point" overloaded=
"no"> 
33916         <autodoc>PointFromPosition(int pos) -
> Point
</autodoc> 
33918           <param name=
"pos" type=
"int" default=
""/> 
33921       <method name=
"ScrollToLine" type=
"" overloaded=
"no"> 
33922         <autodoc>ScrollToLine(int line)
</autodoc> 
33924           <param name=
"line" type=
"int" default=
""/> 
33927       <method name=
"ScrollToColumn" type=
"" overloaded=
"no"> 
33928         <autodoc>ScrollToColumn(int column)
</autodoc> 
33930           <param name=
"column" type=
"int" default=
""/> 
33933       <method name=
"SendMsg" type=
"long" overloaded=
"no"> 
33934         <autodoc>SendMsg(int msg, long wp=
0, long lp=
0) -
> long
</autodoc> 
33936           <param name=
"msg" type=
"int" default=
""/> 
33937           <param name=
"wp" type=
"long" default=
"0"/> 
33938           <param name=
"lp" type=
"long" default=
"0"/> 
33941       <method name=
"SetVScrollBar" type=
"" overloaded=
"no"> 
33942         <autodoc>SetVScrollBar(wxScrollBar bar)
</autodoc> 
33944           <param name=
"bar" type=
"ScrollBar" default=
""/> 
33947       <method name=
"SetHScrollBar" type=
"" overloaded=
"no"> 
33948         <autodoc>SetHScrollBar(wxScrollBar bar)
</autodoc> 
33950           <param name=
"bar" type=
"ScrollBar" default=
""/> 
33953       <method name=
"GetLastKeydownProcessed" type=
"bool" overloaded=
"no"> 
33954         <autodoc>GetLastKeydownProcessed() -
> bool
</autodoc> 
33956       <method name=
"SetLastKeydownProcessed" type=
"" overloaded=
"no"> 
33957         <autodoc>SetLastKeydownProcessed(bool val)
</autodoc> 
33959           <param name=
"val" type=
"bool" default=
""/> 
33962       <method name=
"SaveFile" type=
"bool" overloaded=
"no"> 
33963         <autodoc>SaveFile(String filename) -
> bool
</autodoc> 
33965           <param name=
"filename" type=
"String" default=
""/> 
33968       <method name=
"LoadFile" type=
"bool" overloaded=
"no"> 
33969         <autodoc>LoadFile(String filename) -
> bool
</autodoc> 
33971           <param name=
"filename" type=
"String" default=
""/> 
33974       <method name=
"DoDragOver" type=
"wxDragResult" overloaded=
"no"> 
33975         <autodoc>DoDragOver(int x, int y, wxDragResult def) -
> wxDragResult
</autodoc> 
33977           <param name=
"x" type=
"int" default=
""/> 
33978           <param name=
"y" type=
"int" default=
""/> 
33979           <param name=
"def" type=
"wxDragResult" default=
""/> 
33982       <method name=
"DoDropText" type=
"bool" overloaded=
"no"> 
33983         <autodoc>DoDropText(long x, long y, String data) -
> bool
</autodoc> 
33985           <param name=
"x" type=
"long" default=
""/> 
33986           <param name=
"y" type=
"long" default=
""/> 
33987           <param name=
"data" type=
"String" default=
""/> 
33991     <class name=
"StyledTextEvent" oldname=
"wxStyledTextEvent" module=
"stc"> 
33992       <baseclass name=
"CommandEvent"/> 
33993       <constructor name=
"StyledTextEvent" overloaded=
"no"> 
33994         <autodoc>__init__(wxEventType commandType=
0, int id=
0) -
> StyledTextEvent
</autodoc> 
33996           <param name=
"commandType" type=
"wxEventType" default=
"0"/> 
33997           <param name=
"id" type=
"int" default=
"0"/> 
34000       <destructor name=
"~wxStyledTextEvent" overloaded=
"no"> 
34001         <autodoc>__del__()
</autodoc> 
34003       <method name=
"SetPosition" type=
"" overloaded=
"no"> 
34004         <autodoc>SetPosition(int pos)
</autodoc> 
34006           <param name=
"pos" type=
"int" default=
""/> 
34009       <method name=
"SetKey" type=
"" overloaded=
"no"> 
34010         <autodoc>SetKey(int k)
</autodoc> 
34012           <param name=
"k" type=
"int" default=
""/> 
34015       <method name=
"SetModifiers" type=
"" overloaded=
"no"> 
34016         <autodoc>SetModifiers(int m)
</autodoc> 
34018           <param name=
"m" type=
"int" default=
""/> 
34021       <method name=
"SetModificationType" type=
"" overloaded=
"no"> 
34022         <autodoc>SetModificationType(int t)
</autodoc> 
34024           <param name=
"t" type=
"int" default=
""/> 
34027       <method name=
"SetText" type=
"" overloaded=
"no"> 
34028         <autodoc>SetText(String t)
</autodoc> 
34030           <param name=
"t" type=
"String" default=
""/> 
34033       <method name=
"SetLength" type=
"" overloaded=
"no"> 
34034         <autodoc>SetLength(int len)
</autodoc> 
34036           <param name=
"len" type=
"int" default=
""/> 
34039       <method name=
"SetLinesAdded" type=
"" overloaded=
"no"> 
34040         <autodoc>SetLinesAdded(int num)
</autodoc> 
34042           <param name=
"num" type=
"int" default=
""/> 
34045       <method name=
"SetLine" type=
"" overloaded=
"no"> 
34046         <autodoc>SetLine(int val)
</autodoc> 
34048           <param name=
"val" type=
"int" default=
""/> 
34051       <method name=
"SetFoldLevelNow" type=
"" overloaded=
"no"> 
34052         <autodoc>SetFoldLevelNow(int val)
</autodoc> 
34054           <param name=
"val" type=
"int" default=
""/> 
34057       <method name=
"SetFoldLevelPrev" type=
"" overloaded=
"no"> 
34058         <autodoc>SetFoldLevelPrev(int val)
</autodoc> 
34060           <param name=
"val" type=
"int" default=
""/> 
34063       <method name=
"SetMargin" type=
"" overloaded=
"no"> 
34064         <autodoc>SetMargin(int val)
</autodoc> 
34066           <param name=
"val" type=
"int" default=
""/> 
34069       <method name=
"SetMessage" type=
"" overloaded=
"no"> 
34070         <autodoc>SetMessage(int val)
</autodoc> 
34072           <param name=
"val" type=
"int" default=
""/> 
34075       <method name=
"SetWParam" type=
"" overloaded=
"no"> 
34076         <autodoc>SetWParam(int val)
</autodoc> 
34078           <param name=
"val" type=
"int" default=
""/> 
34081       <method name=
"SetLParam" type=
"" overloaded=
"no"> 
34082         <autodoc>SetLParam(int val)
</autodoc> 
34084           <param name=
"val" type=
"int" default=
""/> 
34087       <method name=
"SetListType" type=
"" overloaded=
"no"> 
34088         <autodoc>SetListType(int val)
</autodoc> 
34090           <param name=
"val" type=
"int" default=
""/> 
34093       <method name=
"SetX" type=
"" overloaded=
"no"> 
34094         <autodoc>SetX(int val)
</autodoc> 
34096           <param name=
"val" type=
"int" default=
""/> 
34099       <method name=
"SetY" type=
"" overloaded=
"no"> 
34100         <autodoc>SetY(int val)
</autodoc> 
34102           <param name=
"val" type=
"int" default=
""/> 
34105       <method name=
"SetDragText" type=
"" overloaded=
"no"> 
34106         <autodoc>SetDragText(String val)
</autodoc> 
34108           <param name=
"val" type=
"String" default=
""/> 
34111       <method name=
"SetDragAllowMove" type=
"" overloaded=
"no"> 
34112         <autodoc>SetDragAllowMove(bool val)
</autodoc> 
34114           <param name=
"val" type=
"bool" default=
""/> 
34117       <method name=
"SetDragResult" type=
"" overloaded=
"no"> 
34118         <autodoc>SetDragResult(wxDragResult val)
</autodoc> 
34120           <param name=
"val" type=
"wxDragResult" default=
""/> 
34123       <method name=
"GetPosition" type=
"int" overloaded=
"no"> 
34124         <autodoc>GetPosition() -
> int
</autodoc> 
34126       <method name=
"GetKey" type=
"int" overloaded=
"no"> 
34127         <autodoc>GetKey() -
> int
</autodoc> 
34129       <method name=
"GetModifiers" type=
"int" overloaded=
"no"> 
34130         <autodoc>GetModifiers() -
> int
</autodoc> 
34132       <method name=
"GetModificationType" type=
"int" overloaded=
"no"> 
34133         <autodoc>GetModificationType() -
> int
</autodoc> 
34135       <method name=
"GetText" type=
"String" overloaded=
"no"> 
34136         <autodoc>GetText() -
> String
</autodoc> 
34138       <method name=
"GetLength" type=
"int" overloaded=
"no"> 
34139         <autodoc>GetLength() -
> int
</autodoc> 
34141       <method name=
"GetLinesAdded" type=
"int" overloaded=
"no"> 
34142         <autodoc>GetLinesAdded() -
> int
</autodoc> 
34144       <method name=
"GetLine" type=
"int" overloaded=
"no"> 
34145         <autodoc>GetLine() -
> int
</autodoc> 
34147       <method name=
"GetFoldLevelNow" type=
"int" overloaded=
"no"> 
34148         <autodoc>GetFoldLevelNow() -
> int
</autodoc> 
34150       <method name=
"GetFoldLevelPrev" type=
"int" overloaded=
"no"> 
34151         <autodoc>GetFoldLevelPrev() -
> int
</autodoc> 
34153       <method name=
"GetMargin" type=
"int" overloaded=
"no"> 
34154         <autodoc>GetMargin() -
> int
</autodoc> 
34156       <method name=
"GetMessage" type=
"int" overloaded=
"no"> 
34157         <autodoc>GetMessage() -
> int
</autodoc> 
34159       <method name=
"GetWParam" type=
"int" overloaded=
"no"> 
34160         <autodoc>GetWParam() -
> int
</autodoc> 
34162       <method name=
"GetLParam" type=
"int" overloaded=
"no"> 
34163         <autodoc>GetLParam() -
> int
</autodoc> 
34165       <method name=
"GetListType" type=
"int" overloaded=
"no"> 
34166         <autodoc>GetListType() -
> int
</autodoc> 
34168       <method name=
"GetX" type=
"int" overloaded=
"no"> 
34169         <autodoc>GetX() -
> int
</autodoc> 
34171       <method name=
"GetY" type=
"int" overloaded=
"no"> 
34172         <autodoc>GetY() -
> int
</autodoc> 
34174       <method name=
"GetDragText" type=
"String" overloaded=
"no"> 
34175         <autodoc>GetDragText() -
> String
</autodoc> 
34177       <method name=
"GetDragAllowMove" type=
"bool" overloaded=
"no"> 
34178         <autodoc>GetDragAllowMove() -
> bool
</autodoc> 
34180       <method name=
"GetDragResult" type=
"wxDragResult" overloaded=
"no"> 
34181         <autodoc>GetDragResult() -
> wxDragResult
</autodoc> 
34183       <method name=
"GetShift" type=
"bool" overloaded=
"no"> 
34184         <autodoc>GetShift() -
> bool
</autodoc> 
34186       <method name=
"GetControl" type=
"bool" overloaded=
"no"> 
34187         <autodoc>GetControl() -
> bool
</autodoc> 
34189       <method name=
"GetAlt" type=
"bool" overloaded=
"no"> 
34190         <autodoc>GetAlt() -
> bool
</autodoc> 
34192       <method name=
"Clone" type=
"Event" overloaded=
"no"> 
34193         <autodoc>Clone() -
> Event
</autodoc> 
34197 EVT_STC_CHANGE = wx.PyEventBinder( wxEVT_STC_CHANGE, 
1 )
 
34198 EVT_STC_STYLENEEDED = wx.PyEventBinder( wxEVT_STC_STYLENEEDED, 
1 )
 
34199 EVT_STC_CHARADDED = wx.PyEventBinder( wxEVT_STC_CHARADDED, 
1 )
 
34200 EVT_STC_SAVEPOINTREACHED = wx.PyEventBinder( wxEVT_STC_SAVEPOINTREACHED, 
1 )
 
34201 EVT_STC_SAVEPOINTLEFT = wx.PyEventBinder( wxEVT_STC_SAVEPOINTLEFT, 
1 )
 
34202 EVT_STC_ROMODIFYATTEMPT = wx.PyEventBinder( wxEVT_STC_ROMODIFYATTEMPT, 
1 )
 
34203 EVT_STC_KEY = wx.PyEventBinder( wxEVT_STC_KEY, 
1 )
 
34204 EVT_STC_DOUBLECLICK = wx.PyEventBinder( wxEVT_STC_DOUBLECLICK, 
1 )
 
34205 EVT_STC_UPDATEUI = wx.PyEventBinder( wxEVT_STC_UPDATEUI, 
1 )
 
34206 EVT_STC_MODIFIED = wx.PyEventBinder( wxEVT_STC_MODIFIED, 
1 )
 
34207 EVT_STC_MACRORECORD = wx.PyEventBinder( wxEVT_STC_MACRORECORD, 
1 )
 
34208 EVT_STC_MARGINCLICK = wx.PyEventBinder( wxEVT_STC_MARGINCLICK, 
1 )
 
34209 EVT_STC_NEEDSHOWN = wx.PyEventBinder( wxEVT_STC_NEEDSHOWN, 
1 )
 
34210 EVT_STC_POSCHANGED = wx.PyEventBinder( wxEVT_STC_POSCHANGED, 
1 )
 
34211 EVT_STC_PAINTED = wx.PyEventBinder( wxEVT_STC_PAINTED, 
1 )
 
34212 EVT_STC_USERLISTSELECTION = wx.PyEventBinder( wxEVT_STC_USERLISTSELECTION, 
1 )
 
34213 EVT_STC_URIDROPPED = wx.PyEventBinder( wxEVT_STC_URIDROPPED, 
1 )
 
34214 EVT_STC_DWELLSTART = wx.PyEventBinder( wxEVT_STC_DWELLSTART, 
1 )
 
34215 EVT_STC_DWELLEND = wx.PyEventBinder( wxEVT_STC_DWELLEND, 
1 )
 
34216 EVT_STC_START_DRAG = wx.PyEventBinder( wxEVT_STC_START_DRAG, 
1 )
 
34217 EVT_STC_DRAG_OVER = wx.PyEventBinder( wxEVT_STC_DRAG_OVER, 
1 )
 
34218 EVT_STC_DO_DROP = wx.PyEventBinder( wxEVT_STC_DO_DROP, 
1 )
 
34219 EVT_STC_ZOOM = wx.PyEventBinder( wxEVT_STC_ZOOM, 
1 )
 
34220 EVT_STC_HOTSPOT_CLICK = wx.PyEventBinder( wxEVT_STC_HOTSPOT_CLICK, 
1 )
 
34221 EVT_STC_HOTSPOT_DCLICK = wx.PyEventBinder( wxEVT_STC_HOTSPOT_DCLICK, 
1 )
 
34222 EVT_STC_CALLTIP_CLICK = wx.PyEventBinder( wxEVT_STC_CALLTIP_CLICK, 
1 )
 
34225   <module name=
"xrc"> 
34226     <import name=
"core"/> 
34227     <pythoncode> wx = core 
</pythoncode> 
34229 #---------------------------------------------------------------------------
 
34231     <class name=
"XmlResource" oldname=
"wxXmlResource" module=
"xrc"> 
34232       <baseclass name=
"Object"/> 
34233       <constructor name=
"XmlResource" overloaded=
"no"> 
34234         <autodoc>__init__(String filemask, int flags=XRC_USE_LOCALE) -
> XmlResource
</autodoc> 
34236           <param name=
"filemask" type=
"String" default=
""/> 
34237           <param name=
"flags" type=
"int" default=
"wxXRC_USE_LOCALE"/> 
34240       <constructor name=
"EmptyXmlResource" overloaded=
"no"> 
34241         <autodoc>EmptyXmlResource(int flags=XRC_USE_LOCALE) -
> XmlResource
</autodoc> 
34243           <param name=
"flags" type=
"int" default=
"wxXRC_USE_LOCALE"/> 
34246       <destructor name=
"~wxXmlResource" overloaded=
"no"> 
34247         <autodoc>__del__()
</autodoc> 
34249       <method name=
"Load" type=
"bool" overloaded=
"no"> 
34250         <autodoc>Load(String filemask) -
> bool
</autodoc> 
34252           <param name=
"filemask" type=
"String" default=
""/> 
34255       <method name=
"LoadFromString" type=
"bool" overloaded=
"no"> 
34256         <autodoc>LoadFromString(String data) -
> bool
</autodoc> 
34258           <param name=
"data" type=
"String" default=
""/> 
34261       <method name=
"InitAllHandlers" type=
"" overloaded=
"no"> 
34262         <autodoc>InitAllHandlers()
</autodoc> 
34264       <method name=
"AddHandler" type=
"" overloaded=
"no"> 
34265         <autodoc>AddHandler(XmlResourceHandler handler)
</autodoc> 
34267           <param name=
"handler" type=
"wxPyXmlResourceHandler" default=
""/> 
34270       <method name=
"InsertHandler" type=
"" overloaded=
"no"> 
34271         <autodoc>InsertHandler(XmlResourceHandler handler)
</autodoc> 
34273           <param name=
"handler" type=
"wxPyXmlResourceHandler" default=
""/> 
34276       <method name=
"ClearHandlers" type=
"" overloaded=
"no"> 
34277         <autodoc>ClearHandlers()
</autodoc> 
34279       <staticmethod name=
"AddSubclassFactory" type=
"" overloaded=
"no"> 
34280         <autodoc>XmlResource.AddSubclassFactory(XmlSubclassFactory factory)
</autodoc> 
34282           <param name=
"factory" type=
"wxPyXmlSubclassFactory" default=
""/> 
34285       <method name=
"LoadMenu" type=
"Menu" overloaded=
"no"> 
34286         <autodoc>LoadMenu(String name) -
> Menu
</autodoc> 
34288           <param name=
"name" type=
"String" default=
""/> 
34291       <method name=
"LoadMenuBar" type=
"MenuBar" overloaded=
"no"> 
34292         <autodoc>LoadMenuBar(String name) -
> MenuBar
</autodoc> 
34294           <param name=
"name" type=
"String" default=
""/> 
34297       <method name=
"LoadMenuBarOnFrame" type=
"MenuBar" overloaded=
"no"> 
34298         <autodoc>LoadMenuBarOnFrame(Window parent, String name) -
> MenuBar
</autodoc> 
34300           <param name=
"parent" type=
"Window" default=
""/> 
34301           <param name=
"name" type=
"String" default=
""/> 
34304       <method name=
"LoadToolBar" type=
"ToolBar" overloaded=
"no"> 
34305         <autodoc>LoadToolBar(Window parent, String name) -
> wxToolBar
</autodoc> 
34307           <param name=
"parent" type=
"Window" default=
""/> 
34308           <param name=
"name" type=
"String" default=
""/> 
34311       <method name=
"LoadDialog" type=
"Dialog" overloaded=
"no"> 
34312         <autodoc>LoadDialog(Window parent, String name) -
> wxDialog
</autodoc> 
34314           <param name=
"parent" type=
"Window" default=
""/> 
34315           <param name=
"name" type=
"String" default=
""/> 
34318       <method name=
"LoadOnDialog" type=
"bool" overloaded=
"no"> 
34319         <autodoc>LoadOnDialog(wxDialog dlg, Window parent, String name) -
> bool
</autodoc> 
34321           <param name=
"dlg" type=
"Dialog" default=
""/> 
34322           <param name=
"parent" type=
"Window" default=
""/> 
34323           <param name=
"name" type=
"String" default=
""/> 
34326       <method name=
"LoadPanel" type=
"Panel" overloaded=
"no"> 
34327         <autodoc>LoadPanel(Window parent, String name) -
> wxPanel
</autodoc> 
34329           <param name=
"parent" type=
"Window" default=
""/> 
34330           <param name=
"name" type=
"String" default=
""/> 
34333       <method name=
"LoadOnPanel" type=
"bool" overloaded=
"no"> 
34334         <autodoc>LoadOnPanel(wxPanel panel, Window parent, String name) -
> bool
</autodoc> 
34336           <param name=
"panel" type=
"Panel" default=
""/> 
34337           <param name=
"parent" type=
"Window" default=
""/> 
34338           <param name=
"name" type=
"String" default=
""/> 
34341       <method name=
"LoadFrame" type=
"Frame" overloaded=
"no"> 
34342         <autodoc>LoadFrame(Window parent, String name) -
> wxFrame
</autodoc> 
34344           <param name=
"parent" type=
"Window" default=
""/> 
34345           <param name=
"name" type=
"String" default=
""/> 
34348       <method name=
"LoadOnFrame" type=
"bool" overloaded=
"no"> 
34349         <autodoc>LoadOnFrame(wxFrame frame, Window parent, String name) -
> bool
</autodoc> 
34351           <param name=
"frame" type=
"Frame" default=
""/> 
34352           <param name=
"parent" type=
"Window" default=
""/> 
34353           <param name=
"name" type=
"String" default=
""/> 
34356       <method name=
"LoadObject" type=
"Object" overloaded=
"no"> 
34357         <autodoc>LoadObject(Window parent, String name, String classname) -
> Object
</autodoc> 
34359           <param name=
"parent" type=
"Window" default=
""/> 
34360           <param name=
"name" type=
"String" default=
""/> 
34361           <param name=
"classname" type=
"String" default=
""/> 
34364       <method name=
"LoadOnObject" type=
"bool" overloaded=
"no"> 
34365         <autodoc>LoadOnObject(Object instance, Window parent, String name, String classname) -
> bool
</autodoc> 
34367           <param name=
"instance" type=
"Object" default=
""/> 
34368           <param name=
"parent" type=
"Window" default=
""/> 
34369           <param name=
"name" type=
"String" default=
""/> 
34370           <param name=
"classname" type=
"String" default=
""/> 
34373       <method name=
"LoadBitmap" type=
"Bitmap" overloaded=
"no"> 
34374         <autodoc>LoadBitmap(String name) -
> Bitmap
</autodoc> 
34376           <param name=
"name" type=
"String" default=
""/> 
34379       <method name=
"LoadIcon" type=
"Icon" overloaded=
"no"> 
34380         <autodoc>LoadIcon(String name) -
> Icon
</autodoc> 
34382           <param name=
"name" type=
"String" default=
""/> 
34385       <method name=
"AttachUnknownControl" type=
"bool" overloaded=
"no"> 
34386         <autodoc>AttachUnknownControl(String name, Window control, Window parent=None) -
> bool
</autodoc> 
34388           <param name=
"name" type=
"String" default=
""/> 
34389           <param name=
"control" type=
"Window" default=
""/> 
34390           <param name=
"parent" type=
"Window" default=
"NULL"/> 
34393       <staticmethod name=
"GetXRCID" type=
"int" overloaded=
"no"> 
34394         <autodoc>XmlResource.GetXRCID(String str_id) -
> int
</autodoc> 
34396           <param name=
"str_id" type=
"String" default=
""/> 
34399       <method name=
"GetVersion" type=
"long" overloaded=
"no"> 
34400         <autodoc>GetVersion() -
> long
</autodoc> 
34402       <method name=
"CompareVersion" type=
"int" overloaded=
"no"> 
34403         <autodoc>CompareVersion(int major, int minor, int release, int revision) -
> int
</autodoc> 
34405           <param name=
"major" type=
"int" default=
""/> 
34406           <param name=
"minor" type=
"int" default=
""/> 
34407           <param name=
"release" type=
"int" default=
""/> 
34408           <param name=
"revision" type=
"int" default=
""/> 
34411       <staticmethod name=
"Get" type=
"XmlResource" overloaded=
"no"> 
34412         <autodoc>XmlResource.Get() -
> XmlResource
</autodoc> 
34414       <staticmethod name=
"Set" type=
"XmlResource" overloaded=
"no"> 
34415         <autodoc>XmlResource.Set(XmlResource res) -
> XmlResource
</autodoc> 
34417           <param name=
"res" type=
"XmlResource" default=
""/> 
34420       <method name=
"GetFlags" type=
"int" overloaded=
"no"> 
34421         <autodoc>GetFlags() -
> int
</autodoc> 
34423       <method name=
"SetFlags" type=
"" overloaded=
"no"> 
34424         <autodoc>SetFlags(int flags)
</autodoc> 
34426           <param name=
"flags" type=
"int" default=
""/> 
34432     return XmlResource_GetXRCID(str_id)
 
34434 def XRCCTRL(window, str_id, *ignoreargs):
 
34435     return window.FindWindowById(XRCID(str_id))
 
34438 #---------------------------------------------------------------------------
 
34440     <class name=
"XmlSubclassFactory" oldname=
"wxPyXmlSubclassFactory" module=
"xrc"> 
34441       <constructor name=
"wxPyXmlSubclassFactory" overloaded=
"no"> 
34442         <autodoc>__init__() -
> XmlSubclassFactory
</autodoc> 
34444       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
34445         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
34447           <param name=
"self" type=
"PyObject" default=
""/> 
34448           <param name=
"_class" type=
"PyObject" default=
""/> 
34453 #---------------------------------------------------------------------------
 
34455     <class name=
"XmlProperty" oldname=
"wxXmlProperty" module=
"xrc"> 
34456       <constructor name=
"XmlProperty" overloaded=
"no"> 
34457         <autodoc>__init__(String name=EmptyString, String value=EmptyString, 
 
34458     XmlProperty next=None) -
> XmlProperty
</autodoc> 
34460           <param name=
"name" type=
"String" default=
"wxPyEmptyString"/> 
34461           <param name=
"value" type=
"String" default=
"wxPyEmptyString"/> 
34462           <param name=
"next" type=
"XmlProperty" default=
"NULL"/> 
34465       <method name=
"GetName" type=
"String" overloaded=
"no"> 
34466         <autodoc>GetName() -
> String
</autodoc> 
34468       <method name=
"GetValue" type=
"String" overloaded=
"no"> 
34469         <autodoc>GetValue() -
> String
</autodoc> 
34471       <method name=
"GetNext" type=
"XmlProperty" overloaded=
"no"> 
34472         <autodoc>GetNext() -
> XmlProperty
</autodoc> 
34474       <method name=
"SetName" type=
"" overloaded=
"no"> 
34475         <autodoc>SetName(String name)
</autodoc> 
34477           <param name=
"name" type=
"String" default=
""/> 
34480       <method name=
"SetValue" type=
"" overloaded=
"no"> 
34481         <autodoc>SetValue(String value)
</autodoc> 
34483           <param name=
"value" type=
"String" default=
""/> 
34486       <method name=
"SetNext" type=
"" overloaded=
"no"> 
34487         <autodoc>SetNext(XmlProperty next)
</autodoc> 
34489           <param name=
"next" type=
"XmlProperty" default=
""/> 
34493     <class name=
"XmlNode" oldname=
"wxXmlNode" module=
"xrc"> 
34494       <constructor name=
"XmlNode" overloaded=
"no"> 
34495         <autodoc>__init__(XmlNode parent=None, int type=
0, String name=EmptyString, 
 
34496     String content=EmptyString, XmlProperty props=None, 
 
34497     XmlNode next=None) -
> XmlNode
</autodoc> 
34499           <param name=
"parent" type=
"XmlNode" default=
"NULL"/> 
34500           <param name=
"type" type=
"wxXmlNodeType" default=
"0"/> 
34501           <param name=
"name" type=
"String" default=
"wxPyEmptyString"/> 
34502           <param name=
"content" type=
"String" default=
"wxPyEmptyString"/> 
34503           <param name=
"props" type=
"XmlProperty" default=
"NULL"/> 
34504           <param name=
"next" type=
"XmlNode" default=
"NULL"/> 
34507       <constructor name=
"XmlNodeEasy" overloaded=
"no"> 
34508         <autodoc>XmlNodeEasy(int type, String name, String content=EmptyString) -
> XmlNode
</autodoc> 
34510           <param name=
"type" type=
"wxXmlNodeType" default=
""/> 
34511           <param name=
"name" type=
"String" default=
""/> 
34512           <param name=
"content" type=
"String" default=
"wxPyEmptyString"/> 
34515       <destructor name=
"~wxXmlNode" overloaded=
"no"> 
34516         <autodoc>__del__()
</autodoc> 
34518       <method name=
"AddChild" type=
"" overloaded=
"no"> 
34519         <autodoc>AddChild(XmlNode child)
</autodoc> 
34521           <param name=
"child" type=
"XmlNode" default=
""/> 
34524       <method name=
"InsertChild" type=
"" overloaded=
"no"> 
34525         <autodoc>InsertChild(XmlNode child, XmlNode before_node)
</autodoc> 
34527           <param name=
"child" type=
"XmlNode" default=
""/> 
34528           <param name=
"before_node" type=
"XmlNode" default=
""/> 
34531       <method name=
"RemoveChild" type=
"bool" overloaded=
"no"> 
34532         <autodoc>RemoveChild(XmlNode child) -
> bool
</autodoc> 
34534           <param name=
"child" type=
"XmlNode" default=
""/> 
34537       <method name=
"AddProperty" type=
"" overloaded=
"no"> 
34538         <autodoc>AddProperty(XmlProperty prop)
</autodoc> 
34540           <param name=
"prop" type=
"XmlProperty" default=
""/> 
34543       <method name=
"AddPropertyName" type=
"" overloaded=
"no"> 
34544         <autodoc>AddPropertyName(String name, String value)
</autodoc> 
34546           <param name=
"name" type=
"String" default=
""/> 
34547           <param name=
"value" type=
"String" default=
""/> 
34550       <method name=
"DeleteProperty" type=
"bool" overloaded=
"no"> 
34551         <autodoc>DeleteProperty(String name) -
> bool
</autodoc> 
34553           <param name=
"name" type=
"String" default=
""/> 
34556       <method name=
"GetType" type=
"wxXmlNodeType" overloaded=
"no"> 
34557         <autodoc>GetType() -
> int
</autodoc> 
34559       <method name=
"GetName" type=
"String" overloaded=
"no"> 
34560         <autodoc>GetName() -
> String
</autodoc> 
34562       <method name=
"GetContent" type=
"String" overloaded=
"no"> 
34563         <autodoc>GetContent() -
> String
</autodoc> 
34565       <method name=
"GetParent" type=
"XmlNode" overloaded=
"no"> 
34566         <autodoc>GetParent() -
> XmlNode
</autodoc> 
34568       <method name=
"GetNext" type=
"XmlNode" overloaded=
"no"> 
34569         <autodoc>GetNext() -
> XmlNode
</autodoc> 
34571       <method name=
"GetChildren" type=
"XmlNode" overloaded=
"no"> 
34572         <autodoc>GetChildren() -
> XmlNode
</autodoc> 
34574       <method name=
"GetProperties" type=
"XmlProperty" overloaded=
"no"> 
34575         <autodoc>GetProperties() -
> XmlProperty
</autodoc> 
34577       <method name=
"GetPropVal" type=
"String" overloaded=
"no"> 
34578         <autodoc>GetPropVal(String propName, String defaultVal) -
> String
</autodoc> 
34580           <param name=
"propName" type=
"String" default=
""/> 
34581           <param name=
"defaultVal" type=
"String" default=
""/> 
34584       <method name=
"HasProp" type=
"bool" overloaded=
"no"> 
34585         <autodoc>HasProp(String propName) -
> bool
</autodoc> 
34587           <param name=
"propName" type=
"String" default=
""/> 
34590       <method name=
"SetType" type=
"" overloaded=
"no"> 
34591         <autodoc>SetType(int type)
</autodoc> 
34593           <param name=
"type" type=
"wxXmlNodeType" default=
""/> 
34596       <method name=
"SetName" type=
"" overloaded=
"no"> 
34597         <autodoc>SetName(String name)
</autodoc> 
34599           <param name=
"name" type=
"String" default=
""/> 
34602       <method name=
"SetContent" type=
"" overloaded=
"no"> 
34603         <autodoc>SetContent(String con)
</autodoc> 
34605           <param name=
"con" type=
"String" default=
""/> 
34608       <method name=
"SetParent" type=
"" overloaded=
"no"> 
34609         <autodoc>SetParent(XmlNode parent)
</autodoc> 
34611           <param name=
"parent" type=
"XmlNode" default=
""/> 
34614       <method name=
"SetNext" type=
"" overloaded=
"no"> 
34615         <autodoc>SetNext(XmlNode next)
</autodoc> 
34617           <param name=
"next" type=
"XmlNode" default=
""/> 
34620       <method name=
"SetChildren" type=
"" overloaded=
"no"> 
34621         <autodoc>SetChildren(XmlNode child)
</autodoc> 
34623           <param name=
"child" type=
"XmlNode" default=
""/> 
34626       <method name=
"SetProperties" type=
"" overloaded=
"no"> 
34627         <autodoc>SetProperties(XmlProperty prop)
</autodoc> 
34629           <param name=
"prop" type=
"XmlProperty" default=
""/> 
34633     <class name=
"XmlDocument" oldname=
"wxXmlDocument" module=
"xrc"> 
34634       <baseclass name=
"Object"/> 
34635       <constructor name=
"XmlDocument" overloaded=
"no"> 
34636         <autodoc>__init__(String filename, String encoding=UTF8String) -
> XmlDocument
</autodoc> 
34638           <param name=
"filename" type=
"String" default=
""/> 
34639           <param name=
"encoding" type=
"String" default=
"wxPyUTF8String"/> 
34642       <constructor name=
"XmlDocumentFromStream" overloaded=
"no"> 
34643         <autodoc>XmlDocumentFromStream(InputStream stream, String encoding=UTF8String) -
> XmlDocument
</autodoc> 
34645           <param name=
"stream" type=
"wxInputStream" default=
""/> 
34646           <param name=
"encoding" type=
"String" default=
"wxPyUTF8String"/> 
34649       <constructor name=
"EmptyXmlDocument" overloaded=
"no"> 
34650         <autodoc>EmptyXmlDocument() -
> XmlDocument
</autodoc> 
34652       <destructor name=
"~wxXmlDocument" overloaded=
"no"> 
34653         <autodoc>__del__()
</autodoc> 
34655       <method name=
"Load" type=
"bool" overloaded=
"no"> 
34656         <autodoc>Load(String filename, String encoding=UTF8String) -
> bool
</autodoc> 
34658           <param name=
"filename" type=
"String" default=
""/> 
34659           <param name=
"encoding" type=
"String" default=
"wxPyUTF8String"/> 
34662       <method name=
"LoadFromStream" type=
"bool" overloaded=
"no"> 
34663         <autodoc>LoadFromStream(InputStream stream, String encoding=UTF8String) -
> bool
</autodoc> 
34665           <param name=
"stream" type=
"wxInputStream" default=
""/> 
34666           <param name=
"encoding" type=
"String" default=
"wxPyUTF8String"/> 
34669       <method name=
"Save" type=
"bool" overloaded=
"no"> 
34670         <autodoc>Save(String filename) -
> bool
</autodoc> 
34672           <param name=
"filename" type=
"String" default=
""/> 
34675       <method name=
"SaveToStream" type=
"bool" overloaded=
"no"> 
34676         <autodoc>SaveToStream(OutputStream stream) -
> bool
</autodoc> 
34678           <param name=
"stream" type=
"OutputStream" default=
""/> 
34681       <method name=
"IsOk" type=
"bool" overloaded=
"no"> 
34682         <autodoc>IsOk() -
> bool
</autodoc> 
34684       <method name=
"GetRoot" type=
"XmlNode" overloaded=
"no"> 
34685         <autodoc>GetRoot() -
> XmlNode
</autodoc> 
34687       <method name=
"GetVersion" type=
"String" overloaded=
"no"> 
34688         <autodoc>GetVersion() -
> String
</autodoc> 
34690       <method name=
"GetFileEncoding" type=
"String" overloaded=
"no"> 
34691         <autodoc>GetFileEncoding() -
> String
</autodoc> 
34693       <method name=
"SetRoot" type=
"" overloaded=
"no"> 
34694         <autodoc>SetRoot(XmlNode node)
</autodoc> 
34696           <param name=
"node" type=
"XmlNode" default=
""/> 
34699       <method name=
"SetVersion" type=
"" overloaded=
"no"> 
34700         <autodoc>SetVersion(String version)
</autodoc> 
34702           <param name=
"version" type=
"String" default=
""/> 
34705       <method name=
"SetFileEncoding" type=
"" overloaded=
"no"> 
34706         <autodoc>SetFileEncoding(String encoding)
</autodoc> 
34708           <param name=
"encoding" type=
"String" default=
""/> 
34713 #---------------------------------------------------------------------------
 
34715     <class name=
"XmlResourceHandler" oldname=
"wxPyXmlResourceHandler" module=
"xrc"> 
34716       <baseclass name=
"Object"/> 
34717       <constructor name=
"wxPyXmlResourceHandler" overloaded=
"no"> 
34718         <autodoc>__init__() -
> XmlResourceHandler
</autodoc> 
34720       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
34721         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
34723           <param name=
"self" type=
"PyObject" default=
""/> 
34724           <param name=
"_class" type=
"PyObject" default=
""/> 
34727       <method name=
"CreateResource" type=
"Object" overloaded=
"no"> 
34728         <autodoc>CreateResource(XmlNode node, Object parent, Object instance) -
> Object
</autodoc> 
34730           <param name=
"node" type=
"XmlNode" default=
""/> 
34731           <param name=
"parent" type=
"Object" default=
""/> 
34732           <param name=
"instance" type=
"Object" default=
""/> 
34735       <method name=
"SetParentResource" type=
"" overloaded=
"no"> 
34736         <autodoc>SetParentResource(XmlResource res)
</autodoc> 
34738           <param name=
"res" type=
"XmlResource" default=
""/> 
34741       <method name=
"GetResource" type=
"XmlResource" overloaded=
"no"> 
34742         <autodoc>GetResource() -
> XmlResource
</autodoc> 
34744       <method name=
"GetNode" type=
"XmlNode" overloaded=
"no"> 
34745         <autodoc>GetNode() -
> XmlNode
</autodoc> 
34747       <method name=
"GetClass" type=
"String" overloaded=
"no"> 
34748         <autodoc>GetClass() -
> String
</autodoc> 
34750       <method name=
"GetParent" type=
"Object" overloaded=
"no"> 
34751         <autodoc>GetParent() -
> Object
</autodoc> 
34753       <method name=
"GetInstance" type=
"Object" overloaded=
"no"> 
34754         <autodoc>GetInstance() -
> Object
</autodoc> 
34756       <method name=
"GetParentAsWindow" type=
"Window" overloaded=
"no"> 
34757         <autodoc>GetParentAsWindow() -
> Window
</autodoc> 
34759       <method name=
"GetInstanceAsWindow" type=
"Window" overloaded=
"no"> 
34760         <autodoc>GetInstanceAsWindow() -
> Window
</autodoc> 
34762       <method name=
"IsOfClass" type=
"bool" overloaded=
"no"> 
34763         <autodoc>IsOfClass(XmlNode node, String classname) -
> bool
</autodoc> 
34765           <param name=
"node" type=
"XmlNode" default=
""/> 
34766           <param name=
"classname" type=
"String" default=
""/> 
34769       <method name=
"GetNodeContent" type=
"String" overloaded=
"no"> 
34770         <autodoc>GetNodeContent(XmlNode node) -
> String
</autodoc> 
34772           <param name=
"node" type=
"XmlNode" default=
""/> 
34775       <method name=
"HasParam" type=
"bool" overloaded=
"no"> 
34776         <autodoc>HasParam(String param) -
> bool
</autodoc> 
34778           <param name=
"param" type=
"String" default=
""/> 
34781       <method name=
"GetParamNode" type=
"XmlNode" overloaded=
"no"> 
34782         <autodoc>GetParamNode(String param) -
> XmlNode
</autodoc> 
34784           <param name=
"param" type=
"String" default=
""/> 
34787       <method name=
"GetParamValue" type=
"String" overloaded=
"no"> 
34788         <autodoc>GetParamValue(String param) -
> String
</autodoc> 
34790           <param name=
"param" type=
"String" default=
""/> 
34793       <method name=
"AddStyle" type=
"" overloaded=
"no"> 
34794         <autodoc>AddStyle(String name, int value)
</autodoc> 
34796           <param name=
"name" type=
"String" default=
""/> 
34797           <param name=
"value" type=
"int" default=
""/> 
34800       <method name=
"AddWindowStyles" type=
"" overloaded=
"no"> 
34801         <autodoc>AddWindowStyles()
</autodoc> 
34803       <method name=
"GetStyle" type=
"int" overloaded=
"no"> 
34804         <autodoc>GetStyle(String param=StyleString, int defaults=
0) -
> int
</autodoc> 
34806           <param name=
"param" type=
"String" default=
"wxPyStyleString"/> 
34807           <param name=
"defaults" type=
"int" default=
"0"/> 
34810       <method name=
"GetText" type=
"String" overloaded=
"no"> 
34811         <autodoc>GetText(String param, bool translate=True) -
> String
</autodoc> 
34813           <param name=
"param" type=
"String" default=
""/> 
34814           <param name=
"translate" type=
"bool" default=
"True"/> 
34817       <method name=
"GetID" type=
"int" overloaded=
"no"> 
34818         <autodoc>GetID() -
> int
</autodoc> 
34820       <method name=
"GetName" type=
"String" overloaded=
"no"> 
34821         <autodoc>GetName() -
> String
</autodoc> 
34823       <method name=
"GetBool" type=
"bool" overloaded=
"no"> 
34824         <autodoc>GetBool(String param, bool defaultv=False) -
> bool
</autodoc> 
34826           <param name=
"param" type=
"String" default=
""/> 
34827           <param name=
"defaultv" type=
"bool" default=
"False"/> 
34830       <method name=
"GetLong" type=
"long" overloaded=
"no"> 
34831         <autodoc>GetLong(String param, long defaultv=
0) -
> long
</autodoc> 
34833           <param name=
"param" type=
"String" default=
""/> 
34834           <param name=
"defaultv" type=
"long" default=
"0"/> 
34837       <method name=
"GetColour" type=
"Colour" overloaded=
"no"> 
34838         <autodoc>GetColour(String param) -
> Colour
</autodoc> 
34840           <param name=
"param" type=
"String" default=
""/> 
34843       <method name=
"GetSize" type=
"Size" overloaded=
"no"> 
34844         <autodoc>GetSize(String param=SizeString) -
> Size
</autodoc> 
34846           <param name=
"param" type=
"String" default=
"wxPySizeString"/> 
34849       <method name=
"GetPosition" type=
"Point" overloaded=
"no"> 
34850         <autodoc>GetPosition(String param=PosString) -
> Point
</autodoc> 
34852           <param name=
"param" type=
"String" default=
"wxPyPosString"/> 
34855       <method name=
"GetDimension" type=
"int" overloaded=
"no"> 
34856         <autodoc>GetDimension(String param, int defaultv=
0) -
> int
</autodoc> 
34858           <param name=
"param" type=
"String" default=
""/> 
34859           <param name=
"defaultv" type=
"int" default=
"0"/> 
34862       <method name=
"GetBitmap" type=
"Bitmap" overloaded=
"no"> 
34863         <autodoc>GetBitmap(String param=BitmapString, wxArtClient defaultArtClient=wxART_OTHER, 
 
34864     Size size=DefaultSize) -
> Bitmap
</autodoc> 
34866           <param name=
"param" type=
"String" default=
"wxPyBitmapString"/> 
34867           <param name=
"defaultArtClient" type=
"wxArtClient" default=
"wxART_OTHER"/> 
34868           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
34871       <method name=
"GetIcon" type=
"Icon" overloaded=
"no"> 
34872         <autodoc>GetIcon(String param=IconString, wxArtClient defaultArtClient=wxART_OTHER, 
 
34873     Size size=DefaultSize) -
> Icon
</autodoc> 
34875           <param name=
"param" type=
"String" default=
"wxPyIconString"/> 
34876           <param name=
"defaultArtClient" type=
"wxArtClient" default=
"wxART_OTHER"/> 
34877           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
34880       <method name=
"GetFont" type=
"Font" overloaded=
"no"> 
34881         <autodoc>GetFont(String param=FontString) -
> Font
</autodoc> 
34883           <param name=
"param" type=
"String" default=
"wxPyFontString"/> 
34886       <method name=
"SetupWindow" type=
"" overloaded=
"no"> 
34887         <autodoc>SetupWindow(Window wnd)
</autodoc> 
34889           <param name=
"wnd" type=
"Window" default=
""/> 
34892       <method name=
"CreateChildren" type=
"" overloaded=
"no"> 
34893         <autodoc>CreateChildren(Object parent, bool this_hnd_only=False)
</autodoc> 
34895           <param name=
"parent" type=
"Object" default=
""/> 
34896           <param name=
"this_hnd_only" type=
"bool" default=
"False"/> 
34899       <method name=
"CreateChildrenPrivately" type=
"" overloaded=
"no"> 
34900         <autodoc>CreateChildrenPrivately(Object parent, XmlNode rootnode=None)
</autodoc> 
34902           <param name=
"parent" type=
"Object" default=
""/> 
34903           <param name=
"rootnode" type=
"XmlNode" default=
"NULL"/> 
34906       <method name=
"CreateResFromNode" type=
"Object" overloaded=
"no"> 
34907         <autodoc>CreateResFromNode(XmlNode node, Object parent, Object instance=None) -
> Object
</autodoc> 
34909           <param name=
"node" type=
"XmlNode" default=
""/> 
34910           <param name=
"parent" type=
"Object" default=
""/> 
34911           <param name=
"instance" type=
"Object" default=
"NULL"/> 
34914       <method name=
"GetCurFileSystem" type=
"FileSystem" overloaded=
"no"> 
34915         <autodoc>GetCurFileSystem() -
> FileSystem
</autodoc> 
34918     <pythoncode>#----------------------------------------------------------------------------
 
34919 # The global was removed  in favor of static accessor functions.  This is for
 
34920 # backwards compatibility:
 
34922 TheXmlResource = XmlResource_Get()
 
34925 #----------------------------------------------------------------------------
 
34926 #  Create a factory for handling the subclass property of the object tag.
 
34929 def _my_import(name):
 
34930     mod = __import__(name)
 
34931     components = name.split('.')
 
34932     for comp in components[
1:]:
 
34933         mod = getattr(mod, comp)
 
34937 class XmlSubclassFactory_Python(XmlSubclassFactory):
 
34938     def __init__(self):
 
34939         XmlSubclassFactory.__init__(self)
 
34941     def Create(self, className):
 
34942         assert className.find('.') != -
1, "Module name must be specified!"
 
34943         mname = className[:className.rfind('.')]
 
34944         cname = className[className.rfind('.')+
1:]
 
34945         module = _my_import(mname)
 
34946         klass = getattr(module, cname)
 
34951 XmlResource_AddSubclassFactory(XmlSubclassFactory_Python())
 
34953 #----------------------------------------------------------------------------
 
34956   <module name=
"gizmos"> 
34957     <import name=
"windows"/> 
34958     <import name=
"controls"/> 
34959     <pythoncode> wx = core 
</pythoncode> 
34960     <class name=
"DynamicSashSplitEvent" oldname=
"wxDynamicSashSplitEvent" module=
"gizmos"> 
34961       <baseclass name=
"CommandEvent"/> 
34962       <constructor name=
"DynamicSashSplitEvent" overloaded=
"no"> 
34963         <autodoc>__init__(Object target) -
> DynamicSashSplitEvent
</autodoc> 
34965           <param name=
"target" type=
"Object" default=
""/> 
34969     <class name=
"DynamicSashUnifyEvent" oldname=
"wxDynamicSashUnifyEvent" module=
"gizmos"> 
34970       <baseclass name=
"CommandEvent"/> 
34971       <constructor name=
"DynamicSashUnifyEvent" overloaded=
"no"> 
34972         <autodoc>__init__(Object target) -
> DynamicSashUnifyEvent
</autodoc> 
34974           <param name=
"target" type=
"Object" default=
""/> 
34978     <class name=
"DynamicSashWindow" oldname=
"wxDynamicSashWindow" module=
"gizmos"> 
34979       <baseclass name=
"Window"/> 
34980       <constructor name=
"DynamicSashWindow" overloaded=
"no"> 
34981         <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
34982     long style=wxCLIP_CHILDREN|wxDS_MANAGE_SCROLLBARS|wxDS_DRAG_CORNER, 
 
34983     String name=DynamicSashNameStr) -
> DynamicSashWindow
</autodoc> 
34985           <param name=
"parent" type=
"Window" default=
""/> 
34986           <param name=
"id" type=
"int" default=
""/> 
34987           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
34988           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
34989           <param name=
"style" type=
"long" default=
"wxCLIP_CHILDREN|wxDS_MANAGE_SCROLLBARS|wxDS_DRAG_CORNER"/> 
34990           <param name=
"name" type=
"String" default=
"wxPyDynamicSashNameStr"/> 
34993       <constructor name=
"PreDynamicSashWindow" overloaded=
"no"> 
34994         <autodoc>PreDynamicSashWindow() -
> DynamicSashWindow
</autodoc> 
34996       <method name=
"Create" type=
"bool" overloaded=
"no"> 
34997         <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
34998     long style=wxCLIP_CHILDREN|wxDS_MANAGE_SCROLLBARS|wxDS_DRAG_CORNER, 
 
34999     String name=DynamicSashNameStr) -
> bool
</autodoc> 
35001           <param name=
"parent" type=
"Window" default=
""/> 
35002           <param name=
"id" type=
"int" default=
""/> 
35003           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
35004           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
35005           <param name=
"style" type=
"long" default=
"wxCLIP_CHILDREN|wxDS_MANAGE_SCROLLBARS|wxDS_DRAG_CORNER"/> 
35006           <param name=
"name" type=
"String" default=
"wxPyDynamicSashNameStr"/> 
35009       <method name=
"GetHScrollBar" type=
"ScrollBar" overloaded=
"no"> 
35010         <autodoc>GetHScrollBar(Window child) -
> ScrollBar
</autodoc> 
35012           <param name=
"child" type=
"Window" default=
""/> 
35015       <method name=
"GetVScrollBar" type=
"ScrollBar" overloaded=
"no"> 
35016         <autodoc>GetVScrollBar(Window child) -
> ScrollBar
</autodoc> 
35018           <param name=
"child" type=
"Window" default=
""/> 
35023 EVT_DYNAMIC_SASH_SPLIT = wx.PyEventBinder( wxEVT_DYNAMIC_SASH_SPLIT, 
1 )
 
35024 EVT_DYNAMIC_SASH_UNIFY = wx.PyEventBinder( wxEVT_DYNAMIC_SASH_UNIFY, 
1 )
 
35026     <class name=
"EditableListBox" oldname=
"wxEditableListBox" module=
"gizmos"> 
35027       <baseclass name=
"Panel"/> 
35028       <constructor name=
"EditableListBox" overloaded=
"no"> 
35029         <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition, 
 
35030     Size size=DefaultSize, long style=wxEL_ALLOW_NEW|wxEL_ALLOW_EDIT|wxEL_ALLOW_DELETE, 
 
35031     String name=EditableListBoxNameStr) -
> EditableListBox
</autodoc> 
35033           <param name=
"parent" type=
"Window" default=
""/> 
35034           <param name=
"id" type=
"int" default=
""/> 
35035           <param name=
"label" type=
"String" default=
""/> 
35036           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
35037           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
35038           <param name=
"style" type=
"long" default=
"wxEL_ALLOW_NEW|wxEL_ALLOW_EDIT|wxEL_ALLOW_DELETE"/> 
35039           <param name=
"name" type=
"String" default=
"wxPyEditableListBoxNameStr"/> 
35042       <method name=
"SetStrings" type=
"" overloaded=
"no"> 
35043         <autodoc>SetStrings(wxArrayString strings)
</autodoc> 
35045           <param name=
"strings" type=
"wxArrayString" default=
""/> 
35048       <method name=
"GetStrings" type=
"PyObject" overloaded=
"no"> 
35049         <autodoc>GetStrings() -
> PyObject
</autodoc> 
35051       <method name=
"GetListCtrl" type=
"wxListCtrl" overloaded=
"no"> 
35052         <autodoc>GetListCtrl() -
> wxListCtrl
</autodoc> 
35054       <method name=
"GetDelButton" type=
"BitmapButton" overloaded=
"no"> 
35055         <autodoc>GetDelButton() -
> BitmapButton
</autodoc> 
35057       <method name=
"GetNewButton" type=
"BitmapButton" overloaded=
"no"> 
35058         <autodoc>GetNewButton() -
> BitmapButton
</autodoc> 
35060       <method name=
"GetUpButton" type=
"BitmapButton" overloaded=
"no"> 
35061         <autodoc>GetUpButton() -
> BitmapButton
</autodoc> 
35063       <method name=
"GetDownButton" type=
"BitmapButton" overloaded=
"no"> 
35064         <autodoc>GetDownButton() -
> BitmapButton
</autodoc> 
35066       <method name=
"GetEditButton" type=
"BitmapButton" overloaded=
"no"> 
35067         <autodoc>GetEditButton() -
> BitmapButton
</autodoc> 
35070     <class name=
"RemotelyScrolledTreeCtrl" oldname=
"wxRemotelyScrolledTreeCtrl" module=
"gizmos"> 
35071       <baseclass name=
"TreeCtrl"/> 
35072       <constructor name=
"RemotelyScrolledTreeCtrl" overloaded=
"no"> 
35073         <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
35074     long style=TR_HAS_BUTTONS) -
> RemotelyScrolledTreeCtrl
</autodoc> 
35076           <param name=
"parent" type=
"Window" default=
""/> 
35077           <param name=
"id" type=
"int" default=
""/> 
35078           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
35079           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
35080           <param name=
"style" type=
"long" default=
"wxTR_HAS_BUTTONS"/> 
35083       <method name=
"HideVScrollbar" type=
"" overloaded=
"no"> 
35084         <autodoc>HideVScrollbar()
</autodoc> 
35086       <method name=
"AdjustRemoteScrollbars" type=
"" overloaded=
"no"> 
35087         <autodoc>AdjustRemoteScrollbars()
</autodoc> 
35089       <method name=
"GetScrolledWindow" type=
"ScrolledWindow" overloaded=
"no"> 
35090         <autodoc>GetScrolledWindow() -
> ScrolledWindow
</autodoc> 
35092       <method name=
"ScrollToLine" type=
"" overloaded=
"no"> 
35093         <autodoc>ScrollToLine(int posHoriz, int posVert)
</autodoc> 
35095           <param name=
"posHoriz" type=
"int" default=
""/> 
35096           <param name=
"posVert" type=
"int" default=
""/> 
35099       <method name=
"SetCompanionWindow" type=
"" overloaded=
"no"> 
35100         <autodoc>SetCompanionWindow(Window companion)
</autodoc> 
35102           <param name=
"companion" type=
"Window" default=
""/> 
35105       <method name=
"GetCompanionWindow" type=
"Window" overloaded=
"no"> 
35106         <autodoc>GetCompanionWindow() -
> Window
</autodoc> 
35109     <class name=
"TreeCompanionWindow" oldname=
"wxPyTreeCompanionWindow" module=
"gizmos"> 
35110       <baseclass name=
"Window"/> 
35111       <constructor name=
"wxPyTreeCompanionWindow" overloaded=
"no"> 
35112         <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
35113     Size size=DefaultSize, long style=
0) -
> TreeCompanionWindow
</autodoc> 
35115           <param name=
"parent" type=
"Window" default=
""/> 
35116           <param name=
"id" type=
"int" default=
"-1"/> 
35117           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
35118           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
35119           <param name=
"style" type=
"long" default=
"0"/> 
35122       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
35123         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
35125           <param name=
"self" type=
"PyObject" default=
""/> 
35126           <param name=
"_class" type=
"PyObject" default=
""/> 
35129       <method name=
"GetTreeCtrl" type=
"RemotelyScrolledTreeCtrl" overloaded=
"no"> 
35130         <autodoc>GetTreeCtrl() -
> RemotelyScrolledTreeCtrl
</autodoc> 
35132       <method name=
"SetTreeCtrl" type=
"" overloaded=
"no"> 
35133         <autodoc>SetTreeCtrl(RemotelyScrolledTreeCtrl treeCtrl)
</autodoc> 
35135           <param name=
"treeCtrl" type=
"RemotelyScrolledTreeCtrl" default=
""/> 
35139     <class name=
"ThinSplitterWindow" oldname=
"wxThinSplitterWindow" module=
"gizmos"> 
35140       <baseclass name=
"SplitterWindow"/> 
35141       <constructor name=
"ThinSplitterWindow" overloaded=
"no"> 
35142         <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
35143     Size size=DefaultSize, long style=wxSP_3D|wxCLIP_CHILDREN) -
> ThinSplitterWindow
</autodoc> 
35145           <param name=
"parent" type=
"Window" default=
""/> 
35146           <param name=
"id" type=
"int" default=
"-1"/> 
35147           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
35148           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
35149           <param name=
"style" type=
"long" default=
"wxSP_3D|wxCLIP_CHILDREN"/> 
35153     <class name=
"SplitterScrolledWindow" oldname=
"wxSplitterScrolledWindow" module=
"gizmos"> 
35154       <baseclass name=
"ScrolledWindow"/> 
35155       <constructor name=
"SplitterScrolledWindow" overloaded=
"no"> 
35156         <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
35157     Size size=DefaultSize, long style=
0) -
> SplitterScrolledWindow
</autodoc> 
35159           <param name=
"parent" type=
"Window" default=
""/> 
35160           <param name=
"id" type=
"int" default=
"-1"/> 
35161           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
35162           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
35163           <param name=
"style" type=
"long" default=
"0"/> 
35167     <class name=
"LEDNumberCtrl" oldname=
"wxLEDNumberCtrl" module=
"gizmos"> 
35168       <baseclass name=
"Control"/> 
35169       <constructor name=
"LEDNumberCtrl" overloaded=
"no"> 
35170         <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
35171     Size size=DefaultSize, long style=wxLED_ALIGN_LEFT|wxLED_DRAW_FADED) -
> LEDNumberCtrl
</autodoc> 
35173           <param name=
"parent" type=
"Window" default=
""/> 
35174           <param name=
"id" type=
"int" default=
"-1"/> 
35175           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
35176           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
35177           <param name=
"style" type=
"long" default=
"wxLED_ALIGN_LEFT|wxLED_DRAW_FADED"/> 
35180       <constructor name=
"PreLEDNumberCtrl" overloaded=
"no"> 
35181         <autodoc>PreLEDNumberCtrl() -
> LEDNumberCtrl
</autodoc> 
35183       <method name=
"Create" type=
"bool" overloaded=
"no"> 
35184         <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
35185     Size size=DefaultSize, long style=wxLED_ALIGN_LEFT|wxLED_DRAW_FADED) -
> bool
</autodoc> 
35187           <param name=
"parent" type=
"Window" default=
""/> 
35188           <param name=
"id" type=
"int" default=
"-1"/> 
35189           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
35190           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
35191           <param name=
"style" type=
"long" default=
"wxLED_ALIGN_LEFT|wxLED_DRAW_FADED"/> 
35194       <method name=
"GetAlignment" type=
"wxLEDValueAlign" overloaded=
"no"> 
35195         <autodoc>GetAlignment() -
> int
</autodoc> 
35197       <method name=
"GetDrawFaded" type=
"bool" overloaded=
"no"> 
35198         <autodoc>GetDrawFaded() -
> bool
</autodoc> 
35200       <method name=
"GetValue" type=
"String" overloaded=
"no"> 
35201         <autodoc>GetValue() -
> String
</autodoc> 
35203       <method name=
"SetAlignment" type=
"" overloaded=
"no"> 
35204         <autodoc>SetAlignment(int Alignment, bool Redraw=true)
</autodoc> 
35206           <param name=
"Alignment" type=
"wxLEDValueAlign" default=
""/> 
35207           <param name=
"Redraw" type=
"bool" default=
"true"/> 
35210       <method name=
"SetDrawFaded" type=
"" overloaded=
"no"> 
35211         <autodoc>SetDrawFaded(bool DrawFaded, bool Redraw=true)
</autodoc> 
35213           <param name=
"DrawFaded" type=
"bool" default=
""/> 
35214           <param name=
"Redraw" type=
"bool" default=
"true"/> 
35217       <method name=
"SetValue" type=
"" overloaded=
"no"> 
35218         <autodoc>SetValue(String Value, bool Redraw=true)
</autodoc> 
35220           <param name=
"Value" type=
"String" default=
""/> 
35221           <param name=
"Redraw" type=
"bool" default=
"true"/> 
35225     <class name=
"TreeListColumnInfo" oldname=
"wxTreeListColumnInfo" module=
"gizmos"> 
35226       <baseclass name=
"Object"/> 
35227       <constructor name=
"TreeListColumnInfo" overloaded=
"no"> 
35228         <autodoc>__init__(String text=EmptyString, int image=-
1, size_t width=
100, 
 
35229     int alignment=TL_ALIGN_LEFT) -
> TreeListColumnInfo
</autodoc> 
35231           <param name=
"text" type=
"String" default=
"wxPyEmptyString"/> 
35232           <param name=
"image" type=
"int" default=
"-1"/> 
35233           <param name=
"width" type=
"size_t" default=
"100"/> 
35234           <param name=
"alignment" type=
"wxTreeListColumnAlign" default=
"wxTL_ALIGN_LEFT"/> 
35237       <method name=
"GetAlignment" type=
"wxTreeListColumnAlign" overloaded=
"no"> 
35238         <autodoc>GetAlignment() -
> int
</autodoc> 
35240       <method name=
"GetText" type=
"String" overloaded=
"no"> 
35241         <autodoc>GetText() -
> String
</autodoc> 
35243       <method name=
"GetImage" type=
"int" overloaded=
"no"> 
35244         <autodoc>GetImage() -
> int
</autodoc> 
35246       <method name=
"GetSelectedImage" type=
"int" overloaded=
"no"> 
35247         <autodoc>GetSelectedImage() -
> int
</autodoc> 
35249       <method name=
"GetWidth" type=
"size_t" overloaded=
"no"> 
35250         <autodoc>GetWidth() -
> size_t
</autodoc> 
35252       <method name=
"SetAlignment" type=
"" overloaded=
"no"> 
35253         <autodoc>SetAlignment(int alignment)
</autodoc> 
35255           <param name=
"alignment" type=
"wxTreeListColumnAlign" default=
""/> 
35258       <method name=
"SetText" type=
"" overloaded=
"no"> 
35259         <autodoc>SetText(String text)
</autodoc> 
35261           <param name=
"text" type=
"String" default=
""/> 
35264       <method name=
"SetImage" type=
"" overloaded=
"no"> 
35265         <autodoc>SetImage(int image)
</autodoc> 
35267           <param name=
"image" type=
"int" default=
""/> 
35270       <method name=
"SetSelectedImage" type=
"" overloaded=
"no"> 
35271         <autodoc>SetSelectedImage(int image)
</autodoc> 
35273           <param name=
"image" type=
"int" default=
""/> 
35276       <method name=
"SetWidth" type=
"" overloaded=
"no"> 
35277         <autodoc>SetWidth(size_t with)
</autodoc> 
35279           <param name=
"with" type=
"size_t" default=
""/> 
35283     <class name=
"TreeListCtrl" oldname=
"wxPyTreeListCtrl" module=
"gizmos"> 
35284       <baseclass name=
"Control"/> 
35285       <constructor name=
"wxPyTreeListCtrl" overloaded=
"no"> 
35286         <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
35287     Size size=DefaultSize, long style=TR_DEFAULT_STYLE, 
 
35288     Validator validator=DefaultValidator, 
 
35289     String name=TreeListCtrlNameStr) -
> TreeListCtrl
</autodoc> 
35291           <param name=
"parent" type=
"Window" default=
""/> 
35292           <param name=
"id" type=
"int" default=
"-1"/> 
35293           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
35294           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
35295           <param name=
"style" type=
"long" default=
"wxTR_DEFAULT_STYLE"/> 
35296           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
35297           <param name=
"name" type=
"String" default=
"wxPyTreeListCtrlNameStr"/> 
35300       <constructor name=
"PreTreeListCtrl" overloaded=
"no"> 
35301         <autodoc>PreTreeListCtrl() -
> TreeListCtrl
</autodoc> 
35303       <method name=
"Create" type=
"bool" overloaded=
"no"> 
35304         <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
35305     Size size=DefaultSize, long style=TR_DEFAULT_STYLE, 
 
35306     Validator validator=DefaultValidator, 
 
35307     String name=TreeListCtrlNameStr) -
> bool
</autodoc> 
35309           <param name=
"parent" type=
"Window" default=
""/> 
35310           <param name=
"id" type=
"int" default=
"-1"/> 
35311           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
35312           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
35313           <param name=
"style" type=
"long" default=
"wxTR_DEFAULT_STYLE"/> 
35314           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
35315           <param name=
"name" type=
"String" default=
"wxPyTreeListCtrlNameStr"/> 
35318       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
35319         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
35321           <param name=
"self" type=
"PyObject" default=
""/> 
35322           <param name=
"_class" type=
"PyObject" default=
""/> 
35325       <method name=
"GetCount" type=
"size_t" overloaded=
"no"> 
35326         <autodoc>GetCount() -
> size_t
</autodoc> 
35328       <method name=
"GetIndent" type=
"unsigned int" overloaded=
"no"> 
35329         <autodoc>GetIndent() -
> unsigned int
</autodoc> 
35331       <method name=
"SetIndent" type=
"" overloaded=
"no"> 
35332         <autodoc>SetIndent(unsigned int indent)
</autodoc> 
35334           <param name=
"indent" type=
"unsigned int" default=
""/> 
35337       <method name=
"GetSpacing" type=
"unsigned int" overloaded=
"no"> 
35338         <autodoc>GetSpacing() -
> unsigned int
</autodoc> 
35340       <method name=
"SetSpacing" type=
"" overloaded=
"no"> 
35341         <autodoc>SetSpacing(unsigned int spacing)
</autodoc> 
35343           <param name=
"spacing" type=
"unsigned int" default=
""/> 
35346       <method name=
"GetLineSpacing" type=
"unsigned int" overloaded=
"no"> 
35347         <autodoc>GetLineSpacing() -
> unsigned int
</autodoc> 
35349       <method name=
"SetLineSpacing" type=
"" overloaded=
"no"> 
35350         <autodoc>SetLineSpacing(unsigned int spacing)
</autodoc> 
35352           <param name=
"spacing" type=
"unsigned int" default=
""/> 
35355       <method name=
"GetImageList" type=
"ImageList" overloaded=
"no"> 
35356         <autodoc>GetImageList() -
> ImageList
</autodoc> 
35358       <method name=
"GetStateImageList" type=
"ImageList" overloaded=
"no"> 
35359         <autodoc>GetStateImageList() -
> ImageList
</autodoc> 
35361       <method name=
"GetButtonsImageList" type=
"ImageList" overloaded=
"no"> 
35362         <autodoc>GetButtonsImageList() -
> ImageList
</autodoc> 
35364       <method name=
"SetImageList" type=
"" overloaded=
"no"> 
35365         <autodoc>SetImageList(ImageList imageList)
</autodoc> 
35367           <param name=
"imageList" type=
"ImageList" default=
""/> 
35370       <method name=
"SetStateImageList" type=
"" overloaded=
"no"> 
35371         <autodoc>SetStateImageList(ImageList imageList)
</autodoc> 
35373           <param name=
"imageList" type=
"ImageList" default=
""/> 
35376       <method name=
"SetButtonsImageList" type=
"" overloaded=
"no"> 
35377         <autodoc>SetButtonsImageList(ImageList imageList)
</autodoc> 
35379           <param name=
"imageList" type=
"ImageList" default=
""/> 
35382       <method name=
"AssignImageList" type=
"" overloaded=
"no"> 
35383         <autodoc>AssignImageList(ImageList imageList)
</autodoc> 
35385           <param name=
"imageList" type=
"ImageList" default=
""/> 
35388       <method name=
"AssignStateImageList" type=
"" overloaded=
"no"> 
35389         <autodoc>AssignStateImageList(ImageList imageList)
</autodoc> 
35391           <param name=
"imageList" type=
"ImageList" default=
""/> 
35394       <method name=
"AssignButtonsImageList" type=
"" overloaded=
"no"> 
35395         <autodoc>AssignButtonsImageList(ImageList imageList)
</autodoc> 
35397           <param name=
"imageList" type=
"ImageList" default=
""/> 
35400       <method name=
"AddColumn" type=
"" overloaded=
"no"> 
35401         <autodoc>AddColumn(String text)
</autodoc> 
35403           <param name=
"text" type=
"String" default=
""/> 
35406       <method name=
"AddColumnInfo" type=
"" overloaded=
"no"> 
35407         <autodoc>AddColumnInfo(TreeListColumnInfo col)
</autodoc> 
35409           <param name=
"col" type=
"TreeListColumnInfo" default=
""/> 
35412       <method name=
"InsertColumn" type=
"" overloaded=
"no"> 
35413         <autodoc>InsertColumn(size_t before, String text)
</autodoc> 
35415           <param name=
"before" type=
"size_t" default=
""/> 
35416           <param name=
"text" type=
"String" default=
""/> 
35419       <method name=
"InsertColumnInfo" type=
"" overloaded=
"no"> 
35420         <autodoc>InsertColumnInfo(size_t before, TreeListColumnInfo col)
</autodoc> 
35422           <param name=
"before" type=
"size_t" default=
""/> 
35423           <param name=
"col" type=
"TreeListColumnInfo" default=
""/> 
35426       <method name=
"RemoveColumn" type=
"" overloaded=
"no"> 
35427         <autodoc>RemoveColumn(size_t column)
</autodoc> 
35429           <param name=
"column" type=
"size_t" default=
""/> 
35432       <method name=
"GetColumnCount" type=
"size_t" overloaded=
"no"> 
35433         <autodoc>GetColumnCount() -
> size_t
</autodoc> 
35435       <method name=
"SetColumnWidth" type=
"" overloaded=
"no"> 
35436         <autodoc>SetColumnWidth(size_t column, size_t width)
</autodoc> 
35438           <param name=
"column" type=
"size_t" default=
""/> 
35439           <param name=
"width" type=
"size_t" default=
""/> 
35442       <method name=
"GetColumnWidth" type=
"int" overloaded=
"no"> 
35443         <autodoc>GetColumnWidth(size_t column) -
> int
</autodoc> 
35445           <param name=
"column" type=
"size_t" default=
""/> 
35448       <method name=
"SetMainColumn" type=
"" overloaded=
"no"> 
35449         <autodoc>SetMainColumn(size_t column)
</autodoc> 
35451           <param name=
"column" type=
"size_t" default=
""/> 
35454       <method name=
"GetMainColumn" type=
"size_t" overloaded=
"no"> 
35455         <autodoc>GetMainColumn() -
> size_t
</autodoc> 
35457       <method name=
"SetColumnText" type=
"" overloaded=
"no"> 
35458         <autodoc>SetColumnText(size_t column, String text)
</autodoc> 
35460           <param name=
"column" type=
"size_t" default=
""/> 
35461           <param name=
"text" type=
"String" default=
""/> 
35464       <method name=
"GetColumnText" type=
"String" overloaded=
"no"> 
35465         <autodoc>GetColumnText(size_t column) -
> String
</autodoc> 
35467           <param name=
"column" type=
"size_t" default=
""/> 
35470       <method name=
"SetColumn" type=
"" overloaded=
"no"> 
35471         <autodoc>SetColumn(size_t column, TreeListColumnInfo info)
</autodoc> 
35473           <param name=
"column" type=
"size_t" default=
""/> 
35474           <param name=
"info" type=
"TreeListColumnInfo" default=
""/> 
35477       <method name=
"GetColumn" type=
"TreeListColumnInfo" overloaded=
"no"> 
35478         <autodoc>GetColumn(size_t column) -
> TreeListColumnInfo
</autodoc> 
35480           <param name=
"column" type=
"size_t" default=
""/> 
35483       <method name=
"SetColumnAlignment" type=
"" overloaded=
"no"> 
35484         <autodoc>SetColumnAlignment(size_t column, int align)
</autodoc> 
35486           <param name=
"column" type=
"size_t" default=
""/> 
35487           <param name=
"align" type=
"wxTreeListColumnAlign" default=
""/> 
35490       <method name=
"GetColumnAlignment" type=
"wxTreeListColumnAlign" overloaded=
"no"> 
35491         <autodoc>GetColumnAlignment(size_t column) -
> int
</autodoc> 
35493           <param name=
"column" type=
"size_t" default=
""/> 
35496       <method name=
"SetColumnImage" type=
"" overloaded=
"no"> 
35497         <autodoc>SetColumnImage(size_t column, int image)
</autodoc> 
35499           <param name=
"column" type=
"size_t" default=
""/> 
35500           <param name=
"image" type=
"int" default=
""/> 
35503       <method name=
"GetColumnImage" type=
"int" overloaded=
"no"> 
35504         <autodoc>GetColumnImage(size_t column) -
> int
</autodoc> 
35506           <param name=
"column" type=
"size_t" default=
""/> 
35509       <method name=
"GetItemText" type=
"String" overloaded=
"no"> 
35510         <autodoc>GetItemText(TreeItemId item, int column=-
1) -
> String
</autodoc> 
35512           <param name=
"item" type=
"TreeItemId" default=
""/> 
35513           <param name=
"column" type=
"int" default=
"-1"/> 
35516       <method name=
"GetItemImage" type=
"int" overloaded=
"no"> 
35517         <autodoc>GetItemImage(TreeItemId item, int column=-
1, int which=TreeItemIcon_Normal) -
> int
</autodoc> 
35519           <param name=
"item" type=
"TreeItemId" default=
""/> 
35520           <param name=
"column" type=
"int" default=
"-1"/> 
35521           <param name=
"which" type=
"wxTreeItemIcon" default=
"wxTreeItemIcon_Normal"/> 
35524       <method name=
"SetItemText" type=
"" overloaded=
"no"> 
35525         <autodoc>SetItemText(TreeItemId item, String text, int column=-
1)
</autodoc> 
35527           <param name=
"item" type=
"TreeItemId" default=
""/> 
35528           <param name=
"text" type=
"String" default=
""/> 
35529           <param name=
"column" type=
"int" default=
"-1"/> 
35532       <method name=
"SetItemImage" type=
"" overloaded=
"no"> 
35533         <autodoc>SetItemImage(TreeItemId item, int image, int column=-
1, int which=TreeItemIcon_Normal)
</autodoc> 
35535           <param name=
"item" type=
"TreeItemId" default=
""/> 
35536           <param name=
"image" type=
"int" default=
""/> 
35537           <param name=
"column" type=
"int" default=
"-1"/> 
35538           <param name=
"which" type=
"wxTreeItemIcon" default=
"wxTreeItemIcon_Normal"/> 
35541       <method name=
"GetItemData" type=
"TreeItemData" overloaded=
"no"> 
35542         <autodoc>GetItemData(TreeItemId item) -
> TreeItemData
</autodoc> 
35544           <param name=
"item" type=
"TreeItemId" default=
""/> 
35547       <method name=
"SetItemData" type=
"" overloaded=
"no"> 
35548         <autodoc>SetItemData(TreeItemId item, TreeItemData data)
</autodoc> 
35550           <param name=
"item" type=
"TreeItemId" default=
""/> 
35551           <param name=
"data" type=
"TreeItemData" default=
""/> 
35554       <method name=
"GetItemPyData" type=
"PyObject" overloaded=
"no"> 
35555         <autodoc>GetItemPyData(TreeItemId item) -
> PyObject
</autodoc> 
35557           <param name=
"item" type=
"TreeItemId" default=
""/> 
35560       <method name=
"SetItemPyData" type=
"" overloaded=
"no"> 
35561         <autodoc>SetItemPyData(TreeItemId item, PyObject obj)
</autodoc> 
35563           <param name=
"item" type=
"TreeItemId" default=
""/> 
35564           <param name=
"obj" type=
"PyObject" default=
""/> 
35567       <method name=
"SetItemHasChildren" type=
"" overloaded=
"no"> 
35568         <autodoc>SetItemHasChildren(TreeItemId item, bool has=True)
</autodoc> 
35570           <param name=
"item" type=
"TreeItemId" default=
""/> 
35571           <param name=
"has" type=
"bool" default=
"True"/> 
35574       <method name=
"SetItemBold" type=
"" overloaded=
"no"> 
35575         <autodoc>SetItemBold(TreeItemId item, bool bold=True)
</autodoc> 
35577           <param name=
"item" type=
"TreeItemId" default=
""/> 
35578           <param name=
"bold" type=
"bool" default=
"True"/> 
35581       <method name=
"SetItemTextColour" type=
"" overloaded=
"no"> 
35582         <autodoc>SetItemTextColour(TreeItemId item, Colour col)
</autodoc> 
35584           <param name=
"item" type=
"TreeItemId" default=
""/> 
35585           <param name=
"col" type=
"Colour" default=
""/> 
35588       <method name=
"SetItemBackgroundColour" type=
"" overloaded=
"no"> 
35589         <autodoc>SetItemBackgroundColour(TreeItemId item, Colour col)
</autodoc> 
35591           <param name=
"item" type=
"TreeItemId" default=
""/> 
35592           <param name=
"col" type=
"Colour" default=
""/> 
35595       <method name=
"SetItemFont" type=
"" overloaded=
"no"> 
35596         <autodoc>SetItemFont(TreeItemId item, Font font)
</autodoc> 
35598           <param name=
"item" type=
"TreeItemId" default=
""/> 
35599           <param name=
"font" type=
"Font" default=
""/> 
35602       <method name=
"GetItemBold" type=
"bool" overloaded=
"no"> 
35603         <autodoc>GetItemBold(TreeItemId item) -
> bool
</autodoc> 
35605           <param name=
"item" type=
"TreeItemId" default=
""/> 
35608       <method name=
"GetItemTextColour" type=
"Colour" overloaded=
"no"> 
35609         <autodoc>GetItemTextColour(TreeItemId item) -
> Colour
</autodoc> 
35611           <param name=
"item" type=
"TreeItemId" default=
""/> 
35614       <method name=
"GetItemBackgroundColour" type=
"Colour" overloaded=
"no"> 
35615         <autodoc>GetItemBackgroundColour(TreeItemId item) -
> Colour
</autodoc> 
35617           <param name=
"item" type=
"TreeItemId" default=
""/> 
35620       <method name=
"GetItemFont" type=
"Font" overloaded=
"no"> 
35621         <autodoc>GetItemFont(TreeItemId item) -
> Font
</autodoc> 
35623           <param name=
"item" type=
"TreeItemId" default=
""/> 
35626       <method name=
"IsVisible" type=
"bool" overloaded=
"no"> 
35627         <autodoc>IsVisible(TreeItemId item) -
> bool
</autodoc> 
35629           <param name=
"item" type=
"TreeItemId" default=
""/> 
35632       <method name=
"ItemHasChildren" type=
"bool" overloaded=
"no"> 
35633         <autodoc>ItemHasChildren(TreeItemId item) -
> bool
</autodoc> 
35635           <param name=
"item" type=
"TreeItemId" default=
""/> 
35638       <method name=
"IsExpanded" type=
"bool" overloaded=
"no"> 
35639         <autodoc>IsExpanded(TreeItemId item) -
> bool
</autodoc> 
35641           <param name=
"item" type=
"TreeItemId" default=
""/> 
35644       <method name=
"IsSelected" type=
"bool" overloaded=
"no"> 
35645         <autodoc>IsSelected(TreeItemId item) -
> bool
</autodoc> 
35647           <param name=
"item" type=
"TreeItemId" default=
""/> 
35650       <method name=
"IsBold" type=
"bool" overloaded=
"no"> 
35651         <autodoc>IsBold(TreeItemId item) -
> bool
</autodoc> 
35653           <param name=
"item" type=
"TreeItemId" default=
""/> 
35656       <method name=
"GetChildrenCount" type=
"size_t" overloaded=
"no"> 
35657         <autodoc>GetChildrenCount(TreeItemId item, bool recursively=True) -
> size_t
</autodoc> 
35659           <param name=
"item" type=
"TreeItemId" default=
""/> 
35660           <param name=
"recursively" type=
"bool" default=
"True"/> 
35663       <method name=
"GetRootItem" type=
"TreeItemId" overloaded=
"no"> 
35664         <autodoc>GetRootItem() -
> TreeItemId
</autodoc> 
35666       <method name=
"GetSelection" type=
"TreeItemId" overloaded=
"no"> 
35667         <autodoc>GetSelection() -
> TreeItemId
</autodoc> 
35669       <method name=
"GetSelections" type=
"PyObject" overloaded=
"no"> 
35670         <autodoc>GetSelections() -
> PyObject
</autodoc> 
35672       <method name=
"GetItemParent" type=
"TreeItemId" overloaded=
"no"> 
35673         <autodoc>GetItemParent(TreeItemId item) -
> TreeItemId
</autodoc> 
35675           <param name=
"item" type=
"TreeItemId" default=
""/> 
35678       <method name=
"GetFirstChild" type=
"PyObject" overloaded=
"no"> 
35679         <autodoc>GetFirstChild(TreeItemId item) -
> PyObject
</autodoc> 
35681           <param name=
"item" type=
"TreeItemId" default=
""/> 
35684       <method name=
"GetNextChild" type=
"PyObject" overloaded=
"no"> 
35685         <autodoc>GetNextChild(TreeItemId item, long cookie) -
> PyObject
</autodoc> 
35687           <param name=
"item" type=
"TreeItemId" default=
""/> 
35688           <param name=
"cookie" type=
"long" default=
""/> 
35691       <method name=
"GetLastChild" type=
"TreeItemId" overloaded=
"no"> 
35692         <autodoc>GetLastChild(TreeItemId item) -
> TreeItemId
</autodoc> 
35694           <param name=
"item" type=
"TreeItemId" default=
""/> 
35697       <method name=
"GetNextSibling" type=
"TreeItemId" overloaded=
"no"> 
35698         <autodoc>GetNextSibling(TreeItemId item) -
> TreeItemId
</autodoc> 
35700           <param name=
"item" type=
"TreeItemId" default=
""/> 
35703       <method name=
"GetPrevSibling" type=
"TreeItemId" overloaded=
"no"> 
35704         <autodoc>GetPrevSibling(TreeItemId item) -
> TreeItemId
</autodoc> 
35706           <param name=
"item" type=
"TreeItemId" default=
""/> 
35709       <method name=
"GetFirstVisibleItem" type=
"TreeItemId" overloaded=
"no"> 
35710         <autodoc>GetFirstVisibleItem() -
> TreeItemId
</autodoc> 
35712       <method name=
"GetNextVisible" type=
"TreeItemId" overloaded=
"no"> 
35713         <autodoc>GetNextVisible(TreeItemId item) -
> TreeItemId
</autodoc> 
35715           <param name=
"item" type=
"TreeItemId" default=
""/> 
35718       <method name=
"GetPrevVisible" type=
"TreeItemId" overloaded=
"no"> 
35719         <autodoc>GetPrevVisible(TreeItemId item) -
> TreeItemId
</autodoc> 
35721           <param name=
"item" type=
"TreeItemId" default=
""/> 
35724       <method name=
"GetNext" type=
"TreeItemId" overloaded=
"no"> 
35725         <autodoc>GetNext(TreeItemId item) -
> TreeItemId
</autodoc> 
35727           <param name=
"item" type=
"TreeItemId" default=
""/> 
35730       <method name=
"AddRoot" type=
"TreeItemId" overloaded=
"no"> 
35731         <autodoc>AddRoot(String text, int image=-
1, int selectedImage=-
1, TreeItemData data=None) -
> TreeItemId
</autodoc> 
35733           <param name=
"text" type=
"String" default=
""/> 
35734           <param name=
"image" type=
"int" default=
"-1"/> 
35735           <param name=
"selectedImage" type=
"int" default=
"-1"/> 
35736           <param name=
"data" type=
"TreeItemData" default=
"NULL"/> 
35739       <method name=
"PrependItem" type=
"TreeItemId" overloaded=
"no"> 
35740         <autodoc>PrependItem(TreeItemId parent, String text, int image=-
1, int selectedImage=-
1, 
 
35741     TreeItemData data=None) -
> TreeItemId
</autodoc> 
35743           <param name=
"parent" type=
"TreeItemId" default=
""/> 
35744           <param name=
"text" type=
"String" default=
""/> 
35745           <param name=
"image" type=
"int" default=
"-1"/> 
35746           <param name=
"selectedImage" type=
"int" default=
"-1"/> 
35747           <param name=
"data" type=
"TreeItemData" default=
"NULL"/> 
35750       <method name=
"InsertItem" type=
"TreeItemId" overloaded=
"no"> 
35751         <autodoc>InsertItem(TreeItemId parent, TreeItemId idPrevious, String text, 
 
35752     int image=-
1, int selectedImage=-
1, TreeItemData data=None) -
> TreeItemId
</autodoc> 
35754           <param name=
"parent" type=
"TreeItemId" default=
""/> 
35755           <param name=
"idPrevious" type=
"TreeItemId" default=
""/> 
35756           <param name=
"text" type=
"String" default=
""/> 
35757           <param name=
"image" type=
"int" default=
"-1"/> 
35758           <param name=
"selectedImage" type=
"int" default=
"-1"/> 
35759           <param name=
"data" type=
"TreeItemData" default=
"NULL"/> 
35762       <method name=
"InsertItemBefore" type=
"TreeItemId" overloaded=
"no"> 
35763         <autodoc>InsertItemBefore(TreeItemId parent, size_t index, String text, int image=-
1, 
 
35764     int selectedImage=-
1, TreeItemData data=None) -
> TreeItemId
</autodoc> 
35766           <param name=
"parent" type=
"TreeItemId" default=
""/> 
35767           <param name=
"index" type=
"size_t" default=
""/> 
35768           <param name=
"text" type=
"String" default=
""/> 
35769           <param name=
"image" type=
"int" default=
"-1"/> 
35770           <param name=
"selectedImage" type=
"int" default=
"-1"/> 
35771           <param name=
"data" type=
"TreeItemData" default=
"NULL"/> 
35774       <method name=
"AppendItem" type=
"TreeItemId" overloaded=
"no"> 
35775         <autodoc>AppendItem(TreeItemId parent, String text, int image=-
1, int selectedImage=-
1, 
 
35776     TreeItemData data=None) -
> TreeItemId
</autodoc> 
35778           <param name=
"parent" type=
"TreeItemId" default=
""/> 
35779           <param name=
"text" type=
"String" default=
""/> 
35780           <param name=
"image" type=
"int" default=
"-1"/> 
35781           <param name=
"selectedImage" type=
"int" default=
"-1"/> 
35782           <param name=
"data" type=
"TreeItemData" default=
"NULL"/> 
35785       <method name=
"Delete" type=
"" overloaded=
"no"> 
35786         <autodoc>Delete(TreeItemId item)
</autodoc> 
35788           <param name=
"item" type=
"TreeItemId" default=
""/> 
35791       <method name=
"DeleteChildren" type=
"" overloaded=
"no"> 
35792         <autodoc>DeleteChildren(TreeItemId item)
</autodoc> 
35794           <param name=
"item" type=
"TreeItemId" default=
""/> 
35797       <method name=
"DeleteAllItems" type=
"" overloaded=
"no"> 
35798         <autodoc>DeleteAllItems()
</autodoc> 
35800       <method name=
"Expand" type=
"" overloaded=
"no"> 
35801         <autodoc>Expand(TreeItemId item)
</autodoc> 
35803           <param name=
"item" type=
"TreeItemId" default=
""/> 
35806       <method name=
"ExpandAll" type=
"" overloaded=
"no"> 
35807         <autodoc>ExpandAll(TreeItemId item)
</autodoc> 
35809           <param name=
"item" type=
"TreeItemId" default=
""/> 
35812       <method name=
"Collapse" type=
"" overloaded=
"no"> 
35813         <autodoc>Collapse(TreeItemId item)
</autodoc> 
35815           <param name=
"item" type=
"TreeItemId" default=
""/> 
35818       <method name=
"CollapseAndReset" type=
"" overloaded=
"no"> 
35819         <autodoc>CollapseAndReset(TreeItemId item)
</autodoc> 
35821           <param name=
"item" type=
"TreeItemId" default=
""/> 
35824       <method name=
"Toggle" type=
"" overloaded=
"no"> 
35825         <autodoc>Toggle(TreeItemId item)
</autodoc> 
35827           <param name=
"item" type=
"TreeItemId" default=
""/> 
35830       <method name=
"Unselect" type=
"" overloaded=
"no"> 
35831         <autodoc>Unselect()
</autodoc> 
35833       <method name=
"UnselectAll" type=
"" overloaded=
"no"> 
35834         <autodoc>UnselectAll()
</autodoc> 
35836       <method name=
"SelectItem" type=
"" overloaded=
"no"> 
35837         <autodoc>SelectItem(TreeItemId item, bool unselect_others=True, bool extended_select=False)
</autodoc> 
35839           <param name=
"item" type=
"TreeItemId" default=
""/> 
35840           <param name=
"unselect_others" type=
"bool" default=
"True"/> 
35841           <param name=
"extended_select" type=
"bool" default=
"False"/> 
35844       <method name=
"EnsureVisible" type=
"" overloaded=
"no"> 
35845         <autodoc>EnsureVisible(TreeItemId item)
</autodoc> 
35847           <param name=
"item" type=
"TreeItemId" default=
""/> 
35850       <method name=
"ScrollTo" type=
"" overloaded=
"no"> 
35851         <autodoc>ScrollTo(TreeItemId item)
</autodoc> 
35853           <param name=
"item" type=
"TreeItemId" default=
""/> 
35856       <method name=
"HitTest" type=
"TreeItemId" overloaded=
"no"> 
35857         <autodoc>HitTest(Point point, int OUTPUT, int OUTPUT) -
> TreeItemId
</autodoc> 
35859           <param name=
"point" type=
"Point" default=
""/> 
35860           <param name=
"OUTPUT" type=
"int" default=
""/> 
35861           <param name=
"OUTPUT" type=
"int" default=
""/> 
35864       <method name=
"GetBoundingRect" type=
"PyObject" overloaded=
"no"> 
35865         <autodoc>GetBoundingRect(TreeItemId item, bool textOnly=False) -
> PyObject
</autodoc> 
35867           <param name=
"item" type=
"TreeItemId" default=
""/> 
35868           <param name=
"textOnly" type=
"bool" default=
"False"/> 
35871       <method name=
"EditLabel" type=
"" overloaded=
"no"> 
35872         <autodoc>EditLabel(TreeItemId item)
</autodoc> 
35874           <param name=
"item" type=
"TreeItemId" default=
""/> 
35877       <method name=
"Edit" type=
"" overloaded=
"no"> 
35878         <autodoc>Edit(TreeItemId item)
</autodoc> 
35880           <param name=
"item" type=
"TreeItemId" default=
""/> 
35883       <method name=
"SortChildren" type=
"" overloaded=
"no"> 
35884         <autodoc>SortChildren(TreeItemId item)
</autodoc> 
35886           <param name=
"item" type=
"TreeItemId" default=
""/> 
35889       <method name=
"GetItemSelectedImage" type=
"int" overloaded=
"no"> 
35890         <autodoc>GetItemSelectedImage(TreeItemId item) -
> int
</autodoc> 
35892           <param name=
"item" type=
"TreeItemId" default=
""/> 
35895       <method name=
"SetItemSelectedImage" type=
"" overloaded=
"no"> 
35896         <autodoc>SetItemSelectedImage(TreeItemId item, int image)
</autodoc> 
35898           <param name=
"item" type=
"TreeItemId" default=
""/> 
35899           <param name=
"image" type=
"int" default=
""/> 
35902       <method name=
"GetHeaderWindow" type=
"Window" overloaded=
"no"> 
35903         <autodoc>GetHeaderWindow() -
> Window
</autodoc> 
35905       <method name=
"GetMainWindow" type=
"Window" overloaded=
"no"> 
35906         <autodoc>GetMainWindow() -
> Window
</autodoc> 
35910 </wxPython-metadata>