5 #// Give a reference to the dictionary of this module to the C++ extension
 
   7 _core._wxPySetDictionary(vars())
 
   9 #// A little trick to make 'wx' be a reference to this module so wx.Names can
 
  12 wx = _sys.modules[__name__]
 
  15 #---------------------------------------------------------------------------
 
  17     <class name=
"Object" oldname=
"wxObject" module=
"core"> 
  18       <docstring>The base class for most wx objects, although in wxPython not
 
  19 much functionality is needed nor exposed.
</docstring> 
  20       <method name=
"GetClassName" type=
"String" overloaded=
"no"> 
  21         <autodoc>GetClassName() -
> String
</autodoc> 
  22         <docstring>Returns the class name of the C++ object using wxRTTI.
</docstring> 
  24       <method name=
"Destroy" type=
"" overloaded=
"no"> 
  25         <autodoc>Destroy()
</autodoc> 
  26         <docstring>Deletes the C++ object this Python object is a proxy for.
</docstring> 
  30 #---------------------------------------------------------------------------
 
  33 #---------------------------------------------------------------------------
 
  35     <class name=
"Size" oldname=
"wxSize" module=
"core"> 
  36       <docstring>wx.Size is a useful data structure used to represent the size of something.
 
  37 It simply contians integer width and height proprtites.  In most places in
 
  38 wxPython where a wx.Size is expected a (width,height) tuple can be used
 
  40       <constructor name=
"Size" overloaded=
"no"> 
  41         <autodoc>__init__(int w=
0, int h=
0) -
> Size
</autodoc> 
  42         <docstring>Creates a size object.
</docstring> 
  44           <param name=
"w" type=
"int" default=
"0"/> 
  45           <param name=
"h" type=
"int" default=
"0"/> 
  48       <destructor name=
"~wxSize" overloaded=
"no"> 
  49         <autodoc>__del__()
</autodoc> 
  51       <property name=
"width" type=
"int" readonly=
"no"/> 
  52       <property name=
"height" type=
"int" readonly=
"no"/> 
  53       <method name=
"__eq__" type=
"bool" overloaded=
"no"> 
  54         <autodoc>__eq__(Size sz) -
> bool
</autodoc> 
  55         <docstring>Test for equality of wx.Size objects.
</docstring> 
  57           <param name=
"sz" type=
"Size" default=
""/> 
  60       <method name=
"__ne__" type=
"bool" overloaded=
"no"> 
  61         <autodoc>__ne__(Size sz) -
> bool
</autodoc> 
  62         <docstring>Test for inequality.
</docstring> 
  64           <param name=
"sz" type=
"Size" default=
""/> 
  67       <method name=
"__add__" type=
"Size" overloaded=
"no"> 
  68         <autodoc>__add__(Size sz) -
> Size
</autodoc> 
  69         <docstring>Add sz's proprties to this and return the result.
</docstring> 
  71           <param name=
"sz" type=
"Size" default=
""/> 
  74       <method name=
"__sub__" type=
"Size" overloaded=
"no"> 
  75         <autodoc>__sub__(Size sz) -
> Size
</autodoc> 
  76         <docstring>Subtract sz's properties from this and return the result.
</docstring> 
  78           <param name=
"sz" type=
"Size" default=
""/> 
  81       <method name=
"IncTo" type=
"" overloaded=
"no"> 
  82         <autodoc>IncTo(Size sz)
</autodoc> 
  83         <docstring>Increments this object so that both of its dimensions are not less
 
  84 than the corresponding dimensions of the size.
</docstring> 
  86           <param name=
"sz" type=
"Size" default=
""/> 
  89       <method name=
"DecTo" type=
"" overloaded=
"no"> 
  90         <autodoc>DecTo(Size sz)
</autodoc> 
  91         <docstring>Decrements this object so that both of its dimensions are not greater
 
  92 than the corresponding dimensions of the size.
</docstring> 
  94           <param name=
"sz" type=
"Size" default=
""/> 
  97       <method name=
"Set" type=
"" overloaded=
"no"> 
  98         <autodoc>Set(int w, int h)
</autodoc> 
  99         <docstring>Set both width and height.
</docstring> 
 101           <param name=
"w" type=
"int" default=
""/> 
 102           <param name=
"h" type=
"int" default=
""/> 
 105       <method name=
"SetWidth" type=
"" overloaded=
"no"> 
 106         <autodoc>SetWidth(int w)
</autodoc> 
 108           <param name=
"w" type=
"int" default=
""/> 
 111       <method name=
"SetHeight" type=
"" overloaded=
"no"> 
 112         <autodoc>SetHeight(int h)
</autodoc> 
 114           <param name=
"h" type=
"int" default=
""/> 
 117       <method name=
"GetWidth" type=
"int" overloaded=
"no"> 
 118         <autodoc>GetWidth() -
> int
</autodoc> 
 120       <method name=
"GetHeight" type=
"int" overloaded=
"no"> 
 121         <autodoc>GetHeight() -
> int
</autodoc> 
 123       <method name=
"Get" type=
"PyObject" overloaded=
"no"> 
 124         <autodoc>Get() -
> (width,height)
</autodoc> 
 125         <docstring>Returns the width and height properties as a tuple.
</docstring> 
 129 #---------------------------------------------------------------------------
 
 131     <class name=
"RealPoint" oldname=
"wxRealPoint" module=
"core"> 
 132       <docstring>A data structure for representing a point or position with floating point x
 
 133 and y properties.  In wxPython most places that expect a wx.RealPoint can also
 
 134 accept a (x,y) tuple.
</docstring> 
 135       <constructor name=
"RealPoint" overloaded=
"no"> 
 136         <autodoc>__init__(double x=
0.0, double y=
0.0) -
> RealPoint
</autodoc> 
 137         <docstring>Create a wx.RealPoint object
</docstring> 
 139           <param name=
"x" type=
"double" default=
"0.0"/> 
 140           <param name=
"y" type=
"double" default=
"0.0"/> 
 143       <destructor name=
"~wxRealPoint" overloaded=
"no"> 
 144         <autodoc>__del__()
</autodoc> 
 146       <property name=
"x" type=
"double" readonly=
"no"/> 
 147       <property name=
"y" type=
"double" readonly=
"no"/> 
 148       <method name=
"__eq__" type=
"bool" overloaded=
"no"> 
 149         <autodoc>__eq__(RealPoint pt) -
> bool
</autodoc> 
 150         <docstring>Test for equality of wx.RealPoint objects.
</docstring> 
 152           <param name=
"pt" type=
"RealPoint" default=
""/> 
 155       <method name=
"__ne__" type=
"bool" overloaded=
"no"> 
 156         <autodoc>__ne__(RealPoint pt) -
> bool
</autodoc> 
 157         <docstring>Test for inequality of wx.RealPoint objects.
</docstring> 
 159           <param name=
"pt" type=
"RealPoint" default=
""/> 
 162       <method name=
"__add__" type=
"RealPoint" overloaded=
"no"> 
 163         <autodoc>__add__(RealPoint pt) -
> RealPoint
</autodoc> 
 164         <docstring>Add pt's proprties to this and return the result.
</docstring> 
 166           <param name=
"pt" type=
"RealPoint" default=
""/> 
 169       <method name=
"__sub__" type=
"RealPoint" overloaded=
"no"> 
 170         <autodoc>__sub__(RealPoint pt) -
> RealPoint
</autodoc> 
 171         <docstring>Subtract pt's proprties from this and return the result
</docstring> 
 173           <param name=
"pt" type=
"RealPoint" default=
""/> 
 176       <method name=
"Set" type=
"" overloaded=
"no"> 
 177         <autodoc>Set(double x, double y)
</autodoc> 
 178         <docstring>Set both the x and y properties
</docstring> 
 180           <param name=
"x" type=
"double" default=
""/> 
 181           <param name=
"y" type=
"double" default=
""/> 
 184       <method name=
"Get" type=
"PyObject" overloaded=
"no"> 
 185         <autodoc>Get() -
> (x,y)
</autodoc> 
 186         <docstring>Return the x and y properties as a tuple. 
</docstring> 
 190 #---------------------------------------------------------------------------
 
 192     <class name=
"Point" oldname=
"wxPoint" module=
"core"> 
 193       <docstring>A data structure for representing a point or position with integer x and y
 
 194 properties.  Most places in wxPython that expect a wx.Point can also accept a
 
 195 (x,y) tuple.
</docstring> 
 196       <constructor name=
"Point" overloaded=
"no"> 
 197         <autodoc>__init__(int x=
0, int y=
0) -
> Point
</autodoc> 
 198         <docstring>Create a wx.Point object
</docstring> 
 200           <param name=
"x" type=
"int" default=
"0"/> 
 201           <param name=
"y" type=
"int" default=
"0"/> 
 204       <destructor name=
"~wxPoint" overloaded=
"no"> 
 205         <autodoc>__del__()
</autodoc> 
 207       <property name=
"x" type=
"int" readonly=
"no"/> 
 208       <property name=
"y" type=
"int" readonly=
"no"/> 
 209       <method name=
"__eq__" type=
"bool" overloaded=
"no"> 
 210         <autodoc>__eq__(Point pt) -
> bool
</autodoc> 
 211         <docstring>Test for equality of wx.Point objects.
</docstring> 
 213           <param name=
"pt" type=
"Point" default=
""/> 
 216       <method name=
"__ne__" type=
"bool" overloaded=
"no"> 
 217         <autodoc>__ne__(Point pt) -
> bool
</autodoc> 
 218         <docstring>Test for inequality of wx.Point objects.
</docstring> 
 220           <param name=
"pt" type=
"Point" default=
""/> 
 223       <method name=
"__add__" type=
"Point" overloaded=
"no"> 
 224         <autodoc>__add__(Point pt) -
> Point
</autodoc> 
 225         <docstring>Add pt's proprties to this and return the result.
</docstring> 
 227           <param name=
"pt" type=
"Point" default=
""/> 
 230       <method name=
"__sub__" type=
"Point" overloaded=
"no"> 
 231         <autodoc>__sub__(Point pt) -
> Point
</autodoc> 
 232         <docstring>Subtract pt's proprties from this and return the result
</docstring> 
 234           <param name=
"pt" type=
"Point" default=
""/> 
 237       <method name=
"__iadd__" type=
"Point" overloaded=
"no"> 
 238         <autodoc>__iadd__(Point pt) -
> Point
</autodoc> 
 239         <docstring>Add pt to this object.
</docstring> 
 241           <param name=
"pt" type=
"Point" default=
""/> 
 244       <method name=
"__isub__" type=
"Point" overloaded=
"no"> 
 245         <autodoc>__isub__(Point pt) -
> Point
</autodoc> 
 246         <docstring>Subtract pt from this object.
</docstring> 
 248           <param name=
"pt" type=
"Point" default=
""/> 
 251       <method name=
"Set" type=
"" overloaded=
"no"> 
 252         <autodoc>Set(long x, long y)
</autodoc> 
 253         <docstring>Set both the x and y properties
</docstring> 
 255           <param name=
"x" type=
"long" default=
""/> 
 256           <param name=
"y" type=
"long" default=
""/> 
 259       <method name=
"Get" type=
"PyObject" overloaded=
"no"> 
 260         <autodoc>Get() -
> (x,y)
</autodoc> 
 261         <docstring>Return the x and y properties as a tuple. 
</docstring> 
 265 #---------------------------------------------------------------------------
 
 267     <class name=
"Rect" oldname=
"wxRect" module=
"core"> 
 268       <docstring>A class for representing and manipulating rectangles.  It has x, y, width and
 
 269 height properties.  In wxPython most palces that expect a wx.Rect can also
 
 270 accept a (x,y,width,height) tuple.
</docstring> 
 271       <constructor name=
"Rect" overloaded=
"no"> 
 272         <autodoc>__init__(int x=
0, int y=
0, int width=
0, int height=
0) -
> Rect
</autodoc> 
 273         <docstring>Create a new Rect object.
</docstring> 
 275           <param name=
"x" type=
"int" default=
"0"/> 
 276           <param name=
"y" type=
"int" default=
"0"/> 
 277           <param name=
"width" type=
"int" default=
"0"/> 
 278           <param name=
"height" type=
"int" default=
"0"/> 
 281       <constructor name=
"RectPP" overloaded=
"no"> 
 282         <autodoc>RectPP(Point topLeft, Point bottomRight) -
> Rect
</autodoc> 
 283         <docstring>Create a new Rect object from Points representing two corners.
</docstring> 
 285           <param name=
"topLeft" type=
"Point" default=
""/> 
 286           <param name=
"bottomRight" type=
"Point" default=
""/> 
 289       <constructor name=
"RectPS" overloaded=
"no"> 
 290         <autodoc>RectPS(Point pos, Size size) -
> Rect
</autodoc> 
 291         <docstring>Create a new Rect from a position and size.
</docstring> 
 293           <param name=
"pos" type=
"Point" default=
""/> 
 294           <param name=
"size" type=
"Size" default=
""/> 
 297       <destructor name=
"~wxRect" overloaded=
"no"> 
 298         <autodoc>__del__()
</autodoc> 
 300       <method name=
"GetX" type=
"int" overloaded=
"no"> 
 301         <autodoc>GetX() -
> int
</autodoc> 
 303       <method name=
"SetX" type=
"" overloaded=
"no"> 
 304         <autodoc>SetX(int x)
</autodoc> 
 306           <param name=
"x" type=
"int" default=
""/> 
 309       <method name=
"GetY" type=
"int" overloaded=
"no"> 
 310         <autodoc>GetY() -
> int
</autodoc> 
 312       <method name=
"SetY" type=
"" overloaded=
"no"> 
 313         <autodoc>SetY(int y)
</autodoc> 
 315           <param name=
"y" type=
"int" default=
""/> 
 318       <method name=
"GetWidth" type=
"int" overloaded=
"no"> 
 319         <autodoc>GetWidth() -
> int
</autodoc> 
 321       <method name=
"SetWidth" type=
"" overloaded=
"no"> 
 322         <autodoc>SetWidth(int w)
</autodoc> 
 324           <param name=
"w" type=
"int" default=
""/> 
 327       <method name=
"GetHeight" type=
"int" overloaded=
"no"> 
 328         <autodoc>GetHeight() -
> int
</autodoc> 
 330       <method name=
"SetHeight" type=
"" overloaded=
"no"> 
 331         <autodoc>SetHeight(int h)
</autodoc> 
 333           <param name=
"h" type=
"int" default=
""/> 
 336       <method name=
"GetPosition" type=
"Point" overloaded=
"no"> 
 337         <autodoc>GetPosition() -
> Point
</autodoc> 
 339       <method name=
"SetPosition" type=
"" overloaded=
"no"> 
 340         <autodoc>SetPosition(Point p)
</autodoc> 
 342           <param name=
"p" type=
"Point" default=
""/> 
 345       <method name=
"GetSize" type=
"Size" overloaded=
"no"> 
 346         <autodoc>GetSize() -
> Size
</autodoc> 
 348       <method name=
"SetSize" type=
"" overloaded=
"no"> 
 349         <autodoc>SetSize(Size s)
</autodoc> 
 351           <param name=
"s" type=
"Size" default=
""/> 
 354       <method name=
"GetTopLeft" type=
"Point" overloaded=
"no"> 
 355         <autodoc>GetTopLeft() -
> Point
</autodoc> 
 357       <method name=
"SetTopLeft" type=
"" overloaded=
"no"> 
 358         <autodoc>SetTopLeft(Point p)
</autodoc> 
 360           <param name=
"p" type=
"Point" default=
""/> 
 363       <method name=
"GetBottomRight" type=
"Point" overloaded=
"no"> 
 364         <autodoc>GetBottomRight() -
> Point
</autodoc> 
 366       <method name=
"SetBottomRight" type=
"" overloaded=
"no"> 
 367         <autodoc>SetBottomRight(Point p)
</autodoc> 
 369           <param name=
"p" type=
"Point" default=
""/> 
 372       <method name=
"GetLeft" type=
"int" overloaded=
"no"> 
 373         <autodoc>GetLeft() -
> int
</autodoc> 
 375       <method name=
"GetTop" type=
"int" overloaded=
"no"> 
 376         <autodoc>GetTop() -
> int
</autodoc> 
 378       <method name=
"GetBottom" type=
"int" overloaded=
"no"> 
 379         <autodoc>GetBottom() -
> int
</autodoc> 
 381       <method name=
"GetRight" type=
"int" overloaded=
"no"> 
 382         <autodoc>GetRight() -
> int
</autodoc> 
 384       <method name=
"SetLeft" type=
"" overloaded=
"no"> 
 385         <autodoc>SetLeft(int left)
</autodoc> 
 387           <param name=
"left" type=
"int" default=
""/> 
 390       <method name=
"SetRight" type=
"" overloaded=
"no"> 
 391         <autodoc>SetRight(int right)
</autodoc> 
 393           <param name=
"right" type=
"int" default=
""/> 
 396       <method name=
"SetTop" type=
"" overloaded=
"no"> 
 397         <autodoc>SetTop(int top)
</autodoc> 
 399           <param name=
"top" type=
"int" default=
""/> 
 402       <method name=
"SetBottom" type=
"" overloaded=
"no"> 
 403         <autodoc>SetBottom(int bottom)
</autodoc> 
 405           <param name=
"bottom" type=
"int" default=
""/> 
 408       <method name=
"Inflate" type=
"Rect" overloaded=
"no"> 
 409         <autodoc>Inflate(int dx, int dy) -
> Rect
</autodoc> 
 410         <docstring>Increase the rectangle size by dx in x direction and dy in y direction. Both
 
 411 (or one of) parameters may be negative to decrease the rectangle size.
</docstring> 
 413           <param name=
"dx" type=
"int" default=
""/> 
 414           <param name=
"dy" type=
"int" default=
""/> 
 417       <method name=
"Deflate" type=
"Rect" overloaded=
"no"> 
 418         <autodoc>Deflate(int dx, int dy) -
> Rect
</autodoc> 
 419         <docstring>Decrease the rectangle size by dx in x direction and dy in y direction. Both
 
 420 (or one of) parameters may be negative to increase the rectngle size. This
 
 421 method is the opposite of Inflate.
</docstring> 
 423           <param name=
"dx" type=
"int" default=
""/> 
 424           <param name=
"dy" type=
"int" default=
""/> 
 427       <method name=
"OffsetXY" type=
"" overloaded=
"no"> 
 428         <autodoc>OffsetXY(int dx, int dy)
</autodoc> 
 429         <docstring>Moves the rectangle by the specified offset. If dx is positive, the rectangle
 
 430 is moved to the right, if dy is positive, it is moved to the bottom, otherwise
 
 431 it is moved to the left or top respectively.
</docstring> 
 433           <param name=
"dx" type=
"int" default=
""/> 
 434           <param name=
"dy" type=
"int" default=
""/> 
 437       <method name=
"Offset" type=
"" overloaded=
"no"> 
 438         <autodoc>Offset(Point pt)
</autodoc> 
 439         <docstring>Same as OffsetXY but uses dx,dy from Point
</docstring> 
 441           <param name=
"pt" type=
"Point" default=
""/> 
 444       <method name=
"Intersect" type=
"Rect" overloaded=
"no"> 
 445         <autodoc>Intersect(Rect rect) -
> Rect
</autodoc> 
 446         <docstring>Return the intersectsion of this rectangle and rect.
</docstring> 
 448           <param name=
"rect" type=
"Rect" default=
""/> 
 451       <method name=
"__add__" type=
"Rect" overloaded=
"no"> 
 452         <autodoc>__add__(Rect rect) -
> Rect
</autodoc> 
 453         <docstring>Add the properties of rect to this rectangle and return the result.
</docstring> 
 455           <param name=
"rect" type=
"Rect" default=
""/> 
 458       <method name=
"__iadd__" type=
"Rect" overloaded=
"no"> 
 459         <autodoc>__iadd__(Rect rect) -
> Rect
</autodoc> 
 460         <docstring>Add the properties of rect to this rectangle, updating this rectangle.
</docstring> 
 462           <param name=
"rect" type=
"Rect" default=
""/> 
 465       <method name=
"__eq__" type=
"bool" overloaded=
"no"> 
 466         <autodoc>__eq__(Rect rect) -
> bool
</autodoc> 
 467         <docstring>Test for equality.
</docstring> 
 469           <param name=
"rect" type=
"Rect" default=
""/> 
 472       <method name=
"__ne__" type=
"bool" overloaded=
"no"> 
 473         <autodoc>__ne__(Rect rect) -
> bool
</autodoc> 
 474         <docstring>Test for inequality.
</docstring> 
 476           <param name=
"rect" type=
"Rect" default=
""/> 
 479       <method name=
"InsideXY" type=
"bool" overloaded=
"no"> 
 480         <autodoc>InsideXY(int x, int y) -
> bool
</autodoc> 
 481         <docstring>Return True if the point is (not strcitly) inside the rect.
</docstring> 
 483           <param name=
"x" type=
"int" default=
""/> 
 484           <param name=
"y" type=
"int" default=
""/> 
 487       <method name=
"Inside" type=
"bool" overloaded=
"no"> 
 488         <autodoc>Inside(Point pt) -
> bool
</autodoc> 
 489         <docstring>Return True if the point is (not strcitly) inside the rect.
</docstring> 
 491           <param name=
"pt" type=
"Point" default=
""/> 
 494       <method name=
"Intersects" type=
"bool" overloaded=
"no"> 
 495         <autodoc>Intersects(Rect rect) -
> bool
</autodoc> 
 496         <docstring>Returns True if the rectangles have a non empty intersection.
</docstring> 
 498           <param name=
"rect" type=
"Rect" default=
""/> 
 501       <property name=
"x" type=
"int" readonly=
"no"/> 
 502       <property name=
"y" type=
"int" readonly=
"no"/> 
 503       <property name=
"width" type=
"int" readonly=
"no"/> 
 504       <property name=
"height" type=
"int" readonly=
"no"/> 
 505       <method name=
"Set" type=
"" overloaded=
"no"> 
 506         <autodoc>Set(int x=
0, int y=
0, int width=
0, int height=
0)
</autodoc> 
 507         <docstring>Set all rectangle properties.
</docstring> 
 509           <param name=
"x" type=
"int" default=
"0"/> 
 510           <param name=
"y" type=
"int" default=
"0"/> 
 511           <param name=
"width" type=
"int" default=
"0"/> 
 512           <param name=
"height" type=
"int" default=
"0"/> 
 515       <method name=
"Get" type=
"PyObject" overloaded=
"no"> 
 516         <autodoc>Get() -
> (x,y,width,height)
</autodoc> 
 517         <docstring>Return the rectangle properties as a tuple.
</docstring> 
 520     <method name=
"IntersectRect" oldname=
"wxIntersectRect" type=
"PyObject" overloaded=
"no"> 
 521       <autodoc>IntersectRect(Rect r1, Rect r2) -
> Rect
</autodoc> 
 522       <docstring>Calculate and return the intersection of r1 and r2.
</docstring> 
 524         <param name=
"r1" type=
"Rect" default=
""/> 
 525         <param name=
"r2" type=
"Rect" default=
""/> 
 529 #---------------------------------------------------------------------------
 
 531     <class name=
"Point2D" oldname=
"wxPoint2D" module=
"core"> 
 532       <docstring>wx.Point2Ds represent a point or a vector in a 
2d coordinate system with floating point values.
</docstring> 
 533       <constructor name=
"Point2D" overloaded=
"no"> 
 534         <autodoc>__init__(double x=
0.0, double y=
0.0) -
> Point2D
</autodoc> 
 535         <docstring>Create a w.Point2D object.
</docstring> 
 537           <param name=
"x" type=
"double" default=
"0.0"/> 
 538           <param name=
"y" type=
"double" default=
"0.0"/> 
 541       <constructor name=
"Point2DCopy" overloaded=
"no"> 
 542         <autodoc>Point2DCopy(Point2D pt) -
> Point2D
</autodoc> 
 543         <docstring>Create a w.Point2D object.
</docstring> 
 545           <param name=
"pt" type=
"Point2D" default=
""/> 
 548       <constructor name=
"Point2DFromPoint" overloaded=
"no"> 
 549         <autodoc>Point2DFromPoint(Point pt) -
> Point2D
</autodoc> 
 550         <docstring>Create a w.Point2D object.
</docstring> 
 552           <param name=
"pt" type=
"Point" default=
""/> 
 555       <method name=
"GetFloor" type=
"" overloaded=
"no"> 
 556         <autodoc>GetFloor() -
> (x,y)
</autodoc> 
 557         <docstring>Convert to integer
</docstring> 
 559           <param name=
"OUTPUT" type=
"int" default=
""/> 
 560           <param name=
"OUTPUT" type=
"int" default=
""/> 
 563       <method name=
"GetRounded" type=
"" overloaded=
"no"> 
 564         <autodoc>GetRounded() -
> (x,y)
</autodoc> 
 565         <docstring>Convert to integer
</docstring> 
 567           <param name=
"OUTPUT" type=
"int" default=
""/> 
 568           <param name=
"OUTPUT" type=
"int" default=
""/> 
 571       <method name=
"GetVectorLength" type=
"double" overloaded=
"no"> 
 572         <autodoc>GetVectorLength() -
> double
</autodoc> 
 574       <method name=
"GetVectorAngle" type=
"double" overloaded=
"no"> 
 575         <autodoc>GetVectorAngle() -
> double
</autodoc> 
 577       <method name=
"SetVectorLength" type=
"" overloaded=
"no"> 
 578         <autodoc>SetVectorLength(double length)
</autodoc> 
 580           <param name=
"length" type=
"double" default=
""/> 
 583       <method name=
"SetVectorAngle" type=
"" overloaded=
"no"> 
 584         <autodoc>SetVectorAngle(double degrees)
</autodoc> 
 586           <param name=
"degrees" type=
"double" default=
""/> 
 589       <method name=
"GetDistance" type=
"double" overloaded=
"no"> 
 590         <autodoc>GetDistance(Point2D pt) -
> double
</autodoc> 
 592           <param name=
"pt" type=
"Point2D" default=
""/> 
 595       <method name=
"GetDistanceSquare" type=
"double" overloaded=
"no"> 
 596         <autodoc>GetDistanceSquare(Point2D pt) -
> double
</autodoc> 
 598           <param name=
"pt" type=
"Point2D" default=
""/> 
 601       <method name=
"GetDotProduct" type=
"double" overloaded=
"no"> 
 602         <autodoc>GetDotProduct(Point2D vec) -
> double
</autodoc> 
 604           <param name=
"vec" type=
"Point2D" default=
""/> 
 607       <method name=
"GetCrossProduct" type=
"double" overloaded=
"no"> 
 608         <autodoc>GetCrossProduct(Point2D vec) -
> double
</autodoc> 
 610           <param name=
"vec" type=
"Point2D" default=
""/> 
 613       <method name=
"__neg__" type=
"Point2D" overloaded=
"no"> 
 614         <autodoc>__neg__() -
> Point2D
</autodoc> 
 615         <docstring>the reflection of this point
</docstring> 
 617       <method name=
"__iadd__" type=
"Point2D" overloaded=
"no"> 
 618         <autodoc>__iadd__(Point2D pt) -
> Point2D
</autodoc> 
 620           <param name=
"pt" type=
"Point2D" default=
""/> 
 623       <method name=
"__isub__" type=
"Point2D" overloaded=
"no"> 
 624         <autodoc>__isub__(Point2D pt) -
> Point2D
</autodoc> 
 626           <param name=
"pt" type=
"Point2D" default=
""/> 
 629       <method name=
"__imul__" type=
"Point2D" overloaded=
"no"> 
 630         <autodoc>__imul__(Point2D pt) -
> Point2D
</autodoc> 
 632           <param name=
"pt" type=
"Point2D" default=
""/> 
 635       <method name=
"__idiv__" type=
"Point2D" overloaded=
"no"> 
 636         <autodoc>__idiv__(Point2D pt) -
> Point2D
</autodoc> 
 638           <param name=
"pt" type=
"Point2D" default=
""/> 
 641       <method name=
"__eq__" type=
"bool" overloaded=
"no"> 
 642         <autodoc>__eq__(Point2D pt) -
> bool
</autodoc> 
 643         <docstring>Test for equality
</docstring> 
 645           <param name=
"pt" type=
"Point2D" default=
""/> 
 648       <method name=
"__ne__" type=
"bool" overloaded=
"no"> 
 649         <autodoc>__ne__(Point2D pt) -
> bool
</autodoc> 
 650         <docstring>Test for inequality
</docstring> 
 652           <param name=
"pt" type=
"Point2D" default=
""/> 
 655       <property name=
"x" type=
"double" readonly=
"no"/> 
 656       <property name=
"y" type=
"double" readonly=
"no"/> 
 657       <method name=
"Set" type=
"" overloaded=
"no"> 
 658         <autodoc>Set(double x=
0, double y=
0)
</autodoc> 
 660           <param name=
"x" type=
"double" default=
"0"/> 
 661           <param name=
"y" type=
"double" default=
"0"/> 
 664       <method name=
"Get" type=
"PyObject" overloaded=
"no"> 
 665         <autodoc>Get() -
> (x,y)
</autodoc> 
 666         <docstring>Return x and y properties as a tuple.
</docstring> 
 670 #---------------------------------------------------------------------------
 
 672     <class name=
"InputStream" oldname=
"wxPyInputStream" module=
"core"> 
 673       <constructor name=
"wxPyInputStream" overloaded=
"no"> 
 674         <autodoc>__init__(PyObject p) -
> InputStream
</autodoc> 
 676           <param name=
"p" type=
"PyObject" default=
""/> 
 679       <method name=
"close" type=
"" overloaded=
"no"> 
 680         <autodoc>close()
</autodoc> 
 682       <method name=
"flush" type=
"" overloaded=
"no"> 
 683         <autodoc>flush()
</autodoc> 
 685       <method name=
"eof" type=
"bool" overloaded=
"no"> 
 686         <autodoc>eof() -
> bool
</autodoc> 
 688       <method name=
"read" type=
"PyObject" overloaded=
"no"> 
 689         <autodoc>read(int size=-
1) -
> PyObject
</autodoc> 
 691           <param name=
"size" type=
"int" default=
"-1"/> 
 694       <method name=
"readline" type=
"PyObject" overloaded=
"no"> 
 695         <autodoc>readline(int size=-
1) -
> PyObject
</autodoc> 
 697           <param name=
"size" type=
"int" default=
"-1"/> 
 700       <method name=
"readlines" type=
"PyObject" overloaded=
"no"> 
 701         <autodoc>readlines(int sizehint=-
1) -
> PyObject
</autodoc> 
 703           <param name=
"sizehint" type=
"int" default=
"-1"/> 
 706       <method name=
"seek" type=
"" overloaded=
"no"> 
 707         <autodoc>seek(int offset, int whence=
0)
</autodoc> 
 709           <param name=
"offset" type=
"int" default=
""/> 
 710           <param name=
"whence" type=
"int" default=
"0"/> 
 713       <method name=
"tell" type=
"int" overloaded=
"no"> 
 714         <autodoc>tell() -
> int
</autodoc> 
 716       <method name=
"Peek" type=
"char" overloaded=
"no"> 
 717         <autodoc>Peek() -
> char
</autodoc> 
 719       <method name=
"GetC" type=
"char" overloaded=
"no"> 
 720         <autodoc>GetC() -
> char
</autodoc> 
 722       <method name=
"LastRead" type=
"size_t" overloaded=
"no"> 
 723         <autodoc>LastRead() -
> size_t
</autodoc> 
 725       <method name=
"CanRead" type=
"bool" overloaded=
"no"> 
 726         <autodoc>CanRead() -
> bool
</autodoc> 
 728       <method name=
"Eof" type=
"bool" overloaded=
"no"> 
 729         <autodoc>Eof() -
> bool
</autodoc> 
 731       <method name=
"Ungetch" type=
"bool" overloaded=
"no"> 
 732         <autodoc>Ungetch(char c) -
> bool
</autodoc> 
 734           <param name=
"c" type=
"char" default=
""/> 
 737       <method name=
"SeekI" type=
"long" overloaded=
"no"> 
 738         <autodoc>SeekI(long pos, int mode=FromStart) -
> long
</autodoc> 
 740           <param name=
"pos" type=
"long" default=
""/> 
 741           <param name=
"mode" type=
"wxSeekMode" default=
"wxFromStart"/> 
 744       <method name=
"TellI" type=
"long" overloaded=
"no"> 
 745         <autodoc>TellI() -
> long
</autodoc> 
 748     <class name=
"OutputStream" oldname=
"wxOutputStream" module=
"core"> 
 749       <method name=
"write" type=
"" overloaded=
"no"> 
 750         <autodoc>write(PyObject obj)
</autodoc> 
 752           <param name=
"obj" type=
"PyObject" default=
""/> 
 757 #---------------------------------------------------------------------------
 
 759     <class name=
"FSFile" oldname=
"wxFSFile" module=
"core"> 
 760       <baseclass name=
"Object"/> 
 761       <constructor name=
"FSFile" overloaded=
"no"> 
 762         <autodoc>__init__(InputStream stream, String loc, String mimetype, String anchor, 
 
 763     DateTime modif) -
> FSFile
</autodoc> 
 765           <param name=
"stream" type=
"wxInputStream" default=
""/> 
 766           <param name=
"loc" type=
"String" default=
""/> 
 767           <param name=
"mimetype" type=
"String" default=
""/> 
 768           <param name=
"anchor" type=
"String" default=
""/> 
 769           <param name=
"modif" type=
"wxDateTime" default=
""/> 
 772       <destructor name=
"~wxFSFile" overloaded=
"no"> 
 773         <autodoc>__del__()
</autodoc> 
 775       <method name=
"GetStream" type=
"wxInputStream" overloaded=
"no"> 
 776         <autodoc>GetStream() -
> InputStream
</autodoc> 
 778       <method name=
"GetMimeType" type=
"String" overloaded=
"no"> 
 779         <autodoc>GetMimeType() -
> String
</autodoc> 
 781       <method name=
"GetLocation" type=
"String" overloaded=
"no"> 
 782         <autodoc>GetLocation() -
> String
</autodoc> 
 784       <method name=
"GetAnchor" type=
"String" overloaded=
"no"> 
 785         <autodoc>GetAnchor() -
> String
</autodoc> 
 787       <method name=
"GetModificationTime" type=
"wxDateTime" overloaded=
"no"> 
 788         <autodoc>GetModificationTime() -
> DateTime
</autodoc> 
 791     <class name=
"CPPFileSystemHandler" oldname=
"wxFileSystemHandler" module=
"core"/> 
 792     <class name=
"FileSystemHandler" oldname=
"wxPyFileSystemHandler" module=
"core"> 
 793       <baseclass name=
"CPPFileSystemHandler"/> 
 794       <constructor name=
"wxPyFileSystemHandler" overloaded=
"no"> 
 795         <autodoc>__init__() -
> FileSystemHandler
</autodoc> 
 797       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
 798         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
 800           <param name=
"self" type=
"PyObject" default=
""/> 
 801           <param name=
"_class" type=
"PyObject" default=
""/> 
 804       <method name=
"CanOpen" type=
"bool" overloaded=
"no"> 
 805         <autodoc>CanOpen(String location) -
> bool
</autodoc> 
 807           <param name=
"location" type=
"String" default=
""/> 
 810       <method name=
"OpenFile" type=
"FSFile" overloaded=
"no"> 
 811         <autodoc>OpenFile(FileSystem fs, String location) -
> FSFile
</autodoc> 
 813           <param name=
"fs" type=
"wxFileSystem" default=
""/> 
 814           <param name=
"location" type=
"String" default=
""/> 
 817       <method name=
"FindFirst" type=
"String" overloaded=
"no"> 
 818         <autodoc>FindFirst(String spec, int flags=
0) -
> String
</autodoc> 
 820           <param name=
"spec" type=
"String" default=
""/> 
 821           <param name=
"flags" type=
"int" default=
"0"/> 
 824       <method name=
"FindNext" type=
"String" overloaded=
"no"> 
 825         <autodoc>FindNext() -
> String
</autodoc> 
 827       <method name=
"GetProtocol" type=
"String" overloaded=
"no"> 
 828         <autodoc>GetProtocol(String location) -
> String
</autodoc> 
 830           <param name=
"location" type=
"String" default=
""/> 
 833       <method name=
"GetLeftLocation" type=
"String" overloaded=
"no"> 
 834         <autodoc>GetLeftLocation(String location) -
> String
</autodoc> 
 836           <param name=
"location" type=
"String" default=
""/> 
 839       <method name=
"GetAnchor" type=
"String" overloaded=
"no"> 
 840         <autodoc>GetAnchor(String location) -
> String
</autodoc> 
 842           <param name=
"location" type=
"String" default=
""/> 
 845       <method name=
"GetRightLocation" type=
"String" overloaded=
"no"> 
 846         <autodoc>GetRightLocation(String location) -
> String
</autodoc> 
 848           <param name=
"location" type=
"String" default=
""/> 
 851       <method name=
"GetMimeTypeFromExt" type=
"String" overloaded=
"no"> 
 852         <autodoc>GetMimeTypeFromExt(String location) -
> String
</autodoc> 
 854           <param name=
"location" type=
"String" default=
""/> 
 858     <class name=
"FileSystem" oldname=
"wxFileSystem" module=
"core"> 
 859       <baseclass name=
"Object"/> 
 860       <constructor name=
"FileSystem" overloaded=
"no"> 
 861         <autodoc>__init__() -
> FileSystem
</autodoc> 
 863       <destructor name=
"~wxFileSystem" overloaded=
"no"> 
 864         <autodoc>__del__()
</autodoc> 
 866       <method name=
"ChangePathTo" type=
"" overloaded=
"no"> 
 867         <autodoc>ChangePathTo(String location, bool is_dir=False)
</autodoc> 
 869           <param name=
"location" type=
"String" default=
""/> 
 870           <param name=
"is_dir" type=
"bool" default=
"False"/> 
 873       <method name=
"GetPath" type=
"String" overloaded=
"no"> 
 874         <autodoc>GetPath() -
> String
</autodoc> 
 876       <method name=
"OpenFile" type=
"FSFile" overloaded=
"no"> 
 877         <autodoc>OpenFile(String location) -
> FSFile
</autodoc> 
 879           <param name=
"location" type=
"String" default=
""/> 
 882       <method name=
"FindFirst" type=
"String" overloaded=
"no"> 
 883         <autodoc>FindFirst(String spec, int flags=
0) -
> String
</autodoc> 
 885           <param name=
"spec" type=
"String" default=
""/> 
 886           <param name=
"flags" type=
"int" default=
"0"/> 
 889       <method name=
"FindNext" type=
"String" overloaded=
"no"> 
 890         <autodoc>FindNext() -
> String
</autodoc> 
 892       <staticmethod name=
"AddHandler" type=
"" overloaded=
"no"> 
 893         <autodoc>AddHandler(CPPFileSystemHandler handler)
</autodoc> 
 895           <param name=
"handler" type=
"CPPFileSystemHandler" default=
""/> 
 898       <staticmethod name=
"CleanUpHandlers" type=
"" overloaded=
"no"> 
 899         <autodoc>CleanUpHandlers()
</autodoc> 
 901       <staticmethod name=
"FileNameToURL" type=
"String" overloaded=
"no"> 
 902         <autodoc>FileNameToURL(String filename) -
> String
</autodoc> 
 904           <param name=
"filename" type=
"String" default=
""/> 
 908     <method name=
"FileSystem_URLToFileName" oldname=
"wxFileSystem_URLToFileName" type=
"String" overloaded=
"no"> 
 909       <autodoc>FileSystem_URLToFileName(String url) -
> String
</autodoc> 
 911         <param name=
"url" type=
"String" default=
""/> 
 914     <class name=
"InternetFSHandler" oldname=
"wxInternetFSHandler" module=
"core"> 
 915       <baseclass name=
"CPPFileSystemHandler"/> 
 916       <constructor name=
"InternetFSHandler" overloaded=
"no"> 
 917         <autodoc>__init__() -
> InternetFSHandler
</autodoc> 
 919       <method name=
"CanOpen" type=
"bool" overloaded=
"no"> 
 920         <autodoc>CanOpen(String location) -
> bool
</autodoc> 
 922           <param name=
"location" type=
"String" default=
""/> 
 925       <method name=
"OpenFile" type=
"FSFile" overloaded=
"no"> 
 926         <autodoc>OpenFile(FileSystem fs, String location) -
> FSFile
</autodoc> 
 928           <param name=
"fs" type=
"FileSystem" default=
""/> 
 929           <param name=
"location" type=
"String" default=
""/> 
 933     <class name=
"ZipFSHandler" oldname=
"wxZipFSHandler" module=
"core"> 
 934       <baseclass name=
"CPPFileSystemHandler"/> 
 935       <constructor name=
"ZipFSHandler" overloaded=
"no"> 
 936         <autodoc>__init__() -
> ZipFSHandler
</autodoc> 
 938       <method name=
"CanOpen" type=
"bool" overloaded=
"no"> 
 939         <autodoc>CanOpen(String location) -
> bool
</autodoc> 
 941           <param name=
"location" type=
"String" default=
""/> 
 944       <method name=
"OpenFile" type=
"FSFile" overloaded=
"no"> 
 945         <autodoc>OpenFile(FileSystem fs, String location) -
> FSFile
</autodoc> 
 947           <param name=
"fs" type=
"FileSystem" default=
""/> 
 948           <param name=
"location" type=
"String" default=
""/> 
 951       <method name=
"FindFirst" type=
"String" overloaded=
"no"> 
 952         <autodoc>FindFirst(String spec, int flags=
0) -
> String
</autodoc> 
 954           <param name=
"spec" type=
"String" default=
""/> 
 955           <param name=
"flags" type=
"int" default=
"0"/> 
 958       <method name=
"FindNext" type=
"String" overloaded=
"no"> 
 959         <autodoc>FindNext() -
> String
</autodoc> 
 962     <method name=
"__wxMemoryFSHandler_AddFile_wxImage" oldname=
"__wxMemoryFSHandler_AddFile_wxImage" type=
"" overloaded=
"no"> 
 963       <autodoc>__wxMemoryFSHandler_AddFile_wxImage(String filename, Image image, long type)
</autodoc> 
 965         <param name=
"filename" type=
"String" default=
""/> 
 966         <param name=
"image" type=
"wxImage" default=
""/> 
 967         <param name=
"type" type=
"long" default=
""/> 
 970     <method name=
"__wxMemoryFSHandler_AddFile_wxBitmap" oldname=
"__wxMemoryFSHandler_AddFile_wxBitmap" type=
"" overloaded=
"no"> 
 971       <autodoc>__wxMemoryFSHandler_AddFile_wxBitmap(String filename, Bitmap bitmap, long type)
</autodoc> 
 973         <param name=
"filename" type=
"String" default=
""/> 
 974         <param name=
"bitmap" type=
"wxBitmap" default=
""/> 
 975         <param name=
"type" type=
"long" default=
""/> 
 978     <method name=
"__wxMemoryFSHandler_AddFile_Data" oldname=
"__wxMemoryFSHandler_AddFile_Data" type=
"" overloaded=
"no"> 
 979       <autodoc>__wxMemoryFSHandler_AddFile_Data(String filename, PyObject data)
</autodoc> 
 981         <param name=
"filename" type=
"String" default=
""/> 
 982         <param name=
"data" type=
"PyObject" default=
""/> 
 986 def MemoryFSHandler_AddFile(filename, a, b=''):
 
 987     if isinstance(a, wx.Image):
 
 988         __wxMemoryFSHandler_AddFile_wxImage(filename, a, b)
 
 989     elif isinstance(a, wx.Bitmap):
 
 990         __wxMemoryFSHandler_AddFile_wxBitmap(filename, a, b)
 
 992         __wxMemoryFSHandler_AddFile_Data(filename, a)
 
 993     else: raise TypeError, 'wx.Image, wx.Bitmap or string expected'
 
 995     <class name=
"MemoryFSHandler" oldname=
"wxMemoryFSHandler" module=
"core"> 
 996       <baseclass name=
"CPPFileSystemHandler"/> 
 997       <constructor name=
"MemoryFSHandler" overloaded=
"no"> 
 998         <autodoc>__init__() -
> MemoryFSHandler
</autodoc> 
1000       <staticmethod name=
"RemoveFile" type=
"" overloaded=
"no"> 
1001         <autodoc>RemoveFile(String filename)
</autodoc> 
1003           <param name=
"filename" type=
"String" default=
""/> 
1006       <method name=
"CanOpen" type=
"bool" overloaded=
"no"> 
1007         <autodoc>CanOpen(String location) -
> bool
</autodoc> 
1009           <param name=
"location" type=
"String" default=
""/> 
1012       <method name=
"OpenFile" type=
"FSFile" overloaded=
"no"> 
1013         <autodoc>OpenFile(FileSystem fs, String location) -
> FSFile
</autodoc> 
1015           <param name=
"fs" type=
"FileSystem" default=
""/> 
1016           <param name=
"location" type=
"String" default=
""/> 
1019       <method name=
"FindFirst" type=
"String" overloaded=
"no"> 
1020         <autodoc>FindFirst(String spec, int flags=
0) -
> String
</autodoc> 
1022           <param name=
"spec" type=
"String" default=
""/> 
1023           <param name=
"flags" type=
"int" default=
"0"/> 
1026       <method name=
"FindNext" type=
"String" overloaded=
"no"> 
1027         <autodoc>FindNext() -
> String
</autodoc> 
1031 #---------------------------------------------------------------------------
 
1033     <class name=
"ImageHandler" oldname=
"wxImageHandler" module=
"core"> 
1034       <baseclass name=
"Object"/> 
1035       <method name=
"GetName" type=
"String" overloaded=
"no"> 
1036         <autodoc>GetName() -
> String
</autodoc> 
1038       <method name=
"GetExtension" type=
"String" overloaded=
"no"> 
1039         <autodoc>GetExtension() -
> String
</autodoc> 
1041       <method name=
"GetType" type=
"long" overloaded=
"no"> 
1042         <autodoc>GetType() -
> long
</autodoc> 
1044       <method name=
"GetMimeType" type=
"String" overloaded=
"no"> 
1045         <autodoc>GetMimeType() -
> String
</autodoc> 
1047       <method name=
"CanRead" type=
"bool" overloaded=
"no"> 
1048         <autodoc>CanRead(String name) -
> bool
</autodoc> 
1050           <param name=
"name" type=
"String" default=
""/> 
1053       <method name=
"SetName" type=
"" overloaded=
"no"> 
1054         <autodoc>SetName(String name)
</autodoc> 
1056           <param name=
"name" type=
"String" default=
""/> 
1059       <method name=
"SetExtension" type=
"" overloaded=
"no"> 
1060         <autodoc>SetExtension(String extension)
</autodoc> 
1062           <param name=
"extension" type=
"String" default=
""/> 
1065       <method name=
"SetType" type=
"" overloaded=
"no"> 
1066         <autodoc>SetType(long type)
</autodoc> 
1068           <param name=
"type" type=
"long" default=
""/> 
1071       <method name=
"SetMimeType" type=
"" overloaded=
"no"> 
1072         <autodoc>SetMimeType(String mimetype)
</autodoc> 
1074           <param name=
"mimetype" type=
"String" default=
""/> 
1078     <class name=
"ImageHistogram" oldname=
"wxImageHistogram" module=
"core"> 
1079       <constructor name=
"ImageHistogram" overloaded=
"no"> 
1080         <autodoc>__init__() -
> ImageHistogram
</autodoc> 
1082       <staticmethod name=
"MakeKey" type=
"unsigned long" overloaded=
"no"> 
1083         <autodoc>MakeKey(unsigned char r, unsigned char g, unsigned char b) -
> unsigned long
</autodoc> 
1084         <docstring>Get the key in the histogram for the given RGB values
</docstring> 
1086           <param name=
"r" type=
"unsigned char" default=
""/> 
1087           <param name=
"g" type=
"unsigned char" default=
""/> 
1088           <param name=
"b" type=
"unsigned char" default=
""/> 
1091       <method name=
"FindFirstUnusedColour" type=
"bool" overloaded=
"no"> 
1092         <autodoc>FindFirstUnusedColour(int startR=
1, int startG=
0, int startB=
0) -
> (success, r, g, b)
</autodoc> 
1093         <docstring>Find first colour that is not used in the image and has higher RGB values than
 
1094 startR, startG, startB.  Returns a tuple consisting of a success flag and rgb
 
1097           <param name=
"OUTPUT" type=
"unsigned char" default=
""/> 
1098           <param name=
"OUTPUT" type=
"unsigned char" default=
""/> 
1099           <param name=
"OUTPUT" type=
"unsigned char" default=
""/> 
1100           <param name=
"startR" type=
"unsigned char" default=
"1"/> 
1101           <param name=
"startG" type=
"unsigned char" default=
"0"/> 
1102           <param name=
"startB" type=
"unsigned char" default=
"0"/> 
1106     <class name=
"Image" oldname=
"wxImage" module=
"core"> 
1107       <baseclass name=
"Object"/> 
1108       <constructor name=
"Image" overloaded=
"no"> 
1109         <autodoc>__init__(String name, long type=BITMAP_TYPE_ANY, int index=-
1) -
> Image
</autodoc> 
1111           <param name=
"name" type=
"String" default=
""/> 
1112           <param name=
"type" type=
"long" default=
"wxBITMAP_TYPE_ANY"/> 
1113           <param name=
"index" type=
"int" default=
"-1"/> 
1116       <constructor name=
"ImageFromMime" overloaded=
"no"> 
1117         <autodoc>ImageFromMime(String name, String mimetype, int index=-
1) -
> Image
</autodoc> 
1119           <param name=
"name" type=
"String" default=
""/> 
1120           <param name=
"mimetype" type=
"String" default=
""/> 
1121           <param name=
"index" type=
"int" default=
"-1"/> 
1124       <constructor name=
"ImageFromStream" overloaded=
"no"> 
1125         <autodoc>ImageFromStream(InputStream stream, long type=BITMAP_TYPE_ANY, int index=-
1) -
> Image
</autodoc> 
1127           <param name=
"stream" type=
"wxInputStream" default=
""/> 
1128           <param name=
"type" type=
"long" default=
"wxBITMAP_TYPE_ANY"/> 
1129           <param name=
"index" type=
"int" default=
"-1"/> 
1132       <constructor name=
"ImageFromStreamMime" overloaded=
"no"> 
1133         <autodoc>ImageFromStreamMime(InputStream stream, String mimetype, int index=-
1) -
> Image
</autodoc> 
1135           <param name=
"stream" type=
"wxInputStream" default=
""/> 
1136           <param name=
"mimetype" type=
"String" default=
""/> 
1137           <param name=
"index" type=
"int" default=
"-1"/> 
1140       <constructor name=
"EmptyImage" overloaded=
"no"> 
1141         <autodoc>EmptyImage(int width=
0, int height=
0, bool clear=True) -
> Image
</autodoc> 
1143           <param name=
"width" type=
"int" default=
"0"/> 
1144           <param name=
"height" type=
"int" default=
"0"/> 
1145           <param name=
"clear" type=
"bool" default=
"True"/> 
1148       <constructor name=
"ImageFromBitmap" overloaded=
"no"> 
1149         <autodoc>ImageFromBitmap(Bitmap bitmap) -
> Image
</autodoc> 
1151           <param name=
"bitmap" type=
"wxBitmap" default=
""/> 
1154       <constructor name=
"ImageFromData" overloaded=
"no"> 
1155         <autodoc>ImageFromData(int width, int height, unsigned char data) -
> Image
</autodoc> 
1157           <param name=
"width" type=
"int" default=
""/> 
1158           <param name=
"height" type=
"int" default=
""/> 
1159           <param name=
"data" type=
"unsigned char" default=
""/> 
1162       <destructor name=
"~wxImage" overloaded=
"no"> 
1163         <autodoc>__del__()
</autodoc> 
1165       <method name=
"Create" type=
"" overloaded=
"no"> 
1166         <autodoc>Create(int width, int height)
</autodoc> 
1168           <param name=
"width" type=
"int" default=
""/> 
1169           <param name=
"height" type=
"int" default=
""/> 
1172       <method name=
"Destroy" type=
"" overloaded=
"no"> 
1173         <autodoc>Destroy()
</autodoc> 
1174         <docstring>Deletes the C++ object this Python object is a proxy for.
</docstring> 
1176       <method name=
"Scale" type=
"Image" overloaded=
"no"> 
1177         <autodoc>Scale(int width, int height) -
> Image
</autodoc> 
1179           <param name=
"width" type=
"int" default=
""/> 
1180           <param name=
"height" type=
"int" default=
""/> 
1183       <method name=
"ShrinkBy" type=
"Image" overloaded=
"no"> 
1184         <autodoc>ShrinkBy(int xFactor, int yFactor) -
> Image
</autodoc> 
1186           <param name=
"xFactor" type=
"int" default=
""/> 
1187           <param name=
"yFactor" type=
"int" default=
""/> 
1190       <method name=
"Rescale" type=
"Image" overloaded=
"no"> 
1191         <autodoc>Rescale(int width, int height) -
> Image
</autodoc> 
1193           <param name=
"width" type=
"int" default=
""/> 
1194           <param name=
"height" type=
"int" default=
""/> 
1197       <method name=
"SetRGB" type=
"" overloaded=
"no"> 
1198         <autodoc>SetRGB(int x, int y, unsigned char r, unsigned char g, unsigned char b)
</autodoc> 
1200           <param name=
"x" type=
"int" default=
""/> 
1201           <param name=
"y" type=
"int" default=
""/> 
1202           <param name=
"r" type=
"unsigned char" default=
""/> 
1203           <param name=
"g" type=
"unsigned char" default=
""/> 
1204           <param name=
"b" type=
"unsigned char" default=
""/> 
1207       <method name=
"GetRed" type=
"unsigned char" overloaded=
"no"> 
1208         <autodoc>GetRed(int x, int y) -
> unsigned char
</autodoc> 
1210           <param name=
"x" type=
"int" default=
""/> 
1211           <param name=
"y" type=
"int" default=
""/> 
1214       <method name=
"GetGreen" type=
"unsigned char" overloaded=
"no"> 
1215         <autodoc>GetGreen(int x, int y) -
> unsigned char
</autodoc> 
1217           <param name=
"x" type=
"int" default=
""/> 
1218           <param name=
"y" type=
"int" default=
""/> 
1221       <method name=
"GetBlue" type=
"unsigned char" overloaded=
"no"> 
1222         <autodoc>GetBlue(int x, int y) -
> unsigned char
</autodoc> 
1224           <param name=
"x" type=
"int" default=
""/> 
1225           <param name=
"y" type=
"int" default=
""/> 
1228       <method name=
"SetAlpha" type=
"" overloaded=
"no"> 
1229         <autodoc>SetAlpha(int x, int y, unsigned char alpha)
</autodoc> 
1231           <param name=
"x" type=
"int" default=
""/> 
1232           <param name=
"y" type=
"int" default=
""/> 
1233           <param name=
"alpha" type=
"unsigned char" default=
""/> 
1236       <method name=
"GetAlpha" type=
"unsigned char" overloaded=
"no"> 
1237         <autodoc>GetAlpha(int x, int y) -
> unsigned char
</autodoc> 
1239           <param name=
"x" type=
"int" default=
""/> 
1240           <param name=
"y" type=
"int" default=
""/> 
1243       <method name=
"HasAlpha" type=
"bool" overloaded=
"no"> 
1244         <autodoc>HasAlpha() -
> bool
</autodoc> 
1246       <method name=
"FindFirstUnusedColour" type=
"bool" overloaded=
"no"> 
1247         <autodoc>FindFirstUnusedColour(int startR=
1, int startG=
0, int startB=
0) -
> (success, r, g, b)
</autodoc> 
1248         <docstring>Find first colour that is not used in the image and has higher RGB values than
 
1249 startR, startG, startB.  Returns a tuple consisting of a success flag and rgb
 
1252           <param name=
"OUTPUT" type=
"byte" default=
""/> 
1253           <param name=
"OUTPUT" type=
"byte" default=
""/> 
1254           <param name=
"OUTPUT" type=
"byte" default=
""/> 
1255           <param name=
"startR" type=
"byte" default=
"0"/> 
1256           <param name=
"startG" type=
"byte" default=
"0"/> 
1257           <param name=
"startB" type=
"byte" default=
"0"/> 
1260       <method name=
"SetMaskFromImage" type=
"bool" overloaded=
"no"> 
1261         <autodoc>SetMaskFromImage(Image mask, byte mr, byte mg, byte mb) -
> bool
</autodoc> 
1263           <param name=
"mask" type=
"Image" default=
""/> 
1264           <param name=
"mr" type=
"byte" default=
""/> 
1265           <param name=
"mg" type=
"byte" default=
""/> 
1266           <param name=
"mb" type=
"byte" default=
""/> 
1269       <staticmethod name=
"CanRead" type=
"bool" overloaded=
"no"> 
1270         <autodoc>CanRead(String name) -
> bool
</autodoc> 
1272           <param name=
"name" type=
"String" default=
""/> 
1275       <staticmethod name=
"GetImageCount" type=
"int" overloaded=
"no"> 
1276         <autodoc>GetImageCount(String name, long type=BITMAP_TYPE_ANY) -
> int
</autodoc> 
1278           <param name=
"name" type=
"String" default=
""/> 
1279           <param name=
"type" type=
"long" default=
"wxBITMAP_TYPE_ANY"/> 
1282       <method name=
"LoadFile" type=
"bool" overloaded=
"no"> 
1283         <autodoc>LoadFile(String name, long type=BITMAP_TYPE_ANY, int index=-
1) -
> bool
</autodoc> 
1285           <param name=
"name" type=
"String" default=
""/> 
1286           <param name=
"type" type=
"long" default=
"wxBITMAP_TYPE_ANY"/> 
1287           <param name=
"index" type=
"int" default=
"-1"/> 
1290       <method name=
"LoadMimeFile" type=
"bool" overloaded=
"no"> 
1291         <autodoc>LoadMimeFile(String name, String mimetype, int index=-
1) -
> bool
</autodoc> 
1293           <param name=
"name" type=
"String" default=
""/> 
1294           <param name=
"mimetype" type=
"String" default=
""/> 
1295           <param name=
"index" type=
"int" default=
"-1"/> 
1298       <method name=
"SaveFile" type=
"bool" overloaded=
"no"> 
1299         <autodoc>SaveFile(String name, int type) -
> bool
</autodoc> 
1301           <param name=
"name" type=
"String" default=
""/> 
1302           <param name=
"type" type=
"int" default=
""/> 
1305       <method name=
"SaveMimeFile" type=
"bool" overloaded=
"no"> 
1306         <autodoc>SaveMimeFile(String name, String mimetype) -
> bool
</autodoc> 
1308           <param name=
"name" type=
"String" default=
""/> 
1309           <param name=
"mimetype" type=
"String" default=
""/> 
1312       <staticmethod name=
"CanReadStream" type=
"bool" overloaded=
"no"> 
1313         <autodoc>CanReadStream(InputStream stream) -
> bool
</autodoc> 
1315           <param name=
"stream" type=
"wxInputStream" default=
""/> 
1318       <method name=
"LoadStream" type=
"bool" overloaded=
"no"> 
1319         <autodoc>LoadStream(InputStream stream, long type=BITMAP_TYPE_ANY, int index=-
1) -
> bool
</autodoc> 
1321           <param name=
"stream" type=
"wxInputStream" default=
""/> 
1322           <param name=
"type" type=
"long" default=
"wxBITMAP_TYPE_ANY"/> 
1323           <param name=
"index" type=
"int" default=
"-1"/> 
1326       <method name=
"LoadMimeStream" type=
"bool" overloaded=
"no"> 
1327         <autodoc>LoadMimeStream(InputStream stream, String mimetype, int index=-
1) -
> bool
</autodoc> 
1329           <param name=
"stream" type=
"wxInputStream" default=
""/> 
1330           <param name=
"mimetype" type=
"String" default=
""/> 
1331           <param name=
"index" type=
"int" default=
"-1"/> 
1334       <method name=
"Ok" type=
"bool" overloaded=
"no"> 
1335         <autodoc>Ok() -
> bool
</autodoc> 
1337       <method name=
"GetWidth" type=
"int" overloaded=
"no"> 
1338         <autodoc>GetWidth() -
> int
</autodoc> 
1340       <method name=
"GetHeight" type=
"int" overloaded=
"no"> 
1341         <autodoc>GetHeight() -
> int
</autodoc> 
1343       <method name=
"GetSubImage" type=
"Image" overloaded=
"no"> 
1344         <autodoc>GetSubImage(Rect rect) -
> Image
</autodoc> 
1346           <param name=
"rect" type=
"Rect" default=
""/> 
1349       <method name=
"Copy" type=
"Image" overloaded=
"no"> 
1350         <autodoc>Copy() -
> Image
</autodoc> 
1352       <method name=
"Paste" type=
"" overloaded=
"no"> 
1353         <autodoc>Paste(Image image, int x, int y)
</autodoc> 
1355           <param name=
"image" type=
"Image" default=
""/> 
1356           <param name=
"x" type=
"int" default=
""/> 
1357           <param name=
"y" type=
"int" default=
""/> 
1360       <method name=
"GetData" type=
"PyObject" overloaded=
"no"> 
1361         <autodoc>GetData() -
> PyObject
</autodoc> 
1363       <method name=
"SetData" type=
"" overloaded=
"no"> 
1364         <autodoc>SetData(PyObject data)
</autodoc> 
1366           <param name=
"data" type=
"PyObject" default=
""/> 
1369       <method name=
"GetDataBuffer" type=
"PyObject" overloaded=
"no"> 
1370         <autodoc>GetDataBuffer() -
> PyObject
</autodoc> 
1372       <method name=
"SetDataBuffer" type=
"" overloaded=
"no"> 
1373         <autodoc>SetDataBuffer(PyObject data)
</autodoc> 
1375           <param name=
"data" type=
"PyObject" default=
""/> 
1378       <method name=
"GetAlphaData" type=
"PyObject" overloaded=
"no"> 
1379         <autodoc>GetAlphaData() -
> PyObject
</autodoc> 
1381       <method name=
"SetAlphaData" type=
"" overloaded=
"no"> 
1382         <autodoc>SetAlphaData(PyObject data)
</autodoc> 
1384           <param name=
"data" type=
"PyObject" default=
""/> 
1387       <method name=
"GetAlphaBuffer" type=
"PyObject" overloaded=
"no"> 
1388         <autodoc>GetAlphaBuffer() -
> PyObject
</autodoc> 
1390       <method name=
"SetAlphaBuffer" type=
"" overloaded=
"no"> 
1391         <autodoc>SetAlphaBuffer(PyObject data)
</autodoc> 
1393           <param name=
"data" type=
"PyObject" default=
""/> 
1396       <method name=
"SetMaskColour" type=
"" overloaded=
"no"> 
1397         <autodoc>SetMaskColour(unsigned char r, unsigned char g, unsigned char b)
</autodoc> 
1399           <param name=
"r" type=
"unsigned char" default=
""/> 
1400           <param name=
"g" type=
"unsigned char" default=
""/> 
1401           <param name=
"b" type=
"unsigned char" default=
""/> 
1404       <method name=
"GetMaskRed" type=
"unsigned char" overloaded=
"no"> 
1405         <autodoc>GetMaskRed() -
> unsigned char
</autodoc> 
1407       <method name=
"GetMaskGreen" type=
"unsigned char" overloaded=
"no"> 
1408         <autodoc>GetMaskGreen() -
> unsigned char
</autodoc> 
1410       <method name=
"GetMaskBlue" type=
"unsigned char" overloaded=
"no"> 
1411         <autodoc>GetMaskBlue() -
> unsigned char
</autodoc> 
1413       <method name=
"SetMask" type=
"" overloaded=
"no"> 
1414         <autodoc>SetMask(bool mask=True)
</autodoc> 
1416           <param name=
"mask" type=
"bool" default=
"True"/> 
1419       <method name=
"HasMask" type=
"bool" overloaded=
"no"> 
1420         <autodoc>HasMask() -
> bool
</autodoc> 
1422       <method name=
"Rotate" type=
"Image" overloaded=
"no"> 
1423         <autodoc>Rotate(double angle, Point centre_of_rotation, bool interpolating=True, 
 
1424     Point offset_after_rotation=None) -
> Image
</autodoc> 
1426           <param name=
"angle" type=
"double" default=
""/> 
1427           <param name=
"centre_of_rotation" type=
"Point" default=
""/> 
1428           <param name=
"interpolating" type=
"bool" default=
"True"/> 
1429           <param name=
"offset_after_rotation" type=
"Point" default=
"NULL"/> 
1432       <method name=
"Rotate90" type=
"Image" overloaded=
"no"> 
1433         <autodoc>Rotate90(bool clockwise=True) -
> Image
</autodoc> 
1435           <param name=
"clockwise" type=
"bool" default=
"True"/> 
1438       <method name=
"Mirror" type=
"Image" overloaded=
"no"> 
1439         <autodoc>Mirror(bool horizontally=True) -
> Image
</autodoc> 
1441           <param name=
"horizontally" type=
"bool" default=
"True"/> 
1444       <method name=
"Replace" type=
"" overloaded=
"no"> 
1445         <autodoc>Replace(unsigned char r1, unsigned char g1, unsigned char b1, 
 
1446     unsigned char r2, unsigned char g2, unsigned char b2)
</autodoc> 
1448           <param name=
"r1" type=
"unsigned char" default=
""/> 
1449           <param name=
"g1" type=
"unsigned char" default=
""/> 
1450           <param name=
"b1" type=
"unsigned char" default=
""/> 
1451           <param name=
"r2" type=
"unsigned char" default=
""/> 
1452           <param name=
"g2" type=
"unsigned char" default=
""/> 
1453           <param name=
"b2" type=
"unsigned char" default=
""/> 
1456       <method name=
"ConvertToMono" type=
"Image" overloaded=
"no"> 
1457         <autodoc>ConvertToMono(unsigned char r, unsigned char g, unsigned char b) -
> Image
</autodoc> 
1459           <param name=
"r" type=
"unsigned char" default=
""/> 
1460           <param name=
"g" type=
"unsigned char" default=
""/> 
1461           <param name=
"b" type=
"unsigned char" default=
""/> 
1464       <method name=
"SetOption" type=
"" overloaded=
"no"> 
1465         <autodoc>SetOption(String name, String value)
</autodoc> 
1467           <param name=
"name" type=
"String" default=
""/> 
1468           <param name=
"value" type=
"String" default=
""/> 
1471       <method name=
"SetOptionInt" type=
"" overloaded=
"no"> 
1472         <autodoc>SetOptionInt(String name, int value)
</autodoc> 
1474           <param name=
"name" type=
"String" default=
""/> 
1475           <param name=
"value" type=
"int" default=
""/> 
1478       <method name=
"GetOption" type=
"String" overloaded=
"no"> 
1479         <autodoc>GetOption(String name) -
> String
</autodoc> 
1481           <param name=
"name" type=
"String" default=
""/> 
1484       <method name=
"GetOptionInt" type=
"int" overloaded=
"no"> 
1485         <autodoc>GetOptionInt(String name) -
> int
</autodoc> 
1487           <param name=
"name" type=
"String" default=
""/> 
1490       <method name=
"HasOption" type=
"bool" overloaded=
"no"> 
1491         <autodoc>HasOption(String name) -
> bool
</autodoc> 
1493           <param name=
"name" type=
"String" default=
""/> 
1496       <method name=
"CountColours" type=
"unsigned long" overloaded=
"no"> 
1497         <autodoc>CountColours(unsigned long stopafter=(unsigned long) -
1) -
> unsigned long
</autodoc> 
1499           <param name=
"stopafter" type=
"unsigned long" default=
"(unsigned long) -1"/> 
1502       <method name=
"ComputeHistogram" type=
"unsigned long" overloaded=
"no"> 
1503         <autodoc>ComputeHistogram(ImageHistogram h) -
> unsigned long
</autodoc> 
1505           <param name=
"h" type=
"ImageHistogram" default=
""/> 
1508       <staticmethod name=
"AddHandler" type=
"" overloaded=
"no"> 
1509         <autodoc>AddHandler(ImageHandler handler)
</autodoc> 
1511           <param name=
"handler" type=
"ImageHandler" default=
""/> 
1514       <staticmethod name=
"InsertHandler" type=
"" overloaded=
"no"> 
1515         <autodoc>InsertHandler(ImageHandler handler)
</autodoc> 
1517           <param name=
"handler" type=
"ImageHandler" default=
""/> 
1520       <staticmethod name=
"RemoveHandler" type=
"bool" overloaded=
"no"> 
1521         <autodoc>RemoveHandler(String name) -
> bool
</autodoc> 
1523           <param name=
"name" type=
"String" default=
""/> 
1526       <staticmethod name=
"GetImageExtWildcard" type=
"String" overloaded=
"no"> 
1527         <autodoc>GetImageExtWildcard() -
> String
</autodoc> 
1529       <method name=
"ConvertToBitmap" type=
"wxBitmap" overloaded=
"no"> 
1530         <autodoc>ConvertToBitmap() -
> Bitmap
</autodoc> 
1532       <method name=
"ConvertToMonoBitmap" type=
"wxBitmap" overloaded=
"no"> 
1533         <autodoc>ConvertToMonoBitmap(unsigned char red, unsigned char green, unsigned char blue) -
> Bitmap
</autodoc> 
1535           <param name=
"red" type=
"unsigned char" default=
""/> 
1536           <param name=
"green" type=
"unsigned char" default=
""/> 
1537           <param name=
"blue" type=
"unsigned char" default=
""/> 
1541     <method name=
"InitAllImageHandlers" oldname=
"wxInitAllImageHandlers" type=
"" overloaded=
"no"> 
1542       <autodoc>InitAllImageHandlers()
</autodoc> 
1544     <class name=
"BMPHandler" oldname=
"wxBMPHandler" module=
"core"> 
1545       <baseclass name=
"ImageHandler"/> 
1546       <constructor name=
"BMPHandler" overloaded=
"no"> 
1547         <autodoc>__init__() -
> BMPHandler
</autodoc> 
1550     <class name=
"ICOHandler" oldname=
"wxICOHandler" module=
"core"> 
1551       <baseclass name=
"BMPHandler"/> 
1552       <constructor name=
"ICOHandler" overloaded=
"no"> 
1553         <autodoc>__init__() -
> ICOHandler
</autodoc> 
1556     <class name=
"CURHandler" oldname=
"wxCURHandler" module=
"core"> 
1557       <baseclass name=
"ICOHandler"/> 
1558       <constructor name=
"CURHandler" overloaded=
"no"> 
1559         <autodoc>__init__() -
> CURHandler
</autodoc> 
1562     <class name=
"ANIHandler" oldname=
"wxANIHandler" module=
"core"> 
1563       <baseclass name=
"CURHandler"/> 
1564       <constructor name=
"ANIHandler" overloaded=
"no"> 
1565         <autodoc>__init__() -
> ANIHandler
</autodoc> 
1568     <class name=
"PNGHandler" oldname=
"wxPNGHandler" module=
"core"> 
1569       <baseclass name=
"ImageHandler"/> 
1570       <constructor name=
"PNGHandler" overloaded=
"no"> 
1571         <autodoc>__init__() -
> PNGHandler
</autodoc> 
1574     <class name=
"GIFHandler" oldname=
"wxGIFHandler" module=
"core"> 
1575       <baseclass name=
"ImageHandler"/> 
1576       <constructor name=
"GIFHandler" overloaded=
"no"> 
1577         <autodoc>__init__() -
> GIFHandler
</autodoc> 
1580     <class name=
"PCXHandler" oldname=
"wxPCXHandler" module=
"core"> 
1581       <baseclass name=
"ImageHandler"/> 
1582       <constructor name=
"PCXHandler" overloaded=
"no"> 
1583         <autodoc>__init__() -
> PCXHandler
</autodoc> 
1586     <class name=
"JPEGHandler" oldname=
"wxJPEGHandler" module=
"core"> 
1587       <baseclass name=
"ImageHandler"/> 
1588       <constructor name=
"JPEGHandler" overloaded=
"no"> 
1589         <autodoc>__init__() -
> JPEGHandler
</autodoc> 
1592     <class name=
"PNMHandler" oldname=
"wxPNMHandler" module=
"core"> 
1593       <baseclass name=
"ImageHandler"/> 
1594       <constructor name=
"PNMHandler" overloaded=
"no"> 
1595         <autodoc>__init__() -
> PNMHandler
</autodoc> 
1598     <class name=
"XPMHandler" oldname=
"wxXPMHandler" module=
"core"> 
1599       <baseclass name=
"ImageHandler"/> 
1600       <constructor name=
"XPMHandler" overloaded=
"no"> 
1601         <autodoc>__init__() -
> XPMHandler
</autodoc> 
1604     <class name=
"TIFFHandler" oldname=
"wxTIFFHandler" module=
"core"> 
1605       <baseclass name=
"ImageHandler"/> 
1606       <constructor name=
"TIFFHandler" overloaded=
"no"> 
1607         <autodoc>__init__() -
> TIFFHandler
</autodoc> 
1611 #---------------------------------------------------------------------------
 
1613     <class name=
"EvtHandler" oldname=
"wxEvtHandler" module=
"core"> 
1614       <baseclass name=
"Object"/> 
1615       <constructor name=
"EvtHandler" overloaded=
"no"> 
1616         <autodoc>__init__() -
> EvtHandler
</autodoc> 
1618       <method name=
"GetNextHandler" type=
"EvtHandler" overloaded=
"no"> 
1619         <autodoc>GetNextHandler() -
> EvtHandler
</autodoc> 
1621       <method name=
"GetPreviousHandler" type=
"EvtHandler" overloaded=
"no"> 
1622         <autodoc>GetPreviousHandler() -
> EvtHandler
</autodoc> 
1624       <method name=
"SetNextHandler" type=
"" overloaded=
"no"> 
1625         <autodoc>SetNextHandler(EvtHandler handler)
</autodoc> 
1627           <param name=
"handler" type=
"EvtHandler" default=
""/> 
1630       <method name=
"SetPreviousHandler" type=
"" overloaded=
"no"> 
1631         <autodoc>SetPreviousHandler(EvtHandler handler)
</autodoc> 
1633           <param name=
"handler" type=
"EvtHandler" default=
""/> 
1636       <method name=
"GetEvtHandlerEnabled" type=
"bool" overloaded=
"no"> 
1637         <autodoc>GetEvtHandlerEnabled() -
> bool
</autodoc> 
1639       <method name=
"SetEvtHandlerEnabled" type=
"" overloaded=
"no"> 
1640         <autodoc>SetEvtHandlerEnabled(bool enabled)
</autodoc> 
1642           <param name=
"enabled" type=
"bool" default=
""/> 
1645       <method name=
"ProcessEvent" type=
"bool" overloaded=
"no"> 
1646         <autodoc>ProcessEvent(Event event) -
> bool
</autodoc> 
1648           <param name=
"event" type=
"wxEvent" default=
""/> 
1651       <method name=
"AddPendingEvent" type=
"" overloaded=
"no"> 
1652         <autodoc>AddPendingEvent(Event event)
</autodoc> 
1654           <param name=
"event" type=
"wxEvent" default=
""/> 
1657       <method name=
"ProcessPendingEvents" type=
"" overloaded=
"no"> 
1658         <autodoc>ProcessPendingEvents()
</autodoc> 
1660       <method name=
"Connect" type=
"" overloaded=
"no"> 
1661         <autodoc>Connect(int id, int lastId, int eventType, PyObject func)
</autodoc> 
1663           <param name=
"id" type=
"int" default=
""/> 
1664           <param name=
"lastId" type=
"int" default=
""/> 
1665           <param name=
"eventType" type=
"int" default=
""/> 
1666           <param name=
"func" type=
"PyObject" default=
""/> 
1669       <method name=
"Disconnect" type=
"bool" overloaded=
"no"> 
1670         <autodoc>Disconnect(int id, int lastId=-
1, wxEventType eventType=wxEVT_NULL) -
> bool
</autodoc> 
1672           <param name=
"id" type=
"int" default=
""/> 
1673           <param name=
"lastId" type=
"int" default=
"-1"/> 
1674           <param name=
"eventType" type=
"wxEventType" default=
"wxEVT_NULL"/> 
1677       <method name=
"_setOORInfo" type=
"" overloaded=
"no"> 
1678         <autodoc>_setOORInfo(PyObject _self)
</autodoc> 
1680           <param name=
"_self" type=
"PyObject" default=
""/> 
1686 #---------------------------------------------------------------------------
 
1688 class PyEventBinder(object):
 
1690     Instances of this class are used to bind specific events to event
 
1693     def __init__(self, evtType, expectedIDs=
0):
 
1694         if expectedIDs not in [
0, 
1, 
2]:
 
1695             raise ValueError, "Invalid number of expectedIDs"
 
1696         self.expectedIDs = expectedIDs
 
1698         if type(evtType) == list or type(evtType) == tuple:
 
1699             self.evtType = evtType
 
1701             self.evtType = [evtType]
 
1704     def Bind(self, target, id1, id2, function):
 
1705         """Bind this set of event types to target."""
 
1706         for et in self.evtType:
 
1707             target.Connect(id1, id2, et, function)
 
1710     def __call__(self, *args):
 
1712         For backwards compatibility with the old EVT_* functions.
 
1713         Should be called with either (window, func), (window, ID,
 
1714         func) or (window, ID1, ID2, func) parameters depending on the
 
1717         assert len(args) == 
2 + self.expectedIDs
 
1721         if self.expectedIDs == 
0:
 
1723         elif self.expectedIDs == 
1:
 
1726         elif self.expectedIDs == 
2:
 
1731             raise ValueError, "Unexpected number of IDs"
 
1733         self.Bind(target, id1, id2, func)
 
1736 # These two are square pegs that don't fit the PyEventBinder hole...
 
1737 def EVT_COMMAND(win, id, cmd, func):
 
1738     win.Connect(id, -
1, cmd, func)
 
1739 def EVT_COMMAND_RANGE(win, id1, id2, cmd, func):
 
1740     win.Connect(id1, id2, cmd, func)
 
1743 #---------------------------------------------------------------------------
 
1746 #---------------------------------------------------------------------------
 
1748     <method name=
"NewEventType" oldname=
"wxNewEventType" type=
"wxEventType" overloaded=
"no"> 
1749       <autodoc>NewEventType() -
> wxEventType
</autodoc> 
1753 # Create some event binders
 
1754 EVT_SIZE = wx.PyEventBinder( wxEVT_SIZE )
 
1755 EVT_SIZING = wx.PyEventBinder( wxEVT_SIZING )
 
1756 EVT_MOVE = wx.PyEventBinder( wxEVT_MOVE )
 
1757 EVT_MOVING = wx.PyEventBinder( wxEVT_MOVING )
 
1758 EVT_CLOSE = wx.PyEventBinder( wxEVT_CLOSE_WINDOW )
 
1759 EVT_END_SESSION = wx.PyEventBinder( wxEVT_END_SESSION )
 
1760 EVT_QUERY_END_SESSION = wx.PyEventBinder( wxEVT_QUERY_END_SESSION )
 
1761 EVT_PAINT = wx.PyEventBinder( wxEVT_PAINT )
 
1762 EVT_NC_PAINT = wx.PyEventBinder( wxEVT_NC_PAINT )
 
1763 EVT_ERASE_BACKGROUND = wx.PyEventBinder( wxEVT_ERASE_BACKGROUND )
 
1764 EVT_CHAR = wx.PyEventBinder( wxEVT_CHAR )
 
1765 EVT_KEY_DOWN = wx.PyEventBinder( wxEVT_KEY_DOWN )
 
1766 EVT_KEY_UP = wx.PyEventBinder( wxEVT_KEY_UP )
 
1767 EVT_HOTKEY = wx.PyEventBinder( wxEVT_HOTKEY, 
1) 
 
1768 EVT_CHAR_HOOK = wx.PyEventBinder( wxEVT_CHAR_HOOK )
 
1769 EVT_MENU_OPEN = wx.PyEventBinder( wxEVT_MENU_OPEN )
 
1770 EVT_MENU_CLOSE = wx.PyEventBinder( wxEVT_MENU_CLOSE )
 
1771 EVT_MENU_HIGHLIGHT = wx.PyEventBinder( wxEVT_MENU_HIGHLIGHT, 
1)
 
1772 EVT_MENU_HIGHLIGHT_ALL = wx.PyEventBinder( wxEVT_MENU_HIGHLIGHT )
 
1773 EVT_SET_FOCUS = wx.PyEventBinder( wxEVT_SET_FOCUS )
 
1774 EVT_KILL_FOCUS = wx.PyEventBinder( wxEVT_KILL_FOCUS )
 
1775 EVT_CHILD_FOCUS = wx.PyEventBinder( wxEVT_CHILD_FOCUS )
 
1776 EVT_ACTIVATE = wx.PyEventBinder( wxEVT_ACTIVATE )
 
1777 EVT_ACTIVATE_APP = wx.PyEventBinder( wxEVT_ACTIVATE_APP )
 
1778 EVT_END_SESSION = wx.PyEventBinder( wxEVT_END_SESSION )
 
1779 EVT_QUERY_END_SESSION = wx.PyEventBinder( wxEVT_QUERY_END_SESSION )
 
1780 EVT_DROP_FILES = wx.PyEventBinder( wxEVT_DROP_FILES )
 
1781 EVT_INIT_DIALOG = wx.PyEventBinder( wxEVT_INIT_DIALOG )
 
1782 EVT_SYS_COLOUR_CHANGED = wx.PyEventBinder( wxEVT_SYS_COLOUR_CHANGED )
 
1783 EVT_DISPLAY_CHANGED = wx.PyEventBinder( wxEVT_DISPLAY_CHANGED )
 
1784 EVT_SHOW = wx.PyEventBinder( wxEVT_SHOW )
 
1785 EVT_MAXIMIZE = wx.PyEventBinder( wxEVT_MAXIMIZE )
 
1786 EVT_ICONIZE = wx.PyEventBinder( wxEVT_ICONIZE )
 
1787 EVT_NAVIGATION_KEY = wx.PyEventBinder( wxEVT_NAVIGATION_KEY )
 
1788 EVT_PALETTE_CHANGED = wx.PyEventBinder( wxEVT_PALETTE_CHANGED )
 
1789 EVT_QUERY_NEW_PALETTE = wx.PyEventBinder( wxEVT_QUERY_NEW_PALETTE )
 
1790 EVT_WINDOW_CREATE = wx.PyEventBinder( wxEVT_CREATE )
 
1791 EVT_WINDOW_DESTROY = wx.PyEventBinder( wxEVT_DESTROY )
 
1792 EVT_SET_CURSOR = wx.PyEventBinder( wxEVT_SET_CURSOR )
 
1793 EVT_MOUSE_CAPTURE_CHANGED = wx.PyEventBinder( wxEVT_MOUSE_CAPTURE_CHANGED )
 
1795 EVT_LEFT_DOWN = wx.PyEventBinder( wxEVT_LEFT_DOWN )
 
1796 EVT_LEFT_UP = wx.PyEventBinder( wxEVT_LEFT_UP )
 
1797 EVT_MIDDLE_DOWN = wx.PyEventBinder( wxEVT_MIDDLE_DOWN )
 
1798 EVT_MIDDLE_UP = wx.PyEventBinder( wxEVT_MIDDLE_UP )
 
1799 EVT_RIGHT_DOWN = wx.PyEventBinder( wxEVT_RIGHT_DOWN )
 
1800 EVT_RIGHT_UP = wx.PyEventBinder( wxEVT_RIGHT_UP )
 
1801 EVT_MOTION = wx.PyEventBinder( wxEVT_MOTION )
 
1802 EVT_LEFT_DCLICK = wx.PyEventBinder( wxEVT_LEFT_DCLICK )
 
1803 EVT_MIDDLE_DCLICK = wx.PyEventBinder( wxEVT_MIDDLE_DCLICK )
 
1804 EVT_RIGHT_DCLICK = wx.PyEventBinder( wxEVT_RIGHT_DCLICK )
 
1805 EVT_LEAVE_WINDOW = wx.PyEventBinder( wxEVT_LEAVE_WINDOW )
 
1806 EVT_ENTER_WINDOW = wx.PyEventBinder( wxEVT_ENTER_WINDOW )
 
1807 EVT_MOUSEWHEEL = wx.PyEventBinder( wxEVT_MOUSEWHEEL )
 
1809 EVT_MOUSE_EVENTS = wx.PyEventBinder([ wxEVT_LEFT_DOWN,
 
1817                                      wxEVT_MIDDLE_DCLICK,
 
1825 # Scrolling from wxWindow (sent to wxScrolledWindow)
 
1826 EVT_SCROLLWIN = wx.PyEventBinder([ wxEVT_SCROLLWIN_TOP, 
 
1827                                   wxEVT_SCROLLWIN_BOTTOM,
 
1828                                   wxEVT_SCROLLWIN_LINEUP,
 
1829                                   wxEVT_SCROLLWIN_LINEDOWN,
 
1830                                   wxEVT_SCROLLWIN_PAGEUP, 
 
1831                                   wxEVT_SCROLLWIN_PAGEDOWN,
 
1832                                   wxEVT_SCROLLWIN_THUMBTRACK,
 
1833                                   wxEVT_SCROLLWIN_THUMBRELEASE,
 
1836 EVT_SCROLLWIN_TOP = wx.PyEventBinder( wxEVT_SCROLLWIN_TOP )
 
1837 EVT_SCROLLWIN_BOTTOM = wx.PyEventBinder( wxEVT_SCROLLWIN_BOTTOM )
 
1838 EVT_SCROLLWIN_LINEUP = wx.PyEventBinder( wxEVT_SCROLLWIN_LINEUP )
 
1839 EVT_SCROLLWIN_LINEDOWN = wx.PyEventBinder( wxEVT_SCROLLWIN_LINEDOWN )
 
1840 EVT_SCROLLWIN_PAGEUP = wx.PyEventBinder( wxEVT_SCROLLWIN_PAGEUP )
 
1841 EVT_SCROLLWIN_PAGEDOWN = wx.PyEventBinder( wxEVT_SCROLLWIN_PAGEDOWN )
 
1842 EVT_SCROLLWIN_THUMBTRACK = wx.PyEventBinder( wxEVT_SCROLLWIN_THUMBTRACK )
 
1843 EVT_SCROLLWIN_THUMBRELEASE = wx.PyEventBinder( wxEVT_SCROLLWIN_THUMBRELEASE )
 
1845 # Scrolling from wxSlider and wxScrollBar
 
1846 EVT_SCROLL = wx.PyEventBinder([ wxEVT_SCROLL_TOP, 
 
1847                                wxEVT_SCROLL_BOTTOM, 
 
1848                                wxEVT_SCROLL_LINEUP, 
 
1849                                wxEVT_SCROLL_LINEDOWN, 
 
1850                                wxEVT_SCROLL_PAGEUP, 
 
1851                                wxEVT_SCROLL_PAGEDOWN, 
 
1852                                wxEVT_SCROLL_THUMBTRACK, 
 
1853                                wxEVT_SCROLL_THUMBRELEASE, 
 
1854                                wxEVT_SCROLL_ENDSCROLL,
 
1857 EVT_SCROLL_TOP = wx.PyEventBinder( wxEVT_SCROLL_TOP )
 
1858 EVT_SCROLL_BOTTOM = wx.PyEventBinder( wxEVT_SCROLL_BOTTOM )
 
1859 EVT_SCROLL_LINEUP = wx.PyEventBinder( wxEVT_SCROLL_LINEUP )
 
1860 EVT_SCROLL_LINEDOWN = wx.PyEventBinder( wxEVT_SCROLL_LINEDOWN )
 
1861 EVT_SCROLL_PAGEUP = wx.PyEventBinder( wxEVT_SCROLL_PAGEUP )
 
1862 EVT_SCROLL_PAGEDOWN = wx.PyEventBinder( wxEVT_SCROLL_PAGEDOWN )
 
1863 EVT_SCROLL_THUMBTRACK = wx.PyEventBinder( wxEVT_SCROLL_THUMBTRACK )
 
1864 EVT_SCROLL_THUMBRELEASE = wx.PyEventBinder( wxEVT_SCROLL_THUMBRELEASE )
 
1865 EVT_SCROLL_ENDSCROLL = wx.PyEventBinder( wxEVT_SCROLL_ENDSCROLL )
 
1867 # Scrolling from wxSlider and wxScrollBar, with an id
 
1868 EVT_COMMAND_SCROLL = wx.PyEventBinder([ wxEVT_SCROLL_TOP, 
 
1869                                        wxEVT_SCROLL_BOTTOM, 
 
1870                                        wxEVT_SCROLL_LINEUP, 
 
1871                                        wxEVT_SCROLL_LINEDOWN, 
 
1872                                        wxEVT_SCROLL_PAGEUP, 
 
1873                                        wxEVT_SCROLL_PAGEDOWN, 
 
1874                                        wxEVT_SCROLL_THUMBTRACK, 
 
1875                                        wxEVT_SCROLL_THUMBRELEASE,
 
1876                                        wxEVT_SCROLL_ENDSCROLL,
 
1879 EVT_COMMAND_SCROLL_TOP = wx.PyEventBinder( wxEVT_SCROLL_TOP, 
1)
 
1880 EVT_COMMAND_SCROLL_BOTTOM = wx.PyEventBinder( wxEVT_SCROLL_BOTTOM, 
1)
 
1881 EVT_COMMAND_SCROLL_LINEUP = wx.PyEventBinder( wxEVT_SCROLL_LINEUP, 
1)
 
1882 EVT_COMMAND_SCROLL_LINEDOWN = wx.PyEventBinder( wxEVT_SCROLL_LINEDOWN, 
1)
 
1883 EVT_COMMAND_SCROLL_PAGEUP = wx.PyEventBinder( wxEVT_SCROLL_PAGEUP, 
1)
 
1884 EVT_COMMAND_SCROLL_PAGEDOWN = wx.PyEventBinder( wxEVT_SCROLL_PAGEDOWN, 
1)
 
1885 EVT_COMMAND_SCROLL_THUMBTRACK = wx.PyEventBinder( wxEVT_SCROLL_THUMBTRACK, 
1)
 
1886 EVT_COMMAND_SCROLL_THUMBRELEASE = wx.PyEventBinder( wxEVT_SCROLL_THUMBRELEASE, 
1)
 
1887 EVT_COMMAND_SCROLL_ENDSCROLL = wx.PyEventBinder( wxEVT_SCROLL_ENDSCROLL, 
1)
 
1889 EVT_BUTTON = wx.PyEventBinder( wxEVT_COMMAND_BUTTON_CLICKED, 
1)
 
1890 EVT_CHECKBOX = wx.PyEventBinder( wxEVT_COMMAND_CHECKBOX_CLICKED, 
1)
 
1891 EVT_CHOICE = wx.PyEventBinder( wxEVT_COMMAND_CHOICE_SELECTED, 
1)
 
1892 EVT_LISTBOX = wx.PyEventBinder( wxEVT_COMMAND_LISTBOX_SELECTED, 
1)
 
1893 EVT_LISTBOX_DCLICK = wx.PyEventBinder( wxEVT_COMMAND_LISTBOX_DOUBLECLICKED, 
1)
 
1894 EVT_MENU = wx.PyEventBinder( wxEVT_COMMAND_MENU_SELECTED, 
1)
 
1895 EVT_MENU_RANGE = wx.PyEventBinder( wxEVT_COMMAND_MENU_SELECTED, 
2)
 
1896 EVT_SLIDER = wx.PyEventBinder( wxEVT_COMMAND_SLIDER_UPDATED, 
1)
 
1897 EVT_RADIOBOX = wx.PyEventBinder( wxEVT_COMMAND_RADIOBOX_SELECTED, 
1)
 
1898 EVT_RADIOBUTTON = wx.PyEventBinder( wxEVT_COMMAND_RADIOBUTTON_SELECTED, 
1)
 
1900 EVT_SCROLLBAR = wx.PyEventBinder( wxEVT_COMMAND_SCROLLBAR_UPDATED, 
1)
 
1901 EVT_VLBOX = wx.PyEventBinder( wxEVT_COMMAND_VLBOX_SELECTED, 
1)
 
1902 EVT_COMBOBOX = wx.PyEventBinder( wxEVT_COMMAND_COMBOBOX_SELECTED, 
1)
 
1903 EVT_TOOL = wx.PyEventBinder( wxEVT_COMMAND_TOOL_CLICKED, 
1)
 
1904 EVT_TOOL_RANGE = wx.PyEventBinder( wxEVT_COMMAND_TOOL_CLICKED, 
2)
 
1905 EVT_TOOL_RCLICKED = wx.PyEventBinder( wxEVT_COMMAND_TOOL_RCLICKED, 
1)
 
1906 EVT_TOOL_RCLICKED_RANGE = wx.PyEventBinder( wxEVT_COMMAND_TOOL_RCLICKED, 
2)
 
1907 EVT_TOOL_ENTER = wx.PyEventBinder( wxEVT_COMMAND_TOOL_ENTER, 
1)
 
1908 EVT_CHECKLISTBOX = wx.PyEventBinder( wxEVT_COMMAND_CHECKLISTBOX_TOGGLED, 
1)
 
1911 EVT_COMMAND_LEFT_CLICK = wx.PyEventBinder( wxEVT_COMMAND_LEFT_CLICK, 
1)
 
1912 EVT_COMMAND_LEFT_DCLICK = wx.PyEventBinder( wxEVT_COMMAND_LEFT_DCLICK, 
1)
 
1913 EVT_COMMAND_RIGHT_CLICK = wx.PyEventBinder( wxEVT_COMMAND_RIGHT_CLICK, 
1)
 
1914 EVT_COMMAND_RIGHT_DCLICK = wx.PyEventBinder( wxEVT_COMMAND_RIGHT_DCLICK, 
1)
 
1915 EVT_COMMAND_SET_FOCUS = wx.PyEventBinder( wxEVT_COMMAND_SET_FOCUS, 
1)
 
1916 EVT_COMMAND_KILL_FOCUS = wx.PyEventBinder( wxEVT_COMMAND_KILL_FOCUS, 
1)
 
1917 EVT_COMMAND_ENTER = wx.PyEventBinder( wxEVT_COMMAND_ENTER, 
1)
 
1919 EVT_IDLE = wx.PyEventBinder( wxEVT_IDLE )
 
1921 EVT_UPDATE_UI = wx.PyEventBinder( wxEVT_UPDATE_UI, 
1)
 
1922 EVT_UPDATE_UI_RANGE = wx.PyEventBinder( wxEVT_UPDATE_UI, 
2)
 
1924 EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
 
1929 #---------------------------------------------------------------------------
 
1931     <class name=
"Event" oldname=
"wxEvent" module=
"core"> 
1932       <baseclass name=
"Object"/> 
1933       <destructor name=
"~wxEvent" overloaded=
"no"> 
1934         <autodoc>__del__()
</autodoc> 
1936       <method name=
"SetEventType" type=
"" overloaded=
"no"> 
1937         <autodoc>SetEventType(wxEventType typ)
</autodoc> 
1939           <param name=
"typ" type=
"wxEventType" default=
""/> 
1942       <method name=
"GetEventType" type=
"wxEventType" overloaded=
"no"> 
1943         <autodoc>GetEventType() -
> wxEventType
</autodoc> 
1945       <method name=
"GetEventObject" type=
"Object" overloaded=
"no"> 
1946         <autodoc>GetEventObject() -
> Object
</autodoc> 
1948       <method name=
"SetEventObject" type=
"" overloaded=
"no"> 
1949         <autodoc>SetEventObject(Object obj)
</autodoc> 
1951           <param name=
"obj" type=
"Object" default=
""/> 
1954       <method name=
"GetTimestamp" type=
"long" overloaded=
"no"> 
1955         <autodoc>GetTimestamp() -
> long
</autodoc> 
1957       <method name=
"SetTimestamp" type=
"" overloaded=
"no"> 
1958         <autodoc>SetTimestamp(long ts=
0)
</autodoc> 
1960           <param name=
"ts" type=
"long" default=
"0"/> 
1963       <method name=
"GetId" type=
"int" overloaded=
"no"> 
1964         <autodoc>GetId() -
> int
</autodoc> 
1966       <method name=
"SetId" type=
"" overloaded=
"no"> 
1967         <autodoc>SetId(int Id)
</autodoc> 
1969           <param name=
"Id" type=
"int" default=
""/> 
1972       <method name=
"IsCommandEvent" type=
"bool" overloaded=
"no"> 
1973         <autodoc>IsCommandEvent() -
> bool
</autodoc> 
1975       <method name=
"Skip" type=
"" overloaded=
"no"> 
1976         <autodoc>Skip(bool skip=True)
</autodoc> 
1978           <param name=
"skip" type=
"bool" default=
"True"/> 
1981       <method name=
"GetSkipped" type=
"bool" overloaded=
"no"> 
1982         <autodoc>GetSkipped() -
> bool
</autodoc> 
1984       <method name=
"ShouldPropagate" type=
"bool" overloaded=
"no"> 
1985         <autodoc>ShouldPropagate() -
> bool
</autodoc> 
1987       <method name=
"StopPropagation" type=
"int" overloaded=
"no"> 
1988         <autodoc>StopPropagation() -
> int
</autodoc> 
1990       <method name=
"ResumePropagation" type=
"" overloaded=
"no"> 
1991         <autodoc>ResumePropagation(int propagationLevel)
</autodoc> 
1993           <param name=
"propagationLevel" type=
"int" default=
""/> 
1996       <method name=
"Clone" type=
"Event" overloaded=
"no"> 
1997         <autodoc>Clone() -
> Event
</autodoc> 
2001 #---------------------------------------------------------------------------
 
2003     <class name=
"PropagationDisabler" oldname=
"wxPropagationDisabler" module=
"core"> 
2004       <constructor name=
"PropagationDisabler" overloaded=
"no"> 
2005         <autodoc>__init__(Event event) -
> PropagationDisabler
</autodoc> 
2007           <param name=
"event" type=
"Event" default=
""/> 
2010       <destructor name=
"~wxPropagationDisabler" overloaded=
"no"> 
2011         <autodoc>__del__()
</autodoc> 
2014     <class name=
"PropagateOnce" oldname=
"wxPropagateOnce" module=
"core"> 
2015       <constructor name=
"PropagateOnce" overloaded=
"no"> 
2016         <autodoc>__init__(Event event) -
> PropagateOnce
</autodoc> 
2018           <param name=
"event" type=
"Event" default=
""/> 
2021       <destructor name=
"~wxPropagateOnce" overloaded=
"no"> 
2022         <autodoc>__del__()
</autodoc> 
2026 #---------------------------------------------------------------------------
 
2028     <class name=
"CommandEvent" oldname=
"wxCommandEvent" module=
"core"> 
2029       <baseclass name=
"Event"/> 
2030       <constructor name=
"CommandEvent" overloaded=
"no"> 
2031         <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int winid=
0) -
> CommandEvent
</autodoc> 
2033           <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/> 
2034           <param name=
"winid" type=
"int" default=
"0"/> 
2037       <method name=
"GetSelection" type=
"int" overloaded=
"no"> 
2038         <autodoc>GetSelection() -
> int
</autodoc> 
2040       <method name=
"SetString" type=
"" overloaded=
"no"> 
2041         <autodoc>SetString(String s)
</autodoc> 
2043           <param name=
"s" type=
"String" default=
""/> 
2046       <method name=
"GetString" type=
"String" overloaded=
"no"> 
2047         <autodoc>GetString() -
> String
</autodoc> 
2049       <method name=
"IsChecked" type=
"bool" overloaded=
"no"> 
2050         <autodoc>IsChecked() -
> bool
</autodoc> 
2052       <method name=
"IsSelection" type=
"bool" overloaded=
"no"> 
2053         <autodoc>IsSelection() -
> bool
</autodoc> 
2055       <method name=
"SetExtraLong" type=
"" overloaded=
"no"> 
2056         <autodoc>SetExtraLong(long extraLong)
</autodoc> 
2058           <param name=
"extraLong" type=
"long" default=
""/> 
2061       <method name=
"GetExtraLong" type=
"long" overloaded=
"no"> 
2062         <autodoc>GetExtraLong() -
> long
</autodoc> 
2064       <method name=
"SetInt" type=
"" overloaded=
"no"> 
2065         <autodoc>SetInt(int i)
</autodoc> 
2067           <param name=
"i" type=
"int" default=
""/> 
2070       <method name=
"GetInt" type=
"long" overloaded=
"no"> 
2071         <autodoc>GetInt() -
> long
</autodoc> 
2073       <method name=
"Clone" type=
"Event" overloaded=
"no"> 
2074         <autodoc>Clone() -
> Event
</autodoc> 
2078 #---------------------------------------------------------------------------
 
2080     <class name=
"NotifyEvent" oldname=
"wxNotifyEvent" module=
"core"> 
2081       <baseclass name=
"CommandEvent"/> 
2082       <constructor name=
"NotifyEvent" overloaded=
"no"> 
2083         <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int winid=
0) -
> NotifyEvent
</autodoc> 
2085           <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/> 
2086           <param name=
"winid" type=
"int" default=
"0"/> 
2089       <method name=
"Veto" type=
"" overloaded=
"no"> 
2090         <autodoc>Veto()
</autodoc> 
2092       <method name=
"Allow" type=
"" overloaded=
"no"> 
2093         <autodoc>Allow()
</autodoc> 
2095       <method name=
"IsAllowed" type=
"bool" overloaded=
"no"> 
2096         <autodoc>IsAllowed() -
> bool
</autodoc> 
2100 #---------------------------------------------------------------------------
 
2102     <class name=
"ScrollEvent" oldname=
"wxScrollEvent" module=
"core"> 
2103       <baseclass name=
"CommandEvent"/> 
2104       <constructor name=
"ScrollEvent" overloaded=
"no"> 
2105         <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int winid=
0, int pos=
0, 
 
2106     int orient=
0) -
> ScrollEvent
</autodoc> 
2108           <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/> 
2109           <param name=
"winid" type=
"int" default=
"0"/> 
2110           <param name=
"pos" type=
"int" default=
"0"/> 
2111           <param name=
"orient" type=
"int" default=
"0"/> 
2114       <method name=
"GetOrientation" type=
"int" overloaded=
"no"> 
2115         <autodoc>GetOrientation() -
> int
</autodoc> 
2117       <method name=
"GetPosition" type=
"int" overloaded=
"no"> 
2118         <autodoc>GetPosition() -
> int
</autodoc> 
2120       <method name=
"SetOrientation" type=
"" overloaded=
"no"> 
2121         <autodoc>SetOrientation(int orient)
</autodoc> 
2123           <param name=
"orient" type=
"int" default=
""/> 
2126       <method name=
"SetPosition" type=
"" overloaded=
"no"> 
2127         <autodoc>SetPosition(int pos)
</autodoc> 
2129           <param name=
"pos" type=
"int" default=
""/> 
2134 #---------------------------------------------------------------------------
 
2136     <class name=
"ScrollWinEvent" oldname=
"wxScrollWinEvent" module=
"core"> 
2137       <baseclass name=
"Event"/> 
2138       <constructor name=
"ScrollWinEvent" overloaded=
"no"> 
2139         <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int pos=
0, int orient=
0) -
> ScrollWinEvent
</autodoc> 
2141           <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/> 
2142           <param name=
"pos" type=
"int" default=
"0"/> 
2143           <param name=
"orient" type=
"int" default=
"0"/> 
2146       <method name=
"GetOrientation" type=
"int" overloaded=
"no"> 
2147         <autodoc>GetOrientation() -
> int
</autodoc> 
2149       <method name=
"GetPosition" type=
"int" overloaded=
"no"> 
2150         <autodoc>GetPosition() -
> int
</autodoc> 
2152       <method name=
"SetOrientation" type=
"" overloaded=
"no"> 
2153         <autodoc>SetOrientation(int orient)
</autodoc> 
2155           <param name=
"orient" type=
"int" default=
""/> 
2158       <method name=
"SetPosition" type=
"" overloaded=
"no"> 
2159         <autodoc>SetPosition(int pos)
</autodoc> 
2161           <param name=
"pos" type=
"int" default=
""/> 
2166 #---------------------------------------------------------------------------
 
2168     <class name=
"MouseEvent" oldname=
"wxMouseEvent" module=
"core"> 
2169       <baseclass name=
"Event"/> 
2170       <constructor name=
"MouseEvent" overloaded=
"no"> 
2171         <autodoc>__init__(wxEventType mouseType=wxEVT_NULL) -
> MouseEvent
</autodoc> 
2173           <param name=
"mouseType" type=
"wxEventType" default=
"wxEVT_NULL"/> 
2176       <method name=
"IsButton" type=
"bool" overloaded=
"no"> 
2177         <autodoc>IsButton() -
> bool
</autodoc> 
2179       <method name=
"ButtonDown" type=
"bool" overloaded=
"no"> 
2180         <autodoc>ButtonDown(int but=MOUSE_BTN_ANY) -
> bool
</autodoc> 
2182           <param name=
"but" type=
"int" default=
"wxMOUSE_BTN_ANY"/> 
2185       <method name=
"ButtonDClick" type=
"bool" overloaded=
"no"> 
2186         <autodoc>ButtonDClick(int but=MOUSE_BTN_ANY) -
> bool
</autodoc> 
2188           <param name=
"but" type=
"int" default=
"wxMOUSE_BTN_ANY"/> 
2191       <method name=
"ButtonUp" type=
"bool" overloaded=
"no"> 
2192         <autodoc>ButtonUp(int but=MOUSE_BTN_ANY) -
> bool
</autodoc> 
2194           <param name=
"but" type=
"int" default=
"wxMOUSE_BTN_ANY"/> 
2197       <method name=
"Button" type=
"bool" overloaded=
"no"> 
2198         <autodoc>Button(int but) -
> bool
</autodoc> 
2200           <param name=
"but" type=
"int" default=
""/> 
2203       <method name=
"ButtonIsDown" type=
"bool" overloaded=
"no"> 
2204         <autodoc>ButtonIsDown(int but) -
> bool
</autodoc> 
2206           <param name=
"but" type=
"int" default=
""/> 
2209       <method name=
"GetButton" type=
"int" overloaded=
"no"> 
2210         <autodoc>GetButton() -
> int
</autodoc> 
2212       <method name=
"ControlDown" type=
"bool" overloaded=
"no"> 
2213         <autodoc>ControlDown() -
> bool
</autodoc> 
2215       <method name=
"MetaDown" type=
"bool" overloaded=
"no"> 
2216         <autodoc>MetaDown() -
> bool
</autodoc> 
2218       <method name=
"AltDown" type=
"bool" overloaded=
"no"> 
2219         <autodoc>AltDown() -
> bool
</autodoc> 
2221       <method name=
"ShiftDown" type=
"bool" overloaded=
"no"> 
2222         <autodoc>ShiftDown() -
> bool
</autodoc> 
2224       <method name=
"LeftDown" type=
"bool" overloaded=
"no"> 
2225         <autodoc>LeftDown() -
> bool
</autodoc> 
2227       <method name=
"MiddleDown" type=
"bool" overloaded=
"no"> 
2228         <autodoc>MiddleDown() -
> bool
</autodoc> 
2230       <method name=
"RightDown" type=
"bool" overloaded=
"no"> 
2231         <autodoc>RightDown() -
> bool
</autodoc> 
2233       <method name=
"LeftUp" type=
"bool" overloaded=
"no"> 
2234         <autodoc>LeftUp() -
> bool
</autodoc> 
2236       <method name=
"MiddleUp" type=
"bool" overloaded=
"no"> 
2237         <autodoc>MiddleUp() -
> bool
</autodoc> 
2239       <method name=
"RightUp" type=
"bool" overloaded=
"no"> 
2240         <autodoc>RightUp() -
> bool
</autodoc> 
2242       <method name=
"LeftDClick" type=
"bool" overloaded=
"no"> 
2243         <autodoc>LeftDClick() -
> bool
</autodoc> 
2245       <method name=
"MiddleDClick" type=
"bool" overloaded=
"no"> 
2246         <autodoc>MiddleDClick() -
> bool
</autodoc> 
2248       <method name=
"RightDClick" type=
"bool" overloaded=
"no"> 
2249         <autodoc>RightDClick() -
> bool
</autodoc> 
2251       <method name=
"LeftIsDown" type=
"bool" overloaded=
"no"> 
2252         <autodoc>LeftIsDown() -
> bool
</autodoc> 
2254       <method name=
"MiddleIsDown" type=
"bool" overloaded=
"no"> 
2255         <autodoc>MiddleIsDown() -
> bool
</autodoc> 
2257       <method name=
"RightIsDown" type=
"bool" overloaded=
"no"> 
2258         <autodoc>RightIsDown() -
> bool
</autodoc> 
2260       <method name=
"Dragging" type=
"bool" overloaded=
"no"> 
2261         <autodoc>Dragging() -
> bool
</autodoc> 
2263       <method name=
"Moving" type=
"bool" overloaded=
"no"> 
2264         <autodoc>Moving() -
> bool
</autodoc> 
2266       <method name=
"Entering" type=
"bool" overloaded=
"no"> 
2267         <autodoc>Entering() -
> bool
</autodoc> 
2269       <method name=
"Leaving" type=
"bool" overloaded=
"no"> 
2270         <autodoc>Leaving() -
> bool
</autodoc> 
2272       <method name=
"GetPosition" type=
"Point" overloaded=
"no"> 
2273         <autodoc>GetPosition() -
> Point
</autodoc> 
2274         <docstring>Returns the position of the mouse in window coordinates when the event happened.
</docstring> 
2276       <method name=
"GetPositionTuple" type=
"" overloaded=
"no"> 
2277         <autodoc>GetPositionTuple() -
> (x,y)
</autodoc> 
2278         <docstring>Returns the position of the mouse in window coordinates when the event happened.
</docstring> 
2280           <param name=
"OUTPUT" type=
"long" default=
""/> 
2281           <param name=
"OUTPUT" type=
"long" default=
""/> 
2284       <method name=
"GetLogicalPosition" type=
"Point" overloaded=
"no"> 
2285         <autodoc>GetLogicalPosition(DC dc) -
> Point
</autodoc> 
2287           <param name=
"dc" type=
"wxDC" default=
""/> 
2290       <method name=
"GetX" type=
"int" overloaded=
"no"> 
2291         <autodoc>GetX() -
> int
</autodoc> 
2293       <method name=
"GetY" type=
"int" overloaded=
"no"> 
2294         <autodoc>GetY() -
> int
</autodoc> 
2296       <method name=
"GetWheelRotation" type=
"int" overloaded=
"no"> 
2297         <autodoc>GetWheelRotation() -
> int
</autodoc> 
2299       <method name=
"GetWheelDelta" type=
"int" overloaded=
"no"> 
2300         <autodoc>GetWheelDelta() -
> int
</autodoc> 
2302       <method name=
"GetLinesPerAction" type=
"int" overloaded=
"no"> 
2303         <autodoc>GetLinesPerAction() -
> int
</autodoc> 
2305       <method name=
"IsPageScroll" type=
"bool" overloaded=
"no"> 
2306         <autodoc>IsPageScroll() -
> bool
</autodoc> 
2308       <property name=
"m_x" type=
"int" readonly=
"no"/> 
2309       <property name=
"m_y" type=
"int" readonly=
"no"/> 
2310       <property name=
"m_leftDown" type=
"bool" readonly=
"no"/> 
2311       <property name=
"m_middleDown" type=
"bool" readonly=
"no"/> 
2312       <property name=
"m_rightDown" type=
"bool" readonly=
"no"/> 
2313       <property name=
"m_controlDown" type=
"bool" readonly=
"no"/> 
2314       <property name=
"m_shiftDown" type=
"bool" readonly=
"no"/> 
2315       <property name=
"m_altDown" type=
"bool" readonly=
"no"/> 
2316       <property name=
"m_metaDown" type=
"bool" readonly=
"no"/> 
2317       <property name=
"m_wheelRotation" type=
"int" readonly=
"no"/> 
2318       <property name=
"m_wheelDelta" type=
"int" readonly=
"no"/> 
2319       <property name=
"m_linesPerAction" type=
"int" readonly=
"no"/> 
2322 #---------------------------------------------------------------------------
 
2324     <class name=
"SetCursorEvent" oldname=
"wxSetCursorEvent" module=
"core"> 
2325       <baseclass name=
"Event"/> 
2326       <constructor name=
"SetCursorEvent" overloaded=
"no"> 
2327         <autodoc>__init__(int x=
0, int y=
0) -
> SetCursorEvent
</autodoc> 
2329           <param name=
"x" type=
"int" default=
"0"/> 
2330           <param name=
"y" type=
"int" default=
"0"/> 
2333       <method name=
"GetX" type=
"int" overloaded=
"no"> 
2334         <autodoc>GetX() -
> int
</autodoc> 
2336       <method name=
"GetY" type=
"int" overloaded=
"no"> 
2337         <autodoc>GetY() -
> int
</autodoc> 
2339       <method name=
"SetCursor" type=
"" overloaded=
"no"> 
2340         <autodoc>SetCursor(Cursor cursor)
</autodoc> 
2342           <param name=
"cursor" type=
"wxCursor" default=
""/> 
2345       <method name=
"GetCursor" type=
"wxCursor" overloaded=
"no"> 
2346         <autodoc>GetCursor() -
> Cursor
</autodoc> 
2348       <method name=
"HasCursor" type=
"bool" overloaded=
"no"> 
2349         <autodoc>HasCursor() -
> bool
</autodoc> 
2353 #---------------------------------------------------------------------------
 
2355     <class name=
"KeyEvent" oldname=
"wxKeyEvent" module=
"core"> 
2356       <baseclass name=
"Event"/> 
2357       <constructor name=
"KeyEvent" overloaded=
"no"> 
2358         <autodoc>__init__(wxEventType keyType=wxEVT_NULL) -
> KeyEvent
</autodoc> 
2360           <param name=
"keyType" type=
"wxEventType" default=
"wxEVT_NULL"/> 
2363       <method name=
"ControlDown" type=
"bool" overloaded=
"no"> 
2364         <autodoc>ControlDown() -
> bool
</autodoc> 
2366       <method name=
"MetaDown" type=
"bool" overloaded=
"no"> 
2367         <autodoc>MetaDown() -
> bool
</autodoc> 
2369       <method name=
"AltDown" type=
"bool" overloaded=
"no"> 
2370         <autodoc>AltDown() -
> bool
</autodoc> 
2372       <method name=
"ShiftDown" type=
"bool" overloaded=
"no"> 
2373         <autodoc>ShiftDown() -
> bool
</autodoc> 
2375       <method name=
"HasModifiers" type=
"bool" overloaded=
"no"> 
2376         <autodoc>HasModifiers() -
> bool
</autodoc> 
2378       <method name=
"GetKeyCode" type=
"int" overloaded=
"no"> 
2379         <autodoc>GetKeyCode() -
> int
</autodoc> 
2381       <method name=
"GetUniChar" type=
"int" overloaded=
"no"> 
2382         <autodoc>GetUniChar() -
> int
</autodoc> 
2384       <method name=
"GetRawKeyCode" type=
"unsigned int" overloaded=
"no"> 
2385         <autodoc>GetRawKeyCode() -
> unsigned int
</autodoc> 
2387       <method name=
"GetRawKeyFlags" type=
"unsigned int" overloaded=
"no"> 
2388         <autodoc>GetRawKeyFlags() -
> unsigned int
</autodoc> 
2390       <method name=
"GetPosition" type=
"Point" overloaded=
"no"> 
2391         <autodoc>GetPosition() -
> Point
</autodoc> 
2392         <docstring>Find the position of the event.
</docstring> 
2394       <method name=
"GetPositionTuple" type=
"" overloaded=
"no"> 
2395         <autodoc>GetPositionTuple() -
> (x,y)
</autodoc> 
2396         <docstring>Find the position of the event.
</docstring> 
2398           <param name=
"OUTPUT" type=
"long" default=
""/> 
2399           <param name=
"OUTPUT" type=
"long" default=
""/> 
2402       <method name=
"GetX" type=
"int" overloaded=
"no"> 
2403         <autodoc>GetX() -
> int
</autodoc> 
2405       <method name=
"GetY" type=
"int" overloaded=
"no"> 
2406         <autodoc>GetY() -
> int
</autodoc> 
2408       <property name=
"m_x" type=
"int" readonly=
"no"/> 
2409       <property name=
"m_y" type=
"int" readonly=
"no"/> 
2410       <property name=
"m_keyCode" type=
"long" readonly=
"no"/> 
2411       <property name=
"m_controlDown" type=
"bool" readonly=
"no"/> 
2412       <property name=
"m_shiftDown" type=
"bool" readonly=
"no"/> 
2413       <property name=
"m_altDown" type=
"bool" readonly=
"no"/> 
2414       <property name=
"m_metaDown" type=
"bool" readonly=
"no"/> 
2415       <property name=
"m_scanCode" type=
"bool" readonly=
"no"/> 
2416       <property name=
"m_rawCode" type=
"unsigned int" readonly=
"no"/> 
2417       <property name=
"m_rawFlags" type=
"unsigned int" readonly=
"no"/> 
2420 #---------------------------------------------------------------------------
 
2422     <class name=
"SizeEvent" oldname=
"wxSizeEvent" module=
"core"> 
2423       <baseclass name=
"Event"/> 
2424       <constructor name=
"SizeEvent" overloaded=
"no"> 
2425         <autodoc>__init__(Size sz=DefaultSize, int winid=
0) -
> SizeEvent
</autodoc> 
2427           <param name=
"sz" type=
"Size" default=
"wxDefaultSize"/> 
2428           <param name=
"winid" type=
"int" default=
"0"/> 
2431       <method name=
"GetSize" type=
"Size" overloaded=
"no"> 
2432         <autodoc>GetSize() -
> Size
</autodoc> 
2434       <method name=
"GetRect" type=
"Rect" overloaded=
"no"> 
2435         <autodoc>GetRect() -
> Rect
</autodoc> 
2437       <method name=
"SetRect" type=
"" overloaded=
"no"> 
2438         <autodoc>SetRect(Rect rect)
</autodoc> 
2440           <param name=
"rect" type=
"Rect" default=
""/> 
2443       <method name=
"SetSize" type=
"" overloaded=
"no"> 
2444         <autodoc>SetSize(Size size)
</autodoc> 
2446           <param name=
"size" type=
"Size" default=
""/> 
2449       <property name=
"m_size" type=
"Size" readonly=
"no"/> 
2450       <property name=
"m_rect" type=
"Rect" readonly=
"no"/> 
2453 #---------------------------------------------------------------------------
 
2455     <class name=
"MoveEvent" oldname=
"wxMoveEvent" module=
"core"> 
2456       <baseclass name=
"Event"/> 
2457       <constructor name=
"MoveEvent" overloaded=
"no"> 
2458         <autodoc>__init__(Point pos=DefaultPosition, int winid=
0) -
> MoveEvent
</autodoc> 
2460           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
2461           <param name=
"winid" type=
"int" default=
"0"/> 
2464       <method name=
"GetPosition" type=
"Point" overloaded=
"no"> 
2465         <autodoc>GetPosition() -
> Point
</autodoc> 
2467       <method name=
"GetRect" type=
"Rect" overloaded=
"no"> 
2468         <autodoc>GetRect() -
> Rect
</autodoc> 
2470       <method name=
"SetRect" type=
"" overloaded=
"no"> 
2471         <autodoc>SetRect(Rect rect)
</autodoc> 
2473           <param name=
"rect" type=
"Rect" default=
""/> 
2476       <method name=
"SetPosition" type=
"" overloaded=
"no"> 
2477         <autodoc>SetPosition(Point pos)
</autodoc> 
2479           <param name=
"pos" type=
"Point" default=
""/> 
2482       <property name=
"m_pos" type=
"Point" readonly=
"no"/> 
2483       <property name=
"m_rect" type=
"Rect" readonly=
"no"/> 
2486 #---------------------------------------------------------------------------
 
2488     <class name=
"PaintEvent" oldname=
"wxPaintEvent" module=
"core"> 
2489       <baseclass name=
"Event"/> 
2490       <constructor name=
"PaintEvent" overloaded=
"no"> 
2491         <autodoc>__init__(int Id=
0) -
> PaintEvent
</autodoc> 
2493           <param name=
"Id" type=
"int" default=
"0"/> 
2497     <class name=
"NcPaintEvent" oldname=
"wxNcPaintEvent" module=
"core"> 
2498       <baseclass name=
"Event"/> 
2499       <constructor name=
"NcPaintEvent" overloaded=
"no"> 
2500         <autodoc>__init__(int winid=
0) -
> NcPaintEvent
</autodoc> 
2502           <param name=
"winid" type=
"int" default=
"0"/> 
2507 #---------------------------------------------------------------------------
 
2509     <class name=
"EraseEvent" oldname=
"wxEraseEvent" module=
"core"> 
2510       <baseclass name=
"Event"/> 
2511       <constructor name=
"EraseEvent" overloaded=
"no"> 
2512         <autodoc>__init__(int Id=
0, DC dc=(wxDC *) NULL) -
> EraseEvent
</autodoc> 
2514           <param name=
"Id" type=
"int" default=
"0"/> 
2515           <param name=
"dc" type=
"wxDC" default=
"(wxDC *) NULL"/> 
2518       <method name=
"GetDC" type=
"wxDC" overloaded=
"no"> 
2519         <autodoc>GetDC() -
> DC
</autodoc> 
2523 #---------------------------------------------------------------------------
 
2525     <class name=
"FocusEvent" oldname=
"wxFocusEvent" module=
"core"> 
2526       <baseclass name=
"Event"/> 
2527       <constructor name=
"FocusEvent" overloaded=
"no"> 
2528         <autodoc>__init__(wxEventType type=wxEVT_NULL, int winid=
0) -
> FocusEvent
</autodoc> 
2530           <param name=
"type" type=
"wxEventType" default=
"wxEVT_NULL"/> 
2531           <param name=
"winid" type=
"int" default=
"0"/> 
2534       <method name=
"GetWindow" type=
"wxWindow" overloaded=
"no"> 
2535         <autodoc>GetWindow() -
> Window
</autodoc> 
2537       <method name=
"SetWindow" type=
"" overloaded=
"no"> 
2538         <autodoc>SetWindow(Window win)
</autodoc> 
2540           <param name=
"win" type=
"wxWindow" default=
""/> 
2545 #---------------------------------------------------------------------------
 
2547     <class name=
"ChildFocusEvent" oldname=
"wxChildFocusEvent" module=
"core"> 
2548       <baseclass name=
"CommandEvent"/> 
2549       <constructor name=
"ChildFocusEvent" overloaded=
"no"> 
2550         <autodoc>__init__(Window win=None) -
> ChildFocusEvent
</autodoc> 
2552           <param name=
"win" type=
"wxWindow" default=
"NULL"/> 
2555       <method name=
"GetWindow" type=
"wxWindow" overloaded=
"no"> 
2556         <autodoc>GetWindow() -
> Window
</autodoc> 
2560 #---------------------------------------------------------------------------
 
2562     <class name=
"ActivateEvent" oldname=
"wxActivateEvent" module=
"core"> 
2563       <baseclass name=
"Event"/> 
2564       <constructor name=
"ActivateEvent" overloaded=
"no"> 
2565         <autodoc>__init__(wxEventType type=wxEVT_NULL, bool active=True, int Id=
0) -
> ActivateEvent
</autodoc> 
2567           <param name=
"type" type=
"wxEventType" default=
"wxEVT_NULL"/> 
2568           <param name=
"active" type=
"bool" default=
"True"/> 
2569           <param name=
"Id" type=
"int" default=
"0"/> 
2572       <method name=
"GetActive" type=
"bool" overloaded=
"no"> 
2573         <autodoc>GetActive() -
> bool
</autodoc> 
2577 #---------------------------------------------------------------------------
 
2579     <class name=
"InitDialogEvent" oldname=
"wxInitDialogEvent" module=
"core"> 
2580       <baseclass name=
"Event"/> 
2581       <constructor name=
"InitDialogEvent" overloaded=
"no"> 
2582         <autodoc>__init__(int Id=
0) -
> InitDialogEvent
</autodoc> 
2584           <param name=
"Id" type=
"int" default=
"0"/> 
2589 #---------------------------------------------------------------------------
 
2591     <class name=
"MenuEvent" oldname=
"wxMenuEvent" module=
"core"> 
2592       <baseclass name=
"Event"/> 
2593       <constructor name=
"MenuEvent" overloaded=
"no"> 
2594         <autodoc>__init__(wxEventType type=wxEVT_NULL, int winid=
0, Menu menu=None) -
> MenuEvent
</autodoc> 
2596           <param name=
"type" type=
"wxEventType" default=
"wxEVT_NULL"/> 
2597           <param name=
"winid" type=
"int" default=
"0"/> 
2598           <param name=
"menu" type=
"wxMenu" default=
"NULL"/> 
2601       <method name=
"GetMenuId" type=
"int" overloaded=
"no"> 
2602         <autodoc>GetMenuId() -
> int
</autodoc> 
2604       <method name=
"IsPopup" type=
"bool" overloaded=
"no"> 
2605         <autodoc>IsPopup() -
> bool
</autodoc> 
2607       <method name=
"GetMenu" type=
"wxMenu" overloaded=
"no"> 
2608         <autodoc>GetMenu() -
> Menu
</autodoc> 
2612 #---------------------------------------------------------------------------
 
2614     <class name=
"CloseEvent" oldname=
"wxCloseEvent" module=
"core"> 
2615       <baseclass name=
"Event"/> 
2616       <constructor name=
"CloseEvent" overloaded=
"no"> 
2617         <autodoc>__init__(wxEventType type=wxEVT_NULL, int winid=
0) -
> CloseEvent
</autodoc> 
2619           <param name=
"type" type=
"wxEventType" default=
"wxEVT_NULL"/> 
2620           <param name=
"winid" type=
"int" default=
"0"/> 
2623       <method name=
"SetLoggingOff" type=
"" overloaded=
"no"> 
2624         <autodoc>SetLoggingOff(bool logOff)
</autodoc> 
2626           <param name=
"logOff" type=
"bool" default=
""/> 
2629       <method name=
"GetLoggingOff" type=
"bool" overloaded=
"no"> 
2630         <autodoc>GetLoggingOff() -
> bool
</autodoc> 
2632       <method name=
"Veto" type=
"" overloaded=
"no"> 
2633         <autodoc>Veto(bool veto=True)
</autodoc> 
2635           <param name=
"veto" type=
"bool" default=
"True"/> 
2638       <method name=
"SetCanVeto" type=
"" overloaded=
"no"> 
2639         <autodoc>SetCanVeto(bool canVeto)
</autodoc> 
2641           <param name=
"canVeto" type=
"bool" default=
""/> 
2644       <method name=
"CanVeto" type=
"bool" overloaded=
"no"> 
2645         <autodoc>CanVeto() -
> bool
</autodoc> 
2647       <method name=
"GetVeto" type=
"bool" overloaded=
"no"> 
2648         <autodoc>GetVeto() -
> bool
</autodoc> 
2652 #---------------------------------------------------------------------------
 
2654     <class name=
"ShowEvent" oldname=
"wxShowEvent" module=
"core"> 
2655       <baseclass name=
"Event"/> 
2656       <constructor name=
"ShowEvent" overloaded=
"no"> 
2657         <autodoc>__init__(int winid=
0, bool show=False) -
> ShowEvent
</autodoc> 
2659           <param name=
"winid" type=
"int" default=
"0"/> 
2660           <param name=
"show" type=
"bool" default=
"False"/> 
2663       <method name=
"SetShow" type=
"" overloaded=
"no"> 
2664         <autodoc>SetShow(bool show)
</autodoc> 
2666           <param name=
"show" type=
"bool" default=
""/> 
2669       <method name=
"GetShow" type=
"bool" overloaded=
"no"> 
2670         <autodoc>GetShow() -
> bool
</autodoc> 
2674 #---------------------------------------------------------------------------
 
2676     <class name=
"IconizeEvent" oldname=
"wxIconizeEvent" module=
"core"> 
2677       <baseclass name=
"Event"/> 
2678       <constructor name=
"IconizeEvent" overloaded=
"no"> 
2679         <autodoc>__init__(int id=
0, bool iconized=True) -
> IconizeEvent
</autodoc> 
2681           <param name=
"id" type=
"int" default=
"0"/> 
2682           <param name=
"iconized" type=
"bool" default=
"True"/> 
2685       <method name=
"Iconized" type=
"bool" overloaded=
"no"> 
2686         <autodoc>Iconized() -
> bool
</autodoc> 
2690 #---------------------------------------------------------------------------
 
2692     <class name=
"MaximizeEvent" oldname=
"wxMaximizeEvent" module=
"core"> 
2693       <baseclass name=
"Event"/> 
2694       <constructor name=
"MaximizeEvent" overloaded=
"no"> 
2695         <autodoc>__init__(int id=
0) -
> MaximizeEvent
</autodoc> 
2697           <param name=
"id" type=
"int" default=
"0"/> 
2702 #---------------------------------------------------------------------------
 
2704     <class name=
"DropFilesEvent" oldname=
"wxDropFilesEvent" module=
"core"> 
2705       <baseclass name=
"Event"/> 
2706       <method name=
"GetPosition" type=
"Point" overloaded=
"no"> 
2707         <autodoc>GetPosition() -
> Point
</autodoc> 
2709       <method name=
"GetNumberOfFiles" type=
"int" overloaded=
"no"> 
2710         <autodoc>GetNumberOfFiles() -
> int
</autodoc> 
2712       <method name=
"GetFiles" type=
"PyObject" overloaded=
"no"> 
2713         <autodoc>GetFiles() -
> PyObject
</autodoc> 
2717 #---------------------------------------------------------------------------
 
2719     <class name=
"UpdateUIEvent" oldname=
"wxUpdateUIEvent" module=
"core"> 
2720       <baseclass name=
"CommandEvent"/> 
2721       <constructor name=
"UpdateUIEvent" overloaded=
"no"> 
2722         <autodoc>__init__(int commandId=
0) -
> UpdateUIEvent
</autodoc> 
2724           <param name=
"commandId" type=
"int" default=
"0"/> 
2727       <method name=
"GetChecked" type=
"bool" overloaded=
"no"> 
2728         <autodoc>GetChecked() -
> bool
</autodoc> 
2730       <method name=
"GetEnabled" type=
"bool" overloaded=
"no"> 
2731         <autodoc>GetEnabled() -
> bool
</autodoc> 
2733       <method name=
"GetText" type=
"String" overloaded=
"no"> 
2734         <autodoc>GetText() -
> String
</autodoc> 
2736       <method name=
"GetSetText" type=
"bool" overloaded=
"no"> 
2737         <autodoc>GetSetText() -
> bool
</autodoc> 
2739       <method name=
"GetSetChecked" type=
"bool" overloaded=
"no"> 
2740         <autodoc>GetSetChecked() -
> bool
</autodoc> 
2742       <method name=
"GetSetEnabled" type=
"bool" overloaded=
"no"> 
2743         <autodoc>GetSetEnabled() -
> bool
</autodoc> 
2745       <method name=
"Check" type=
"" overloaded=
"no"> 
2746         <autodoc>Check(bool check)
</autodoc> 
2748           <param name=
"check" type=
"bool" default=
""/> 
2751       <method name=
"Enable" type=
"" overloaded=
"no"> 
2752         <autodoc>Enable(bool enable)
</autodoc> 
2754           <param name=
"enable" type=
"bool" default=
""/> 
2757       <method name=
"SetText" type=
"" overloaded=
"no"> 
2758         <autodoc>SetText(String text)
</autodoc> 
2760           <param name=
"text" type=
"String" default=
""/> 
2763       <staticmethod name=
"SetUpdateInterval" type=
"" overloaded=
"no"> 
2764         <autodoc>SetUpdateInterval(long updateInterval)
</autodoc> 
2766           <param name=
"updateInterval" type=
"long" default=
""/> 
2769       <staticmethod name=
"GetUpdateInterval" type=
"long" overloaded=
"no"> 
2770         <autodoc>GetUpdateInterval() -
> long
</autodoc> 
2772       <staticmethod name=
"CanUpdate" type=
"bool" overloaded=
"no"> 
2773         <autodoc>CanUpdate(Window win) -
> bool
</autodoc> 
2775           <param name=
"win" type=
"wxWindow" default=
""/> 
2778       <staticmethod name=
"ResetUpdateTime" type=
"" overloaded=
"no"> 
2779         <autodoc>ResetUpdateTime()
</autodoc> 
2781       <staticmethod name=
"SetMode" type=
"" overloaded=
"no"> 
2782         <autodoc>SetMode(int mode)
</autodoc> 
2784           <param name=
"mode" type=
"wxUpdateUIMode" default=
""/> 
2787       <staticmethod name=
"GetMode" type=
"wxUpdateUIMode" overloaded=
"no"> 
2788         <autodoc>GetMode() -
> int
</autodoc> 
2792 #---------------------------------------------------------------------------
 
2794     <class name=
"SysColourChangedEvent" oldname=
"wxSysColourChangedEvent" module=
"core"> 
2795       <baseclass name=
"Event"/> 
2796       <constructor name=
"SysColourChangedEvent" overloaded=
"no"> 
2797         <autodoc>__init__() -
> SysColourChangedEvent
</autodoc> 
2801 #---------------------------------------------------------------------------
 
2803     <class name=
"MouseCaptureChangedEvent" oldname=
"wxMouseCaptureChangedEvent" module=
"core"> 
2804       <baseclass name=
"Event"/> 
2805       <constructor name=
"MouseCaptureChangedEvent" overloaded=
"no"> 
2806         <autodoc>__init__(int winid=
0, Window gainedCapture=None) -
> MouseCaptureChangedEvent
</autodoc> 
2808           <param name=
"winid" type=
"int" default=
"0"/> 
2809           <param name=
"gainedCapture" type=
"wxWindow" default=
"NULL"/> 
2812       <method name=
"GetCapturedWindow" type=
"wxWindow" overloaded=
"no"> 
2813         <autodoc>GetCapturedWindow() -
> Window
</autodoc> 
2817 #---------------------------------------------------------------------------
 
2819     <class name=
"DisplayChangedEvent" oldname=
"wxDisplayChangedEvent" module=
"core"> 
2820       <baseclass name=
"Event"/> 
2821       <constructor name=
"DisplayChangedEvent" overloaded=
"no"> 
2822         <autodoc>__init__() -
> DisplayChangedEvent
</autodoc> 
2826 #---------------------------------------------------------------------------
 
2828     <class name=
"PaletteChangedEvent" oldname=
"wxPaletteChangedEvent" module=
"core"> 
2829       <baseclass name=
"Event"/> 
2830       <constructor name=
"PaletteChangedEvent" overloaded=
"no"> 
2831         <autodoc>__init__(int id=
0) -
> PaletteChangedEvent
</autodoc> 
2833           <param name=
"id" type=
"int" default=
"0"/> 
2836       <method name=
"SetChangedWindow" type=
"" overloaded=
"no"> 
2837         <autodoc>SetChangedWindow(Window win)
</autodoc> 
2839           <param name=
"win" type=
"wxWindow" default=
""/> 
2842       <method name=
"GetChangedWindow" type=
"wxWindow" overloaded=
"no"> 
2843         <autodoc>GetChangedWindow() -
> Window
</autodoc> 
2847 #---------------------------------------------------------------------------
 
2849     <class name=
"QueryNewPaletteEvent" oldname=
"wxQueryNewPaletteEvent" module=
"core"> 
2850       <baseclass name=
"Event"/> 
2851       <constructor name=
"QueryNewPaletteEvent" overloaded=
"no"> 
2852         <autodoc>__init__(int winid=
0) -
> QueryNewPaletteEvent
</autodoc> 
2854           <param name=
"winid" type=
"int" default=
"0"/> 
2857       <method name=
"SetPaletteRealized" type=
"" overloaded=
"no"> 
2858         <autodoc>SetPaletteRealized(bool realized)
</autodoc> 
2860           <param name=
"realized" type=
"bool" default=
""/> 
2863       <method name=
"GetPaletteRealized" type=
"bool" overloaded=
"no"> 
2864         <autodoc>GetPaletteRealized() -
> bool
</autodoc> 
2868 #---------------------------------------------------------------------------
 
2870     <class name=
"NavigationKeyEvent" oldname=
"wxNavigationKeyEvent" module=
"core"> 
2871       <baseclass name=
"Event"/> 
2872       <constructor name=
"NavigationKeyEvent" overloaded=
"no"> 
2873         <autodoc>__init__() -
> NavigationKeyEvent
</autodoc> 
2875       <method name=
"GetDirection" type=
"bool" overloaded=
"no"> 
2876         <autodoc>GetDirection() -
> bool
</autodoc> 
2878       <method name=
"SetDirection" type=
"" overloaded=
"no"> 
2879         <autodoc>SetDirection(bool bForward)
</autodoc> 
2881           <param name=
"bForward" type=
"bool" default=
""/> 
2884       <method name=
"IsWindowChange" type=
"bool" overloaded=
"no"> 
2885         <autodoc>IsWindowChange() -
> bool
</autodoc> 
2887       <method name=
"SetWindowChange" type=
"" overloaded=
"no"> 
2888         <autodoc>SetWindowChange(bool bIs)
</autodoc> 
2890           <param name=
"bIs" type=
"bool" default=
""/> 
2893       <method name=
"GetCurrentFocus" type=
"wxWindow" overloaded=
"no"> 
2894         <autodoc>GetCurrentFocus() -
> Window
</autodoc> 
2896       <method name=
"SetCurrentFocus" type=
"" overloaded=
"no"> 
2897         <autodoc>SetCurrentFocus(Window win)
</autodoc> 
2899           <param name=
"win" type=
"wxWindow" default=
""/> 
2904 #---------------------------------------------------------------------------
 
2906     <class name=
"WindowCreateEvent" oldname=
"wxWindowCreateEvent" module=
"core"> 
2907       <baseclass name=
"CommandEvent"/> 
2908       <constructor name=
"WindowCreateEvent" overloaded=
"no"> 
2909         <autodoc>__init__(Window win=None) -
> WindowCreateEvent
</autodoc> 
2911           <param name=
"win" type=
"wxWindow" default=
"NULL"/> 
2914       <method name=
"GetWindow" type=
"wxWindow" overloaded=
"no"> 
2915         <autodoc>GetWindow() -
> Window
</autodoc> 
2918     <class name=
"WindowDestroyEvent" oldname=
"wxWindowDestroyEvent" module=
"core"> 
2919       <baseclass name=
"CommandEvent"/> 
2920       <constructor name=
"WindowDestroyEvent" overloaded=
"no"> 
2921         <autodoc>__init__(Window win=None) -
> WindowDestroyEvent
</autodoc> 
2923           <param name=
"win" type=
"wxWindow" default=
"NULL"/> 
2926       <method name=
"GetWindow" type=
"wxWindow" overloaded=
"no"> 
2927         <autodoc>GetWindow() -
> Window
</autodoc> 
2931 #---------------------------------------------------------------------------
 
2933     <class name=
"ContextMenuEvent" oldname=
"wxContextMenuEvent" module=
"core"> 
2934       <baseclass name=
"CommandEvent"/> 
2935       <constructor name=
"ContextMenuEvent" overloaded=
"no"> 
2936         <autodoc>__init__(wxEventType type=wxEVT_NULL, int winid=
0, Point pt=DefaultPosition) -
> ContextMenuEvent
</autodoc> 
2938           <param name=
"type" type=
"wxEventType" default=
"wxEVT_NULL"/> 
2939           <param name=
"winid" type=
"int" default=
"0"/> 
2940           <param name=
"pt" type=
"Point" default=
"wxDefaultPosition"/> 
2943       <method name=
"GetPosition" type=
"Point" overloaded=
"no"> 
2944         <autodoc>GetPosition() -
> Point
</autodoc> 
2946       <method name=
"SetPosition" type=
"" overloaded=
"no"> 
2947         <autodoc>SetPosition(Point pos)
</autodoc> 
2949           <param name=
"pos" type=
"Point" default=
""/> 
2954 #---------------------------------------------------------------------------
 
2956     <class name=
"IdleEvent" oldname=
"wxIdleEvent" module=
"core"> 
2957       <baseclass name=
"Event"/> 
2958       <constructor name=
"IdleEvent" overloaded=
"no"> 
2959         <autodoc>__init__() -
> IdleEvent
</autodoc> 
2961       <method name=
"RequestMore" type=
"" overloaded=
"no"> 
2962         <autodoc>RequestMore(bool needMore=True)
</autodoc> 
2964           <param name=
"needMore" type=
"bool" default=
"True"/> 
2967       <method name=
"MoreRequested" type=
"bool" overloaded=
"no"> 
2968         <autodoc>MoreRequested() -
> bool
</autodoc> 
2970       <staticmethod name=
"SetMode" type=
"" overloaded=
"no"> 
2971         <autodoc>SetMode(int mode)
</autodoc> 
2973           <param name=
"mode" type=
"wxIdleMode" default=
""/> 
2976       <staticmethod name=
"GetMode" type=
"wxIdleMode" overloaded=
"no"> 
2977         <autodoc>GetMode() -
> int
</autodoc> 
2979       <staticmethod name=
"CanSend" type=
"bool" overloaded=
"no"> 
2980         <autodoc>CanSend(Window win) -
> bool
</autodoc> 
2982           <param name=
"win" type=
"wxWindow" default=
""/> 
2987 #---------------------------------------------------------------------------
 
2989     <class name=
"PyEvent" oldname=
"wxPyEvent" module=
"core"> 
2990       <baseclass name=
"Event"/> 
2991       <constructor name=
"PyEvent" overloaded=
"no"> 
2992         <autodoc>__init__(int winid=
0, wxEventType commandType=wxEVT_NULL) -
> PyEvent
</autodoc> 
2994           <param name=
"winid" type=
"int" default=
"0"/> 
2995           <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/> 
2998       <destructor name=
"~wxPyEvent" overloaded=
"no"> 
2999         <autodoc>__del__()
</autodoc> 
3001       <method name=
"SetSelf" type=
"" overloaded=
"no"> 
3002         <autodoc>SetSelf(PyObject self)
</autodoc> 
3004           <param name=
"self" type=
"PyObject" default=
""/> 
3007       <method name=
"GetSelf" type=
"PyObject" overloaded=
"no"> 
3008         <autodoc>GetSelf() -
> PyObject
</autodoc> 
3011     <class name=
"PyCommandEvent" oldname=
"wxPyCommandEvent" module=
"core"> 
3012       <baseclass name=
"CommandEvent"/> 
3013       <constructor name=
"PyCommandEvent" overloaded=
"no"> 
3014         <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int id=
0) -
> PyCommandEvent
</autodoc> 
3016           <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/> 
3017           <param name=
"id" type=
"int" default=
"0"/> 
3020       <destructor name=
"~wxPyCommandEvent" overloaded=
"no"> 
3021         <autodoc>__del__()
</autodoc> 
3023       <method name=
"SetSelf" type=
"" overloaded=
"no"> 
3024         <autodoc>SetSelf(PyObject self)
</autodoc> 
3026           <param name=
"self" type=
"PyObject" default=
""/> 
3029       <method name=
"GetSelf" type=
"PyObject" overloaded=
"no"> 
3030         <autodoc>GetSelf() -
> PyObject
</autodoc> 
3034 #---------------------------------------------------------------------------
 
3036     <class name=
"PyApp" oldname=
"wxPyApp" module=
"core"> 
3037       <baseclass name=
"EvtHandler"/> 
3038       <constructor name=
"PyApp" overloaded=
"no"> 
3039         <autodoc>__init__() -
> PyApp
</autodoc> 
3040         <docstring>Create a new application object, starting the bootstrap process.
</docstring> 
3042       <destructor name=
"~wxPyApp" overloaded=
"no"> 
3043         <autodoc>__del__()
</autodoc> 
3045       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
3046         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
3048           <param name=
"self" type=
"PyObject" default=
""/> 
3049           <param name=
"_class" type=
"PyObject" default=
""/> 
3052       <method name=
"GetAppName" type=
"String" overloaded=
"no"> 
3053         <autodoc>GetAppName() -
> String
</autodoc> 
3054         <docstring>Get the application name.
</docstring> 
3056       <method name=
"SetAppName" type=
"" overloaded=
"no"> 
3057         <autodoc>SetAppName(String name)
</autodoc> 
3058         <docstring>Set the application name. This value may be used automatically
 
3059 by wx.Config and such.
</docstring> 
3061           <param name=
"name" type=
"String" default=
""/> 
3064       <method name=
"GetClassName" type=
"String" overloaded=
"no"> 
3065         <autodoc>GetClassName() -
> String
</autodoc> 
3066         <docstring>Get the application's class name.
</docstring> 
3068       <method name=
"SetClassName" type=
"" overloaded=
"no"> 
3069         <autodoc>SetClassName(String name)
</autodoc> 
3070         <docstring>Set the application's class name. This value may be used for X-resources if
 
3071 applicable for the platform
</docstring> 
3073           <param name=
"name" type=
"String" default=
""/> 
3076       <method name=
"GetVendorName" type=
"String" overloaded=
"no"> 
3077         <autodoc>GetVendorName() -
> String
</autodoc> 
3078         <docstring>Get the application's vendor name.
</docstring> 
3080       <method name=
"SetVendorName" type=
"" overloaded=
"no"> 
3081         <autodoc>SetVendorName(String name)
</autodoc> 
3082         <docstring>Set the application's vendor name. This value may be used automatically
 
3083 by wx.Config and such.
</docstring> 
3085           <param name=
"name" type=
"String" default=
""/> 
3088       <method name=
"GetTraits" type=
"wxAppTraits" overloaded=
"no"> 
3089         <autodoc>GetTraits() -
> wxAppTraits
</autodoc> 
3090         <docstring>Create the app traits object to which we delegate for everything which either
 
3091 should be configurable by the user (then he can change the default behaviour
 
3092 simply by overriding CreateTraits() and returning his own traits object) or
 
3093 which is GUI/console dependent as then wx.AppTraits allows us to abstract the
 
3094 differences behind the common facade
</docstring> 
3096       <method name=
"ProcessPendingEvents" type=
"" overloaded=
"no"> 
3097         <autodoc>ProcessPendingEvents()
</autodoc> 
3098         <docstring>Process all events in the Pending Events list -- it is necessary to call this
 
3099 function to process posted events. This happens during each event loop
 
3100 iteration.
</docstring> 
3102       <method name=
"Yield" type=
"bool" overloaded=
"no"> 
3103         <autodoc>Yield(bool onlyIfNeeded=False) -
> bool
</autodoc> 
3104         <docstring>Process all currently pending events right now, instead of waiting until
 
3105 return to the event loop.  It is an error to call Yield() recursively unless
 
3106 the value of onlyIfNeeded is True.
 
3108 WARNING: This function is dangerous as it can lead to unexpected
 
3109          reentrancies (i.e. when called from an event handler it
 
3110          may result in calling the same event handler again), use
 
3111          with _extreme_ care or, better, don't use at all!
 
3114           <param name=
"onlyIfNeeded" type=
"bool" default=
"False"/> 
3117       <method name=
"WakeUpIdle" type=
"" overloaded=
"no"> 
3118         <autodoc>WakeUpIdle()
</autodoc> 
3119         <docstring>Make sure that idle events are sent again
</docstring> 
3121       <method name=
"MainLoop" type=
"int" overloaded=
"no"> 
3122         <autodoc>MainLoop() -
> int
</autodoc> 
3123         <docstring>Execute the main GUI loop, the function returns when the loop ends.
</docstring> 
3125       <method name=
"Exit" type=
"" overloaded=
"no"> 
3126         <autodoc>Exit()
</autodoc> 
3127         <docstring>Exit the main loop thus terminating the application.
</docstring> 
3129       <method name=
"ExitMainLoop" type=
"" overloaded=
"no"> 
3130         <autodoc>ExitMainLoop()
</autodoc> 
3131         <docstring>Exit the main GUI loop during the next iteration (i.e. it does not
 
3132 stop the program immediately!)
</docstring> 
3134       <method name=
"Pending" type=
"bool" overloaded=
"no"> 
3135         <autodoc>Pending() -
> bool
</autodoc> 
3136         <docstring>Returns True if there are unprocessed events in the event queue.
</docstring> 
3138       <method name=
"Dispatch" type=
"bool" overloaded=
"no"> 
3139         <autodoc>Dispatch() -
> bool
</autodoc> 
3140         <docstring>Process the first event in the event queue (blocks until an event
 
3141 appears if there are none currently)
</docstring> 
3143       <method name=
"ProcessIdle" type=
"bool" overloaded=
"no"> 
3144         <autodoc>ProcessIdle() -
> bool
</autodoc> 
3145         <docstring>Called from the MainLoop when the application becomes idle and sends an
 
3146 IdleEvent to all interested parties.  Returns True is more idle events are
 
3147 needed, False if not.
</docstring> 
3149       <method name=
"SendIdleEvents" type=
"bool" overloaded=
"no"> 
3150         <autodoc>SendIdleEvents(Window win, IdleEvent event) -
> bool
</autodoc> 
3151         <docstring>Send idle event to window and all subwindows.  Returns True if more idle time
 
3152 is requested.
</docstring> 
3154           <param name=
"win" type=
"wxWindow" default=
""/> 
3155           <param name=
"event" type=
"IdleEvent" default=
""/> 
3158       <method name=
"IsActive" type=
"bool" overloaded=
"no"> 
3159         <autodoc>IsActive() -
> bool
</autodoc> 
3160         <docstring>Return True if our app has focus.
</docstring> 
3162       <method name=
"SetTopWindow" type=
"" overloaded=
"no"> 
3163         <autodoc>SetTopWindow(Window win)
</autodoc> 
3164         <docstring>Set the "main" top level window
</docstring> 
3166           <param name=
"win" type=
"wxWindow" default=
""/> 
3169       <method name=
"GetTopWindow" type=
"wxWindow" overloaded=
"no"> 
3170         <autodoc>GetTopWindow() -
> Window
</autodoc> 
3171         <docstring>Return the "main" top level window (if it hadn't been set previously with
 
3172 SetTopWindow(), will return just some top level window and, if there not any,
 
3173 will return None)
</docstring> 
3175       <method name=
"SetExitOnFrameDelete" type=
"" overloaded=
"no"> 
3176         <autodoc>SetExitOnFrameDelete(bool flag)
</autodoc> 
3177         <docstring>Control the exit behaviour: by default, the program will exit the main loop
 
3178 (and so, usually, terminate) when the last top-level program window is
 
3179 deleted.  Beware that if you disable this behaviour (with
 
3180 SetExitOnFrameDelete(False)), you'll have to call ExitMainLoop() explicitly
 
3184           <param name=
"flag" type=
"bool" default=
""/> 
3187       <method name=
"GetExitOnFrameDelete" type=
"bool" overloaded=
"no"> 
3188         <autodoc>GetExitOnFrameDelete() -
> bool
</autodoc> 
3189         <docstring>Get the current exit behaviour setting.
</docstring> 
3191       <method name=
"SetUseBestVisual" type=
"" overloaded=
"no"> 
3192         <autodoc>SetUseBestVisual(bool flag)
</autodoc> 
3193         <docstring>Set whether the app should try to use the best available visual on systems
 
3194 where more than one is available, (Sun, SGI, XFree86 
4, etc.)
</docstring> 
3196           <param name=
"flag" type=
"bool" default=
""/> 
3199       <method name=
"GetUseBestVisual" type=
"bool" overloaded=
"no"> 
3200         <autodoc>GetUseBestVisual() -
> bool
</autodoc> 
3201         <docstring>Get current UseBestVisual setting.
</docstring> 
3203       <method name=
"SetPrintMode" type=
"" overloaded=
"no"> 
3204         <autodoc>SetPrintMode(int mode)
</autodoc> 
3206           <param name=
"mode" type=
"int" default=
""/> 
3209       <method name=
"GetPrintMode" type=
"int" overloaded=
"no"> 
3210         <autodoc>GetPrintMode() -
> int
</autodoc> 
3212       <method name=
"SetAssertMode" type=
"" overloaded=
"no"> 
3213         <autodoc>SetAssertMode(int mode)
</autodoc> 
3214         <docstring>Set the OnAssert behaviour for debug and hybrid builds.  The following flags
 
3215 may be or'd together:
 
3217  wx.PYAPP_ASSERT_SUPPRESS         Don't do anything
 
3218  wx.PYAPP_ASSERT_EXCEPTION        Turn it into a Python exception if possible (default)
 
3219  wx.PYAPP_ASSERT_DIALOG           Display a message dialog
 
3220  wx.PYAPP_ASSERT_LOG              Write the assertion info to the wx.Log
 
3223           <param name=
"mode" type=
"int" default=
""/> 
3226       <method name=
"GetAssertMode" type=
"int" overloaded=
"no"> 
3227         <autodoc>GetAssertMode() -
> int
</autodoc> 
3228         <docstring>Get the current OnAssert behaviour setting.
</docstring> 
3230       <staticmethod name=
"GetMacSupportPCMenuShortcuts" type=
"bool" overloaded=
"no"> 
3231         <autodoc>GetMacSupportPCMenuShortcuts() -
> bool
</autodoc> 
3233       <staticmethod name=
"GetMacAboutMenuItemId" type=
"long" overloaded=
"no"> 
3234         <autodoc>GetMacAboutMenuItemId() -
> long
</autodoc> 
3236       <staticmethod name=
"GetMacPreferencesMenuItemId" type=
"long" overloaded=
"no"> 
3237         <autodoc>GetMacPreferencesMenuItemId() -
> long
</autodoc> 
3239       <staticmethod name=
"GetMacExitMenuItemId" type=
"long" overloaded=
"no"> 
3240         <autodoc>GetMacExitMenuItemId() -
> long
</autodoc> 
3242       <staticmethod name=
"GetMacHelpMenuTitleName" type=
"String" overloaded=
"no"> 
3243         <autodoc>GetMacHelpMenuTitleName() -
> String
</autodoc> 
3245       <staticmethod name=
"SetMacSupportPCMenuShortcuts" type=
"" overloaded=
"no"> 
3246         <autodoc>SetMacSupportPCMenuShortcuts(bool val)
</autodoc> 
3248           <param name=
"val" type=
"bool" default=
""/> 
3251       <staticmethod name=
"SetMacAboutMenuItemId" type=
"" overloaded=
"no"> 
3252         <autodoc>SetMacAboutMenuItemId(long val)
</autodoc> 
3254           <param name=
"val" type=
"long" default=
""/> 
3257       <staticmethod name=
"SetMacPreferencesMenuItemId" type=
"" overloaded=
"no"> 
3258         <autodoc>SetMacPreferencesMenuItemId(long val)
</autodoc> 
3260           <param name=
"val" type=
"long" default=
""/> 
3263       <staticmethod name=
"SetMacExitMenuItemId" type=
"" overloaded=
"no"> 
3264         <autodoc>SetMacExitMenuItemId(long val)
</autodoc> 
3266           <param name=
"val" type=
"long" default=
""/> 
3269       <staticmethod name=
"SetMacHelpMenuTitleName" type=
"" overloaded=
"no"> 
3270         <autodoc>SetMacHelpMenuTitleName(String val)
</autodoc> 
3272           <param name=
"val" type=
"String" default=
""/> 
3275       <method name=
"_BootstrapApp" type=
"" overloaded=
"no"> 
3276         <autodoc>_BootstrapApp()
</autodoc> 
3277         <docstring>For internal use only
</docstring> 
3279       <staticmethod name=
"GetComCtl32Version" type=
"int" overloaded=
"no"> 
3280         <autodoc>GetComCtl32Version() -
> int
</autodoc> 
3281         <docstring>Returns 
400, 
470, 
471 for comctl32.dll 
4.00, 
4.70, 
4.71 or 
0 if it
 
3282 wasn't found at all.  Raises an exception on non-Windows platforms.
</docstring> 
3286 #---------------------------------------------------------------------------
 
3288     <method name=
"Exit" oldname=
"wxExit" type=
"" overloaded=
"no"> 
3289       <autodoc>Exit()
</autodoc> 
3290       <docstring>Force an exit of the application.  Convenience for wx.GetApp().Exit()
</docstring> 
3292     <method name=
"Yield" oldname=
"wxYield" type=
"bool" overloaded=
"no"> 
3293       <autodoc>Yield() -
> bool
</autodoc> 
3294       <docstring>Yield to other apps/messages.  Convenience for wx.GetApp().Yield()
</docstring> 
3296     <method name=
"YieldIfNeeded" oldname=
"wxYieldIfNeeded" type=
"bool" overloaded=
"no"> 
3297       <autodoc>YieldIfNeeded() -
> bool
</autodoc> 
3298       <docstring>Yield to other apps/messages.  Convenience for wx.GetApp().Yield(True)
</docstring> 
3300     <method name=
"SafeYield" oldname=
"wxSafeYield" type=
"bool" overloaded=
"no"> 
3301       <autodoc>SafeYield(Window win=None, bool onlyIfNeeded=False) -
> bool
</autodoc> 
3302       <docstring>This function is similar to wx.Yield, except that it disables the user input
 
3303 to all program windows before calling wx.Yield and re-enables it again
 
3304 afterwards. If win is not None, this window will remain enabled, allowing the
 
3305 implementation of some limited user interaction.
 
3307 Returns the result of the call to wx.Yield.
</docstring> 
3309         <param name=
"win" type=
"wxWindow" default=
"NULL"/> 
3310         <param name=
"onlyIfNeeded" type=
"bool" default=
"False"/> 
3313     <method name=
"WakeUpIdle" oldname=
"wxWakeUpIdle" type=
"" overloaded=
"no"> 
3314       <autodoc>WakeUpIdle()
</autodoc> 
3315       <docstring>Cause the message queue to become empty again, so idle events will be sent.
</docstring> 
3317     <method name=
"PostEvent" oldname=
"wxPostEvent" type=
"" overloaded=
"no"> 
3318       <autodoc>PostEvent(EvtHandler dest, Event event)
</autodoc> 
3319       <docstring>Send an event to a window or other wx.EvtHandler to be processed later.
</docstring> 
3321         <param name=
"dest" type=
"EvtHandler" default=
""/> 
3322         <param name=
"event" type=
"Event" default=
""/> 
3325     <method name=
"App_CleanUp" oldname=
"wxApp_CleanUp" type=
"" overloaded=
"no"> 
3326       <autodoc>App_CleanUp()
</autodoc> 
3327       <docstring>For internal use only, it is used to cleanup after wxWindows when Python shuts down.
</docstring> 
3329     <method name=
"GetApp" oldname=
"wxGetApp" type=
"PyApp" overloaded=
"no"> 
3330       <autodoc>GetApp() -
> PyApp
</autodoc> 
3331       <docstring>Return a reference to the current wx.App object.
</docstring> 
3334 #----------------------------------------------------------------------
 
3336 class PyOnDemandOutputWindow:
 
3338     A class that can be used for redirecting Python's stdout and
 
3339     stderr streams.  It will do nothing until something is wrriten to
 
3340     the stream at which point it will create a Frame with a text area
 
3341     and write the text there.
 
3343     def __init__(self, title = "wxPython: stdout/stderr"):
 
3348     def SetParent(self, parent):
 
3349         """Set the window to be used as the popup Frame's parent."""
 
3350         self.parent = parent
 
3353     def CreateOutputWindow(self, st):
 
3354         self.frame = wx.Frame(self.parent, -
1, self.title,
 
3355                               style=wx.DEFAULT_FRAME_STYLE | wx.NO_FULL_REPAINT_ON_RESIZE)
 
3356         self.text  = wx.TextCtrl(self.frame, -
1, "",
 
3357                                  style = wx.TE_MULTILINE | wx.TE_READONLY)
 
3358         self.text.AppendText(st)
 
3359         self.frame.SetSize((
450, 
300))
 
3360         self.frame.Show(True)
 
3361         EVT_CLOSE(self.frame, self.OnCloseWindow)
 
3364     def OnCloseWindow(self, event):
 
3365         if self.frame is not None:
 
3366             self.frame.Destroy()
 
3371     # These methods provide the file-like output behaviour.
 
3372     def write(self, text):
 
3374         Create the output window if needed and write the string to it.
 
3375         If not called in the context of the gui thread then uses
 
3376         CallAfter to do the work there.
 
3378         if self.frame is None:
 
3379             if not wx.Thread_IsMain():
 
3380                 wx.CallAfter(self.CreateOutputWindow, text)
 
3382                 self.CreateOutputWindow(text)
 
3384             if not wx.Thread_IsMain():
 
3385                 wx.CallAfter(self.text.AppendText, text)
 
3387                 self.text.AppendText(text)
 
3391         if self.frame is not None:
 
3392             wx.CallAfter(self.frame.Close)
 
3396 #----------------------------------------------------------------------
 
3398 _defRedirect = (wx.Platform == '__WXMSW__' or wx.Platform == '__WXMAC__')
 
3400 class App(wx.PyApp):
 
3402     The main application class.  Derive from this and implement an OnInit
 
3403     method that creates a frame and then calls self.SetTopWindow(frame)
 
3405     outputWindowClass = PyOnDemandOutputWindow
 
3407     def __init__(self, redirect=_defRedirect, filename=None, useBestVisual=False):
 
3408         wx.PyApp.__init__(self)
 
3410         if wx.Platform == "__WXMAC__":
 
3413                 if not MacOS.WMAvailable():
 
3415 This program needs access to the screen. Please run with 'pythonw',
 
3416 not 'python', and only when you are logged in on the main display of
 
3422         # This has to be done before OnInit
 
3423         self.SetUseBestVisual(useBestVisual)
 
3425         # Set the default handler for SIGINT.  This fixes a problem
 
3426         # where if Ctrl-C is pressed in the console that started this
 
3427         # app then it will not appear to do anything, (not even send
 
3428         # KeyboardInterrupt???)  but will later segfault on exit.  By
 
3429         # setting the default handler then the app will exit, as
 
3430         # expected (depending on platform.)
 
3433             signal.signal(signal.SIGINT, signal.SIG_DFL)
 
3437         # Save and redirect the stdio to a window?
 
3438         self.stdioWin = None
 
3439         self.saveStdio = (_sys.stdout, _sys.stderr)
 
3441             self.RedirectStdio(filename)
 
3443         # This finishes the initialization of wxWindows and then calls
 
3444         # the OnInit that should be present in the derived class
 
3445         self._BootstrapApp()
 
3450             self.RestoreStdio()  # Just in case the MainLoop was overridden
 
3455     def SetTopWindow(self, frame):
 
3456         """Set the \\"main\\" top level window"""
 
3458             self.stdioWin.SetParent(frame)
 
3459         wx.PyApp.SetTopWindow(self, frame)
 
3463         """Execute the main GUI event loop"""
 
3464         wx.PyApp.MainLoop(self)
 
3468     def RedirectStdio(self, filename=None):
 
3469         """Redirect sys.stdout and sys.stderr to a file or a popup window."""
 
3471             _sys.stdout = _sys.stderr = open(filename, 'a')
 
3473             self.stdioWin = self.outputWindowClass()
 
3474             _sys.stdout = _sys.stderr = self.stdioWin
 
3477     def RestoreStdio(self):
 
3478         _sys.stdout, _sys.stderr = self.saveStdio
 
3482 # change from wxPyApp_ to wxApp_
 
3483 App_GetMacSupportPCMenuShortcuts = _core.PyApp_GetMacSupportPCMenuShortcuts
 
3484 App_GetMacAboutMenuItemId        = _core.PyApp_GetMacAboutMenuItemId
 
3485 App_GetMacPreferencesMenuItemId  = _core.PyApp_GetMacPreferencesMenuItemId
 
3486 App_GetMacExitMenuItemId         = _core.PyApp_GetMacExitMenuItemId
 
3487 App_GetMacHelpMenuTitleName      = _core.PyApp_GetMacHelpMenuTitleName
 
3488 App_SetMacSupportPCMenuShortcuts = _core.PyApp_SetMacSupportPCMenuShortcuts
 
3489 App_SetMacAboutMenuItemId        = _core.PyApp_SetMacAboutMenuItemId
 
3490 App_SetMacPreferencesMenuItemId  = _core.PyApp_SetMacPreferencesMenuItemId
 
3491 App_SetMacExitMenuItemId         = _core.PyApp_SetMacExitMenuItemId
 
3492 App_SetMacHelpMenuTitleName      = _core.PyApp_SetMacHelpMenuTitleName
 
3493 App_GetComCtl32Version           = _core.PyApp_GetComCtl32Version
 
3495 #----------------------------------------------------------------------------
 
3497 class PySimpleApp(wx.App):
 
3499     A simple application class.  You can just create one of these and
 
3500     then then make your top level windows later, and not have to worry
 
3503     def __init__(self, redirect=False, filename=None, useBestVisual=False):
 
3504         wx.App.__init__(self, redirect, filename, useBestVisual)
 
3507         wx.InitAllImageHandlers()
 
3511 # Is anybody using this one?
 
3512 class PyWidgetTester(wx.App):
 
3513     def __init__(self, size = (
250, 
100)):
 
3515         wx.App.__init__(self, 
0)
 
3518         self.frame = wx.Frame(None, -
1, "Widget Tester", pos=(
0,
0), size=self.size)
 
3519         self.SetTopWindow(self.frame)
 
3522     def SetWidget(self, widgetClass, *args):
 
3523         w = widgetClass(self.frame, *args)
 
3524         self.frame.Show(True)
 
3526 #----------------------------------------------------------------------------
 
3527 # DO NOT hold any other references to this object.  This is how we
 
3528 # know when to cleanup system resources that wxWin is holding.  When
 
3529 # the sys module is unloaded, the refcount on sys.__wxPythonCleanup
 
3530 # goes to zero and it calls the wxApp_CleanUp function.
 
3532 class __wxPyCleanup:
 
3534         self.cleanup = _core.App_CleanUp
 
3538 _sys.__wxPythonCleanup = __wxPyCleanup()
 
3540 ## # another possible solution, but it gets called too early...
 
3541 ## if sys.version[
0] == '
2':
 
3543 ##     atexit.register(_core.wxApp_CleanUp)
 
3545 ##     sys.exitfunc = _core.wxApp_CleanUp
 
3548 #----------------------------------------------------------------------------
 
3551 #---------------------------------------------------------------------------
 
3553     <class name=
"AcceleratorEntry" oldname=
"wxAcceleratorEntry" module=
"core"> 
3554       <constructor name=
"AcceleratorEntry" overloaded=
"no"> 
3555         <autodoc>__init__(int flags=
0, int keyCode=
0, int cmd=
0, MenuItem item=None) -
> AcceleratorEntry
</autodoc> 
3557           <param name=
"flags" type=
"int" default=
"0"/> 
3558           <param name=
"keyCode" type=
"int" default=
"0"/> 
3559           <param name=
"cmd" type=
"int" default=
"0"/> 
3560           <param name=
"item" type=
"wxMenuItem" default=
"NULL"/> 
3563       <destructor name=
"~wxAcceleratorEntry" overloaded=
"no"> 
3564         <autodoc>__del__()
</autodoc> 
3566       <method name=
"Set" type=
"" overloaded=
"no"> 
3567         <autodoc>Set(int flags, int keyCode, int cmd, MenuItem item=None)
</autodoc> 
3569           <param name=
"flags" type=
"int" default=
""/> 
3570           <param name=
"keyCode" type=
"int" default=
""/> 
3571           <param name=
"cmd" type=
"int" default=
""/> 
3572           <param name=
"item" type=
"wxMenuItem" default=
"NULL"/> 
3575       <method name=
"SetMenuItem" type=
"" overloaded=
"no"> 
3576         <autodoc>SetMenuItem(MenuItem item)
</autodoc> 
3578           <param name=
"item" type=
"wxMenuItem" default=
""/> 
3581       <method name=
"GetMenuItem" type=
"wxMenuItem" overloaded=
"no"> 
3582         <autodoc>GetMenuItem() -
> MenuItem
</autodoc> 
3584       <method name=
"GetFlags" type=
"int" overloaded=
"no"> 
3585         <autodoc>GetFlags() -
> int
</autodoc> 
3587       <method name=
"GetKeyCode" type=
"int" overloaded=
"no"> 
3588         <autodoc>GetKeyCode() -
> int
</autodoc> 
3590       <method name=
"GetCommand" type=
"int" overloaded=
"no"> 
3591         <autodoc>GetCommand() -
> int
</autodoc> 
3594     <class name=
"AcceleratorTable" oldname=
"wxAcceleratorTable" module=
"core"> 
3595       <baseclass name=
"Object"/> 
3596       <constructor name=
"AcceleratorTable" overloaded=
"no"> 
3597         <autodoc>__init__(entries) -
> AcceleratorTable
</autodoc> 
3598         <docstring>Construct an AcceleratorTable from a list of AcceleratorEntry items or
 
3599 3-tuples (flags, keyCode, cmdID)
</docstring> 
3601           <param name=
"n" type=
"int" default=
""/> 
3602           <param name=
"entries" type=
"AcceleratorEntry" default=
""/> 
3605       <destructor name=
"~wxAcceleratorTable" overloaded=
"no"> 
3606         <autodoc>__del__()
</autodoc> 
3608       <method name=
"Ok" type=
"bool" overloaded=
"no"> 
3609         <autodoc>Ok() -
> bool
</autodoc> 
3612     <method name=
"GetAccelFromString" oldname=
"wxGetAccelFromString" type=
"AcceleratorEntry" overloaded=
"no"> 
3613       <autodoc>GetAccelFromString(String label) -
> AcceleratorEntry
</autodoc> 
3615         <param name=
"label" type=
"String" default=
""/> 
3619 #---------------------------------------------------------------------------
 
3621     <class name=
"Window" oldname=
"wxWindow" module=
"core"> 
3623 wx.Window is the base class for all windows and represents any visible
 
3624 object on the screen. All controls, top level windows and so on are
 
3625 wx.Windows. Sizers and device contexts are not however, as they don't
 
3626 appear on screen themselves.
 
3631     wx.SIMPLE_BORDER:          Displays a thin border around the window.
 
3633     wx.DOUBLE_BORDER:          Displays a double border. Windows and Mac only.
 
3635     wx.SUNKEN_BORDER:          Displays a sunken border.
 
3637     wx.RAISED_BORDER:          Displays a raised border.
 
3639     wx.STATIC_BORDER:           Displays a border suitable for a static
 
3640                                 control. Windows only.
 
3642     wx.NO_BORDER:               Displays no border, overriding the default
 
3643                                 border style for the window.
 
3645     wx.TRANSPARENT_WINDOW:      The window is transparent, that is, it
 
3646                                 will not receive paint events. Windows only.
 
3648     wx.TAB_TRAVERSAL:           Use this to enable tab traversal for
 
3651     wx.WANTS_CHARS:             Use this to indicate that the window
 
3652                                 wants to get all char/key events for
 
3653                                 all keys - even for keys like TAB or
 
3654                                 ENTER which are usually used for
 
3655                                 dialog navigation and which wouldn't
 
3656                                 be generated without this style. If
 
3657                                 you need to use this style in order to
 
3658                                 get the arrows or etc., but would
 
3659                                 still like to have normal keyboard
 
3660                                 navigation take place, you should
 
3661                                 create and send a wxNavigationKeyEvent
 
3662                                 in response to the key events for Tab
 
3665     wx.NO_FULL_REPAINT_ON_RESIZE: Disables repainting the window
 
3666                                   completely when its size is changed
 
3667                                   - you will have to repaint the new
 
3668                                   window area manually if you use this
 
3669                                   style. As of version 
2.5.1 this
 
3670                                   style is on by default.  Use
 
3671                                   wx.FULL_REPAINT_ON_RESIZE to
 
3674     wx.VSCROLL:          Use this style to enable a vertical scrollbar.
 
3676     wx.HSCROLL:          Use this style to enable a horizontal scrollbar.
 
3678     wx.ALWAYS_SHOW_SB:          If a window has scrollbars, disable them
 
3679                                 instead of hiding them when they are
 
3680                                 not needed (i.e. when the size of the
 
3681                                 window is big enough to not require
 
3682                                 the scrollbars to navigate it). This
 
3683                                 style is currently only implemented
 
3684                                 for wxMSW and wxUniversal and does
 
3685                                 nothing on the other platforms.
 
3687     wx.CLIP_CHILDREN:           Use this style to eliminate flicker caused by
 
3688                                 the background being repainted, then
 
3689                                 children being painted over
 
3692     wx.FULL_REPAINT_ON_RESIZE:  Use this style to force a complete
 
3693                                 redraw of the window whenever it is
 
3694                                 resized instead of redrawing just the
 
3695                                 part of the window affected by
 
3696                                 resizing. Note that this was the
 
3697                                 behaviour by default before 
2.5.1 
3698                                 release and that if you experience
 
3699                                 redraw problems with the code which
 
3700                                 previously used to work you may want
 
3705     wx.WS_EX_VALIDATE_RECURSIVELY:  By default,
 
3706                                     Validate/TransferDataTo/FromWindow()
 
3707                                     only work on direct children of
 
3708                                     the window (compatible
 
3709                                     behaviour). Set this flag to make
 
3710                                     them recursively descend into all
 
3713     wx.WS_EX_BLOCK_EVENTS:          wx.CommandEvents and the objects of the
 
3714                                     derived classes are forwarded to
 
3715                                     the parent window and so on
 
3716                                     recursively by default. Using this
 
3717                                     flag for the given window allows
 
3718                                     to block this propagation at this
 
3719                                     window, i.e. prevent the events
 
3720                                     from being propagated further
 
3721                                     upwards. Dialogs have this flag on
 
3724     wx.WS_EX_TRANSIENT              Don't use this window as an implicit parent for
 
3725                                     the other windows: this must be
 
3726                                     used with transient windows as
 
3727                                     otherwise there is the risk of
 
3728                                     creating a dialog/frame with this
 
3729                                     window as a parent which would
 
3730                                     lead to a crash if the parent is
 
3731                                     destroyed before the child.
 
3733     wx.WS_EX_PROCESS_IDLE:          This window should always process idle
 
3734                                     events, even if the mode set by
 
3735                                     wx.IdleEvent.SetMode is
 
3736                                     wx.IDLE_PROCESS_SPECIFIED.
 
3738     wx.WS_EX_PROCESS_UI_UPDATES     This window should always process UI
 
3739                                     update events, even if the mode
 
3740                                     set by wxUpdateUIEvent::SetMode is
 
3741                                     wxUPDATE_UI_PROCESS_SPECIFIED.
 
3744       <baseclass name=
"EvtHandler"/> 
3745       <constructor name=
"Window" overloaded=
"no"> 
3746         <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
3747     long style=
0, String name=PanelNameStr) -
> Window
</autodoc> 
3748         <docstring>Construct and show a generic Window.
</docstring> 
3750           <param name=
"parent" type=
"Window" default=
""/> 
3751           <param name=
"id" type=
"int" default=
""/> 
3752           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
3753           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
3754           <param name=
"style" type=
"long" default=
"0"/> 
3755           <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/> 
3758       <constructor name=
"PreWindow" overloaded=
"no"> 
3759         <autodoc>PreWindow() -
> Window
</autodoc> 
3760         <docstring>Precreate a Window for 
2-phase creation.
</docstring> 
3762       <method name=
"Create" type=
"bool" overloaded=
"no"> 
3763         <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
3764     long style=
0, String name=PanelNameStr) -
> bool
</autodoc> 
3765         <docstring>Create the GUI part of the Window for 
2-phase creation mode.
</docstring> 
3767           <param name=
"parent" type=
"Window" default=
""/> 
3768           <param name=
"id" type=
"int" default=
""/> 
3769           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
3770           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
3771           <param name=
"style" type=
"long" default=
"0"/> 
3772           <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/> 
3775       <method name=
"Close" type=
"bool" overloaded=
"no"> 
3776         <autodoc>Close(bool force=False) -
> bool
</autodoc> 
3777         <docstring>This function simply generates a EVT_CLOSE event whose handler usually
 
3778 tries to close the window. It doesn't close the window itself,
 
3779 however.  If force is False (the default) then the window's close
 
3780 handler will be allowed to veto the destruction of the window.
 
3782 Usually Close is only used with the top level windows (wx.Frame and
 
3783 wx.Dialog classes) as the others are not supposed to have any special
 
3786 The close handler should check whether the window is being deleted
 
3787 forcibly, using wx.CloseEvent.GetForce, in which case it should
 
3788 destroy the window using wx.Window.Destroy.
 
3790 Note that calling Close does not guarantee that the window will be
 
3791 destroyed; but it provides a way to simulate a manual close of a
 
3792 window, which may or may not be implemented by destroying the
 
3793 window. The default EVT_CLOSE handler for wx.Dialog does not
 
3794 necessarily delete the dialog, since it will simply simulate an
 
3795 wxID_CANCEL event which is handled by the appropriate button event
 
3796 handler and may do anything at all.
 
3798 To guarantee that the window will be destroyed, call wx.Window.Destroy
 
3799 instead.
</docstring> 
3801           <param name=
"force" type=
"bool" default=
"False"/> 
3804       <method name=
"Destroy" type=
"bool" overloaded=
"no"> 
3805         <autodoc>Destroy() -
> bool
</autodoc> 
3806         <docstring>Destroys the window safely.  Frames and dialogs are not destroyed
 
3807 immediately when this function is called -- they are added to a list
 
3808 of windows to be deleted on idle time, when all the window's events
 
3809 have been processed. This prevents problems with events being sent to
 
3810 non-existent windows.
 
3812 Returns True if the window has either been successfully deleted, or it
 
3813 has been added to the list of windows pending real deletion.
</docstring> 
3815       <method name=
"DestroyChildren" type=
"bool" overloaded=
"no"> 
3816         <autodoc>DestroyChildren() -
> bool
</autodoc> 
3817         <docstring>Destroys all children of a window. Called automatically by the destructor.
</docstring> 
3819       <method name=
"IsBeingDeleted" type=
"bool" overloaded=
"no"> 
3820         <autodoc>IsBeingDeleted() -
> bool
</autodoc> 
3821         <docstring>Is the window in the process of being deleted?
</docstring> 
3823       <method name=
"SetTitle" type=
"" overloaded=
"no"> 
3824         <autodoc>SetTitle(String title)
</autodoc> 
3825         <docstring>Sets the window's title. Applicable only to frames and dialogs.
</docstring> 
3827           <param name=
"title" type=
"String" default=
""/> 
3830       <method name=
"GetTitle" type=
"String" overloaded=
"no"> 
3831         <autodoc>GetTitle() -
> String
</autodoc> 
3832         <docstring>Gets the window's title. Applicable only to frames and dialogs.
</docstring> 
3834       <method name=
"SetLabel" type=
"" overloaded=
"no"> 
3835         <autodoc>SetLabel(String label)
</autodoc> 
3836         <docstring>Set the text which the window shows in its label if applicable.
</docstring> 
3838           <param name=
"label" type=
"String" default=
""/> 
3841       <method name=
"GetLabel" type=
"String" overloaded=
"no"> 
3842         <autodoc>GetLabel() -
> String
</autodoc> 
3843         <docstring>Generic way of getting a label from any window, for
 
3844 identification purposes.  The interpretation of this function
 
3845 differs from class to class. For frames and dialogs, the value
 
3846 returned is the title. For buttons or static text controls, it is
 
3847 the button text. This function can be useful for meta-programs
 
3848 (such as testing tools or special-needs access programs) which
 
3849 need to identify windows by name.
</docstring> 
3851       <method name=
"SetName" type=
"" overloaded=
"no"> 
3852         <autodoc>SetName(String name)
</autodoc> 
3853         <docstring>Sets the window's name.  The window name is used for ressource
 
3854 setting in X, it is not the same as the window title/label
</docstring> 
3856           <param name=
"name" type=
"String" default=
""/> 
3859       <method name=
"GetName" type=
"String" overloaded=
"no"> 
3860         <autodoc>GetName() -
> String
</autodoc> 
3861         <docstring>Returns the window's name.  This name is not guaranteed to be
 
3862 unique; it is up to the programmer to supply an appropriate name
 
3863 in the window constructor or via wx.Window.SetName.
</docstring> 
3865       <method name=
"SetWindowVariant" type=
"" overloaded=
"no"> 
3866         <autodoc>SetWindowVariant(int variant)
</autodoc> 
3867         <docstring>Sets the variant of the window/font size to use for this window,
 
3868 if the platform supports variants, (for example, wxMac.)
</docstring> 
3870           <param name=
"variant" type=
"wxWindowVariant" default=
""/> 
3873       <method name=
"GetWindowVariant" type=
"wxWindowVariant" overloaded=
"no"> 
3874         <autodoc>GetWindowVariant() -
> int
</autodoc> 
3876       <method name=
"SetId" type=
"" overloaded=
"no"> 
3877         <autodoc>SetId(int winid)
</autodoc> 
3878         <docstring>Sets the identifier of the window.  Each window has an integer
 
3879 identifier. If the application has not provided one, an identifier
 
3880 will be generated. Normally, the identifier should be provided on
 
3881 creation and should not be modified subsequently.
</docstring> 
3883           <param name=
"winid" type=
"int" default=
""/> 
3886       <method name=
"GetId" type=
"int" overloaded=
"no"> 
3887         <autodoc>GetId() -
> int
</autodoc> 
3888         <docstring>Returns the identifier of the window.  Each window has an integer
 
3889 identifier. If the application has not provided one (or the default Id
 
3890 -
1 is used) then an unique identifier with a negative value will be
 
3891 generated.
</docstring> 
3893       <staticmethod name=
"NewControlId" type=
"int" overloaded=
"no"> 
3894         <autodoc>NewControlId() -
> int
</autodoc> 
3895         <docstring>Generate a control id for the controls which were not given one.
</docstring> 
3897       <staticmethod name=
"NextControlId" type=
"int" overloaded=
"no"> 
3898         <autodoc>NextControlId(int winid) -
> int
</autodoc> 
3899         <docstring>Get the id of the control following the one with the given
 
3900 (autogenerated) id
</docstring> 
3902           <param name=
"winid" type=
"int" default=
""/> 
3905       <staticmethod name=
"PrevControlId" type=
"int" overloaded=
"no"> 
3906         <autodoc>PrevControlId(int winid) -
> int
</autodoc> 
3907         <docstring>Get the id of the control preceding the one with the given
 
3908 (autogenerated) id
</docstring> 
3910           <param name=
"winid" type=
"int" default=
""/> 
3913       <method name=
"SetSize" type=
"" overloaded=
"no"> 
3914         <autodoc>SetSize(Size size)
</autodoc> 
3915         <docstring>Sets the size of the window in pixels.
</docstring> 
3917           <param name=
"size" type=
"Size" default=
""/> 
3920       <method name=
"SetDimensions" type=
"" overloaded=
"no"> 
3921         <autodoc>SetDimensions(int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)
</autodoc> 
3922         <docstring>Sets the position and size of the window in pixels.  The sizeFlags
 
3923 parameter indicates the interpretation of the other params if they are
 
3924 -
1.  wx.SIZE_AUTO*: a -
1 indicates that a class-specific default
 
3925 shoudl be used.  wx.SIZE_USE_EXISTING: existing dimensions should be
 
3926 used if -
1 values are supplied.  wxSIZE_ALLOW_MINUS_ONE: allow
 
3927 dimensions of -
1 and less to be interpreted as real dimensions, not
 
3928 default values.
</docstring> 
3930           <param name=
"x" type=
"int" default=
""/> 
3931           <param name=
"y" type=
"int" default=
""/> 
3932           <param name=
"width" type=
"int" default=
""/> 
3933           <param name=
"height" type=
"int" default=
""/> 
3934           <param name=
"sizeFlags" type=
"int" default=
"wxSIZE_AUTO"/> 
3937       <method name=
"SetRect" type=
"" overloaded=
"no"> 
3938         <autodoc>SetRect(Rect rect, int sizeFlags=SIZE_AUTO)
</autodoc> 
3939         <docstring>Sets the position and size of the window in pixels using a wx.Rect.
</docstring> 
3941           <param name=
"rect" type=
"Rect" default=
""/> 
3942           <param name=
"sizeFlags" type=
"int" default=
"wxSIZE_AUTO"/> 
3945       <method name=
"SetSizeWH" type=
"" overloaded=
"no"> 
3946         <autodoc>SetSizeWH(int width, int height)
</autodoc> 
3947         <docstring>Sets the size of the window in pixels.
</docstring> 
3949           <param name=
"width" type=
"int" default=
""/> 
3950           <param name=
"height" type=
"int" default=
""/> 
3953       <method name=
"Move" type=
"" overloaded=
"no"> 
3954         <autodoc>Move(Point pt, int flags=SIZE_USE_EXISTING)
</autodoc> 
3955         <docstring>Moves the window to the given position.
</docstring> 
3957           <param name=
"pt" type=
"Point" default=
""/> 
3958           <param name=
"flags" type=
"int" default=
"wxSIZE_USE_EXISTING"/> 
3961       <method name=
"MoveXY" type=
"" overloaded=
"no"> 
3962         <autodoc>MoveXY(int x, int y, int flags=SIZE_USE_EXISTING)
</autodoc> 
3963         <docstring>Moves the window to the given position.
</docstring> 
3965           <param name=
"x" type=
"int" default=
""/> 
3966           <param name=
"y" type=
"int" default=
""/> 
3967           <param name=
"flags" type=
"int" default=
"wxSIZE_USE_EXISTING"/> 
3970       <method name=
"Raise" type=
"" overloaded=
"no"> 
3971         <autodoc>Raise()
</autodoc> 
3972         <docstring>Raises the window to the top of the window hierarchy if it is a
 
3973 managed window (dialog or frame).
</docstring> 
3975       <method name=
"Lower" type=
"" overloaded=
"no"> 
3976         <autodoc>Lower()
</autodoc> 
3977         <docstring>Lowers the window to the bottom of the window hierarchy if it is a
 
3978 managed window (dialog or frame).
</docstring> 
3980       <method name=
"SetClientSize" type=
"" overloaded=
"no"> 
3981         <autodoc>SetClientSize(Size size)
</autodoc> 
3982         <docstring>This sets the size of the window client area in pixels. Using this
 
3983 function to size a window tends to be more device-independent than
 
3984 wx.Window.SetSize, since the application need not worry about what
 
3985 dimensions the border or title bar have when trying to fit the window
 
3986 around panel items, for example.
</docstring> 
3988           <param name=
"size" type=
"Size" default=
""/> 
3991       <method name=
"SetClientSizeWH" type=
"" overloaded=
"no"> 
3992         <autodoc>SetClientSizeWH(int width, int height)
</autodoc> 
3993         <docstring>This sets the size of the window client area in pixels. Using this
 
3994 function to size a window tends to be more device-independent than
 
3995 wx.Window.SetSize, since the application need not worry about what
 
3996 dimensions the border or title bar have when trying to fit the window
 
3997 around panel items, for example.
</docstring> 
3999           <param name=
"width" type=
"int" default=
""/> 
4000           <param name=
"height" type=
"int" default=
""/> 
4003       <method name=
"SetClientRect" type=
"" overloaded=
"no"> 
4004         <autodoc>SetClientRect(Rect rect)
</autodoc> 
4005         <docstring>This sets the size of the window client area in pixels. Using this
 
4006 function to size a window tends to be more device-independent than
 
4007 wx.Window.SetSize, since the application need not worry about what
 
4008 dimensions the border or title bar have when trying to fit the window
 
4009 around panel items, for example.
</docstring> 
4011           <param name=
"rect" type=
"Rect" default=
""/> 
4014       <method name=
"GetPosition" type=
"Point" overloaded=
"no"> 
4015         <autodoc>GetPosition() -
> Point
</autodoc> 
4016         <docstring>Get the window's position.
</docstring> 
4018       <method name=
"GetPositionTuple" type=
"" overloaded=
"no"> 
4019         <autodoc>GetPositionTuple() -
> (x,y)
</autodoc> 
4020         <docstring>Get the window's position.
</docstring> 
4022           <param name=
"OUTPUT" type=
"int" default=
""/> 
4023           <param name=
"OUTPUT" type=
"int" default=
""/> 
4026       <method name=
"GetSize" type=
"Size" overloaded=
"no"> 
4027         <autodoc>GetSize() -
> Size
</autodoc> 
4028         <docstring>Get the window size.
</docstring> 
4030       <method name=
"GetSizeTuple" type=
"" overloaded=
"no"> 
4031         <autodoc>GetSizeTuple() -
> (width, height)
</autodoc> 
4032         <docstring>Get the window size.
</docstring> 
4034           <param name=
"OUTPUT" type=
"int" default=
""/> 
4035           <param name=
"OUTPUT" type=
"int" default=
""/> 
4038       <method name=
"GetRect" type=
"Rect" overloaded=
"no"> 
4039         <autodoc>GetRect() -
> Rect
</autodoc> 
4040         <docstring>Returns the size and position of the window as a wx.Rect object.
</docstring> 
4042       <method name=
"GetClientSize" type=
"Size" overloaded=
"no"> 
4043         <autodoc>GetClientSize() -
> Size
</autodoc> 
4044         <docstring>This gets the size of the window's 'client area' in pixels. The client
 
4045 area is the area which may be drawn on by the programmer, excluding
 
4046 title bar, border, scrollbars, etc.
</docstring> 
4048       <method name=
"GetClientSizeTuple" type=
"" overloaded=
"no"> 
4049         <autodoc>GetClientSizeTuple() -
> (width, height)
</autodoc> 
4050         <docstring>This gets the size of the window's 'client area' in pixels. The client
 
4051 area is the area which may be drawn on by the programmer, excluding
 
4052 title bar, border, scrollbars, etc.
</docstring> 
4054           <param name=
"OUTPUT" type=
"int" default=
""/> 
4055           <param name=
"OUTPUT" type=
"int" default=
""/> 
4058       <method name=
"GetClientAreaOrigin" type=
"Point" overloaded=
"no"> 
4059         <autodoc>GetClientAreaOrigin() -
> Point
</autodoc> 
4060         <docstring>Get the origin of the client area of the window relative to the
 
4061 window's top left corner (the client area may be shifted because of
 
4062 the borders, scrollbars, other decorations...)
</docstring> 
4064       <method name=
"GetClientRect" type=
"Rect" overloaded=
"no"> 
4065         <autodoc>GetClientRect() -
> Rect
</autodoc> 
4066         <docstring>Get the client area position and size as a wx.Rect object.
</docstring> 
4068       <method name=
"GetBestSize" type=
"Size" overloaded=
"no"> 
4069         <autodoc>GetBestSize() -
> Size
</autodoc> 
4070         <docstring>This functions returns the best acceptable minimal size for the
 
4071 window, if applicable. For example, for a static text control, it will be
 
4072 the minimal size such that the control label is not truncated. For
 
4073 windows containing subwindows (suzh aswx.Panel), the size returned
 
4074 by this function will be the same as the size the window would have
 
4075 had after calling Fit.
</docstring> 
4077       <method name=
"GetBestSizeTuple" type=
"" overloaded=
"no"> 
4078         <autodoc>GetBestSizeTuple() -
> (width, height)
</autodoc> 
4079         <docstring>This functions returns the best acceptable minimal size for the
 
4080 window, if applicable. For example, for a static text control, it will be
 
4081 the minimal size such that the control label is not truncated. For
 
4082 windows containing subwindows (suzh aswx.Panel), the size returned
 
4083 by this function will be the same as the size the window would have
 
4084 had after calling Fit.
</docstring> 
4086           <param name=
"OUTPUT" type=
"int" default=
""/> 
4087           <param name=
"OUTPUT" type=
"int" default=
""/> 
4090       <method name=
"GetAdjustedBestSize" type=
"Size" overloaded=
"no"> 
4091         <autodoc>GetAdjustedBestSize() -
> Size
</autodoc> 
4092         <docstring>This method is similar to GetBestSize, except in one
 
4093 thing. GetBestSize should return the minimum untruncated size of the
 
4094 window, while this method will return the largest of BestSize and any
 
4095 user specified minimum size. ie. it is the minimum size the window
 
4096 should currently be drawn at, not the minimal size it can possibly
 
4097 tolerate.
</docstring> 
4099       <method name=
"Center" type=
"" overloaded=
"no"> 
4100         <autodoc>Center(int direction=BOTH)
</autodoc> 
4101         <docstring>Centers the window.  The parameter specifies the direction for
 
4102 cetering, and may be wx.HORIZONTAL, wx.VERTICAL or wx.BOTH. It may
 
4103 also include wx.CENTER_ON_SCREEN flag if you want to center the window
 
4104 on the entire screen and not on its parent window.  If it is a
 
4105 top-level window and has no parent then it will always be centered
 
4106 relative to the screen.
</docstring> 
4108           <param name=
"direction" type=
"int" default=
"wxBOTH"/> 
4111       <method name=
"CenterOnScreen" type=
"" overloaded=
"no"> 
4112         <autodoc>CenterOnScreen(int dir=BOTH)
</autodoc> 
4113         <docstring>Center on screen (only works for top level windows)
</docstring> 
4115           <param name=
"dir" type=
"int" default=
"wxBOTH"/> 
4118       <method name=
"CenterOnParent" type=
"" overloaded=
"no"> 
4119         <autodoc>CenterOnParent(int dir=BOTH)
</autodoc> 
4120         <docstring>Center with respect to the the parent window
</docstring> 
4122           <param name=
"dir" type=
"int" default=
"wxBOTH"/> 
4125       <method name=
"Fit" type=
"" overloaded=
"no"> 
4126         <autodoc>Fit()
</autodoc> 
4127         <docstring>Sizes the window so that it fits around its subwindows. This function
 
4128 won't do anything if there are no subwindows and will only really work
 
4129 correctly if sizers are used for the subwindows layout. Also, if the
 
4130 window has exactly one subwindow it is better (faster and the result
 
4131 is more precise as Fit adds some margin to account for fuzziness of
 
4132 its calculations) to call window.SetClientSize(child.GetSize())
 
4133 instead of calling Fit.
</docstring> 
4135       <method name=
"FitInside" type=
"" overloaded=
"no"> 
4136         <autodoc>FitInside()
</autodoc> 
4137         <docstring>Similar to Fit, but sizes the interior (virtual) size of a
 
4138 window. Mainly useful with scrolled windows to reset scrollbars after
 
4139 sizing changes that do not trigger a size event, and/or scrolled
 
4140 windows without an interior sizer. This function similarly won't do
 
4141 anything if there are no subwindows.
</docstring> 
4143       <method name=
"SetSizeHints" type=
"" overloaded=
"no"> 
4144         <autodoc>SetSizeHints(int minW, int minH, int maxW=-
1, int maxH=-
1, int incW=-
1, 
 
4145     int incH=-
1)
</autodoc> 
4146         <docstring>Allows specification of minimum and maximum window sizes, and window
 
4147 size increments. If a pair of values is not set (or set to -
1), the
 
4148 default values will be used.  If this function is called, the user
 
4149 will not be able to size the window outside the given bounds. The
 
4150 resizing increments are only significant under Motif or Xt.
</docstring> 
4152           <param name=
"minW" type=
"int" default=
""/> 
4153           <param name=
"minH" type=
"int" default=
""/> 
4154           <param name=
"maxW" type=
"int" default=
"-1"/> 
4155           <param name=
"maxH" type=
"int" default=
"-1"/> 
4156           <param name=
"incW" type=
"int" default=
"-1"/> 
4157           <param name=
"incH" type=
"int" default=
"-1"/> 
4160       <method name=
"SetVirtualSizeHints" type=
"" overloaded=
"no"> 
4161         <autodoc>SetVirtualSizeHints(int minW, int minH, int maxW=-
1, int maxH=-
1)
</autodoc> 
4162         <docstring>Allows specification of minimum and maximum virtual window sizes. If a
 
4163 pair of values is not set (or set to -
1), the default values will be
 
4164 used.  If this function is called, the user will not be able to size
 
4165 the virtual area of the window outside the given bounds.
</docstring> 
4167           <param name=
"minW" type=
"int" default=
""/> 
4168           <param name=
"minH" type=
"int" default=
""/> 
4169           <param name=
"maxW" type=
"int" default=
"-1"/> 
4170           <param name=
"maxH" type=
"int" default=
"-1"/> 
4173       <method name=
"GetMinWidth" type=
"int" overloaded=
"no"> 
4174         <autodoc>GetMinWidth() -
> int
</autodoc> 
4176       <method name=
"GetMinHeight" type=
"int" overloaded=
"no"> 
4177         <autodoc>GetMinHeight() -
> int
</autodoc> 
4179       <method name=
"GetMaxWidth" type=
"int" overloaded=
"no"> 
4180         <autodoc>GetMaxWidth() -
> int
</autodoc> 
4182       <method name=
"GetMaxHeight" type=
"int" overloaded=
"no"> 
4183         <autodoc>GetMaxHeight() -
> int
</autodoc> 
4185       <method name=
"GetMaxSize" type=
"Size" overloaded=
"no"> 
4186         <autodoc>GetMaxSize() -
> Size
</autodoc> 
4188       <method name=
"SetVirtualSize" type=
"" overloaded=
"no"> 
4189         <autodoc>SetVirtualSize(Size size)
</autodoc> 
4190         <docstring>Set the the virtual size of a window in pixels.  For most windows this
 
4191 is just the client area of the window, but for some like scrolled
 
4192 windows it is more or less independent of the screen window size.
</docstring> 
4194           <param name=
"size" type=
"Size" default=
""/> 
4197       <method name=
"SetVirtualSizeWH" type=
"" overloaded=
"no"> 
4198         <autodoc>SetVirtualSizeWH(int w, int h)
</autodoc> 
4199         <docstring>Set the the virtual size of a window in pixels.  For most windows this
 
4200 is just the client area of the window, but for some like scrolled
 
4201 windows it is more or less independent of the screen window size.
</docstring> 
4203           <param name=
"w" type=
"int" default=
""/> 
4204           <param name=
"h" type=
"int" default=
""/> 
4207       <method name=
"GetVirtualSize" type=
"Size" overloaded=
"no"> 
4208         <autodoc>GetVirtualSize() -
> Size
</autodoc> 
4209         <docstring>Get the the virtual size of the window in pixels.  For most windows
 
4210 this is just the client area of the window, but for some like scrolled
 
4211 windows it is more or less independent of the screen window size.
</docstring> 
4213       <method name=
"GetVirtualSizeTuple" type=
"" overloaded=
"no"> 
4214         <autodoc>GetVirtualSizeTuple() -
> (width, height)
</autodoc> 
4215         <docstring>Get the the virtual size of the window in pixels.  For most windows
 
4216 this is just the client area of the window, but for some like scrolled
 
4217 windows it is more or less independent of the screen window size.
</docstring> 
4219           <param name=
"OUTPUT" type=
"int" default=
""/> 
4220           <param name=
"OUTPUT" type=
"int" default=
""/> 
4223       <method name=
"GetBestVirtualSize" type=
"Size" overloaded=
"no"> 
4224         <autodoc>GetBestVirtualSize() -
> Size
</autodoc> 
4225         <docstring>Return the largest of ClientSize and BestSize (as determined by a
 
4226 sizer, interior children, or other means)
</docstring> 
4228       <method name=
"Show" type=
"bool" overloaded=
"no"> 
4229         <autodoc>Show(bool show=True) -
> bool
</autodoc> 
4230         <docstring>Shows or hides the window. You may need to call Raise for a top level
 
4231 window if you want to bring it to top, although this is not needed if
 
4232 Show is called immediately after the frame creation.  Returns True if
 
4233 the window has been shown or hidden or False if nothing was done
 
4234 because it already was in the requested state.
</docstring> 
4236           <param name=
"show" type=
"bool" default=
"True"/> 
4239       <method name=
"Hide" type=
"bool" overloaded=
"no"> 
4240         <autodoc>Hide() -
> bool
</autodoc> 
4241         <docstring>Equivalent to calling Show(False).
</docstring> 
4243       <method name=
"Enable" type=
"bool" overloaded=
"no"> 
4244         <autodoc>Enable(bool enable=True) -
> bool
</autodoc> 
4245         <docstring>Enable or disable the window for user input. Note that when a parent
 
4246 window is disabled, all of its children are disabled as well and they
 
4247 are reenabled again when the parent is.  Returns true if the window
 
4248 has been enabled or disabled, false if nothing was done, i.e. if the
 
4249 window had already been in the specified state.
</docstring> 
4251           <param name=
"enable" type=
"bool" default=
"True"/> 
4254       <method name=
"Disable" type=
"bool" overloaded=
"no"> 
4255         <autodoc>Disable() -
> bool
</autodoc> 
4256         <docstring>Disables the window, same as Enable(false).
</docstring> 
4258       <method name=
"IsShown" type=
"bool" overloaded=
"no"> 
4259         <autodoc>IsShown() -
> bool
</autodoc> 
4260         <docstring>Returns true if the window is shown, false if it has been hidden.
</docstring> 
4262       <method name=
"IsEnabled" type=
"bool" overloaded=
"no"> 
4263         <autodoc>IsEnabled() -
> bool
</autodoc> 
4264         <docstring>Returns true if the window is enabled for input, false otherwise.
</docstring> 
4266       <method name=
"SetWindowStyleFlag" type=
"" overloaded=
"no"> 
4267         <autodoc>SetWindowStyleFlag(long style)
</autodoc> 
4268         <docstring>Sets the style of the window. Please note that some styles cannot be
 
4269 changed after the window creation and that Refresh() might be called
 
4270 after changing the others for the change to take place immediately.
</docstring> 
4272           <param name=
"style" type=
"long" default=
""/> 
4275       <method name=
"GetWindowStyleFlag" type=
"long" overloaded=
"no"> 
4276         <autodoc>GetWindowStyleFlag() -
> long
</autodoc> 
4277         <docstring>Gets the window style that was passed to the constructor or Create
 
4280       <method name=
"HasFlag" type=
"bool" overloaded=
"no"> 
4281         <autodoc>HasFlag(int flag) -
> bool
</autodoc> 
4282         <docstring>Test if the given style is set for this window.
</docstring> 
4284           <param name=
"flag" type=
"int" default=
""/> 
4287       <method name=
"IsRetained" type=
"bool" overloaded=
"no"> 
4288         <autodoc>IsRetained() -
> bool
</autodoc> 
4289         <docstring>Returns true if the window is retained, false otherwise.  Retained
 
4290 windows are only available on X platforms.
</docstring> 
4292       <method name=
"SetExtraStyle" type=
"" overloaded=
"no"> 
4293         <autodoc>SetExtraStyle(long exStyle)
</autodoc> 
4294         <docstring>Sets the extra style bits for the window.  Extra styles are the less
 
4295 often used style bits which can't be set with the constructor or with
 
4296 SetWindowStyleFlag()
</docstring> 
4298           <param name=
"exStyle" type=
"long" default=
""/> 
4301       <method name=
"GetExtraStyle" type=
"long" overloaded=
"no"> 
4302         <autodoc>GetExtraStyle() -
> long
</autodoc> 
4303         <docstring>Returns the extra style bits for the window.
</docstring> 
4305       <method name=
"MakeModal" type=
"" overloaded=
"no"> 
4306         <autodoc>MakeModal(bool modal=True)
</autodoc> 
4307         <docstring>Disables all other windows in the application so that the user can
 
4308 only interact with this window.  Passing False will reverse this
 
4311           <param name=
"modal" type=
"bool" default=
"True"/> 
4314       <method name=
"SetThemeEnabled" type=
"" overloaded=
"no"> 
4315         <autodoc>SetThemeEnabled(bool enableTheme)
</autodoc> 
4316         <docstring>This function tells a window if it should use the system's "theme"
 
4317  code to draw the windows' background instead if its own background
 
4318  drawing code. This will only have an effect on platforms that support
 
4319  the notion of themes in user defined windows. One such platform is
 
4320  GTK+ where windows can have (very colourful) backgrounds defined by a
 
4321  user's selected theme.
 
4323 Dialogs, notebook pages and the status bar have this flag set to true
 
4324 by default so that the default look and feel is simulated best.
</docstring> 
4326           <param name=
"enableTheme" type=
"bool" default=
""/> 
4329       <method name=
"GetThemeEnabled" type=
"bool" overloaded=
"no"> 
4330         <autodoc>GetThemeEnabled() -
> bool
</autodoc> 
4331         <docstring>Return the themeEnabled flag.
</docstring> 
4333       <method name=
"SetFocus" type=
"" overloaded=
"no"> 
4334         <autodoc>SetFocus()
</autodoc> 
4335         <docstring>Set's the focus to this window, allowing it to receive keyboard input.
</docstring> 
4337       <method name=
"SetFocusFromKbd" type=
"" overloaded=
"no"> 
4338         <autodoc>SetFocusFromKbd()
</autodoc> 
4339         <docstring>Set focus to this window as the result of a keyboard action.  Normally
 
4340 only called internally.
</docstring> 
4342       <staticmethod name=
"FindFocus" type=
"Window" overloaded=
"no"> 
4343         <autodoc>FindFocus() -
> Window
</autodoc> 
4344         <docstring>Returns the window or control that currently has the keyboard focus,
 
4345 or None.
</docstring> 
4347       <method name=
"AcceptsFocus" type=
"bool" overloaded=
"no"> 
4348         <autodoc>AcceptsFocus() -
> bool
</autodoc> 
4349         <docstring>Can this window have focus?
</docstring> 
4351       <method name=
"AcceptsFocusFromKeyboard" type=
"bool" overloaded=
"no"> 
4352         <autodoc>AcceptsFocusFromKeyboard() -
> bool
</autodoc> 
4353         <docstring>Can this window be given focus by keyboard navigation? if not, the
 
4354 only way to give it focus (provided it accepts it at all) is to click
 
4357       <method name=
"GetDefaultItem" type=
"Window" overloaded=
"no"> 
4358         <autodoc>GetDefaultItem() -
> Window
</autodoc> 
4359         <docstring>Get the default child of this parent, i.e. the one which is activated
 
4360 by pressing 
<Enter
> such as the OK button on a wx.Dialog.
</docstring> 
4362       <method name=
"SetDefaultItem" type=
"Window" overloaded=
"no"> 
4363         <autodoc>SetDefaultItem(Window child) -
> Window
</autodoc> 
4364         <docstring>Set this child as default, return the old default.
</docstring> 
4366           <param name=
"child" type=
"Window" default=
""/> 
4369       <method name=
"SetTmpDefaultItem" type=
"" overloaded=
"no"> 
4370         <autodoc>SetTmpDefaultItem(Window win)
</autodoc> 
4371         <docstring>Set this child as temporary default
</docstring> 
4373           <param name=
"win" type=
"Window" default=
""/> 
4376       <method name=
"GetChildren" type=
"PyObject" overloaded=
"no"> 
4377         <autodoc>GetChildren() -
> PyObject
</autodoc> 
4378         <docstring>Returns a list of the window's children.  NOTE: Currently this is a
 
4379 copy of the child window list maintained by the window, so the return
 
4380 value of this function is only valid as long as the window's children
 
4381 do not change.
</docstring> 
4383       <method name=
"GetParent" type=
"Window" overloaded=
"no"> 
4384         <autodoc>GetParent() -
> Window
</autodoc> 
4385         <docstring>Returns the parent window of this window, or None if there isn't one.
</docstring> 
4387       <method name=
"GetGrandParent" type=
"Window" overloaded=
"no"> 
4388         <autodoc>GetGrandParent() -
> Window
</autodoc> 
4389         <docstring>Returns the parent of the parent of this window, or None if there isn't one.
</docstring> 
4391       <method name=
"IsTopLevel" type=
"bool" overloaded=
"no"> 
4392         <autodoc>IsTopLevel() -
> bool
</autodoc> 
4393         <docstring>Returns true if the given window is a top-level one. Currently all
 
4394 frames and dialogs are always considered to be top-level windows (even
 
4395 if they have a parent window).
</docstring> 
4397       <method name=
"Reparent" type=
"bool" overloaded=
"no"> 
4398         <autodoc>Reparent(Window newParent) -
> bool
</autodoc> 
4399         <docstring>Reparents the window, i.e the window will be removed from its current
 
4400 parent window (e.g. a non-standard toolbar in a wxFrame) and then
 
4401 re-inserted into another. Available on Windows and GTK.  Returns True
 
4402 if the parent was changed, False otherwise (error or newParent ==
 
4403 oldParent)
</docstring> 
4405           <param name=
"newParent" type=
"Window" default=
""/> 
4408       <method name=
"AddChild" type=
"" overloaded=
"no"> 
4409         <autodoc>AddChild(Window child)
</autodoc> 
4410         <docstring>Adds a child window. This is called automatically by window creation
 
4411 functions so should not be required by the application programmer.
</docstring> 
4413           <param name=
"child" type=
"Window" default=
""/> 
4416       <method name=
"RemoveChild" type=
"" overloaded=
"no"> 
4417         <autodoc>RemoveChild(Window child)
</autodoc> 
4418         <docstring>Removes a child window. This is called automatically by window
 
4419 deletion functions so should not be required by the application
 
4420 programmer.
</docstring> 
4422           <param name=
"child" type=
"Window" default=
""/> 
4425       <method name=
"FindWindowById" type=
"Window" overloaded=
"no"> 
4426         <autodoc>FindWindowById(long winid) -
> Window
</autodoc> 
4427         <docstring>Find a chld of this window by window ID
</docstring> 
4429           <param name=
"winid" type=
"long" default=
""/> 
4432       <method name=
"FindWindowByName" type=
"Window" overloaded=
"no"> 
4433         <autodoc>FindWindowByName(String name) -
> Window
</autodoc> 
4434         <docstring>Find a child of this window by name
</docstring> 
4436           <param name=
"name" type=
"String" default=
""/> 
4439       <method name=
"GetEventHandler" type=
"EvtHandler" overloaded=
"no"> 
4440         <autodoc>GetEventHandler() -
> EvtHandler
</autodoc> 
4441         <docstring>Returns the event handler for this window. By default, the window is
 
4442 its own event handler.
</docstring> 
4444       <method name=
"SetEventHandler" type=
"" overloaded=
"no"> 
4445         <autodoc>SetEventHandler(EvtHandler handler)
</autodoc> 
4446         <docstring>Sets the event handler for this window.  An event handler is an object
 
4447 that is capable of processing the events sent to a window. By default,
 
4448 the window is its own event handler, but an application may wish to
 
4449 substitute another, for example to allow central implementation of
 
4450 event-handling for a variety of different window classes.
 
4452 It is usually better to use wx.Window.PushEventHandler since this sets
 
4453 up a chain of event handlers, where an event not handled by one event
 
4454 handler is handed to the next one in the chain.
</docstring> 
4456           <param name=
"handler" type=
"EvtHandler" default=
""/> 
4459       <method name=
"PushEventHandler" type=
"" overloaded=
"no"> 
4460         <autodoc>PushEventHandler(EvtHandler handler)
</autodoc> 
4461         <docstring>Pushes this event handler onto the event handler stack for the window.
 
4462 An event handler is an object that is capable of processing the events
 
4463 sent to a window. By default, the window is its own event handler, but
 
4464 an application may wish to substitute another, for example to allow
 
4465 central implementation of event-handling for a variety of different
 
4468 wx.Window.PushEventHandler allows an application to set up a chain of
 
4469 event handlers, where an event not handled by one event handler is
 
4470 handed to the next one in the chain. Use wx.Window.PopEventHandler to
 
4471 remove the event handler.
</docstring> 
4473           <param name=
"handler" type=
"EvtHandler" default=
""/> 
4476       <method name=
"PopEventHandler" type=
"EvtHandler" overloaded=
"no"> 
4477         <autodoc>PopEventHandler(bool deleteHandler=False) -
> EvtHandler
</autodoc> 
4478         <docstring>Removes and returns the top-most event handler on the event handler
 
4479 stack.  If deleteHandler is True then the wx.EvtHandler object will be
 
4480 destroyed after it is popped.
</docstring> 
4482           <param name=
"deleteHandler" type=
"bool" default=
"False"/> 
4485       <method name=
"RemoveEventHandler" type=
"bool" overloaded=
"no"> 
4486         <autodoc>RemoveEventHandler(EvtHandler handler) -
> bool
</autodoc> 
4487         <docstring>Find the given handler in the event handler chain and remove (but
 
4488 not delete) it from the event handler chain, return True if it was
 
4489 found and False otherwise (this also results in an assert failure so
 
4490 this function should only be called when the handler is supposed to
 
4491 be there.)
</docstring> 
4493           <param name=
"handler" type=
"EvtHandler" default=
""/> 
4496       <method name=
"SetValidator" type=
"" overloaded=
"no"> 
4497         <autodoc>SetValidator(Validator validator)
</autodoc> 
4498         <docstring>Deletes the current validator (if any) and sets the window validator,
 
4499 having called wx.Validator.Clone to create a new validator of this
 
4502           <param name=
"validator" type=
"wxValidator" default=
""/> 
4505       <method name=
"GetValidator" type=
"wxValidator" overloaded=
"no"> 
4506         <autodoc>GetValidator() -
> Validator
</autodoc> 
4507         <docstring>Returns a pointer to the current validator for the window, or None if
 
4508 there is none.
</docstring> 
4510       <method name=
"SetAcceleratorTable" type=
"" overloaded=
"no"> 
4511         <autodoc>SetAcceleratorTable(AcceleratorTable accel)
</autodoc> 
4512         <docstring>Sets the accelerator table for this window.
</docstring> 
4514           <param name=
"accel" type=
"AcceleratorTable" default=
""/> 
4517       <method name=
"GetAcceleratorTable" type=
"AcceleratorTable" overloaded=
"no"> 
4518         <autodoc>GetAcceleratorTable() -
> AcceleratorTable
</autodoc> 
4519         <docstring>Gets the accelerator table for this window.
</docstring> 
4521       <method name=
"RegisterHotKey" type=
"bool" overloaded=
"no"> 
4522         <autodoc>RegisterHotKey(int hotkeyId, int modifiers, int keycode) -
> bool
</autodoc> 
4523         <docstring>Registers a system wide hotkey. Every time the user presses the hotkey
 
4524 registered here, this window will receive a hotkey event. It will
 
4525 receive the event even if the application is in the background and
 
4526 does not have the input focus because the user is working with some
 
4527 other application.  To bind an event handler function to this hotkey
 
4528 use EVT_HOTKEY with an id equal to hotkeyId.  Returns True if the
 
4529 hotkey was registered successfully.
</docstring> 
4531           <param name=
"hotkeyId" type=
"int" default=
""/> 
4532           <param name=
"modifiers" type=
"int" default=
""/> 
4533           <param name=
"keycode" type=
"int" default=
""/> 
4536       <method name=
"UnregisterHotKey" type=
"bool" overloaded=
"no"> 
4537         <autodoc>UnregisterHotKey(int hotkeyId) -
> bool
</autodoc> 
4538         <docstring>Unregisters a system wide hotkey.
</docstring> 
4540           <param name=
"hotkeyId" type=
"int" default=
""/> 
4543       <method name=
"ConvertDialogPointToPixels" type=
"Point" overloaded=
"no"> 
4544         <autodoc>ConvertDialogPointToPixels(Point pt) -
> Point
</autodoc> 
4545         <docstring>Converts a point or size from dialog units to pixels.  Dialog units
 
4546 are used for maintaining a dialog's proportions even if the font
 
4547 changes. For the x dimension, the dialog units are multiplied by the
 
4548 average character width and then divided by 
4. For the y dimension,
 
4549 the dialog units are multiplied by the average character height and
 
4550 then divided by 
8.
</docstring> 
4552           <param name=
"pt" type=
"Point" default=
""/> 
4555       <method name=
"ConvertDialogSizeToPixels" type=
"Size" overloaded=
"no"> 
4556         <autodoc>ConvertDialogSizeToPixels(Size sz) -
> Size
</autodoc> 
4557         <docstring>Converts a point or size from dialog units to pixels.  Dialog units
 
4558 are used for maintaining a dialog's proportions even if the font
 
4559 changes. For the x dimension, the dialog units are multiplied by the
 
4560 average character width and then divided by 
4. For the y dimension,
 
4561 the dialog units are multiplied by the average character height and
 
4562 then divided by 
8.
</docstring> 
4564           <param name=
"sz" type=
"Size" default=
""/> 
4567       <method name=
"DLG_PNT" type=
"Point" overloaded=
"no"> 
4568         <autodoc>DLG_PNT(Point pt) -
> Point
</autodoc> 
4569         <docstring>Converts a point or size from dialog units to pixels.  Dialog units
 
4570 are used for maintaining a dialog's proportions even if the font
 
4571 changes. For the x dimension, the dialog units are multiplied by the
 
4572 average character width and then divided by 
4. For the y dimension,
 
4573 the dialog units are multiplied by the average character height and
 
4574 then divided by 
8.
</docstring> 
4576           <param name=
"pt" type=
"Point" default=
""/> 
4579       <method name=
"DLG_SZE" type=
"Size" overloaded=
"no"> 
4580         <autodoc>DLG_SZE(Size sz) -
> Size
</autodoc> 
4581         <docstring>Converts a point or size from dialog units to pixels.  Dialog units
 
4582 are used for maintaining a dialog's proportions even if the font
 
4583 changes. For the x dimension, the dialog units are multiplied by the
 
4584 average character width and then divided by 
4. For the y dimension,
 
4585 the dialog units are multiplied by the average character height and
 
4586 then divided by 
8.
</docstring> 
4588           <param name=
"sz" type=
"Size" default=
""/> 
4591       <method name=
"ConvertPixelPointToDialog" type=
"Point" overloaded=
"no"> 
4592         <autodoc>ConvertPixelPointToDialog(Point pt) -
> Point
</autodoc> 
4594           <param name=
"pt" type=
"Point" default=
""/> 
4597       <method name=
"ConvertPixelSizeToDialog" type=
"Size" overloaded=
"no"> 
4598         <autodoc>ConvertPixelSizeToDialog(Size sz) -
> Size
</autodoc> 
4600           <param name=
"sz" type=
"Size" default=
""/> 
4603       <method name=
"WarpPointer" type=
"" overloaded=
"no"> 
4604         <autodoc>WarpPointer(int x, int y)
</autodoc> 
4605         <docstring>Moves the pointer to the given position on the window.
 
4607 NOTE: This function is not supported under Mac because Apple Human
 
4608 Interface Guidelines forbid moving the mouse cursor programmatically.
</docstring> 
4610           <param name=
"x" type=
"int" default=
""/> 
4611           <param name=
"y" type=
"int" default=
""/> 
4614       <method name=
"CaptureMouse" type=
"" overloaded=
"no"> 
4615         <autodoc>CaptureMouse()
</autodoc> 
4616         <docstring>Directs all mouse input to this window. Call wx.Window.ReleaseMouse to
 
4617 release the capture.
 
4619 Note that wxWindows maintains the stack of windows having captured the
 
4620 mouse and when the mouse is released the capture returns to the window
 
4621 which had had captured it previously and it is only really released if
 
4622 there were no previous window. In particular, this means that you must
 
4623 release the mouse as many times as you capture it.
</docstring> 
4625       <method name=
"ReleaseMouse" type=
"" overloaded=
"no"> 
4626         <autodoc>ReleaseMouse()
</autodoc> 
4627         <docstring>Releases mouse input captured with wx.Window.CaptureMouse.
</docstring> 
4629       <staticmethod name=
"GetCapture" type=
"Window" overloaded=
"no"> 
4630         <autodoc>GetCapture() -
> Window
</autodoc> 
4631         <docstring>Returns the window which currently captures the mouse or None
</docstring> 
4633       <method name=
"HasCapture" type=
"bool" overloaded=
"no"> 
4634         <autodoc>HasCapture() -
> bool
</autodoc> 
4635         <docstring>Returns true if this window has the current mouse capture.
</docstring> 
4637       <method name=
"Refresh" type=
"" overloaded=
"no"> 
4638         <autodoc>Refresh(bool eraseBackground=True, Rect rect=None)
</autodoc> 
4639         <docstring>Mark the specified rectangle (or the whole window) as "dirty" so it
 
4640 will be repainted.  Causes an EVT_PAINT event to be generated and sent
 
4641 to the window.
</docstring> 
4643           <param name=
"eraseBackground" type=
"bool" default=
"True"/> 
4644           <param name=
"rect" type=
"Rect" default=
"NULL"/> 
4647       <method name=
"RefreshRect" type=
"" overloaded=
"no"> 
4648         <autodoc>RefreshRect(Rect rect)
</autodoc> 
4649         <docstring>Redraws the contents of the given rectangle: the area inside it will
 
4650 be repainted.  This is the same as Refresh but has a nicer syntax.
</docstring> 
4652           <param name=
"rect" type=
"Rect" default=
""/> 
4655       <method name=
"Update" type=
"" overloaded=
"no"> 
4656         <autodoc>Update()
</autodoc> 
4657         <docstring>Calling this method immediately repaints the invalidated area of the
 
4658 window instead of waiting for the EVT_PAINT event to happen, (normally
 
4659 this would usually only happen when the flow of control returns to the
 
4660 event loop.)  Notice that this function doesn't refresh the window and
 
4661 does nothing if the window has been already repainted.  Use Refresh
 
4662 first if you want to immediately redraw the window (or some portion of
 
4663 it) unconditionally.
</docstring> 
4665       <method name=
"ClearBackground" type=
"" overloaded=
"no"> 
4666         <autodoc>ClearBackground()
</autodoc> 
4667         <docstring>Clears the window by filling it with the current background
 
4668 colour. Does not cause an erase background event to be generated.
</docstring> 
4670       <method name=
"Freeze" type=
"" overloaded=
"no"> 
4671         <autodoc>Freeze()
</autodoc> 
4672         <docstring>Freezes the window or, in other words, prevents any updates from taking place
 
4673 on screen, the window is not redrawn at all. Thaw must be called to reenable
 
4674 window redrawing.  Calls to Freeze/Thaw may be nested, with the actual Thaw
 
4675 being delayed until all the nesting has been undone.
 
4677 This method is useful for visual appearance optimization (for example,
 
4678 it is a good idea to use it before inserting large amount of text into
 
4679 a wxTextCtrl under wxGTK) but is not implemented on all platforms nor
 
4680 for all controls so it is mostly just a hint to wxWindows and not a
 
4681 mandatory directive.
</docstring> 
4683       <method name=
"Thaw" type=
"" overloaded=
"no"> 
4684         <autodoc>Thaw()
</autodoc> 
4685         <docstring>Reenables window updating after a previous call to Freeze.  Calls to
 
4686 Freeze/Thaw may be nested, so Thaw must be called the same number of times
 
4687 that Freeze was before the window will be updated.
</docstring> 
4689       <method name=
"PrepareDC" type=
"" overloaded=
"no"> 
4690         <autodoc>PrepareDC(DC dc)
</autodoc> 
4691         <docstring>Call this function to prepare the device context for drawing a
 
4692 scrolled image. It sets the device origin according to the current
 
4693 scroll position.
</docstring> 
4695           <param name=
"dc" type=
"wxDC" default=
""/> 
4698       <method name=
"GetUpdateRegion" type=
"wxRegion" overloaded=
"no"> 
4699         <autodoc>GetUpdateRegion() -
> Region
</autodoc> 
4700         <docstring>Returns the region specifying which parts of the window have been
 
4701 damaged. Should only be called within an EVT_PAINT handler.
</docstring> 
4703       <method name=
"GetUpdateClientRect" type=
"Rect" overloaded=
"no"> 
4704         <autodoc>GetUpdateClientRect() -
> Rect
</autodoc> 
4705         <docstring>Get the update rectangle region bounding box in client coords.
</docstring> 
4707       <method name=
"IsExposed" type=
"bool" overloaded=
"no"> 
4708         <autodoc>IsExposed(int x, int y, int w=
1, int h=
1) -
> bool
</autodoc> 
4709         <docstring>Returns true if the given point or rectangle area has been exposed
 
4710 since the last repaint. Call this in an paint event handler to
 
4711 optimize redrawing by only redrawing those areas, which have been
 
4712 exposed.
</docstring> 
4714           <param name=
"x" type=
"int" default=
""/> 
4715           <param name=
"y" type=
"int" default=
""/> 
4716           <param name=
"w" type=
"int" default=
"1"/> 
4717           <param name=
"h" type=
"int" default=
"1"/> 
4720       <method name=
"IsExposedPoint" type=
"bool" overloaded=
"no"> 
4721         <autodoc>IsExposedPoint(Point pt) -
> bool
</autodoc> 
4722         <docstring>Returns true if the given point or rectangle area has been exposed
 
4723 since the last repaint. Call this in an paint event handler to
 
4724 optimize redrawing by only redrawing those areas, which have been
 
4725 exposed.
</docstring> 
4727           <param name=
"pt" type=
"Point" default=
""/> 
4730       <method name=
"IsExposedRect" type=
"bool" overloaded=
"no"> 
4731         <autodoc>IsExposedRect(Rect rect) -
> bool
</autodoc> 
4732         <docstring>Returns true if the given point or rectangle area has been exposed
 
4733 since the last repaint. Call this in an paint event handler to
 
4734 optimize redrawing by only redrawing those areas, which have been
 
4735 exposed.
</docstring> 
4737           <param name=
"rect" type=
"Rect" default=
""/> 
4740       <method name=
"SetBackgroundColour" type=
"bool" overloaded=
"no"> 
4741         <autodoc>SetBackgroundColour(Colour colour) -
> bool
</autodoc> 
4742         <docstring>Sets the background colour of the window.  Returns True if the colour
 
4743 was changed.  The background colour is usually painted by the default
 
4744 EVT_ERASE_BACKGROUND event handler function under Windows and
 
4745 automatically under GTK.
 
4747 Note that setting the background colour does not cause an immediate
 
4748 refresh, so you may wish to call ClearBackground or Refresh after
 
4749 calling this function.
 
4751 Use this function with care under GTK+ as the new appearance of the
 
4752 window might not look equally well when used with themes, i.e GTK+'s
 
4753 ability to change its look as the user wishes with run-time loadable
 
4754 modules.
</docstring> 
4756           <param name=
"colour" type=
"wxColour" default=
""/> 
4759       <method name=
"SetForegroundColour" type=
"bool" overloaded=
"no"> 
4760         <autodoc>SetForegroundColour(Colour colour) -
> bool
</autodoc> 
4761         <docstring>Sets the foreground colour of the window.  Returns True is the colour
 
4762 was changed.  The interpretation of foreground colour is dependent on
 
4763 the window class; it may be the text colour or other colour, or it may
 
4764 not be used at all.
</docstring> 
4766           <param name=
"colour" type=
"wxColour" default=
""/> 
4769       <method name=
"GetBackgroundColour" type=
"wxColour" overloaded=
"no"> 
4770         <autodoc>GetBackgroundColour() -
> Colour
</autodoc> 
4771         <docstring>Returns the background colour of the window.
</docstring> 
4773       <method name=
"GetForegroundColour" type=
"wxColour" overloaded=
"no"> 
4774         <autodoc>GetForegroundColour() -
> Colour
</autodoc> 
4775         <docstring>Returns the foreground colour of the window.  The interpretation of
 
4776 foreground colour is dependent on the window class; it may be the text
 
4777 colour or other colour, or it may not be used at all.
</docstring> 
4779       <method name=
"SetCursor" type=
"bool" overloaded=
"no"> 
4780         <autodoc>SetCursor(Cursor cursor) -
> bool
</autodoc> 
4781         <docstring>Sets the window's cursor. Notice that the window cursor also sets it
 
4782 for the children of the window implicitly.
 
4784 The cursor may be wx.NullCursor in which case the window cursor will
 
4785 be reset back to default.
</docstring> 
4787           <param name=
"cursor" type=
"wxCursor" default=
""/> 
4790       <method name=
"GetCursor" type=
"wxCursor" overloaded=
"no"> 
4791         <autodoc>GetCursor() -
> Cursor
</autodoc> 
4792         <docstring>Return the cursor associated with this window.
</docstring> 
4794       <method name=
"SetFont" type=
"bool" overloaded=
"no"> 
4795         <autodoc>SetFont(Font font) -
> bool
</autodoc> 
4796         <docstring>Sets the font for this window.
</docstring> 
4798           <param name=
"font" type=
"wxFont" default=
""/> 
4801       <method name=
"GetFont" type=
"wxFont" overloaded=
"no"> 
4802         <autodoc>GetFont() -
> Font
</autodoc> 
4803         <docstring>Returns the default font used for this window.
</docstring> 
4805       <method name=
"SetCaret" type=
"" overloaded=
"no"> 
4806         <autodoc>SetCaret(Caret caret)
</autodoc> 
4807         <docstring>Sets the caret associated with the window.
</docstring> 
4809           <param name=
"caret" type=
"wxCaret" default=
""/> 
4812       <method name=
"GetCaret" type=
"wxCaret" overloaded=
"no"> 
4813         <autodoc>GetCaret() -
> Caret
</autodoc> 
4814         <docstring>Returns the caret associated with the window.
</docstring> 
4816       <method name=
"GetCharHeight" type=
"int" overloaded=
"no"> 
4817         <autodoc>GetCharHeight() -
> int
</autodoc> 
4818         <docstring>Get the (average) character size for the current font.
</docstring> 
4820       <method name=
"GetCharWidth" type=
"int" overloaded=
"no"> 
4821         <autodoc>GetCharWidth() -
> int
</autodoc> 
4822         <docstring>Get the (average) character size for the current font.
</docstring> 
4824       <method name=
"GetTextExtent" type=
"" overloaded=
"no"> 
4825         <autodoc>GetTextExtent(String string) -
> (width, height)
</autodoc> 
4826         <docstring>Get the width and height of the text using the current font.
</docstring> 
4828           <param name=
"string" type=
"String" default=
""/> 
4829           <param name=
"OUTPUT" type=
"int" default=
""/> 
4830           <param name=
"OUTPUT" type=
"int" default=
""/> 
4833       <method name=
"GetFullTextExtent" type=
"" overloaded=
"no"> 
4834         <autodoc>GetFullTextExtent(String string, Font font=None) -
> 
4835    (width, height, descent, externalLeading)
</autodoc> 
4836         <docstring>Get the width, height, decent and leading of the text using the
 
4837 current or specified font.
</docstring> 
4839           <param name=
"string" type=
"String" default=
""/> 
4840           <param name=
"OUTPUT" type=
"int" default=
""/> 
4841           <param name=
"OUTPUT" type=
"int" default=
""/> 
4842           <param name=
"OUTPUT" type=
"int" default=
""/> 
4843           <param name=
"OUTPUT" type=
"int" default=
""/> 
4844           <param name=
"font" type=
"wxFont" default=
"NULL"/> 
4847       <method name=
"ClientToScreenXY" type=
"" overloaded=
"no"> 
4848         <autodoc>ClientToScreenXY(int x, int y) -
> (x,y)
</autodoc> 
4849         <docstring>Converts to screen coordinates from coordinates relative to this window.
</docstring> 
4851           <param name=
"x" type=
"int" default=
""/> 
4852           <param name=
"y" type=
"int" default=
""/> 
4855       <method name=
"ScreenToClientXY" type=
"" overloaded=
"no"> 
4856         <autodoc>ScreenToClientXY(int x, int y) -
> (x,y)
</autodoc> 
4857         <docstring>Converts from screen to client window coordinates.
</docstring> 
4859           <param name=
"x" type=
"int" default=
""/> 
4860           <param name=
"y" type=
"int" default=
""/> 
4863       <method name=
"ClientToScreen" type=
"Point" overloaded=
"no"> 
4864         <autodoc>ClientToScreen(Point pt) -
> Point
</autodoc> 
4865         <docstring>Converts to screen coordinates from coordinates relative to this window.
</docstring> 
4867           <param name=
"pt" type=
"Point" default=
""/> 
4870       <method name=
"ScreenToClient" type=
"Point" overloaded=
"no"> 
4871         <autodoc>ScreenToClient(Point pt) -
> Point
</autodoc> 
4872         <docstring>Converts from screen to client window coordinates.
</docstring> 
4874           <param name=
"pt" type=
"Point" default=
""/> 
4877       <method name=
"HitTestXY" type=
"wxHitTest" overloaded=
"no"> 
4878         <autodoc>HitTestXY(int x, int y) -
> int
</autodoc> 
4879         <docstring>Test where the given (in client coords) point lies
</docstring> 
4881           <param name=
"x" type=
"int" default=
""/> 
4882           <param name=
"y" type=
"int" default=
""/> 
4885       <method name=
"HitTest" type=
"wxHitTest" overloaded=
"no"> 
4886         <autodoc>HitTest(Point pt) -
> int
</autodoc> 
4887         <docstring>Test where the given (in client coords) point lies
</docstring> 
4889           <param name=
"pt" type=
"Point" default=
""/> 
4892       <method name=
"GetBorder" type=
"wxBorder" overloaded=
"yes"> 
4893         <docstring>Get the window border style from the given flags: this is different
 
4894 from simply doing flags 
& wxBORDER_MASK because it uses
 
4895 GetDefaultBorder() to translate wxBORDER_DEFAULT to something
 
4899           <param name=
"flags" type=
"long" default=
""/> 
4902       <method name=
"GetBorder" type=
"wxBorder" overloaded=
"yes"> 
4903         <autodoc>GetBorder(long flags) -
> int
 
4904 GetBorder() -
> int
</autodoc> 
4905         <docstring>Get border for the flags of this window
</docstring> 
4907       <method name=
"UpdateWindowUI" type=
"" overloaded=
"no"> 
4908         <autodoc>UpdateWindowUI(long flags=UPDATE_UI_NONE)
</autodoc> 
4909         <docstring>This function sends EVT_UPDATE_UI events to the window. The particular
 
4910 implementation depends on the window; for example a wx.ToolBar will
 
4911 send an update UI event for each toolbar button, and a wx.Frame will
 
4912 send an update UI event for each menubar menu item. You can call this
 
4913 function from your application to ensure that your UI is up-to-date at
 
4914 a particular point in time (as far as your EVT_UPDATE_UI handlers are
 
4915 concerned). This may be necessary if you have called
 
4916 wx.UpdateUIEvent.SetMode or wx.UpdateUIEvent.SetUpdateInterval to
 
4917 limit the overhead that wxWindows incurs by sending update UI events
 
4920 The flags should be a bitlist of one or more of the following values:
 
4922     wx.UPDATE_UI_NONE          No particular value
 
4923     wx.UPDATE_UI_RECURSE       Call the function for descendants
 
4924     wx.UPDATE_UI_FROMIDLE      Invoked from OnIdle
 
4926 If you are calling this function from an OnIdle function, make sure
 
4927 you pass the wx.UPDATE_UI_FROMIDLE flag, since this tells the window to
 
4928 only update the UI elements that need to be updated in idle time. Some
 
4929 windows update their elements only when necessary, for example when a
 
4930 menu is about to be shown. The following is an example of how to call
 
4931 UpdateWindowUI from an idle function.
 
4933     def OnIdle(self, evt):
 
4934         if wx.UpdateUIEvent.CanUpdate(self):
 
4935             self.UpdateWindowUI(wx.UPDATE_UI_FROMIDLE);
 
4938           <param name=
"flags" type=
"long" default=
"wxUPDATE_UI_NONE"/> 
4941       <method name=
"PopupMenuXY" type=
"bool" overloaded=
"no"> 
4942         <autodoc>PopupMenuXY(Menu menu, int x, int y) -
> bool
</autodoc> 
4943         <docstring>Pops up the given menu at the specified coordinates, relative to this
 
4944 window, and returns control when the user has dismissed the menu. If a
 
4945 menu item is selected, the corresponding menu event is generated and
 
4946 will be processed as usual.
</docstring> 
4948           <param name=
"menu" type=
"wxMenu" default=
""/> 
4949           <param name=
"x" type=
"int" default=
""/> 
4950           <param name=
"y" type=
"int" default=
""/> 
4953       <method name=
"PopupMenu" type=
"bool" overloaded=
"no"> 
4954         <autodoc>PopupMenu(Menu menu, Point pos) -
> bool
</autodoc> 
4955         <docstring>Pops up the given menu at the specified coordinates, relative to this
 
4956 window, and returns control when the user has dismissed the menu. If a
 
4957 menu item is selected, the corresponding menu event is generated and
 
4958 will be processed as usual.
</docstring> 
4960           <param name=
"menu" type=
"wxMenu" default=
""/> 
4961           <param name=
"pos" type=
"Point" default=
""/> 
4964       <method name=
"GetHandle" type=
"long" overloaded=
"no"> 
4965         <autodoc>GetHandle() -
> long
</autodoc> 
4966         <docstring>Returns the platform-specific handle (as a long integer) of the
 
4967 physical window.  Currently on wxMac it returns the handle of the
 
4968 toplevel parent of the window.
</docstring> 
4970       <method name=
"HasScrollbar" type=
"bool" overloaded=
"no"> 
4971         <autodoc>HasScrollbar(int orient) -
> bool
</autodoc> 
4972         <docstring>Does the window have the scrollbar for this orientation?
</docstring> 
4974           <param name=
"orient" type=
"int" default=
""/> 
4977       <method name=
"SetScrollbar" type=
"" overloaded=
"no"> 
4978         <autodoc>SetScrollbar(int orientation, int pos, int thumbvisible, int range, 
 
4979     bool refresh=True)
</autodoc> 
4980         <docstring>Sets the scrollbar properties of a built-in scrollbar.
 
4982     orientation: Determines the scrollbar whose page size is to be
 
4983                  set. May be wx.HORIZONTAL or wx.VERTICAL.
 
4985     position:    The position of the scrollbar in scroll units.
 
4987     thumbSize:   The size of the thumb, or visible portion of the
 
4988                  scrollbar, in scroll units.
 
4990     range:       The maximum position of the scrollbar.
 
4992     refresh:     True to redraw the scrollbar, false otherwise.
</docstring> 
4994           <param name=
"orientation" type=
"int" default=
""/> 
4995           <param name=
"pos" type=
"int" default=
""/> 
4996           <param name=
"thumbvisible" type=
"int" default=
""/> 
4997           <param name=
"range" type=
"int" default=
""/> 
4998           <param name=
"refresh" type=
"bool" default=
"True"/> 
5001       <method name=
"SetScrollPos" type=
"" overloaded=
"no"> 
5002         <autodoc>SetScrollPos(int orientation, int pos, bool refresh=True)
</autodoc> 
5003         <docstring>Sets the position of one of the built-in scrollbars.
</docstring> 
5005           <param name=
"orientation" type=
"int" default=
""/> 
5006           <param name=
"pos" type=
"int" default=
""/> 
5007           <param name=
"refresh" type=
"bool" default=
"True"/> 
5010       <method name=
"GetScrollPos" type=
"int" overloaded=
"no"> 
5011         <autodoc>GetScrollPos(int orientation) -
> int
</autodoc> 
5012         <docstring>Returns the built-in scrollbar position.
</docstring> 
5014           <param name=
"orientation" type=
"int" default=
""/> 
5017       <method name=
"GetScrollThumb" type=
"int" overloaded=
"no"> 
5018         <autodoc>GetScrollThumb(int orientation) -
> int
</autodoc> 
5019         <docstring>Returns the built-in scrollbar thumb size.
</docstring> 
5021           <param name=
"orientation" type=
"int" default=
""/> 
5024       <method name=
"GetScrollRange" type=
"int" overloaded=
"no"> 
5025         <autodoc>GetScrollRange(int orientation) -
> int
</autodoc> 
5026         <docstring>Returns the built-in scrollbar range.
</docstring> 
5028           <param name=
"orientation" type=
"int" default=
""/> 
5031       <method name=
"ScrollWindow" type=
"" overloaded=
"no"> 
5032         <autodoc>ScrollWindow(int dx, int dy, Rect rect=None)
</autodoc> 
5033         <docstring>Physically scrolls the pixels in the window and move child windows
 
5034 accordingly.  Use this function to optimise your scrolling
 
5035 implementations, to minimise the area that must be redrawn. Note that
 
5036 it is rarely required to call this function from a user program.
 
5038     dx:   Amount to scroll horizontally.
 
5040     dy:   Amount to scroll vertically.
 
5042     rect: Rectangle to invalidate. If this is None, the whole window
 
5043           is invalidated. If you pass a rectangle corresponding to the
 
5044           area of the window exposed by the scroll, your painting
 
5045           handler can optimize painting by checking for the
 
5046           invalidated region.
</docstring> 
5048           <param name=
"dx" type=
"int" default=
""/> 
5049           <param name=
"dy" type=
"int" default=
""/> 
5050           <param name=
"rect" type=
"Rect" default=
"NULL"/> 
5053       <method name=
"ScrollLines" type=
"bool" overloaded=
"no"> 
5054         <autodoc>ScrollLines(int lines) -
> bool
</autodoc> 
5055         <docstring>If the platform and window class supports it, scrolls the window by
 
5056 the given number of lines down, if lines is positive, or up if lines
 
5057 is negative.  Returns True if the window was scrolled, False if it was
 
5058 already on top/bottom and nothing was done.
</docstring> 
5060           <param name=
"lines" type=
"int" default=
""/> 
5063       <method name=
"ScrollPages" type=
"bool" overloaded=
"no"> 
5064         <autodoc>ScrollPages(int pages) -
> bool
</autodoc> 
5065         <docstring>If the platform and window class supports it,  scrolls the window by
 
5066 the given number of pages down, if pages is positive, or up if pages
 
5067 is negative.  Returns True if the window was scrolled, False if it was
 
5068 already on top/bottom and nothing was done.
</docstring> 
5070           <param name=
"pages" type=
"int" default=
""/> 
5073       <method name=
"LineUp" type=
"bool" overloaded=
"no"> 
5074         <autodoc>LineUp() -
> bool
</autodoc> 
5075         <docstring>This is just a wrapper for ScrollLines(-
1).
</docstring> 
5077       <method name=
"LineDown" type=
"bool" overloaded=
"no"> 
5078         <autodoc>LineDown() -
> bool
</autodoc> 
5079         <docstring>This is just a wrapper for ScrollLines(
1).
</docstring> 
5081       <method name=
"PageUp" type=
"bool" overloaded=
"no"> 
5082         <autodoc>PageUp() -
> bool
</autodoc> 
5083         <docstring>This is just a wrapper for ScrollPages(-
1).
</docstring> 
5085       <method name=
"PageDown" type=
"bool" overloaded=
"no"> 
5086         <autodoc>PageDown() -
> bool
</autodoc> 
5087         <docstring>This is just a wrapper for ScrollPages(
1).
</docstring> 
5089       <method name=
"SetHelpText" type=
"" overloaded=
"no"> 
5090         <autodoc>SetHelpText(String text)
</autodoc> 
5091         <docstring>Sets the help text to be used as context-sensitive help for this
 
5092 window.  Note that the text is actually stored by the current
 
5093 wxHelpProvider implementation, and not in the window object itself.
</docstring> 
5095           <param name=
"text" type=
"String" default=
""/> 
5098       <method name=
"SetHelpTextForId" type=
"" overloaded=
"no"> 
5099         <autodoc>SetHelpTextForId(String text)
</autodoc> 
5100         <docstring>Associate this help text with all windows with the same id as this
 
5103           <param name=
"text" type=
"String" default=
""/> 
5106       <method name=
"GetHelpText" type=
"String" overloaded=
"no"> 
5107         <autodoc>GetHelpText() -
> String
</autodoc> 
5108         <docstring>Gets the help text to be used as context-sensitive help for this
 
5109 window.  Note that the text is actually stored by the current
 
5110 wxHelpProvider implementation, and not in the window object itself.
</docstring> 
5112       <method name=
"SetToolTipString" type=
"" overloaded=
"no"> 
5113         <autodoc>SetToolTipString(String tip)
</autodoc> 
5114         <docstring>Attach a tooltip to the window.
</docstring> 
5116           <param name=
"tip" type=
"String" default=
""/> 
5119       <method name=
"SetToolTip" type=
"" overloaded=
"no"> 
5120         <autodoc>SetToolTip(ToolTip tip)
</autodoc> 
5121         <docstring>Attach a tooltip to the window.
</docstring> 
5123           <param name=
"tip" type=
"wxToolTip" default=
""/> 
5126       <method name=
"GetToolTip" type=
"wxToolTip" overloaded=
"no"> 
5127         <autodoc>GetToolTip() -
> ToolTip
</autodoc> 
5128         <docstring>get the associated tooltip or None if none
</docstring> 
5130       <method name=
"SetDropTarget" type=
"" overloaded=
"no"> 
5131         <autodoc>SetDropTarget(DropTarget dropTarget)
</autodoc> 
5132         <docstring>Associates a drop target with this window.  If the window already has
 
5133 a drop target, it is deleted.
</docstring> 
5135           <param name=
"dropTarget" type=
"wxPyDropTarget" default=
""/> 
5138       <method name=
"GetDropTarget" type=
"wxPyDropTarget" overloaded=
"no"> 
5139         <autodoc>GetDropTarget() -
> DropTarget
</autodoc> 
5140         <docstring>Returns the associated drop target, which may be None.
</docstring> 
5142       <method name=
"SetConstraints" type=
"" overloaded=
"no"> 
5143         <autodoc>SetConstraints(LayoutConstraints constraints)
</autodoc> 
5144         <docstring>Sets the window to have the given layout constraints. If an existing
 
5145 layout constraints object is already owned by the window, it will be
 
5146 deleted.  Pass None to disassociate and delete the window's current
 
5149 You must call SetAutoLayout to tell a window to use the constraints
 
5150 automatically in its default EVT_SIZE handler; otherwise, you must
 
5151 handle EVT_SIZE yourself and call Layout() explicitly. When setting
 
5152 both a wx.LayoutConstraints and a wx.Sizer, only the sizer will have
 
5155           <param name=
"constraints" type=
"wxLayoutConstraints" default=
""/> 
5158       <method name=
"GetConstraints" type=
"wxLayoutConstraints" overloaded=
"no"> 
5159         <autodoc>GetConstraints() -
> LayoutConstraints
</autodoc> 
5160         <docstring>Returns a pointer to the window's layout constraints, or None if there
 
5161 are none.
</docstring> 
5163       <method name=
"SetAutoLayout" type=
"" overloaded=
"no"> 
5164         <autodoc>SetAutoLayout(bool autoLayout)
</autodoc> 
5165         <docstring>Determines whether the Layout function will be called automatically
 
5166 when the window is resized.  It is called implicitly by SetSizer but
 
5167 if you use SetConstraints you should call it manually or otherwise the
 
5168 window layout won't be correctly updated when its size changes.
</docstring> 
5170           <param name=
"autoLayout" type=
"bool" default=
""/> 
5173       <method name=
"GetAutoLayout" type=
"bool" overloaded=
"no"> 
5174         <autodoc>GetAutoLayout() -
> bool
</autodoc> 
5175         <docstring>Returns the current autoLayout setting
</docstring> 
5177       <method name=
"Layout" type=
"bool" overloaded=
"no"> 
5178         <autodoc>Layout() -
> bool
</autodoc> 
5179         <docstring>Invokes the constraint-based layout algorithm or the sizer-based
 
5180 algorithm for this window.  See SetAutoLayout: when auto layout is on,
 
5181 this function gets called automatically by the default EVT_SIZE
 
5182 handler when the window is resized.
</docstring> 
5184       <method name=
"SetSizer" type=
"" overloaded=
"no"> 
5185         <autodoc>SetSizer(Sizer sizer, bool deleteOld=True)
</autodoc> 
5186         <docstring>Sets the window to have the given layout sizer. The window will then
 
5187 own the object, and will take care of its deletion. If an existing
 
5188 layout sizer object is already owned by the window, it will be deleted
 
5189 if the deleteOld parameter is true. Note that this function will also
 
5190 call SetAutoLayout implicitly with a True parameter if the sizer is
 
5191 non-NoneL and False otherwise.
</docstring> 
5193           <param name=
"sizer" type=
"wxSizer" default=
""/> 
5194           <param name=
"deleteOld" type=
"bool" default=
"True"/> 
5197       <method name=
"SetSizerAndFit" type=
"" overloaded=
"no"> 
5198         <autodoc>SetSizerAndFit(Sizer sizer, bool deleteOld=True)
</autodoc> 
5199         <docstring>The same as SetSizer, except it also sets the size hints for the
 
5200 window based on the sizer's minimum size.
</docstring> 
5202           <param name=
"sizer" type=
"wxSizer" default=
""/> 
5203           <param name=
"deleteOld" type=
"bool" default=
"True"/> 
5206       <method name=
"GetSizer" type=
"wxSizer" overloaded=
"no"> 
5207         <autodoc>GetSizer() -
> Sizer
</autodoc> 
5208         <docstring>Return the sizer associated with the window by a previous call to
 
5209 SetSizer or None if there isn't one.
</docstring> 
5211       <method name=
"SetContainingSizer" type=
"" overloaded=
"no"> 
5212         <autodoc>SetContainingSizer(Sizer sizer)
</autodoc> 
5213         <docstring>This normally does not need to be called by application code. It is
 
5214 called internally when a window is added to a sizer, and is used so
 
5215 the window can remove itself from the sizer when it is destroyed.
</docstring> 
5217           <param name=
"sizer" type=
"wxSizer" default=
""/> 
5220       <method name=
"GetContainingSizer" type=
"wxSizer" overloaded=
"no"> 
5221         <autodoc>GetContainingSizer() -
> Sizer
</autodoc> 
5222         <docstring>Return the sizer that this window is a member of, if any, otherwise None.
</docstring> 
5226 def DLG_PNT(win, point_or_x, y=None):
 
5228     Convenience function for converting a Point or (x,y) in
 
5229     dialog units to pixel units.
 
5232         return win.ConvertDialogPointToPixels(point_or_x)
 
5234         return win.ConvertDialogPointToPixels(wx.Point(point_or_x, y))
 
5236 def DLG_SZE(win, size_width, height=None):
 
5238     Convenience function for converting a Size or (w,h) in
 
5239     dialog units to pixel units.
 
5242         return win.ConvertDialogSizeToPixels(size_width)
 
5244         return win.ConvertDialogSizeToPixels(wx.Size(size_width, height))
 
5246     <method name=
"FindWindowById" oldname=
"wxFindWindowById" type=
"Window" overloaded=
"no"> 
5247       <autodoc>FindWindowById(long id, Window parent=None) -
> Window
</autodoc> 
5248       <docstring>Find the first window in the application with the given id. If parent
 
5249 is None, the search will start from all top-level frames and dialog
 
5250 boxes; if non-None, the search will be limited to the given window
 
5251 hierarchy. The search is recursive in both cases.
</docstring> 
5253         <param name=
"id" type=
"long" default=
""/> 
5254         <param name=
"parent" type=
"Window" default=
"NULL"/> 
5257     <method name=
"FindWindowByName" oldname=
"wxFindWindowByName" type=
"Window" overloaded=
"no"> 
5258       <autodoc>FindWindowByName(String name, Window parent=None) -
> Window
</autodoc> 
5259       <docstring>Find a window by its name (as given in a window constructor or Create
 
5260 function call). If parent is None, the search will start from all
 
5261 top-level frames and dialog boxes; if non-None, the search will be
 
5262 limited to the given window hierarchy. The search is recursive in both
 
5265 If no window with such name is found, wx.FindWindowByLabel is called.
</docstring> 
5267         <param name=
"name" type=
"String" default=
""/> 
5268         <param name=
"parent" type=
"Window" default=
"NULL"/> 
5271     <method name=
"FindWindowByLabel" oldname=
"wxFindWindowByLabel" type=
"Window" overloaded=
"no"> 
5272       <autodoc>FindWindowByLabel(String label, Window parent=None) -
> Window
</autodoc> 
5273       <docstring>Find a window by its label. Depending on the type of window, the label
 
5274 may be a window title or panel item label. If parent is None, the
 
5275 search will start from all top-level frames and dialog boxes; if
 
5276 non-None, the search will be limited to the given window
 
5277 hierarchy. The search is recursive in both cases.
</docstring> 
5279         <param name=
"label" type=
"String" default=
""/> 
5280         <param name=
"parent" type=
"Window" default=
"NULL"/> 
5283     <method name=
"Window_FromHWND" oldname=
"wxWindow_FromHWND" type=
"Window" overloaded=
"no"> 
5284       <autodoc>Window_FromHWND(Window parent, unsigned long _hWnd) -
> Window
</autodoc> 
5286         <param name=
"parent" type=
"Window" default=
""/> 
5287         <param name=
"_hWnd" type=
"unsigned long" default=
""/> 
5291 #---------------------------------------------------------------------------
 
5293     <class name=
"Validator" oldname=
"wxValidator" module=
"core"> 
5294       <baseclass name=
"EvtHandler"/> 
5295       <constructor name=
"Validator" overloaded=
"no"> 
5296         <autodoc>__init__() -
> Validator
</autodoc> 
5298       <method name=
"Clone" type=
"Validator" overloaded=
"no"> 
5299         <autodoc>Clone() -
> Validator
</autodoc> 
5301       <method name=
"Validate" type=
"bool" overloaded=
"no"> 
5302         <autodoc>Validate(Window parent) -
> bool
</autodoc> 
5304           <param name=
"parent" type=
"Window" default=
""/> 
5307       <method name=
"TransferToWindow" type=
"bool" overloaded=
"no"> 
5308         <autodoc>TransferToWindow() -
> bool
</autodoc> 
5310       <method name=
"TransferFromWindow" type=
"bool" overloaded=
"no"> 
5311         <autodoc>TransferFromWindow() -
> bool
</autodoc> 
5313       <method name=
"GetWindow" type=
"Window" overloaded=
"no"> 
5314         <autodoc>GetWindow() -
> Window
</autodoc> 
5316       <method name=
"SetWindow" type=
"" overloaded=
"no"> 
5317         <autodoc>SetWindow(Window window)
</autodoc> 
5319           <param name=
"window" type=
"Window" default=
""/> 
5322       <staticmethod name=
"IsSilent" type=
"bool" overloaded=
"no"> 
5323         <autodoc>IsSilent() -
> bool
</autodoc> 
5325       <staticmethod name=
"SetBellOnError" type=
"" overloaded=
"no"> 
5326         <autodoc>SetBellOnError(int doIt=True)
</autodoc> 
5328           <param name=
"doIt" type=
"int" default=
"True"/> 
5332     <class name=
"PyValidator" oldname=
"wxPyValidator" module=
"core"> 
5333       <baseclass name=
"Validator"/> 
5334       <constructor name=
"PyValidator" overloaded=
"no"> 
5335         <autodoc>__init__() -
> PyValidator
</autodoc> 
5337       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
5338         <autodoc>_setCallbackInfo(PyObject self, PyObject _class, int incref=True)
</autodoc> 
5340           <param name=
"self" type=
"PyObject" default=
""/> 
5341           <param name=
"_class" type=
"PyObject" default=
""/> 
5342           <param name=
"incref" type=
"int" default=
"True"/> 
5347 #---------------------------------------------------------------------------
 
5349     <class name=
"Menu" oldname=
"wxMenu" module=
"core"> 
5350       <baseclass name=
"EvtHandler"/> 
5351       <constructor name=
"Menu" overloaded=
"no"> 
5352         <autodoc>__init__(String title=EmptyString, long style=
0) -
> Menu
</autodoc> 
5354           <param name=
"title" type=
"String" default=
"wxPyEmptyString"/> 
5355           <param name=
"style" type=
"long" default=
"0"/> 
5358       <method name=
"Append" type=
"wxMenuItem" overloaded=
"no"> 
5359         <autodoc>Append(int id, String text, String help=EmptyString, int kind=ITEM_NORMAL) -
> MenuItem
</autodoc> 
5361           <param name=
"id" type=
"int" default=
""/> 
5362           <param name=
"text" type=
"String" default=
""/> 
5363           <param name=
"help" type=
"String" default=
"wxPyEmptyString"/> 
5364           <param name=
"kind" type=
"wxItemKind" default=
"wxITEM_NORMAL"/> 
5367       <method name=
"AppendSeparator" type=
"wxMenuItem" overloaded=
"no"> 
5368         <autodoc>AppendSeparator() -
> MenuItem
</autodoc> 
5370       <method name=
"AppendCheckItem" type=
"wxMenuItem" overloaded=
"no"> 
5371         <autodoc>AppendCheckItem(int id, String text, String help=EmptyString) -
> MenuItem
</autodoc> 
5373           <param name=
"id" type=
"int" default=
""/> 
5374           <param name=
"text" type=
"String" default=
""/> 
5375           <param name=
"help" type=
"String" default=
"wxPyEmptyString"/> 
5378       <method name=
"AppendRadioItem" type=
"wxMenuItem" overloaded=
"no"> 
5379         <autodoc>AppendRadioItem(int id, String text, String help=EmptyString) -
> MenuItem
</autodoc> 
5381           <param name=
"id" type=
"int" default=
""/> 
5382           <param name=
"text" type=
"String" default=
""/> 
5383           <param name=
"help" type=
"String" default=
"wxPyEmptyString"/> 
5386       <method name=
"AppendMenu" type=
"wxMenuItem" overloaded=
"no"> 
5387         <autodoc>AppendMenu(int id, String text, Menu submenu, String help=EmptyString) -
> MenuItem
</autodoc> 
5389           <param name=
"id" type=
"int" default=
""/> 
5390           <param name=
"text" type=
"String" default=
""/> 
5391           <param name=
"submenu" type=
"Menu" default=
""/> 
5392           <param name=
"help" type=
"String" default=
"wxPyEmptyString"/> 
5395       <method name=
"AppendItem" type=
"wxMenuItem" overloaded=
"no"> 
5396         <autodoc>AppendItem(MenuItem item) -
> MenuItem
</autodoc> 
5398           <param name=
"item" type=
"wxMenuItem" default=
""/> 
5401       <method name=
"Break" type=
"" overloaded=
"no"> 
5402         <autodoc>Break()
</autodoc> 
5404       <method name=
"InsertItem" type=
"wxMenuItem" overloaded=
"no"> 
5405         <autodoc>InsertItem(size_t pos, MenuItem item) -
> MenuItem
</autodoc> 
5407           <param name=
"pos" type=
"size_t" default=
""/> 
5408           <param name=
"item" type=
"wxMenuItem" default=
""/> 
5411       <method name=
"Insert" type=
"wxMenuItem" overloaded=
"no"> 
5412         <autodoc>Insert(size_t pos, int id, String text, String help=EmptyString, 
 
5413     int kind=ITEM_NORMAL) -
> MenuItem
</autodoc> 
5415           <param name=
"pos" type=
"size_t" default=
""/> 
5416           <param name=
"id" type=
"int" default=
""/> 
5417           <param name=
"text" type=
"String" default=
""/> 
5418           <param name=
"help" type=
"String" default=
"wxPyEmptyString"/> 
5419           <param name=
"kind" type=
"wxItemKind" default=
"wxITEM_NORMAL"/> 
5422       <method name=
"InsertSeparator" type=
"wxMenuItem" overloaded=
"no"> 
5423         <autodoc>InsertSeparator(size_t pos) -
> MenuItem
</autodoc> 
5425           <param name=
"pos" type=
"size_t" default=
""/> 
5428       <method name=
"InsertCheckItem" type=
"wxMenuItem" overloaded=
"no"> 
5429         <autodoc>InsertCheckItem(size_t pos, int id, String text, String help=EmptyString) -
> MenuItem
</autodoc> 
5431           <param name=
"pos" type=
"size_t" default=
""/> 
5432           <param name=
"id" type=
"int" default=
""/> 
5433           <param name=
"text" type=
"String" default=
""/> 
5434           <param name=
"help" type=
"String" default=
"wxPyEmptyString"/> 
5437       <method name=
"InsertRadioItem" type=
"wxMenuItem" overloaded=
"no"> 
5438         <autodoc>InsertRadioItem(size_t pos, int id, String text, String help=EmptyString) -
> MenuItem
</autodoc> 
5440           <param name=
"pos" type=
"size_t" default=
""/> 
5441           <param name=
"id" type=
"int" default=
""/> 
5442           <param name=
"text" type=
"String" default=
""/> 
5443           <param name=
"help" type=
"String" default=
"wxPyEmptyString"/> 
5446       <method name=
"InsertMenu" type=
"wxMenuItem" overloaded=
"no"> 
5447         <autodoc>InsertMenu(size_t pos, int id, String text, Menu submenu, String help=EmptyString) -
> MenuItem
</autodoc> 
5449           <param name=
"pos" type=
"size_t" default=
""/> 
5450           <param name=
"id" type=
"int" default=
""/> 
5451           <param name=
"text" type=
"String" default=
""/> 
5452           <param name=
"submenu" type=
"Menu" default=
""/> 
5453           <param name=
"help" type=
"String" default=
"wxPyEmptyString"/> 
5456       <method name=
"PrependItem" type=
"wxMenuItem" overloaded=
"no"> 
5457         <autodoc>PrependItem(MenuItem item) -
> MenuItem
</autodoc> 
5459           <param name=
"item" type=
"wxMenuItem" default=
""/> 
5462       <method name=
"Prepend" type=
"wxMenuItem" overloaded=
"no"> 
5463         <autodoc>Prepend(int id, String text, String help=EmptyString, int kind=ITEM_NORMAL) -
> MenuItem
</autodoc> 
5465           <param name=
"id" type=
"int" default=
""/> 
5466           <param name=
"text" type=
"String" default=
""/> 
5467           <param name=
"help" type=
"String" default=
"wxPyEmptyString"/> 
5468           <param name=
"kind" type=
"wxItemKind" default=
"wxITEM_NORMAL"/> 
5471       <method name=
"PrependSeparator" type=
"wxMenuItem" overloaded=
"no"> 
5472         <autodoc>PrependSeparator() -
> MenuItem
</autodoc> 
5474       <method name=
"PrependCheckItem" type=
"wxMenuItem" overloaded=
"no"> 
5475         <autodoc>PrependCheckItem(int id, String text, String help=EmptyString) -
> MenuItem
</autodoc> 
5477           <param name=
"id" type=
"int" default=
""/> 
5478           <param name=
"text" type=
"String" default=
""/> 
5479           <param name=
"help" type=
"String" default=
"wxPyEmptyString"/> 
5482       <method name=
"PrependRadioItem" type=
"wxMenuItem" overloaded=
"no"> 
5483         <autodoc>PrependRadioItem(int id, String text, String help=EmptyString) -
> MenuItem
</autodoc> 
5485           <param name=
"id" type=
"int" default=
""/> 
5486           <param name=
"text" type=
"String" default=
""/> 
5487           <param name=
"help" type=
"String" default=
"wxPyEmptyString"/> 
5490       <method name=
"PrependMenu" type=
"wxMenuItem" overloaded=
"no"> 
5491         <autodoc>PrependMenu(int id, String text, Menu submenu, String help=EmptyString) -
> MenuItem
</autodoc> 
5493           <param name=
"id" type=
"int" default=
""/> 
5494           <param name=
"text" type=
"String" default=
""/> 
5495           <param name=
"submenu" type=
"Menu" default=
""/> 
5496           <param name=
"help" type=
"String" default=
"wxPyEmptyString"/> 
5499       <method name=
"Remove" type=
"wxMenuItem" overloaded=
"no"> 
5500         <autodoc>Remove(int id) -
> MenuItem
</autodoc> 
5502           <param name=
"id" type=
"int" default=
""/> 
5505       <method name=
"RemoveItem" type=
"wxMenuItem" overloaded=
"no"> 
5506         <autodoc>RemoveItem(MenuItem item) -
> MenuItem
</autodoc> 
5508           <param name=
"item" type=
"wxMenuItem" default=
""/> 
5511       <method name=
"Delete" type=
"bool" overloaded=
"no"> 
5512         <autodoc>Delete(int id) -
> bool
</autodoc> 
5514           <param name=
"id" type=
"int" default=
""/> 
5517       <method name=
"DeleteItem" type=
"bool" overloaded=
"no"> 
5518         <autodoc>DeleteItem(MenuItem item) -
> bool
</autodoc> 
5520           <param name=
"item" type=
"wxMenuItem" default=
""/> 
5523       <method name=
"Destroy" type=
"" overloaded=
"no"> 
5524         <autodoc>Destroy()
</autodoc> 
5525         <docstring>Deletes the C++ object this Python object is a proxy for.
</docstring> 
5527       <method name=
"DestroyId" type=
"bool" overloaded=
"no"> 
5528         <autodoc>DestroyId(int id) -
> bool
</autodoc> 
5529         <docstring>Deletes the C++ object this Python object is a proxy for.
</docstring> 
5531           <param name=
"id" type=
"int" default=
""/> 
5534       <method name=
"DestroyItem" type=
"bool" overloaded=
"no"> 
5535         <autodoc>DestroyItem(MenuItem item) -
> bool
</autodoc> 
5536         <docstring>Deletes the C++ object this Python object is a proxy for.
</docstring> 
5538           <param name=
"item" type=
"wxMenuItem" default=
""/> 
5541       <method name=
"GetMenuItemCount" type=
"size_t" overloaded=
"no"> 
5542         <autodoc>GetMenuItemCount() -
> size_t
</autodoc> 
5544       <method name=
"GetMenuItems" type=
"PyObject" overloaded=
"no"> 
5545         <autodoc>GetMenuItems() -
> PyObject
</autodoc> 
5547       <method name=
"FindItem" type=
"int" overloaded=
"no"> 
5548         <autodoc>FindItem(String item) -
> int
</autodoc> 
5550           <param name=
"item" type=
"String" default=
""/> 
5553       <method name=
"FindItemById" type=
"wxMenuItem" overloaded=
"no"> 
5554         <autodoc>FindItemById(int id) -
> MenuItem
</autodoc> 
5556           <param name=
"id" type=
"int" default=
""/> 
5559       <method name=
"FindItemByPosition" type=
"wxMenuItem" overloaded=
"no"> 
5560         <autodoc>FindItemByPosition(size_t position) -
> MenuItem
</autodoc> 
5562           <param name=
"position" type=
"size_t" default=
""/> 
5565       <method name=
"Enable" type=
"" overloaded=
"no"> 
5566         <autodoc>Enable(int id, bool enable)
</autodoc> 
5568           <param name=
"id" type=
"int" default=
""/> 
5569           <param name=
"enable" type=
"bool" default=
""/> 
5572       <method name=
"IsEnabled" type=
"bool" overloaded=
"no"> 
5573         <autodoc>IsEnabled(int id) -
> bool
</autodoc> 
5575           <param name=
"id" type=
"int" default=
""/> 
5578       <method name=
"Check" type=
"" overloaded=
"no"> 
5579         <autodoc>Check(int id, bool check)
</autodoc> 
5581           <param name=
"id" type=
"int" default=
""/> 
5582           <param name=
"check" type=
"bool" default=
""/> 
5585       <method name=
"IsChecked" type=
"bool" overloaded=
"no"> 
5586         <autodoc>IsChecked(int id) -
> bool
</autodoc> 
5588           <param name=
"id" type=
"int" default=
""/> 
5591       <method name=
"SetLabel" type=
"" overloaded=
"no"> 
5592         <autodoc>SetLabel(int id, String label)
</autodoc> 
5594           <param name=
"id" type=
"int" default=
""/> 
5595           <param name=
"label" type=
"String" default=
""/> 
5598       <method name=
"GetLabel" type=
"String" overloaded=
"no"> 
5599         <autodoc>GetLabel(int id) -
> String
</autodoc> 
5601           <param name=
"id" type=
"int" default=
""/> 
5604       <method name=
"SetHelpString" type=
"" overloaded=
"no"> 
5605         <autodoc>SetHelpString(int id, String helpString)
</autodoc> 
5607           <param name=
"id" type=
"int" default=
""/> 
5608           <param name=
"helpString" type=
"String" default=
""/> 
5611       <method name=
"GetHelpString" type=
"String" overloaded=
"no"> 
5612         <autodoc>GetHelpString(int id) -
> String
</autodoc> 
5614           <param name=
"id" type=
"int" default=
""/> 
5617       <method name=
"SetTitle" type=
"" overloaded=
"no"> 
5618         <autodoc>SetTitle(String title)
</autodoc> 
5620           <param name=
"title" type=
"String" default=
""/> 
5623       <method name=
"GetTitle" type=
"String" overloaded=
"no"> 
5624         <autodoc>GetTitle() -
> String
</autodoc> 
5626       <method name=
"SetEventHandler" type=
"" overloaded=
"no"> 
5627         <autodoc>SetEventHandler(EvtHandler handler)
</autodoc> 
5629           <param name=
"handler" type=
"EvtHandler" default=
""/> 
5632       <method name=
"GetEventHandler" type=
"EvtHandler" overloaded=
"no"> 
5633         <autodoc>GetEventHandler() -
> EvtHandler
</autodoc> 
5635       <method name=
"SetInvokingWindow" type=
"" overloaded=
"no"> 
5636         <autodoc>SetInvokingWindow(Window win)
</autodoc> 
5638           <param name=
"win" type=
"Window" default=
""/> 
5641       <method name=
"GetInvokingWindow" type=
"Window" overloaded=
"no"> 
5642         <autodoc>GetInvokingWindow() -
> Window
</autodoc> 
5644       <method name=
"GetStyle" type=
"long" overloaded=
"no"> 
5645         <autodoc>GetStyle() -
> long
</autodoc> 
5647       <method name=
"UpdateUI" type=
"" overloaded=
"no"> 
5648         <autodoc>UpdateUI(EvtHandler source=None)
</autodoc> 
5650           <param name=
"source" type=
"EvtHandler" default=
"NULL"/> 
5653       <method name=
"GetMenuBar" type=
"wxMenuBar" overloaded=
"no"> 
5654         <autodoc>GetMenuBar() -
> MenuBar
</autodoc> 
5656       <method name=
"Attach" type=
"" overloaded=
"no"> 
5657         <autodoc>Attach(wxMenuBarBase menubar)
</autodoc> 
5659           <param name=
"menubar" type=
"wxMenuBarBase" default=
""/> 
5662       <method name=
"Detach" type=
"" overloaded=
"no"> 
5663         <autodoc>Detach()
</autodoc> 
5665       <method name=
"IsAttached" type=
"bool" overloaded=
"no"> 
5666         <autodoc>IsAttached() -
> bool
</autodoc> 
5668       <method name=
"SetParent" type=
"" overloaded=
"no"> 
5669         <autodoc>SetParent(Menu parent)
</autodoc> 
5671           <param name=
"parent" type=
"Menu" default=
""/> 
5674       <method name=
"GetParent" type=
"Menu" overloaded=
"no"> 
5675         <autodoc>GetParent() -
> Menu
</autodoc> 
5679 #---------------------------------------------------------------------------
 
5681     <class name=
"MenuBar" oldname=
"wxMenuBar" module=
"core"> 
5682       <baseclass name=
"Window"/> 
5683       <constructor name=
"MenuBar" overloaded=
"no"> 
5684         <autodoc>__init__(long style=
0) -
> MenuBar
</autodoc> 
5686           <param name=
"style" type=
"long" default=
"0"/> 
5689       <method name=
"Append" type=
"bool" overloaded=
"no"> 
5690         <autodoc>Append(Menu menu, String title) -
> bool
</autodoc> 
5692           <param name=
"menu" type=
"Menu" default=
""/> 
5693           <param name=
"title" type=
"String" default=
""/> 
5696       <method name=
"Insert" type=
"bool" overloaded=
"no"> 
5697         <autodoc>Insert(size_t pos, Menu menu, String title) -
> bool
</autodoc> 
5699           <param name=
"pos" type=
"size_t" default=
""/> 
5700           <param name=
"menu" type=
"Menu" default=
""/> 
5701           <param name=
"title" type=
"String" default=
""/> 
5704       <method name=
"GetMenuCount" type=
"size_t" overloaded=
"no"> 
5705         <autodoc>GetMenuCount() -
> size_t
</autodoc> 
5707       <method name=
"GetMenu" type=
"Menu" overloaded=
"no"> 
5708         <autodoc>GetMenu(size_t pos) -
> Menu
</autodoc> 
5710           <param name=
"pos" type=
"size_t" default=
""/> 
5713       <method name=
"Replace" type=
"Menu" overloaded=
"no"> 
5714         <autodoc>Replace(size_t pos, Menu menu, String title) -
> Menu
</autodoc> 
5716           <param name=
"pos" type=
"size_t" default=
""/> 
5717           <param name=
"menu" type=
"Menu" default=
""/> 
5718           <param name=
"title" type=
"String" default=
""/> 
5721       <method name=
"Remove" type=
"Menu" overloaded=
"no"> 
5722         <autodoc>Remove(size_t pos) -
> Menu
</autodoc> 
5724           <param name=
"pos" type=
"size_t" default=
""/> 
5727       <method name=
"EnableTop" type=
"" overloaded=
"no"> 
5728         <autodoc>EnableTop(size_t pos, bool enable)
</autodoc> 
5730           <param name=
"pos" type=
"size_t" default=
""/> 
5731           <param name=
"enable" type=
"bool" default=
""/> 
5734       <method name=
"IsEnabledTop" type=
"bool" overloaded=
"no"> 
5735         <autodoc>IsEnabledTop(size_t pos) -
> bool
</autodoc> 
5737           <param name=
"pos" type=
"size_t" default=
""/> 
5740       <method name=
"SetLabelTop" type=
"" overloaded=
"no"> 
5741         <autodoc>SetLabelTop(size_t pos, String label)
</autodoc> 
5743           <param name=
"pos" type=
"size_t" default=
""/> 
5744           <param name=
"label" type=
"String" default=
""/> 
5747       <method name=
"GetLabelTop" type=
"String" overloaded=
"no"> 
5748         <autodoc>GetLabelTop(size_t pos) -
> String
</autodoc> 
5750           <param name=
"pos" type=
"size_t" default=
""/> 
5753       <method name=
"FindMenuItem" type=
"int" overloaded=
"no"> 
5754         <autodoc>FindMenuItem(String menu, String item) -
> int
</autodoc> 
5756           <param name=
"menu" type=
"String" default=
""/> 
5757           <param name=
"item" type=
"String" default=
""/> 
5760       <method name=
"FindItemById" type=
"wxMenuItem" overloaded=
"no"> 
5761         <autodoc>FindItemById(int id) -
> MenuItem
</autodoc> 
5763           <param name=
"id" type=
"int" default=
""/> 
5766       <method name=
"FindMenu" type=
"int" overloaded=
"no"> 
5767         <autodoc>FindMenu(String title) -
> int
</autodoc> 
5769           <param name=
"title" type=
"String" default=
""/> 
5772       <method name=
"Enable" type=
"" overloaded=
"no"> 
5773         <autodoc>Enable(int id, bool enable)
</autodoc> 
5775           <param name=
"id" type=
"int" default=
""/> 
5776           <param name=
"enable" type=
"bool" default=
""/> 
5779       <method name=
"Check" type=
"" overloaded=
"no"> 
5780         <autodoc>Check(int id, bool check)
</autodoc> 
5782           <param name=
"id" type=
"int" default=
""/> 
5783           <param name=
"check" type=
"bool" default=
""/> 
5786       <method name=
"IsChecked" type=
"bool" overloaded=
"no"> 
5787         <autodoc>IsChecked(int id) -
> bool
</autodoc> 
5789           <param name=
"id" type=
"int" default=
""/> 
5792       <method name=
"IsEnabled" type=
"bool" overloaded=
"no"> 
5793         <autodoc>IsEnabled(int id) -
> bool
</autodoc> 
5795           <param name=
"id" type=
"int" default=
""/> 
5798       <method name=
"SetLabel" type=
"" overloaded=
"no"> 
5799         <autodoc>SetLabel(int id, String label)
</autodoc> 
5801           <param name=
"id" type=
"int" default=
""/> 
5802           <param name=
"label" type=
"String" default=
""/> 
5805       <method name=
"GetLabel" type=
"String" overloaded=
"no"> 
5806         <autodoc>GetLabel(int id) -
> String
</autodoc> 
5808           <param name=
"id" type=
"int" default=
""/> 
5811       <method name=
"SetHelpString" type=
"" overloaded=
"no"> 
5812         <autodoc>SetHelpString(int id, String helpString)
</autodoc> 
5814           <param name=
"id" type=
"int" default=
""/> 
5815           <param name=
"helpString" type=
"String" default=
""/> 
5818       <method name=
"GetHelpString" type=
"String" overloaded=
"no"> 
5819         <autodoc>GetHelpString(int id) -
> String
</autodoc> 
5821           <param name=
"id" type=
"int" default=
""/> 
5824       <method name=
"GetFrame" type=
"wxFrame" overloaded=
"no"> 
5825         <autodoc>GetFrame() -
> wxFrame
</autodoc> 
5827       <method name=
"IsAttached" type=
"bool" overloaded=
"no"> 
5828         <autodoc>IsAttached() -
> bool
</autodoc> 
5830       <method name=
"Attach" type=
"" overloaded=
"no"> 
5831         <autodoc>Attach(wxFrame frame)
</autodoc> 
5833           <param name=
"frame" type=
"wxFrame" default=
""/> 
5836       <method name=
"Detach" type=
"" overloaded=
"no"> 
5837         <autodoc>Detach()
</autodoc> 
5841 #---------------------------------------------------------------------------
 
5843     <class name=
"MenuItem" oldname=
"wxMenuItem" module=
"core"> 
5844       <baseclass name=
"Object"/> 
5845       <constructor name=
"MenuItem" overloaded=
"no"> 
5846         <autodoc>__init__(Menu parentMenu=None, int id=ID_SEPARATOR, String text=EmptyString, 
 
5847     String help=EmptyString, int kind=ITEM_NORMAL, 
 
5848     Menu subMenu=None) -
> MenuItem
</autodoc> 
5850           <param name=
"parentMenu" type=
"Menu" default=
"NULL"/> 
5851           <param name=
"id" type=
"int" default=
"wxID_SEPARATOR"/> 
5852           <param name=
"text" type=
"String" default=
"wxPyEmptyString"/> 
5853           <param name=
"help" type=
"String" default=
"wxPyEmptyString"/> 
5854           <param name=
"kind" type=
"wxItemKind" default=
"wxITEM_NORMAL"/> 
5855           <param name=
"subMenu" type=
"Menu" default=
"NULL"/> 
5858       <method name=
"GetMenu" type=
"Menu" overloaded=
"no"> 
5859         <autodoc>GetMenu() -
> Menu
</autodoc> 
5861       <method name=
"SetMenu" type=
"" overloaded=
"no"> 
5862         <autodoc>SetMenu(Menu menu)
</autodoc> 
5864           <param name=
"menu" type=
"Menu" default=
""/> 
5867       <method name=
"SetId" type=
"" overloaded=
"no"> 
5868         <autodoc>SetId(int id)
</autodoc> 
5870           <param name=
"id" type=
"int" default=
""/> 
5873       <method name=
"GetId" type=
"int" overloaded=
"no"> 
5874         <autodoc>GetId() -
> int
</autodoc> 
5876       <method name=
"IsSeparator" type=
"bool" overloaded=
"no"> 
5877         <autodoc>IsSeparator() -
> bool
</autodoc> 
5879       <method name=
"SetText" type=
"" overloaded=
"no"> 
5880         <autodoc>SetText(String str)
</autodoc> 
5882           <param name=
"str" type=
"String" default=
""/> 
5885       <method name=
"GetLabel" type=
"String" overloaded=
"no"> 
5886         <autodoc>GetLabel() -
> String
</autodoc> 
5888       <method name=
"GetText" type=
"String" overloaded=
"no"> 
5889         <autodoc>GetText() -
> String
</autodoc> 
5891       <staticmethod name=
"GetLabelFromText" type=
"String" overloaded=
"no"> 
5892         <autodoc>GetLabelFromText(String text) -
> String
</autodoc> 
5894           <param name=
"text" type=
"String" default=
""/> 
5897       <method name=
"GetKind" type=
"wxItemKind" overloaded=
"no"> 
5898         <autodoc>GetKind() -
> int
</autodoc> 
5900       <method name=
"SetCheckable" type=
"" overloaded=
"no"> 
5901         <autodoc>SetCheckable(bool checkable)
</autodoc> 
5903           <param name=
"checkable" type=
"bool" default=
""/> 
5906       <method name=
"IsCheckable" type=
"bool" overloaded=
"no"> 
5907         <autodoc>IsCheckable() -
> bool
</autodoc> 
5909       <method name=
"IsSubMenu" type=
"bool" overloaded=
"no"> 
5910         <autodoc>IsSubMenu() -
> bool
</autodoc> 
5912       <method name=
"SetSubMenu" type=
"" overloaded=
"no"> 
5913         <autodoc>SetSubMenu(Menu menu)
</autodoc> 
5915           <param name=
"menu" type=
"Menu" default=
""/> 
5918       <method name=
"GetSubMenu" type=
"Menu" overloaded=
"no"> 
5919         <autodoc>GetSubMenu() -
> Menu
</autodoc> 
5921       <method name=
"Enable" type=
"" overloaded=
"no"> 
5922         <autodoc>Enable(bool enable=True)
</autodoc> 
5924           <param name=
"enable" type=
"bool" default=
"True"/> 
5927       <method name=
"IsEnabled" type=
"bool" overloaded=
"no"> 
5928         <autodoc>IsEnabled() -
> bool
</autodoc> 
5930       <method name=
"Check" type=
"" overloaded=
"no"> 
5931         <autodoc>Check(bool check=True)
</autodoc> 
5933           <param name=
"check" type=
"bool" default=
"True"/> 
5936       <method name=
"IsChecked" type=
"bool" overloaded=
"no"> 
5937         <autodoc>IsChecked() -
> bool
</autodoc> 
5939       <method name=
"Toggle" type=
"" overloaded=
"no"> 
5940         <autodoc>Toggle()
</autodoc> 
5942       <method name=
"SetHelp" type=
"" overloaded=
"no"> 
5943         <autodoc>SetHelp(String str)
</autodoc> 
5945           <param name=
"str" type=
"String" default=
""/> 
5948       <method name=
"GetHelp" type=
"String" overloaded=
"no"> 
5949         <autodoc>GetHelp() -
> String
</autodoc> 
5951       <method name=
"GetAccel" type=
"AcceleratorEntry" overloaded=
"no"> 
5952         <autodoc>GetAccel() -
> AcceleratorEntry
</autodoc> 
5954       <method name=
"SetAccel" type=
"" overloaded=
"no"> 
5955         <autodoc>SetAccel(AcceleratorEntry accel)
</autodoc> 
5957           <param name=
"accel" type=
"AcceleratorEntry" default=
""/> 
5960       <staticmethod name=
"GetDefaultMarginWidth" type=
"int" overloaded=
"no"> 
5961         <autodoc>GetDefaultMarginWidth() -
> int
</autodoc> 
5963       <method name=
"SetBitmap" type=
"" overloaded=
"no"> 
5964         <autodoc>SetBitmap(Bitmap bitmap)
</autodoc> 
5966           <param name=
"bitmap" type=
"wxBitmap" default=
""/> 
5969       <method name=
"GetBitmap" type=
"wxBitmap" overloaded=
"no"> 
5970         <autodoc>GetBitmap() -
> Bitmap
</autodoc> 
5974 #---------------------------------------------------------------------------
 
5976     <class name=
"Control" oldname=
"wxControl" module=
"core"> 
5977       <docstring>This is the base class for a control or 'widget'.
 
5979 A control is generally a small window which processes user input and/or
 
5980 displays one or more item of data.
</docstring> 
5981       <baseclass name=
"Window"/> 
5982       <constructor name=
"Control" overloaded=
"no"> 
5983         <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
5984     long style=
0, Validator validator=DefaultValidator, 
 
5985     String name=ControlNameStr) -
> Control
</autodoc> 
5986         <docstring>Create a Control.  Normally you should only call this from a
 
5987 subclass' __init__ as a plain old wx.Control is not very useful.
</docstring> 
5989           <param name=
"parent" type=
"Window" default=
""/> 
5990           <param name=
"id" type=
"int" default=
""/> 
5991           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
5992           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
5993           <param name=
"style" type=
"long" default=
"0"/> 
5994           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
5995           <param name=
"name" type=
"String" default=
"wxPyControlNameStr"/> 
5998       <constructor name=
"PreControl" overloaded=
"no"> 
5999         <autodoc>PreControl() -
> Control
</autodoc> 
6000         <docstring>Precreate a Control control for 
2-phase creation
</docstring> 
6002       <method name=
"Create" type=
"bool" overloaded=
"no"> 
6003         <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
6004     long style=
0, Validator validator=DefaultValidator, 
 
6005     String name=ControlNameStr) -
> bool
</autodoc> 
6006         <docstring>Do the 
2nd phase and create the GUI control.
</docstring> 
6008           <param name=
"parent" type=
"Window" default=
""/> 
6009           <param name=
"id" type=
"int" default=
""/> 
6010           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
6011           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
6012           <param name=
"style" type=
"long" default=
"0"/> 
6013           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
6014           <param name=
"name" type=
"String" default=
"wxPyControlNameStr"/> 
6017       <method name=
"Command" type=
"" overloaded=
"no"> 
6018         <autodoc>Command(CommandEvent event)
</autodoc> 
6019         <docstring>Simulates the effect of the user issuing a command to the
 
6020 item. See wxCommandEvent.
</docstring> 
6022           <param name=
"event" type=
"CommandEvent" default=
""/> 
6025       <method name=
"GetLabel" type=
"String" overloaded=
"no"> 
6026         <autodoc>GetLabel() -
> String
</autodoc> 
6027         <docstring>Return a control's text.
</docstring> 
6029       <method name=
"SetLabel" type=
"" overloaded=
"no"> 
6030         <autodoc>SetLabel(String label)
</autodoc> 
6031         <docstring>Sets the item's text.
</docstring> 
6033           <param name=
"label" type=
"String" default=
""/> 
6038 #---------------------------------------------------------------------------
 
6040     <class name=
"ItemContainer" oldname=
"wxItemContainer" module=
"core"> 
6041       <docstring>wx.ItemContainer defines an interface which is implemented by all
 
6042 controls which have string subitems, each of which may be
 
6043 selected, such as wx.ListBox, wx.CheckListBox, wx.Choice and
 
6044 wx.ComboBox (which implements an extended interface deriving from
 
6047 It defines the methods for accessing the control's items and
 
6048 although each of the derived classes implements them differently,
 
6049 they still all conform to the same interface.
 
6051 The items in a wx.ItemContainer have (non empty) string labels
 
6052 and, optionally, client data associated with them.
 
6054       <method name=
"Append" type=
"int" overloaded=
"no"> 
6055         <autodoc>Append(String item, PyObject clientData=None) -
> int
</autodoc> 
6056         <docstring>Adds the item to the control, associating the given data with the
 
6057 item if not None.  The return value is the index of the newly
 
6058 added item which may be different from the last one if the
 
6059 control is sorted (e.g. has wx.LB_SORT or wx.CB_SORT style).
</docstring> 
6061           <param name=
"item" type=
"String" default=
""/> 
6062           <param name=
"clientData" type=
"PyObject" default=
"NULL"/> 
6065       <method name=
"AppendItems" type=
"" overloaded=
"no"> 
6066         <autodoc>AppendItems(wxArrayString strings)
</autodoc> 
6067         <docstring>Apend several items at once to the control.  Notice that calling
 
6068 this method may be much faster than appending the items one by
 
6069 one if you need to add a lot of items.
</docstring> 
6071           <param name=
"strings" type=
"wxArrayString" default=
""/> 
6074       <method name=
"Insert" type=
"int" overloaded=
"no"> 
6075         <autodoc>Insert(String item, int pos, PyObject clientData=None) -
> int
</autodoc> 
6076         <docstring>Insert an item into the control before the item at the pos index,
 
6077 optionally associating some data object with the item.
</docstring> 
6079           <param name=
"item" type=
"String" default=
""/> 
6080           <param name=
"pos" type=
"int" default=
""/> 
6081           <param name=
"clientData" type=
"PyObject" default=
"NULL"/> 
6084       <method name=
"Clear" type=
"" overloaded=
"no"> 
6085         <autodoc>Clear()
</autodoc> 
6086         <docstring>Removes all items from the control.
</docstring> 
6088       <method name=
"Delete" type=
"" overloaded=
"no"> 
6089         <autodoc>Delete(int n)
</autodoc> 
6090         <docstring>Deletes the item at the zero-based index 'n' from the control.
 
6091 Note that it is an error (signalled by a PyAssertionError
 
6092 exception if enabled) to remove an item with the index negative
 
6093 or greater or equal than the number of items in the control.
</docstring> 
6095           <param name=
"n" type=
"int" default=
""/> 
6098       <method name=
"GetCount" type=
"int" overloaded=
"no"> 
6099         <autodoc>GetCount() -
> int
</autodoc> 
6100         <docstring>Returns the number of items in the control.
</docstring> 
6102       <method name=
"IsEmpty" type=
"bool" overloaded=
"no"> 
6103         <autodoc>IsEmpty() -
> bool
</autodoc> 
6104         <docstring>Returns True if the control is empty or False if it has some items.
</docstring> 
6106       <method name=
"GetString" type=
"String" overloaded=
"no"> 
6107         <autodoc>GetString(int n) -
> String
</autodoc> 
6108         <docstring>Returns the label of the item with the given index.
</docstring> 
6110           <param name=
"n" type=
"int" default=
""/> 
6113       <method name=
"GetStrings" type=
"wxArrayString" overloaded=
"no"> 
6114         <autodoc>GetStrings() -
> wxArrayString
</autodoc> 
6116       <method name=
"SetString" type=
"" overloaded=
"no"> 
6117         <autodoc>SetString(int n, String s)
</autodoc> 
6118         <docstring>Sets the label for the given item.
</docstring> 
6120           <param name=
"n" type=
"int" default=
""/> 
6121           <param name=
"s" type=
"String" default=
""/> 
6124       <method name=
"FindString" type=
"int" overloaded=
"no"> 
6125         <autodoc>FindString(String s) -
> int
</autodoc> 
6126         <docstring>Finds an item whose label matches the given string.  Returns the
 
6127 zero-based position of the item, or wx.NOT_FOUND if the string
 
6128 was not found.
</docstring> 
6130           <param name=
"s" type=
"String" default=
""/> 
6133       <method name=
"Select" type=
"" overloaded=
"no"> 
6134         <autodoc>Select(int n)
</autodoc> 
6135         <docstring>Sets the item at index 'n' to be the selected item.
</docstring> 
6137           <param name=
"n" type=
"int" default=
""/> 
6140       <method name=
"GetSelection" type=
"int" overloaded=
"no"> 
6141         <autodoc>GetSelection() -
> int
</autodoc> 
6142         <docstring>Returns the index of the selected item or wx.NOT_FOUND if no item is selected.
</docstring> 
6144       <method name=
"GetStringSelection" type=
"String" overloaded=
"no"> 
6145         <autodoc>GetStringSelection() -
> String
</autodoc> 
6146         <docstring>Returns the label of the selected item or an empty string if no item is selected.
</docstring> 
6148       <method name=
"GetClientData" type=
"PyObject" overloaded=
"no"> 
6149         <autodoc>GetClientData(int n) -
> PyObject
</autodoc> 
6150         <docstring>Returns the client data associated with the given item, (if any.)
</docstring> 
6152           <param name=
"n" type=
"int" default=
""/> 
6155       <method name=
"SetClientData" type=
"" overloaded=
"no"> 
6156         <autodoc>SetClientData(int n, PyObject clientData)
</autodoc> 
6157         <docstring>Associate the given client data with the item at position n.
</docstring> 
6159           <param name=
"n" type=
"int" default=
""/> 
6160           <param name=
"clientData" type=
"PyObject" default=
""/> 
6165 #---------------------------------------------------------------------------
 
6167     <class name=
"ControlWithItems" oldname=
"wxControlWithItems" module=
"core"> 
6168       <docstring>wx.ControlWithItems combines the wx.ItemContainer class with the
 
6169 wx.Control class, and is used for the base class of various
 
6170 controls that have items.
</docstring> 
6171       <baseclass name=
"Control"/> 
6172       <baseclass name=
"ItemContainer"/> 
6175 #---------------------------------------------------------------------------
 
6177     <class name=
"SizerItem" oldname=
"wxSizerItem" module=
"core"> 
6178       <baseclass name=
"Object"/> 
6179       <constructor name=
"SizerItem" overloaded=
"no"> 
6180         <autodoc>__init__() -
> SizerItem
</autodoc> 
6182       <constructor name=
"SizerItemSpacer" overloaded=
"no"> 
6183         <autodoc>SizerItemSpacer(int width, int height, int proportion, int flag, int border, 
 
6184     Object userData) -
> SizerItem
</autodoc> 
6186           <param name=
"width" type=
"int" default=
""/> 
6187           <param name=
"height" type=
"int" default=
""/> 
6188           <param name=
"proportion" type=
"int" default=
""/> 
6189           <param name=
"flag" type=
"int" default=
""/> 
6190           <param name=
"border" type=
"int" default=
""/> 
6191           <param name=
"userData" type=
"Object" default=
""/> 
6194       <constructor name=
"SizerItemWindow" overloaded=
"no"> 
6195         <autodoc>SizerItemWindow(Window window, int proportion, int flag, int border, 
 
6196     Object userData) -
> SizerItem
</autodoc> 
6198           <param name=
"window" type=
"Window" default=
""/> 
6199           <param name=
"proportion" type=
"int" default=
""/> 
6200           <param name=
"flag" type=
"int" default=
""/> 
6201           <param name=
"border" type=
"int" default=
""/> 
6202           <param name=
"userData" type=
"Object" default=
""/> 
6205       <constructor name=
"SizerItemSizer" overloaded=
"no"> 
6206         <autodoc>SizerItemSizer(Sizer sizer, int proportion, int flag, int border, 
 
6207     Object userData) -
> SizerItem
</autodoc> 
6209           <param name=
"sizer" type=
"wxSizer" default=
""/> 
6210           <param name=
"proportion" type=
"int" default=
""/> 
6211           <param name=
"flag" type=
"int" default=
""/> 
6212           <param name=
"border" type=
"int" default=
""/> 
6213           <param name=
"userData" type=
"Object" default=
""/> 
6216       <method name=
"DeleteWindows" type=
"" overloaded=
"no"> 
6217         <autodoc>DeleteWindows()
</autodoc> 
6219       <method name=
"DetachSizer" type=
"" overloaded=
"no"> 
6220         <autodoc>DetachSizer()
</autodoc> 
6222       <method name=
"GetSize" type=
"Size" overloaded=
"no"> 
6223         <autodoc>GetSize() -
> Size
</autodoc> 
6225       <method name=
"CalcMin" type=
"Size" overloaded=
"no"> 
6226         <autodoc>CalcMin() -
> Size
</autodoc> 
6228       <method name=
"SetDimension" type=
"" overloaded=
"no"> 
6229         <autodoc>SetDimension(Point pos, Size size)
</autodoc> 
6231           <param name=
"pos" type=
"Point" default=
""/> 
6232           <param name=
"size" type=
"Size" default=
""/> 
6235       <method name=
"GetMinSize" type=
"Size" overloaded=
"no"> 
6236         <autodoc>GetMinSize() -
> Size
</autodoc> 
6238       <method name=
"SetInitSize" type=
"" overloaded=
"no"> 
6239         <autodoc>SetInitSize(int x, int y)
</autodoc> 
6241           <param name=
"x" type=
"int" default=
""/> 
6242           <param name=
"y" type=
"int" default=
""/> 
6245       <method name=
"SetRatioWH" type=
"" overloaded=
"no"> 
6246         <autodoc>SetRatioWH(int width, int height)
</autodoc> 
6248           <param name=
"width" type=
"int" default=
""/> 
6249           <param name=
"height" type=
"int" default=
""/> 
6252       <method name=
"SetRatioSize" type=
"" overloaded=
"no"> 
6253         <autodoc>SetRatioSize(Size size)
</autodoc> 
6255           <param name=
"size" type=
"Size" default=
""/> 
6258       <method name=
"SetRatio" type=
"" overloaded=
"no"> 
6259         <autodoc>SetRatio(float ratio)
</autodoc> 
6261           <param name=
"ratio" type=
"float" default=
""/> 
6264       <method name=
"GetRatio" type=
"float" overloaded=
"no"> 
6265         <autodoc>GetRatio() -
> float
</autodoc> 
6267       <method name=
"IsWindow" type=
"bool" overloaded=
"no"> 
6268         <autodoc>IsWindow() -
> bool
</autodoc> 
6270       <method name=
"IsSizer" type=
"bool" overloaded=
"no"> 
6271         <autodoc>IsSizer() -
> bool
</autodoc> 
6273       <method name=
"IsSpacer" type=
"bool" overloaded=
"no"> 
6274         <autodoc>IsSpacer() -
> bool
</autodoc> 
6276       <method name=
"SetProportion" type=
"" overloaded=
"no"> 
6277         <autodoc>SetProportion(int proportion)
</autodoc> 
6279           <param name=
"proportion" type=
"int" default=
""/> 
6282       <method name=
"GetProportion" type=
"int" overloaded=
"no"> 
6283         <autodoc>GetProportion() -
> int
</autodoc> 
6285       <method name=
"SetFlag" type=
"" overloaded=
"no"> 
6286         <autodoc>SetFlag(int flag)
</autodoc> 
6288           <param name=
"flag" type=
"int" default=
""/> 
6291       <method name=
"GetFlag" type=
"int" overloaded=
"no"> 
6292         <autodoc>GetFlag() -
> int
</autodoc> 
6294       <method name=
"SetBorder" type=
"" overloaded=
"no"> 
6295         <autodoc>SetBorder(int border)
</autodoc> 
6297           <param name=
"border" type=
"int" default=
""/> 
6300       <method name=
"GetBorder" type=
"int" overloaded=
"no"> 
6301         <autodoc>GetBorder() -
> int
</autodoc> 
6303       <method name=
"GetWindow" type=
"Window" overloaded=
"no"> 
6304         <autodoc>GetWindow() -
> Window
</autodoc> 
6306       <method name=
"SetWindow" type=
"" overloaded=
"no"> 
6307         <autodoc>SetWindow(Window window)
</autodoc> 
6309           <param name=
"window" type=
"Window" default=
""/> 
6312       <method name=
"GetSizer" type=
"wxSizer" overloaded=
"no"> 
6313         <autodoc>GetSizer() -
> Sizer
</autodoc> 
6315       <method name=
"SetSizer" type=
"" overloaded=
"no"> 
6316         <autodoc>SetSizer(Sizer sizer)
</autodoc> 
6318           <param name=
"sizer" type=
"wxSizer" default=
""/> 
6321       <method name=
"GetSpacer" type=
"Size" overloaded=
"no"> 
6322         <autodoc>GetSpacer() -
> Size
</autodoc> 
6324       <method name=
"SetSpacer" type=
"" overloaded=
"no"> 
6325         <autodoc>SetSpacer(Size size)
</autodoc> 
6327           <param name=
"size" type=
"Size" default=
""/> 
6330       <method name=
"Show" type=
"" overloaded=
"no"> 
6331         <autodoc>Show(bool show)
</autodoc> 
6333           <param name=
"show" type=
"bool" default=
""/> 
6336       <method name=
"IsShown" type=
"bool" overloaded=
"no"> 
6337         <autodoc>IsShown() -
> bool
</autodoc> 
6339       <method name=
"GetPosition" type=
"Point" overloaded=
"no"> 
6340         <autodoc>GetPosition() -
> Point
</autodoc> 
6342       <method name=
"GetUserData" type=
"PyObject" overloaded=
"no"> 
6343         <autodoc>GetUserData() -
> PyObject
</autodoc> 
6346     <class name=
"Sizer" oldname=
"wxSizer" module=
"core"> 
6347       <baseclass name=
"Object"/> 
6348       <method name=
"_setOORInfo" type=
"" overloaded=
"no"> 
6349         <autodoc>_setOORInfo(PyObject _self)
</autodoc> 
6351           <param name=
"_self" type=
"PyObject" default=
""/> 
6354       <method name=
"Add" type=
"" overloaded=
"no"> 
6355         <autodoc>Add(PyObject item, int proportion=
0, int flag=
0, int border=
0, 
 
6356     PyObject userData=None)
</autodoc> 
6358           <param name=
"item" type=
"PyObject" default=
""/> 
6359           <param name=
"proportion" type=
"int" default=
"0"/> 
6360           <param name=
"flag" type=
"int" default=
"0"/> 
6361           <param name=
"border" type=
"int" default=
"0"/> 
6362           <param name=
"userData" type=
"PyObject" default=
"NULL"/> 
6365       <method name=
"Insert" type=
"" overloaded=
"no"> 
6366         <autodoc>Insert(int before, PyObject item, int proportion=
0, int flag=
0, 
 
6367     int border=
0, PyObject userData=None)
</autodoc> 
6369           <param name=
"before" type=
"int" default=
""/> 
6370           <param name=
"item" type=
"PyObject" default=
""/> 
6371           <param name=
"proportion" type=
"int" default=
"0"/> 
6372           <param name=
"flag" type=
"int" default=
"0"/> 
6373           <param name=
"border" type=
"int" default=
"0"/> 
6374           <param name=
"userData" type=
"PyObject" default=
"NULL"/> 
6377       <method name=
"Prepend" type=
"" overloaded=
"no"> 
6378         <autodoc>Prepend(PyObject item, int proportion=
0, int flag=
0, int border=
0, 
 
6379     PyObject userData=None)
</autodoc> 
6381           <param name=
"item" type=
"PyObject" default=
""/> 
6382           <param name=
"proportion" type=
"int" default=
"0"/> 
6383           <param name=
"flag" type=
"int" default=
"0"/> 
6384           <param name=
"border" type=
"int" default=
"0"/> 
6385           <param name=
"userData" type=
"PyObject" default=
"NULL"/> 
6388       <method name=
"Remove" type=
"bool" overloaded=
"no"> 
6389         <autodoc>Remove(PyObject item) -
> bool
</autodoc> 
6391           <param name=
"item" type=
"PyObject" default=
""/> 
6394       <method name=
"_SetItemMinSize" type=
"" overloaded=
"no"> 
6395         <autodoc>_SetItemMinSize(PyObject item, Size size)
</autodoc> 
6397           <param name=
"item" type=
"PyObject" default=
""/> 
6398           <param name=
"size" type=
"Size" default=
""/> 
6401       <method name=
"AddItem" type=
"" overloaded=
"no"> 
6402         <autodoc>AddItem(SizerItem item)
</autodoc> 
6404           <param name=
"item" type=
"SizerItem" default=
""/> 
6407       <method name=
"InsertItem" type=
"" overloaded=
"no"> 
6408         <autodoc>InsertItem(size_t index, SizerItem item)
</autodoc> 
6410           <param name=
"index" type=
"size_t" default=
""/> 
6411           <param name=
"item" type=
"SizerItem" default=
""/> 
6414       <method name=
"PrependItem" type=
"" overloaded=
"no"> 
6415         <autodoc>PrependItem(SizerItem item)
</autodoc> 
6417           <param name=
"item" type=
"SizerItem" default=
""/> 
6420       <method name=
"SetDimension" type=
"" overloaded=
"no"> 
6421         <autodoc>SetDimension(int x, int y, int width, int height)
</autodoc> 
6423           <param name=
"x" type=
"int" default=
""/> 
6424           <param name=
"y" type=
"int" default=
""/> 
6425           <param name=
"width" type=
"int" default=
""/> 
6426           <param name=
"height" type=
"int" default=
""/> 
6429       <method name=
"SetMinSize" type=
"" overloaded=
"no"> 
6430         <autodoc>SetMinSize(Size size)
</autodoc> 
6432           <param name=
"size" type=
"Size" default=
""/> 
6435       <method name=
"GetSize" type=
"Size" overloaded=
"no"> 
6436         <autodoc>GetSize() -
> Size
</autodoc> 
6438       <method name=
"GetPosition" type=
"Point" overloaded=
"no"> 
6439         <autodoc>GetPosition() -
> Point
</autodoc> 
6441       <method name=
"GetMinSize" type=
"Size" overloaded=
"no"> 
6442         <autodoc>GetMinSize() -
> Size
</autodoc> 
6444       <method name=
"RecalcSizes" type=
"" overloaded=
"no"> 
6445         <autodoc>RecalcSizes()
</autodoc> 
6447       <method name=
"CalcMin" type=
"Size" overloaded=
"no"> 
6448         <autodoc>CalcMin() -
> Size
</autodoc> 
6450       <method name=
"Layout" type=
"" overloaded=
"no"> 
6451         <autodoc>Layout()
</autodoc> 
6453       <method name=
"Fit" type=
"Size" overloaded=
"no"> 
6454         <autodoc>Fit(Window window) -
> Size
</autodoc> 
6456           <param name=
"window" type=
"Window" default=
""/> 
6459       <method name=
"FitInside" type=
"" overloaded=
"no"> 
6460         <autodoc>FitInside(Window window)
</autodoc> 
6462           <param name=
"window" type=
"Window" default=
""/> 
6465       <method name=
"SetSizeHints" type=
"" overloaded=
"no"> 
6466         <autodoc>SetSizeHints(Window window)
</autodoc> 
6468           <param name=
"window" type=
"Window" default=
""/> 
6471       <method name=
"SetVirtualSizeHints" type=
"" overloaded=
"no"> 
6472         <autodoc>SetVirtualSizeHints(Window window)
</autodoc> 
6474           <param name=
"window" type=
"Window" default=
""/> 
6477       <method name=
"Clear" type=
"" overloaded=
"no"> 
6478         <autodoc>Clear(bool delete_windows=False)
</autodoc> 
6480           <param name=
"delete_windows" type=
"bool" default=
"False"/> 
6483       <method name=
"DeleteWindows" type=
"" overloaded=
"no"> 
6484         <autodoc>DeleteWindows()
</autodoc> 
6486       <method name=
"GetChildren" type=
"PyObject" overloaded=
"no"> 
6487         <autodoc>GetChildren() -
> PyObject
</autodoc> 
6489       <method name=
"Show" type=
"" overloaded=
"no"> 
6490         <autodoc>Show(PyObject item, bool show=True)
</autodoc> 
6492           <param name=
"item" type=
"PyObject" default=
""/> 
6493           <param name=
"show" type=
"bool" default=
"True"/> 
6496       <method name=
"Hide" type=
"" overloaded=
"no"> 
6497         <autodoc>Hide(PyObject item)
</autodoc> 
6499           <param name=
"item" type=
"PyObject" default=
""/> 
6502       <method name=
"IsShown" type=
"bool" overloaded=
"no"> 
6503         <autodoc>IsShown(PyObject item) -
> bool
</autodoc> 
6505           <param name=
"item" type=
"PyObject" default=
""/> 
6508       <method name=
"ShowItems" type=
"" overloaded=
"no"> 
6509         <autodoc>ShowItems(bool show)
</autodoc> 
6511           <param name=
"show" type=
"bool" default=
""/> 
6515     <class name=
"PySizer" oldname=
"wxPySizer" module=
"core"> 
6516       <baseclass name=
"Sizer"/> 
6517       <constructor name=
"PySizer" overloaded=
"no"> 
6518         <autodoc>__init__() -
> PySizer
</autodoc> 
6520       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
6521         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
6523           <param name=
"self" type=
"PyObject" default=
""/> 
6524           <param name=
"_class" type=
"PyObject" default=
""/> 
6529 #---------------------------------------------------------------------------
 
6531     <class name=
"BoxSizer" oldname=
"wxBoxSizer" module=
"core"> 
6532       <baseclass name=
"Sizer"/> 
6533       <constructor name=
"BoxSizer" overloaded=
"no"> 
6534         <autodoc>__init__(int orient=HORIZONTAL) -
> BoxSizer
</autodoc> 
6536           <param name=
"orient" type=
"int" default=
"wxHORIZONTAL"/> 
6539       <method name=
"GetOrientation" type=
"int" overloaded=
"no"> 
6540         <autodoc>GetOrientation() -
> int
</autodoc> 
6542       <method name=
"SetOrientation" type=
"" overloaded=
"no"> 
6543         <autodoc>SetOrientation(int orient)
</autodoc> 
6545           <param name=
"orient" type=
"int" default=
""/> 
6548       <method name=
"RecalcSizes" type=
"" overloaded=
"no"> 
6549         <autodoc>RecalcSizes()
</autodoc> 
6551       <method name=
"CalcMin" type=
"Size" overloaded=
"no"> 
6552         <autodoc>CalcMin() -
> Size
</autodoc> 
6556 #---------------------------------------------------------------------------
 
6558     <class name=
"StaticBoxSizer" oldname=
"wxStaticBoxSizer" module=
"core"> 
6559       <baseclass name=
"BoxSizer"/> 
6560       <constructor name=
"StaticBoxSizer" overloaded=
"no"> 
6561         <autodoc>__init__(wxStaticBox box, int orient=HORIZONTAL) -
> StaticBoxSizer
</autodoc> 
6563           <param name=
"box" type=
"wxStaticBox" default=
""/> 
6564           <param name=
"orient" type=
"int" default=
"wxHORIZONTAL"/> 
6567       <method name=
"GetStaticBox" type=
"wxStaticBox" overloaded=
"no"> 
6568         <autodoc>GetStaticBox() -
> wxStaticBox
</autodoc> 
6570       <method name=
"RecalcSizes" type=
"" overloaded=
"no"> 
6571         <autodoc>RecalcSizes()
</autodoc> 
6573       <method name=
"CalcMin" type=
"Size" overloaded=
"no"> 
6574         <autodoc>CalcMin() -
> Size
</autodoc> 
6578 #---------------------------------------------------------------------------
 
6580     <class name=
"GridSizer" oldname=
"wxGridSizer" module=
"core"> 
6581       <baseclass name=
"Sizer"/> 
6582       <constructor name=
"GridSizer" overloaded=
"no"> 
6583         <autodoc>__init__(int rows=
1, int cols=
0, int vgap=
0, int hgap=
0) -
> GridSizer
</autodoc> 
6585           <param name=
"rows" type=
"int" default=
"1"/> 
6586           <param name=
"cols" type=
"int" default=
"0"/> 
6587           <param name=
"vgap" type=
"int" default=
"0"/> 
6588           <param name=
"hgap" type=
"int" default=
"0"/> 
6591       <method name=
"RecalcSizes" type=
"" overloaded=
"no"> 
6592         <autodoc>RecalcSizes()
</autodoc> 
6594       <method name=
"CalcMin" type=
"Size" overloaded=
"no"> 
6595         <autodoc>CalcMin() -
> Size
</autodoc> 
6597       <method name=
"SetCols" type=
"" overloaded=
"no"> 
6598         <autodoc>SetCols(int cols)
</autodoc> 
6600           <param name=
"cols" type=
"int" default=
""/> 
6603       <method name=
"SetRows" type=
"" overloaded=
"no"> 
6604         <autodoc>SetRows(int rows)
</autodoc> 
6606           <param name=
"rows" type=
"int" default=
""/> 
6609       <method name=
"SetVGap" type=
"" overloaded=
"no"> 
6610         <autodoc>SetVGap(int gap)
</autodoc> 
6612           <param name=
"gap" type=
"int" default=
""/> 
6615       <method name=
"SetHGap" type=
"" overloaded=
"no"> 
6616         <autodoc>SetHGap(int gap)
</autodoc> 
6618           <param name=
"gap" type=
"int" default=
""/> 
6621       <method name=
"GetCols" type=
"int" overloaded=
"no"> 
6622         <autodoc>GetCols() -
> int
</autodoc> 
6624       <method name=
"GetRows" type=
"int" overloaded=
"no"> 
6625         <autodoc>GetRows() -
> int
</autodoc> 
6627       <method name=
"GetVGap" type=
"int" overloaded=
"no"> 
6628         <autodoc>GetVGap() -
> int
</autodoc> 
6630       <method name=
"GetHGap" type=
"int" overloaded=
"no"> 
6631         <autodoc>GetHGap() -
> int
</autodoc> 
6635 #---------------------------------------------------------------------------
 
6637     <class name=
"FlexGridSizer" oldname=
"wxFlexGridSizer" module=
"core"> 
6638       <baseclass name=
"GridSizer"/> 
6639       <constructor name=
"FlexGridSizer" overloaded=
"no"> 
6640         <autodoc>__init__(int rows=
1, int cols=
0, int vgap=
0, int hgap=
0) -
> FlexGridSizer
</autodoc> 
6642           <param name=
"rows" type=
"int" default=
"1"/> 
6643           <param name=
"cols" type=
"int" default=
"0"/> 
6644           <param name=
"vgap" type=
"int" default=
"0"/> 
6645           <param name=
"hgap" type=
"int" default=
"0"/> 
6648       <method name=
"RecalcSizes" type=
"" overloaded=
"no"> 
6649         <autodoc>RecalcSizes()
</autodoc> 
6651       <method name=
"CalcMin" type=
"Size" overloaded=
"no"> 
6652         <autodoc>CalcMin() -
> Size
</autodoc> 
6654       <method name=
"AddGrowableRow" type=
"" overloaded=
"no"> 
6655         <autodoc>AddGrowableRow(size_t idx, int proportion=
0)
</autodoc> 
6657           <param name=
"idx" type=
"size_t" default=
""/> 
6658           <param name=
"proportion" type=
"int" default=
"0"/> 
6661       <method name=
"RemoveGrowableRow" type=
"" overloaded=
"no"> 
6662         <autodoc>RemoveGrowableRow(size_t idx)
</autodoc> 
6664           <param name=
"idx" type=
"size_t" default=
""/> 
6667       <method name=
"AddGrowableCol" type=
"" overloaded=
"no"> 
6668         <autodoc>AddGrowableCol(size_t idx, int proportion=
0)
</autodoc> 
6670           <param name=
"idx" type=
"size_t" default=
""/> 
6671           <param name=
"proportion" type=
"int" default=
"0"/> 
6674       <method name=
"RemoveGrowableCol" type=
"" overloaded=
"no"> 
6675         <autodoc>RemoveGrowableCol(size_t idx)
</autodoc> 
6677           <param name=
"idx" type=
"size_t" default=
""/> 
6680       <method name=
"SetFlexibleDirection" type=
"" overloaded=
"no"> 
6681         <autodoc>SetFlexibleDirection(int direction)
</autodoc> 
6683           <param name=
"direction" type=
"int" default=
""/> 
6686       <method name=
"GetFlexibleDirection" type=
"int" overloaded=
"no"> 
6687         <autodoc>GetFlexibleDirection() -
> int
</autodoc> 
6689       <method name=
"SetNonFlexibleGrowMode" type=
"" overloaded=
"no"> 
6690         <autodoc>SetNonFlexibleGrowMode(int mode)
</autodoc> 
6692           <param name=
"mode" type=
"wxFlexSizerGrowMode" default=
""/> 
6695       <method name=
"GetNonFlexibleGrowMode" type=
"wxFlexSizerGrowMode" overloaded=
"no"> 
6696         <autodoc>GetNonFlexibleGrowMode() -
> int
</autodoc> 
6698       <method name=
"GetRowHeights" type=
"wxArrayInt" overloaded=
"no"> 
6699         <autodoc>GetRowHeights() -
> wxArrayInt
</autodoc> 
6701       <method name=
"GetColWidths" type=
"wxArrayInt" overloaded=
"no"> 
6702         <autodoc>GetColWidths() -
> wxArrayInt
</autodoc> 
6706 #---------------------------------------------------------------------------
 
6708     <class name=
"GBPosition" oldname=
"wxGBPosition" module=
"core"> 
6709       <constructor name=
"GBPosition" overloaded=
"no"> 
6710         <autodoc>__init__(int row=
0, int col=
0) -
> GBPosition
</autodoc> 
6712           <param name=
"row" type=
"int" default=
"0"/> 
6713           <param name=
"col" type=
"int" default=
"0"/> 
6716       <method name=
"GetRow" type=
"int" overloaded=
"no"> 
6717         <autodoc>GetRow() -
> int
</autodoc> 
6719       <method name=
"GetCol" type=
"int" overloaded=
"no"> 
6720         <autodoc>GetCol() -
> int
</autodoc> 
6722       <method name=
"SetRow" type=
"" overloaded=
"no"> 
6723         <autodoc>SetRow(int row)
</autodoc> 
6725           <param name=
"row" type=
"int" default=
""/> 
6728       <method name=
"SetCol" type=
"" overloaded=
"no"> 
6729         <autodoc>SetCol(int col)
</autodoc> 
6731           <param name=
"col" type=
"int" default=
""/> 
6734       <method name=
"__eq__" type=
"bool" overloaded=
"no"> 
6735         <autodoc>__eq__(GBPosition other) -
> bool
</autodoc> 
6737           <param name=
"other" type=
"GBPosition" default=
""/> 
6740       <method name=
"__ne__" type=
"bool" overloaded=
"no"> 
6741         <autodoc>__ne__(GBPosition other) -
> bool
</autodoc> 
6743           <param name=
"other" type=
"GBPosition" default=
""/> 
6746       <method name=
"Set" type=
"" overloaded=
"no"> 
6747         <autodoc>Set(int row=
0, int col=
0)
</autodoc> 
6749           <param name=
"row" type=
"int" default=
"0"/> 
6750           <param name=
"col" type=
"int" default=
"0"/> 
6753       <method name=
"Get" type=
"PyObject" overloaded=
"no"> 
6754         <autodoc>Get() -
> PyObject
</autodoc> 
6757     <class name=
"GBSpan" oldname=
"wxGBSpan" module=
"core"> 
6758       <constructor name=
"GBSpan" overloaded=
"no"> 
6759         <autodoc>__init__(int rowspan=
1, int colspan=
1) -
> GBSpan
</autodoc> 
6761           <param name=
"rowspan" type=
"int" default=
"1"/> 
6762           <param name=
"colspan" type=
"int" default=
"1"/> 
6765       <method name=
"GetRowspan" type=
"int" overloaded=
"no"> 
6766         <autodoc>GetRowspan() -
> int
</autodoc> 
6768       <method name=
"GetColspan" type=
"int" overloaded=
"no"> 
6769         <autodoc>GetColspan() -
> int
</autodoc> 
6771       <method name=
"SetRowspan" type=
"" overloaded=
"no"> 
6772         <autodoc>SetRowspan(int rowspan)
</autodoc> 
6774           <param name=
"rowspan" type=
"int" default=
""/> 
6777       <method name=
"SetColspan" type=
"" overloaded=
"no"> 
6778         <autodoc>SetColspan(int colspan)
</autodoc> 
6780           <param name=
"colspan" type=
"int" default=
""/> 
6783       <method name=
"__eq__" type=
"bool" overloaded=
"no"> 
6784         <autodoc>__eq__(GBSpan other) -
> bool
</autodoc> 
6786           <param name=
"other" type=
"GBSpan" default=
""/> 
6789       <method name=
"__ne__" type=
"bool" overloaded=
"no"> 
6790         <autodoc>__ne__(GBSpan other) -
> bool
</autodoc> 
6792           <param name=
"other" type=
"GBSpan" default=
""/> 
6795       <method name=
"Set" type=
"" overloaded=
"no"> 
6796         <autodoc>Set(int rowspan=
1, int colspan=
1)
</autodoc> 
6798           <param name=
"rowspan" type=
"int" default=
"1"/> 
6799           <param name=
"colspan" type=
"int" default=
"1"/> 
6802       <method name=
"Get" type=
"PyObject" overloaded=
"no"> 
6803         <autodoc>Get() -
> PyObject
</autodoc> 
6806     <class name=
"GBSizerItem" oldname=
"wxGBSizerItem" module=
"core"> 
6807       <baseclass name=
"SizerItem"/> 
6808       <constructor name=
"GBSizerItem" overloaded=
"no"> 
6809         <autodoc>__init__() -
> GBSizerItem
</autodoc> 
6811       <constructor name=
"GBSizerItemWindow" overloaded=
"no"> 
6812         <autodoc>GBSizerItemWindow(Window window, GBPosition pos, GBSpan span, int flag, 
 
6813     int border, Object userData) -
> GBSizerItem
</autodoc> 
6815           <param name=
"window" type=
"Window" default=
""/> 
6816           <param name=
"pos" type=
"GBPosition" default=
""/> 
6817           <param name=
"span" type=
"GBSpan" default=
""/> 
6818           <param name=
"flag" type=
"int" default=
""/> 
6819           <param name=
"border" type=
"int" default=
""/> 
6820           <param name=
"userData" type=
"Object" default=
""/> 
6823       <constructor name=
"GBSizerItemSizer" overloaded=
"no"> 
6824         <autodoc>GBSizerItemSizer(Sizer sizer, GBPosition pos, GBSpan span, int flag, 
 
6825     int border, Object userData) -
> GBSizerItem
</autodoc> 
6827           <param name=
"sizer" type=
"Sizer" default=
""/> 
6828           <param name=
"pos" type=
"GBPosition" default=
""/> 
6829           <param name=
"span" type=
"GBSpan" default=
""/> 
6830           <param name=
"flag" type=
"int" default=
""/> 
6831           <param name=
"border" type=
"int" default=
""/> 
6832           <param name=
"userData" type=
"Object" default=
""/> 
6835       <constructor name=
"GBSizerItemSpacer" overloaded=
"no"> 
6836         <autodoc>GBSizerItemSpacer(int width, int height, GBPosition pos, GBSpan span, 
 
6837     int flag, int border, Object userData) -
> GBSizerItem
</autodoc> 
6839           <param name=
"width" type=
"int" default=
""/> 
6840           <param name=
"height" type=
"int" default=
""/> 
6841           <param name=
"pos" type=
"GBPosition" default=
""/> 
6842           <param name=
"span" type=
"GBSpan" default=
""/> 
6843           <param name=
"flag" type=
"int" default=
""/> 
6844           <param name=
"border" type=
"int" default=
""/> 
6845           <param name=
"userData" type=
"Object" default=
""/> 
6848       <method name=
"GetPos" type=
"GBPosition" overloaded=
"no"> 
6849         <autodoc>GetPos() -
> GBPosition
</autodoc> 
6851       <method name=
"GetSpan" type=
"GBSpan" overloaded=
"no"> 
6852         <autodoc>GetSpan() -
> GBSpan
</autodoc> 
6854       <method name=
"SetPos" type=
"bool" overloaded=
"no"> 
6855         <autodoc>SetPos(GBPosition pos) -
> bool
</autodoc> 
6857           <param name=
"pos" type=
"GBPosition" default=
""/> 
6860       <method name=
"SetSpan" type=
"bool" overloaded=
"no"> 
6861         <autodoc>SetSpan(GBSpan span) -
> bool
</autodoc> 
6863           <param name=
"span" type=
"GBSpan" default=
""/> 
6866       <method name=
"Intersects" type=
"bool" overloaded=
"yes"> 
6868           <param name=
"other" type=
"GBSizerItem" default=
""/> 
6871       <method name=
"Intersects" type=
"bool" overloaded=
"yes"> 
6872         <autodoc>Intersects(GBSizerItem other) -
> bool
 
6873 Intersects(GBPosition pos, GBSpan span) -
> bool
</autodoc> 
6875           <param name=
"pos" type=
"GBPosition" default=
""/> 
6876           <param name=
"span" type=
"GBSpan" default=
""/> 
6879       <method name=
"GetEndPos" type=
"" overloaded=
"no"> 
6880         <autodoc>GetEndPos(int row, int col)
</autodoc> 
6882           <param name=
"row" type=
"int" default=
""/> 
6883           <param name=
"col" type=
"int" default=
""/> 
6886       <method name=
"GetGBSizer" type=
"wxGridBagSizer" overloaded=
"no"> 
6887         <autodoc>GetGBSizer() -
> GridBagSizer
</autodoc> 
6889       <method name=
"SetGBSizer" type=
"" overloaded=
"no"> 
6890         <autodoc>SetGBSizer(GridBagSizer sizer)
</autodoc> 
6892           <param name=
"sizer" type=
"wxGridBagSizer" default=
""/> 
6896     <class name=
"GridBagSizer" oldname=
"wxGridBagSizer" module=
"core"> 
6897       <baseclass name=
"FlexGridSizer"/> 
6898       <constructor name=
"GridBagSizer" overloaded=
"no"> 
6899         <autodoc>__init__(int vgap=
0, int hgap=
0) -
> GridBagSizer
</autodoc> 
6901           <param name=
"vgap" type=
"int" default=
"0"/> 
6902           <param name=
"hgap" type=
"int" default=
"0"/> 
6905       <method name=
"Add" type=
"bool" overloaded=
"no"> 
6906         <autodoc>Add(PyObject item, GBPosition pos, GBSpan span=DefaultSpan, 
 
6907     int flag=
0, int border=
0, PyObject userData=None) -
> bool
</autodoc> 
6909           <param name=
"item" type=
"PyObject" default=
""/> 
6910           <param name=
"pos" type=
"GBPosition" default=
""/> 
6911           <param name=
"span" type=
"GBSpan" default=
"wxDefaultSpan"/> 
6912           <param name=
"flag" type=
"int" default=
"0"/> 
6913           <param name=
"border" type=
"int" default=
"0"/> 
6914           <param name=
"userData" type=
"PyObject" default=
"NULL"/> 
6917       <method name=
"AddItem" type=
"bool" overloaded=
"no"> 
6918         <autodoc>AddItem(GBSizerItem item) -
> bool
</autodoc> 
6920           <param name=
"item" type=
"GBSizerItem" default=
""/> 
6923       <method name=
"GetEmptyCellSize" type=
"Size" overloaded=
"no"> 
6924         <autodoc>GetEmptyCellSize() -
> Size
</autodoc> 
6926       <method name=
"SetEmptyCellSize" type=
"" overloaded=
"no"> 
6927         <autodoc>SetEmptyCellSize(Size sz)
</autodoc> 
6929           <param name=
"sz" type=
"Size" default=
""/> 
6932       <method name=
"GetItemPosition" type=
"GBPosition" overloaded=
"yes"> 
6934           <param name=
"window" type=
"Window" default=
""/> 
6937       <method name=
"GetItemPosition" type=
"GBPosition" overloaded=
"yes"> 
6939           <param name=
"sizer" type=
"Sizer" default=
""/> 
6942       <method name=
"GetItemPosition" type=
"GBPosition" overloaded=
"yes"> 
6943         <autodoc>GetItemPosition(Window window) -
> GBPosition
 
6944 GetItemPosition(Sizer sizer) -
> GBPosition
 
6945 GetItemPosition(size_t index) -
> GBPosition
</autodoc> 
6947           <param name=
"index" type=
"size_t" default=
""/> 
6950       <method name=
"SetItemPosition" type=
"bool" overloaded=
"yes"> 
6952           <param name=
"window" type=
"Window" default=
""/> 
6953           <param name=
"pos" type=
"GBPosition" default=
""/> 
6956       <method name=
"SetItemPosition" type=
"bool" overloaded=
"yes"> 
6958           <param name=
"sizer" type=
"Sizer" default=
""/> 
6959           <param name=
"pos" type=
"GBPosition" default=
""/> 
6962       <method name=
"SetItemPosition" type=
"bool" overloaded=
"yes"> 
6963         <autodoc>SetItemPosition(Window window, GBPosition pos) -
> bool
 
6964 SetItemPosition(Sizer sizer, GBPosition pos) -
> bool
 
6965 SetItemPosition(size_t index, GBPosition pos) -
> bool
</autodoc> 
6967           <param name=
"index" type=
"size_t" default=
""/> 
6968           <param name=
"pos" type=
"GBPosition" default=
""/> 
6971       <method name=
"GetItemSpan" type=
"GBSpan" overloaded=
"yes"> 
6973           <param name=
"window" type=
"Window" default=
""/> 
6976       <method name=
"GetItemSpan" type=
"GBSpan" overloaded=
"yes"> 
6978           <param name=
"sizer" type=
"Sizer" default=
""/> 
6981       <method name=
"GetItemSpan" type=
"GBSpan" overloaded=
"yes"> 
6982         <autodoc>GetItemSpan(Window window) -
> GBSpan
 
6983 GetItemSpan(Sizer sizer) -
> GBSpan
 
6984 GetItemSpan(size_t index) -
> GBSpan
</autodoc> 
6986           <param name=
"index" type=
"size_t" default=
""/> 
6989       <method name=
"SetItemSpan" type=
"bool" overloaded=
"yes"> 
6991           <param name=
"window" type=
"Window" default=
""/> 
6992           <param name=
"span" type=
"GBSpan" default=
""/> 
6995       <method name=
"SetItemSpan" type=
"bool" overloaded=
"yes"> 
6997           <param name=
"sizer" type=
"Sizer" default=
""/> 
6998           <param name=
"span" type=
"GBSpan" default=
""/> 
7001       <method name=
"SetItemSpan" type=
"bool" overloaded=
"yes"> 
7002         <autodoc>SetItemSpan(Window window, GBSpan span) -
> bool
 
7003 SetItemSpan(Sizer sizer, GBSpan span) -
> bool
 
7004 SetItemSpan(size_t index, GBSpan span) -
> bool
</autodoc> 
7006           <param name=
"index" type=
"size_t" default=
""/> 
7007           <param name=
"span" type=
"GBSpan" default=
""/> 
7010       <method name=
"FindItem" type=
"GBSizerItem" overloaded=
"yes"> 
7012           <param name=
"window" type=
"Window" default=
""/> 
7015       <method name=
"FindItem" type=
"GBSizerItem" overloaded=
"yes"> 
7016         <autodoc>FindItem(Window window) -
> GBSizerItem
 
7017 FindItem(Sizer sizer) -
> GBSizerItem
</autodoc> 
7019           <param name=
"sizer" type=
"Sizer" default=
""/> 
7022       <method name=
"FindItemAtPosition" type=
"GBSizerItem" overloaded=
"no"> 
7023         <autodoc>FindItemAtPosition(GBPosition pos) -
> GBSizerItem
</autodoc> 
7025           <param name=
"pos" type=
"GBPosition" default=
""/> 
7028       <method name=
"FindItemAtPoint" type=
"GBSizerItem" overloaded=
"no"> 
7029         <autodoc>FindItemAtPoint(Point pt) -
> GBSizerItem
</autodoc> 
7031           <param name=
"pt" type=
"Point" default=
""/> 
7034       <method name=
"FindItemWithData" type=
"GBSizerItem" overloaded=
"no"> 
7035         <autodoc>FindItemWithData(Object userData) -
> GBSizerItem
</autodoc> 
7037           <param name=
"userData" type=
"Object" default=
""/> 
7040       <method name=
"RecalcSizes" type=
"" overloaded=
"no"> 
7041         <autodoc>RecalcSizes()
</autodoc> 
7043       <method name=
"CalcMin" type=
"Size" overloaded=
"no"> 
7044         <autodoc>CalcMin() -
> Size
</autodoc> 
7046       <method name=
"CheckForIntersection" type=
"bool" overloaded=
"yes"> 
7048           <param name=
"item" type=
"GBSizerItem" default=
""/> 
7049           <param name=
"excludeItem" type=
"GBSizerItem" default=
"NULL"/> 
7052       <method name=
"CheckForIntersection" type=
"bool" overloaded=
"yes"> 
7053         <autodoc>CheckForIntersection(GBSizerItem item, GBSizerItem excludeItem=None) -
> bool
 
7054 CheckForIntersection(GBPosition pos, GBSpan span, GBSizerItem excludeItem=None) -
> bool
</autodoc> 
7056           <param name=
"pos" type=
"GBPosition" default=
""/> 
7057           <param name=
"span" type=
"GBSpan" default=
""/> 
7058           <param name=
"excludeItem" type=
"GBSizerItem" default=
"NULL"/> 
7063 #---------------------------------------------------------------------------
 
7065     <class name=
"IndividualLayoutConstraint" oldname=
"wxIndividualLayoutConstraint" module=
"core"> 
7066       <docstring>Objects of this class are stored in the wx.LayoutConstraint class as one of
 
7067 eight possible constraints that a window can be involved in.  You will never
 
7068 need to create an instance of wx.IndividualLayoutConstraint, rather you should
 
7069 use create a wx.LayoutContstraints instance and use the individual contstraints
 
7072 Constraints are initially set to have the relationship wx.Unconstrained, which
 
7073 means that their values should be calculated by looking at known constraints.
 
7075 The Edge specifies the type of edge or dimension of a window.
 
7079     wx.Left  The left edge.
 
7080     wx.Top  The top edge.
 
7081     wx.Right  The right edge.
 
7082     wx.Bottom  The bottom edge.
 
7083     wx.CentreX  The x-coordinate of the centre of the window.
 
7084     wx.CentreY  The y-coordinate of the centre of the window. 
 
7087 The Relationship specifies the relationship that this edge or dimension has
 
7088 with another specified edge or dimension. Normally, the user doesn't use these
 
7089 directly because functions such as Below and RightOf are a convenience for
 
7090 using the more general Set function.
 
7094     wx.Unconstrained  The edge or dimension is unconstrained
 
7095                         (the default for edges.)
 
7096     wx.AsIs          The edge or dimension is to be taken from the current
 
7097                         window position or size (the default for dimensions.)
 
7098     wx.Above          The edge should be above another edge.
 
7099     wx.Below          The edge should be below another edge.
 
7100     wx.LeftOf          The edge should be to the left of another edge.
 
7101     wx.RightOf          The edge should be to the right of another edge.
 
7102     wx.SameAs          The edge or dimension should be the same as another edge
 
7104     wx.PercentOf  The edge or dimension should be a percentage of another
 
7106     wx.Absolute  The edge or dimension should be a given absolute value.
 
7109       <baseclass name=
"Object"/> 
7110       <method name=
"Set" type=
"" overloaded=
"no"> 
7111         <autodoc>Set(int rel, Window otherW, int otherE, int val=
0, int marg=wxLAYOUT_DEFAULT_MARGIN)
</autodoc> 
7113           <param name=
"rel" type=
"wxRelationship" default=
""/> 
7114           <param name=
"otherW" type=
"Window" default=
""/> 
7115           <param name=
"otherE" type=
"wxEdge" default=
""/> 
7116           <param name=
"val" type=
"int" default=
"0"/> 
7117           <param name=
"marg" type=
"int" default=
"wxLAYOUT_DEFAULT_MARGIN"/> 
7120       <method name=
"LeftOf" type=
"" overloaded=
"no"> 
7121         <autodoc>LeftOf(Window sibling, int marg=
0)
</autodoc> 
7122         <docstring>Sibling relationship
</docstring> 
7124           <param name=
"sibling" type=
"Window" default=
""/> 
7125           <param name=
"marg" type=
"int" default=
"0"/> 
7128       <method name=
"RightOf" type=
"" overloaded=
"no"> 
7129         <autodoc>RightOf(Window sibling, int marg=
0)
</autodoc> 
7130         <docstring>Sibling relationship
</docstring> 
7132           <param name=
"sibling" type=
"Window" default=
""/> 
7133           <param name=
"marg" type=
"int" default=
"0"/> 
7136       <method name=
"Above" type=
"" overloaded=
"no"> 
7137         <autodoc>Above(Window sibling, int marg=
0)
</autodoc> 
7138         <docstring>Sibling relationship
</docstring> 
7140           <param name=
"sibling" type=
"Window" default=
""/> 
7141           <param name=
"marg" type=
"int" default=
"0"/> 
7144       <method name=
"Below" type=
"" overloaded=
"no"> 
7145         <autodoc>Below(Window sibling, int marg=
0)
</autodoc> 
7146         <docstring>Sibling relationship
</docstring> 
7148           <param name=
"sibling" type=
"Window" default=
""/> 
7149           <param name=
"marg" type=
"int" default=
"0"/> 
7152       <method name=
"SameAs" type=
"" overloaded=
"no"> 
7153         <autodoc>SameAs(Window otherW, int edge, int marg=
0)
</autodoc> 
7154         <docstring>'Same edge' alignment
</docstring> 
7156           <param name=
"otherW" type=
"Window" default=
""/> 
7157           <param name=
"edge" type=
"wxEdge" default=
""/> 
7158           <param name=
"marg" type=
"int" default=
"0"/> 
7161       <method name=
"PercentOf" type=
"" overloaded=
"no"> 
7162         <autodoc>PercentOf(Window otherW, int wh, int per)
</autodoc> 
7163         <docstring>The edge is a percentage of the other window's edge
</docstring> 
7165           <param name=
"otherW" type=
"Window" default=
""/> 
7166           <param name=
"wh" type=
"wxEdge" default=
""/> 
7167           <param name=
"per" type=
"int" default=
""/> 
7170       <method name=
"Absolute" type=
"" overloaded=
"no"> 
7171         <autodoc>Absolute(int val)
</autodoc> 
7172         <docstring>Edge has absolute value
</docstring> 
7174           <param name=
"val" type=
"int" default=
""/> 
7177       <method name=
"Unconstrained" type=
"" overloaded=
"no"> 
7178         <autodoc>Unconstrained()
</autodoc> 
7179         <docstring>Dimension is unconstrained
</docstring> 
7181       <method name=
"AsIs" type=
"" overloaded=
"no"> 
7182         <autodoc>AsIs()
</autodoc> 
7183         <docstring>Dimension is 'as is' (use current size settings)
</docstring> 
7185       <method name=
"GetOtherWindow" type=
"Window" overloaded=
"no"> 
7186         <autodoc>GetOtherWindow() -
> Window
</autodoc> 
7188       <method name=
"GetMyEdge" type=
"wxEdge" overloaded=
"no"> 
7189         <autodoc>GetMyEdge() -
> int
</autodoc> 
7191       <method name=
"SetEdge" type=
"" overloaded=
"no"> 
7192         <autodoc>SetEdge(int which)
</autodoc> 
7194           <param name=
"which" type=
"wxEdge" default=
""/> 
7197       <method name=
"SetValue" type=
"" overloaded=
"no"> 
7198         <autodoc>SetValue(int v)
</autodoc> 
7200           <param name=
"v" type=
"int" default=
""/> 
7203       <method name=
"GetMargin" type=
"int" overloaded=
"no"> 
7204         <autodoc>GetMargin() -
> int
</autodoc> 
7206       <method name=
"SetMargin" type=
"" overloaded=
"no"> 
7207         <autodoc>SetMargin(int m)
</autodoc> 
7209           <param name=
"m" type=
"int" default=
""/> 
7212       <method name=
"GetValue" type=
"int" overloaded=
"no"> 
7213         <autodoc>GetValue() -
> int
</autodoc> 
7215       <method name=
"GetPercent" type=
"int" overloaded=
"no"> 
7216         <autodoc>GetPercent() -
> int
</autodoc> 
7218       <method name=
"GetOtherEdge" type=
"int" overloaded=
"no"> 
7219         <autodoc>GetOtherEdge() -
> int
</autodoc> 
7221       <method name=
"GetDone" type=
"bool" overloaded=
"no"> 
7222         <autodoc>GetDone() -
> bool
</autodoc> 
7224       <method name=
"SetDone" type=
"" overloaded=
"no"> 
7225         <autodoc>SetDone(bool d)
</autodoc> 
7227           <param name=
"d" type=
"bool" default=
""/> 
7230       <method name=
"GetRelationship" type=
"wxRelationship" overloaded=
"no"> 
7231         <autodoc>GetRelationship() -
> int
</autodoc> 
7233       <method name=
"SetRelationship" type=
"" overloaded=
"no"> 
7234         <autodoc>SetRelationship(int r)
</autodoc> 
7236           <param name=
"r" type=
"wxRelationship" default=
""/> 
7239       <method name=
"ResetIfWin" type=
"bool" overloaded=
"no"> 
7240         <autodoc>ResetIfWin(Window otherW) -
> bool
</autodoc> 
7241         <docstring>Reset constraint if it mentions otherWin
</docstring> 
7243           <param name=
"otherW" type=
"Window" default=
""/> 
7246       <method name=
"SatisfyConstraint" type=
"bool" overloaded=
"no"> 
7247         <autodoc>SatisfyConstraint(LayoutConstraints constraints, Window win) -
> bool
</autodoc> 
7248         <docstring>Try to satisfy constraint
</docstring> 
7250           <param name=
"constraints" type=
"wxLayoutConstraints" default=
""/> 
7251           <param name=
"win" type=
"Window" default=
""/> 
7254       <method name=
"GetEdge" type=
"int" overloaded=
"no"> 
7255         <autodoc>GetEdge(int which, Window thisWin, Window other) -
> int
</autodoc> 
7256         <docstring>Get the value of this edge or dimension, or if this
 
7257 is not determinable, -
1.
</docstring> 
7259           <param name=
"which" type=
"wxEdge" default=
""/> 
7260           <param name=
"thisWin" type=
"Window" default=
""/> 
7261           <param name=
"other" type=
"Window" default=
""/> 
7265     <class name=
"LayoutConstraints" oldname=
"wxLayoutConstraints" module=
"core"> 
7266       <docstring>Note: constraints are now deprecated and you should use sizers instead.
 
7268 Objects of this class can be associated with a window to define its layout
 
7269 constraints, with respect to siblings or its parent.
 
7271 The class consists of the following eight constraints of class
 
7272 wx.IndividualLayoutConstraint, some or all of which should be accessed
 
7273 directly to set the appropriate constraints.
 
7275     * left: represents the left hand edge of the window
 
7276     * right: represents the right hand edge of the window
 
7277     * top: represents the top edge of the window
 
7278     * bottom: represents the bottom edge of the window
 
7279     * width: represents the width of the window
 
7280     * height: represents the height of the window
 
7281     * centreX: represents the horizontal centre point of the window
 
7282     * centreY: represents the vertical centre point of the window 
 
7284 Most constraints are initially set to have the relationship wxUnconstrained,
 
7285 which means that their values should be calculated by looking at known
 
7286 constraints. The exceptions are width and height, which are set to wxAsIs to
 
7287 ensure that if the user does not specify a constraint, the existing width and
 
7288 height will be used, to be compatible with panel items which often have take a
 
7289 default size. If the constraint is wxAsIs, the dimension will not be changed.
 
7291       <baseclass name=
"Object"/> 
7292       <constructor name=
"LayoutConstraints" overloaded=
"no"> 
7293         <autodoc>__init__() -
> LayoutConstraints
</autodoc> 
7295       <property name=
"left" type=
"IndividualLayoutConstraint" readonly=
"yes"/> 
7296       <property name=
"top" type=
"IndividualLayoutConstraint" readonly=
"yes"/> 
7297       <property name=
"right" type=
"IndividualLayoutConstraint" readonly=
"yes"/> 
7298       <property name=
"bottom" type=
"IndividualLayoutConstraint" readonly=
"yes"/> 
7299       <property name=
"width" type=
"IndividualLayoutConstraint" readonly=
"yes"/> 
7300       <property name=
"height" type=
"IndividualLayoutConstraint" readonly=
"yes"/> 
7301       <property name=
"centreX" type=
"IndividualLayoutConstraint" readonly=
"yes"/> 
7302       <property name=
"centreY" type=
"IndividualLayoutConstraint" readonly=
"yes"/> 
7303       <method name=
"SatisfyConstraints" type=
"bool" overloaded=
"no"> 
7304         <autodoc>SatisfyConstraints(Window win) -
> (areSatisfied, noChanges)
</autodoc> 
7306           <param name=
"win" type=
"Window" default=
""/> 
7307           <param name=
"OUTPUT" type=
"int" default=
""/> 
7310       <method name=
"AreSatisfied" type=
"bool" overloaded=
"no"> 
7311         <autodoc>AreSatisfied() -
> bool
</autodoc> 
7314     <pythoncode>#----------------------------------------------------------------------------
 
7316 # Use Python's bool constants if available, make some if not
 
7320     __builtins__.True = 
1==
1 
7321     __builtins__.False = 
1==
0 
7322     def bool(value): return not not value
 
7323     __builtins__.bool = bool
 
7327 # workarounds for bad wxRTTI names
 
7328 __wxPyPtrTypeMap['wxGauge95']    = 'wxGauge'
 
7329 __wxPyPtrTypeMap['wxSlider95']   = 'wxSlider'
 
7330 __wxPyPtrTypeMap['wxStatusBar95']   = 'wxStatusBar'
 
7333 #----------------------------------------------------------------------------
 
7334 # Load version numbers from __version__...  Ensure that major and minor
 
7335 # versions are the same for both wxPython and wxWindows.
 
7337 from __version__ import *
 
7338 __version__ = VERSION_STRING
 
7340 assert MAJOR_VERSION == _core.MAJOR_VERSION, "wxPython/wxWindows version mismatch"
 
7341 assert MINOR_VERSION == _core.MINOR_VERSION, "wxPython/wxWindows version mismatch"
 
7342 if RELEASE_VERSION != _core.RELEASE_VERSION:
 
7344     warnings.warn("wxPython/wxWindows release number mismatch")
 
7346 #----------------------------------------------------------------------------
 
7348 class PyDeadObjectError(AttributeError):
 
7351 class _wxPyDeadObject(object):
 
7353     Instances of wx objects that are OOR capable will have their __class__
 
7354     changed to this class when the C++ object is deleted.  This should help
 
7355     prevent crashes due to referencing a bogus C++ pointer.
 
7357     reprStr = "wxPython wrapper for DELETED %s object! (The C++ object no longer exists.)"
 
7358     attrStr = "The C++ part of the %s object has been deleted, attribute access no longer allowed."
 
7361         if not hasattr(self, "_name"):
 
7362             self._name = "[unknown]"
 
7363         return self.reprStr % self._name
 
7365     def __getattr__(self, *args):
 
7366         if not hasattr(self, "_name"):
 
7367             self._name = "[unknown]"
 
7368         raise PyDeadObjectError(self.attrStr % self._name)
 
7370     def __nonzero__(self):
 
7375 class PyUnbornObjectError(AttributeError):
 
7378 class _wxPyUnbornObject(object):
 
7380     Some stock objects are created when the wx.core module is
 
7381     imported, but their C++ instance is not created until the wx.App
 
7382     object is created and initialized.  These object instances will
 
7383     temporarily have their __class__ changed to this class so an
 
7384     exception will be raised if they are used before the C++ instance
 
7388     reprStr = "wxPython wrapper for UNBORN object! (The C++ object is not initialized yet.)"
 
7389     attrStr = "The C++ part of this object has not been initialized, attribute access not allowed."
 
7392         #if not hasattr(self, "_name"):
 
7393         #    self._name = "[unknown]"
 
7394         return self.reprStr #% self._name
 
7396     def __getattr__(self, *args):
 
7397         #if not hasattr(self, "_name"):
 
7398         #    self._name = "[unknown]"
 
7399         raise PyUnbornObjectError(self.attrStr) # % self._name )
 
7401     def __nonzero__(self):
 
7405 #----------------------------------------------------------------------------
 
7406 _wxPyCallAfterId = None
 
7408 def CallAfter(callable, *args, **kw):
 
7410     Call the specified function after the current and pending event
 
7411     handlers have been completed.  This is also good for making GUI
 
7412     method calls from non-GUI threads.
 
7415     assert app, 'No wxApp created yet'
 
7417     global _wxPyCallAfterId
 
7418     if _wxPyCallAfterId is None:
 
7419         _wxPyCallAfterId = wx.NewEventType()
 
7420         app.Connect(-
1, -
1, _wxPyCallAfterId,
 
7421               lambda event: event.callable(*event.args, **event.kw) )
 
7423     evt.SetEventType(_wxPyCallAfterId)
 
7424     evt.callable = callable
 
7427     wx.PostEvent(app, evt)
 
7430 #----------------------------------------------------------------------------
 
7435     A convenience class for wx.Timer, that calls the given callable
 
7436     object once after the given amount of milliseconds, passing any
 
7437     positional or keyword args.  The return value of the callable is
 
7438     availbale after it has been run with the GetResult method.
 
7440     If you don't need to get the return value or restart the timer
 
7441     then there is no need to hold a reference to this object.  It will
 
7442     hold a reference to itself while the timer is running (the timer
 
7443     has a reference to self.Notify) but the cycle will be broken when
 
7444     the timer completes, automatically cleaning up the wx.FutureCall
 
7447     def __init__(self, millis, callable, *args, **kwargs):
 
7448         self.millis = millis
 
7449         self.callable = callable
 
7450         self.SetArgs(*args, **kwargs)
 
7452         self.running = False
 
7462     def Start(self, millis=None, *args, **kwargs):
 
7467         if millis is not None:
 
7468             self.millis = millis
 
7470             self.SetArgs(*args, **kwargs)
 
7472         self.timer = wx.PyTimer(self.Notify)
 
7473         self.timer.Start(self.millis, wx.TIMER_ONE_SHOT)
 
7480         Stop and destroy the timer.
 
7482         if self.timer is not None:
 
7487     def GetInterval(self):
 
7488         if self.timer is not None:
 
7489             return self.timer.GetInterval()
 
7494     def IsRunning(self):
 
7495         return self.timer is not None and self.timer.IsRunning()
 
7498     def SetArgs(self, *args, **kwargs):
 
7500         (Re)set the args passed to the callable object.  This is
 
7501         useful in conjunction with Restart if you want to schedule a
 
7502         new call to the same callable object but with different
 
7506         self.kwargs = kwargs
 
7512     def GetResult(self):
 
7517         The timer has expired so call the callable.
 
7519         if self.callable and getattr(self.callable, 'im_self', True):
 
7521             self.running = False
 
7522             self.result = self.callable(*self.args, **self.kwargs)
 
7524         if not self.running:
 
7525             # if it wasn't restarted, then cleanup
 
7526             wx.CallAfter(self.Stop)
 
7529 #----------------------------------------------------------------------------
 
7530 #----------------------------------------------------------------------------
 
7532 # Import other modules in this package that should show up in the
 
7533 # "core" wx namespace
 
7535 from windows import *
 
7536 from controls import *
 
7540 # Fixup the stock objects since they can't be used yet.  (They will be
 
7541 # restored in wx.PyApp.OnInit.)
 
7542 _core._wxPyFixStockObjects()
 
7544 #----------------------------------------------------------------------------
 
7545 #----------------------------------------------------------------------------
 
7549     <import name=
"core"/> 
7550     <pythoncode> wx = core 
</pythoncode> 
7552 #---------------------------------------------------------------------------
 
7554     <class name=
"GDIObject" oldname=
"wxGDIObject" module=
"gdi"> 
7555       <baseclass name=
"Object"/> 
7556       <constructor name=
"GDIObject" overloaded=
"no"> 
7557         <autodoc>__init__() -
> GDIObject
</autodoc> 
7559       <destructor name=
"~wxGDIObject" overloaded=
"no"> 
7560         <autodoc>__del__()
</autodoc> 
7562       <method name=
"GetVisible" type=
"bool" overloaded=
"no"> 
7563         <autodoc>GetVisible() -
> bool
</autodoc> 
7565       <method name=
"SetVisible" type=
"" overloaded=
"no"> 
7566         <autodoc>SetVisible(bool visible)
</autodoc> 
7568           <param name=
"visible" type=
"bool" default=
""/> 
7571       <method name=
"IsNull" type=
"bool" overloaded=
"no"> 
7572         <autodoc>IsNull() -
> bool
</autodoc> 
7576 #---------------------------------------------------------------------------
 
7578     <class name=
"Colour" oldname=
"wxColour" module=
"gdi"> 
7579       <docstring>A colour is an object representing a combination of Red, Green, and Blue (RGB)
 
7580 intensity values, and is used to determine drawing colours, window colours,
 
7581 etc.  Valid RGB values are in the range 
0 to 
255.
 
7583 In wxPython there are typemaps that will automatically convert from a colour
 
7584 name, or from a "#RRGGBB" colour hex value string to a wx.Colour object when
 
7585 calling C++ methods that expect a wxColour.  This means that the following are
 
7588     win.SetBackgroundColour(wxColour(
0,
0,
255))
 
7589     win.SetBackgroundColour("BLUE")
 
7590     win.SetBackgroundColour("#
0000FF")
 
7592 You can retrieve the various current system colour settings with
 
7593 wx.SystemSettings.GetColour.
</docstring> 
7594       <baseclass name=
"Object"/> 
7595       <constructor name=
"Colour" overloaded=
"no"> 
7596         <autodoc>__init__(unsigned char red=
0, unsigned char green=
0, unsigned char blue=
0) -
> Colour
</autodoc> 
7597         <docstring>Constructs a colour from red, green and blue values.
</docstring> 
7599           <param name=
"red" type=
"unsigned char" default=
"0"/> 
7600           <param name=
"green" type=
"unsigned char" default=
"0"/> 
7601           <param name=
"blue" type=
"unsigned char" default=
"0"/> 
7604       <constructor name=
"NamedColour" overloaded=
"no"> 
7605         <autodoc>NamedColour(String colorName) -
> Colour
</autodoc> 
7606         <docstring>Constructs a colour object using a colour name listed in wx.TheColourDatabase.
</docstring> 
7608           <param name=
"colorName" type=
"String" default=
""/> 
7611       <constructor name=
"ColourRGB" overloaded=
"no"> 
7612         <autodoc>ColourRGB(unsigned long colRGB) -
> Colour
</autodoc> 
7613         <docstring>Constructs a colour from a packed RGB value.
</docstring> 
7615           <param name=
"colRGB" type=
"unsigned long" default=
""/> 
7618       <destructor name=
"~wxColour" overloaded=
"no"> 
7619         <autodoc>__del__()
</autodoc> 
7621       <method name=
"Red" type=
"unsigned char" overloaded=
"no"> 
7622         <autodoc>Red() -
> unsigned char
</autodoc> 
7623         <docstring>Returns the red intensity.
</docstring> 
7625       <method name=
"Green" type=
"unsigned char" overloaded=
"no"> 
7626         <autodoc>Green() -
> unsigned char
</autodoc> 
7627         <docstring>Returns the green intensity.
</docstring> 
7629       <method name=
"Blue" type=
"unsigned char" overloaded=
"no"> 
7630         <autodoc>Blue() -
> unsigned char
</autodoc> 
7631         <docstring>Returns the blue intensity.
</docstring> 
7633       <method name=
"Ok" type=
"bool" overloaded=
"no"> 
7634         <autodoc>Ok() -
> bool
</autodoc> 
7635         <docstring>Returns True if the colour object is valid (the colour has been
 
7636 initialised with RGB values).
</docstring> 
7638       <method name=
"Set" type=
"" overloaded=
"no"> 
7639         <autodoc>Set(unsigned char red, unsigned char green, unsigned char blue)
</autodoc> 
7640         <docstring>Sets the RGB intensity values.
</docstring> 
7642           <param name=
"red" type=
"unsigned char" default=
""/> 
7643           <param name=
"green" type=
"unsigned char" default=
""/> 
7644           <param name=
"blue" type=
"unsigned char" default=
""/> 
7647       <method name=
"SetRGB" type=
"" overloaded=
"no"> 
7648         <autodoc>SetRGB(unsigned long colRGB)
</autodoc> 
7649         <docstring>Sets the RGB intensity values from a packed RGB value.
</docstring> 
7651           <param name=
"colRGB" type=
"unsigned long" default=
""/> 
7654       <method name=
"SetFromName" type=
"" overloaded=
"no"> 
7655         <autodoc>SetFromName(String colourName)
</autodoc> 
7656         <docstring>Sets the RGB intensity values using a colour name listed in wx.TheColourDatabase.
</docstring> 
7658           <param name=
"colourName" type=
"String" default=
""/> 
7661       <method name=
"GetPixel" type=
"long" overloaded=
"no"> 
7662         <autodoc>GetPixel() -
> long
</autodoc> 
7663         <docstring>Returns a pixel value which is platform-dependent. On Windows, a
 
7664 COLORREF is returned. On X, an allocated pixel value is returned.
 
7665 -
1 is returned if the pixel is invalid (on X, unallocated).
</docstring> 
7667       <method name=
"__eq__" type=
"bool" overloaded=
"no"> 
7668         <autodoc>__eq__(Colour colour) -
> bool
</autodoc> 
7669         <docstring>Compare colours for equality
</docstring> 
7671           <param name=
"colour" type=
"Colour" default=
""/> 
7674       <method name=
"__ne__" type=
"bool" overloaded=
"no"> 
7675         <autodoc>__ne__(Colour colour) -
> bool
</autodoc> 
7676         <docstring>Compare colours for inequality
</docstring> 
7678           <param name=
"colour" type=
"Colour" default=
""/> 
7681       <method name=
"Get" type=
"PyObject" overloaded=
"no"> 
7682         <autodoc>Get() -
> (r, g, b)
</autodoc> 
7683         <docstring>Returns the RGB intensity values as a tuple.
</docstring> 
7685       <method name=
"GetRGB" type=
"unsigned long" overloaded=
"no"> 
7686         <autodoc>GetRGB() -
> unsigned long
</autodoc> 
7687         <docstring>Return the colour as a packed RGB value
</docstring> 
7692     NamedColor = NamedColour
 
7693     ColorRGB = ColourRGB
 
7695     <class name=
"Palette" oldname=
"wxPalette" module=
"gdi"> 
7696       <baseclass name=
"GDIObject"/> 
7697       <constructor name=
"Palette" overloaded=
"no"> 
7698         <autodoc>__init__(int n, unsigned char red, unsigned char green, unsigned char blue) -
> Palette
</autodoc> 
7700           <param name=
"n" type=
"int" default=
""/> 
7701           <param name=
"red" type=
"unsigned char" default=
""/> 
7702           <param name=
"green" type=
"unsigned char" default=
""/> 
7703           <param name=
"blue" type=
"unsigned char" default=
""/> 
7706       <destructor name=
"~wxPalette" overloaded=
"no"> 
7707         <autodoc>__del__()
</autodoc> 
7709       <method name=
"GetPixel" type=
"int" overloaded=
"no"> 
7710         <autodoc>GetPixel(byte red, byte green, byte blue) -
> int
</autodoc> 
7712           <param name=
"red" type=
"byte" default=
""/> 
7713           <param name=
"green" type=
"byte" default=
""/> 
7714           <param name=
"blue" type=
"byte" default=
""/> 
7717       <method name=
"GetRGB" type=
"bool" overloaded=
"no"> 
7718         <autodoc>GetRGB(int pixel) -
> (R,G,B)
</autodoc> 
7720           <param name=
"pixel" type=
"int" default=
""/> 
7721           <param name=
"OUTPUT" type=
"byte" default=
""/> 
7722           <param name=
"OUTPUT" type=
"byte" default=
""/> 
7723           <param name=
"OUTPUT" type=
"byte" default=
""/> 
7726       <method name=
"Ok" type=
"bool" overloaded=
"no"> 
7727         <autodoc>Ok() -
> bool
</autodoc> 
7731 #---------------------------------------------------------------------------
 
7733     <class name=
"Pen" oldname=
"wxPen" module=
"gdi"> 
7734       <baseclass name=
"GDIObject"/> 
7735       <constructor name=
"Pen" overloaded=
"no"> 
7736         <autodoc>__init__(Colour colour, int width=
1, int style=SOLID) -
> Pen
</autodoc> 
7738           <param name=
"colour" type=
"Colour" default=
""/> 
7739           <param name=
"width" type=
"int" default=
"1"/> 
7740           <param name=
"style" type=
"int" default=
"wxSOLID"/> 
7743       <destructor name=
"~wxPen" overloaded=
"no"> 
7744         <autodoc>__del__()
</autodoc> 
7746       <method name=
"GetCap" type=
"int" overloaded=
"no"> 
7747         <autodoc>GetCap() -
> int
</autodoc> 
7749       <method name=
"GetColour" type=
"Colour" overloaded=
"no"> 
7750         <autodoc>GetColour() -
> Colour
</autodoc> 
7752       <method name=
"GetJoin" type=
"int" overloaded=
"no"> 
7753         <autodoc>GetJoin() -
> int
</autodoc> 
7755       <method name=
"GetStyle" type=
"int" overloaded=
"no"> 
7756         <autodoc>GetStyle() -
> int
</autodoc> 
7758       <method name=
"GetWidth" type=
"int" overloaded=
"no"> 
7759         <autodoc>GetWidth() -
> int
</autodoc> 
7761       <method name=
"Ok" type=
"bool" overloaded=
"no"> 
7762         <autodoc>Ok() -
> bool
</autodoc> 
7764       <method name=
"SetCap" type=
"" overloaded=
"no"> 
7765         <autodoc>SetCap(int cap_style)
</autodoc> 
7767           <param name=
"cap_style" type=
"int" default=
""/> 
7770       <method name=
"SetColour" type=
"" overloaded=
"no"> 
7771         <autodoc>SetColour(Colour colour)
</autodoc> 
7773           <param name=
"colour" type=
"Colour" default=
""/> 
7776       <method name=
"SetJoin" type=
"" overloaded=
"no"> 
7777         <autodoc>SetJoin(int join_style)
</autodoc> 
7779           <param name=
"join_style" type=
"int" default=
""/> 
7782       <method name=
"SetStyle" type=
"" overloaded=
"no"> 
7783         <autodoc>SetStyle(int style)
</autodoc> 
7785           <param name=
"style" type=
"int" default=
""/> 
7788       <method name=
"SetWidth" type=
"" overloaded=
"no"> 
7789         <autodoc>SetWidth(int width)
</autodoc> 
7791           <param name=
"width" type=
"int" default=
""/> 
7794       <method name=
"SetDashes" type=
"" overloaded=
"no"> 
7795         <autodoc>SetDashes(int dashes, wxDash dashes_array)
</autodoc> 
7797           <param name=
"dashes" type=
"int" default=
""/> 
7798           <param name=
"dashes_array" type=
"wxDash" default=
""/> 
7801       <method name=
"GetDashes" type=
"PyObject" overloaded=
"no"> 
7802         <autodoc>GetDashes() -
> PyObject
</autodoc> 
7804       <method name=
"__eq__" type=
"bool" overloaded=
"no"> 
7805         <autodoc>__eq__(Pen other) -
> bool
</autodoc> 
7807           <param name=
"other" type=
"Pen" default=
""/> 
7810       <method name=
"__ne__" type=
"bool" overloaded=
"no"> 
7811         <autodoc>__ne__(Pen other) -
> bool
</autodoc> 
7813           <param name=
"other" type=
"Pen" default=
""/> 
7816       <method name=
"GetDashCount" type=
"int" overloaded=
"no"> 
7817         <autodoc>GetDashCount() -
> int
</autodoc> 
7820     <class name=
"PyPen" oldname=
"wxPyPen" module=
"gdi"> 
7821       <baseclass name=
"Pen"/> 
7822       <constructor name=
"PyPen" overloaded=
"no"> 
7823         <autodoc>__init__(Colour colour, int width=
1, int style=SOLID) -
> PyPen
</autodoc> 
7825           <param name=
"colour" type=
"Colour" default=
""/> 
7826           <param name=
"width" type=
"int" default=
"1"/> 
7827           <param name=
"style" type=
"int" default=
"wxSOLID"/> 
7830       <destructor name=
"~wxPyPen" overloaded=
"no"> 
7831         <autodoc>__del__()
</autodoc> 
7833       <method name=
"SetDashes" type=
"" overloaded=
"no"> 
7834         <autodoc>SetDashes(int dashes, wxDash dashes_array)
</autodoc> 
7836           <param name=
"dashes" type=
"int" default=
""/> 
7837           <param name=
"dashes_array" type=
"wxDash" default=
""/> 
7841     <pythoncode> Pen = PyPen 
</pythoncode> 
7843 #---------------------------------------------------------------------------
 
7845     <class name=
"Brush" oldname=
"wxBrush" module=
"gdi"> 
7846       <docstring>A brush is a drawing tool for filling in areas. It is used for painting the
 
7847 background of rectangles, ellipses, etc. It has a colour and a style.
</docstring> 
7848       <baseclass name=
"GDIObject"/> 
7849       <constructor name=
"Brush" overloaded=
"no"> 
7850         <autodoc>__init__(Colour colour, int style=SOLID) -
> Brush
</autodoc> 
7851         <docstring>Constructs a brush from a colour object and style.
</docstring> 
7853           <param name=
"colour" type=
"Colour" default=
""/> 
7854           <param name=
"style" type=
"int" default=
"wxSOLID"/> 
7857       <destructor name=
"~wxBrush" overloaded=
"no"> 
7858         <autodoc>__del__()
</autodoc> 
7860       <method name=
"SetColour" type=
"" overloaded=
"no"> 
7861         <autodoc>SetColour(Colour col)
</autodoc> 
7863           <param name=
"col" type=
"Colour" default=
""/> 
7866       <method name=
"SetStyle" type=
"" overloaded=
"no"> 
7867         <autodoc>SetStyle(int style)
</autodoc> 
7869           <param name=
"style" type=
"int" default=
""/> 
7872       <method name=
"SetStipple" type=
"" overloaded=
"no"> 
7873         <autodoc>SetStipple(Bitmap stipple)
</autodoc> 
7875           <param name=
"stipple" type=
"wxBitmap" default=
""/> 
7878       <method name=
"GetColour" type=
"Colour" overloaded=
"no"> 
7879         <autodoc>GetColour() -
> Colour
</autodoc> 
7881       <method name=
"GetStyle" type=
"int" overloaded=
"no"> 
7882         <autodoc>GetStyle() -
> int
</autodoc> 
7884       <method name=
"GetStipple" type=
"wxBitmap" overloaded=
"no"> 
7885         <autodoc>GetStipple() -
> Bitmap
</autodoc> 
7887       <method name=
"Ok" type=
"bool" overloaded=
"no"> 
7888         <autodoc>Ok() -
> bool
</autodoc> 
7891     <class name=
"Bitmap" oldname=
"wxBitmap" module=
"gdi"> 
7892       <baseclass name=
"GDIObject"/> 
7893       <constructor name=
"Bitmap" overloaded=
"no"> 
7894         <autodoc>__init__(String name, int type=BITMAP_TYPE_ANY) -
> Bitmap
</autodoc> 
7895         <docstring>Loads a bitmap from a file.
</docstring> 
7897           <param name=
"name" type=
"String" default=
""/> 
7898           <param name=
"type" type=
"wxBitmapType" default=
"wxBITMAP_TYPE_ANY"/> 
7901       <constructor name=
"EmptyBitmap" overloaded=
"no"> 
7902         <autodoc>EmptyBitmap(int width, int height, int depth=-
1) -
> Bitmap
</autodoc> 
7903         <docstring>Creates a new bitmap of the given size.  A depth of -
1 indicates the depth of
 
7904 the current screen or visual. Some platforms only support 
1 for monochrome and
 
7905 -
1 for the current colour setting.
</docstring> 
7907           <param name=
"width" type=
"int" default=
""/> 
7908           <param name=
"height" type=
"int" default=
""/> 
7909           <param name=
"depth" type=
"int" default=
"-1"/> 
7912       <constructor name=
"BitmapFromIcon" overloaded=
"no"> 
7913         <autodoc>BitmapFromIcon(Icon icon) -
> Bitmap
</autodoc> 
7914         <docstring>Create a new bitmap from an Icon object.
</docstring> 
7916           <param name=
"icon" type=
"wxIcon" default=
""/> 
7919       <constructor name=
"BitmapFromImage" overloaded=
"no"> 
7920         <autodoc>BitmapFromImage(Image image, int depth=-
1) -
> Bitmap
</autodoc> 
7921         <docstring>Creates bitmap object from the image. This has to be done to actually display
 
7922 an image as you cannot draw an image directly on a window. The resulting
 
7923 bitmap will use the provided colour depth (or that of the current system if
 
7924 depth is -
1) which entails that a colour reduction has to take place.
</docstring> 
7926           <param name=
"image" type=
"Image" default=
""/> 
7927           <param name=
"depth" type=
"int" default=
"-1"/> 
7930       <constructor name=
"BitmapFromXPMData" overloaded=
"no"> 
7931         <autodoc>BitmapFromXPMData(PyObject listOfStrings) -
> Bitmap
</autodoc> 
7932         <docstring>Construct a Bitmap from a list of strings formatted as XPM data.
</docstring> 
7934           <param name=
"listOfStrings" type=
"PyObject" default=
""/> 
7937       <constructor name=
"BitmapFromBits" overloaded=
"no"> 
7938         <autodoc>BitmapFromBits(PyObject bits, int width, int height, int depth=
1) -
> Bitmap
</autodoc> 
7939         <docstring>Creates a bitmap from an array of bits.  You should only use this function for
 
7940 monochrome bitmaps (depth 
1) in portable programs: in this case the bits
 
7941 parameter should contain an XBM image.  For other bit depths, the behaviour is
 
7942 platform dependent.
</docstring> 
7944           <param name=
"bits" type=
"PyObject" default=
""/> 
7945           <param name=
"width" type=
"int" default=
""/> 
7946           <param name=
"height" type=
"int" default=
""/> 
7947           <param name=
"depth" type=
"int" default=
"1"/> 
7950       <destructor name=
"~wxBitmap" overloaded=
"no"> 
7951         <autodoc>__del__()
</autodoc> 
7953       <method name=
"Ok" type=
"bool" overloaded=
"no"> 
7954         <autodoc>Ok() -
> bool
</autodoc> 
7956       <method name=
"GetWidth" type=
"int" overloaded=
"no"> 
7957         <autodoc>GetWidth() -
> int
</autodoc> 
7958         <docstring>Gets the width of the bitmap in pixels.
</docstring> 
7960       <method name=
"GetHeight" type=
"int" overloaded=
"no"> 
7961         <autodoc>GetHeight() -
> int
</autodoc> 
7962         <docstring>Gets the height of the bitmap in pixels.
</docstring> 
7964       <method name=
"GetDepth" type=
"int" overloaded=
"no"> 
7965         <autodoc>GetDepth() -
> int
</autodoc> 
7966         <docstring>Gets the colour depth of the bitmap. A value of 
1 indicates a
 
7967 monochrome bitmap.
</docstring> 
7969       <method name=
"ConvertToImage" type=
"Image" overloaded=
"no"> 
7970         <autodoc>ConvertToImage() -
> Image
</autodoc> 
7971         <docstring>Creates a platform-independent image from a platform-dependent bitmap. This
 
7972 preserves mask information so that bitmaps and images can be converted back
 
7973 and forth without loss in that respect.
</docstring> 
7975       <method name=
"GetMask" type=
"wxMask" overloaded=
"no"> 
7976         <autodoc>GetMask() -
> Mask
</autodoc> 
7977         <docstring>Gets the associated mask (if any) which may have been loaded from a file
 
7978 or explpicitly set for the bitmap.
</docstring> 
7980       <method name=
"SetMask" type=
"" overloaded=
"no"> 
7981         <autodoc>SetMask(Mask mask)
</autodoc> 
7982         <docstring>Sets the mask for this bitmap.
</docstring> 
7984           <param name=
"mask" type=
"wxMask" default=
""/> 
7987       <method name=
"SetMaskColour" type=
"" overloaded=
"no"> 
7988         <autodoc>SetMaskColour(Colour colour)
</autodoc> 
7989         <docstring>Create a Mask based on a specified colour in the Bitmap.
</docstring> 
7991           <param name=
"colour" type=
"Colour" default=
""/> 
7994       <method name=
"GetSubBitmap" type=
"Bitmap" overloaded=
"no"> 
7995         <autodoc>GetSubBitmap(Rect rect) -
> Bitmap
</autodoc> 
7996         <docstring>Returns a sub bitmap of the current one as long as the rect belongs entirely
 
7997 to the bitmap. This function preserves bit depth and mask information.
</docstring> 
7999           <param name=
"rect" type=
"Rect" default=
""/> 
8002       <method name=
"SaveFile" type=
"bool" overloaded=
"no"> 
8003         <autodoc>SaveFile(String name, int type, Palette palette=(wxPalette *) NULL) -
> bool
</autodoc> 
8004         <docstring>Saves a bitmap in the named file.
</docstring> 
8006           <param name=
"name" type=
"String" default=
""/> 
8007           <param name=
"type" type=
"wxBitmapType" default=
""/> 
8008           <param name=
"palette" type=
"Palette" default=
"(wxPalette *) NULL"/> 
8011       <method name=
"LoadFile" type=
"bool" overloaded=
"no"> 
8012         <autodoc>LoadFile(String name, int type) -
> bool
</autodoc> 
8013         <docstring>Loads a bitmap from a file
</docstring> 
8015           <param name=
"name" type=
"String" default=
""/> 
8016           <param name=
"type" type=
"wxBitmapType" default=
""/> 
8019       <method name=
"CopyFromIcon" type=
"bool" overloaded=
"no"> 
8020         <autodoc>CopyFromIcon(Icon icon) -
> bool
</autodoc> 
8022           <param name=
"icon" type=
"wxIcon" default=
""/> 
8025       <method name=
"SetHeight" type=
"" overloaded=
"no"> 
8026         <autodoc>SetHeight(int height)
</autodoc> 
8027         <docstring>Set the height property (does not affect the bitmap data).
</docstring> 
8029           <param name=
"height" type=
"int" default=
""/> 
8032       <method name=
"SetWidth" type=
"" overloaded=
"no"> 
8033         <autodoc>SetWidth(int width)
</autodoc> 
8034         <docstring>Set the width property (does not affect the bitmap data).
</docstring> 
8036           <param name=
"width" type=
"int" default=
""/> 
8039       <method name=
"SetDepth" type=
"" overloaded=
"no"> 
8040         <autodoc>SetDepth(int depth)
</autodoc> 
8041         <docstring>Set the depth property (does not affect the bitmap data).
</docstring> 
8043           <param name=
"depth" type=
"int" default=
""/> 
8046       <method name=
"__eq__" type=
"bool" overloaded=
"no"> 
8047         <autodoc>__eq__(Bitmap other) -
> bool
</autodoc> 
8049           <param name=
"other" type=
"Bitmap" default=
""/> 
8052       <method name=
"__ne__" type=
"bool" overloaded=
"no"> 
8053         <autodoc>__ne__(Bitmap other) -
> bool
</autodoc> 
8055           <param name=
"other" type=
"Bitmap" default=
""/> 
8059     <class name=
"Mask" oldname=
"wxMask" module=
"gdi"> 
8060       <docstring>This class encapsulates a monochrome mask bitmap, where the masked area is
 
8061 black and the unmasked area is white. When associated with a bitmap and drawn
 
8062 in a device context, the unmasked area of the bitmap will be drawn, and the
 
8063 masked area will not be drawn.
</docstring> 
8064       <baseclass name=
"Object"/> 
8065       <constructor name=
"Mask" overloaded=
"no"> 
8066         <autodoc>__init__(Bitmap bitmap, Colour colour=NullColour) -
> Mask
</autodoc> 
8067         <docstring>Constructs a mask from a bitmap and a colour in that bitmap that indicates
 
8068 the transparent portions of the mask, by default BLACK is used.
</docstring> 
8070           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
8071           <param name=
"colour" type=
"Colour" default=
"wxNullColour"/> 
8075     <pythoncode> MaskColour = Mask 
</pythoncode> 
8076     <class name=
"Icon" oldname=
"wxIcon" module=
"gdi"> 
8077       <baseclass name=
"GDIObject"/> 
8078       <constructor name=
"Icon" overloaded=
"no"> 
8079         <autodoc>__init__(String name, int type, int desiredWidth=-
1, int desiredHeight=-
1) -
> Icon
</autodoc> 
8081           <param name=
"name" type=
"String" default=
""/> 
8082           <param name=
"type" type=
"wxBitmapType" default=
""/> 
8083           <param name=
"desiredWidth" type=
"int" default=
"-1"/> 
8084           <param name=
"desiredHeight" type=
"int" default=
"-1"/> 
8087       <constructor name=
"EmptyIcon" overloaded=
"no"> 
8088         <autodoc>EmptyIcon() -
> Icon
</autodoc> 
8090       <constructor name=
"IconFromLocation" overloaded=
"no"> 
8091         <autodoc>IconFromLocation(IconLocation loc) -
> Icon
</autodoc> 
8093           <param name=
"loc" type=
"wxIconLocation" default=
""/> 
8096       <constructor name=
"IconFromBitmap" overloaded=
"no"> 
8097         <autodoc>IconFromBitmap(Bitmap bmp) -
> Icon
</autodoc> 
8099           <param name=
"bmp" type=
"Bitmap" default=
""/> 
8102       <constructor name=
"IconFromXPMData" overloaded=
"no"> 
8103         <autodoc>IconFromXPMData(PyObject listOfStrings) -
> Icon
</autodoc> 
8105           <param name=
"listOfStrings" type=
"PyObject" default=
""/> 
8108       <destructor name=
"~wxIcon" overloaded=
"no"> 
8109         <autodoc>__del__()
</autodoc> 
8111       <method name=
"LoadFile" type=
"bool" overloaded=
"no"> 
8112         <autodoc>LoadFile(String name, int type) -
> bool
</autodoc> 
8114           <param name=
"name" type=
"String" default=
""/> 
8115           <param name=
"type" type=
"wxBitmapType" default=
""/> 
8118       <method name=
"Ok" type=
"bool" overloaded=
"no"> 
8119         <autodoc>Ok() -
> bool
</autodoc> 
8121       <method name=
"GetWidth" type=
"int" overloaded=
"no"> 
8122         <autodoc>GetWidth() -
> int
</autodoc> 
8124       <method name=
"GetHeight" type=
"int" overloaded=
"no"> 
8125         <autodoc>GetHeight() -
> int
</autodoc> 
8127       <method name=
"GetDepth" type=
"int" overloaded=
"no"> 
8128         <autodoc>GetDepth() -
> int
</autodoc> 
8130       <method name=
"SetWidth" type=
"" overloaded=
"no"> 
8131         <autodoc>SetWidth(int w)
</autodoc> 
8133           <param name=
"w" type=
"int" default=
""/> 
8136       <method name=
"SetHeight" type=
"" overloaded=
"no"> 
8137         <autodoc>SetHeight(int h)
</autodoc> 
8139           <param name=
"h" type=
"int" default=
""/> 
8142       <method name=
"SetDepth" type=
"" overloaded=
"no"> 
8143         <autodoc>SetDepth(int d)
</autodoc> 
8145           <param name=
"d" type=
"int" default=
""/> 
8148       <method name=
"CopyFromBitmap" type=
"" overloaded=
"no"> 
8149         <autodoc>CopyFromBitmap(Bitmap bmp)
</autodoc> 
8151           <param name=
"bmp" type=
"Bitmap" default=
""/> 
8155     <class name=
"IconLocation" oldname=
"wxIconLocation" module=
"gdi"> 
8156       <constructor name=
"IconLocation" overloaded=
"no"> 
8157         <autodoc>__init__(String filename=
&wxPyEmptyString, int num=
0) -
> IconLocation
</autodoc> 
8159           <param name=
"filename" type=
"String" default=
"&wxPyEmptyString"/> 
8160           <param name=
"num" type=
"int" default=
"0"/> 
8163       <destructor name=
"~wxIconLocation" overloaded=
"no"> 
8164         <autodoc>__del__()
</autodoc> 
8166       <method name=
"IsOk" type=
"bool" overloaded=
"no"> 
8167         <autodoc>IsOk() -
> bool
</autodoc> 
8169       <method name=
"SetFileName" type=
"" overloaded=
"no"> 
8170         <autodoc>SetFileName(String filename)
</autodoc> 
8172           <param name=
"filename" type=
"String" default=
""/> 
8175       <method name=
"GetFileName" type=
"String" overloaded=
"no"> 
8176         <autodoc>GetFileName() -
> String
</autodoc> 
8178       <method name=
"SetIndex" type=
"" overloaded=
"no"> 
8179         <autodoc>SetIndex(int num)
</autodoc> 
8181           <param name=
"num" type=
"int" default=
""/> 
8184       <method name=
"GetIndex" type=
"int" overloaded=
"no"> 
8185         <autodoc>GetIndex() -
> int
</autodoc> 
8188     <class name=
"IconBundle" oldname=
"wxIconBundle" module=
"gdi"> 
8189       <constructor name=
"IconBundle" overloaded=
"no"> 
8190         <autodoc>__init__() -
> IconBundle
</autodoc> 
8192       <constructor name=
"IconBundleFromFile" overloaded=
"no"> 
8193         <autodoc>IconBundleFromFile(String file, long type) -
> IconBundle
</autodoc> 
8195           <param name=
"file" type=
"String" default=
""/> 
8196           <param name=
"type" type=
"long" default=
""/> 
8199       <constructor name=
"IconBundleFromIcon" overloaded=
"no"> 
8200         <autodoc>IconBundleFromIcon(Icon icon) -
> IconBundle
</autodoc> 
8202           <param name=
"icon" type=
"Icon" default=
""/> 
8205       <destructor name=
"~wxIconBundle" overloaded=
"no"> 
8206         <autodoc>__del__()
</autodoc> 
8208       <method name=
"AddIcon" type=
"" overloaded=
"no"> 
8209         <autodoc>AddIcon(Icon icon)
</autodoc> 
8211           <param name=
"icon" type=
"Icon" default=
""/> 
8214       <method name=
"AddIconFromFile" type=
"" overloaded=
"no"> 
8215         <autodoc>AddIconFromFile(String file, long type)
</autodoc> 
8217           <param name=
"file" type=
"String" default=
""/> 
8218           <param name=
"type" type=
"long" default=
""/> 
8221       <method name=
"GetIcon" type=
"Icon" overloaded=
"no"> 
8222         <autodoc>GetIcon(Size size) -
> Icon
</autodoc> 
8224           <param name=
"size" type=
"Size" default=
""/> 
8228     <class name=
"Cursor" oldname=
"wxCursor" module=
"gdi"> 
8229       <docstring>A cursor is a small bitmap usually used for denoting where the
 
8230 mouse pointer is, with a picture that might indicate the
 
8231 interpretation of a mouse click.
 
8233 A single cursor object may be used in many windows (any subwindow
 
8234 type). The wxWindows convention is to set the cursor for a
 
8235 window, as in X, rather than to set it globally as in MS Windows,
 
8236 although a global wx.SetCursor function is also available for use
 
8237 on MS Windows.
</docstring> 
8238       <baseclass name=
"GDIObject"/> 
8239       <constructor name=
"Cursor" overloaded=
"no"> 
8240         <autodoc>__init__(String cursorName, long type, int hotSpotX=
0, int hotSpotY=
0) -
> Cursor
</autodoc> 
8241         <docstring>Construct a Cursor from a file.  Specify the type of file using
 
8242 wx.BITAMP_TYPE* constants, and specify the hotspot if not using a
 
8245 This cursor is not available on wxGTK, use wx.StockCursor,
 
8246 wx.CursorFromImage, or wx.CursorFromBits instead.
</docstring> 
8248           <param name=
"cursorName" type=
"String" default=
""/> 
8249           <param name=
"type" type=
"long" default=
""/> 
8250           <param name=
"hotSpotX" type=
"int" default=
"0"/> 
8251           <param name=
"hotSpotY" type=
"int" default=
"0"/> 
8254       <constructor name=
"StockCursor" overloaded=
"no"> 
8255         <autodoc>StockCursor(int id) -
> Cursor
</autodoc> 
8256         <docstring>Create a cursor using one of the stock cursors.  Note that not
 
8257 all cursors are available on all platforms.
</docstring> 
8261     wx.CURSOR_ARROW             A standard arrow cursor.
 
8262     wx.CURSOR_RIGHT_ARROW       A standard arrow cursor pointing to the right.
 
8263     wx.CURSOR_BLANK             Transparent cursor.
 
8264     wx.CURSOR_BULLSEYE          Bullseye cursor.
 
8265     wx.CURSOR_CHAR              Rectangular character cursor.
 
8266     wx.CURSOR_CROSS             A cross cursor.
 
8267     wx.CURSOR_HAND              A hand cursor.
 
8268     wx.CURSOR_IBEAM             An I-beam cursor (vertical line).
 
8269     wx.CURSOR_LEFT_BUTTON       Represents a mouse with the left button depressed.
 
8270     wx.CURSOR_MAGNIFIER         A magnifier icon.
 
8271     wx.CURSOR_MIDDLE_BUTTON     Represents a mouse with the middle button depressed.
 
8272     wx.CURSOR_NO_ENTRY          A no-entry sign cursor.
 
8273     wx.CURSOR_PAINT_BRUSH       A paintbrush cursor.
 
8274     wx.CURSOR_PENCIL            A pencil cursor.
 
8275     wx.CURSOR_POINT_LEFT        A cursor that points left.
 
8276     wx.CURSOR_POINT_RIGHT       A cursor that points right.
 
8277     wx.CURSOR_QUESTION_ARROW    An arrow and question mark.
 
8278     wx.CURSOR_RIGHT_BUTTON      Represents a mouse with the right button depressed.
 
8279     wx.CURSOR_SIZENESW          A sizing cursor pointing NE-SW.
 
8280     wx.CURSOR_SIZENS            A sizing cursor pointing N-S.
 
8281     wx.CURSOR_SIZENWSE          A sizing cursor pointing NW-SE.
 
8282     wx.CURSOR_SIZEWE            A sizing cursor pointing W-E.
 
8283     wx.CURSOR_SIZING            A general sizing cursor.
 
8284     wx.CURSOR_SPRAYCAN          A spraycan cursor.
 
8285     wx.CURSOR_WAIT              A wait cursor.
 
8286     wx.CURSOR_WATCH             A watch cursor.
 
8287     wx.CURSOR_ARROWWAIT         A cursor with both an arrow and an hourglass, (windows.)
 
8291           <param name=
"id" type=
"int" default=
""/> 
8294       <constructor name=
"CursorFromImage" overloaded=
"no"> 
8295         <autodoc>CursorFromImage(Image image) -
> Cursor
</autodoc> 
8296         <docstring>Constructs a cursor from a wxImage. The cursor is monochrome,
 
8297 colors with the RGB elements all greater than 
127 will be
 
8298 foreground, colors less than this background. The mask (if any)
 
8299 will be used as transparent.
 
8301 In MSW the foreground will be white and the background black. The
 
8302 cursor is resized to 
32x32 In GTK, the two most frequent colors
 
8303 will be used for foreground and background. The cursor will be
 
8304 displayed at the size of the image. On MacOS the cursor is
 
8305 resized to 
16x16 and currently only shown as black/white (mask
 
8306 respected).
</docstring> 
8308           <param name=
"image" type=
"Image" default=
""/> 
8311       <destructor name=
"~wxCursor" overloaded=
"no"> 
8312         <autodoc>__del__()
</autodoc> 
8314       <method name=
"Ok" type=
"bool" overloaded=
"no"> 
8315         <autodoc>Ok() -
> bool
</autodoc> 
8319 #---------------------------------------------------------------------------
 
8321     <class name=
"Region" oldname=
"wxRegion" module=
"gdi"> 
8322       <baseclass name=
"GDIObject"/> 
8323       <constructor name=
"Region" overloaded=
"no"> 
8324         <autodoc>__init__(int x=
0, int y=
0, int width=
0, int height=
0) -
> Region
</autodoc> 
8326           <param name=
"x" type=
"int" default=
"0"/> 
8327           <param name=
"y" type=
"int" default=
"0"/> 
8328           <param name=
"width" type=
"int" default=
"0"/> 
8329           <param name=
"height" type=
"int" default=
"0"/> 
8332       <constructor name=
"RegionFromBitmap" overloaded=
"no"> 
8333         <autodoc>RegionFromBitmap(Bitmap bmp, Colour transColour=NullColour, int tolerance=
0) -
> Region
</autodoc> 
8335           <param name=
"bmp" type=
"Bitmap" default=
""/> 
8336           <param name=
"transColour" type=
"Colour" default=
"wxNullColour"/> 
8337           <param name=
"tolerance" type=
"int" default=
"0"/> 
8340       <constructor name=
"RegionFromPoints" overloaded=
"no"> 
8341         <autodoc>RegionFromPoints(int points, Point points_array, int fillStyle=WINDING_RULE) -
> Region
</autodoc> 
8343           <param name=
"points" type=
"int" default=
""/> 
8344           <param name=
"points_array" type=
"Point" default=
""/> 
8345           <param name=
"fillStyle" type=
"int" default=
"wxWINDING_RULE"/> 
8348       <destructor name=
"~wxRegion" overloaded=
"no"> 
8349         <autodoc>__del__()
</autodoc> 
8351       <method name=
"Clear" type=
"" overloaded=
"no"> 
8352         <autodoc>Clear()
</autodoc> 
8354       <method name=
"Offset" type=
"bool" overloaded=
"no"> 
8355         <autodoc>Offset(int x, int y) -
> bool
</autodoc> 
8357           <param name=
"x" type=
"int" default=
""/> 
8358           <param name=
"y" type=
"int" default=
""/> 
8361       <method name=
"Contains" type=
"wxRegionContain" overloaded=
"no"> 
8362         <autodoc>Contains(int x, int y) -
> int
</autodoc> 
8364           <param name=
"x" type=
"int" default=
""/> 
8365           <param name=
"y" type=
"int" default=
""/> 
8368       <method name=
"ContainsPoint" type=
"wxRegionContain" overloaded=
"no"> 
8369         <autodoc>ContainsPoint(Point pt) -
> int
</autodoc> 
8371           <param name=
"pt" type=
"Point" default=
""/> 
8374       <method name=
"ContainsRect" type=
"wxRegionContain" overloaded=
"no"> 
8375         <autodoc>ContainsRect(Rect rect) -
> int
</autodoc> 
8377           <param name=
"rect" type=
"Rect" default=
""/> 
8380       <method name=
"ContainsRectDim" type=
"wxRegionContain" overloaded=
"no"> 
8381         <autodoc>ContainsRectDim(int x, int y, int w, int h) -
> int
</autodoc> 
8383           <param name=
"x" type=
"int" default=
""/> 
8384           <param name=
"y" type=
"int" default=
""/> 
8385           <param name=
"w" type=
"int" default=
""/> 
8386           <param name=
"h" type=
"int" default=
""/> 
8389       <method name=
"GetBox" type=
"Rect" overloaded=
"no"> 
8390         <autodoc>GetBox() -
> Rect
</autodoc> 
8392       <method name=
"Intersect" type=
"bool" overloaded=
"no"> 
8393         <autodoc>Intersect(int x, int y, int width, int height) -
> bool
</autodoc> 
8395           <param name=
"x" type=
"int" default=
""/> 
8396           <param name=
"y" type=
"int" default=
""/> 
8397           <param name=
"width" type=
"int" default=
""/> 
8398           <param name=
"height" type=
"int" default=
""/> 
8401       <method name=
"IntersectRect" type=
"bool" overloaded=
"no"> 
8402         <autodoc>IntersectRect(Rect rect) -
> bool
</autodoc> 
8404           <param name=
"rect" type=
"Rect" default=
""/> 
8407       <method name=
"IntersectRegion" type=
"bool" overloaded=
"no"> 
8408         <autodoc>IntersectRegion(Region region) -
> bool
</autodoc> 
8410           <param name=
"region" type=
"Region" default=
""/> 
8413       <method name=
"IsEmpty" type=
"bool" overloaded=
"no"> 
8414         <autodoc>IsEmpty() -
> bool
</autodoc> 
8416       <method name=
"Union" type=
"bool" overloaded=
"no"> 
8417         <autodoc>Union(int x, int y, int width, int height) -
> bool
</autodoc> 
8419           <param name=
"x" type=
"int" default=
""/> 
8420           <param name=
"y" type=
"int" default=
""/> 
8421           <param name=
"width" type=
"int" default=
""/> 
8422           <param name=
"height" type=
"int" default=
""/> 
8425       <method name=
"UnionRect" type=
"bool" overloaded=
"no"> 
8426         <autodoc>UnionRect(Rect rect) -
> bool
</autodoc> 
8428           <param name=
"rect" type=
"Rect" default=
""/> 
8431       <method name=
"UnionRegion" type=
"bool" overloaded=
"no"> 
8432         <autodoc>UnionRegion(Region region) -
> bool
</autodoc> 
8434           <param name=
"region" type=
"Region" default=
""/> 
8437       <method name=
"Subtract" type=
"bool" overloaded=
"no"> 
8438         <autodoc>Subtract(int x, int y, int width, int height) -
> bool
</autodoc> 
8440           <param name=
"x" type=
"int" default=
""/> 
8441           <param name=
"y" type=
"int" default=
""/> 
8442           <param name=
"width" type=
"int" default=
""/> 
8443           <param name=
"height" type=
"int" default=
""/> 
8446       <method name=
"SubtractRect" type=
"bool" overloaded=
"no"> 
8447         <autodoc>SubtractRect(Rect rect) -
> bool
</autodoc> 
8449           <param name=
"rect" type=
"Rect" default=
""/> 
8452       <method name=
"SubtractRegion" type=
"bool" overloaded=
"no"> 
8453         <autodoc>SubtractRegion(Region region) -
> bool
</autodoc> 
8455           <param name=
"region" type=
"Region" default=
""/> 
8458       <method name=
"Xor" type=
"bool" overloaded=
"no"> 
8459         <autodoc>Xor(int x, int y, int width, int height) -
> bool
</autodoc> 
8461           <param name=
"x" type=
"int" default=
""/> 
8462           <param name=
"y" type=
"int" default=
""/> 
8463           <param name=
"width" type=
"int" default=
""/> 
8464           <param name=
"height" type=
"int" default=
""/> 
8467       <method name=
"XorRect" type=
"bool" overloaded=
"no"> 
8468         <autodoc>XorRect(Rect rect) -
> bool
</autodoc> 
8470           <param name=
"rect" type=
"Rect" default=
""/> 
8473       <method name=
"XorRegion" type=
"bool" overloaded=
"no"> 
8474         <autodoc>XorRegion(Region region) -
> bool
</autodoc> 
8476           <param name=
"region" type=
"Region" default=
""/> 
8479       <method name=
"ConvertToBitmap" type=
"Bitmap" overloaded=
"no"> 
8480         <autodoc>ConvertToBitmap() -
> Bitmap
</autodoc> 
8482       <method name=
"UnionBitmap" type=
"bool" overloaded=
"no"> 
8483         <autodoc>UnionBitmap(Bitmap bmp, Colour transColour=NullColour, int tolerance=
0) -
> bool
</autodoc> 
8485           <param name=
"bmp" type=
"Bitmap" default=
""/> 
8486           <param name=
"transColour" type=
"Colour" default=
"wxNullColour"/> 
8487           <param name=
"tolerance" type=
"int" default=
"0"/> 
8491     <class name=
"RegionIterator" oldname=
"wxRegionIterator" module=
"gdi"> 
8492       <baseclass name=
"Object"/> 
8493       <constructor name=
"RegionIterator" overloaded=
"no"> 
8494         <autodoc>__init__(Region region) -
> RegionIterator
</autodoc> 
8496           <param name=
"region" type=
"Region" default=
""/> 
8499       <destructor name=
"~wxRegionIterator" overloaded=
"no"> 
8500         <autodoc>__del__()
</autodoc> 
8502       <method name=
"GetX" type=
"int" overloaded=
"no"> 
8503         <autodoc>GetX() -
> int
</autodoc> 
8505       <method name=
"GetY" type=
"int" overloaded=
"no"> 
8506         <autodoc>GetY() -
> int
</autodoc> 
8508       <method name=
"GetW" type=
"int" overloaded=
"no"> 
8509         <autodoc>GetW() -
> int
</autodoc> 
8511       <method name=
"GetWidth" type=
"int" overloaded=
"no"> 
8512         <autodoc>GetWidth() -
> int
</autodoc> 
8514       <method name=
"GetH" type=
"int" overloaded=
"no"> 
8515         <autodoc>GetH() -
> int
</autodoc> 
8517       <method name=
"GetHeight" type=
"int" overloaded=
"no"> 
8518         <autodoc>GetHeight() -
> int
</autodoc> 
8520       <method name=
"GetRect" type=
"Rect" overloaded=
"no"> 
8521         <autodoc>GetRect() -
> Rect
</autodoc> 
8523       <method name=
"HaveRects" type=
"bool" overloaded=
"no"> 
8524         <autodoc>HaveRects() -
> bool
</autodoc> 
8526       <method name=
"Reset" type=
"" overloaded=
"no"> 
8527         <autodoc>Reset()
</autodoc> 
8529       <method name=
"Next" type=
"" overloaded=
"no"> 
8530         <autodoc>Next()
</autodoc> 
8532       <method name=
"__nonzero__" type=
"bool" overloaded=
"no"> 
8533         <autodoc>__nonzero__() -
> bool
</autodoc> 
8537 #---------------------------------------------------------------------------
 
8540 #---------------------------------------------------------------------------
 
8542     <class name=
"NativeFontInfo" oldname=
"wxNativeFontInfo" module=
"gdi"> 
8543       <constructor name=
"NativeFontInfo" overloaded=
"no"> 
8544         <autodoc>__init__() -
> NativeFontInfo
</autodoc> 
8546       <destructor name=
"~wxNativeFontInfo" overloaded=
"no"> 
8547         <autodoc>__del__()
</autodoc> 
8549       <method name=
"Init" type=
"" overloaded=
"no"> 
8550         <autodoc>Init()
</autodoc> 
8552       <method name=
"InitFromFont" type=
"" overloaded=
"no"> 
8553         <autodoc>InitFromFont(Font font)
</autodoc> 
8555           <param name=
"font" type=
"wxFont" default=
""/> 
8558       <method name=
"GetPointSize" type=
"int" overloaded=
"no"> 
8559         <autodoc>GetPointSize() -
> int
</autodoc> 
8561       <method name=
"GetStyle" type=
"wxFontStyle" overloaded=
"no"> 
8562         <autodoc>GetStyle() -
> int
</autodoc> 
8564       <method name=
"GetWeight" type=
"wxFontWeight" overloaded=
"no"> 
8565         <autodoc>GetWeight() -
> int
</autodoc> 
8567       <method name=
"GetUnderlined" type=
"bool" overloaded=
"no"> 
8568         <autodoc>GetUnderlined() -
> bool
</autodoc> 
8570       <method name=
"GetFaceName" type=
"String" overloaded=
"no"> 
8571         <autodoc>GetFaceName() -
> String
</autodoc> 
8573       <method name=
"GetFamily" type=
"wxFontFamily" overloaded=
"no"> 
8574         <autodoc>GetFamily() -
> int
</autodoc> 
8576       <method name=
"GetEncoding" type=
"wxFontEncoding" overloaded=
"no"> 
8577         <autodoc>GetEncoding() -
> int
</autodoc> 
8579       <method name=
"SetPointSize" type=
"" overloaded=
"no"> 
8580         <autodoc>SetPointSize(int pointsize)
</autodoc> 
8582           <param name=
"pointsize" type=
"int" default=
""/> 
8585       <method name=
"SetStyle" type=
"" overloaded=
"no"> 
8586         <autodoc>SetStyle(int style)
</autodoc> 
8588           <param name=
"style" type=
"wxFontStyle" default=
""/> 
8591       <method name=
"SetWeight" type=
"" overloaded=
"no"> 
8592         <autodoc>SetWeight(int weight)
</autodoc> 
8594           <param name=
"weight" type=
"wxFontWeight" default=
""/> 
8597       <method name=
"SetUnderlined" type=
"" overloaded=
"no"> 
8598         <autodoc>SetUnderlined(bool underlined)
</autodoc> 
8600           <param name=
"underlined" type=
"bool" default=
""/> 
8603       <method name=
"SetFaceName" type=
"" overloaded=
"no"> 
8604         <autodoc>SetFaceName(String facename)
</autodoc> 
8606           <param name=
"facename" type=
"String" default=
""/> 
8609       <method name=
"SetFamily" type=
"" overloaded=
"no"> 
8610         <autodoc>SetFamily(int family)
</autodoc> 
8612           <param name=
"family" type=
"wxFontFamily" default=
""/> 
8615       <method name=
"SetEncoding" type=
"" overloaded=
"no"> 
8616         <autodoc>SetEncoding(int encoding)
</autodoc> 
8618           <param name=
"encoding" type=
"wxFontEncoding" default=
""/> 
8621       <method name=
"FromString" type=
"bool" overloaded=
"no"> 
8622         <autodoc>FromString(String s) -
> bool
</autodoc> 
8624           <param name=
"s" type=
"String" default=
""/> 
8627       <method name=
"ToString" type=
"String" overloaded=
"no"> 
8628         <autodoc>ToString() -
> String
</autodoc> 
8630       <method name=
"__str__" type=
"String" overloaded=
"no"> 
8631         <autodoc>__str__() -
> String
</autodoc> 
8633       <method name=
"FromUserString" type=
"bool" overloaded=
"no"> 
8634         <autodoc>FromUserString(String s) -
> bool
</autodoc> 
8636           <param name=
"s" type=
"String" default=
""/> 
8639       <method name=
"ToUserString" type=
"String" overloaded=
"no"> 
8640         <autodoc>ToUserString() -
> String
</autodoc> 
8643     <class name=
"NativeEncodingInfo" oldname=
"wxNativeEncodingInfo" module=
"gdi"> 
8644       <constructor name=
"NativeEncodingInfo" overloaded=
"no"> 
8645         <autodoc>__init__() -
> NativeEncodingInfo
</autodoc> 
8647       <destructor name=
"~wxNativeEncodingInfo" overloaded=
"no"> 
8648         <autodoc>__del__()
</autodoc> 
8650       <property name=
"facename" type=
"String" readonly=
"no"/> 
8651       <property name=
"encoding" type=
"wxFontEncoding" readonly=
"no"/> 
8652       <method name=
"FromString" type=
"bool" overloaded=
"no"> 
8653         <autodoc>FromString(String s) -
> bool
</autodoc> 
8655           <param name=
"s" type=
"String" default=
""/> 
8658       <method name=
"ToString" type=
"String" overloaded=
"no"> 
8659         <autodoc>ToString() -
> String
</autodoc> 
8662     <method name=
"GetNativeFontEncoding" oldname=
"wxGetNativeFontEncoding" type=
"NativeEncodingInfo" overloaded=
"no"> 
8663       <autodoc>GetNativeFontEncoding(int encoding) -
> NativeEncodingInfo
</autodoc> 
8665         <param name=
"encoding" type=
"wxFontEncoding" default=
""/> 
8668     <method name=
"TestFontEncoding" oldname=
"wxTestFontEncoding" type=
"bool" overloaded=
"no"> 
8669       <autodoc>TestFontEncoding(NativeEncodingInfo info) -
> bool
</autodoc> 
8671         <param name=
"info" type=
"NativeEncodingInfo" default=
""/> 
8675 #---------------------------------------------------------------------------
 
8677     <class name=
"FontMapper" oldname=
"wxFontMapper" module=
"gdi"> 
8678       <constructor name=
"FontMapper" overloaded=
"no"> 
8679         <autodoc>__init__() -
> FontMapper
</autodoc> 
8681       <destructor name=
"~wxFontMapper" overloaded=
"no"> 
8682         <autodoc>__del__()
</autodoc> 
8684       <staticmethod name=
"Get" type=
"FontMapper" overloaded=
"no"> 
8685         <autodoc>Get() -
> FontMapper
</autodoc> 
8687       <staticmethod name=
"Set" type=
"FontMapper" overloaded=
"no"> 
8688         <autodoc>Set(FontMapper mapper) -
> FontMapper
</autodoc> 
8690           <param name=
"mapper" type=
"FontMapper" default=
""/> 
8693       <method name=
"CharsetToEncoding" type=
"wxFontEncoding" overloaded=
"no"> 
8694         <autodoc>CharsetToEncoding(String charset, bool interactive=True) -
> int
</autodoc> 
8696           <param name=
"charset" type=
"String" default=
""/> 
8697           <param name=
"interactive" type=
"bool" default=
"True"/> 
8700       <staticmethod name=
"GetSupportedEncodingsCount" type=
"size_t" overloaded=
"no"> 
8701         <autodoc>GetSupportedEncodingsCount() -
> size_t
</autodoc> 
8703       <staticmethod name=
"GetEncoding" type=
"wxFontEncoding" overloaded=
"no"> 
8704         <autodoc>GetEncoding(size_t n) -
> int
</autodoc> 
8706           <param name=
"n" type=
"size_t" default=
""/> 
8709       <staticmethod name=
"GetEncodingName" type=
"String" overloaded=
"no"> 
8710         <autodoc>GetEncodingName(int encoding) -
> String
</autodoc> 
8712           <param name=
"encoding" type=
"wxFontEncoding" default=
""/> 
8715       <staticmethod name=
"GetEncodingDescription" type=
"String" overloaded=
"no"> 
8716         <autodoc>GetEncodingDescription(int encoding) -
> String
</autodoc> 
8718           <param name=
"encoding" type=
"wxFontEncoding" default=
""/> 
8721       <method name=
"SetConfig" type=
"" overloaded=
"no"> 
8722         <autodoc>SetConfig(ConfigBase config)
</autodoc> 
8724           <param name=
"config" type=
"wxConfigBase" default=
""/> 
8727       <method name=
"SetConfigPath" type=
"" overloaded=
"no"> 
8728         <autodoc>SetConfigPath(String prefix)
</autodoc> 
8730           <param name=
"prefix" type=
"String" default=
""/> 
8733       <staticmethod name=
"GetDefaultConfigPath" type=
"String" overloaded=
"no"> 
8734         <autodoc>GetDefaultConfigPath() -
> String
</autodoc> 
8736       <method name=
"GetAltForEncoding" type=
"PyObject" overloaded=
"no"> 
8737         <autodoc>GetAltForEncoding(int encoding, String facename=EmptyString, bool interactive=True) -
> PyObject
</autodoc> 
8739           <param name=
"encoding" type=
"wxFontEncoding" default=
""/> 
8740           <param name=
"facename" type=
"String" default=
"wxPyEmptyString"/> 
8741           <param name=
"interactive" type=
"bool" default=
"True"/> 
8744       <method name=
"IsEncodingAvailable" type=
"bool" overloaded=
"no"> 
8745         <autodoc>IsEncodingAvailable(int encoding, String facename=EmptyString) -
> bool
</autodoc> 
8747           <param name=
"encoding" type=
"wxFontEncoding" default=
""/> 
8748           <param name=
"facename" type=
"String" default=
"wxPyEmptyString"/> 
8751       <method name=
"SetDialogParent" type=
"" overloaded=
"no"> 
8752         <autodoc>SetDialogParent(Window parent)
</autodoc> 
8754           <param name=
"parent" type=
"Window" default=
""/> 
8757       <method name=
"SetDialogTitle" type=
"" overloaded=
"no"> 
8758         <autodoc>SetDialogTitle(String title)
</autodoc> 
8760           <param name=
"title" type=
"String" default=
""/> 
8765 #---------------------------------------------------------------------------
 
8767     <class name=
"Font" oldname=
"wxFont" module=
"gdi"> 
8768       <baseclass name=
"GDIObject"/> 
8769       <constructor name=
"Font" overloaded=
"no"> 
8770         <autodoc>__init__(int pointSize, int family, int style, int weight, bool underline=False, 
 
8771     String face=EmptyString, 
 
8772     int encoding=FONTENCODING_DEFAULT) -
> Font
</autodoc> 
8774           <param name=
"pointSize" type=
"int" default=
""/> 
8775           <param name=
"family" type=
"int" default=
""/> 
8776           <param name=
"style" type=
"int" default=
""/> 
8777           <param name=
"weight" type=
"int" default=
""/> 
8778           <param name=
"underline" type=
"bool" default=
"False"/> 
8779           <param name=
"face" type=
"String" default=
"wxPyEmptyString"/> 
8780           <param name=
"encoding" type=
"wxFontEncoding" default=
"wxFONTENCODING_DEFAULT"/> 
8783       <constructor name=
"FontFromNativeInfo" overloaded=
"no"> 
8784         <autodoc>FontFromNativeInfo(NativeFontInfo info) -
> Font
</autodoc> 
8786           <param name=
"info" type=
"NativeFontInfo" default=
""/> 
8789       <constructor name=
"FontFromNativeInfoString" overloaded=
"no"> 
8790         <autodoc>FontFromNativeInfoString(String info) -
> Font
</autodoc> 
8792           <param name=
"info" type=
"String" default=
""/> 
8795       <constructor name=
"Font2" overloaded=
"no"> 
8796         <autodoc>Font2(int pointSize, int family, int flags=FONTFLAG_DEFAULT, 
 
8797     String face=EmptyString, int encoding=FONTENCODING_DEFAULT) -
> Font
</autodoc> 
8799           <param name=
"pointSize" type=
"int" default=
""/> 
8800           <param name=
"family" type=
"wxFontFamily" default=
""/> 
8801           <param name=
"flags" type=
"int" default=
"wxFONTFLAG_DEFAULT"/> 
8802           <param name=
"face" type=
"String" default=
"wxPyEmptyString"/> 
8803           <param name=
"encoding" type=
"wxFontEncoding" default=
"wxFONTENCODING_DEFAULT"/> 
8806       <destructor name=
"~wxFont" overloaded=
"no"> 
8807         <autodoc>__del__()
</autodoc> 
8809       <method name=
"Ok" type=
"bool" overloaded=
"no"> 
8810         <autodoc>Ok() -
> bool
</autodoc> 
8812       <method name=
"__eq__" type=
"bool" overloaded=
"no"> 
8813         <autodoc>__eq__(Font other) -
> bool
</autodoc> 
8815           <param name=
"other" type=
"Font" default=
""/> 
8818       <method name=
"__ne__" type=
"bool" overloaded=
"no"> 
8819         <autodoc>__ne__(Font other) -
> bool
</autodoc> 
8821           <param name=
"other" type=
"Font" default=
""/> 
8824       <method name=
"GetPointSize" type=
"int" overloaded=
"no"> 
8825         <autodoc>GetPointSize() -
> int
</autodoc> 
8827       <method name=
"GetFamily" type=
"int" overloaded=
"no"> 
8828         <autodoc>GetFamily() -
> int
</autodoc> 
8830       <method name=
"GetStyle" type=
"int" overloaded=
"no"> 
8831         <autodoc>GetStyle() -
> int
</autodoc> 
8833       <method name=
"GetWeight" type=
"int" overloaded=
"no"> 
8834         <autodoc>GetWeight() -
> int
</autodoc> 
8836       <method name=
"GetUnderlined" type=
"bool" overloaded=
"no"> 
8837         <autodoc>GetUnderlined() -
> bool
</autodoc> 
8839       <method name=
"GetFaceName" type=
"String" overloaded=
"no"> 
8840         <autodoc>GetFaceName() -
> String
</autodoc> 
8842       <method name=
"GetEncoding" type=
"wxFontEncoding" overloaded=
"no"> 
8843         <autodoc>GetEncoding() -
> int
</autodoc> 
8845       <method name=
"GetNativeFontInfo" type=
"NativeFontInfo" overloaded=
"no"> 
8846         <autodoc>GetNativeFontInfo() -
> NativeFontInfo
</autodoc> 
8848       <method name=
"IsFixedWidth" type=
"bool" overloaded=
"no"> 
8849         <autodoc>IsFixedWidth() -
> bool
</autodoc> 
8851       <method name=
"GetNativeFontInfoDesc" type=
"String" overloaded=
"no"> 
8852         <autodoc>GetNativeFontInfoDesc() -
> String
</autodoc> 
8854       <method name=
"GetNativeFontInfoUserDesc" type=
"String" overloaded=
"no"> 
8855         <autodoc>GetNativeFontInfoUserDesc() -
> String
</autodoc> 
8857       <method name=
"SetPointSize" type=
"" overloaded=
"no"> 
8858         <autodoc>SetPointSize(int pointSize)
</autodoc> 
8860           <param name=
"pointSize" type=
"int" default=
""/> 
8863       <method name=
"SetFamily" type=
"" overloaded=
"no"> 
8864         <autodoc>SetFamily(int family)
</autodoc> 
8866           <param name=
"family" type=
"int" default=
""/> 
8869       <method name=
"SetStyle" type=
"" overloaded=
"no"> 
8870         <autodoc>SetStyle(int style)
</autodoc> 
8872           <param name=
"style" type=
"int" default=
""/> 
8875       <method name=
"SetWeight" type=
"" overloaded=
"no"> 
8876         <autodoc>SetWeight(int weight)
</autodoc> 
8878           <param name=
"weight" type=
"int" default=
""/> 
8881       <method name=
"SetFaceName" type=
"" overloaded=
"no"> 
8882         <autodoc>SetFaceName(String faceName)
</autodoc> 
8884           <param name=
"faceName" type=
"String" default=
""/> 
8887       <method name=
"SetUnderlined" type=
"" overloaded=
"no"> 
8888         <autodoc>SetUnderlined(bool underlined)
</autodoc> 
8890           <param name=
"underlined" type=
"bool" default=
""/> 
8893       <method name=
"SetEncoding" type=
"" overloaded=
"no"> 
8894         <autodoc>SetEncoding(int encoding)
</autodoc> 
8896           <param name=
"encoding" type=
"wxFontEncoding" default=
""/> 
8899       <method name=
"SetNativeFontInfo" type=
"" overloaded=
"no"> 
8900         <autodoc>SetNativeFontInfo(NativeFontInfo info)
</autodoc> 
8902           <param name=
"info" type=
"NativeFontInfo" default=
""/> 
8905       <method name=
"SetNativeFontInfoFromString" type=
"" overloaded=
"no"> 
8906         <autodoc>SetNativeFontInfoFromString(String info)
</autodoc> 
8908           <param name=
"info" type=
"String" default=
""/> 
8911       <method name=
"SetNativeFontInfoUserDesc" type=
"" overloaded=
"no"> 
8912         <autodoc>SetNativeFontInfoUserDesc(String info)
</autodoc> 
8914           <param name=
"info" type=
"String" default=
""/> 
8917       <method name=
"GetFamilyString" type=
"String" overloaded=
"no"> 
8918         <autodoc>GetFamilyString() -
> String
</autodoc> 
8920       <method name=
"GetStyleString" type=
"String" overloaded=
"no"> 
8921         <autodoc>GetStyleString() -
> String
</autodoc> 
8923       <method name=
"GetWeightString" type=
"String" overloaded=
"no"> 
8924         <autodoc>GetWeightString() -
> String
</autodoc> 
8926       <method name=
"SetNoAntiAliasing" type=
"" overloaded=
"no"> 
8927         <autodoc>SetNoAntiAliasing(bool no=True)
</autodoc> 
8929           <param name=
"no" type=
"bool" default=
"True"/> 
8932       <method name=
"GetNoAntiAliasing" type=
"bool" overloaded=
"no"> 
8933         <autodoc>GetNoAntiAliasing() -
> bool
</autodoc> 
8935       <staticmethod name=
"GetDefaultEncoding" type=
"wxFontEncoding" overloaded=
"no"> 
8936         <autodoc>GetDefaultEncoding() -
> int
</autodoc> 
8938       <staticmethod name=
"SetDefaultEncoding" type=
"" overloaded=
"no"> 
8939         <autodoc>SetDefaultEncoding(int encoding)
</autodoc> 
8941           <param name=
"encoding" type=
"wxFontEncoding" default=
""/> 
8946 #---------------------------------------------------------------------------
 
8948     <class name=
"FontEnumerator" oldname=
"wxPyFontEnumerator" module=
"gdi"> 
8949       <constructor name=
"wxPyFontEnumerator" overloaded=
"no"> 
8950         <autodoc>__init__() -
> FontEnumerator
</autodoc> 
8952       <destructor name=
"~wxPyFontEnumerator" overloaded=
"no"> 
8953         <autodoc>__del__()
</autodoc> 
8955       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
8956         <autodoc>_setCallbackInfo(PyObject self, PyObject _class, bool incref)
</autodoc> 
8958           <param name=
"self" type=
"PyObject" default=
""/> 
8959           <param name=
"_class" type=
"PyObject" default=
""/> 
8960           <param name=
"incref" type=
"bool" default=
""/> 
8963       <method name=
"EnumerateFacenames" type=
"bool" overloaded=
"no"> 
8964         <autodoc>EnumerateFacenames(int encoding=FONTENCODING_SYSTEM, bool fixedWidthOnly=False) -
> bool
</autodoc> 
8966           <param name=
"encoding" type=
"wxFontEncoding" default=
"wxFONTENCODING_SYSTEM"/> 
8967           <param name=
"fixedWidthOnly" type=
"bool" default=
"False"/> 
8970       <method name=
"EnumerateEncodings" type=
"bool" overloaded=
"no"> 
8971         <autodoc>EnumerateEncodings(String facename=EmptyString) -
> bool
</autodoc> 
8973           <param name=
"facename" type=
"String" default=
"wxPyEmptyString"/> 
8976       <method name=
"GetEncodings" type=
"PyObject" overloaded=
"no"> 
8977         <autodoc>GetEncodings() -
> PyObject
</autodoc> 
8979       <method name=
"GetFacenames" type=
"PyObject" overloaded=
"no"> 
8980         <autodoc>GetFacenames() -
> PyObject
</autodoc> 
8984 #---------------------------------------------------------------------------
 
8986     <class name=
"LanguageInfo" oldname=
"wxLanguageInfo" module=
"gdi"> 
8987       <property name=
"Language" type=
"int" readonly=
"no"/> 
8988       <property name=
"CanonicalName" type=
"String" readonly=
"no"/> 
8989       <property name=
"Description" type=
"String" readonly=
"no"/> 
8991     <class name=
"Locale" oldname=
"wxLocale" module=
"gdi"> 
8992       <constructor name=
"Locale" overloaded=
"no"> 
8993         <autodoc>__init__(int language=LANGUAGE_DEFAULT, int flags=wxLOCALE_LOAD_DEFAULT|wxLOCALE_CONV_ENCODING) -
> Locale
</autodoc> 
8995           <param name=
"language" type=
"int" default=
"wxLANGUAGE_DEFAULT"/> 
8996           <param name=
"flags" type=
"int" default=
"wxLOCALE_LOAD_DEFAULT|wxLOCALE_CONV_ENCODING"/> 
8999       <destructor name=
"~wxLocale" overloaded=
"no"> 
9000         <autodoc>__del__()
</autodoc> 
9002       <method name=
"Init1" type=
"bool" overloaded=
"no"> 
9003         <autodoc>Init1(String szName, String szShort=EmptyString, String szLocale=EmptyString, 
 
9004     bool bLoadDefault=True, 
 
9005     bool bConvertEncoding=False) -
> bool
</autodoc> 
9007           <param name=
"szName" type=
"String" default=
""/> 
9008           <param name=
"szShort" type=
"String" default=
"wxPyEmptyString"/> 
9009           <param name=
"szLocale" type=
"String" default=
"wxPyEmptyString"/> 
9010           <param name=
"bLoadDefault" type=
"bool" default=
"True"/> 
9011           <param name=
"bConvertEncoding" type=
"bool" default=
"False"/> 
9014       <method name=
"Init2" type=
"bool" overloaded=
"no"> 
9015         <autodoc>Init2(int language=LANGUAGE_DEFAULT, int flags=wxLOCALE_LOAD_DEFAULT|wxLOCALE_CONV_ENCODING) -
> bool
</autodoc> 
9017           <param name=
"language" type=
"int" default=
"wxLANGUAGE_DEFAULT"/> 
9018           <param name=
"flags" type=
"int" default=
"wxLOCALE_LOAD_DEFAULT|wxLOCALE_CONV_ENCODING"/> 
9021       <staticmethod name=
"GetSystemLanguage" type=
"int" overloaded=
"no"> 
9022         <autodoc>GetSystemLanguage() -
> int
</autodoc> 
9024       <staticmethod name=
"GetSystemEncoding" type=
"wxFontEncoding" overloaded=
"no"> 
9025         <autodoc>GetSystemEncoding() -
> int
</autodoc> 
9027       <staticmethod name=
"GetSystemEncodingName" type=
"String" overloaded=
"no"> 
9028         <autodoc>GetSystemEncodingName() -
> String
</autodoc> 
9030       <method name=
"IsOk" type=
"bool" overloaded=
"no"> 
9031         <autodoc>IsOk() -
> bool
</autodoc> 
9033       <method name=
"GetLocale" type=
"String" overloaded=
"no"> 
9034         <autodoc>GetLocale() -
> String
</autodoc> 
9036       <method name=
"GetLanguage" type=
"int" overloaded=
"no"> 
9037         <autodoc>GetLanguage() -
> int
</autodoc> 
9039       <method name=
"GetSysName" type=
"String" overloaded=
"no"> 
9040         <autodoc>GetSysName() -
> String
</autodoc> 
9042       <method name=
"GetCanonicalName" type=
"String" overloaded=
"no"> 
9043         <autodoc>GetCanonicalName() -
> String
</autodoc> 
9045       <staticmethod name=
"AddCatalogLookupPathPrefix" type=
"" overloaded=
"no"> 
9046         <autodoc>AddCatalogLookupPathPrefix(String prefix)
</autodoc> 
9048           <param name=
"prefix" type=
"String" default=
""/> 
9051       <method name=
"AddCatalog" type=
"bool" overloaded=
"no"> 
9052         <autodoc>AddCatalog(String szDomain) -
> bool
</autodoc> 
9054           <param name=
"szDomain" type=
"String" default=
""/> 
9057       <method name=
"IsLoaded" type=
"bool" overloaded=
"no"> 
9058         <autodoc>IsLoaded(String szDomain) -
> bool
</autodoc> 
9060           <param name=
"szDomain" type=
"String" default=
""/> 
9063       <staticmethod name=
"GetLanguageInfo" type=
"LanguageInfo" overloaded=
"no"> 
9064         <autodoc>GetLanguageInfo(int lang) -
> LanguageInfo
</autodoc> 
9066           <param name=
"lang" type=
"int" default=
""/> 
9069       <staticmethod name=
"GetLanguageName" type=
"String" overloaded=
"no"> 
9070         <autodoc>GetLanguageName(int lang) -
> String
</autodoc> 
9072           <param name=
"lang" type=
"int" default=
""/> 
9075       <staticmethod name=
"FindLanguageInfo" type=
"LanguageInfo" overloaded=
"no"> 
9076         <autodoc>FindLanguageInfo(String locale) -
> LanguageInfo
</autodoc> 
9078           <param name=
"locale" type=
"String" default=
""/> 
9081       <staticmethod name=
"AddLanguage" type=
"" overloaded=
"no"> 
9082         <autodoc>AddLanguage(LanguageInfo info)
</autodoc> 
9084           <param name=
"info" type=
"LanguageInfo" default=
""/> 
9087       <method name=
"GetString" type=
"String" overloaded=
"no"> 
9088         <autodoc>GetString(String szOrigString, String szDomain=EmptyString) -
> String
</autodoc> 
9090           <param name=
"szOrigString" type=
"String" default=
""/> 
9091           <param name=
"szDomain" type=
"String" default=
"wxPyEmptyString"/> 
9094       <method name=
"GetName" type=
"String" overloaded=
"no"> 
9095         <autodoc>GetName() -
> String
</autodoc> 
9098     <method name=
"GetLocale" oldname=
"wxGetLocale" type=
"Locale" overloaded=
"no"> 
9099       <autodoc>GetLocale() -
> Locale
</autodoc> 
9101     <method name=
"GetTranslation" oldname=
"wxGetTranslation" type=
"String" overloaded=
"yes"> 
9103         <param name=
"str" type=
"String" default=
""/> 
9106     <method name=
"GetTranslation" oldname=
"wxGetTranslation" type=
"String" overloaded=
"yes"> 
9107       <autodoc>GetTranslation(String str) -
> String
 
9108 GetTranslation(String str, String strPlural, size_t n) -
> String
</autodoc> 
9110         <param name=
"str" type=
"String" default=
""/> 
9111         <param name=
"strPlural" type=
"String" default=
""/> 
9112         <param name=
"n" type=
"size_t" default=
""/> 
9116 #---------------------------------------------------------------------------
 
9118     <class name=
"EncodingConverter" oldname=
"wxEncodingConverter" module=
"gdi"> 
9119       <baseclass name=
"Object"/> 
9120       <constructor name=
"EncodingConverter" overloaded=
"no"> 
9121         <autodoc>__init__() -
> EncodingConverter
</autodoc> 
9123       <destructor name=
"~wxEncodingConverter" overloaded=
"no"> 
9124         <autodoc>__del__()
</autodoc> 
9126       <method name=
"Init" type=
"bool" overloaded=
"no"> 
9127         <autodoc>Init(int input_enc, int output_enc, int method=CONVERT_STRICT) -
> bool
</autodoc> 
9129           <param name=
"input_enc" type=
"wxFontEncoding" default=
""/> 
9130           <param name=
"output_enc" type=
"wxFontEncoding" default=
""/> 
9131           <param name=
"method" type=
"int" default=
"wxCONVERT_STRICT"/> 
9134       <method name=
"Convert" type=
"String" overloaded=
"no"> 
9135         <autodoc>Convert(String input) -
> String
</autodoc> 
9137           <param name=
"input" type=
"String" default=
""/> 
9140       <staticmethod name=
"GetPlatformEquivalents" type=
"wxFontEncodingArray" overloaded=
"no"> 
9141         <autodoc>GetPlatformEquivalents(int enc, int platform=PLATFORM_CURRENT) -
> wxFontEncodingArray
</autodoc> 
9143           <param name=
"enc" type=
"wxFontEncoding" default=
""/> 
9144           <param name=
"platform" type=
"int" default=
"wxPLATFORM_CURRENT"/> 
9147       <staticmethod name=
"GetAllEquivalents" type=
"wxFontEncodingArray" overloaded=
"no"> 
9148         <autodoc>GetAllEquivalents(int enc) -
> wxFontEncodingArray
</autodoc> 
9150           <param name=
"enc" type=
"wxFontEncoding" default=
""/> 
9153       <staticmethod name=
"CanConvert" type=
"bool" overloaded=
"no"> 
9154         <autodoc>CanConvert(int encIn, int encOut) -
> bool
</autodoc> 
9156           <param name=
"encIn" type=
"wxFontEncoding" default=
""/> 
9157           <param name=
"encOut" type=
"wxFontEncoding" default=
""/> 
9161     <pythoncode>#----------------------------------------------------------------------------
 
9162 # wxGTK sets the locale when initialized.  Doing this at the Python
 
9163 # level should set it up to match what GTK is doing at the C level.
 
9164 if wx.Platform == "__WXGTK__":
 
9167         locale.setlocale(locale.LC_ALL, "")
 
9171 # On MSW add the directory where the wxWindows catalogs were installed
 
9172 # to the default catalog path.
 
9173 if wx.Platform == "__WXMSW__":
 
9175     localedir = os.path.join(os.path.split(__file__)[
0], "locale")
 
9176     Locale_AddCatalogLookupPathPrefix(localedir)
 
9179 #----------------------------------------------------------------------------
 
9182 #---------------------------------------------------------------------------
 
9184     <class name=
"DC" oldname=
"wxDC" module=
"gdi"> 
9185       <baseclass name=
"Object"/> 
9186       <destructor name=
"~wxDC" overloaded=
"no"> 
9187         <autodoc>__del__()
</autodoc> 
9189       <method name=
"BeginDrawing" type=
"" overloaded=
"no"> 
9190         <autodoc>BeginDrawing()
</autodoc> 
9192       <method name=
"EndDrawing" type=
"" overloaded=
"no"> 
9193         <autodoc>EndDrawing()
</autodoc> 
9195       <method name=
"FloodFillXY" type=
"bool" overloaded=
"no"> 
9196         <autodoc>FloodFillXY(int x, int y, Colour col, int style=FLOOD_SURFACE) -
> bool
</autodoc> 
9198           <param name=
"x" type=
"int" default=
""/> 
9199           <param name=
"y" type=
"int" default=
""/> 
9200           <param name=
"col" type=
"Colour" default=
""/> 
9201           <param name=
"style" type=
"int" default=
"wxFLOOD_SURFACE"/> 
9204       <method name=
"FloodFill" type=
"bool" overloaded=
"no"> 
9205         <autodoc>FloodFill(Point pt, Colour col, int style=FLOOD_SURFACE) -
> bool
</autodoc> 
9207           <param name=
"pt" type=
"Point" default=
""/> 
9208           <param name=
"col" type=
"Colour" default=
""/> 
9209           <param name=
"style" type=
"int" default=
"wxFLOOD_SURFACE"/> 
9212       <method name=
"GetPixelXY" type=
"Colour" overloaded=
"no"> 
9213         <autodoc>GetPixelXY(int x, int y) -
> Colour
</autodoc> 
9215           <param name=
"x" type=
"int" default=
""/> 
9216           <param name=
"y" type=
"int" default=
""/> 
9219       <method name=
"GetPixel" type=
"Colour" overloaded=
"no"> 
9220         <autodoc>GetPixel(Point pt) -
> Colour
</autodoc> 
9222           <param name=
"pt" type=
"Point" default=
""/> 
9225       <method name=
"DrawLineXY" type=
"" overloaded=
"no"> 
9226         <autodoc>DrawLineXY(int x1, int y1, int x2, int y2)
</autodoc> 
9228           <param name=
"x1" type=
"int" default=
""/> 
9229           <param name=
"y1" type=
"int" default=
""/> 
9230           <param name=
"x2" type=
"int" default=
""/> 
9231           <param name=
"y2" type=
"int" default=
""/> 
9234       <method name=
"DrawLine" type=
"" overloaded=
"no"> 
9235         <autodoc>DrawLine(Point pt1, Point pt2)
</autodoc> 
9237           <param name=
"pt1" type=
"Point" default=
""/> 
9238           <param name=
"pt2" type=
"Point" default=
""/> 
9241       <method name=
"CrossHairXY" type=
"" overloaded=
"no"> 
9242         <autodoc>CrossHairXY(int x, int y)
</autodoc> 
9244           <param name=
"x" type=
"int" default=
""/> 
9245           <param name=
"y" type=
"int" default=
""/> 
9248       <method name=
"CrossHair" type=
"" overloaded=
"no"> 
9249         <autodoc>CrossHair(Point pt)
</autodoc> 
9251           <param name=
"pt" type=
"Point" default=
""/> 
9254       <method name=
"DrawArcXY" type=
"" overloaded=
"no"> 
9255         <autodoc>DrawArcXY(int x1, int y1, int x2, int y2, int xc, int yc)
</autodoc> 
9257           <param name=
"x1" type=
"int" default=
""/> 
9258           <param name=
"y1" type=
"int" default=
""/> 
9259           <param name=
"x2" type=
"int" default=
""/> 
9260           <param name=
"y2" type=
"int" default=
""/> 
9261           <param name=
"xc" type=
"int" default=
""/> 
9262           <param name=
"yc" type=
"int" default=
""/> 
9265       <method name=
"DrawArc" type=
"" overloaded=
"no"> 
9266         <autodoc>DrawArc(Point pt1, Point pt2, Point centre)
</autodoc> 
9268           <param name=
"pt1" type=
"Point" default=
""/> 
9269           <param name=
"pt2" type=
"Point" default=
""/> 
9270           <param name=
"centre" type=
"Point" default=
""/> 
9273       <method name=
"DrawCheckMarkXY" type=
"" overloaded=
"no"> 
9274         <autodoc>DrawCheckMarkXY(int x, int y, int width, int height)
</autodoc> 
9276           <param name=
"x" type=
"int" default=
""/> 
9277           <param name=
"y" type=
"int" default=
""/> 
9278           <param name=
"width" type=
"int" default=
""/> 
9279           <param name=
"height" type=
"int" default=
""/> 
9282       <method name=
"DrawCheckMark" type=
"" overloaded=
"no"> 
9283         <autodoc>DrawCheckMark(Rect rect)
</autodoc> 
9285           <param name=
"rect" type=
"Rect" default=
""/> 
9288       <method name=
"DrawEllipticArcXY" type=
"" overloaded=
"no"> 
9289         <autodoc>DrawEllipticArcXY(int x, int y, int w, int h, double sa, double ea)
</autodoc> 
9291           <param name=
"x" type=
"int" default=
""/> 
9292           <param name=
"y" type=
"int" default=
""/> 
9293           <param name=
"w" type=
"int" default=
""/> 
9294           <param name=
"h" type=
"int" default=
""/> 
9295           <param name=
"sa" type=
"double" default=
""/> 
9296           <param name=
"ea" type=
"double" default=
""/> 
9299       <method name=
"DrawEllipticArc" type=
"" overloaded=
"no"> 
9300         <autodoc>DrawEllipticArc(Point pt, Size sz, double sa, double ea)
</autodoc> 
9302           <param name=
"pt" type=
"Point" default=
""/> 
9303           <param name=
"sz" type=
"Size" default=
""/> 
9304           <param name=
"sa" type=
"double" default=
""/> 
9305           <param name=
"ea" type=
"double" default=
""/> 
9308       <method name=
"DrawPointXY" type=
"" overloaded=
"no"> 
9309         <autodoc>DrawPointXY(int x, int y)
</autodoc> 
9311           <param name=
"x" type=
"int" default=
""/> 
9312           <param name=
"y" type=
"int" default=
""/> 
9315       <method name=
"DrawPoint" type=
"" overloaded=
"no"> 
9316         <autodoc>DrawPoint(Point pt)
</autodoc> 
9318           <param name=
"pt" type=
"Point" default=
""/> 
9321       <method name=
"DrawRectangleXY" type=
"" overloaded=
"no"> 
9322         <autodoc>DrawRectangleXY(int x, int y, int width, int height)
</autodoc> 
9324           <param name=
"x" type=
"int" default=
""/> 
9325           <param name=
"y" type=
"int" default=
""/> 
9326           <param name=
"width" type=
"int" default=
""/> 
9327           <param name=
"height" type=
"int" default=
""/> 
9330       <method name=
"DrawRectangle" type=
"" overloaded=
"no"> 
9331         <autodoc>DrawRectangle(Point pt, Size sz)
</autodoc> 
9333           <param name=
"pt" type=
"Point" default=
""/> 
9334           <param name=
"sz" type=
"Size" default=
""/> 
9337       <method name=
"DrawRectangleRect" type=
"" overloaded=
"no"> 
9338         <autodoc>DrawRectangleRect(Rect rect)
</autodoc> 
9340           <param name=
"rect" type=
"Rect" default=
""/> 
9343       <method name=
"DrawRoundedRectangleXY" type=
"" overloaded=
"no"> 
9344         <autodoc>DrawRoundedRectangleXY(int x, int y, int width, int height, double radius)
</autodoc> 
9346           <param name=
"x" type=
"int" default=
""/> 
9347           <param name=
"y" type=
"int" default=
""/> 
9348           <param name=
"width" type=
"int" default=
""/> 
9349           <param name=
"height" type=
"int" default=
""/> 
9350           <param name=
"radius" type=
"double" default=
""/> 
9353       <method name=
"DrawRoundedRectangle" type=
"" overloaded=
"no"> 
9354         <autodoc>DrawRoundedRectangle(Point pt, Size sz, double radius)
</autodoc> 
9356           <param name=
"pt" type=
"Point" default=
""/> 
9357           <param name=
"sz" type=
"Size" default=
""/> 
9358           <param name=
"radius" type=
"double" default=
""/> 
9361       <method name=
"DrawRoundedRectangleRect" type=
"" overloaded=
"no"> 
9362         <autodoc>DrawRoundedRectangleRect(Rect r, double radius)
</autodoc> 
9364           <param name=
"r" type=
"Rect" default=
""/> 
9365           <param name=
"radius" type=
"double" default=
""/> 
9368       <method name=
"DrawCircleXY" type=
"" overloaded=
"no"> 
9369         <autodoc>DrawCircleXY(int x, int y, int radius)
</autodoc> 
9371           <param name=
"x" type=
"int" default=
""/> 
9372           <param name=
"y" type=
"int" default=
""/> 
9373           <param name=
"radius" type=
"int" default=
""/> 
9376       <method name=
"DrawCircle" type=
"" overloaded=
"no"> 
9377         <autodoc>DrawCircle(Point pt, int radius)
</autodoc> 
9379           <param name=
"pt" type=
"Point" default=
""/> 
9380           <param name=
"radius" type=
"int" default=
""/> 
9383       <method name=
"DrawEllipseXY" type=
"" overloaded=
"no"> 
9384         <autodoc>DrawEllipseXY(int x, int y, int width, int height)
</autodoc> 
9386           <param name=
"x" type=
"int" default=
""/> 
9387           <param name=
"y" type=
"int" default=
""/> 
9388           <param name=
"width" type=
"int" default=
""/> 
9389           <param name=
"height" type=
"int" default=
""/> 
9392       <method name=
"DrawEllipse" type=
"" overloaded=
"no"> 
9393         <autodoc>DrawEllipse(Point pt, Size sz)
</autodoc> 
9395           <param name=
"pt" type=
"Point" default=
""/> 
9396           <param name=
"sz" type=
"Size" default=
""/> 
9399       <method name=
"DrawEllipseRect" type=
"" overloaded=
"no"> 
9400         <autodoc>DrawEllipseRect(Rect rect)
</autodoc> 
9402           <param name=
"rect" type=
"Rect" default=
""/> 
9405       <method name=
"DrawIconXY" type=
"" overloaded=
"no"> 
9406         <autodoc>DrawIconXY(Icon icon, int x, int y)
</autodoc> 
9408           <param name=
"icon" type=
"Icon" default=
""/> 
9409           <param name=
"x" type=
"int" default=
""/> 
9410           <param name=
"y" type=
"int" default=
""/> 
9413       <method name=
"DrawIcon" type=
"" overloaded=
"no"> 
9414         <autodoc>DrawIcon(Icon icon, Point pt)
</autodoc> 
9416           <param name=
"icon" type=
"Icon" default=
""/> 
9417           <param name=
"pt" type=
"Point" default=
""/> 
9420       <method name=
"DrawBitmapXY" type=
"" overloaded=
"no"> 
9421         <autodoc>DrawBitmapXY(Bitmap bmp, int x, int y, bool useMask=False)
</autodoc> 
9423           <param name=
"bmp" type=
"Bitmap" default=
""/> 
9424           <param name=
"x" type=
"int" default=
""/> 
9425           <param name=
"y" type=
"int" default=
""/> 
9426           <param name=
"useMask" type=
"bool" default=
"False"/> 
9429       <method name=
"DrawBitmap" type=
"" overloaded=
"no"> 
9430         <autodoc>DrawBitmap(Bitmap bmp, Point pt, bool useMask=False)
</autodoc> 
9432           <param name=
"bmp" type=
"Bitmap" default=
""/> 
9433           <param name=
"pt" type=
"Point" default=
""/> 
9434           <param name=
"useMask" type=
"bool" default=
"False"/> 
9437       <method name=
"DrawTextXY" type=
"" overloaded=
"no"> 
9438         <autodoc>DrawTextXY(String text, int x, int y)
</autodoc> 
9440           <param name=
"text" type=
"String" default=
""/> 
9441           <param name=
"x" type=
"int" default=
""/> 
9442           <param name=
"y" type=
"int" default=
""/> 
9445       <method name=
"DrawText" type=
"" overloaded=
"no"> 
9446         <autodoc>DrawText(String text, Point pt)
</autodoc> 
9448           <param name=
"text" type=
"String" default=
""/> 
9449           <param name=
"pt" type=
"Point" default=
""/> 
9452       <method name=
"DrawRotatedTextXY" type=
"" overloaded=
"no"> 
9453         <autodoc>DrawRotatedTextXY(String text, int x, int y, double angle)
</autodoc> 
9455           <param name=
"text" type=
"String" default=
""/> 
9456           <param name=
"x" type=
"int" default=
""/> 
9457           <param name=
"y" type=
"int" default=
""/> 
9458           <param name=
"angle" type=
"double" default=
""/> 
9461       <method name=
"DrawRotatedText" type=
"" overloaded=
"no"> 
9462         <autodoc>DrawRotatedText(String text, Point pt, double angle)
</autodoc> 
9464           <param name=
"text" type=
"String" default=
""/> 
9465           <param name=
"pt" type=
"Point" default=
""/> 
9466           <param name=
"angle" type=
"double" default=
""/> 
9469       <method name=
"BlitXY" type=
"bool" overloaded=
"no"> 
9470         <autodoc>BlitXY(int xdest, int ydest, int width, int height, DC source, 
 
9471     int xsrc, int ysrc, int rop=COPY, bool useMask=False, 
 
9472     int xsrcMask=-
1, int ysrcMask=-
1) -
> bool
</autodoc> 
9474           <param name=
"xdest" type=
"int" default=
""/> 
9475           <param name=
"ydest" type=
"int" default=
""/> 
9476           <param name=
"width" type=
"int" default=
""/> 
9477           <param name=
"height" type=
"int" default=
""/> 
9478           <param name=
"source" type=
"DC" default=
""/> 
9479           <param name=
"xsrc" type=
"int" default=
""/> 
9480           <param name=
"ysrc" type=
"int" default=
""/> 
9481           <param name=
"rop" type=
"int" default=
"wxCOPY"/> 
9482           <param name=
"useMask" type=
"bool" default=
"False"/> 
9483           <param name=
"xsrcMask" type=
"int" default=
"-1"/> 
9484           <param name=
"ysrcMask" type=
"int" default=
"-1"/> 
9487       <method name=
"Blit" type=
"bool" overloaded=
"no"> 
9488         <autodoc>Blit(Point destPt, Size sz, DC source, Point srcPt, int rop=COPY, 
 
9489     bool useMask=False, Point srcPtMask=DefaultPosition) -
> bool
</autodoc> 
9491           <param name=
"destPt" type=
"Point" default=
""/> 
9492           <param name=
"sz" type=
"Size" default=
""/> 
9493           <param name=
"source" type=
"DC" default=
""/> 
9494           <param name=
"srcPt" type=
"Point" default=
""/> 
9495           <param name=
"rop" type=
"int" default=
"wxCOPY"/> 
9496           <param name=
"useMask" type=
"bool" default=
"False"/> 
9497           <param name=
"srcPtMask" type=
"Point" default=
"wxDefaultPosition"/> 
9500       <method name=
"DrawLines" type=
"" overloaded=
"no"> 
9501         <autodoc>DrawLines(int points, Point points_array, int xoffset=
0, int yoffset=
0)
</autodoc> 
9503           <param name=
"points" type=
"int" default=
""/> 
9504           <param name=
"points_array" type=
"Point" default=
""/> 
9505           <param name=
"xoffset" type=
"int" default=
"0"/> 
9506           <param name=
"yoffset" type=
"int" default=
"0"/> 
9509       <method name=
"DrawPolygon" type=
"" overloaded=
"no"> 
9510         <autodoc>DrawPolygon(int points, Point points_array, int xoffset=
0, int yoffset=
0, 
 
9511     int fillStyle=ODDEVEN_RULE)
</autodoc> 
9513           <param name=
"points" type=
"int" default=
""/> 
9514           <param name=
"points_array" type=
"Point" default=
""/> 
9515           <param name=
"xoffset" type=
"int" default=
"0"/> 
9516           <param name=
"yoffset" type=
"int" default=
"0"/> 
9517           <param name=
"fillStyle" type=
"int" default=
"wxODDEVEN_RULE"/> 
9520       <method name=
"DrawLabel" type=
"" overloaded=
"no"> 
9521         <autodoc>DrawLabel(String text, Rect rect, int alignment=wxALIGN_LEFT|wxALIGN_TOP, 
 
9522     int indexAccel=-
1)
</autodoc> 
9524           <param name=
"text" type=
"String" default=
""/> 
9525           <param name=
"rect" type=
"Rect" default=
""/> 
9526           <param name=
"alignment" type=
"int" default=
"wxALIGN_LEFT|wxALIGN_TOP"/> 
9527           <param name=
"indexAccel" type=
"int" default=
"-1"/> 
9530       <method name=
"DrawImageLabel" type=
"Rect" overloaded=
"no"> 
9531         <autodoc>DrawImageLabel(String text, Bitmap image, Rect rect, int alignment=wxALIGN_LEFT|wxALIGN_TOP, 
 
9532     int indexAccel=-
1) -
> Rect
</autodoc> 
9534           <param name=
"text" type=
"String" default=
""/> 
9535           <param name=
"image" type=
"Bitmap" default=
""/> 
9536           <param name=
"rect" type=
"Rect" default=
""/> 
9537           <param name=
"alignment" type=
"int" default=
"wxALIGN_LEFT|wxALIGN_TOP"/> 
9538           <param name=
"indexAccel" type=
"int" default=
"-1"/> 
9541       <method name=
"DrawSpline" type=
"" overloaded=
"no"> 
9542         <autodoc>DrawSpline(int points, Point points_array)
</autodoc> 
9544           <param name=
"points" type=
"int" default=
""/> 
9545           <param name=
"points_array" type=
"Point" default=
""/> 
9548       <method name=
"Clear" type=
"" overloaded=
"no"> 
9549         <autodoc>Clear()
</autodoc> 
9551       <method name=
"StartDoc" type=
"bool" overloaded=
"no"> 
9552         <autodoc>StartDoc(String message) -
> bool
</autodoc> 
9554           <param name=
"message" type=
"String" default=
""/> 
9557       <method name=
"EndDoc" type=
"" overloaded=
"no"> 
9558         <autodoc>EndDoc()
</autodoc> 
9560       <method name=
"StartPage" type=
"" overloaded=
"no"> 
9561         <autodoc>StartPage()
</autodoc> 
9563       <method name=
"EndPage" type=
"" overloaded=
"no"> 
9564         <autodoc>EndPage()
</autodoc> 
9566       <method name=
"SetFont" type=
"" overloaded=
"no"> 
9567         <autodoc>SetFont(Font font)
</autodoc> 
9569           <param name=
"font" type=
"Font" default=
""/> 
9572       <method name=
"SetPen" type=
"" overloaded=
"no"> 
9573         <autodoc>SetPen(Pen pen)
</autodoc> 
9575           <param name=
"pen" type=
"Pen" default=
""/> 
9578       <method name=
"SetBrush" type=
"" overloaded=
"no"> 
9579         <autodoc>SetBrush(Brush brush)
</autodoc> 
9581           <param name=
"brush" type=
"Brush" default=
""/> 
9584       <method name=
"SetBackground" type=
"" overloaded=
"no"> 
9585         <autodoc>SetBackground(Brush brush)
</autodoc> 
9587           <param name=
"brush" type=
"Brush" default=
""/> 
9590       <method name=
"SetBackgroundMode" type=
"" overloaded=
"no"> 
9591         <autodoc>SetBackgroundMode(int mode)
</autodoc> 
9593           <param name=
"mode" type=
"int" default=
""/> 
9596       <method name=
"SetPalette" type=
"" overloaded=
"no"> 
9597         <autodoc>SetPalette(Palette palette)
</autodoc> 
9599           <param name=
"palette" type=
"Palette" default=
""/> 
9602       <method name=
"SetClippingRegionXY" type=
"" overloaded=
"no"> 
9603         <autodoc>SetClippingRegionXY(int x, int y, int width, int height)
</autodoc> 
9605           <param name=
"x" type=
"int" default=
""/> 
9606           <param name=
"y" type=
"int" default=
""/> 
9607           <param name=
"width" type=
"int" default=
""/> 
9608           <param name=
"height" type=
"int" default=
""/> 
9611       <method name=
"SetClippingRegion" type=
"" overloaded=
"no"> 
9612         <autodoc>SetClippingRegion(Point pt, Size sz)
</autodoc> 
9614           <param name=
"pt" type=
"Point" default=
""/> 
9615           <param name=
"sz" type=
"Size" default=
""/> 
9618       <method name=
"SetClippingRect" type=
"" overloaded=
"no"> 
9619         <autodoc>SetClippingRect(Rect rect)
</autodoc> 
9621           <param name=
"rect" type=
"Rect" default=
""/> 
9624       <method name=
"SetClippingRegionAsRegion" type=
"" overloaded=
"no"> 
9625         <autodoc>SetClippingRegionAsRegion(Region region)
</autodoc> 
9627           <param name=
"region" type=
"Region" default=
""/> 
9630       <method name=
"DestroyClippingRegion" type=
"" overloaded=
"no"> 
9631         <autodoc>DestroyClippingRegion()
</autodoc> 
9633       <method name=
"GetClippingBox" type=
"" overloaded=
"no"> 
9634         <autodoc>GetClippingBox() -
> (x, y, width, height)
</autodoc> 
9636           <param name=
"OUTPUT" type=
"int" default=
""/> 
9637           <param name=
"OUTPUT" type=
"int" default=
""/> 
9638           <param name=
"OUTPUT" type=
"int" default=
""/> 
9639           <param name=
"OUTPUT" type=
"int" default=
""/> 
9642       <method name=
"GetClippingRect" type=
"Rect" overloaded=
"no"> 
9643         <autodoc>GetClippingRect() -
> Rect
</autodoc> 
9645       <method name=
"GetCharHeight" type=
"int" overloaded=
"no"> 
9646         <autodoc>GetCharHeight() -
> int
</autodoc> 
9648       <method name=
"GetCharWidth" type=
"int" overloaded=
"no"> 
9649         <autodoc>GetCharWidth() -
> int
</autodoc> 
9651       <method name=
"GetTextExtent" type=
"" overloaded=
"no"> 
9652         <autodoc>GetTextExtent(wxString string) -
> (width, height)
</autodoc> 
9653         <docstring>Get the width and height of the text using the current font.
 
9654 Only works for single line strings.
</docstring> 
9656           <param name=
"string" type=
"String" default=
""/> 
9657           <param name=
"OUTPUT" type=
"int" default=
""/> 
9658           <param name=
"OUTPUT" type=
"int" default=
""/> 
9661       <method name=
"GetFullTextExtent" type=
"" overloaded=
"no"> 
9662         <autodoc>GetFullTextExtent(wxString string, Font font=None) -
> 
9663    (width, height, descent, externalLeading)
</autodoc> 
9664         <docstring>Get the width, height, decent and leading of the text using the current or specified font.
 
9665 Only works for single line strings.
</docstring> 
9667           <param name=
"string" type=
"String" default=
""/> 
9668           <param name=
"OUTPUT" type=
"int" default=
""/> 
9669           <param name=
"OUTPUT" type=
"int" default=
""/> 
9670           <param name=
"OUTPUT" type=
"int" default=
""/> 
9671           <param name=
"OUTPUT" type=
"int" default=
""/> 
9672           <param name=
"font" type=
"Font" default=
"NULL"/> 
9675       <method name=
"GetMultiLineTextExtent" type=
"" overloaded=
"no"> 
9676         <autodoc>GetMultiLineTextExtent(wxString string, Font font=None) -
> 
9677    (width, height, descent, externalLeading)
</autodoc> 
9678         <docstring>Get the width, height, decent and leading of the text using the current or specified font.
 
9679 Works for single as well as multi-line strings.
</docstring> 
9681           <param name=
"text" type=
"String" default=
""/> 
9682           <param name=
"OUTPUT" type=
"int" default=
""/> 
9683           <param name=
"OUTPUT" type=
"int" default=
""/> 
9684           <param name=
"OUTPUT" type=
"int" default=
""/> 
9685           <param name=
"font" type=
"Font" default=
"NULL"/> 
9688       <method name=
"GetPartialTextExtents" type=
"wxArrayInt" overloaded=
"no"> 
9689         <autodoc>GetPartialTextExtents(String text) -
> wxArrayInt
</autodoc> 
9691           <param name=
"text" type=
"String" default=
""/> 
9694       <method name=
"GetSize" type=
"Size" overloaded=
"no"> 
9695         <autodoc>GetSize() -
> Size
</autodoc> 
9696         <docstring>Get the DC size in device units.
</docstring> 
9698       <method name=
"GetSizeTuple" type=
"" overloaded=
"no"> 
9699         <autodoc>GetSizeTuple() -
> (width, height)
</autodoc> 
9700         <docstring>Get the DC size in device units.
</docstring> 
9702           <param name=
"OUTPUT" type=
"int" default=
""/> 
9703           <param name=
"OUTPUT" type=
"int" default=
""/> 
9706       <method name=
"GetSizeMM" type=
"Size" overloaded=
"no"> 
9707         <autodoc>GetSizeMM() -
> Size
</autodoc> 
9708         <docstring>Get the DC size in milimeters.
</docstring> 
9710       <method name=
"GetSizeMMTuple" type=
"" overloaded=
"no"> 
9711         <autodoc>GetSizeMMTuple() -
> (width, height)
</autodoc> 
9712         <docstring>Get the DC size in milimeters.
</docstring> 
9714           <param name=
"OUTPUT" type=
"int" default=
""/> 
9715           <param name=
"OUTPUT" type=
"int" default=
""/> 
9718       <method name=
"DeviceToLogicalX" type=
"int" overloaded=
"no"> 
9719         <autodoc>DeviceToLogicalX(int x) -
> int
</autodoc> 
9721           <param name=
"x" type=
"int" default=
""/> 
9724       <method name=
"DeviceToLogicalY" type=
"int" overloaded=
"no"> 
9725         <autodoc>DeviceToLogicalY(int y) -
> int
</autodoc> 
9727           <param name=
"y" type=
"int" default=
""/> 
9730       <method name=
"DeviceToLogicalXRel" type=
"int" overloaded=
"no"> 
9731         <autodoc>DeviceToLogicalXRel(int x) -
> int
</autodoc> 
9733           <param name=
"x" type=
"int" default=
""/> 
9736       <method name=
"DeviceToLogicalYRel" type=
"int" overloaded=
"no"> 
9737         <autodoc>DeviceToLogicalYRel(int y) -
> int
</autodoc> 
9739           <param name=
"y" type=
"int" default=
""/> 
9742       <method name=
"LogicalToDeviceX" type=
"int" overloaded=
"no"> 
9743         <autodoc>LogicalToDeviceX(int x) -
> int
</autodoc> 
9745           <param name=
"x" type=
"int" default=
""/> 
9748       <method name=
"LogicalToDeviceY" type=
"int" overloaded=
"no"> 
9749         <autodoc>LogicalToDeviceY(int y) -
> int
</autodoc> 
9751           <param name=
"y" type=
"int" default=
""/> 
9754       <method name=
"LogicalToDeviceXRel" type=
"int" overloaded=
"no"> 
9755         <autodoc>LogicalToDeviceXRel(int x) -
> int
</autodoc> 
9757           <param name=
"x" type=
"int" default=
""/> 
9760       <method name=
"LogicalToDeviceYRel" type=
"int" overloaded=
"no"> 
9761         <autodoc>LogicalToDeviceYRel(int y) -
> int
</autodoc> 
9763           <param name=
"y" type=
"int" default=
""/> 
9766       <method name=
"CanDrawBitmap" type=
"bool" overloaded=
"no"> 
9767         <autodoc>CanDrawBitmap() -
> bool
</autodoc> 
9769       <method name=
"CanGetTextExtent" type=
"bool" overloaded=
"no"> 
9770         <autodoc>CanGetTextExtent() -
> bool
</autodoc> 
9772       <method name=
"GetDepth" type=
"int" overloaded=
"no"> 
9773         <autodoc>GetDepth() -
> int
</autodoc> 
9775       <method name=
"GetPPI" type=
"Size" overloaded=
"no"> 
9776         <autodoc>GetPPI() -
> Size
</autodoc> 
9778       <method name=
"Ok" type=
"bool" overloaded=
"no"> 
9779         <autodoc>Ok() -
> bool
</autodoc> 
9781       <method name=
"GetBackgroundMode" type=
"int" overloaded=
"no"> 
9782         <autodoc>GetBackgroundMode() -
> int
</autodoc> 
9784       <method name=
"GetBackground" type=
"Brush" overloaded=
"no"> 
9785         <autodoc>GetBackground() -
> Brush
</autodoc> 
9787       <method name=
"GetBrush" type=
"Brush" overloaded=
"no"> 
9788         <autodoc>GetBrush() -
> Brush
</autodoc> 
9790       <method name=
"GetFont" type=
"Font" overloaded=
"no"> 
9791         <autodoc>GetFont() -
> Font
</autodoc> 
9793       <method name=
"GetPen" type=
"Pen" overloaded=
"no"> 
9794         <autodoc>GetPen() -
> Pen
</autodoc> 
9796       <method name=
"GetTextBackground" type=
"Colour" overloaded=
"no"> 
9797         <autodoc>GetTextBackground() -
> Colour
</autodoc> 
9799       <method name=
"GetTextForeground" type=
"Colour" overloaded=
"no"> 
9800         <autodoc>GetTextForeground() -
> Colour
</autodoc> 
9802       <method name=
"SetTextForeground" type=
"" overloaded=
"no"> 
9803         <autodoc>SetTextForeground(Colour colour)
</autodoc> 
9805           <param name=
"colour" type=
"Colour" default=
""/> 
9808       <method name=
"SetTextBackground" type=
"" overloaded=
"no"> 
9809         <autodoc>SetTextBackground(Colour colour)
</autodoc> 
9811           <param name=
"colour" type=
"Colour" default=
""/> 
9814       <method name=
"GetMapMode" type=
"int" overloaded=
"no"> 
9815         <autodoc>GetMapMode() -
> int
</autodoc> 
9817       <method name=
"SetMapMode" type=
"" overloaded=
"no"> 
9818         <autodoc>SetMapMode(int mode)
</autodoc> 
9820           <param name=
"mode" type=
"int" default=
""/> 
9823       <method name=
"GetUserScale" type=
"" overloaded=
"no"> 
9824         <autodoc>GetUserScale() -
> (xScale, yScale)
</autodoc> 
9826           <param name=
"OUTPUT" type=
"double" default=
""/> 
9827           <param name=
"OUTPUT" type=
"double" default=
""/> 
9830       <method name=
"SetUserScale" type=
"" overloaded=
"no"> 
9831         <autodoc>SetUserScale(double x, double y)
</autodoc> 
9833           <param name=
"x" type=
"double" default=
""/> 
9834           <param name=
"y" type=
"double" default=
""/> 
9837       <method name=
"GetLogicalScale" type=
"" overloaded=
"no"> 
9838         <autodoc>GetLogicalScale() -
> (xScale, yScale)
</autodoc> 
9840           <param name=
"OUTPUT" type=
"double" default=
""/> 
9841           <param name=
"OUTPUT" type=
"double" default=
""/> 
9844       <method name=
"SetLogicalScale" type=
"" overloaded=
"no"> 
9845         <autodoc>SetLogicalScale(double x, double y)
</autodoc> 
9847           <param name=
"x" type=
"double" default=
""/> 
9848           <param name=
"y" type=
"double" default=
""/> 
9851       <method name=
"GetLogicalOrigin" type=
"Point" overloaded=
"no"> 
9852         <autodoc>GetLogicalOrigin() -
> Point
</autodoc> 
9854       <method name=
"GetLogicalOriginTuple" type=
"" overloaded=
"no"> 
9855         <autodoc>GetLogicalOriginTuple() -
> (x,y)
</autodoc> 
9857           <param name=
"OUTPUT" type=
"int" default=
""/> 
9858           <param name=
"OUTPUT" type=
"int" default=
""/> 
9861       <method name=
"SetLogicalOrigin" type=
"" overloaded=
"no"> 
9862         <autodoc>SetLogicalOrigin(int x, int y)
</autodoc> 
9864           <param name=
"x" type=
"int" default=
""/> 
9865           <param name=
"y" type=
"int" default=
""/> 
9868       <method name=
"GetDeviceOrigin" type=
"Point" overloaded=
"no"> 
9869         <autodoc>GetDeviceOrigin() -
> Point
</autodoc> 
9871       <method name=
"GetDeviceOriginTuple" type=
"" overloaded=
"no"> 
9872         <autodoc>GetDeviceOriginTuple() -
> (x,y)
</autodoc> 
9874           <param name=
"OUTPUT" type=
"int" default=
""/> 
9875           <param name=
"OUTPUT" type=
"int" default=
""/> 
9878       <method name=
"SetDeviceOrigin" type=
"" overloaded=
"no"> 
9879         <autodoc>SetDeviceOrigin(int x, int y)
</autodoc> 
9881           <param name=
"x" type=
"int" default=
""/> 
9882           <param name=
"y" type=
"int" default=
""/> 
9885       <method name=
"SetAxisOrientation" type=
"" overloaded=
"no"> 
9886         <autodoc>SetAxisOrientation(bool xLeftRight, bool yBottomUp)
</autodoc> 
9888           <param name=
"xLeftRight" type=
"bool" default=
""/> 
9889           <param name=
"yBottomUp" type=
"bool" default=
""/> 
9892       <method name=
"GetLogicalFunction" type=
"int" overloaded=
"no"> 
9893         <autodoc>GetLogicalFunction() -
> int
</autodoc> 
9895       <method name=
"SetLogicalFunction" type=
"" overloaded=
"no"> 
9896         <autodoc>SetLogicalFunction(int function)
</autodoc> 
9898           <param name=
"function" type=
"int" default=
""/> 
9901       <method name=
"SetOptimization" type=
"" overloaded=
"no"> 
9902         <autodoc>SetOptimization(bool opt)
</autodoc> 
9904           <param name=
"opt" type=
"bool" default=
""/> 
9907       <method name=
"GetOptimization" type=
"bool" overloaded=
"no"> 
9908         <autodoc>GetOptimization() -
> bool
</autodoc> 
9910       <method name=
"CalcBoundingBox" type=
"" overloaded=
"no"> 
9911         <autodoc>CalcBoundingBox(int x, int y)
</autodoc> 
9913           <param name=
"x" type=
"int" default=
""/> 
9914           <param name=
"y" type=
"int" default=
""/> 
9917       <method name=
"ResetBoundingBox" type=
"" overloaded=
"no"> 
9918         <autodoc>ResetBoundingBox()
</autodoc> 
9920       <method name=
"MinX" type=
"int" overloaded=
"no"> 
9921         <autodoc>MinX() -
> int
</autodoc> 
9923       <method name=
"MaxX" type=
"int" overloaded=
"no"> 
9924         <autodoc>MaxX() -
> int
</autodoc> 
9926       <method name=
"MinY" type=
"int" overloaded=
"no"> 
9927         <autodoc>MinY() -
> int
</autodoc> 
9929       <method name=
"MaxY" type=
"int" overloaded=
"no"> 
9930         <autodoc>MaxY() -
> int
</autodoc> 
9932       <method name=
"GetBoundingBox" type=
"" overloaded=
"no"> 
9933         <autodoc>GetBoundingBox() -
> (x1,y1, x2,y2)
</autodoc> 
9935           <param name=
"OUTPUT" type=
"int" default=
""/> 
9936           <param name=
"OUTPUT" type=
"int" default=
""/> 
9937           <param name=
"OUTPUT" type=
"int" default=
""/> 
9938           <param name=
"OUTPUT" type=
"int" default=
""/> 
9941       <method name=
"_DrawPointList" type=
"PyObject" overloaded=
"no"> 
9942         <autodoc>_DrawPointList(PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -
> PyObject
</autodoc> 
9944           <param name=
"pyCoords" type=
"PyObject" default=
""/> 
9945           <param name=
"pyPens" type=
"PyObject" default=
""/> 
9946           <param name=
"pyBrushes" type=
"PyObject" default=
""/> 
9949       <method name=
"_DrawLineList" type=
"PyObject" overloaded=
"no"> 
9950         <autodoc>_DrawLineList(PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -
> PyObject
</autodoc> 
9952           <param name=
"pyCoords" type=
"PyObject" default=
""/> 
9953           <param name=
"pyPens" type=
"PyObject" default=
""/> 
9954           <param name=
"pyBrushes" type=
"PyObject" default=
""/> 
9957       <method name=
"_DrawRectangleList" type=
"PyObject" overloaded=
"no"> 
9958         <autodoc>_DrawRectangleList(PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -
> PyObject
</autodoc> 
9960           <param name=
"pyCoords" type=
"PyObject" default=
""/> 
9961           <param name=
"pyPens" type=
"PyObject" default=
""/> 
9962           <param name=
"pyBrushes" type=
"PyObject" default=
""/> 
9965       <method name=
"_DrawEllipseList" type=
"PyObject" overloaded=
"no"> 
9966         <autodoc>_DrawEllipseList(PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -
> PyObject
</autodoc> 
9968           <param name=
"pyCoords" type=
"PyObject" default=
""/> 
9969           <param name=
"pyPens" type=
"PyObject" default=
""/> 
9970           <param name=
"pyBrushes" type=
"PyObject" default=
""/> 
9973       <method name=
"_DrawPolygonList" type=
"PyObject" overloaded=
"no"> 
9974         <autodoc>_DrawPolygonList(PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -
> PyObject
</autodoc> 
9976           <param name=
"pyCoords" type=
"PyObject" default=
""/> 
9977           <param name=
"pyPens" type=
"PyObject" default=
""/> 
9978           <param name=
"pyBrushes" type=
"PyObject" default=
""/> 
9981       <method name=
"_DrawTextList" type=
"PyObject" overloaded=
"no"> 
9982         <autodoc>_DrawTextList(PyObject textList, PyObject pyPoints, PyObject foregroundList, 
 
9983     PyObject backgroundList) -
> PyObject
</autodoc> 
9985           <param name=
"textList" type=
"PyObject" default=
""/> 
9986           <param name=
"pyPoints" type=
"PyObject" default=
""/> 
9987           <param name=
"foregroundList" type=
"PyObject" default=
""/> 
9988           <param name=
"backgroundList" type=
"PyObject" default=
""/> 
9993 #---------------------------------------------------------------------------
 
9995     <class name=
"MemoryDC" oldname=
"wxMemoryDC" module=
"gdi"> 
9996       <baseclass name=
"DC"/> 
9997       <constructor name=
"MemoryDC" overloaded=
"no"> 
9998         <autodoc>__init__() -
> MemoryDC
</autodoc> 
10000       <constructor name=
"MemoryDCFromDC" overloaded=
"no"> 
10001         <autodoc>MemoryDCFromDC(DC oldDC) -
> MemoryDC
</autodoc> 
10003           <param name=
"oldDC" type=
"DC" default=
""/> 
10006       <method name=
"SelectObject" type=
"" overloaded=
"no"> 
10007         <autodoc>SelectObject(Bitmap bitmap)
</autodoc> 
10009           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
10014 #---------------------------------------------------------------------------
 
10016     <class name=
"BufferedDC" oldname=
"wxBufferedDC" module=
"gdi"> 
10017       <baseclass name=
"MemoryDC"/> 
10018       <constructor name=
"BufferedDC" overloaded=
"yes"> 
10020           <param name=
"dc" type=
"DC" default=
""/> 
10021           <param name=
"buffer" type=
"Bitmap" default=
""/> 
10024       <constructor name=
"BufferedDC" overloaded=
"yes"> 
10025         <autodoc>__init__(DC dc, Bitmap buffer) -
> BufferedDC
 
10026 __init__(DC dc, Size area) -
> BufferedDC
</autodoc> 
10028           <param name=
"dc" type=
"DC" default=
""/> 
10029           <param name=
"area" type=
"Size" default=
""/> 
10032       <constructor name=
"BufferedDCInternalBuffer" overloaded=
"no"> 
10033         <autodoc>BufferedDCInternalBuffer(DC dc, Size area) -
> BufferedDC
</autodoc> 
10035           <param name=
"dc" type=
"DC" default=
""/> 
10036           <param name=
"area" type=
"Size" default=
""/> 
10039       <destructor name=
"~wxBufferedDC" overloaded=
"no"> 
10040         <autodoc>__del__()
</autodoc> 
10042       <method name=
"UnMask" type=
"" overloaded=
"no"> 
10043         <autodoc>UnMask()
</autodoc> 
10046     <class name=
"BufferedPaintDC" oldname=
"wxBufferedPaintDC" module=
"gdi"> 
10047       <baseclass name=
"BufferedDC"/> 
10048       <constructor name=
"BufferedPaintDC" overloaded=
"no"> 
10049         <autodoc>__init__(Window window, Bitmap buffer=NullBitmap) -
> BufferedPaintDC
</autodoc> 
10051           <param name=
"window" type=
"Window" default=
""/> 
10052           <param name=
"buffer" type=
"Bitmap" default=
"wxNullBitmap"/> 
10057 #---------------------------------------------------------------------------
 
10059     <class name=
"ScreenDC" oldname=
"wxScreenDC" module=
"gdi"> 
10060       <baseclass name=
"DC"/> 
10061       <constructor name=
"ScreenDC" overloaded=
"no"> 
10062         <autodoc>__init__() -
> ScreenDC
</autodoc> 
10064       <method name=
"StartDrawingOnTopWin" type=
"bool" overloaded=
"no"> 
10065         <autodoc>StartDrawingOnTopWin(Window window) -
> bool
</autodoc> 
10067           <param name=
"window" type=
"Window" default=
""/> 
10070       <method name=
"StartDrawingOnTop" type=
"bool" overloaded=
"no"> 
10071         <autodoc>StartDrawingOnTop(Rect rect=None) -
> bool
</autodoc> 
10073           <param name=
"rect" type=
"Rect" default=
"NULL"/> 
10076       <method name=
"EndDrawingOnTop" type=
"bool" overloaded=
"no"> 
10077         <autodoc>EndDrawingOnTop() -
> bool
</autodoc> 
10081 #---------------------------------------------------------------------------
 
10083     <class name=
"ClientDC" oldname=
"wxClientDC" module=
"gdi"> 
10084       <baseclass name=
"DC"/> 
10085       <constructor name=
"ClientDC" overloaded=
"no"> 
10086         <autodoc>__init__(Window win) -
> ClientDC
</autodoc> 
10088           <param name=
"win" type=
"Window" default=
""/> 
10093 #---------------------------------------------------------------------------
 
10095     <class name=
"PaintDC" oldname=
"wxPaintDC" module=
"gdi"> 
10096       <baseclass name=
"DC"/> 
10097       <constructor name=
"PaintDC" overloaded=
"no"> 
10098         <autodoc>__init__(Window win) -
> PaintDC
</autodoc> 
10100           <param name=
"win" type=
"Window" default=
""/> 
10105 #---------------------------------------------------------------------------
 
10107     <class name=
"WindowDC" oldname=
"wxWindowDC" module=
"gdi"> 
10108       <baseclass name=
"DC"/> 
10109       <constructor name=
"WindowDC" overloaded=
"no"> 
10110         <autodoc>__init__(Window win) -
> WindowDC
</autodoc> 
10112           <param name=
"win" type=
"Window" default=
""/> 
10117 #---------------------------------------------------------------------------
 
10119     <class name=
"MirrorDC" oldname=
"wxMirrorDC" module=
"gdi"> 
10120       <baseclass name=
"DC"/> 
10121       <constructor name=
"MirrorDC" overloaded=
"no"> 
10122         <autodoc>__init__(DC dc, bool mirror) -
> MirrorDC
</autodoc> 
10124           <param name=
"dc" type=
"DC" default=
""/> 
10125           <param name=
"mirror" type=
"bool" default=
""/> 
10130 #---------------------------------------------------------------------------
 
10132     <class name=
"PostScriptDC" oldname=
"wxPostScriptDC" module=
"gdi"> 
10133       <baseclass name=
"DC"/> 
10134       <constructor name=
"PostScriptDC" overloaded=
"no"> 
10135         <autodoc>__init__(wxPrintData printData) -
> PostScriptDC
</autodoc> 
10137           <param name=
"printData" type=
"wxPrintData" default=
""/> 
10140       <method name=
"GetPrintData" type=
"wxPrintData" overloaded=
"no"> 
10141         <autodoc>GetPrintData() -
> wxPrintData
</autodoc> 
10143       <method name=
"SetPrintData" type=
"" overloaded=
"no"> 
10144         <autodoc>SetPrintData(wxPrintData data)
</autodoc> 
10146           <param name=
"data" type=
"wxPrintData" default=
""/> 
10149       <staticmethod name=
"SetResolution" type=
"" overloaded=
"no"> 
10150         <autodoc>SetResolution(int ppi)
</autodoc> 
10152           <param name=
"ppi" type=
"int" default=
""/> 
10155       <staticmethod name=
"GetResolution" type=
"int" overloaded=
"no"> 
10156         <autodoc>GetResolution() -
> int
</autodoc> 
10160 #---------------------------------------------------------------------------
 
10162     <class name=
"MetaFile" oldname=
"wxMetaFile" module=
"gdi"> 
10163       <baseclass name=
"Object"/> 
10164       <constructor name=
"MetaFile" overloaded=
"no"> 
10165         <autodoc>__init__(String filename=EmptyString) -
> MetaFile
</autodoc> 
10167           <param name=
"filename" type=
"String" default=
"wxPyEmptyString"/> 
10171     <class name=
"MetaFileDC" oldname=
"wxMetaFileDC" module=
"gdi"> 
10172       <baseclass name=
"DC"/> 
10173       <constructor name=
"MetaFileDC" overloaded=
"no"> 
10174         <autodoc>__init__(String filename=EmptyString, int width=
0, int height=
0, 
 
10175     String description=EmptyString) -
> MetaFileDC
</autodoc> 
10177           <param name=
"filename" type=
"String" default=
"wxPyEmptyString"/> 
10178           <param name=
"width" type=
"int" default=
"0"/> 
10179           <param name=
"height" type=
"int" default=
"0"/> 
10180           <param name=
"description" type=
"String" default=
"wxPyEmptyString"/> 
10184     <class name=
"PrinterDC" oldname=
"wxPrinterDC" module=
"gdi"> 
10185       <baseclass name=
"DC"/> 
10186       <constructor name=
"PrinterDC" overloaded=
"no"> 
10187         <autodoc>__init__(wxPrintData printData) -
> PrinterDC
</autodoc> 
10189           <param name=
"printData" type=
"wxPrintData" default=
""/> 
10195         """DC class that has methods with 
2.4 compatible parameters."""
 
10196         FloodFill = DC.FloodFillXY
 
10197         GetPixel = DC.GetPixelXY
 
10198         DrawLine = DC.DrawLineXY
 
10199         CrossHair = DC.CrossHairXY
 
10200         DrawArc = DC.DrawArcXY
 
10201         DrawCheckMark = DC.DrawCheckMarkXY
 
10202         DrawEllipticArc = DC.DrawEllipticArcXY
 
10203         DrawPoint = DC.DrawPointXY
 
10204         DrawRectangle = DC.DrawRectangleXY
 
10205         DrawRoundedRectangle = DC.DrawRoundedRectangleXY
 
10206         DrawCircle = DC.DrawCircleXY
 
10207         DrawEllipse = DC.DrawEllipseXY
 
10208         DrawIcon = DC.DrawIconXY
 
10209         DrawBitmap = DC.DrawBitmapXY
 
10210         DrawText = DC.DrawTextXY
 
10211         DrawRotatedText = DC.DrawRotatedTextXY
 
10215     class MemoryDC_old(MemoryDC):
 
10216         """DC class that has methods with 
2.4 compatible parameters."""
 
10217         FloodFill = MemoryDC.FloodFillXY
 
10218         GetPixel = MemoryDC.GetPixelXY
 
10219         DrawLine = MemoryDC.DrawLineXY
 
10220         CrossHair = MemoryDC.CrossHairXY
 
10221         DrawArc = MemoryDC.DrawArcXY
 
10222         DrawCheckMark = MemoryDC.DrawCheckMarkXY
 
10223         DrawEllipticArc = MemoryDC.DrawEllipticArcXY
 
10224         DrawPoint = MemoryDC.DrawPointXY
 
10225         DrawRectangle = MemoryDC.DrawRectangleXY
 
10226         DrawRoundedRectangle = MemoryDC.DrawRoundedRectangleXY
 
10227         DrawCircle = MemoryDC.DrawCircleXY
 
10228         DrawEllipse = MemoryDC.DrawEllipseXY
 
10229         DrawIcon = MemoryDC.DrawIconXY
 
10230         DrawBitmap = MemoryDC.DrawBitmapXY
 
10231         DrawText = MemoryDC.DrawTextXY
 
10232         DrawRotatedText = MemoryDC.DrawRotatedTextXY
 
10233         Blit = MemoryDC.BlitXY
 
10236     class BufferedDC_old(BufferedDC):
 
10237         """DC class that has methods with 
2.4 compatible parameters."""
 
10238         FloodFill = BufferedDC.FloodFillXY
 
10239         GetPixel = BufferedDC.GetPixelXY
 
10240         DrawLine = BufferedDC.DrawLineXY
 
10241         CrossHair = BufferedDC.CrossHairXY
 
10242         DrawArc = BufferedDC.DrawArcXY
 
10243         DrawCheckMark = BufferedDC.DrawCheckMarkXY
 
10244         DrawEllipticArc = BufferedDC.DrawEllipticArcXY
 
10245         DrawPoint = BufferedDC.DrawPointXY
 
10246         DrawRectangle = BufferedDC.DrawRectangleXY
 
10247         DrawRoundedRectangle = BufferedDC.DrawRoundedRectangleXY
 
10248         DrawCircle = BufferedDC.DrawCircleXY
 
10249         DrawEllipse = BufferedDC.DrawEllipseXY
 
10250         DrawIcon = BufferedDC.DrawIconXY
 
10251         DrawBitmap = BufferedDC.DrawBitmapXY
 
10252         DrawText = BufferedDC.DrawTextXY
 
10253         DrawRotatedText = BufferedDC.DrawRotatedTextXY
 
10254         Blit = BufferedDC.BlitXY
 
10257     class BufferedPaintDC_old(BufferedPaintDC):
 
10258         """DC class that has methods with 
2.4 compatible parameters."""
 
10259         FloodFill = BufferedPaintDC.FloodFillXY
 
10260         GetPixel = BufferedPaintDC.GetPixelXY
 
10261         DrawLine = BufferedPaintDC.DrawLineXY
 
10262         CrossHair = BufferedPaintDC.CrossHairXY
 
10263         DrawArc = BufferedPaintDC.DrawArcXY
 
10264         DrawCheckMark = BufferedPaintDC.DrawCheckMarkXY
 
10265         DrawEllipticArc = BufferedPaintDC.DrawEllipticArcXY
 
10266         DrawPoint = BufferedPaintDC.DrawPointXY
 
10267         DrawRectangle = BufferedPaintDC.DrawRectangleXY
 
10268         DrawRoundedRectangle = BufferedPaintDC.DrawRoundedRectangleXY
 
10269         DrawCircle = BufferedPaintDC.DrawCircleXY
 
10270         DrawEllipse = BufferedPaintDC.DrawEllipseXY
 
10271         DrawIcon = BufferedPaintDC.DrawIconXY
 
10272         DrawBitmap = BufferedPaintDC.DrawBitmapXY
 
10273         DrawText = BufferedPaintDC.DrawTextXY
 
10274         DrawRotatedText = BufferedPaintDC.DrawRotatedTextXY
 
10275         Blit = BufferedPaintDC.BlitXY
 
10278     class ScreenDC_old(ScreenDC):
 
10279         """DC class that has methods with 
2.4 compatible parameters."""
 
10280         FloodFill = ScreenDC.FloodFillXY
 
10281         GetPixel = ScreenDC.GetPixelXY
 
10282         DrawLine = ScreenDC.DrawLineXY
 
10283         CrossHair = ScreenDC.CrossHairXY
 
10284         DrawArc = ScreenDC.DrawArcXY
 
10285         DrawCheckMark = ScreenDC.DrawCheckMarkXY
 
10286         DrawEllipticArc = ScreenDC.DrawEllipticArcXY
 
10287         DrawPoint = ScreenDC.DrawPointXY
 
10288         DrawRectangle = ScreenDC.DrawRectangleXY
 
10289         DrawRoundedRectangle = ScreenDC.DrawRoundedRectangleXY
 
10290         DrawCircle = ScreenDC.DrawCircleXY
 
10291         DrawEllipse = ScreenDC.DrawEllipseXY
 
10292         DrawIcon = ScreenDC.DrawIconXY
 
10293         DrawBitmap = ScreenDC.DrawBitmapXY
 
10294         DrawText = ScreenDC.DrawTextXY
 
10295         DrawRotatedText = ScreenDC.DrawRotatedTextXY
 
10296         Blit = ScreenDC.BlitXY
 
10299     class ClientDC_old(ClientDC):
 
10300         """DC class that has methods with 
2.4 compatible parameters."""
 
10301         FloodFill = ClientDC.FloodFillXY
 
10302         GetPixel = ClientDC.GetPixelXY
 
10303         DrawLine = ClientDC.DrawLineXY
 
10304         CrossHair = ClientDC.CrossHairXY
 
10305         DrawArc = ClientDC.DrawArcXY
 
10306         DrawCheckMark = ClientDC.DrawCheckMarkXY
 
10307         DrawEllipticArc = ClientDC.DrawEllipticArcXY
 
10308         DrawPoint = ClientDC.DrawPointXY
 
10309         DrawRectangle = ClientDC.DrawRectangleXY
 
10310         DrawRoundedRectangle = ClientDC.DrawRoundedRectangleXY
 
10311         DrawCircle = ClientDC.DrawCircleXY
 
10312         DrawEllipse = ClientDC.DrawEllipseXY
 
10313         DrawIcon = ClientDC.DrawIconXY
 
10314         DrawBitmap = ClientDC.DrawBitmapXY
 
10315         DrawText = ClientDC.DrawTextXY
 
10316         DrawRotatedText = ClientDC.DrawRotatedTextXY
 
10317         Blit = ClientDC.BlitXY
 
10320     class PaintDC_old(PaintDC):
 
10321         """DC class that has methods with 
2.4 compatible parameters."""
 
10322         FloodFill = PaintDC.FloodFillXY
 
10323         GetPixel = PaintDC.GetPixelXY
 
10324         DrawLine = PaintDC.DrawLineXY
 
10325         CrossHair = PaintDC.CrossHairXY
 
10326         DrawArc = PaintDC.DrawArcXY
 
10327         DrawCheckMark = PaintDC.DrawCheckMarkXY
 
10328         DrawEllipticArc = PaintDC.DrawEllipticArcXY
 
10329         DrawPoint = PaintDC.DrawPointXY
 
10330         DrawRectangle = PaintDC.DrawRectangleXY
 
10331         DrawRoundedRectangle = PaintDC.DrawRoundedRectangleXY
 
10332         DrawCircle = PaintDC.DrawCircleXY
 
10333         DrawEllipse = PaintDC.DrawEllipseXY
 
10334         DrawIcon = PaintDC.DrawIconXY
 
10335         DrawBitmap = PaintDC.DrawBitmapXY
 
10336         DrawText = PaintDC.DrawTextXY
 
10337         DrawRotatedText = PaintDC.DrawRotatedTextXY
 
10338         Blit = PaintDC.BlitXY
 
10341     class WindowDC_old(WindowDC):
 
10342         """DC class that has methods with 
2.4 compatible parameters."""
 
10343         FloodFill = WindowDC.FloodFillXY
 
10344         GetPixel = WindowDC.GetPixelXY
 
10345         DrawLine = WindowDC.DrawLineXY
 
10346         CrossHair = WindowDC.CrossHairXY
 
10347         DrawArc = WindowDC.DrawArcXY
 
10348         DrawCheckMark = WindowDC.DrawCheckMarkXY
 
10349         DrawEllipticArc = WindowDC.DrawEllipticArcXY
 
10350         DrawPoint = WindowDC.DrawPointXY
 
10351         DrawRectangle = WindowDC.DrawRectangleXY
 
10352         DrawRoundedRectangle = WindowDC.DrawRoundedRectangleXY
 
10353         DrawCircle = WindowDC.DrawCircleXY
 
10354         DrawEllipse = WindowDC.DrawEllipseXY
 
10355         DrawIcon = WindowDC.DrawIconXY
 
10356         DrawBitmap = WindowDC.DrawBitmapXY
 
10357         DrawText = WindowDC.DrawTextXY
 
10358         DrawRotatedText = WindowDC.DrawRotatedTextXY
 
10359         Blit = WindowDC.BlitXY
 
10362     class MirrorDC_old(MirrorDC):
 
10363         """DC class that has methods with 
2.4 compatible parameters."""
 
10364         FloodFill = MirrorDC.FloodFillXY
 
10365         GetPixel = MirrorDC.GetPixelXY
 
10366         DrawLine = MirrorDC.DrawLineXY
 
10367         CrossHair = MirrorDC.CrossHairXY
 
10368         DrawArc = MirrorDC.DrawArcXY
 
10369         DrawCheckMark = MirrorDC.DrawCheckMarkXY
 
10370         DrawEllipticArc = MirrorDC.DrawEllipticArcXY
 
10371         DrawPoint = MirrorDC.DrawPointXY
 
10372         DrawRectangle = MirrorDC.DrawRectangleXY
 
10373         DrawRoundedRectangle = MirrorDC.DrawRoundedRectangleXY
 
10374         DrawCircle = MirrorDC.DrawCircleXY
 
10375         DrawEllipse = MirrorDC.DrawEllipseXY
 
10376         DrawIcon = MirrorDC.DrawIconXY
 
10377         DrawBitmap = MirrorDC.DrawBitmapXY
 
10378         DrawText = MirrorDC.DrawTextXY
 
10379         DrawRotatedText = MirrorDC.DrawRotatedTextXY
 
10380         Blit = MirrorDC.BlitXY
 
10383     class PostScriptDC_old(PostScriptDC):
 
10384         """DC class that has methods with 
2.4 compatible parameters."""
 
10385         FloodFill = PostScriptDC.FloodFillXY
 
10386         GetPixel = PostScriptDC.GetPixelXY
 
10387         DrawLine = PostScriptDC.DrawLineXY
 
10388         CrossHair = PostScriptDC.CrossHairXY
 
10389         DrawArc = PostScriptDC.DrawArcXY
 
10390         DrawCheckMark = PostScriptDC.DrawCheckMarkXY
 
10391         DrawEllipticArc = PostScriptDC.DrawEllipticArcXY
 
10392         DrawPoint = PostScriptDC.DrawPointXY
 
10393         DrawRectangle = PostScriptDC.DrawRectangleXY
 
10394         DrawRoundedRectangle = PostScriptDC.DrawRoundedRectangleXY
 
10395         DrawCircle = PostScriptDC.DrawCircleXY
 
10396         DrawEllipse = PostScriptDC.DrawEllipseXY
 
10397         DrawIcon = PostScriptDC.DrawIconXY
 
10398         DrawBitmap = PostScriptDC.DrawBitmapXY
 
10399         DrawText = PostScriptDC.DrawTextXY
 
10400         DrawRotatedText = PostScriptDC.DrawRotatedTextXY
 
10401         Blit = PostScriptDC.BlitXY
 
10404     class MetaFileDC_old(MetaFileDC):
 
10405         """DC class that has methods with 
2.4 compatible parameters."""
 
10406         FloodFill = MetaFileDC.FloodFillXY
 
10407         GetPixel = MetaFileDC.GetPixelXY
 
10408         DrawLine = MetaFileDC.DrawLineXY
 
10409         CrossHair = MetaFileDC.CrossHairXY
 
10410         DrawArc = MetaFileDC.DrawArcXY
 
10411         DrawCheckMark = MetaFileDC.DrawCheckMarkXY
 
10412         DrawEllipticArc = MetaFileDC.DrawEllipticArcXY
 
10413         DrawPoint = MetaFileDC.DrawPointXY
 
10414         DrawRectangle = MetaFileDC.DrawRectangleXY
 
10415         DrawRoundedRectangle = MetaFileDC.DrawRoundedRectangleXY
 
10416         DrawCircle = MetaFileDC.DrawCircleXY
 
10417         DrawEllipse = MetaFileDC.DrawEllipseXY
 
10418         DrawIcon = MetaFileDC.DrawIconXY
 
10419         DrawBitmap = MetaFileDC.DrawBitmapXY
 
10420         DrawText = MetaFileDC.DrawTextXY
 
10421         DrawRotatedText = MetaFileDC.DrawRotatedTextXY
 
10422         Blit = MetaFileDC.BlitXY
 
10425     class PrinterDC_old(PrinterDC):
 
10426         """DC class that has methods with 
2.4 compatible parameters."""
 
10427         FloodFill = PrinterDC.FloodFillXY
 
10428         GetPixel = PrinterDC.GetPixelXY
 
10429         DrawLine = PrinterDC.DrawLineXY
 
10430         CrossHair = PrinterDC.CrossHairXY
 
10431         DrawArc = PrinterDC.DrawArcXY
 
10432         DrawCheckMark = PrinterDC.DrawCheckMarkXY
 
10433         DrawEllipticArc = PrinterDC.DrawEllipticArcXY
 
10434         DrawPoint = PrinterDC.DrawPointXY
 
10435         DrawRectangle = PrinterDC.DrawRectangleXY
 
10436         DrawRoundedRectangle = PrinterDC.DrawRoundedRectangleXY
 
10437         DrawCircle = PrinterDC.DrawCircleXY
 
10438         DrawEllipse = PrinterDC.DrawEllipseXY
 
10439         DrawIcon = PrinterDC.DrawIconXY
 
10440         DrawBitmap = PrinterDC.DrawBitmapXY
 
10441         DrawText = PrinterDC.DrawTextXY
 
10442         DrawRotatedText = PrinterDC.DrawRotatedTextXY
 
10443         Blit = PrinterDC.BlitXY
 
10446 #---------------------------------------------------------------------------
 
10448     <class name=
"ImageList" oldname=
"wxImageList" module=
"gdi"> 
10449       <baseclass name=
"Object"/> 
10450       <constructor name=
"ImageList" overloaded=
"no"> 
10451         <autodoc>__init__(int width, int height, int mask=True, int initialCount=
1) -
> ImageList
</autodoc> 
10453           <param name=
"width" type=
"int" default=
""/> 
10454           <param name=
"height" type=
"int" default=
""/> 
10455           <param name=
"mask" type=
"int" default=
"True"/> 
10456           <param name=
"initialCount" type=
"int" default=
"1"/> 
10459       <destructor name=
"~wxImageList" overloaded=
"no"> 
10460         <autodoc>__del__()
</autodoc> 
10462       <method name=
"Add" type=
"int" overloaded=
"no"> 
10463         <autodoc>Add(Bitmap bitmap, Bitmap mask=NullBitmap) -
> int
</autodoc> 
10465           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
10466           <param name=
"mask" type=
"Bitmap" default=
"wxNullBitmap"/> 
10469       <method name=
"AddWithColourMask" type=
"int" overloaded=
"no"> 
10470         <autodoc>AddWithColourMask(Bitmap bitmap, Colour maskColour) -
> int
</autodoc> 
10472           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
10473           <param name=
"maskColour" type=
"Colour" default=
""/> 
10476       <method name=
"AddIcon" type=
"int" overloaded=
"no"> 
10477         <autodoc>AddIcon(Icon icon) -
> int
</autodoc> 
10479           <param name=
"icon" type=
"Icon" default=
""/> 
10482       <method name=
"Replace" type=
"bool" overloaded=
"no"> 
10483         <autodoc>Replace(int index, Bitmap bitmap) -
> bool
</autodoc> 
10485           <param name=
"index" type=
"int" default=
""/> 
10486           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
10489       <method name=
"Draw" type=
"bool" overloaded=
"no"> 
10490         <autodoc>Draw(int index, DC dc, int x, int x, int flags=IMAGELIST_DRAW_NORMAL, 
 
10491     bool solidBackground=False) -
> bool
</autodoc> 
10493           <param name=
"index" type=
"int" default=
""/> 
10494           <param name=
"dc" type=
"DC" default=
""/> 
10495           <param name=
"x" type=
"int" default=
""/> 
10496           <param name=
"x" type=
"int" default=
""/> 
10497           <param name=
"flags" type=
"int" default=
"wxIMAGELIST_DRAW_NORMAL"/> 
10498           <param name=
"solidBackground" type=
"bool" default=
"False"/> 
10501       <method name=
"GetImageCount" type=
"int" overloaded=
"no"> 
10502         <autodoc>GetImageCount() -
> int
</autodoc> 
10504       <method name=
"Remove" type=
"bool" overloaded=
"no"> 
10505         <autodoc>Remove(int index) -
> bool
</autodoc> 
10507           <param name=
"index" type=
"int" default=
""/> 
10510       <method name=
"RemoveAll" type=
"bool" overloaded=
"no"> 
10511         <autodoc>RemoveAll() -
> bool
</autodoc> 
10513       <method name=
"GetSize" type=
"" overloaded=
"no"> 
10514         <autodoc>GetSize() -
> (width,height)
</autodoc> 
10516           <param name=
"index" type=
"int" default=
""/> 
10517           <param name=
"OUTPUT" type=
"int" default=
""/> 
10518           <param name=
"OUTPUT" type=
"int" default=
""/> 
10523 #---------------------------------------------------------------------------
 
10525     <class name=
"PenList" oldname=
"wxPenList" module=
"gdi"> 
10526       <baseclass name=
"Object"/> 
10527       <method name=
"AddPen" type=
"" overloaded=
"no"> 
10528         <autodoc>AddPen(Pen pen)
</autodoc> 
10530           <param name=
"pen" type=
"Pen" default=
""/> 
10533       <method name=
"FindOrCreatePen" type=
"Pen" overloaded=
"no"> 
10534         <autodoc>FindOrCreatePen(Colour colour, int width, int style) -
> Pen
</autodoc> 
10536           <param name=
"colour" type=
"Colour" default=
""/> 
10537           <param name=
"width" type=
"int" default=
""/> 
10538           <param name=
"style" type=
"int" default=
""/> 
10541       <method name=
"RemovePen" type=
"" overloaded=
"no"> 
10542         <autodoc>RemovePen(Pen pen)
</autodoc> 
10544           <param name=
"pen" type=
"Pen" default=
""/> 
10547       <method name=
"GetCount" type=
"int" overloaded=
"no"> 
10548         <autodoc>GetCount() -
> int
</autodoc> 
10551     <class name=
"BrushList" oldname=
"wxBrushList" module=
"gdi"> 
10552       <baseclass name=
"Object"/> 
10553       <method name=
"AddBrush" type=
"" overloaded=
"no"> 
10554         <autodoc>AddBrush(Brush brush)
</autodoc> 
10556           <param name=
"brush" type=
"Brush" default=
""/> 
10559       <method name=
"FindOrCreateBrush" type=
"Brush" overloaded=
"no"> 
10560         <autodoc>FindOrCreateBrush(Colour colour, int style) -
> Brush
</autodoc> 
10562           <param name=
"colour" type=
"Colour" default=
""/> 
10563           <param name=
"style" type=
"int" default=
""/> 
10566       <method name=
"RemoveBrush" type=
"" overloaded=
"no"> 
10567         <autodoc>RemoveBrush(Brush brush)
</autodoc> 
10569           <param name=
"brush" type=
"Brush" default=
""/> 
10572       <method name=
"GetCount" type=
"int" overloaded=
"no"> 
10573         <autodoc>GetCount() -
> int
</autodoc> 
10576     <class name=
"ColourDatabase" oldname=
"wxColourDatabase" module=
"gdi"> 
10577       <baseclass name=
"Object"/> 
10578       <constructor name=
"ColourDatabase" overloaded=
"no"> 
10579         <autodoc>__init__() -
> ColourDatabase
</autodoc> 
10581       <destructor name=
"~wxColourDatabase" overloaded=
"no"> 
10582         <autodoc>__del__()
</autodoc> 
10584       <method name=
"Find" type=
"Colour" overloaded=
"no"> 
10585         <autodoc>Find(String name) -
> Colour
</autodoc> 
10587           <param name=
"name" type=
"String" default=
""/> 
10590       <method name=
"FindName" type=
"String" overloaded=
"no"> 
10591         <autodoc>FindName(Colour colour) -
> String
</autodoc> 
10593           <param name=
"colour" type=
"Colour" default=
""/> 
10596       <method name=
"AddColour" type=
"" overloaded=
"no"> 
10597         <autodoc>AddColour(String name, Colour colour)
</autodoc> 
10599           <param name=
"name" type=
"String" default=
""/> 
10600           <param name=
"colour" type=
"Colour" default=
""/> 
10603       <method name=
"Append" type=
"" overloaded=
"no"> 
10604         <autodoc>Append(String name, int red, int green, int blue)
</autodoc> 
10606           <param name=
"name" type=
"String" default=
""/> 
10607           <param name=
"red" type=
"int" default=
""/> 
10608           <param name=
"green" type=
"int" default=
""/> 
10609           <param name=
"blue" type=
"int" default=
""/> 
10613     <class name=
"FontList" oldname=
"wxFontList" module=
"gdi"> 
10614       <baseclass name=
"Object"/> 
10615       <method name=
"AddFont" type=
"" overloaded=
"no"> 
10616         <autodoc>AddFont(Font font)
</autodoc> 
10618           <param name=
"font" type=
"Font" default=
""/> 
10621       <method name=
"FindOrCreateFont" type=
"Font" overloaded=
"no"> 
10622         <autodoc>FindOrCreateFont(int point_size, int family, int style, int weight, 
 
10623     bool underline=False, String facename=EmptyString, 
 
10624     int encoding=FONTENCODING_DEFAULT) -
> Font
</autodoc> 
10626           <param name=
"point_size" type=
"int" default=
""/> 
10627           <param name=
"family" type=
"int" default=
""/> 
10628           <param name=
"style" type=
"int" default=
""/> 
10629           <param name=
"weight" type=
"int" default=
""/> 
10630           <param name=
"underline" type=
"bool" default=
"False"/> 
10631           <param name=
"facename" type=
"String" default=
"wxPyEmptyString"/> 
10632           <param name=
"encoding" type=
"wxFontEncoding" default=
"wxFONTENCODING_DEFAULT"/> 
10635       <method name=
"RemoveFont" type=
"" overloaded=
"no"> 
10636         <autodoc>RemoveFont(Font font)
</autodoc> 
10638           <param name=
"font" type=
"Font" default=
""/> 
10641       <method name=
"GetCount" type=
"int" overloaded=
"no"> 
10642         <autodoc>GetCount() -
> int
</autodoc> 
10646 #---------------------------------------------------------------------------
 
10648     <pythoncode> NullColor = NullColour 
</pythoncode> 
10650 #---------------------------------------------------------------------------
 
10652     <class name=
"Effects" oldname=
"wxEffects" module=
"gdi"> 
10653       <baseclass name=
"Object"/> 
10654       <constructor name=
"Effects" overloaded=
"no"> 
10655         <autodoc>__init__() -
> Effects
</autodoc> 
10657       <method name=
"GetHighlightColour" type=
"Colour" overloaded=
"no"> 
10658         <autodoc>GetHighlightColour() -
> Colour
</autodoc> 
10660       <method name=
"GetLightShadow" type=
"Colour" overloaded=
"no"> 
10661         <autodoc>GetLightShadow() -
> Colour
</autodoc> 
10663       <method name=
"GetFaceColour" type=
"Colour" overloaded=
"no"> 
10664         <autodoc>GetFaceColour() -
> Colour
</autodoc> 
10666       <method name=
"GetMediumShadow" type=
"Colour" overloaded=
"no"> 
10667         <autodoc>GetMediumShadow() -
> Colour
</autodoc> 
10669       <method name=
"GetDarkShadow" type=
"Colour" overloaded=
"no"> 
10670         <autodoc>GetDarkShadow() -
> Colour
</autodoc> 
10672       <method name=
"SetHighlightColour" type=
"" overloaded=
"no"> 
10673         <autodoc>SetHighlightColour(Colour c)
</autodoc> 
10675           <param name=
"c" type=
"Colour" default=
""/> 
10678       <method name=
"SetLightShadow" type=
"" overloaded=
"no"> 
10679         <autodoc>SetLightShadow(Colour c)
</autodoc> 
10681           <param name=
"c" type=
"Colour" default=
""/> 
10684       <method name=
"SetFaceColour" type=
"" overloaded=
"no"> 
10685         <autodoc>SetFaceColour(Colour c)
</autodoc> 
10687           <param name=
"c" type=
"Colour" default=
""/> 
10690       <method name=
"SetMediumShadow" type=
"" overloaded=
"no"> 
10691         <autodoc>SetMediumShadow(Colour c)
</autodoc> 
10693           <param name=
"c" type=
"Colour" default=
""/> 
10696       <method name=
"SetDarkShadow" type=
"" overloaded=
"no"> 
10697         <autodoc>SetDarkShadow(Colour c)
</autodoc> 
10699           <param name=
"c" type=
"Colour" default=
""/> 
10702       <method name=
"Set" type=
"" overloaded=
"no"> 
10703         <autodoc>Set(Colour highlightColour, Colour lightShadow, Colour faceColour, 
 
10704     Colour mediumShadow, Colour darkShadow)
</autodoc> 
10706           <param name=
"highlightColour" type=
"Colour" default=
""/> 
10707           <param name=
"lightShadow" type=
"Colour" default=
""/> 
10708           <param name=
"faceColour" type=
"Colour" default=
""/> 
10709           <param name=
"mediumShadow" type=
"Colour" default=
""/> 
10710           <param name=
"darkShadow" type=
"Colour" default=
""/> 
10713       <method name=
"DrawSunkenEdge" type=
"" overloaded=
"no"> 
10714         <autodoc>DrawSunkenEdge(DC dc, Rect rect, int borderSize=
1)
</autodoc> 
10716           <param name=
"dc" type=
"DC" default=
""/> 
10717           <param name=
"rect" type=
"Rect" default=
""/> 
10718           <param name=
"borderSize" type=
"int" default=
"1"/> 
10721       <method name=
"TileBitmap" type=
"bool" overloaded=
"no"> 
10722         <autodoc>TileBitmap(Rect rect, DC dc, Bitmap bitmap) -
> bool
</autodoc> 
10724           <param name=
"rect" type=
"Rect" default=
""/> 
10725           <param name=
"dc" type=
"DC" default=
""/> 
10726           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
10731   <module name=
"windows"> 
10732     <import name=
"core"/> 
10733     <pythoncode> wx = core 
</pythoncode> 
10735 #---------------------------------------------------------------------------
 
10737     <class name=
"Panel" oldname=
"wxPanel" module=
"windows"> 
10738       <baseclass name=
"Window"/> 
10739       <constructor name=
"Panel" overloaded=
"no"> 
10740         <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
10741     Size size=DefaultSize, long style=wxTAB_TRAVERSAL|wxNO_BORDER, 
 
10742     String name=PanelNameStr) -
> Panel
</autodoc> 
10744           <param name=
"parent" type=
"Window" default=
""/> 
10745           <param name=
"id" type=
"int" default=
"-1"/> 
10746           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
10747           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
10748           <param name=
"style" type=
"long" default=
"wxTAB_TRAVERSAL|wxNO_BORDER"/> 
10749           <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/> 
10752       <constructor name=
"PrePanel" overloaded=
"no"> 
10753         <autodoc>PrePanel() -
> Panel
</autodoc> 
10755       <method name=
"Create" type=
"bool" overloaded=
"no"> 
10756         <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
10757     long style=wxTAB_TRAVERSAL|wxNO_BORDER, 
 
10758     String name=PanelNameStr) -
> bool
</autodoc> 
10759         <docstring>Create the GUI part of the Window for 
2-phase creation mode.
</docstring> 
10761           <param name=
"parent" type=
"Window" default=
""/> 
10762           <param name=
"id" type=
"int" default=
""/> 
10763           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
10764           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
10765           <param name=
"style" type=
"long" default=
"wxTAB_TRAVERSAL|wxNO_BORDER"/> 
10766           <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/> 
10769       <method name=
"InitDialog" type=
"" overloaded=
"no"> 
10770         <autodoc>InitDialog()
</autodoc> 
10774 #---------------------------------------------------------------------------
 
10776     <class name=
"ScrolledWindow" oldname=
"wxScrolledWindow" module=
"windows"> 
10777       <baseclass name=
"Panel"/> 
10778       <constructor name=
"ScrolledWindow" overloaded=
"no"> 
10779         <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
10780     Size size=DefaultSize, long style=wxHSCROLL|wxVSCROLL, 
 
10781     String name=PanelNameStr) -
> ScrolledWindow
</autodoc> 
10783           <param name=
"parent" type=
"Window" default=
""/> 
10784           <param name=
"id" type=
"int" default=
"-1"/> 
10785           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
10786           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
10787           <param name=
"style" type=
"long" default=
"wxHSCROLL|wxVSCROLL"/> 
10788           <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/> 
10791       <constructor name=
"PreScrolledWindow" overloaded=
"no"> 
10792         <autodoc>PreScrolledWindow() -
> ScrolledWindow
</autodoc> 
10794       <method name=
"Create" type=
"bool" overloaded=
"no"> 
10795         <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
10796     Size size=DefaultSize, long style=wxHSCROLL|wxVSCROLL, 
 
10797     String name=PanelNameStr) -
> bool
</autodoc> 
10798         <docstring>Create the GUI part of the Window for 
2-phase creation mode.
</docstring> 
10800           <param name=
"parent" type=
"Window" default=
""/> 
10801           <param name=
"id" type=
"int" default=
"-1"/> 
10802           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
10803           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
10804           <param name=
"style" type=
"long" default=
"wxHSCROLL|wxVSCROLL"/> 
10805           <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/> 
10808       <method name=
"SetScrollbars" type=
"" overloaded=
"no"> 
10809         <autodoc>SetScrollbars(int pixelsPerUnitX, int pixelsPerUnitY, int noUnitsX, 
 
10810     int noUnitsY, int xPos=
0, int yPos=
0, bool noRefresh=False)
</autodoc> 
10812           <param name=
"pixelsPerUnitX" type=
"int" default=
""/> 
10813           <param name=
"pixelsPerUnitY" type=
"int" default=
""/> 
10814           <param name=
"noUnitsX" type=
"int" default=
""/> 
10815           <param name=
"noUnitsY" type=
"int" default=
""/> 
10816           <param name=
"xPos" type=
"int" default=
"0"/> 
10817           <param name=
"yPos" type=
"int" default=
"0"/> 
10818           <param name=
"noRefresh" type=
"bool" default=
"False"/> 
10821       <method name=
"Scroll" type=
"" overloaded=
"no"> 
10822         <autodoc>Scroll(int x, int y)
</autodoc> 
10824           <param name=
"x" type=
"int" default=
""/> 
10825           <param name=
"y" type=
"int" default=
""/> 
10828       <method name=
"GetScrollPageSize" type=
"int" overloaded=
"no"> 
10829         <autodoc>GetScrollPageSize(int orient) -
> int
</autodoc> 
10831           <param name=
"orient" type=
"int" default=
""/> 
10834       <method name=
"SetScrollPageSize" type=
"" overloaded=
"no"> 
10835         <autodoc>SetScrollPageSize(int orient, int pageSize)
</autodoc> 
10837           <param name=
"orient" type=
"int" default=
""/> 
10838           <param name=
"pageSize" type=
"int" default=
""/> 
10841       <method name=
"SetScrollRate" type=
"" overloaded=
"no"> 
10842         <autodoc>SetScrollRate(int xstep, int ystep)
</autodoc> 
10844           <param name=
"xstep" type=
"int" default=
""/> 
10845           <param name=
"ystep" type=
"int" default=
""/> 
10848       <method name=
"GetScrollPixelsPerUnit" type=
"" overloaded=
"no"> 
10849         <autodoc>GetScrollPixelsPerUnit() -
> (xUnit, yUnit)
</autodoc> 
10850         <docstring>Get the size of one logical unit in physical units.
</docstring> 
10852           <param name=
"OUTPUT" type=
"int" default=
""/> 
10853           <param name=
"OUTPUT" type=
"int" default=
""/> 
10856       <method name=
"EnableScrolling" type=
"" overloaded=
"no"> 
10857         <autodoc>EnableScrolling(bool x_scrolling, bool y_scrolling)
</autodoc> 
10859           <param name=
"x_scrolling" type=
"bool" default=
""/> 
10860           <param name=
"y_scrolling" type=
"bool" default=
""/> 
10863       <method name=
"GetViewStart" type=
"" overloaded=
"no"> 
10864         <autodoc>GetViewStart() -
> (x,y)
</autodoc> 
10865         <docstring>Get the view start
</docstring> 
10867           <param name=
"OUTPUT" type=
"int" default=
""/> 
10868           <param name=
"OUTPUT" type=
"int" default=
""/> 
10871       <method name=
"SetScale" type=
"" overloaded=
"no"> 
10872         <autodoc>SetScale(double xs, double ys)
</autodoc> 
10874           <param name=
"xs" type=
"double" default=
""/> 
10875           <param name=
"ys" type=
"double" default=
""/> 
10878       <method name=
"GetScaleX" type=
"double" overloaded=
"no"> 
10879         <autodoc>GetScaleX() -
> double
</autodoc> 
10881       <method name=
"GetScaleY" type=
"double" overloaded=
"no"> 
10882         <autodoc>GetScaleY() -
> double
</autodoc> 
10884       <method name=
"CalcScrolledPosition" type=
"Point" overloaded=
"yes"> 
10885         <docstring>Translate between scrolled and unscrolled coordinates.
</docstring> 
10887           <param name=
"pt" type=
"Point" default=
""/> 
10890       <method name=
"CalcScrolledPosition" type=
"" overloaded=
"yes"> 
10891         <autodoc>CalcScrolledPosition(Point pt) -
> Point
 
10892 CalcScrolledPosition(int x, int y) -
> (sx, sy)
</autodoc> 
10893         <docstring>Translate between scrolled and unscrolled coordinates.
</docstring> 
10895           <param name=
"x" type=
"int" default=
""/> 
10896           <param name=
"y" type=
"int" default=
""/> 
10897           <param name=
"OUTPUT" type=
"int" default=
""/> 
10898           <param name=
"OUTPUT" type=
"int" default=
""/> 
10901       <method name=
"CalcUnscrolledPosition" type=
"Point" overloaded=
"yes"> 
10902         <docstring>Translate between scrolled and unscrolled coordinates.
</docstring> 
10904           <param name=
"pt" type=
"Point" default=
""/> 
10907       <method name=
"CalcUnscrolledPosition" type=
"" overloaded=
"yes"> 
10908         <autodoc>CalcUnscrolledPosition(Point pt) -
> Point
 
10909 CalcUnscrolledPosition(int x, int y) -
> (ux, uy)
</autodoc> 
10910         <docstring>Translate between scrolled and unscrolled coordinates.
</docstring> 
10912           <param name=
"x" type=
"int" default=
""/> 
10913           <param name=
"y" type=
"int" default=
""/> 
10914           <param name=
"OUTPUT" type=
"int" default=
""/> 
10915           <param name=
"OUTPUT" type=
"int" default=
""/> 
10918       <method name=
"AdjustScrollbars" type=
"" overloaded=
"no"> 
10919         <autodoc>AdjustScrollbars()
</autodoc> 
10921       <method name=
"CalcScrollInc" type=
"int" overloaded=
"no"> 
10922         <autodoc>CalcScrollInc(ScrollWinEvent event) -
> int
</autodoc> 
10924           <param name=
"event" type=
"ScrollWinEvent" default=
""/> 
10927       <method name=
"SetTargetWindow" type=
"" overloaded=
"no"> 
10928         <autodoc>SetTargetWindow(Window target)
</autodoc> 
10930           <param name=
"target" type=
"Window" default=
""/> 
10933       <method name=
"GetTargetWindow" type=
"Window" overloaded=
"no"> 
10934         <autodoc>GetTargetWindow() -
> Window
</autodoc> 
10938 #---------------------------------------------------------------------------
 
10940     <class name=
"TopLevelWindow" oldname=
"wxTopLevelWindow" module=
"windows"> 
10941       <baseclass name=
"Window"/> 
10942       <method name=
"Maximize" type=
"" overloaded=
"no"> 
10943         <autodoc>Maximize(bool maximize=True)
</autodoc> 
10945           <param name=
"maximize" type=
"bool" default=
"True"/> 
10948       <method name=
"Restore" type=
"" overloaded=
"no"> 
10949         <autodoc>Restore()
</autodoc> 
10951       <method name=
"Iconize" type=
"" overloaded=
"no"> 
10952         <autodoc>Iconize(bool iconize=True)
</autodoc> 
10954           <param name=
"iconize" type=
"bool" default=
"True"/> 
10957       <method name=
"IsMaximized" type=
"bool" overloaded=
"no"> 
10958         <autodoc>IsMaximized() -
> bool
</autodoc> 
10960       <method name=
"IsIconized" type=
"bool" overloaded=
"no"> 
10961         <autodoc>IsIconized() -
> bool
</autodoc> 
10963       <method name=
"GetIcon" type=
"Icon" overloaded=
"no"> 
10964         <autodoc>GetIcon() -
> Icon
</autodoc> 
10966       <method name=
"SetIcon" type=
"" overloaded=
"no"> 
10967         <autodoc>SetIcon(Icon icon)
</autodoc> 
10969           <param name=
"icon" type=
"Icon" default=
""/> 
10972       <method name=
"SetIcons" type=
"" overloaded=
"no"> 
10973         <autodoc>SetIcons(wxIconBundle icons)
</autodoc> 
10975           <param name=
"icons" type=
"IconBundle" default=
""/> 
10978       <method name=
"ShowFullScreen" type=
"bool" overloaded=
"no"> 
10979         <autodoc>ShowFullScreen(bool show, long style=FULLSCREEN_ALL) -
> bool
</autodoc> 
10981           <param name=
"show" type=
"bool" default=
""/> 
10982           <param name=
"style" type=
"long" default=
"wxFULLSCREEN_ALL"/> 
10985       <method name=
"IsFullScreen" type=
"bool" overloaded=
"no"> 
10986         <autodoc>IsFullScreen() -
> bool
</autodoc> 
10988       <method name=
"SetTitle" type=
"" overloaded=
"no"> 
10989         <autodoc>SetTitle(String title)
</autodoc> 
10990         <docstring>Sets the window's title. Applicable only to frames and dialogs.
</docstring> 
10992           <param name=
"title" type=
"String" default=
""/> 
10995       <method name=
"GetTitle" type=
"String" overloaded=
"no"> 
10996         <autodoc>GetTitle() -
> String
</autodoc> 
10997         <docstring>Gets the window's title. Applicable only to frames and dialogs.
</docstring> 
10999       <method name=
"SetShape" type=
"bool" overloaded=
"no"> 
11000         <autodoc>SetShape(Region region) -
> bool
</autodoc> 
11002           <param name=
"region" type=
"Region" default=
""/> 
11007 #---------------------------------------------------------------------------
 
11009     <class name=
"Frame" oldname=
"wxFrame" module=
"windows"> 
11010       <baseclass name=
"TopLevelWindow"/> 
11011       <constructor name=
"Frame" overloaded=
"no"> 
11012         <autodoc>__init__(Window parent, int id, String title, Point pos=DefaultPosition, 
 
11013     Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE, 
 
11014     String name=FrameNameStr) -
> Frame
</autodoc> 
11016           <param name=
"parent" type=
"Window" default=
""/> 
11017           <param name=
"id" type=
"int" default=
""/> 
11018           <param name=
"title" type=
"String" default=
""/> 
11019           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
11020           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
11021           <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/> 
11022           <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/> 
11025       <constructor name=
"PreFrame" overloaded=
"no"> 
11026         <autodoc>PreFrame() -
> Frame
</autodoc> 
11028       <method name=
"Create" type=
"bool" overloaded=
"no"> 
11029         <autodoc>Create(Window parent, int id, String title, Point pos=DefaultPosition, 
 
11030     Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE, 
 
11031     String name=FrameNameStr) -
> bool
</autodoc> 
11033           <param name=
"parent" type=
"Window" default=
""/> 
11034           <param name=
"id" type=
"int" default=
""/> 
11035           <param name=
"title" type=
"String" default=
""/> 
11036           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
11037           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
11038           <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/> 
11039           <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/> 
11042       <method name=
"GetClientAreaOrigin" type=
"Point" overloaded=
"no"> 
11043         <autodoc>GetClientAreaOrigin() -
> Point
</autodoc> 
11044         <docstring>Get the origin of the client area of the window relative to the
 
11045 window's top left corner (the client area may be shifted because of
 
11046 the borders, scrollbars, other decorations...)
</docstring> 
11048       <method name=
"SendSizeEvent" type=
"" overloaded=
"no"> 
11049         <autodoc>SendSizeEvent()
</autodoc> 
11051       <method name=
"SetMenuBar" type=
"" overloaded=
"no"> 
11052         <autodoc>SetMenuBar(MenuBar menubar)
</autodoc> 
11054           <param name=
"menubar" type=
"MenuBar" default=
""/> 
11057       <method name=
"GetMenuBar" type=
"MenuBar" overloaded=
"no"> 
11058         <autodoc>GetMenuBar() -
> MenuBar
</autodoc> 
11060       <method name=
"ProcessCommand" type=
"bool" overloaded=
"no"> 
11061         <autodoc>ProcessCommand(int winid) -
> bool
</autodoc> 
11063           <param name=
"winid" type=
"int" default=
""/> 
11066       <method name=
"CreateStatusBar" type=
"wxStatusBar" overloaded=
"no"> 
11067         <autodoc>CreateStatusBar(int number=
1, long style=wxST_SIZEGRIP|wxFULL_REPAINT_ON_RESIZE, 
 
11068     int winid=
0, String name=StatusLineNameStr) -
> StatusBar
</autodoc> 
11070           <param name=
"number" type=
"int" default=
"1"/> 
11071           <param name=
"style" type=
"long" default=
"wxST_SIZEGRIP|wxFULL_REPAINT_ON_RESIZE"/> 
11072           <param name=
"winid" type=
"int" default=
"0"/> 
11073           <param name=
"name" type=
"String" default=
"wxPyStatusLineNameStr"/> 
11076       <method name=
"GetStatusBar" type=
"wxStatusBar" overloaded=
"no"> 
11077         <autodoc>GetStatusBar() -
> StatusBar
</autodoc> 
11079       <method name=
"SetStatusBar" type=
"" overloaded=
"no"> 
11080         <autodoc>SetStatusBar(StatusBar statBar)
</autodoc> 
11082           <param name=
"statBar" type=
"wxStatusBar" default=
""/> 
11085       <method name=
"SetStatusText" type=
"" overloaded=
"no"> 
11086         <autodoc>SetStatusText(String text, int number=
0)
</autodoc> 
11088           <param name=
"text" type=
"String" default=
""/> 
11089           <param name=
"number" type=
"int" default=
"0"/> 
11092       <method name=
"SetStatusWidths" type=
"" overloaded=
"no"> 
11093         <autodoc>SetStatusWidths(int widths, int widths_field)
</autodoc> 
11095           <param name=
"widths" type=
"int" default=
""/> 
11096           <param name=
"widths_field" type=
"int" default=
""/> 
11099       <method name=
"PushStatusText" type=
"" overloaded=
"no"> 
11100         <autodoc>PushStatusText(String text, int number=
0)
</autodoc> 
11102           <param name=
"text" type=
"String" default=
""/> 
11103           <param name=
"number" type=
"int" default=
"0"/> 
11106       <method name=
"PopStatusText" type=
"" overloaded=
"no"> 
11107         <autodoc>PopStatusText(int number=
0)
</autodoc> 
11109           <param name=
"number" type=
"int" default=
"0"/> 
11112       <method name=
"SetStatusBarPane" type=
"" overloaded=
"no"> 
11113         <autodoc>SetStatusBarPane(int n)
</autodoc> 
11115           <param name=
"n" type=
"int" default=
""/> 
11118       <method name=
"GetStatusBarPane" type=
"int" overloaded=
"no"> 
11119         <autodoc>GetStatusBarPane() -
> int
</autodoc> 
11121       <method name=
"CreateToolBar" type=
"wxToolBar" overloaded=
"no"> 
11122         <autodoc>CreateToolBar(long style=-
1, int winid=-
1, String name=ToolBarNameStr) -
> wxToolBar
</autodoc> 
11124           <param name=
"style" type=
"long" default=
"-1"/> 
11125           <param name=
"winid" type=
"int" default=
"-1"/> 
11126           <param name=
"name" type=
"String" default=
"wxPyToolBarNameStr"/> 
11129       <method name=
"GetToolBar" type=
"wxToolBar" overloaded=
"no"> 
11130         <autodoc>GetToolBar() -
> wxToolBar
</autodoc> 
11132       <method name=
"SetToolBar" type=
"" overloaded=
"no"> 
11133         <autodoc>SetToolBar(wxToolBar toolbar)
</autodoc> 
11135           <param name=
"toolbar" type=
"wxToolBar" default=
""/> 
11138       <method name=
"DoGiveHelp" type=
"" overloaded=
"no"> 
11139         <autodoc>DoGiveHelp(String text, bool show)
</autodoc> 
11141           <param name=
"text" type=
"String" default=
""/> 
11142           <param name=
"show" type=
"bool" default=
""/> 
11145       <method name=
"DoMenuUpdates" type=
"" overloaded=
"no"> 
11146         <autodoc>DoMenuUpdates(Menu menu=None)
</autodoc> 
11148           <param name=
"menu" type=
"Menu" default=
"NULL"/> 
11153 #---------------------------------------------------------------------------
 
11155     <class name=
"Dialog" oldname=
"wxDialog" module=
"windows"> 
11156       <baseclass name=
"TopLevelWindow"/> 
11157       <constructor name=
"Dialog" overloaded=
"no"> 
11158         <autodoc>__init__(Window parent, int id, String title, Point pos=DefaultPosition, 
 
11159     Size size=DefaultSize, long style=DEFAULT_DIALOG_STYLE, 
 
11160     String name=DialogNameStr) -
> Dialog
</autodoc> 
11162           <param name=
"parent" type=
"Window" default=
""/> 
11163           <param name=
"id" type=
"int" default=
""/> 
11164           <param name=
"title" type=
"String" default=
""/> 
11165           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
11166           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
11167           <param name=
"style" type=
"long" default=
"wxDEFAULT_DIALOG_STYLE"/> 
11168           <param name=
"name" type=
"String" default=
"wxPyDialogNameStr"/> 
11171       <constructor name=
"PreDialog" overloaded=
"no"> 
11172         <autodoc>PreDialog() -
> Dialog
</autodoc> 
11174       <method name=
"Create" type=
"bool" overloaded=
"no"> 
11175         <autodoc>Create(Window parent, int id, String title, Point pos=DefaultPosition, 
 
11176     Size size=DefaultSize, long style=DEFAULT_DIALOG_STYLE, 
 
11177     String name=DialogNameStr) -
> bool
</autodoc> 
11179           <param name=
"parent" type=
"Window" default=
""/> 
11180           <param name=
"id" type=
"int" default=
""/> 
11181           <param name=
"title" type=
"String" default=
""/> 
11182           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
11183           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
11184           <param name=
"style" type=
"long" default=
"wxDEFAULT_DIALOG_STYLE"/> 
11185           <param name=
"name" type=
"String" default=
"wxPyDialogNameStr"/> 
11188       <method name=
"SetReturnCode" type=
"" overloaded=
"no"> 
11189         <autodoc>SetReturnCode(int returnCode)
</autodoc> 
11191           <param name=
"returnCode" type=
"int" default=
""/> 
11194       <method name=
"GetReturnCode" type=
"int" overloaded=
"no"> 
11195         <autodoc>GetReturnCode() -
> int
</autodoc> 
11197       <method name=
"CreateTextSizer" type=
"Sizer" overloaded=
"no"> 
11198         <autodoc>CreateTextSizer(String message) -
> Sizer
</autodoc> 
11200           <param name=
"message" type=
"String" default=
""/> 
11203       <method name=
"CreateButtonSizer" type=
"Sizer" overloaded=
"no"> 
11204         <autodoc>CreateButtonSizer(long flags) -
> Sizer
</autodoc> 
11206           <param name=
"flags" type=
"long" default=
""/> 
11209       <method name=
"IsModal" type=
"bool" overloaded=
"no"> 
11210         <autodoc>IsModal() -
> bool
</autodoc> 
11212       <method name=
"ShowModal" type=
"int" overloaded=
"no"> 
11213         <autodoc>ShowModal() -
> int
</autodoc> 
11215       <method name=
"EndModal" type=
"" overloaded=
"no"> 
11216         <autodoc>EndModal(int retCode)
</autodoc> 
11218           <param name=
"retCode" type=
"int" default=
""/> 
11221       <method name=
"IsModalShowing" type=
"bool" overloaded=
"no"> 
11222         <autodoc>IsModalShowing() -
> bool
</autodoc> 
11226 #---------------------------------------------------------------------------
 
11228     <class name=
"MiniFrame" oldname=
"wxMiniFrame" module=
"windows"> 
11229       <baseclass name=
"Frame"/> 
11230       <constructor name=
"MiniFrame" overloaded=
"no"> 
11231         <autodoc>__init__(Window parent, int id, String title, Point pos=DefaultPosition, 
 
11232     Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE, 
 
11233     String name=FrameNameStr) -
> MiniFrame
</autodoc> 
11235           <param name=
"parent" type=
"Window" default=
""/> 
11236           <param name=
"id" type=
"int" default=
""/> 
11237           <param name=
"title" type=
"String" default=
""/> 
11238           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
11239           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
11240           <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/> 
11241           <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/> 
11244       <constructor name=
"PreMiniFrame" overloaded=
"no"> 
11245         <autodoc>PreMiniFrame() -
> MiniFrame
</autodoc> 
11247       <method name=
"Create" type=
"bool" overloaded=
"no"> 
11248         <autodoc>Create(Window parent, int id, String title, Point pos=DefaultPosition, 
 
11249     Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE, 
 
11250     String name=FrameNameStr) -
> bool
</autodoc> 
11252           <param name=
"parent" type=
"Window" default=
""/> 
11253           <param name=
"id" type=
"int" default=
""/> 
11254           <param name=
"title" type=
"String" default=
""/> 
11255           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
11256           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
11257           <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/> 
11258           <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/> 
11263 #---------------------------------------------------------------------------
 
11265     <class name=
"SplashScreenWindow" oldname=
"wxSplashScreenWindow" module=
"windows"> 
11266       <baseclass name=
"Window"/> 
11267       <constructor name=
"SplashScreenWindow" overloaded=
"no"> 
11268         <autodoc>__init__(Bitmap bitmap, Window parent, int id, Point pos=DefaultPosition, 
 
11269     Size size=DefaultSize, long style=NO_BORDER) -
> SplashScreenWindow
</autodoc> 
11271           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
11272           <param name=
"parent" type=
"Window" default=
""/> 
11273           <param name=
"id" type=
"int" default=
""/> 
11274           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
11275           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
11276           <param name=
"style" type=
"long" default=
"wxNO_BORDER"/> 
11279       <method name=
"SetBitmap" type=
"" overloaded=
"no"> 
11280         <autodoc>SetBitmap(Bitmap bitmap)
</autodoc> 
11282           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
11285       <method name=
"GetBitmap" type=
"Bitmap" overloaded=
"no"> 
11286         <autodoc>GetBitmap() -
> Bitmap
</autodoc> 
11289     <class name=
"SplashScreen" oldname=
"wxSplashScreen" module=
"windows"> 
11290       <baseclass name=
"Frame"/> 
11291       <constructor name=
"SplashScreen" overloaded=
"no"> 
11292         <autodoc>__init__(Bitmap bitmap, long splashStyle, int milliseconds, 
 
11293     Window parent, int id, Point pos=DefaultPosition, 
 
11294     Size size=DefaultSize, long style=wxSIMPLE_BORDER|wxFRAME_NO_TASKBAR|wxSTAY_ON_TOP) -
> SplashScreen
</autodoc> 
11296           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
11297           <param name=
"splashStyle" type=
"long" default=
""/> 
11298           <param name=
"milliseconds" type=
"int" default=
""/> 
11299           <param name=
"parent" type=
"Window" default=
""/> 
11300           <param name=
"id" type=
"int" default=
""/> 
11301           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
11302           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
11303           <param name=
"style" type=
"long" default=
"wxSIMPLE_BORDER|wxFRAME_NO_TASKBAR|wxSTAY_ON_TOP"/> 
11306       <method name=
"GetSplashStyle" type=
"long" overloaded=
"no"> 
11307         <autodoc>GetSplashStyle() -
> long
</autodoc> 
11309       <method name=
"GetSplashWindow" type=
"SplashScreenWindow" overloaded=
"no"> 
11310         <autodoc>GetSplashWindow() -
> SplashScreenWindow
</autodoc> 
11312       <method name=
"GetTimeout" type=
"int" overloaded=
"no"> 
11313         <autodoc>GetTimeout() -
> int
</autodoc> 
11317 #---------------------------------------------------------------------------
 
11319     <class name=
"StatusBar" oldname=
"wxStatusBar" module=
"windows"> 
11320       <baseclass name=
"Window"/> 
11321       <constructor name=
"StatusBar" overloaded=
"no"> 
11322         <autodoc>__init__(Window parent, int id=-
1, long style=wxST_SIZEGRIP|wxFULL_REPAINT_ON_RESIZE, 
 
11323     String name=StatusLineNameStr) -
> StatusBar
</autodoc> 
11325           <param name=
"parent" type=
"Window" default=
""/> 
11326           <param name=
"id" type=
"int" default=
"-1"/> 
11327           <param name=
"style" type=
"long" default=
"wxST_SIZEGRIP|wxFULL_REPAINT_ON_RESIZE"/> 
11328           <param name=
"name" type=
"String" default=
"wxPyStatusLineNameStr"/> 
11331       <constructor name=
"PreStatusBar" overloaded=
"no"> 
11332         <autodoc>PreStatusBar() -
> StatusBar
</autodoc> 
11334       <method name=
"Create" type=
"bool" overloaded=
"no"> 
11335         <autodoc>Create(Window parent, int id, long style=ST_SIZEGRIP, String name=StatusLineNameStr) -
> bool
</autodoc> 
11337           <param name=
"parent" type=
"Window" default=
""/> 
11338           <param name=
"id" type=
"int" default=
""/> 
11339           <param name=
"style" type=
"long" default=
"wxST_SIZEGRIP"/> 
11340           <param name=
"name" type=
"String" default=
"wxPyStatusLineNameStr"/> 
11343       <method name=
"SetFieldsCount" type=
"" overloaded=
"no"> 
11344         <autodoc>SetFieldsCount(int number=
1)
</autodoc> 
11346           <param name=
"number" type=
"int" default=
"1"/> 
11349       <method name=
"GetFieldsCount" type=
"int" overloaded=
"no"> 
11350         <autodoc>GetFieldsCount() -
> int
</autodoc> 
11352       <method name=
"SetStatusText" type=
"" overloaded=
"no"> 
11353         <autodoc>SetStatusText(String text, int number=
0)
</autodoc> 
11355           <param name=
"text" type=
"String" default=
""/> 
11356           <param name=
"number" type=
"int" default=
"0"/> 
11359       <method name=
"GetStatusText" type=
"String" overloaded=
"no"> 
11360         <autodoc>GetStatusText(int number=
0) -
> String
</autodoc> 
11362           <param name=
"number" type=
"int" default=
"0"/> 
11365       <method name=
"PushStatusText" type=
"" overloaded=
"no"> 
11366         <autodoc>PushStatusText(String text, int number=
0)
</autodoc> 
11368           <param name=
"text" type=
"String" default=
""/> 
11369           <param name=
"number" type=
"int" default=
"0"/> 
11372       <method name=
"PopStatusText" type=
"" overloaded=
"no"> 
11373         <autodoc>PopStatusText(int number=
0)
</autodoc> 
11375           <param name=
"number" type=
"int" default=
"0"/> 
11378       <method name=
"SetStatusWidths" type=
"" overloaded=
"no"> 
11379         <autodoc>SetStatusWidths(int widths, int widths_field)
</autodoc> 
11381           <param name=
"widths" type=
"int" default=
""/> 
11382           <param name=
"widths_field" type=
"int" default=
""/> 
11385       <method name=
"GetFieldRect" type=
"Rect" overloaded=
"no"> 
11386         <autodoc>GetFieldRect(int i) -
> Rect
</autodoc> 
11388           <param name=
"i" type=
"int" default=
""/> 
11391       <method name=
"SetMinHeight" type=
"" overloaded=
"no"> 
11392         <autodoc>SetMinHeight(int height)
</autodoc> 
11394           <param name=
"height" type=
"int" default=
""/> 
11397       <method name=
"GetBorderX" type=
"int" overloaded=
"no"> 
11398         <autodoc>GetBorderX() -
> int
</autodoc> 
11400       <method name=
"GetBorderY" type=
"int" overloaded=
"no"> 
11401         <autodoc>GetBorderY() -
> int
</autodoc> 
11405 #---------------------------------------------------------------------------
 
11407     <class name=
"SplitterWindow" oldname=
"wxSplitterWindow" module=
"windows"> 
11408       <docstring>wx.SplitterWindow manages up to two subwindows or panes,
 
11409 with an optional vertical or horizontal split which can be
 
11410 used with the mouse or programmatically.
 
11414     wx.SP_3D               Draws a 
3D effect border and sash.
 
11415     wx.SP_3DSASH           Draws a 
3D effect sash.
 
11416     wx.SP_3DBORDER         Synonym for wxSP_BORDER.
 
11417     wx.SP_BORDER           Draws a standard border.
 
11418     wx.SP_NOBORDER         No border (default).
 
11419     wx.SP_NO_XP_THEME      Under Windows XP, switches off the
 
11420                            attempt to draw the splitter
 
11421                            using Windows XP theming, so the
 
11422                            borders and sash will take on the
 
11424     wx.SP_PERMIT_UNSPLIT   Always allow to unsplit, even with
 
11425                            the minimum pane size other than zero.
 
11426     wx.SP_LIVE_UPDATE      Don't draw XOR line but resize the
 
11427                            child windows immediately.
 
11431     EVT_SPLITTER_SASH_POS_CHANGING
 
11432                            The sash position is in the
 
11433                            process of being changed. May be
 
11434                            used to modify the position of
 
11435                            the tracking bar to properly
 
11436                            reflect the position that would
 
11437                            be set if the drag were to be
 
11438                            completed at this point.
 
11440     EVT_SPLITTER_SASH_POS_CHANGED
 
11441                            The sash position was
 
11442                            changed. May be used to modify
 
11443                            the sash position before it is
 
11444                            set, or to prevent the change
 
11447     EVT_SPLITTER_UNSPLIT   The splitter has been just unsplit.
 
11449     EVT_SPLITTER_DCLICK    The sash was double clicked. The
 
11450                            default behaviour is to unsplit
 
11451                            the window when this happens
 
11452                            (unless the minimum pane size has
 
11453                            been set to a value greater than
 
11457       <baseclass name=
"Window"/> 
11458       <constructor name=
"SplitterWindow" overloaded=
"no"> 
11459         <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
11460     long style=SP_3D, String name=SplitterNameStr) -
> SplitterWindow
</autodoc> 
11461         <docstring>Constructor.  Creates and shows a SplitterWindow.
</docstring> 
11463           <param name=
"parent" type=
"Window" default=
""/> 
11464           <param name=
"id" type=
"int" default=
""/> 
11465           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
11466           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
11467           <param name=
"style" type=
"long" default=
"wxSP_3D"/> 
11468           <param name=
"name" type=
"String" default=
"wxPySplitterNameStr"/> 
11471       <constructor name=
"PreSplitterWindow" overloaded=
"no"> 
11472         <autodoc>PreSplitterWindow() -
> SplitterWindow
</autodoc> 
11473         <docstring>Precreate a SplitterWindow for 
2-phase creation.
</docstring> 
11475       <method name=
"Create" type=
"bool" overloaded=
"no"> 
11476         <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
11477     long style=SP_3D, String name=SplitterNameStr) -
> bool
</autodoc> 
11478         <docstring>Create the GUI part of the SplitterWindow for the 
2-phase create.
</docstring> 
11480           <param name=
"parent" type=
"Window" default=
""/> 
11481           <param name=
"id" type=
"int" default=
""/> 
11482           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
11483           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
11484           <param name=
"style" type=
"long" default=
"wxSP_3D"/> 
11485           <param name=
"name" type=
"String" default=
"wxPySplitterNameStr"/> 
11488       <method name=
"GetWindow1" type=
"Window" overloaded=
"no"> 
11489         <autodoc>GetWindow1() -
> Window
</autodoc> 
11490         <docstring>Gets the only or left/top pane.
</docstring> 
11492       <method name=
"GetWindow2" type=
"Window" overloaded=
"no"> 
11493         <autodoc>GetWindow2() -
> Window
</autodoc> 
11494         <docstring>Gets the right/bottom pane.
</docstring> 
11496       <method name=
"SetSplitMode" type=
"" overloaded=
"no"> 
11497         <autodoc>SetSplitMode(int mode)
</autodoc> 
11498         <docstring>Sets the split mode.  The mode can be wx.SPLIT_VERTICAL or
 
11499 wx.SPLIT_HORIZONTAL.  This only sets the internal variable;
 
11500 does not update the display.
</docstring> 
11502           <param name=
"mode" type=
"int" default=
""/> 
11505       <method name=
"GetSplitMode" type=
"wxSplitMode" overloaded=
"no"> 
11506         <autodoc>GetSplitMode() -
> int
</autodoc> 
11507         <docstring>Gets the split mode
</docstring> 
11509       <method name=
"Initialize" type=
"" overloaded=
"no"> 
11510         <autodoc>Initialize(Window window)
</autodoc> 
11511         <docstring>Initializes the splitter window to have one pane.  This
 
11512 should be called if you wish to initially view only a single
 
11513 pane in the splitter window.
</docstring> 
11515           <param name=
"window" type=
"Window" default=
""/> 
11518       <method name=
"SplitVertically" type=
"bool" overloaded=
"no"> 
11519         <autodoc>SplitVertically(Window window1, Window window2, int sashPosition=
0) -
> bool
</autodoc> 
11520         <docstring>Initializes the left and right panes of the splitter window.
 
11522     window1       The left pane.
 
11523     window2       The right pane.
 
11524     sashPosition  The initial position of the sash. If this
 
11525                   value is positive, it specifies the size
 
11526                   of the left pane. If it is negative, it is
 
11527                   absolute value gives the size of the right
 
11528                   pane. Finally, specify 
0 (default) to
 
11529                   choose the default position (half of the
 
11530                   total window width).
 
11532 Returns True if successful, False otherwise (the window was
 
11535 SplitVertically should be called if you wish to initially
 
11536 view two panes. It can also be called at any subsequent
 
11537 time, but the application should check that the window is
 
11538 not currently split using IsSplit.
</docstring> 
11540           <param name=
"window1" type=
"Window" default=
""/> 
11541           <param name=
"window2" type=
"Window" default=
""/> 
11542           <param name=
"sashPosition" type=
"int" default=
"0"/> 
11545       <method name=
"SplitHorizontally" type=
"bool" overloaded=
"no"> 
11546         <autodoc>SplitHorizontally(Window window1, Window window2, int sashPosition=
0) -
> bool
</autodoc> 
11547         <docstring>Initializes the top and bottom panes of the splitter window.
 
11549     window1       The top pane.
 
11550     window2       The bottom pane.
 
11551     sashPosition  The initial position of the sash. If this
 
11552                   value is positive, it specifies the size
 
11553                   of the upper pane. If it is negative, it
 
11554                   is absolute value gives the size of the
 
11555                   lower pane. Finally, specify 
0 (default)
 
11556                   to choose the default position (half of
 
11557                   the total window height).
 
11559 Returns True if successful, False otherwise (the window was
 
11562 SplitHorizontally should be called if you wish to initially
 
11563 view two panes. It can also be called at any subsequent
 
11564 time, but the application should check that the window is
 
11565 not currently split using IsSplit.
</docstring> 
11567           <param name=
"window1" type=
"Window" default=
""/> 
11568           <param name=
"window2" type=
"Window" default=
""/> 
11569           <param name=
"sashPosition" type=
"int" default=
"0"/> 
11572       <method name=
"Unsplit" type=
"bool" overloaded=
"no"> 
11573         <autodoc>Unsplit(Window toRemove=None) -
> bool
</autodoc> 
11574         <docstring>Unsplits the window.  Pass the pane to remove, or None to
 
11575 remove the right or bottom pane.  Returns True if
 
11576 successful, False otherwise (the window was not split).
 
11578 This function will not actually delete the pane being
 
11579 removed; it sends EVT_SPLITTER_UNSPLIT which can be handled
 
11580 for the desired behaviour. By default, the pane being
 
11581 removed is only hidden.
</docstring> 
11583           <param name=
"toRemove" type=
"Window" default=
"NULL"/> 
11586       <method name=
"ReplaceWindow" type=
"bool" overloaded=
"no"> 
11587         <autodoc>ReplaceWindow(Window winOld, Window winNew) -
> bool
</autodoc> 
11588         <docstring>This function replaces one of the windows managed by the
 
11589 SplitterWindow with another one. It is in general better to
 
11590 use it instead of calling Unsplit() and then resplitting the
 
11591 window back because it will provoke much less flicker. It is
 
11592 valid to call this function whether the splitter has two
 
11593 windows or only one.
 
11595 Both parameters should be non-None and winOld must specify
 
11596 one of the windows managed by the splitter. If the
 
11597 parameters are incorrect or the window couldn't be replaced,
 
11598 False is returned. Otherwise the function will return True,
 
11599 but please notice that it will not Destroy the replaced
 
11600 window and you may wish to do it yourself.
</docstring> 
11602           <param name=
"winOld" type=
"Window" default=
""/> 
11603           <param name=
"winNew" type=
"Window" default=
""/> 
11606       <method name=
"UpdateSize" type=
"" overloaded=
"no"> 
11607         <autodoc>UpdateSize()
</autodoc> 
11608         <docstring>Causes any pending sizing of the sash and child panes to
 
11609 take place immediately.
 
11611 Such resizing normally takes place in idle time, in order to
 
11612 wait for layout to be completed. However, this can cause
 
11613 unacceptable flicker as the panes are resized after the
 
11614 window has been shown. To work around this, you can perform
 
11615 window layout (for example by sending a size event to the
 
11616 parent window), and then call this function, before showing
 
11617 the top-level window.
</docstring> 
11619       <method name=
"IsSplit" type=
"bool" overloaded=
"no"> 
11620         <autodoc>IsSplit() -
> bool
</autodoc> 
11621         <docstring>Is the window split?
</docstring> 
11623       <method name=
"SetSashSize" type=
"" overloaded=
"no"> 
11624         <autodoc>SetSashSize(int width)
</autodoc> 
11625         <docstring>Sets the sash size
</docstring> 
11627           <param name=
"width" type=
"int" default=
""/> 
11630       <method name=
"SetBorderSize" type=
"" overloaded=
"no"> 
11631         <autodoc>SetBorderSize(int width)
</autodoc> 
11632         <docstring>Sets the border size
</docstring> 
11634           <param name=
"width" type=
"int" default=
""/> 
11637       <method name=
"GetSashSize" type=
"int" overloaded=
"no"> 
11638         <autodoc>GetSashSize() -
> int
</autodoc> 
11639         <docstring>Gets the sash size
</docstring> 
11641       <method name=
"GetBorderSize" type=
"int" overloaded=
"no"> 
11642         <autodoc>GetBorderSize() -
> int
</autodoc> 
11643         <docstring>Gets the border size
</docstring> 
11645       <method name=
"SetSashPosition" type=
"" overloaded=
"no"> 
11646         <autodoc>SetSashPosition(int position, bool redraw=True)
</autodoc> 
11647         <docstring>Sets the sash position, in pixels.  If redraw is Ttrue then
 
11648 the panes are resized and the sash and border are redrawn.
</docstring> 
11650           <param name=
"position" type=
"int" default=
""/> 
11651           <param name=
"redraw" type=
"bool" default=
"True"/> 
11654       <method name=
"GetSashPosition" type=
"int" overloaded=
"no"> 
11655         <autodoc>GetSashPosition() -
> int
</autodoc> 
11656         <docstring>Returns the surrent sash position.
</docstring> 
11658       <method name=
"SetMinimumPaneSize" type=
"" overloaded=
"no"> 
11659         <autodoc>SetMinimumPaneSize(int min)
</autodoc> 
11660         <docstring>Sets the minimum pane size in pixels.
 
11662 The default minimum pane size is zero, which means that
 
11663 either pane can be reduced to zero by dragging the sash,
 
11664 thus removing one of the panes. To prevent this behaviour (and
 
11665 veto out-of-range sash dragging), set a minimum size,
 
11666 for example 
20 pixels. If the wx.SP_PERMIT_UNSPLIT style is
 
11667 used when a splitter window is created, the window may be
 
11668 unsplit even if minimum size is non-zero.
</docstring> 
11670           <param name=
"min" type=
"int" default=
""/> 
11673       <method name=
"GetMinimumPaneSize" type=
"int" overloaded=
"no"> 
11674         <autodoc>GetMinimumPaneSize() -
> int
</autodoc> 
11675         <docstring>Gets the minimum pane size in pixels.
</docstring> 
11677       <method name=
"SashHitTest" type=
"bool" overloaded=
"no"> 
11678         <autodoc>SashHitTest(int x, int y, int tolerance=
5) -
> bool
</autodoc> 
11679         <docstring>Tests for x, y over the sash
</docstring> 
11681           <param name=
"x" type=
"int" default=
""/> 
11682           <param name=
"y" type=
"int" default=
""/> 
11683           <param name=
"tolerance" type=
"int" default=
"5"/> 
11686       <method name=
"SizeWindows" type=
"" overloaded=
"no"> 
11687         <autodoc>SizeWindows()
</autodoc> 
11688         <docstring>Resizes subwindows
</docstring> 
11690       <method name=
"SetNeedUpdating" type=
"" overloaded=
"no"> 
11691         <autodoc>SetNeedUpdating(bool needUpdating)
</autodoc> 
11693           <param name=
"needUpdating" type=
"bool" default=
""/> 
11696       <method name=
"GetNeedUpdating" type=
"bool" overloaded=
"no"> 
11697         <autodoc>GetNeedUpdating() -
> bool
</autodoc> 
11700     <class name=
"SplitterEvent" oldname=
"wxSplitterEvent" module=
"windows"> 
11701       <docstring>This class represents the events generated by a splitter control.
</docstring> 
11702       <baseclass name=
"NotifyEvent"/> 
11703       <constructor name=
"SplitterEvent" overloaded=
"no"> 
11704         <autodoc>__init__(wxEventType type=wxEVT_NULL, SplitterWindow splitter=(wxSplitterWindow *) NULL) -
> SplitterEvent
</autodoc> 
11705         <docstring>This class represents the events generated by a splitter control.
</docstring> 
11707           <param name=
"type" type=
"wxEventType" default=
"wxEVT_NULL"/> 
11708           <param name=
"splitter" type=
"SplitterWindow" default=
"(wxSplitterWindow *) NULL"/> 
11711       <method name=
"SetSashPosition" type=
"" overloaded=
"no"> 
11712         <autodoc>SetSashPosition(int pos)
</autodoc> 
11713         <docstring>This funciton is only meaningful during
 
11714 EVT_SPLITTER_SASH_POS_CHANGING and
 
11715 EVT_SPLITTER_SASH_POS_CHANGED events.  In the case of
 
11716 _CHANGED events, sets the the new sash position. In the case
 
11717 of _CHANGING events, sets the new tracking bar position so
 
11718 visual feedback during dragging will represent that change
 
11719 that will actually take place. Set to -
1 from the event
 
11720 handler code to prevent repositioning.
</docstring> 
11722           <param name=
"pos" type=
"int" default=
""/> 
11725       <method name=
"GetSashPosition" type=
"int" overloaded=
"no"> 
11726         <autodoc>GetSashPosition() -
> int
</autodoc> 
11727         <docstring>Returns the new sash position while in
 
11728 EVT_SPLITTER_SASH_POS_CHANGING and
 
11729 EVT_SPLITTER_SASH_POS_CHANGED events.
</docstring> 
11731       <method name=
"GetWindowBeingRemoved" type=
"Window" overloaded=
"no"> 
11732         <autodoc>GetWindowBeingRemoved() -
> Window
</autodoc> 
11733         <docstring>Returns a pointer to the window being removed when a
 
11734 splitter window is unsplit.
</docstring> 
11736       <method name=
"GetX" type=
"int" overloaded=
"no"> 
11737         <autodoc>GetX() -
> int
</autodoc> 
11738         <docstring>Returns the x coordinate of the double-click point in a
 
11739 EVT_SPLITTER_DCLICK event.
</docstring> 
11741       <method name=
"GetY" type=
"int" overloaded=
"no"> 
11742         <autodoc>GetY() -
> int
</autodoc> 
11743         <docstring>Returns the y coordinate of the double-click point in a
 
11744 EVT_SPLITTER_DCLICK event.
</docstring> 
11748 EVT_SPLITTER_SASH_POS_CHANGED = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED, 
1 )
 
11749 EVT_SPLITTER_SASH_POS_CHANGING = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING, 
1 )
 
11750 EVT_SPLITTER_DOUBLECLICKED = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_DOUBLECLICKED, 
1 )
 
11751 EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 
1 )
 
11752 EVT_SPLITTER_DCLICK = EVT_SPLITTER_DOUBLECLICKED
 
11755 #---------------------------------------------------------------------------
 
11757     <class name=
"SashWindow" oldname=
"wxSashWindow" module=
"windows"> 
11758       <baseclass name=
"Window"/> 
11759       <constructor name=
"SashWindow" overloaded=
"no"> 
11760         <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
11761     long style=wxCLIP_CHILDREN|wxSW_3D, 
 
11762     String name=SashNameStr) -
> SashWindow
</autodoc> 
11764           <param name=
"parent" type=
"Window" default=
""/> 
11765           <param name=
"id" type=
"int" default=
""/> 
11766           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
11767           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
11768           <param name=
"style" type=
"long" default=
"wxCLIP_CHILDREN|wxSW_3D"/> 
11769           <param name=
"name" type=
"String" default=
"wxPySashNameStr"/> 
11772       <constructor name=
"PreSashWindow" overloaded=
"no"> 
11773         <autodoc>PreSashWindow() -
> SashWindow
</autodoc> 
11775       <method name=
"Create" type=
"bool" overloaded=
"no"> 
11776         <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
11777     long style=wxCLIP_CHILDREN|wxSW_3D, 
 
11778     String name=SashNameStr) -
> bool
</autodoc> 
11780           <param name=
"parent" type=
"Window" default=
""/> 
11781           <param name=
"id" type=
"int" default=
""/> 
11782           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
11783           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
11784           <param name=
"style" type=
"long" default=
"wxCLIP_CHILDREN|wxSW_3D"/> 
11785           <param name=
"name" type=
"String" default=
"wxPySashNameStr"/> 
11788       <method name=
"SetSashVisible" type=
"" overloaded=
"no"> 
11789         <autodoc>SetSashVisible(int edge, bool sash)
</autodoc> 
11791           <param name=
"edge" type=
"wxSashEdgePosition" default=
""/> 
11792           <param name=
"sash" type=
"bool" default=
""/> 
11795       <method name=
"GetSashVisible" type=
"bool" overloaded=
"no"> 
11796         <autodoc>GetSashVisible(int edge) -
> bool
</autodoc> 
11798           <param name=
"edge" type=
"wxSashEdgePosition" default=
""/> 
11801       <method name=
"SetSashBorder" type=
"" overloaded=
"no"> 
11802         <autodoc>SetSashBorder(int edge, bool border)
</autodoc> 
11804           <param name=
"edge" type=
"wxSashEdgePosition" default=
""/> 
11805           <param name=
"border" type=
"bool" default=
""/> 
11808       <method name=
"HasBorder" type=
"bool" overloaded=
"no"> 
11809         <autodoc>HasBorder(int edge) -
> bool
</autodoc> 
11811           <param name=
"edge" type=
"wxSashEdgePosition" default=
""/> 
11814       <method name=
"GetEdgeMargin" type=
"int" overloaded=
"no"> 
11815         <autodoc>GetEdgeMargin(int edge) -
> int
</autodoc> 
11817           <param name=
"edge" type=
"wxSashEdgePosition" default=
""/> 
11820       <method name=
"SetDefaultBorderSize" type=
"" overloaded=
"no"> 
11821         <autodoc>SetDefaultBorderSize(int width)
</autodoc> 
11823           <param name=
"width" type=
"int" default=
""/> 
11826       <method name=
"GetDefaultBorderSize" type=
"int" overloaded=
"no"> 
11827         <autodoc>GetDefaultBorderSize() -
> int
</autodoc> 
11829       <method name=
"SetExtraBorderSize" type=
"" overloaded=
"no"> 
11830         <autodoc>SetExtraBorderSize(int width)
</autodoc> 
11832           <param name=
"width" type=
"int" default=
""/> 
11835       <method name=
"GetExtraBorderSize" type=
"int" overloaded=
"no"> 
11836         <autodoc>GetExtraBorderSize() -
> int
</autodoc> 
11838       <method name=
"SetMinimumSizeX" type=
"" overloaded=
"no"> 
11839         <autodoc>SetMinimumSizeX(int min)
</autodoc> 
11841           <param name=
"min" type=
"int" default=
""/> 
11844       <method name=
"SetMinimumSizeY" type=
"" overloaded=
"no"> 
11845         <autodoc>SetMinimumSizeY(int min)
</autodoc> 
11847           <param name=
"min" type=
"int" default=
""/> 
11850       <method name=
"GetMinimumSizeX" type=
"int" overloaded=
"no"> 
11851         <autodoc>GetMinimumSizeX() -
> int
</autodoc> 
11853       <method name=
"GetMinimumSizeY" type=
"int" overloaded=
"no"> 
11854         <autodoc>GetMinimumSizeY() -
> int
</autodoc> 
11856       <method name=
"SetMaximumSizeX" type=
"" overloaded=
"no"> 
11857         <autodoc>SetMaximumSizeX(int max)
</autodoc> 
11859           <param name=
"max" type=
"int" default=
""/> 
11862       <method name=
"SetMaximumSizeY" type=
"" overloaded=
"no"> 
11863         <autodoc>SetMaximumSizeY(int max)
</autodoc> 
11865           <param name=
"max" type=
"int" default=
""/> 
11868       <method name=
"GetMaximumSizeX" type=
"int" overloaded=
"no"> 
11869         <autodoc>GetMaximumSizeX() -
> int
</autodoc> 
11871       <method name=
"GetMaximumSizeY" type=
"int" overloaded=
"no"> 
11872         <autodoc>GetMaximumSizeY() -
> int
</autodoc> 
11874       <method name=
"SashHitTest" type=
"wxSashEdgePosition" overloaded=
"no"> 
11875         <autodoc>SashHitTest(int x, int y, int tolerance=
2) -
> int
</autodoc> 
11877           <param name=
"x" type=
"int" default=
""/> 
11878           <param name=
"y" type=
"int" default=
""/> 
11879           <param name=
"tolerance" type=
"int" default=
"2"/> 
11882       <method name=
"SizeWindows" type=
"" overloaded=
"no"> 
11883         <autodoc>SizeWindows()
</autodoc> 
11886     <class name=
"SashEvent" oldname=
"wxSashEvent" module=
"windows"> 
11887       <baseclass name=
"CommandEvent"/> 
11888       <constructor name=
"SashEvent" overloaded=
"no"> 
11889         <autodoc>__init__(int id=
0, int edge=SASH_NONE) -
> SashEvent
</autodoc> 
11891           <param name=
"id" type=
"int" default=
"0"/> 
11892           <param name=
"edge" type=
"wxSashEdgePosition" default=
"wxSASH_NONE"/> 
11895       <method name=
"SetEdge" type=
"" overloaded=
"no"> 
11896         <autodoc>SetEdge(int edge)
</autodoc> 
11898           <param name=
"edge" type=
"wxSashEdgePosition" default=
""/> 
11901       <method name=
"GetEdge" type=
"wxSashEdgePosition" overloaded=
"no"> 
11902         <autodoc>GetEdge() -
> int
</autodoc> 
11904       <method name=
"SetDragRect" type=
"" overloaded=
"no"> 
11905         <autodoc>SetDragRect(Rect rect)
</autodoc> 
11907           <param name=
"rect" type=
"Rect" default=
""/> 
11910       <method name=
"GetDragRect" type=
"Rect" overloaded=
"no"> 
11911         <autodoc>GetDragRect() -
> Rect
</autodoc> 
11913       <method name=
"SetDragStatus" type=
"" overloaded=
"no"> 
11914         <autodoc>SetDragStatus(int status)
</autodoc> 
11916           <param name=
"status" type=
"wxSashDragStatus" default=
""/> 
11919       <method name=
"GetDragStatus" type=
"wxSashDragStatus" overloaded=
"no"> 
11920         <autodoc>GetDragStatus() -
> int
</autodoc> 
11924     EVT_SASH_DRAGGED = wx.PyEventBinder( wxEVT_SASH_DRAGGED, 
1 )
 
11925     EVT_SASH_DRAGGED_RANGE = wx.PyEventBinder( wxEVT_SASH_DRAGGED, 
2 )
 
11928 #---------------------------------------------------------------------------
 
11930     <class name=
"QueryLayoutInfoEvent" oldname=
"wxQueryLayoutInfoEvent" module=
"windows"> 
11931       <baseclass name=
"Event"/> 
11932       <constructor name=
"QueryLayoutInfoEvent" overloaded=
"no"> 
11933         <autodoc>__init__(int id=
0) -
> QueryLayoutInfoEvent
</autodoc> 
11935           <param name=
"id" type=
"int" default=
"0"/> 
11938       <method name=
"SetRequestedLength" type=
"" overloaded=
"no"> 
11939         <autodoc>SetRequestedLength(int length)
</autodoc> 
11941           <param name=
"length" type=
"int" default=
""/> 
11944       <method name=
"GetRequestedLength" type=
"int" overloaded=
"no"> 
11945         <autodoc>GetRequestedLength() -
> int
</autodoc> 
11947       <method name=
"SetFlags" type=
"" overloaded=
"no"> 
11948         <autodoc>SetFlags(int flags)
</autodoc> 
11950           <param name=
"flags" type=
"int" default=
""/> 
11953       <method name=
"GetFlags" type=
"int" overloaded=
"no"> 
11954         <autodoc>GetFlags() -
> int
</autodoc> 
11956       <method name=
"SetSize" type=
"" overloaded=
"no"> 
11957         <autodoc>SetSize(Size size)
</autodoc> 
11959           <param name=
"size" type=
"Size" default=
""/> 
11962       <method name=
"GetSize" type=
"Size" overloaded=
"no"> 
11963         <autodoc>GetSize() -
> Size
</autodoc> 
11965       <method name=
"SetOrientation" type=
"" overloaded=
"no"> 
11966         <autodoc>SetOrientation(int orient)
</autodoc> 
11968           <param name=
"orient" type=
"wxLayoutOrientation" default=
""/> 
11971       <method name=
"GetOrientation" type=
"wxLayoutOrientation" overloaded=
"no"> 
11972         <autodoc>GetOrientation() -
> int
</autodoc> 
11974       <method name=
"SetAlignment" type=
"" overloaded=
"no"> 
11975         <autodoc>SetAlignment(int align)
</autodoc> 
11977           <param name=
"align" type=
"wxLayoutAlignment" default=
""/> 
11980       <method name=
"GetAlignment" type=
"wxLayoutAlignment" overloaded=
"no"> 
11981         <autodoc>GetAlignment() -
> int
</autodoc> 
11984     <class name=
"CalculateLayoutEvent" oldname=
"wxCalculateLayoutEvent" module=
"windows"> 
11985       <baseclass name=
"Event"/> 
11986       <constructor name=
"CalculateLayoutEvent" overloaded=
"no"> 
11987         <autodoc>__init__(int id=
0) -
> CalculateLayoutEvent
</autodoc> 
11989           <param name=
"id" type=
"int" default=
"0"/> 
11992       <method name=
"SetFlags" type=
"" overloaded=
"no"> 
11993         <autodoc>SetFlags(int flags)
</autodoc> 
11995           <param name=
"flags" type=
"int" default=
""/> 
11998       <method name=
"GetFlags" type=
"int" overloaded=
"no"> 
11999         <autodoc>GetFlags() -
> int
</autodoc> 
12001       <method name=
"SetRect" type=
"" overloaded=
"no"> 
12002         <autodoc>SetRect(Rect rect)
</autodoc> 
12004           <param name=
"rect" type=
"Rect" default=
""/> 
12007       <method name=
"GetRect" type=
"Rect" overloaded=
"no"> 
12008         <autodoc>GetRect() -
> Rect
</autodoc> 
12012     EVT_QUERY_LAYOUT_INFO = wx.PyEventBinder( wxEVT_QUERY_LAYOUT_INFO )
 
12013     EVT_CALCULATE_LAYOUT = wx.PyEventBinder( wxEVT_CALCULATE_LAYOUT )
 
12015     <class name=
"SashLayoutWindow" oldname=
"wxSashLayoutWindow" module=
"windows"> 
12016       <baseclass name=
"SashWindow"/> 
12017       <constructor name=
"SashLayoutWindow" overloaded=
"no"> 
12018         <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
12019     long style=wxCLIP_CHILDREN|wxSW_3D, 
 
12020     String name=SashLayoutNameStr) -
> SashLayoutWindow
</autodoc> 
12022           <param name=
"parent" type=
"Window" default=
""/> 
12023           <param name=
"id" type=
"int" default=
""/> 
12024           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
12025           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
12026           <param name=
"style" type=
"long" default=
"wxCLIP_CHILDREN|wxSW_3D"/> 
12027           <param name=
"name" type=
"String" default=
"wxPySashLayoutNameStr"/> 
12030       <constructor name=
"PreSashLayoutWindow" overloaded=
"no"> 
12031         <autodoc>PreSashLayoutWindow() -
> SashLayoutWindow
</autodoc> 
12033       <method name=
"Create" type=
"bool" overloaded=
"no"> 
12034         <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
12035     long style=wxCLIP_CHILDREN|wxSW_3D, 
 
12036     String name=SashLayoutNameStr) -
> bool
</autodoc> 
12038           <param name=
"parent" type=
"Window" default=
""/> 
12039           <param name=
"id" type=
"int" default=
""/> 
12040           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
12041           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
12042           <param name=
"style" type=
"long" default=
"wxCLIP_CHILDREN|wxSW_3D"/> 
12043           <param name=
"name" type=
"String" default=
"wxPySashLayoutNameStr"/> 
12046       <method name=
"GetAlignment" type=
"wxLayoutAlignment" overloaded=
"no"> 
12047         <autodoc>GetAlignment() -
> int
</autodoc> 
12049       <method name=
"GetOrientation" type=
"wxLayoutOrientation" overloaded=
"no"> 
12050         <autodoc>GetOrientation() -
> int
</autodoc> 
12052       <method name=
"SetAlignment" type=
"" overloaded=
"no"> 
12053         <autodoc>SetAlignment(int alignment)
</autodoc> 
12055           <param name=
"alignment" type=
"wxLayoutAlignment" default=
""/> 
12058       <method name=
"SetDefaultSize" type=
"" overloaded=
"no"> 
12059         <autodoc>SetDefaultSize(Size size)
</autodoc> 
12061           <param name=
"size" type=
"Size" default=
""/> 
12064       <method name=
"SetOrientation" type=
"" overloaded=
"no"> 
12065         <autodoc>SetOrientation(int orientation)
</autodoc> 
12067           <param name=
"orientation" type=
"wxLayoutOrientation" default=
""/> 
12071     <class name=
"LayoutAlgorithm" oldname=
"wxLayoutAlgorithm" module=
"windows"> 
12072       <baseclass name=
"Object"/> 
12073       <constructor name=
"LayoutAlgorithm" overloaded=
"no"> 
12074         <autodoc>__init__() -
> LayoutAlgorithm
</autodoc> 
12076       <destructor name=
"~wxLayoutAlgorithm" overloaded=
"no"> 
12077         <autodoc>__del__()
</autodoc> 
12079       <method name=
"LayoutMDIFrame" type=
"bool" overloaded=
"no"> 
12080         <autodoc>LayoutMDIFrame(MDIParentFrame frame, Rect rect=None) -
> bool
</autodoc> 
12082           <param name=
"frame" type=
"wxMDIParentFrame" default=
""/> 
12083           <param name=
"rect" type=
"Rect" default=
"NULL"/> 
12086       <method name=
"LayoutFrame" type=
"bool" overloaded=
"no"> 
12087         <autodoc>LayoutFrame(Frame frame, Window mainWindow=None) -
> bool
</autodoc> 
12089           <param name=
"frame" type=
"Frame" default=
""/> 
12090           <param name=
"mainWindow" type=
"Window" default=
"NULL"/> 
12093       <method name=
"LayoutWindow" type=
"bool" overloaded=
"no"> 
12094         <autodoc>LayoutWindow(Window parent, Window mainWindow=None) -
> bool
</autodoc> 
12096           <param name=
"parent" type=
"Window" default=
""/> 
12097           <param name=
"mainWindow" type=
"Window" default=
"NULL"/> 
12102 #---------------------------------------------------------------------------
 
12104     <class name=
"PopupWindow" oldname=
"wxPopupWindow" module=
"windows"> 
12105       <baseclass name=
"Window"/> 
12106       <constructor name=
"PopupWindow" overloaded=
"no"> 
12107         <autodoc>__init__(Window parent, int flags=BORDER_NONE) -
> PopupWindow
</autodoc> 
12109           <param name=
"parent" type=
"Window" default=
""/> 
12110           <param name=
"flags" type=
"int" default=
"wxBORDER_NONE"/> 
12113       <constructor name=
"PrePopupWindow" overloaded=
"no"> 
12114         <autodoc>PrePopupWindow() -
> PopupWindow
</autodoc> 
12116       <method name=
"Create" type=
"bool" overloaded=
"no"> 
12117         <autodoc>Create(Window parent, int flags=BORDER_NONE) -
> bool
</autodoc> 
12119           <param name=
"parent" type=
"Window" default=
""/> 
12120           <param name=
"flags" type=
"int" default=
"wxBORDER_NONE"/> 
12123       <method name=
"Position" type=
"" overloaded=
"no"> 
12124         <autodoc>Position(Point ptOrigin, Size size)
</autodoc> 
12126           <param name=
"ptOrigin" type=
"Point" default=
""/> 
12127           <param name=
"size" type=
"Size" default=
""/> 
12132 #---------------------------------------------------------------------------
 
12134     <class name=
"PopupTransientWindow" oldname=
"wxPyPopupTransientWindow" module=
"windows"> 
12135       <baseclass name=
"PopupWindow"/> 
12136       <constructor name=
"wxPyPopupTransientWindow" overloaded=
"no"> 
12137         <autodoc>__init__(Window parent, int style=BORDER_NONE) -
> PopupTransientWindow
</autodoc> 
12139           <param name=
"parent" type=
"Window" default=
""/> 
12140           <param name=
"style" type=
"int" default=
"wxBORDER_NONE"/> 
12143       <constructor name=
"PrePopupTransientWindow" overloaded=
"no"> 
12144         <autodoc>PrePopupTransientWindow() -
> PopupTransientWindow
</autodoc> 
12146       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
12147         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
12149           <param name=
"self" type=
"PyObject" default=
""/> 
12150           <param name=
"_class" type=
"PyObject" default=
""/> 
12153       <method name=
"Popup" type=
"" overloaded=
"no"> 
12154         <autodoc>Popup(Window focus=None)
</autodoc> 
12156           <param name=
"focus" type=
"Window" default=
"NULL"/> 
12159       <method name=
"Dismiss" type=
"" overloaded=
"no"> 
12160         <autodoc>Dismiss()
</autodoc> 
12164 #---------------------------------------------------------------------------
 
12166     <class name=
"TipWindow" oldname=
"wxTipWindow" module=
"windows"> 
12167       <baseclass name=
"PopupTransientWindow"/> 
12168       <constructor name=
"TipWindow" overloaded=
"no"> 
12169         <autodoc>__init__(Window parent, String text, int maxLength=
100, Rect rectBound=None) -
> TipWindow
</autodoc> 
12171           <param name=
"parent" type=
"Window" default=
""/> 
12172           <param name=
"text" type=
"String" default=
""/> 
12173           <param name=
"maxLength" type=
"int" default=
"100"/> 
12174           <param name=
"rectBound" type=
"Rect" default=
"NULL"/> 
12177       <method name=
"SetBoundingRect" type=
"" overloaded=
"no"> 
12178         <autodoc>SetBoundingRect(Rect rectBound)
</autodoc> 
12180           <param name=
"rectBound" type=
"Rect" default=
""/> 
12183       <method name=
"Close" type=
"" overloaded=
"no"> 
12184         <autodoc>Close()
</autodoc> 
12188 #---------------------------------------------------------------------------
 
12190     <class name=
"VScrolledWindow" oldname=
"wxPyVScrolledWindow" module=
"windows"> 
12191       <baseclass name=
"Panel"/> 
12192       <constructor name=
"wxPyVScrolledWindow" overloaded=
"no"> 
12193         <autodoc>__init__(Window parent, int id=ID_ANY, Point pos=DefaultPosition, 
 
12194     Size size=DefaultSize, long style=
0, String name=PanelNameStr) -
> VScrolledWindow
</autodoc> 
12196           <param name=
"parent" type=
"Window" default=
""/> 
12197           <param name=
"id" type=
"int" default=
"wxID_ANY"/> 
12198           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
12199           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
12200           <param name=
"style" type=
"long" default=
"0"/> 
12201           <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/> 
12204       <constructor name=
"PreVScrolledWindow" overloaded=
"no"> 
12205         <autodoc>PreVScrolledWindow() -
> VScrolledWindow
</autodoc> 
12207       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
12208         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
12210           <param name=
"self" type=
"PyObject" default=
""/> 
12211           <param name=
"_class" type=
"PyObject" default=
""/> 
12214       <method name=
"Create" type=
"bool" overloaded=
"no"> 
12215         <autodoc>Create(Window parent, int id=ID_ANY, Point pos=DefaultPosition, 
 
12216     Size size=DefaultSize, long style=
0, String name=PanelNameStr) -
> bool
</autodoc> 
12218           <param name=
"parent" type=
"Window" default=
""/> 
12219           <param name=
"id" type=
"int" default=
"wxID_ANY"/> 
12220           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
12221           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
12222           <param name=
"style" type=
"long" default=
"0"/> 
12223           <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/> 
12226       <method name=
"SetLineCount" type=
"" overloaded=
"no"> 
12227         <autodoc>SetLineCount(size_t count)
</autodoc> 
12229           <param name=
"count" type=
"size_t" default=
""/> 
12232       <method name=
"ScrollToLine" type=
"bool" overloaded=
"no"> 
12233         <autodoc>ScrollToLine(size_t line) -
> bool
</autodoc> 
12235           <param name=
"line" type=
"size_t" default=
""/> 
12238       <method name=
"ScrollLines" type=
"bool" overloaded=
"no"> 
12239         <autodoc>ScrollLines(int lines) -
> bool
</autodoc> 
12240         <docstring>If the platform and window class supports it, scrolls the window by
 
12241 the given number of lines down, if lines is positive, or up if lines
 
12242 is negative.  Returns True if the window was scrolled, False if it was
 
12243 already on top/bottom and nothing was done.
</docstring> 
12245           <param name=
"lines" type=
"int" default=
""/> 
12248       <method name=
"ScrollPages" type=
"bool" overloaded=
"no"> 
12249         <autodoc>ScrollPages(int pages) -
> bool
</autodoc> 
12250         <docstring>If the platform and window class supports it,  scrolls the window by
 
12251 the given number of pages down, if pages is positive, or up if pages
 
12252 is negative.  Returns True if the window was scrolled, False if it was
 
12253 already on top/bottom and nothing was done.
</docstring> 
12255           <param name=
"pages" type=
"int" default=
""/> 
12258       <method name=
"RefreshLine" type=
"" overloaded=
"no"> 
12259         <autodoc>RefreshLine(size_t line)
</autodoc> 
12261           <param name=
"line" type=
"size_t" default=
""/> 
12264       <method name=
"RefreshLines" type=
"" overloaded=
"no"> 
12265         <autodoc>RefreshLines(size_t from, size_t to)
</autodoc> 
12267           <param name=
"from" type=
"size_t" default=
""/> 
12268           <param name=
"to" type=
"size_t" default=
""/> 
12271       <method name=
"HitTestXT" type=
"int" overloaded=
"no"> 
12272         <autodoc>HitTestXT(int x, int y) -
> int
</autodoc> 
12273         <docstring>Test where the given (in client coords) point lies
</docstring> 
12275           <param name=
"x" type=
"int" default=
""/> 
12276           <param name=
"y" type=
"int" default=
""/> 
12279       <method name=
"HitTest" type=
"int" overloaded=
"no"> 
12280         <autodoc>HitTest(Point pt) -
> int
</autodoc> 
12281         <docstring>Test where the given (in client coords) point lies
</docstring> 
12283           <param name=
"pt" type=
"Point" default=
""/> 
12286       <method name=
"RefreshAll" type=
"" overloaded=
"no"> 
12287         <autodoc>RefreshAll()
</autodoc> 
12289       <method name=
"GetLineCount" type=
"size_t" overloaded=
"no"> 
12290         <autodoc>GetLineCount() -
> size_t
</autodoc> 
12292       <method name=
"GetFirstVisibleLine" type=
"size_t" overloaded=
"no"> 
12293         <autodoc>GetFirstVisibleLine() -
> size_t
</autodoc> 
12295       <method name=
"GetLastVisibleLine" type=
"size_t" overloaded=
"no"> 
12296         <autodoc>GetLastVisibleLine() -
> size_t
</autodoc> 
12298       <method name=
"IsVisible" type=
"bool" overloaded=
"no"> 
12299         <autodoc>IsVisible(size_t line) -
> bool
</autodoc> 
12301           <param name=
"line" type=
"size_t" default=
""/> 
12305     <class name=
"VListBox" oldname=
"wxPyVListBox" module=
"windows"> 
12306       <baseclass name=
"VScrolledWindow"/> 
12307       <constructor name=
"wxPyVListBox" overloaded=
"no"> 
12308         <autodoc>__init__(Window parent, int id=ID_ANY, Point pos=DefaultPosition, 
 
12309     Size size=DefaultSize, long style=
0, String name=VListBoxNameStr) -
> VListBox
</autodoc> 
12311           <param name=
"parent" type=
"Window" default=
""/> 
12312           <param name=
"id" type=
"int" default=
"wxID_ANY"/> 
12313           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
12314           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
12315           <param name=
"style" type=
"long" default=
"0"/> 
12316           <param name=
"name" type=
"String" default=
"wxPyVListBoxNameStr"/> 
12319       <constructor name=
"PreVListBox" overloaded=
"no"> 
12320         <autodoc>PreVListBox() -
> VListBox
</autodoc> 
12322       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
12323         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
12325           <param name=
"self" type=
"PyObject" default=
""/> 
12326           <param name=
"_class" type=
"PyObject" default=
""/> 
12329       <method name=
"Create" type=
"bool" overloaded=
"no"> 
12330         <autodoc>Create(Window parent, int id=ID_ANY, Point pos=DefaultPosition, 
 
12331     Size size=DefaultSize, long style=
0, String name=VListBoxNameStr) -
> bool
</autodoc> 
12333           <param name=
"parent" type=
"Window" default=
""/> 
12334           <param name=
"id" type=
"int" default=
"wxID_ANY"/> 
12335           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
12336           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
12337           <param name=
"style" type=
"long" default=
"0"/> 
12338           <param name=
"name" type=
"String" default=
"wxPyVListBoxNameStr"/> 
12341       <method name=
"GetItemCount" type=
"size_t" overloaded=
"no"> 
12342         <autodoc>GetItemCount() -
> size_t
</autodoc> 
12344       <method name=
"HasMultipleSelection" type=
"bool" overloaded=
"no"> 
12345         <autodoc>HasMultipleSelection() -
> bool
</autodoc> 
12347       <method name=
"GetSelection" type=
"int" overloaded=
"no"> 
12348         <autodoc>GetSelection() -
> int
</autodoc> 
12350       <method name=
"IsCurrent" type=
"bool" overloaded=
"no"> 
12351         <autodoc>IsCurrent(size_t item) -
> bool
</autodoc> 
12353           <param name=
"item" type=
"size_t" default=
""/> 
12356       <method name=
"IsSelected" type=
"bool" overloaded=
"no"> 
12357         <autodoc>IsSelected(size_t item) -
> bool
</autodoc> 
12359           <param name=
"item" type=
"size_t" default=
""/> 
12362       <method name=
"GetSelectedCount" type=
"size_t" overloaded=
"no"> 
12363         <autodoc>GetSelectedCount() -
> size_t
</autodoc> 
12365       <method name=
"GetFirstSelected" type=
"int" overloaded=
"no"> 
12366         <autodoc>GetFirstSelected(unsigned long cookie) -
> int
</autodoc> 
12368           <param name=
"cookie" type=
"unsigned long" default=
""/> 
12371       <method name=
"GetNextSelected" type=
"int" overloaded=
"no"> 
12372         <autodoc>GetNextSelected(unsigned long cookie) -
> int
</autodoc> 
12374           <param name=
"cookie" type=
"unsigned long" default=
""/> 
12377       <method name=
"GetMargins" type=
"Point" overloaded=
"no"> 
12378         <autodoc>GetMargins() -
> Point
</autodoc> 
12380       <method name=
"GetSelectionBackground" type=
"Colour" overloaded=
"no"> 
12381         <autodoc>GetSelectionBackground() -
> Colour
</autodoc> 
12383       <method name=
"SetItemCount" type=
"" overloaded=
"no"> 
12384         <autodoc>SetItemCount(size_t count)
</autodoc> 
12386           <param name=
"count" type=
"size_t" default=
""/> 
12389       <method name=
"Clear" type=
"" overloaded=
"no"> 
12390         <autodoc>Clear()
</autodoc> 
12392       <method name=
"SetSelection" type=
"" overloaded=
"no"> 
12393         <autodoc>SetSelection(int selection)
</autodoc> 
12395           <param name=
"selection" type=
"int" default=
""/> 
12398       <method name=
"Select" type=
"bool" overloaded=
"no"> 
12399         <autodoc>Select(size_t item, bool select=True) -
> bool
</autodoc> 
12401           <param name=
"item" type=
"size_t" default=
""/> 
12402           <param name=
"select" type=
"bool" default=
"True"/> 
12405       <method name=
"SelectRange" type=
"bool" overloaded=
"no"> 
12406         <autodoc>SelectRange(size_t from, size_t to) -
> bool
</autodoc> 
12408           <param name=
"from" type=
"size_t" default=
""/> 
12409           <param name=
"to" type=
"size_t" default=
""/> 
12412       <method name=
"Toggle" type=
"" overloaded=
"no"> 
12413         <autodoc>Toggle(size_t item)
</autodoc> 
12415           <param name=
"item" type=
"size_t" default=
""/> 
12418       <method name=
"SelectAll" type=
"bool" overloaded=
"no"> 
12419         <autodoc>SelectAll() -
> bool
</autodoc> 
12421       <method name=
"DeselectAll" type=
"bool" overloaded=
"no"> 
12422         <autodoc>DeselectAll() -
> bool
</autodoc> 
12424       <method name=
"SetMargins" type=
"" overloaded=
"no"> 
12425         <autodoc>SetMargins(Point pt)
</autodoc> 
12427           <param name=
"pt" type=
"Point" default=
""/> 
12430       <method name=
"SetMarginsXY" type=
"" overloaded=
"no"> 
12431         <autodoc>SetMarginsXY(int x, int y)
</autodoc> 
12433           <param name=
"x" type=
"int" default=
""/> 
12434           <param name=
"y" type=
"int" default=
""/> 
12437       <method name=
"SetSelectionBackground" type=
"" overloaded=
"no"> 
12438         <autodoc>SetSelectionBackground(Colour col)
</autodoc> 
12440           <param name=
"col" type=
"Colour" default=
""/> 
12444     <class name=
"HtmlListBox" oldname=
"wxPyHtmlListBox" module=
"windows"> 
12445       <baseclass name=
"VListBox"/> 
12446       <constructor name=
"wxPyHtmlListBox" overloaded=
"no"> 
12447         <autodoc>__init__(Window parent, int id=ID_ANY, Point pos=DefaultPosition, 
 
12448     Size size=DefaultSize, long style=
0, String name=VListBoxNameStr) -
> HtmlListBox
</autodoc> 
12450           <param name=
"parent" type=
"Window" default=
""/> 
12451           <param name=
"id" type=
"int" default=
"wxID_ANY"/> 
12452           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
12453           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
12454           <param name=
"style" type=
"long" default=
"0"/> 
12455           <param name=
"name" type=
"String" default=
"wxPyVListBoxNameStr"/> 
12458       <constructor name=
"PreHtmlListBox" overloaded=
"no"> 
12459         <autodoc>PreHtmlListBox() -
> HtmlListBox
</autodoc> 
12461       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
12462         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
12464           <param name=
"self" type=
"PyObject" default=
""/> 
12465           <param name=
"_class" type=
"PyObject" default=
""/> 
12468       <method name=
"Create" type=
"bool" overloaded=
"no"> 
12469         <autodoc>Create(Window parent, int id=ID_ANY, Point pos=DefaultPosition, 
 
12470     Size size=DefaultSize, long style=
0, String name=VListBoxNameStr) -
> bool
</autodoc> 
12472           <param name=
"parent" type=
"Window" default=
""/> 
12473           <param name=
"id" type=
"int" default=
"wxID_ANY"/> 
12474           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
12475           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
12476           <param name=
"style" type=
"long" default=
"0"/> 
12477           <param name=
"name" type=
"String" default=
"wxPyVListBoxNameStr"/> 
12480       <method name=
"RefreshAll" type=
"" overloaded=
"no"> 
12481         <autodoc>RefreshAll()
</autodoc> 
12483       <method name=
"SetItemCount" type=
"" overloaded=
"no"> 
12484         <autodoc>SetItemCount(size_t count)
</autodoc> 
12486           <param name=
"count" type=
"size_t" default=
""/> 
12491 #---------------------------------------------------------------------------
 
12493     <class name=
"TaskBarIcon" oldname=
"wxTaskBarIcon" module=
"windows"> 
12494       <baseclass name=
"EvtHandler"/> 
12495       <constructor name=
"TaskBarIcon" overloaded=
"no"> 
12496         <autodoc>__init__() -
> TaskBarIcon
</autodoc> 
12498       <destructor name=
"~wxTaskBarIcon" overloaded=
"no"> 
12499         <autodoc>__del__()
</autodoc> 
12501       <method name=
"IsOk" type=
"bool" overloaded=
"no"> 
12502         <autodoc>IsOk() -
> bool
</autodoc> 
12504       <method name=
"IsIconInstalled" type=
"bool" overloaded=
"no"> 
12505         <autodoc>IsIconInstalled() -
> bool
</autodoc> 
12507       <method name=
"SetIcon" type=
"bool" overloaded=
"no"> 
12508         <autodoc>SetIcon(Icon icon, String tooltip=EmptyString) -
> bool
</autodoc> 
12510           <param name=
"icon" type=
"Icon" default=
""/> 
12511           <param name=
"tooltip" type=
"String" default=
"wxPyEmptyString"/> 
12514       <method name=
"RemoveIcon" type=
"bool" overloaded=
"no"> 
12515         <autodoc>RemoveIcon() -
> bool
</autodoc> 
12517       <method name=
"PopupMenu" type=
"bool" overloaded=
"no"> 
12518         <autodoc>PopupMenu(Menu menu) -
> bool
</autodoc> 
12520           <param name=
"menu" type=
"Menu" default=
""/> 
12524     <class name=
"TaskBarIconEvent" oldname=
"wxTaskBarIconEvent" module=
"windows"> 
12525       <baseclass name=
"Event"/> 
12526       <constructor name=
"TaskBarIconEvent" overloaded=
"no"> 
12527         <autodoc>__init__(wxEventType evtType, TaskBarIcon tbIcon) -
> TaskBarIconEvent
</autodoc> 
12529           <param name=
"evtType" type=
"wxEventType" default=
""/> 
12530           <param name=
"tbIcon" type=
"TaskBarIcon" default=
""/> 
12535 EVT_TASKBAR_MOVE = wx.PyEventBinder (         wxEVT_TASKBAR_MOVE )
 
12536 EVT_TASKBAR_LEFT_DOWN = wx.PyEventBinder (    wxEVT_TASKBAR_LEFT_DOWN )
 
12537 EVT_TASKBAR_LEFT_UP = wx.PyEventBinder (      wxEVT_TASKBAR_LEFT_UP )
 
12538 EVT_TASKBAR_RIGHT_DOWN = wx.PyEventBinder (   wxEVT_TASKBAR_RIGHT_DOWN )
 
12539 EVT_TASKBAR_RIGHT_UP = wx.PyEventBinder (     wxEVT_TASKBAR_RIGHT_UP )
 
12540 EVT_TASKBAR_LEFT_DCLICK = wx.PyEventBinder (  wxEVT_TASKBAR_LEFT_DCLICK )
 
12541 EVT_TASKBAR_RIGHT_DCLICK = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DCLICK )
 
12544 #---------------------------------------------------------------------------
 
12546     <class name=
"ColourData" oldname=
"wxColourData" module=
"windows"> 
12547       <docstring>This class holds a variety of information related to colour dialogs.
</docstring> 
12548       <baseclass name=
"Object"/> 
12549       <constructor name=
"ColourData" overloaded=
"no"> 
12550         <autodoc>__init__() -
> ColourData
</autodoc> 
12551         <docstring>Constructor, sets default values.
</docstring> 
12553       <destructor name=
"~wxColourData" overloaded=
"no"> 
12554         <autodoc>__del__()
</autodoc> 
12556       <method name=
"GetChooseFull" type=
"bool" overloaded=
"no"> 
12557         <autodoc>GetChooseFull() -
> bool
</autodoc> 
12558         <docstring>Under Windows, determines whether the Windows colour dialog will display
 
12559 the full dialog with custom colour selection controls. Has no meaning
 
12560 under other platforms.  The default value is true.
</docstring> 
12562       <method name=
"GetColour" type=
"Colour" overloaded=
"no"> 
12563         <autodoc>GetColour() -
> Colour
</autodoc> 
12564         <docstring>Gets the colour (pre)selected by the dialog.
</docstring> 
12566       <method name=
"GetCustomColour" type=
"Colour" overloaded=
"no"> 
12567         <autodoc>GetCustomColour(int i) -
> Colour
</autodoc> 
12568         <docstring>Gets the i'th custom colour associated with the colour dialog. i should
 
12569 be an integer between 
0 and 
15. The default custom colours are all white.
</docstring> 
12571           <param name=
"i" type=
"int" default=
""/> 
12574       <method name=
"SetChooseFull" type=
"" overloaded=
"no"> 
12575         <autodoc>SetChooseFull(int flag)
</autodoc> 
12576         <docstring>Under Windows, tells the Windows colour dialog to display the full dialog
 
12577 with custom colour selection controls. Under other platforms, has no effect.
 
12578 The default value is true.
</docstring> 
12580           <param name=
"flag" type=
"int" default=
""/> 
12583       <method name=
"SetColour" type=
"" overloaded=
"no"> 
12584         <autodoc>SetColour(Colour colour)
</autodoc> 
12585         <docstring>Sets the default colour for the colour dialog.  The default colour is black.
</docstring> 
12587           <param name=
"colour" type=
"Colour" default=
""/> 
12590       <method name=
"SetCustomColour" type=
"" overloaded=
"no"> 
12591         <autodoc>SetCustomColour(int i, Colour colour)
</autodoc> 
12592         <docstring>Sets the i'th custom colour for the colour dialog. i should be an integer
 
12593 between 
0 and 
15. The default custom colours are all white.
</docstring> 
12595           <param name=
"i" type=
"int" default=
""/> 
12596           <param name=
"colour" type=
"Colour" default=
""/> 
12600     <class name=
"ColourDialog" oldname=
"wxColourDialog" module=
"windows"> 
12601       <docstring>This class represents the colour chooser dialog.
</docstring> 
12602       <baseclass name=
"Dialog"/> 
12603       <constructor name=
"ColourDialog" overloaded=
"no"> 
12604         <autodoc>__init__(Window parent, ColourData data=None) -
> ColourDialog
</autodoc> 
12605         <docstring>Constructor. Pass a parent window, and optionally a ColourData, which
 
12606 will be copied to the colour dialog's internal ColourData instance.
</docstring> 
12608           <param name=
"parent" type=
"Window" default=
""/> 
12609           <param name=
"data" type=
"ColourData" default=
"NULL"/> 
12612       <method name=
"GetColourData" type=
"ColourData" overloaded=
"no"> 
12613         <autodoc>GetColourData() -
> ColourData
</autodoc> 
12614         <docstring>Returns a reference to the ColourData used by the dialog.
</docstring> 
12617     <class name=
"DirDialog" oldname=
"wxDirDialog" module=
"windows"> 
12618       <docstring>This class represents the directory chooser dialog.
</docstring> 
12621     wxDD_NEW_DIR_BUTTON     Add "Create new directory" button and allow
 
12622                             directory names to be editable. On Windows the new
 
12623                             directory button is only available with recent
 
12624                             versions of the common dialogs.
</refdoc> 
12625       <baseclass name=
"Dialog"/> 
12626       <constructor name=
"DirDialog" overloaded=
"no"> 
12627         <autodoc>__init__(Window parent, String message=DirSelectorPromptStr, 
 
12628     String defaultPath=EmptyString, long style=
0, 
 
12629     Point pos=DefaultPosition, Size size=DefaultSize, 
 
12630     String name=DirDialogNameStr) -
> DirDialog
</autodoc> 
12631         <docstring>Constructor.  Use ShowModal method to show the dialog.
</docstring> 
12633           <param name=
"parent" type=
"Window" default=
""/> 
12634           <param name=
"message" type=
"String" default=
"wxPyDirSelectorPromptStr"/> 
12635           <param name=
"defaultPath" type=
"String" default=
"wxPyEmptyString"/> 
12636           <param name=
"style" type=
"long" default=
"0"/> 
12637           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
12638           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
12639           <param name=
"name" type=
"String" default=
"wxPyDirDialogNameStr"/> 
12642       <method name=
"GetPath" type=
"String" overloaded=
"no"> 
12643         <autodoc>GetPath() -
> String
</autodoc> 
12644         <docstring>Returns the default or user-selected path.
</docstring> 
12646       <method name=
"GetMessage" type=
"String" overloaded=
"no"> 
12647         <autodoc>GetMessage() -
> String
</autodoc> 
12648         <docstring>Returns the message that will be displayed on the dialog.
</docstring> 
12650       <method name=
"GetStyle" type=
"long" overloaded=
"no"> 
12651         <autodoc>GetStyle() -
> long
</autodoc> 
12652         <docstring>Returns the dialog style.
</docstring> 
12654       <method name=
"SetMessage" type=
"" overloaded=
"no"> 
12655         <autodoc>SetMessage(String message)
</autodoc> 
12656         <docstring>Sets the message that will be displayed on the dialog.
</docstring> 
12658           <param name=
"message" type=
"String" default=
""/> 
12661       <method name=
"SetPath" type=
"" overloaded=
"no"> 
12662         <autodoc>SetPath(String path)
</autodoc> 
12663         <docstring>Sets the default path.
</docstring> 
12665           <param name=
"path" type=
"String" default=
""/> 
12669     <class name=
"FileDialog" oldname=
"wxFileDialog" module=
"windows"> 
12670       <docstring>This class represents the file chooser dialog.
</docstring> 
12672 In Windows, this is the common file selector dialog. In X, this is a file
 
12673 selector box with somewhat less functionality. The path and filename are
 
12674 distinct elements of a full file pathname. If path is "", the current
 
12675 directory will be used. If filename is "", no default filename will be
 
12676 supplied. The wildcard determines what files are displayed in the file
 
12677 selector, and file extension supplies a type extension for the required
 
12680 Both the X and Windows versions implement a wildcard filter. Typing a filename
 
12681 containing wildcards (*, ?) in the filename text item, and clicking on Ok,
 
12682 will result in only those files matching the pattern being displayed. The
 
12683 wildcard may be a specification for multiple types of file with a description
 
12686    "BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif"
 
12689     wx.OPEN              This is an open dialog.
 
12691     wx.SAVE              This is a save dialog.
 
12693     wx.HIDE_READONLY     For open dialog only: hide the checkbox allowing to
 
12694                          open the file in read-only mode.
 
12696     wx.OVERWRITE_PROMPT  For save dialog only: prompt for a confirmation if a
 
12697                          file will be overwritten.
 
12699     wx.MULTIPLE          For open dialog only: allows selecting multiple files.
 
12701     wx.CHANGE_DIR        Change the current working directory to the directory
 
12702                          where the file(s) chosen by the user are.
 
12704       <baseclass name=
"Dialog"/> 
12705       <constructor name=
"FileDialog" overloaded=
"no"> 
12706         <autodoc>__init__(Window parent, String message=FileSelectorPromptStr, 
 
12707     String defaultDir=EmptyString, String defaultFile=EmptyString, 
 
12708     String wildcard=FileSelectorDefaultWildcardStr, 
 
12709     long style=
0, Point pos=DefaultPosition) -
> FileDialog
</autodoc> 
12710         <docstring>Constructor.  Use ShowModal method to show the dialog.
</docstring> 
12712           <param name=
"parent" type=
"Window" default=
""/> 
12713           <param name=
"message" type=
"String" default=
"wxPyFileSelectorPromptStr"/> 
12714           <param name=
"defaultDir" type=
"String" default=
"wxPyEmptyString"/> 
12715           <param name=
"defaultFile" type=
"String" default=
"wxPyEmptyString"/> 
12716           <param name=
"wildcard" type=
"String" default=
"wxPyFileSelectorDefaultWildcardStr"/> 
12717           <param name=
"style" type=
"long" default=
"0"/> 
12718           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
12721       <method name=
"SetMessage" type=
"" overloaded=
"no"> 
12722         <autodoc>SetMessage(String message)
</autodoc> 
12723         <docstring>Sets the message that will be displayed on the dialog.
</docstring> 
12725           <param name=
"message" type=
"String" default=
""/> 
12728       <method name=
"SetPath" type=
"" overloaded=
"no"> 
12729         <autodoc>SetPath(String path)
</autodoc> 
12730         <docstring>Sets the path (the combined directory and filename that will
 
12731 be returned when the dialog is dismissed).
</docstring> 
12733           <param name=
"path" type=
"String" default=
""/> 
12736       <method name=
"SetDirectory" type=
"" overloaded=
"no"> 
12737         <autodoc>SetDirectory(String dir)
</autodoc> 
12738         <docstring>Sets the default directory.
</docstring> 
12740           <param name=
"dir" type=
"String" default=
""/> 
12743       <method name=
"SetFilename" type=
"" overloaded=
"no"> 
12744         <autodoc>SetFilename(String name)
</autodoc> 
12745         <docstring>Sets the default filename.
</docstring> 
12747           <param name=
"name" type=
"String" default=
""/> 
12750       <method name=
"SetWildcard" type=
"" overloaded=
"no"> 
12751         <autodoc>SetWildcard(String wildCard)
</autodoc> 
12752         <docstring>Sets the wildcard, which can contain multiple file types, for example:
 
12753     "BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif"
</docstring> 
12755           <param name=
"wildCard" type=
"String" default=
""/> 
12758       <method name=
"SetStyle" type=
"" overloaded=
"no"> 
12759         <autodoc>SetStyle(long style)
</autodoc> 
12760         <docstring>Sets the dialog style.
</docstring> 
12762           <param name=
"style" type=
"long" default=
""/> 
12765       <method name=
"SetFilterIndex" type=
"" overloaded=
"no"> 
12766         <autodoc>SetFilterIndex(int filterIndex)
</autodoc> 
12767         <docstring>Sets the default filter index, starting from zero.
</docstring> 
12769           <param name=
"filterIndex" type=
"int" default=
""/> 
12772       <method name=
"GetMessage" type=
"String" overloaded=
"no"> 
12773         <autodoc>GetMessage() -
> String
</autodoc> 
12774         <docstring>Returns the message that will be displayed on the dialog.
</docstring> 
12776       <method name=
"GetPath" type=
"String" overloaded=
"no"> 
12777         <autodoc>GetPath() -
> String
</autodoc> 
12778         <docstring>Returns the full path (directory and filename) of the selected file.
</docstring> 
12780       <method name=
"GetDirectory" type=
"String" overloaded=
"no"> 
12781         <autodoc>GetDirectory() -
> String
</autodoc> 
12782         <docstring>Returns the default directory.
</docstring> 
12784       <method name=
"GetFilename" type=
"String" overloaded=
"no"> 
12785         <autodoc>GetFilename() -
> String
</autodoc> 
12786         <docstring>Returns the default filename.
</docstring> 
12788       <method name=
"GetWildcard" type=
"String" overloaded=
"no"> 
12789         <autodoc>GetWildcard() -
> String
</autodoc> 
12790         <docstring>Returns the file dialog wildcard.
</docstring> 
12792       <method name=
"GetStyle" type=
"long" overloaded=
"no"> 
12793         <autodoc>GetStyle() -
> long
</autodoc> 
12794         <docstring>Returns the dialog style.
</docstring> 
12796       <method name=
"GetFilterIndex" type=
"int" overloaded=
"no"> 
12797         <autodoc>GetFilterIndex() -
> int
</autodoc> 
12798         <docstring>Returns the index into the list of filters supplied, optionally, in
 
12799 the wildcard parameter. Before the dialog is shown, this is the index
 
12800 which will be used when the dialog is first displayed. After the dialog
 
12801 is shown, this is the index selected by the user.
</docstring> 
12803       <method name=
"GetFilenames" type=
"PyObject" overloaded=
"no"> 
12804         <autodoc>GetFilenames() -
> PyObject
</autodoc> 
12805         <docstring>Returns a list of filenames chosen in the dialog.  This function should
 
12806 only be used with the dialogs which have wx.MULTIPLE style, use
 
12807 GetFilename for the others.
</docstring> 
12809       <method name=
"GetPaths" type=
"PyObject" overloaded=
"no"> 
12810         <autodoc>GetPaths() -
> PyObject
</autodoc> 
12811         <docstring>Fills the array paths with the full paths of the files chosen. This
 
12812 function should only be used with the dialogs which have wx.MULTIPLE style,
 
12813 use GetPath for the others.
</docstring> 
12816     <class name=
"MultiChoiceDialog" oldname=
"wxMultiChoiceDialog" module=
"windows"> 
12817       <docstring>A simple dialog with a multi selection listbox.
</docstring> 
12818       <baseclass name=
"Dialog"/> 
12819       <constructor name=
"MultiChoiceDialog" overloaded=
"no"> 
12820         <autodoc>__init__(Window parent, String message, String caption,
 
12821     List choices=[], long style=CHOICEDLG_STYLE,
 
12822     Point pos=DefaultPosition) -
> MultiChoiceDialog
</autodoc> 
12823         <docstring>Constructor.  Use ShowModal method to show the dialog.
</docstring> 
12825           <param name=
"parent" type=
"Window" default=
""/> 
12826           <param name=
"message" type=
"String" default=
""/> 
12827           <param name=
"caption" type=
"String" default=
""/> 
12828           <param name=
"choices" type=
"int" default=
"0"/> 
12829           <param name=
"choices_array" type=
"String" default=
""/> 
12830           <param name=
"style" type=
"long" default=
"wxCHOICEDLG_STYLE"/> 
12831           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
12834       <method name=
"SetSelections" type=
"" overloaded=
"no"> 
12835         <autodoc>SetSelections(List selections)
</autodoc> 
12836         <docstring>Specify the items in the list that shoudl be selected, using a list of integers.
</docstring> 
12838           <param name=
"selections" type=
"wxArrayInt" default=
""/> 
12841       <method name=
"GetSelections" type=
"PyObject" overloaded=
"no"> 
12842         <autodoc>GetSelections() -
> [selections]
</autodoc> 
12843         <docstring>Returns a list of integers representing the items that are selected.
</docstring> 
12846     <class name=
"SingleChoiceDialog" oldname=
"wxSingleChoiceDialog" module=
"windows"> 
12847       <docstring>A simple dialog with a single selection listbox.
</docstring> 
12848       <baseclass name=
"Dialog"/> 
12849       <constructor name=
"SingleChoiceDialog" overloaded=
"no"> 
12850         <autodoc>__init__(Window parent, String message, String caption,
 
12851     List choices=[], long style=CHOICEDLG_STYLE,
 
12852     Point pos=DefaultPosition) -
> SingleChoiceDialog
</autodoc> 
12853         <docstring>Constructor.  Use ShowModal method to show the dialog.
</docstring> 
12855           <param name=
"parent" type=
"Window" default=
""/> 
12856           <param name=
"message" type=
"String" default=
""/> 
12857           <param name=
"caption" type=
"String" default=
""/> 
12858           <param name=
"choices" type=
"int" default=
""/> 
12859           <param name=
"choices_array" type=
"String" default=
""/> 
12860           <param name=
"style" type=
"long" default=
"wxCHOICEDLG_STYLE"/> 
12861           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
12864       <method name=
"GetSelection" type=
"int" overloaded=
"no"> 
12865         <autodoc>GetSelection() -
> int
</autodoc> 
12866         <docstring>Get the index of teh currently selected item.
</docstring> 
12868       <method name=
"GetStringSelection" type=
"String" overloaded=
"no"> 
12869         <autodoc>GetStringSelection() -
> String
</autodoc> 
12870         <docstring>Returns the string value of the currently selected item
</docstring> 
12872       <method name=
"SetSelection" type=
"" overloaded=
"no"> 
12873         <autodoc>SetSelection(int sel)
</autodoc> 
12874         <docstring>Set the current selected item to sel
</docstring> 
12876           <param name=
"sel" type=
"int" default=
""/> 
12880     <class name=
"TextEntryDialog" oldname=
"wxTextEntryDialog" module=
"windows"> 
12881       <docstring>A dialog with text control, [ok] and [cancel] buttons
</docstring> 
12882       <baseclass name=
"Dialog"/> 
12883       <constructor name=
"TextEntryDialog" overloaded=
"no"> 
12884         <autodoc>__init__(Window parent, String message, String caption=GetTextFromUserPromptStr, 
 
12885     String defaultValue=EmptyString, 
 
12886     long style=wxOK|wxCANCEL|wxCENTRE, Point pos=DefaultPosition) -
> TextEntryDialog
</autodoc> 
12887         <docstring>Constructor.  Use ShowModal method to show the dialog.
</docstring> 
12889           <param name=
"parent" type=
"Window" default=
""/> 
12890           <param name=
"message" type=
"String" default=
""/> 
12891           <param name=
"caption" type=
"String" default=
"wxPyGetTextFromUserPromptStr"/> 
12892           <param name=
"defaultValue" type=
"String" default=
"wxPyEmptyString"/> 
12893           <param name=
"style" type=
"long" default=
"wxOK|wxCANCEL|wxCENTRE"/> 
12894           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
12897       <method name=
"GetValue" type=
"String" overloaded=
"no"> 
12898         <autodoc>GetValue() -
> String
</autodoc> 
12899         <docstring>Returns the text that the user has entered if the user has pressed OK,
 
12900 or the original value if the user has pressed Cancel.
</docstring> 
12902       <method name=
"SetValue" type=
"" overloaded=
"no"> 
12903         <autodoc>SetValue(String value)
</autodoc> 
12904         <docstring>Sets the default text value.
</docstring> 
12906           <param name=
"value" type=
"String" default=
""/> 
12910     <class name=
"FontData" oldname=
"wxFontData" module=
"windows"> 
12911       <docstring>This class holds a variety of information related to font dialogs.
</docstring> 
12912       <baseclass name=
"Object"/> 
12913       <constructor name=
"FontData" overloaded=
"no"> 
12914         <autodoc>__init__() -
> FontData
</autodoc> 
12915         <docstring>This class holds a variety of information related to font dialogs.
</docstring> 
12917       <destructor name=
"~wxFontData" overloaded=
"no"> 
12918         <autodoc>__del__()
</autodoc> 
12920       <method name=
"EnableEffects" type=
"" overloaded=
"no"> 
12921         <autodoc>EnableEffects(bool enable)
</autodoc> 
12922         <docstring>Enables or disables 'effects' under MS Windows only. This refers
 
12923 to the controls for manipulating colour, strikeout and underline
 
12924 properties.  The default value is true.
</docstring> 
12926           <param name=
"enable" type=
"bool" default=
""/> 
12929       <method name=
"GetAllowSymbols" type=
"bool" overloaded=
"no"> 
12930         <autodoc>GetAllowSymbols() -
> bool
</autodoc> 
12931         <docstring>Under MS Windows, returns a flag determining whether symbol fonts can be
 
12932 selected. Has no effect on other platforms. The default value is true.
</docstring> 
12934       <method name=
"GetColour" type=
"Colour" overloaded=
"no"> 
12935         <autodoc>GetColour() -
> Colour
</autodoc> 
12936         <docstring>Gets the colour associated with the font dialog. The default value is black.
</docstring> 
12938       <method name=
"GetChosenFont" type=
"Font" overloaded=
"no"> 
12939         <autodoc>GetChosenFont() -
> Font
</autodoc> 
12940         <docstring>Gets the font chosen by the user.
</docstring> 
12942       <method name=
"GetEnableEffects" type=
"bool" overloaded=
"no"> 
12943         <autodoc>GetEnableEffects() -
> bool
</autodoc> 
12944         <docstring>Determines whether 'effects' are enabled under Windows.
</docstring> 
12946       <method name=
"GetInitialFont" type=
"Font" overloaded=
"no"> 
12947         <autodoc>GetInitialFont() -
> Font
</autodoc> 
12948         <docstring>Gets the font that will be initially used by the font dialog. This should have
 
12949 previously been set by the application.
</docstring> 
12951       <method name=
"GetShowHelp" type=
"bool" overloaded=
"no"> 
12952         <autodoc>GetShowHelp() -
> bool
</autodoc> 
12953         <docstring>Returns true if the Help button will be shown (Windows only).  The default
 
12954 value is false.
</docstring> 
12956       <method name=
"SetAllowSymbols" type=
"" overloaded=
"no"> 
12957         <autodoc>SetAllowSymbols(bool allowSymbols)
</autodoc> 
12958         <docstring>Under MS Windows, determines whether symbol fonts can be selected. Has no
 
12959 effect on other platforms.  The default value is true.
</docstring> 
12961           <param name=
"allowSymbols" type=
"bool" default=
""/> 
12964       <method name=
"SetChosenFont" type=
"" overloaded=
"no"> 
12965         <autodoc>SetChosenFont(Font font)
</autodoc> 
12966         <docstring>Sets the font that will be returned to the user (for internal use only).
</docstring> 
12968           <param name=
"font" type=
"Font" default=
""/> 
12971       <method name=
"SetColour" type=
"" overloaded=
"no"> 
12972         <autodoc>SetColour(Colour colour)
</autodoc> 
12973         <docstring>Sets the colour that will be used for the font foreground colour.  The default
 
12974 colour is black.
</docstring> 
12976           <param name=
"colour" type=
"Colour" default=
""/> 
12979       <method name=
"SetInitialFont" type=
"" overloaded=
"no"> 
12980         <autodoc>SetInitialFont(Font font)
</autodoc> 
12981         <docstring>Sets the font that will be initially used by the font dialog.
</docstring> 
12983           <param name=
"font" type=
"Font" default=
""/> 
12986       <method name=
"SetRange" type=
"" overloaded=
"no"> 
12987         <autodoc>SetRange(int min, int max)
</autodoc> 
12988         <docstring>Sets the valid range for the font point size (Windows only).  The default is
 
12989 0, 
0 (unrestricted range).
</docstring> 
12991           <param name=
"min" type=
"int" default=
""/> 
12992           <param name=
"max" type=
"int" default=
""/> 
12995       <method name=
"SetShowHelp" type=
"" overloaded=
"no"> 
12996         <autodoc>SetShowHelp(bool showHelp)
</autodoc> 
12997         <docstring>Determines whether the Help button will be displayed in the font dialog
 
12998 (Windows only).  The default value is false.
</docstring> 
13000           <param name=
"showHelp" type=
"bool" default=
""/> 
13004     <class name=
"FontDialog" oldname=
"wxFontDialog" module=
"windows"> 
13005       <docstring>This class represents the font chooser dialog.
</docstring> 
13006       <baseclass name=
"Dialog"/> 
13007       <constructor name=
"FontDialog" overloaded=
"no"> 
13008         <autodoc>__init__(Window parent, FontData data) -
> FontDialog
</autodoc> 
13009         <docstring>Constructor. Pass a parent window and the FontData object to be
 
13010 used to initialize the dialog controls.
</docstring> 
13012           <param name=
"parent" type=
"Window" default=
""/> 
13013           <param name=
"data" type=
"FontData" default=
""/> 
13016       <method name=
"GetFontData" type=
"FontData" overloaded=
"no"> 
13017         <autodoc>GetFontData() -
> FontData
</autodoc> 
13018         <docstring>Returns a reference to the internal FontData used by the FontDialog.
</docstring> 
13021     <class name=
"MessageDialog" oldname=
"wxMessageDialog" module=
"windows"> 
13022       <docstring>This class provides a dialog that shows a single or multi-line message, with
 
13023 a choice of OK, Yes, No and Cancel buttons.
</docstring> 
13026     wx.OK:                Show an OK button.
 
13028     wx.CANCEL:            Show a Cancel button.
 
13030     wx.YES_NO:            Show Yes and No buttons.
 
13032     wx.YES_DEFAULT:       Used with wxYES_NO, makes Yes button the default - which is the default behaviour.
 
13034     wx.NO_DEFAULT:        Used with wxYES_NO, makes No button the default.
 
13036     wx.ICON_EXCLAMATION:  Shows an exclamation mark icon.
 
13038     wx.ICON_HAND:         Shows an error icon.
 
13040     wx.ICON_ERROR:        Shows an error icon - the same as wxICON_HAND.
 
13042     wx.ICON_QUESTION:     Shows a question mark icon.
 
13044     wx.ICON_INFORMATION:  Shows an information (i) icon.
 
13046     wx.STAY_ON_TOP:       The message box stays on top of all other window, even those of the other applications (Windows only).
 
13048       <baseclass name=
"Dialog"/> 
13049       <constructor name=
"MessageDialog" overloaded=
"no"> 
13050         <autodoc>__init__(Window parent, String message, String caption=MessageBoxCaptionStr, 
 
13051     long style=wxOK|wxCANCEL|wxCENTRE, 
 
13052     Point pos=DefaultPosition) -
> MessageDialog
</autodoc> 
13053         <docstring>This class provides a dialog that shows a single or multi-line message, with
 
13054 a choice of OK, Yes, No and Cancel buttons.
</docstring> 
13056           <param name=
"parent" type=
"Window" default=
""/> 
13057           <param name=
"message" type=
"String" default=
""/> 
13058           <param name=
"caption" type=
"String" default=
"wxPyMessageBoxCaptionStr"/> 
13059           <param name=
"style" type=
"long" default=
"wxOK|wxCANCEL|wxCENTRE"/> 
13060           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
13064     <class name=
"ProgressDialog" oldname=
"wxProgressDialog" module=
"windows"> 
13065       <docstring>A dialog that shows a short message and a progress bar. Optionally, it can
 
13066 display an ABORT button.
</docstring> 
13070     wx.PD_APP_MODAL:            Make the progress dialog modal. If this flag is
 
13071                                 not given, it is only "locally" modal - that is
 
13072                                 the input to the parent window is disabled,
 
13073                                 but not to the other ones.
 
13075     wx.PD_AUTO_HIDE:            Causes the progress dialog to disappear from screen 
 
13076                                 as soon as the maximum value of the progress
 
13077                                 meter has been reached.
 
13079     wx.PD_CAN_ABORT:            This flag tells the dialog that it should have
 
13080                                 a "Cancel" button which the user may press. If
 
13081                                 this happens, the next call to Update() will
 
13084     wx.PD_ELAPSED_TIME:         This flag tells the dialog that it should show
 
13085                                 elapsed time (since creating the dialog).
 
13087     wx.PD_ESTIMATED_TIME:  This flag tells the dialog that it should show
 
13090     wx.PD_REMAINING_TIME:  This flag tells the dialog that it should show
 
13093       <baseclass name=
"Frame"/> 
13094       <constructor name=
"ProgressDialog" overloaded=
"no"> 
13095         <autodoc>__init__(String title, String message, int maximum=
100, Window parent=None, 
 
13096     int style=wxPD_AUTO_HIDE|wxPD_APP_MODAL) -
> ProgressDialog
</autodoc> 
13097         <docstring>Constructor. Creates the dialog, displays it and disables user input for other
 
13098 windows, or, if wxPD_APP_MODAL flag is not given, for its parent window only.
</docstring> 
13100           <param name=
"title" type=
"String" default=
""/> 
13101           <param name=
"message" type=
"String" default=
""/> 
13102           <param name=
"maximum" type=
"int" default=
"100"/> 
13103           <param name=
"parent" type=
"Window" default=
"NULL"/> 
13104           <param name=
"style" type=
"int" default=
"wxPD_AUTO_HIDE|wxPD_APP_MODAL"/> 
13107       <method name=
"Update" type=
"bool" overloaded=
"no"> 
13108         <autodoc>Update(int value, String newmsg=EmptyString) -
> bool
</autodoc> 
13109         <docstring>Updates the dialog, setting the progress bar to the new value and, if given
 
13110 changes the message above it. Returns true unless the Cancel button has been
 
13113 If false is returned, the application can either immediately destroy the
 
13114 dialog or ask the user for the confirmation and if the abort is not confirmed
 
13115 the dialog may be resumed with Resume function.
</docstring> 
13117           <param name=
"value" type=
"int" default=
""/> 
13118           <param name=
"newmsg" type=
"String" default=
"wxPyEmptyString"/> 
13121       <method name=
"Resume" type=
"" overloaded=
"no"> 
13122         <autodoc>Resume()
</autodoc> 
13123         <docstring>Can be used to continue with the dialog, after the user had chosen to abort.
</docstring> 
13127 EVT_FIND = wx.PyEventBinder( wxEVT_COMMAND_FIND, 
1 )
 
13128 EVT_FIND_NEXT = wx.PyEventBinder( wxEVT_COMMAND_FIND_NEXT, 
1 )
 
13129 EVT_FIND_REPLACE = wx.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE, 
1 )
 
13130 EVT_FIND_REPLACE_ALL = wx.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE_ALL, 
1 )
 
13131 EVT_FIND_CLOSE = wx.PyEventBinder( wxEVT_COMMAND_FIND_CLOSE, 
1 )
 
13133 # For backwards compatibility.  Should they be removed?
 
13134 EVT_COMMAND_FIND             = EVT_FIND 
 
13135 EVT_COMMAND_FIND_NEXT        = EVT_FIND_NEXT
 
13136 EVT_COMMAND_FIND_REPLACE     = EVT_FIND_REPLACE
 
13137 EVT_COMMAND_FIND_REPLACE_ALL = EVT_FIND_REPLACE_ALL
 
13138 EVT_COMMAND_FIND_CLOSE       = EVT_FIND_CLOSE        
 
13140     <class name=
"FindDialogEvent" oldname=
"wxFindDialogEvent" module=
"windows"> 
13141       <docstring>Events for the FindReplaceDialog
</docstring> 
13142       <baseclass name=
"CommandEvent"/> 
13143       <constructor name=
"FindDialogEvent" overloaded=
"no"> 
13144         <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int id=
0) -
> FindDialogEvent
</autodoc> 
13145         <docstring>Events for the FindReplaceDialog
</docstring> 
13147           <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/> 
13148           <param name=
"id" type=
"int" default=
"0"/> 
13151       <method name=
"GetFlags" type=
"int" overloaded=
"no"> 
13152         <autodoc>GetFlags() -
> int
</autodoc> 
13153         <docstring>Get the currently selected flags: this is the combination of
 
13154 wx.FR_DOWN, wx.FR_WHOLEWORD and wx.FR_MATCHCASE flags.
</docstring> 
13156       <method name=
"GetFindString" type=
"String" overloaded=
"no"> 
13157         <autodoc>GetFindString() -
> String
</autodoc> 
13158         <docstring>Return the string to find (never empty).
</docstring> 
13160       <method name=
"GetReplaceString" type=
"String" overloaded=
"no"> 
13161         <autodoc>GetReplaceString() -
> String
</autodoc> 
13162         <docstring>Return the string to replace the search string with (only
 
13163 for replace and replace all events).
</docstring> 
13165       <method name=
"GetDialog" type=
"wxFindReplaceDialog" overloaded=
"no"> 
13166         <autodoc>GetDialog() -
> FindReplaceDialog
</autodoc> 
13167         <docstring>Return the pointer to the dialog which generated this event.
</docstring> 
13169       <method name=
"SetFlags" type=
"" overloaded=
"no"> 
13170         <autodoc>SetFlags(int flags)
</autodoc> 
13172           <param name=
"flags" type=
"int" default=
""/> 
13175       <method name=
"SetFindString" type=
"" overloaded=
"no"> 
13176         <autodoc>SetFindString(String str)
</autodoc> 
13178           <param name=
"str" type=
"String" default=
""/> 
13181       <method name=
"SetReplaceString" type=
"" overloaded=
"no"> 
13182         <autodoc>SetReplaceString(String str)
</autodoc> 
13184           <param name=
"str" type=
"String" default=
""/> 
13188     <class name=
"FindReplaceData" oldname=
"wxFindReplaceData" module=
"windows"> 
13189       <docstring>FindReplaceData holds the data for FindReplaceDialog. It is used to initialize
 
13190 the dialog with the default values and will keep the last values from the
 
13191 dialog when it is closed. It is also updated each time a wxFindDialogEvent is
 
13192 generated so instead of using the wxFindDialogEvent methods you can also
 
13193 directly query this object.
 
13195 Note that all SetXXX() methods may only be called before showing the dialog
 
13196 and calling them has no effect later.
 
13199     wxFR_DOWN:          downward search/replace selected (otherwise, upwards)
 
13201     wxFR_WHOLEWORD:     whole word search/replace selected
 
13203     wxFR_MATCHCASE:     case sensitive search/replace selected (otherwise,
 
13206       <baseclass name=
"Object"/> 
13207       <constructor name=
"FindReplaceData" overloaded=
"no"> 
13208         <autodoc>__init__(int flags=
0) -
> FindReplaceData
</autodoc> 
13209         <docstring>Constuctor initializes the flags to default value (
0).
</docstring> 
13211           <param name=
"flags" type=
"int" default=
"0"/> 
13214       <destructor name=
"~wxFindReplaceData" overloaded=
"no"> 
13215         <autodoc>__del__()
</autodoc> 
13217       <method name=
"GetFindString" type=
"String" overloaded=
"no"> 
13218         <autodoc>GetFindString() -
> String
</autodoc> 
13219         <docstring>Get the string to find.
</docstring> 
13221       <method name=
"GetReplaceString" type=
"String" overloaded=
"no"> 
13222         <autodoc>GetReplaceString() -
> String
</autodoc> 
13223         <docstring>Get the replacement string.
</docstring> 
13225       <method name=
"GetFlags" type=
"int" overloaded=
"no"> 
13226         <autodoc>GetFlags() -
> int
</autodoc> 
13227         <docstring>Get the combination of flag values.
</docstring> 
13229       <method name=
"SetFlags" type=
"" overloaded=
"no"> 
13230         <autodoc>SetFlags(int flags)
</autodoc> 
13231         <docstring>Set the flags to use to initialize the controls of the dialog.
</docstring> 
13233           <param name=
"flags" type=
"int" default=
""/> 
13236       <method name=
"SetFindString" type=
"" overloaded=
"no"> 
13237         <autodoc>SetFindString(String str)
</autodoc> 
13238         <docstring>Set the string to find (used as initial value by the dialog).
</docstring> 
13240           <param name=
"str" type=
"String" default=
""/> 
13243       <method name=
"SetReplaceString" type=
"" overloaded=
"no"> 
13244         <autodoc>SetReplaceString(String str)
</autodoc> 
13245         <docstring>Set the replacement string (used as initial value by the dialog).
</docstring> 
13247           <param name=
"str" type=
"String" default=
""/> 
13251     <class name=
"FindReplaceDialog" oldname=
"wxFindReplaceDialog" module=
"windows"> 
13252       <docstring>FindReplaceDialog is a standard modeless dialog which is used to allow the
 
13253 user to search for some text (and possibly replace it with something
 
13254 else). The actual searching is supposed to be done in the owner window which
 
13255 is the parent of this dialog. Note that it means that unlike for the other
 
13256 standard dialogs this one must have a parent window. Also note that there is
 
13257 no way to use this dialog in a modal way; it is always, by design and
 
13258 implementation, modeless.
</docstring> 
13261     wx.FR_REPLACEDIALOG:        replace dialog (otherwise find dialog)
 
13263     wx.FR_NOUPDOWN:             don't allow changing the search direction
 
13265     wx.FR_NOMATCHCASE:          don't allow case sensitive searching
 
13267     wx.FR_NOWHOLEWORD:          don't allow whole word searching
 
13269       <baseclass name=
"Dialog"/> 
13270       <constructor name=
"FindReplaceDialog" overloaded=
"no"> 
13271         <autodoc>__init__(Window parent, FindReplaceData data, String title, 
 
13272     int style=
0) -
> FindReplaceDialog
</autodoc> 
13273         <docstring>Create a FindReplaceDialog.  The parent and data parameters must be
 
13274 non-None.  Use Show to display the dialog.
</docstring> 
13276           <param name=
"parent" type=
"Window" default=
""/> 
13277           <param name=
"data" type=
"FindReplaceData" default=
""/> 
13278           <param name=
"title" type=
"String" default=
""/> 
13279           <param name=
"style" type=
"int" default=
"0"/> 
13282       <constructor name=
"PreFindReplaceDialog" overloaded=
"no"> 
13283         <autodoc>PreFindReplaceDialog() -
> FindReplaceDialog
</autodoc> 
13284         <docstring>Precreate a FindReplaceDialog for 
2-phase creation
</docstring> 
13286       <method name=
"Create" type=
"bool" overloaded=
"no"> 
13287         <autodoc>Create(Window parent, FindReplaceData data, String title, 
 
13288     int style=
0) -
> bool
</autodoc> 
13289         <docstring>Create the dialog, for 
2-phase create.
</docstring> 
13291           <param name=
"parent" type=
"Window" default=
""/> 
13292           <param name=
"data" type=
"FindReplaceData" default=
""/> 
13293           <param name=
"title" type=
"String" default=
""/> 
13294           <param name=
"style" type=
"int" default=
"0"/> 
13297       <method name=
"GetData" type=
"FindReplaceData" overloaded=
"no"> 
13298         <autodoc>GetData() -
> FindReplaceData
</autodoc> 
13299         <docstring>Get the FindReplaceData object used by this dialog.
</docstring> 
13301       <method name=
"SetData" type=
"" overloaded=
"no"> 
13302         <autodoc>SetData(FindReplaceData data)
</autodoc> 
13303         <docstring>Set the FindReplaceData object used by this dialog.
</docstring> 
13305           <param name=
"data" type=
"FindReplaceData" default=
""/> 
13310 #---------------------------------------------------------------------------
 
13312     <class name=
"MDIParentFrame" oldname=
"wxMDIParentFrame" module=
"windows"> 
13313       <baseclass name=
"Frame"/> 
13314       <constructor name=
"MDIParentFrame" overloaded=
"no"> 
13315         <autodoc>__init__(Window parent, int id, String title, Point pos=DefaultPosition, 
 
13316     Size size=DefaultSize, long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL, 
 
13317     String name=FrameNameStr) -
> MDIParentFrame
</autodoc> 
13319           <param name=
"parent" type=
"Window" default=
""/> 
13320           <param name=
"id" type=
"int" default=
""/> 
13321           <param name=
"title" type=
"String" default=
""/> 
13322           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
13323           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
13324           <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL"/> 
13325           <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/> 
13328       <constructor name=
"PreMDIParentFrame" overloaded=
"no"> 
13329         <autodoc>PreMDIParentFrame() -
> MDIParentFrame
</autodoc> 
13331       <method name=
"Create" type=
"bool" overloaded=
"no"> 
13332         <autodoc>Create(Window parent, int id, String title, Point pos=DefaultPosition, 
 
13333     Size size=DefaultSize, long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL, 
 
13334     String name=FrameNameStr) -
> bool
</autodoc> 
13336           <param name=
"parent" type=
"Window" default=
""/> 
13337           <param name=
"id" type=
"int" default=
""/> 
13338           <param name=
"title" type=
"String" default=
""/> 
13339           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
13340           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
13341           <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL"/> 
13342           <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/> 
13345       <method name=
"ActivateNext" type=
"" overloaded=
"no"> 
13346         <autodoc>ActivateNext()
</autodoc> 
13348       <method name=
"ActivatePrevious" type=
"" overloaded=
"no"> 
13349         <autodoc>ActivatePrevious()
</autodoc> 
13351       <method name=
"ArrangeIcons" type=
"" overloaded=
"no"> 
13352         <autodoc>ArrangeIcons()
</autodoc> 
13354       <method name=
"Cascade" type=
"" overloaded=
"no"> 
13355         <autodoc>Cascade()
</autodoc> 
13357       <method name=
"GetActiveChild" type=
"wxMDIChildFrame" overloaded=
"no"> 
13358         <autodoc>GetActiveChild() -
> MDIChildFrame
</autodoc> 
13360       <method name=
"GetClientWindow" type=
"wxMDIClientWindow" overloaded=
"no"> 
13361         <autodoc>GetClientWindow() -
> MDIClientWindow
</autodoc> 
13363       <method name=
"GetToolBar" type=
"Window" overloaded=
"no"> 
13364         <autodoc>GetToolBar() -
> Window
</autodoc> 
13366       <method name=
"Tile" type=
"" overloaded=
"no"> 
13367         <autodoc>Tile()
</autodoc> 
13370     <class name=
"MDIChildFrame" oldname=
"wxMDIChildFrame" module=
"windows"> 
13371       <baseclass name=
"Frame"/> 
13372       <constructor name=
"MDIChildFrame" overloaded=
"no"> 
13373         <autodoc>__init__(MDIParentFrame parent, int id, String title, Point pos=DefaultPosition, 
 
13374     Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE, 
 
13375     String name=FrameNameStr) -
> MDIChildFrame
</autodoc> 
13377           <param name=
"parent" type=
"MDIParentFrame" default=
""/> 
13378           <param name=
"id" type=
"int" default=
""/> 
13379           <param name=
"title" type=
"String" default=
""/> 
13380           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
13381           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
13382           <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/> 
13383           <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/> 
13386       <constructor name=
"PreMDIChildFrame" overloaded=
"no"> 
13387         <autodoc>PreMDIChildFrame() -
> MDIChildFrame
</autodoc> 
13389       <method name=
"Create" type=
"bool" overloaded=
"no"> 
13390         <autodoc>Create(MDIParentFrame parent, int id, String title, Point pos=DefaultPosition, 
 
13391     Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE, 
 
13392     String name=FrameNameStr) -
> bool
</autodoc> 
13394           <param name=
"parent" type=
"MDIParentFrame" default=
""/> 
13395           <param name=
"id" type=
"int" default=
""/> 
13396           <param name=
"title" type=
"String" default=
""/> 
13397           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
13398           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
13399           <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/> 
13400           <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/> 
13403       <method name=
"Activate" type=
"" overloaded=
"no"> 
13404         <autodoc>Activate()
</autodoc> 
13406       <method name=
"Maximize" type=
"" overloaded=
"no"> 
13407         <autodoc>Maximize(bool maximize)
</autodoc> 
13409           <param name=
"maximize" type=
"bool" default=
""/> 
13412       <method name=
"Restore" type=
"" overloaded=
"no"> 
13413         <autodoc>Restore()
</autodoc> 
13416     <class name=
"MDIClientWindow" oldname=
"wxMDIClientWindow" module=
"windows"> 
13417       <baseclass name=
"Window"/> 
13418       <constructor name=
"MDIClientWindow" overloaded=
"no"> 
13419         <autodoc>__init__(MDIParentFrame parent, long style=
0) -
> MDIClientWindow
</autodoc> 
13421           <param name=
"parent" type=
"MDIParentFrame" default=
""/> 
13422           <param name=
"style" type=
"long" default=
"0"/> 
13425       <constructor name=
"PreMDIClientWindow" overloaded=
"no"> 
13426         <autodoc>PreMDIClientWindow() -
> MDIClientWindow
</autodoc> 
13428       <method name=
"Create" type=
"bool" overloaded=
"no"> 
13429         <autodoc>Create(MDIParentFrame parent, long style=
0) -
> bool
</autodoc> 
13431           <param name=
"parent" type=
"MDIParentFrame" default=
""/> 
13432           <param name=
"style" type=
"long" default=
"0"/> 
13437 #---------------------------------------------------------------------------
 
13439     <class name=
"PyWindow" oldname=
"wxPyWindow" module=
"windows"> 
13440       <baseclass name=
"Window"/> 
13441       <constructor name=
"PyWindow" overloaded=
"no"> 
13442         <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
13443     long style=
0, String name=PanelNameStr) -
> PyWindow
</autodoc> 
13445           <param name=
"parent" type=
"Window" default=
""/> 
13446           <param name=
"id" type=
"int" default=
""/> 
13447           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
13448           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
13449           <param name=
"style" type=
"long" default=
"0"/> 
13450           <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/> 
13453       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
13454         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
13456           <param name=
"self" type=
"PyObject" default=
""/> 
13457           <param name=
"_class" type=
"PyObject" default=
""/> 
13460       <method name=
"base_DoMoveWindow" type=
"" overloaded=
"no"> 
13461         <autodoc>base_DoMoveWindow(int x, int y, int width, int height)
</autodoc> 
13463           <param name=
"x" type=
"int" default=
""/> 
13464           <param name=
"y" type=
"int" default=
""/> 
13465           <param name=
"width" type=
"int" default=
""/> 
13466           <param name=
"height" type=
"int" default=
""/> 
13469       <method name=
"base_DoSetSize" type=
"" overloaded=
"no"> 
13470         <autodoc>base_DoSetSize(int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)
</autodoc> 
13472           <param name=
"x" type=
"int" default=
""/> 
13473           <param name=
"y" type=
"int" default=
""/> 
13474           <param name=
"width" type=
"int" default=
""/> 
13475           <param name=
"height" type=
"int" default=
""/> 
13476           <param name=
"sizeFlags" type=
"int" default=
"wxSIZE_AUTO"/> 
13479       <method name=
"base_DoSetClientSize" type=
"" overloaded=
"no"> 
13480         <autodoc>base_DoSetClientSize(int width, int height)
</autodoc> 
13482           <param name=
"width" type=
"int" default=
""/> 
13483           <param name=
"height" type=
"int" default=
""/> 
13486       <method name=
"base_DoSetVirtualSize" type=
"" overloaded=
"no"> 
13487         <autodoc>base_DoSetVirtualSize(int x, int y)
</autodoc> 
13489           <param name=
"x" type=
"int" default=
""/> 
13490           <param name=
"y" type=
"int" default=
""/> 
13493       <method name=
"base_DoGetSize" type=
"" overloaded=
"no"> 
13494         <autodoc>base_DoGetSize() -
> (width, height)
</autodoc> 
13496           <param name=
"OUTPUT" type=
"int" default=
""/> 
13497           <param name=
"OUTPUT" type=
"int" default=
""/> 
13500       <method name=
"base_DoGetClientSize" type=
"" overloaded=
"no"> 
13501         <autodoc>base_DoGetClientSize() -
> (width, height)
</autodoc> 
13503           <param name=
"OUTPUT" type=
"int" default=
""/> 
13504           <param name=
"OUTPUT" type=
"int" default=
""/> 
13507       <method name=
"base_DoGetPosition" type=
"" overloaded=
"no"> 
13508         <autodoc>base_DoGetPosition() -
> (x,y)
</autodoc> 
13510           <param name=
"OUTPUT" type=
"int" default=
""/> 
13511           <param name=
"OUTPUT" type=
"int" default=
""/> 
13514       <method name=
"base_DoGetVirtualSize" type=
"Size" overloaded=
"no"> 
13515         <autodoc>base_DoGetVirtualSize() -
> Size
</autodoc> 
13517       <method name=
"base_DoGetBestSize" type=
"Size" overloaded=
"no"> 
13518         <autodoc>base_DoGetBestSize() -
> Size
</autodoc> 
13520       <method name=
"base_InitDialog" type=
"" overloaded=
"no"> 
13521         <autodoc>base_InitDialog()
</autodoc> 
13523       <method name=
"base_TransferDataToWindow" type=
"bool" overloaded=
"no"> 
13524         <autodoc>base_TransferDataToWindow() -
> bool
</autodoc> 
13526       <method name=
"base_TransferDataFromWindow" type=
"bool" overloaded=
"no"> 
13527         <autodoc>base_TransferDataFromWindow() -
> bool
</autodoc> 
13529       <method name=
"base_Validate" type=
"bool" overloaded=
"no"> 
13530         <autodoc>base_Validate() -
> bool
</autodoc> 
13532       <method name=
"base_AcceptsFocus" type=
"bool" overloaded=
"no"> 
13533         <autodoc>base_AcceptsFocus() -
> bool
</autodoc> 
13535       <method name=
"base_AcceptsFocusFromKeyboard" type=
"bool" overloaded=
"no"> 
13536         <autodoc>base_AcceptsFocusFromKeyboard() -
> bool
</autodoc> 
13538       <method name=
"base_GetMaxSize" type=
"Size" overloaded=
"no"> 
13539         <autodoc>base_GetMaxSize() -
> Size
</autodoc> 
13541       <method name=
"base_AddChild" type=
"" overloaded=
"no"> 
13542         <autodoc>base_AddChild(Window child)
</autodoc> 
13544           <param name=
"child" type=
"Window" default=
""/> 
13547       <method name=
"base_RemoveChild" type=
"" overloaded=
"no"> 
13548         <autodoc>base_RemoveChild(Window child)
</autodoc> 
13550           <param name=
"child" type=
"Window" default=
""/> 
13554     <class name=
"PyPanel" oldname=
"wxPyPanel" module=
"windows"> 
13555       <baseclass name=
"Panel"/> 
13556       <constructor name=
"PyPanel" overloaded=
"no"> 
13557         <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
13558     long style=
0, String name=PanelNameStr) -
> PyPanel
</autodoc> 
13560           <param name=
"parent" type=
"Window" default=
""/> 
13561           <param name=
"id" type=
"int" default=
""/> 
13562           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
13563           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
13564           <param name=
"style" type=
"long" default=
"0"/> 
13565           <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/> 
13568       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
13569         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
13571           <param name=
"self" type=
"PyObject" default=
""/> 
13572           <param name=
"_class" type=
"PyObject" default=
""/> 
13575       <method name=
"base_DoMoveWindow" type=
"" overloaded=
"no"> 
13576         <autodoc>base_DoMoveWindow(int x, int y, int width, int height)
</autodoc> 
13578           <param name=
"x" type=
"int" default=
""/> 
13579           <param name=
"y" type=
"int" default=
""/> 
13580           <param name=
"width" type=
"int" default=
""/> 
13581           <param name=
"height" type=
"int" default=
""/> 
13584       <method name=
"base_DoSetSize" type=
"" overloaded=
"no"> 
13585         <autodoc>base_DoSetSize(int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)
</autodoc> 
13587           <param name=
"x" type=
"int" default=
""/> 
13588           <param name=
"y" type=
"int" default=
""/> 
13589           <param name=
"width" type=
"int" default=
""/> 
13590           <param name=
"height" type=
"int" default=
""/> 
13591           <param name=
"sizeFlags" type=
"int" default=
"wxSIZE_AUTO"/> 
13594       <method name=
"base_DoSetClientSize" type=
"" overloaded=
"no"> 
13595         <autodoc>base_DoSetClientSize(int width, int height)
</autodoc> 
13597           <param name=
"width" type=
"int" default=
""/> 
13598           <param name=
"height" type=
"int" default=
""/> 
13601       <method name=
"base_DoSetVirtualSize" type=
"" overloaded=
"no"> 
13602         <autodoc>base_DoSetVirtualSize(int x, int y)
</autodoc> 
13604           <param name=
"x" type=
"int" default=
""/> 
13605           <param name=
"y" type=
"int" default=
""/> 
13608       <method name=
"base_DoGetSize" type=
"" overloaded=
"no"> 
13609         <autodoc>base_DoGetSize() -
> (width, height)
</autodoc> 
13611           <param name=
"OUTPUT" type=
"int" default=
""/> 
13612           <param name=
"OUTPUT" type=
"int" default=
""/> 
13615       <method name=
"base_DoGetClientSize" type=
"" overloaded=
"no"> 
13616         <autodoc>base_DoGetClientSize() -
> (width, height)
</autodoc> 
13618           <param name=
"OUTPUT" type=
"int" default=
""/> 
13619           <param name=
"OUTPUT" type=
"int" default=
""/> 
13622       <method name=
"base_DoGetPosition" type=
"" overloaded=
"no"> 
13623         <autodoc>base_DoGetPosition() -
> (x,y)
</autodoc> 
13625           <param name=
"OUTPUT" type=
"int" default=
""/> 
13626           <param name=
"OUTPUT" type=
"int" default=
""/> 
13629       <method name=
"base_DoGetVirtualSize" type=
"Size" overloaded=
"no"> 
13630         <autodoc>base_DoGetVirtualSize() -
> Size
</autodoc> 
13632       <method name=
"base_DoGetBestSize" type=
"Size" overloaded=
"no"> 
13633         <autodoc>base_DoGetBestSize() -
> Size
</autodoc> 
13635       <method name=
"base_InitDialog" type=
"" overloaded=
"no"> 
13636         <autodoc>base_InitDialog()
</autodoc> 
13638       <method name=
"base_TransferDataToWindow" type=
"bool" overloaded=
"no"> 
13639         <autodoc>base_TransferDataToWindow() -
> bool
</autodoc> 
13641       <method name=
"base_TransferDataFromWindow" type=
"bool" overloaded=
"no"> 
13642         <autodoc>base_TransferDataFromWindow() -
> bool
</autodoc> 
13644       <method name=
"base_Validate" type=
"bool" overloaded=
"no"> 
13645         <autodoc>base_Validate() -
> bool
</autodoc> 
13647       <method name=
"base_AcceptsFocus" type=
"bool" overloaded=
"no"> 
13648         <autodoc>base_AcceptsFocus() -
> bool
</autodoc> 
13650       <method name=
"base_AcceptsFocusFromKeyboard" type=
"bool" overloaded=
"no"> 
13651         <autodoc>base_AcceptsFocusFromKeyboard() -
> bool
</autodoc> 
13653       <method name=
"base_GetMaxSize" type=
"Size" overloaded=
"no"> 
13654         <autodoc>base_GetMaxSize() -
> Size
</autodoc> 
13656       <method name=
"base_AddChild" type=
"" overloaded=
"no"> 
13657         <autodoc>base_AddChild(Window child)
</autodoc> 
13659           <param name=
"child" type=
"Window" default=
""/> 
13662       <method name=
"base_RemoveChild" type=
"" overloaded=
"no"> 
13663         <autodoc>base_RemoveChild(Window child)
</autodoc> 
13665           <param name=
"child" type=
"Window" default=
""/> 
13670 #---------------------------------------------------------------------------
 
13672     <class name=
"PrintData" oldname=
"wxPrintData" module=
"windows"> 
13673       <baseclass name=
"Object"/> 
13674       <constructor name=
"PrintData" overloaded=
"no"> 
13675         <autodoc>__init__() -
> PrintData
</autodoc> 
13677       <destructor name=
"~wxPrintData" overloaded=
"no"> 
13678         <autodoc>__del__()
</autodoc> 
13680       <method name=
"GetNoCopies" type=
"int" overloaded=
"no"> 
13681         <autodoc>GetNoCopies() -
> int
</autodoc> 
13683       <method name=
"GetCollate" type=
"bool" overloaded=
"no"> 
13684         <autodoc>GetCollate() -
> bool
</autodoc> 
13686       <method name=
"GetOrientation" type=
"int" overloaded=
"no"> 
13687         <autodoc>GetOrientation() -
> int
</autodoc> 
13689       <method name=
"Ok" type=
"bool" overloaded=
"no"> 
13690         <autodoc>Ok() -
> bool
</autodoc> 
13692       <method name=
"GetPrinterName" type=
"String" overloaded=
"no"> 
13693         <autodoc>GetPrinterName() -
> String
</autodoc> 
13695       <method name=
"GetColour" type=
"bool" overloaded=
"no"> 
13696         <autodoc>GetColour() -
> bool
</autodoc> 
13698       <method name=
"GetDuplex" type=
"wxDuplexMode" overloaded=
"no"> 
13699         <autodoc>GetDuplex() -
> int
</autodoc> 
13701       <method name=
"GetPaperId" type=
"wxPaperSize" overloaded=
"no"> 
13702         <autodoc>GetPaperId() -
> int
</autodoc> 
13704       <method name=
"GetPaperSize" type=
"Size" overloaded=
"no"> 
13705         <autodoc>GetPaperSize() -
> Size
</autodoc> 
13707       <method name=
"GetQuality" type=
"int" overloaded=
"no"> 
13708         <autodoc>GetQuality() -
> int
</autodoc> 
13710       <method name=
"SetNoCopies" type=
"" overloaded=
"no"> 
13711         <autodoc>SetNoCopies(int v)
</autodoc> 
13713           <param name=
"v" type=
"int" default=
""/> 
13716       <method name=
"SetCollate" type=
"" overloaded=
"no"> 
13717         <autodoc>SetCollate(bool flag)
</autodoc> 
13719           <param name=
"flag" type=
"bool" default=
""/> 
13722       <method name=
"SetOrientation" type=
"" overloaded=
"no"> 
13723         <autodoc>SetOrientation(int orient)
</autodoc> 
13725           <param name=
"orient" type=
"int" default=
""/> 
13728       <method name=
"SetPrinterName" type=
"" overloaded=
"no"> 
13729         <autodoc>SetPrinterName(String name)
</autodoc> 
13731           <param name=
"name" type=
"String" default=
""/> 
13734       <method name=
"SetColour" type=
"" overloaded=
"no"> 
13735         <autodoc>SetColour(bool colour)
</autodoc> 
13737           <param name=
"colour" type=
"bool" default=
""/> 
13740       <method name=
"SetDuplex" type=
"" overloaded=
"no"> 
13741         <autodoc>SetDuplex(int duplex)
</autodoc> 
13743           <param name=
"duplex" type=
"wxDuplexMode" default=
""/> 
13746       <method name=
"SetPaperId" type=
"" overloaded=
"no"> 
13747         <autodoc>SetPaperId(int sizeId)
</autodoc> 
13749           <param name=
"sizeId" type=
"wxPaperSize" default=
""/> 
13752       <method name=
"SetPaperSize" type=
"" overloaded=
"no"> 
13753         <autodoc>SetPaperSize(Size sz)
</autodoc> 
13755           <param name=
"sz" type=
"Size" default=
""/> 
13758       <method name=
"SetQuality" type=
"" overloaded=
"no"> 
13759         <autodoc>SetQuality(int quality)
</autodoc> 
13761           <param name=
"quality" type=
"int" default=
""/> 
13764       <method name=
"GetPrinterCommand" type=
"String" overloaded=
"no"> 
13765         <autodoc>GetPrinterCommand() -
> String
</autodoc> 
13767       <method name=
"GetPrinterOptions" type=
"String" overloaded=
"no"> 
13768         <autodoc>GetPrinterOptions() -
> String
</autodoc> 
13770       <method name=
"GetPreviewCommand" type=
"String" overloaded=
"no"> 
13771         <autodoc>GetPreviewCommand() -
> String
</autodoc> 
13773       <method name=
"GetFilename" type=
"String" overloaded=
"no"> 
13774         <autodoc>GetFilename() -
> String
</autodoc> 
13776       <method name=
"GetFontMetricPath" type=
"String" overloaded=
"no"> 
13777         <autodoc>GetFontMetricPath() -
> String
</autodoc> 
13779       <method name=
"GetPrinterScaleX" type=
"double" overloaded=
"no"> 
13780         <autodoc>GetPrinterScaleX() -
> double
</autodoc> 
13782       <method name=
"GetPrinterScaleY" type=
"double" overloaded=
"no"> 
13783         <autodoc>GetPrinterScaleY() -
> double
</autodoc> 
13785       <method name=
"GetPrinterTranslateX" type=
"long" overloaded=
"no"> 
13786         <autodoc>GetPrinterTranslateX() -
> long
</autodoc> 
13788       <method name=
"GetPrinterTranslateY" type=
"long" overloaded=
"no"> 
13789         <autodoc>GetPrinterTranslateY() -
> long
</autodoc> 
13791       <method name=
"GetPrintMode" type=
"wxPrintMode" overloaded=
"no"> 
13792         <autodoc>GetPrintMode() -
> int
</autodoc> 
13794       <method name=
"SetPrinterCommand" type=
"" overloaded=
"no"> 
13795         <autodoc>SetPrinterCommand(String command)
</autodoc> 
13797           <param name=
"command" type=
"String" default=
""/> 
13800       <method name=
"SetPrinterOptions" type=
"" overloaded=
"no"> 
13801         <autodoc>SetPrinterOptions(String options)
</autodoc> 
13803           <param name=
"options" type=
"String" default=
""/> 
13806       <method name=
"SetPreviewCommand" type=
"" overloaded=
"no"> 
13807         <autodoc>SetPreviewCommand(String command)
</autodoc> 
13809           <param name=
"command" type=
"String" default=
""/> 
13812       <method name=
"SetFilename" type=
"" overloaded=
"no"> 
13813         <autodoc>SetFilename(String filename)
</autodoc> 
13815           <param name=
"filename" type=
"String" default=
""/> 
13818       <method name=
"SetFontMetricPath" type=
"" overloaded=
"no"> 
13819         <autodoc>SetFontMetricPath(String path)
</autodoc> 
13821           <param name=
"path" type=
"String" default=
""/> 
13824       <method name=
"SetPrinterScaleX" type=
"" overloaded=
"no"> 
13825         <autodoc>SetPrinterScaleX(double x)
</autodoc> 
13827           <param name=
"x" type=
"double" default=
""/> 
13830       <method name=
"SetPrinterScaleY" type=
"" overloaded=
"no"> 
13831         <autodoc>SetPrinterScaleY(double y)
</autodoc> 
13833           <param name=
"y" type=
"double" default=
""/> 
13836       <method name=
"SetPrinterScaling" type=
"" overloaded=
"no"> 
13837         <autodoc>SetPrinterScaling(double x, double y)
</autodoc> 
13839           <param name=
"x" type=
"double" default=
""/> 
13840           <param name=
"y" type=
"double" default=
""/> 
13843       <method name=
"SetPrinterTranslateX" type=
"" overloaded=
"no"> 
13844         <autodoc>SetPrinterTranslateX(long x)
</autodoc> 
13846           <param name=
"x" type=
"long" default=
""/> 
13849       <method name=
"SetPrinterTranslateY" type=
"" overloaded=
"no"> 
13850         <autodoc>SetPrinterTranslateY(long y)
</autodoc> 
13852           <param name=
"y" type=
"long" default=
""/> 
13855       <method name=
"SetPrinterTranslation" type=
"" overloaded=
"no"> 
13856         <autodoc>SetPrinterTranslation(long x, long y)
</autodoc> 
13858           <param name=
"x" type=
"long" default=
""/> 
13859           <param name=
"y" type=
"long" default=
""/> 
13862       <method name=
"SetPrintMode" type=
"" overloaded=
"no"> 
13863         <autodoc>SetPrintMode(int printMode)
</autodoc> 
13865           <param name=
"printMode" type=
"wxPrintMode" default=
""/> 
13868       <method name=
"GetOutputStream" type=
"OutputStream" overloaded=
"no"> 
13869         <autodoc>GetOutputStream() -
> OutputStream
</autodoc> 
13871       <method name=
"SetOutputStream" type=
"" overloaded=
"no"> 
13872         <autodoc>SetOutputStream(OutputStream outputstream)
</autodoc> 
13874           <param name=
"outputstream" type=
"OutputStream" default=
""/> 
13878     <class name=
"PageSetupDialogData" oldname=
"wxPageSetupDialogData" module=
"windows"> 
13879       <baseclass name=
"Object"/> 
13880       <constructor name=
"PageSetupDialogData" overloaded=
"no"> 
13881         <autodoc>__init__() -
> PageSetupDialogData
</autodoc> 
13883       <destructor name=
"~wxPageSetupDialogData" overloaded=
"no"> 
13884         <autodoc>__del__()
</autodoc> 
13886       <method name=
"EnableHelp" type=
"" overloaded=
"no"> 
13887         <autodoc>EnableHelp(bool flag)
</autodoc> 
13889           <param name=
"flag" type=
"bool" default=
""/> 
13892       <method name=
"EnableMargins" type=
"" overloaded=
"no"> 
13893         <autodoc>EnableMargins(bool flag)
</autodoc> 
13895           <param name=
"flag" type=
"bool" default=
""/> 
13898       <method name=
"EnableOrientation" type=
"" overloaded=
"no"> 
13899         <autodoc>EnableOrientation(bool flag)
</autodoc> 
13901           <param name=
"flag" type=
"bool" default=
""/> 
13904       <method name=
"EnablePaper" type=
"" overloaded=
"no"> 
13905         <autodoc>EnablePaper(bool flag)
</autodoc> 
13907           <param name=
"flag" type=
"bool" default=
""/> 
13910       <method name=
"EnablePrinter" type=
"" overloaded=
"no"> 
13911         <autodoc>EnablePrinter(bool flag)
</autodoc> 
13913           <param name=
"flag" type=
"bool" default=
""/> 
13916       <method name=
"GetDefaultMinMargins" type=
"bool" overloaded=
"no"> 
13917         <autodoc>GetDefaultMinMargins() -
> bool
</autodoc> 
13919       <method name=
"GetEnableMargins" type=
"bool" overloaded=
"no"> 
13920         <autodoc>GetEnableMargins() -
> bool
</autodoc> 
13922       <method name=
"GetEnableOrientation" type=
"bool" overloaded=
"no"> 
13923         <autodoc>GetEnableOrientation() -
> bool
</autodoc> 
13925       <method name=
"GetEnablePaper" type=
"bool" overloaded=
"no"> 
13926         <autodoc>GetEnablePaper() -
> bool
</autodoc> 
13928       <method name=
"GetEnablePrinter" type=
"bool" overloaded=
"no"> 
13929         <autodoc>GetEnablePrinter() -
> bool
</autodoc> 
13931       <method name=
"GetEnableHelp" type=
"bool" overloaded=
"no"> 
13932         <autodoc>GetEnableHelp() -
> bool
</autodoc> 
13934       <method name=
"GetDefaultInfo" type=
"bool" overloaded=
"no"> 
13935         <autodoc>GetDefaultInfo() -
> bool
</autodoc> 
13937       <method name=
"GetMarginTopLeft" type=
"Point" overloaded=
"no"> 
13938         <autodoc>GetMarginTopLeft() -
> Point
</autodoc> 
13940       <method name=
"GetMarginBottomRight" type=
"Point" overloaded=
"no"> 
13941         <autodoc>GetMarginBottomRight() -
> Point
</autodoc> 
13943       <method name=
"GetMinMarginTopLeft" type=
"Point" overloaded=
"no"> 
13944         <autodoc>GetMinMarginTopLeft() -
> Point
</autodoc> 
13946       <method name=
"GetMinMarginBottomRight" type=
"Point" overloaded=
"no"> 
13947         <autodoc>GetMinMarginBottomRight() -
> Point
</autodoc> 
13949       <method name=
"GetPaperId" type=
"wxPaperSize" overloaded=
"no"> 
13950         <autodoc>GetPaperId() -
> int
</autodoc> 
13952       <method name=
"GetPaperSize" type=
"Size" overloaded=
"no"> 
13953         <autodoc>GetPaperSize() -
> Size
</autodoc> 
13955       <method name=
"GetPrintData" type=
"PrintData" overloaded=
"no"> 
13956         <autodoc>GetPrintData() -
> PrintData
</autodoc> 
13958       <method name=
"Ok" type=
"bool" overloaded=
"no"> 
13959         <autodoc>Ok() -
> bool
</autodoc> 
13961       <method name=
"SetDefaultInfo" type=
"" overloaded=
"no"> 
13962         <autodoc>SetDefaultInfo(bool flag)
</autodoc> 
13964           <param name=
"flag" type=
"bool" default=
""/> 
13967       <method name=
"SetDefaultMinMargins" type=
"" overloaded=
"no"> 
13968         <autodoc>SetDefaultMinMargins(bool flag)
</autodoc> 
13970           <param name=
"flag" type=
"bool" default=
""/> 
13973       <method name=
"SetMarginTopLeft" type=
"" overloaded=
"no"> 
13974         <autodoc>SetMarginTopLeft(Point pt)
</autodoc> 
13976           <param name=
"pt" type=
"Point" default=
""/> 
13979       <method name=
"SetMarginBottomRight" type=
"" overloaded=
"no"> 
13980         <autodoc>SetMarginBottomRight(Point pt)
</autodoc> 
13982           <param name=
"pt" type=
"Point" default=
""/> 
13985       <method name=
"SetMinMarginTopLeft" type=
"" overloaded=
"no"> 
13986         <autodoc>SetMinMarginTopLeft(Point pt)
</autodoc> 
13988           <param name=
"pt" type=
"Point" default=
""/> 
13991       <method name=
"SetMinMarginBottomRight" type=
"" overloaded=
"no"> 
13992         <autodoc>SetMinMarginBottomRight(Point pt)
</autodoc> 
13994           <param name=
"pt" type=
"Point" default=
""/> 
13997       <method name=
"SetPaperId" type=
"" overloaded=
"no"> 
13998         <autodoc>SetPaperId(int id)
</autodoc> 
14000           <param name=
"id" type=
"wxPaperSize" default=
""/> 
14003       <method name=
"SetPaperSize" type=
"" overloaded=
"no"> 
14004         <autodoc>SetPaperSize(Size size)
</autodoc> 
14006           <param name=
"size" type=
"Size" default=
""/> 
14009       <method name=
"SetPrintData" type=
"" overloaded=
"no"> 
14010         <autodoc>SetPrintData(PrintData printData)
</autodoc> 
14012           <param name=
"printData" type=
"PrintData" default=
""/> 
14016     <class name=
"PageSetupDialog" oldname=
"wxPageSetupDialog" module=
"windows"> 
14017       <baseclass name=
"Dialog"/> 
14018       <constructor name=
"PageSetupDialog" overloaded=
"no"> 
14019         <autodoc>__init__(Window parent, PageSetupDialogData data=None) -
> PageSetupDialog
</autodoc> 
14021           <param name=
"parent" type=
"Window" default=
""/> 
14022           <param name=
"data" type=
"PageSetupDialogData" default=
"NULL"/> 
14025       <method name=
"GetPageSetupData" type=
"PageSetupDialogData" overloaded=
"no"> 
14026         <autodoc>GetPageSetupData() -
> PageSetupDialogData
</autodoc> 
14028       <method name=
"ShowModal" type=
"int" overloaded=
"no"> 
14029         <autodoc>ShowModal() -
> int
</autodoc> 
14032     <class name=
"PrintDialogData" oldname=
"wxPrintDialogData" module=
"windows"> 
14033       <baseclass name=
"Object"/> 
14034       <constructor name=
"PrintDialogData" overloaded=
"yes"/> 
14035       <constructor name=
"PrintDialogData" overloaded=
"yes"> 
14036         <autodoc>__init__() -
> PrintDialogData
 
14037 __init__(PrintData printData) -
> PrintDialogData
</autodoc> 
14039           <param name=
"printData" type=
"PrintData" default=
""/> 
14042       <destructor name=
"~wxPrintDialogData" overloaded=
"no"> 
14043         <autodoc>__del__()
</autodoc> 
14045       <method name=
"GetFromPage" type=
"int" overloaded=
"no"> 
14046         <autodoc>GetFromPage() -
> int
</autodoc> 
14048       <method name=
"GetToPage" type=
"int" overloaded=
"no"> 
14049         <autodoc>GetToPage() -
> int
</autodoc> 
14051       <method name=
"GetMinPage" type=
"int" overloaded=
"no"> 
14052         <autodoc>GetMinPage() -
> int
</autodoc> 
14054       <method name=
"GetMaxPage" type=
"int" overloaded=
"no"> 
14055         <autodoc>GetMaxPage() -
> int
</autodoc> 
14057       <method name=
"GetNoCopies" type=
"int" overloaded=
"no"> 
14058         <autodoc>GetNoCopies() -
> int
</autodoc> 
14060       <method name=
"GetAllPages" type=
"bool" overloaded=
"no"> 
14061         <autodoc>GetAllPages() -
> bool
</autodoc> 
14063       <method name=
"GetSelection" type=
"bool" overloaded=
"no"> 
14064         <autodoc>GetSelection() -
> bool
</autodoc> 
14066       <method name=
"GetCollate" type=
"bool" overloaded=
"no"> 
14067         <autodoc>GetCollate() -
> bool
</autodoc> 
14069       <method name=
"GetPrintToFile" type=
"bool" overloaded=
"no"> 
14070         <autodoc>GetPrintToFile() -
> bool
</autodoc> 
14072       <method name=
"GetSetupDialog" type=
"bool" overloaded=
"no"> 
14073         <autodoc>GetSetupDialog() -
> bool
</autodoc> 
14075       <method name=
"SetFromPage" type=
"" overloaded=
"no"> 
14076         <autodoc>SetFromPage(int v)
</autodoc> 
14078           <param name=
"v" type=
"int" default=
""/> 
14081       <method name=
"SetToPage" type=
"" overloaded=
"no"> 
14082         <autodoc>SetToPage(int v)
</autodoc> 
14084           <param name=
"v" type=
"int" default=
""/> 
14087       <method name=
"SetMinPage" type=
"" overloaded=
"no"> 
14088         <autodoc>SetMinPage(int v)
</autodoc> 
14090           <param name=
"v" type=
"int" default=
""/> 
14093       <method name=
"SetMaxPage" type=
"" overloaded=
"no"> 
14094         <autodoc>SetMaxPage(int v)
</autodoc> 
14096           <param name=
"v" type=
"int" default=
""/> 
14099       <method name=
"SetNoCopies" type=
"" overloaded=
"no"> 
14100         <autodoc>SetNoCopies(int v)
</autodoc> 
14102           <param name=
"v" type=
"int" default=
""/> 
14105       <method name=
"SetAllPages" type=
"" overloaded=
"no"> 
14106         <autodoc>SetAllPages(bool flag)
</autodoc> 
14108           <param name=
"flag" type=
"bool" default=
""/> 
14111       <method name=
"SetSelection" type=
"" overloaded=
"no"> 
14112         <autodoc>SetSelection(bool flag)
</autodoc> 
14114           <param name=
"flag" type=
"bool" default=
""/> 
14117       <method name=
"SetCollate" type=
"" overloaded=
"no"> 
14118         <autodoc>SetCollate(bool flag)
</autodoc> 
14120           <param name=
"flag" type=
"bool" default=
""/> 
14123       <method name=
"SetPrintToFile" type=
"" overloaded=
"no"> 
14124         <autodoc>SetPrintToFile(bool flag)
</autodoc> 
14126           <param name=
"flag" type=
"bool" default=
""/> 
14129       <method name=
"SetSetupDialog" type=
"" overloaded=
"no"> 
14130         <autodoc>SetSetupDialog(bool flag)
</autodoc> 
14132           <param name=
"flag" type=
"bool" default=
""/> 
14135       <method name=
"EnablePrintToFile" type=
"" overloaded=
"no"> 
14136         <autodoc>EnablePrintToFile(bool flag)
</autodoc> 
14138           <param name=
"flag" type=
"bool" default=
""/> 
14141       <method name=
"EnableSelection" type=
"" overloaded=
"no"> 
14142         <autodoc>EnableSelection(bool flag)
</autodoc> 
14144           <param name=
"flag" type=
"bool" default=
""/> 
14147       <method name=
"EnablePageNumbers" type=
"" overloaded=
"no"> 
14148         <autodoc>EnablePageNumbers(bool flag)
</autodoc> 
14150           <param name=
"flag" type=
"bool" default=
""/> 
14153       <method name=
"EnableHelp" type=
"" overloaded=
"no"> 
14154         <autodoc>EnableHelp(bool flag)
</autodoc> 
14156           <param name=
"flag" type=
"bool" default=
""/> 
14159       <method name=
"GetEnablePrintToFile" type=
"bool" overloaded=
"no"> 
14160         <autodoc>GetEnablePrintToFile() -
> bool
</autodoc> 
14162       <method name=
"GetEnableSelection" type=
"bool" overloaded=
"no"> 
14163         <autodoc>GetEnableSelection() -
> bool
</autodoc> 
14165       <method name=
"GetEnablePageNumbers" type=
"bool" overloaded=
"no"> 
14166         <autodoc>GetEnablePageNumbers() -
> bool
</autodoc> 
14168       <method name=
"GetEnableHelp" type=
"bool" overloaded=
"no"> 
14169         <autodoc>GetEnableHelp() -
> bool
</autodoc> 
14171       <method name=
"Ok" type=
"bool" overloaded=
"no"> 
14172         <autodoc>Ok() -
> bool
</autodoc> 
14174       <method name=
"GetPrintData" type=
"PrintData" overloaded=
"no"> 
14175         <autodoc>GetPrintData() -
> PrintData
</autodoc> 
14177       <method name=
"SetPrintData" type=
"" overloaded=
"no"> 
14178         <autodoc>SetPrintData(PrintData printData)
</autodoc> 
14180           <param name=
"printData" type=
"PrintData" default=
""/> 
14184     <class name=
"PrintDialog" oldname=
"wxPrintDialog" module=
"windows"> 
14185       <baseclass name=
"Dialog"/> 
14186       <constructor name=
"PrintDialog" overloaded=
"no"> 
14187         <autodoc>__init__(Window parent, PrintDialogData data=None) -
> PrintDialog
</autodoc> 
14189           <param name=
"parent" type=
"Window" default=
""/> 
14190           <param name=
"data" type=
"PrintDialogData" default=
"NULL"/> 
14193       <method name=
"GetPrintDialogData" type=
"PrintDialogData" overloaded=
"no"> 
14194         <autodoc>GetPrintDialogData() -
> PrintDialogData
</autodoc> 
14196       <method name=
"GetPrintDC" type=
"DC" overloaded=
"no"> 
14197         <autodoc>GetPrintDC() -
> DC
</autodoc> 
14199       <method name=
"ShowModal" type=
"int" overloaded=
"no"> 
14200         <autodoc>ShowModal() -
> int
</autodoc> 
14203     <class name=
"Printer" oldname=
"wxPrinter" module=
"windows"> 
14204       <baseclass name=
"Object"/> 
14205       <constructor name=
"Printer" overloaded=
"no"> 
14206         <autodoc>__init__(PrintDialogData data=None) -
> Printer
</autodoc> 
14208           <param name=
"data" type=
"PrintDialogData" default=
"NULL"/> 
14211       <destructor name=
"~wxPrinter" overloaded=
"no"> 
14212         <autodoc>__del__()
</autodoc> 
14214       <method name=
"CreateAbortWindow" type=
"" overloaded=
"no"> 
14215         <autodoc>CreateAbortWindow(Window parent, Printout printout)
</autodoc> 
14217           <param name=
"parent" type=
"Window" default=
""/> 
14218           <param name=
"printout" type=
"wxPyPrintout" default=
""/> 
14221       <method name=
"GetPrintDialogData" type=
"PrintDialogData" overloaded=
"no"> 
14222         <autodoc>GetPrintDialogData() -
> PrintDialogData
</autodoc> 
14224       <method name=
"Print" type=
"bool" overloaded=
"no"> 
14225         <autodoc>Print(Window parent, Printout printout, int prompt=True) -
> bool
</autodoc> 
14227           <param name=
"parent" type=
"Window" default=
""/> 
14228           <param name=
"printout" type=
"wxPyPrintout" default=
""/> 
14229           <param name=
"prompt" type=
"int" default=
"True"/> 
14232       <method name=
"PrintDialog" type=
"DC" overloaded=
"no"> 
14233         <autodoc>PrintDialog(Window parent) -
> DC
</autodoc> 
14235           <param name=
"parent" type=
"Window" default=
""/> 
14238       <method name=
"ReportError" type=
"" overloaded=
"no"> 
14239         <autodoc>ReportError(Window parent, Printout printout, String message)
</autodoc> 
14241           <param name=
"parent" type=
"Window" default=
""/> 
14242           <param name=
"printout" type=
"wxPyPrintout" default=
""/> 
14243           <param name=
"message" type=
"String" default=
""/> 
14246       <method name=
"Setup" type=
"bool" overloaded=
"no"> 
14247         <autodoc>Setup(Window parent) -
> bool
</autodoc> 
14249           <param name=
"parent" type=
"Window" default=
""/> 
14252       <method name=
"GetAbort" type=
"bool" overloaded=
"no"> 
14253         <autodoc>GetAbort() -
> bool
</autodoc> 
14255       <staticmethod name=
"GetLastError" type=
"wxPrinterError" overloaded=
"no"> 
14256         <autodoc>GetLastError() -
> int
</autodoc> 
14259     <class name=
"Printout" oldname=
"wxPyPrintout" module=
"windows"> 
14260       <baseclass name=
"Object"/> 
14261       <constructor name=
"wxPyPrintout" overloaded=
"no"> 
14262         <autodoc>__init__(String title=PrintoutTitleStr) -
> Printout
</autodoc> 
14264           <param name=
"title" type=
"String" default=
"wxPyPrintoutTitleStr"/> 
14267       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
14268         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
14270           <param name=
"self" type=
"PyObject" default=
""/> 
14271           <param name=
"_class" type=
"PyObject" default=
""/> 
14274       <method name=
"GetTitle" type=
"String" overloaded=
"no"> 
14275         <autodoc>GetTitle() -
> String
</autodoc> 
14277       <method name=
"GetDC" type=
"DC" overloaded=
"no"> 
14278         <autodoc>GetDC() -
> DC
</autodoc> 
14280       <method name=
"SetDC" type=
"" overloaded=
"no"> 
14281         <autodoc>SetDC(DC dc)
</autodoc> 
14283           <param name=
"dc" type=
"DC" default=
""/> 
14286       <method name=
"SetPageSizePixels" type=
"" overloaded=
"no"> 
14287         <autodoc>SetPageSizePixels(int w, int h)
</autodoc> 
14289           <param name=
"w" type=
"int" default=
""/> 
14290           <param name=
"h" type=
"int" default=
""/> 
14293       <method name=
"GetPageSizePixels" type=
"" overloaded=
"no"> 
14294         <autodoc>GetPageSizePixels() -
> (w, h)
</autodoc> 
14296           <param name=
"OUTPUT" type=
"int" default=
""/> 
14297           <param name=
"OUTPUT" type=
"int" default=
""/> 
14300       <method name=
"SetPageSizeMM" type=
"" overloaded=
"no"> 
14301         <autodoc>SetPageSizeMM(int w, int h)
</autodoc> 
14303           <param name=
"w" type=
"int" default=
""/> 
14304           <param name=
"h" type=
"int" default=
""/> 
14307       <method name=
"GetPageSizeMM" type=
"" overloaded=
"no"> 
14308         <autodoc>GetPageSizeMM() -
> (w, h)
</autodoc> 
14310           <param name=
"OUTPUT" type=
"int" default=
""/> 
14311           <param name=
"OUTPUT" type=
"int" default=
""/> 
14314       <method name=
"SetPPIScreen" type=
"" overloaded=
"no"> 
14315         <autodoc>SetPPIScreen(int x, int y)
</autodoc> 
14317           <param name=
"x" type=
"int" default=
""/> 
14318           <param name=
"y" type=
"int" default=
""/> 
14321       <method name=
"GetPPIScreen" type=
"" overloaded=
"no"> 
14322         <autodoc>GetPPIScreen() -
> (x,y)
</autodoc> 
14324           <param name=
"OUTPUT" type=
"int" default=
""/> 
14325           <param name=
"OUTPUT" type=
"int" default=
""/> 
14328       <method name=
"SetPPIPrinter" type=
"" overloaded=
"no"> 
14329         <autodoc>SetPPIPrinter(int x, int y)
</autodoc> 
14331           <param name=
"x" type=
"int" default=
""/> 
14332           <param name=
"y" type=
"int" default=
""/> 
14335       <method name=
"GetPPIPrinter" type=
"" overloaded=
"no"> 
14336         <autodoc>GetPPIPrinter() -
> (x,y)
</autodoc> 
14338           <param name=
"OUTPUT" type=
"int" default=
""/> 
14339           <param name=
"OUTPUT" type=
"int" default=
""/> 
14342       <method name=
"IsPreview" type=
"bool" overloaded=
"no"> 
14343         <autodoc>IsPreview() -
> bool
</autodoc> 
14345       <method name=
"SetIsPreview" type=
"" overloaded=
"no"> 
14346         <autodoc>SetIsPreview(bool p)
</autodoc> 
14348           <param name=
"p" type=
"bool" default=
""/> 
14351       <method name=
"base_OnBeginDocument" type=
"bool" overloaded=
"no"> 
14352         <autodoc>base_OnBeginDocument(int startPage, int endPage) -
> bool
</autodoc> 
14354           <param name=
"startPage" type=
"int" default=
""/> 
14355           <param name=
"endPage" type=
"int" default=
""/> 
14358       <method name=
"base_OnEndDocument" type=
"" overloaded=
"no"> 
14359         <autodoc>base_OnEndDocument()
</autodoc> 
14361       <method name=
"base_OnBeginPrinting" type=
"" overloaded=
"no"> 
14362         <autodoc>base_OnBeginPrinting()
</autodoc> 
14364       <method name=
"base_OnEndPrinting" type=
"" overloaded=
"no"> 
14365         <autodoc>base_OnEndPrinting()
</autodoc> 
14367       <method name=
"base_OnPreparePrinting" type=
"" overloaded=
"no"> 
14368         <autodoc>base_OnPreparePrinting()
</autodoc> 
14370       <method name=
"base_HasPage" type=
"bool" overloaded=
"no"> 
14371         <autodoc>base_HasPage(int page) -
> bool
</autodoc> 
14373           <param name=
"page" type=
"int" default=
""/> 
14376       <method name=
"base_GetPageInfo" type=
"" overloaded=
"no"> 
14377         <autodoc>base_GetPageInfo() -
> (minPage, maxPage, pageFrom, pageTo)
</autodoc> 
14379           <param name=
"OUTPUT" type=
"int" default=
""/> 
14380           <param name=
"OUTPUT" type=
"int" default=
""/> 
14381           <param name=
"OUTPUT" type=
"int" default=
""/> 
14382           <param name=
"OUTPUT" type=
"int" default=
""/> 
14386     <class name=
"PreviewCanvas" oldname=
"wxPreviewCanvas" module=
"windows"> 
14387       <baseclass name=
"ScrolledWindow"/> 
14388       <constructor name=
"PreviewCanvas" overloaded=
"no"> 
14389         <autodoc>__init__(PrintPreview preview, Window parent, Point pos=DefaultPosition, 
 
14390     Size size=DefaultSize, long style=
0, 
 
14391     String name=PreviewCanvasNameStr) -
> PreviewCanvas
</autodoc> 
14393           <param name=
"preview" type=
"wxPrintPreview" default=
""/> 
14394           <param name=
"parent" type=
"Window" default=
""/> 
14395           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
14396           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
14397           <param name=
"style" type=
"long" default=
"0"/> 
14398           <param name=
"name" type=
"String" default=
"wxPyPreviewCanvasNameStr"/> 
14402     <class name=
"PreviewFrame" oldname=
"wxPreviewFrame" module=
"windows"> 
14403       <baseclass name=
"Frame"/> 
14404       <constructor name=
"PreviewFrame" overloaded=
"no"> 
14405         <autodoc>__init__(PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition, 
 
14406     Size size=DefaultSize, 
 
14407     long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -
> PreviewFrame
</autodoc> 
14409           <param name=
"preview" type=
"wxPrintPreview" default=
""/> 
14410           <param name=
"parent" type=
"Frame" default=
""/> 
14411           <param name=
"title" type=
"String" default=
""/> 
14412           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
14413           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
14414           <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/> 
14415           <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/> 
14418       <method name=
"Initialize" type=
"" overloaded=
"no"> 
14419         <autodoc>Initialize()
</autodoc> 
14421       <method name=
"CreateControlBar" type=
"" overloaded=
"no"> 
14422         <autodoc>CreateControlBar()
</autodoc> 
14424       <method name=
"CreateCanvas" type=
"" overloaded=
"no"> 
14425         <autodoc>CreateCanvas()
</autodoc> 
14427       <method name=
"GetControlBar" type=
"wxPreviewControlBar" overloaded=
"no"> 
14428         <autodoc>GetControlBar() -
> PreviewControlBar
</autodoc> 
14431     <class name=
"PreviewControlBar" oldname=
"wxPreviewControlBar" module=
"windows"> 
14432       <baseclass name=
"Panel"/> 
14433       <constructor name=
"PreviewControlBar" overloaded=
"no"> 
14434         <autodoc>__init__(PrintPreview preview, long buttons, Window parent, 
 
14435     Point pos=DefaultPosition, Size size=DefaultSize, 
 
14436     long style=TAB_TRAVERSAL, String name=PanelNameStr) -
> PreviewControlBar
</autodoc> 
14438           <param name=
"preview" type=
"wxPrintPreview" default=
""/> 
14439           <param name=
"buttons" type=
"long" default=
""/> 
14440           <param name=
"parent" type=
"Window" default=
""/> 
14441           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
14442           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
14443           <param name=
"style" type=
"long" default=
"wxTAB_TRAVERSAL"/> 
14444           <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/> 
14447       <method name=
"GetZoomControl" type=
"int" overloaded=
"no"> 
14448         <autodoc>GetZoomControl() -
> int
</autodoc> 
14450       <method name=
"SetZoomControl" type=
"" overloaded=
"no"> 
14451         <autodoc>SetZoomControl(int zoom)
</autodoc> 
14453           <param name=
"zoom" type=
"int" default=
""/> 
14456       <method name=
"GetPrintPreview" type=
"wxPrintPreview" overloaded=
"no"> 
14457         <autodoc>GetPrintPreview() -
> PrintPreview
</autodoc> 
14459       <method name=
"OnNext" type=
"" overloaded=
"no"> 
14460         <autodoc>OnNext()
</autodoc> 
14462       <method name=
"OnPrevious" type=
"" overloaded=
"no"> 
14463         <autodoc>OnPrevious()
</autodoc> 
14465       <method name=
"OnFirst" type=
"" overloaded=
"no"> 
14466         <autodoc>OnFirst()
</autodoc> 
14468       <method name=
"OnLast" type=
"" overloaded=
"no"> 
14469         <autodoc>OnLast()
</autodoc> 
14471       <method name=
"OnGoto" type=
"" overloaded=
"no"> 
14472         <autodoc>OnGoto()
</autodoc> 
14475     <class name=
"PrintPreview" oldname=
"wxPrintPreview" module=
"windows"> 
14476       <baseclass name=
"Object"/> 
14477       <constructor name=
"PrintPreview" overloaded=
"yes"> 
14479           <param name=
"printout" type=
"Printout" default=
""/> 
14480           <param name=
"printoutForPrinting" type=
"Printout" default=
""/> 
14481           <param name=
"data" type=
"PrintDialogData" default=
"NULL"/> 
14484       <constructor name=
"PrintPreview" overloaded=
"yes"> 
14485         <autodoc>__init__(Printout printout, Printout printoutForPrinting, PrintDialogData data=None) -
> PrintPreview
 
14486 __init__(Printout printout, Printout printoutForPrinting, PrintData data) -
> PrintPreview
</autodoc> 
14488           <param name=
"printout" type=
"Printout" default=
""/> 
14489           <param name=
"printoutForPrinting" type=
"Printout" default=
""/> 
14490           <param name=
"data" type=
"PrintData" default=
""/> 
14493       <method name=
"SetCurrentPage" type=
"bool" overloaded=
"no"> 
14494         <autodoc>SetCurrentPage(int pageNum) -
> bool
</autodoc> 
14496           <param name=
"pageNum" type=
"int" default=
""/> 
14499       <method name=
"GetCurrentPage" type=
"int" overloaded=
"no"> 
14500         <autodoc>GetCurrentPage() -
> int
</autodoc> 
14502       <method name=
"SetPrintout" type=
"" overloaded=
"no"> 
14503         <autodoc>SetPrintout(Printout printout)
</autodoc> 
14505           <param name=
"printout" type=
"Printout" default=
""/> 
14508       <method name=
"GetPrintout" type=
"Printout" overloaded=
"no"> 
14509         <autodoc>GetPrintout() -
> Printout
</autodoc> 
14511       <method name=
"GetPrintoutForPrinting" type=
"Printout" overloaded=
"no"> 
14512         <autodoc>GetPrintoutForPrinting() -
> Printout
</autodoc> 
14514       <method name=
"SetFrame" type=
"" overloaded=
"no"> 
14515         <autodoc>SetFrame(Frame frame)
</autodoc> 
14517           <param name=
"frame" type=
"Frame" default=
""/> 
14520       <method name=
"SetCanvas" type=
"" overloaded=
"no"> 
14521         <autodoc>SetCanvas(PreviewCanvas canvas)
</autodoc> 
14523           <param name=
"canvas" type=
"PreviewCanvas" default=
""/> 
14526       <method name=
"GetFrame" type=
"Frame" overloaded=
"no"> 
14527         <autodoc>GetFrame() -
> Frame
</autodoc> 
14529       <method name=
"GetCanvas" type=
"PreviewCanvas" overloaded=
"no"> 
14530         <autodoc>GetCanvas() -
> PreviewCanvas
</autodoc> 
14532       <method name=
"PaintPage" type=
"bool" overloaded=
"no"> 
14533         <autodoc>PaintPage(PreviewCanvas canvas, DC dc) -
> bool
</autodoc> 
14535           <param name=
"canvas" type=
"PreviewCanvas" default=
""/> 
14536           <param name=
"dc" type=
"DC" default=
""/> 
14539       <method name=
"DrawBlankPage" type=
"bool" overloaded=
"no"> 
14540         <autodoc>DrawBlankPage(PreviewCanvas canvas, DC dc) -
> bool
</autodoc> 
14542           <param name=
"canvas" type=
"PreviewCanvas" default=
""/> 
14543           <param name=
"dc" type=
"DC" default=
""/> 
14546       <method name=
"RenderPage" type=
"bool" overloaded=
"no"> 
14547         <autodoc>RenderPage(int pageNum) -
> bool
</autodoc> 
14549           <param name=
"pageNum" type=
"int" default=
""/> 
14552       <method name=
"AdjustScrollbars" type=
"" overloaded=
"no"> 
14553         <autodoc>AdjustScrollbars(PreviewCanvas canvas)
</autodoc> 
14555           <param name=
"canvas" type=
"PreviewCanvas" default=
""/> 
14558       <method name=
"GetPrintDialogData" type=
"PrintDialogData" overloaded=
"no"> 
14559         <autodoc>GetPrintDialogData() -
> PrintDialogData
</autodoc> 
14561       <method name=
"SetZoom" type=
"" overloaded=
"no"> 
14562         <autodoc>SetZoom(int percent)
</autodoc> 
14564           <param name=
"percent" type=
"int" default=
""/> 
14567       <method name=
"GetZoom" type=
"int" overloaded=
"no"> 
14568         <autodoc>GetZoom() -
> int
</autodoc> 
14570       <method name=
"GetMaxPage" type=
"int" overloaded=
"no"> 
14571         <autodoc>GetMaxPage() -
> int
</autodoc> 
14573       <method name=
"GetMinPage" type=
"int" overloaded=
"no"> 
14574         <autodoc>GetMinPage() -
> int
</autodoc> 
14576       <method name=
"Ok" type=
"bool" overloaded=
"no"> 
14577         <autodoc>Ok() -
> bool
</autodoc> 
14579       <method name=
"SetOk" type=
"" overloaded=
"no"> 
14580         <autodoc>SetOk(bool ok)
</autodoc> 
14582           <param name=
"ok" type=
"bool" default=
""/> 
14585       <method name=
"Print" type=
"bool" overloaded=
"no"> 
14586         <autodoc>Print(bool interactive) -
> bool
</autodoc> 
14588           <param name=
"interactive" type=
"bool" default=
""/> 
14591       <method name=
"DetermineScaling" type=
"" overloaded=
"no"> 
14592         <autodoc>DetermineScaling()
</autodoc> 
14595     <class name=
"PyPrintPreview" oldname=
"wxPyPrintPreview" module=
"windows"> 
14596       <baseclass name=
"PrintPreview"/> 
14597       <constructor name=
"PyPrintPreview" overloaded=
"yes"> 
14599           <param name=
"printout" type=
"Printout" default=
""/> 
14600           <param name=
"printoutForPrinting" type=
"Printout" default=
""/> 
14601           <param name=
"data" type=
"PrintDialogData" default=
"NULL"/> 
14604       <constructor name=
"PyPrintPreview" overloaded=
"yes"> 
14605         <autodoc>__init__(Printout printout, Printout printoutForPrinting, PrintDialogData data=None) -
> PyPrintPreview
 
14606 __init__(Printout printout, Printout printoutForPrinting, PrintData data) -
> PyPrintPreview
</autodoc> 
14608           <param name=
"printout" type=
"Printout" default=
""/> 
14609           <param name=
"printoutForPrinting" type=
"Printout" default=
""/> 
14610           <param name=
"data" type=
"PrintData" default=
""/> 
14613       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
14614         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
14616           <param name=
"self" type=
"PyObject" default=
""/> 
14617           <param name=
"_class" type=
"PyObject" default=
""/> 
14620       <method name=
"base_SetCurrentPage" type=
"bool" overloaded=
"no"> 
14621         <autodoc>base_SetCurrentPage(int pageNum) -
> bool
</autodoc> 
14623           <param name=
"pageNum" type=
"int" default=
""/> 
14626       <method name=
"base_PaintPage" type=
"bool" overloaded=
"no"> 
14627         <autodoc>base_PaintPage(PreviewCanvas canvas, DC dc) -
> bool
</autodoc> 
14629           <param name=
"canvas" type=
"PreviewCanvas" default=
""/> 
14630           <param name=
"dc" type=
"DC" default=
""/> 
14633       <method name=
"base_DrawBlankPage" type=
"bool" overloaded=
"no"> 
14634         <autodoc>base_DrawBlankPage(PreviewCanvas canvas, DC dc) -
> bool
</autodoc> 
14636           <param name=
"canvas" type=
"PreviewCanvas" default=
""/> 
14637           <param name=
"dc" type=
"DC" default=
""/> 
14640       <method name=
"base_RenderPage" type=
"bool" overloaded=
"no"> 
14641         <autodoc>base_RenderPage(int pageNum) -
> bool
</autodoc> 
14643           <param name=
"pageNum" type=
"int" default=
""/> 
14646       <method name=
"base_SetZoom" type=
"" overloaded=
"no"> 
14647         <autodoc>base_SetZoom(int percent)
</autodoc> 
14649           <param name=
"percent" type=
"int" default=
""/> 
14652       <method name=
"base_Print" type=
"bool" overloaded=
"no"> 
14653         <autodoc>base_Print(bool interactive) -
> bool
</autodoc> 
14655           <param name=
"interactive" type=
"bool" default=
""/> 
14658       <method name=
"base_DetermineScaling" type=
"" overloaded=
"no"> 
14659         <autodoc>base_DetermineScaling()
</autodoc> 
14662     <class name=
"PyPreviewFrame" oldname=
"wxPyPreviewFrame" module=
"windows"> 
14663       <baseclass name=
"PreviewFrame"/> 
14664       <constructor name=
"PyPreviewFrame" overloaded=
"no"> 
14665         <autodoc>__init__(PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition, 
 
14666     Size size=DefaultSize, 
 
14667     long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -
> PyPreviewFrame
</autodoc> 
14669           <param name=
"preview" type=
"PrintPreview" default=
""/> 
14670           <param name=
"parent" type=
"Frame" default=
""/> 
14671           <param name=
"title" type=
"String" default=
""/> 
14672           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
14673           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
14674           <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/> 
14675           <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/> 
14678       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
14679         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
14681           <param name=
"self" type=
"PyObject" default=
""/> 
14682           <param name=
"_class" type=
"PyObject" default=
""/> 
14685       <method name=
"SetPreviewCanvas" type=
"" overloaded=
"no"> 
14686         <autodoc>SetPreviewCanvas(PreviewCanvas canvas)
</autodoc> 
14688           <param name=
"canvas" type=
"PreviewCanvas" default=
""/> 
14691       <method name=
"SetControlBar" type=
"" overloaded=
"no"> 
14692         <autodoc>SetControlBar(PreviewControlBar bar)
</autodoc> 
14694           <param name=
"bar" type=
"PreviewControlBar" default=
""/> 
14697       <method name=
"base_Initialize" type=
"" overloaded=
"no"> 
14698         <autodoc>base_Initialize()
</autodoc> 
14700       <method name=
"base_CreateCanvas" type=
"" overloaded=
"no"> 
14701         <autodoc>base_CreateCanvas()
</autodoc> 
14703       <method name=
"base_CreateControlBar" type=
"" overloaded=
"no"> 
14704         <autodoc>base_CreateControlBar()
</autodoc> 
14707     <class name=
"PyPreviewControlBar" oldname=
"wxPyPreviewControlBar" module=
"windows"> 
14708       <baseclass name=
"PreviewControlBar"/> 
14709       <constructor name=
"PyPreviewControlBar" overloaded=
"no"> 
14710         <autodoc>__init__(PrintPreview preview, long buttons, Window parent, 
 
14711     Point pos=DefaultPosition, Size size=DefaultSize, 
 
14712     long style=
0, String name=PanelNameStr) -
> PyPreviewControlBar
</autodoc> 
14714           <param name=
"preview" type=
"PrintPreview" default=
""/> 
14715           <param name=
"buttons" type=
"long" default=
""/> 
14716           <param name=
"parent" type=
"Window" default=
""/> 
14717           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
14718           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
14719           <param name=
"style" type=
"long" default=
"0"/> 
14720           <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/> 
14723       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
14724         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
14726           <param name=
"self" type=
"PyObject" default=
""/> 
14727           <param name=
"_class" type=
"PyObject" default=
""/> 
14730       <method name=
"SetPrintPreview" type=
"" overloaded=
"no"> 
14731         <autodoc>SetPrintPreview(PrintPreview preview)
</autodoc> 
14733           <param name=
"preview" type=
"PrintPreview" default=
""/> 
14736       <method name=
"base_CreateButtons" type=
"" overloaded=
"no"> 
14737         <autodoc>base_CreateButtons()
</autodoc> 
14739       <method name=
"base_SetZoomControl" type=
"" overloaded=
"no"> 
14740         <autodoc>base_SetZoomControl(int zoom)
</autodoc> 
14742           <param name=
"zoom" type=
"int" default=
""/> 
14747   <module name=
"controls"> 
14748     <import name=
"core"/> 
14749     <pythoncode> wx = core 
</pythoncode> 
14751 #---------------------------------------------------------------------------
 
14753     <class name=
"Button" oldname=
"wxButton" module=
"controls"> 
14754       <docstring>A button is a control that contains a text string, and is one of the most
 
14755 common elements of a GUI.  It may be placed on a dialog box or panel, or
 
14756 indeed almost any other window.
</docstring> 
14759     wx.BU_LEFT:     Left-justifies the label. WIN32 only.
 
14760     wx.BU_TOP:      Aligns the label to the top of the button. WIN32 only.
 
14761     wx.BU_RIGHT:    Right-justifies the bitmap label. WIN32 only.
 
14762     wx.BU_BOTTOM:   Aligns the label to the bottom of the button. WIN32 only.
 
14763     wx.BU_EXACTFIT: Creates the button as small as possible instead of making
 
14764                     it of the standard size (which is the default behaviour.)
 
14767      EVT_BUTTON:    Sent when the button is clicked.
 
14769       <baseclass name=
"Control"/> 
14770       <constructor name=
"Button" overloaded=
"no"> 
14771         <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition, 
 
14772     Size size=DefaultSize, long style=
0, 
 
14773     Validator validator=DefaultValidator, String name=ButtonNameStr) -
> Button
</autodoc> 
14774         <docstring>Create and show a button.
</docstring> 
14776           <param name=
"parent" type=
"Window" default=
""/> 
14777           <param name=
"id" type=
"int" default=
""/> 
14778           <param name=
"label" type=
"String" default=
""/> 
14779           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
14780           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
14781           <param name=
"style" type=
"long" default=
"0"/> 
14782           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
14783           <param name=
"name" type=
"String" default=
"wxPyButtonNameStr"/> 
14786       <constructor name=
"PreButton" overloaded=
"no"> 
14787         <autodoc>PreButton() -
> Button
</autodoc> 
14788         <docstring>Precreate a Button for 
2-phase creation.
</docstring> 
14790       <method name=
"Create" type=
"bool" overloaded=
"no"> 
14791         <autodoc>Create(Window parent, int id, String label, Point pos=DefaultPosition, 
 
14792     Size size=DefaultSize, long style=
0, 
 
14793     Validator validator=DefaultValidator, String name=ButtonNameStr) -
> bool
</autodoc> 
14794         <docstring>Acutally create the GUI Button for 
2-phase creation.
</docstring> 
14796           <param name=
"parent" type=
"Window" default=
""/> 
14797           <param name=
"id" type=
"int" default=
""/> 
14798           <param name=
"label" type=
"String" default=
""/> 
14799           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
14800           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
14801           <param name=
"style" type=
"long" default=
"0"/> 
14802           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
14803           <param name=
"name" type=
"String" default=
"wxPyButtonNameStr"/> 
14806       <method name=
"SetDefault" type=
"" overloaded=
"no"> 
14807         <autodoc>SetDefault()
</autodoc> 
14808         <docstring>This sets the button to be the default item for the panel or dialog box.
</docstring> 
14810       <staticmethod name=
"GetDefaultSize" type=
"Size" overloaded=
"no"> 
14811         <autodoc>GetDefaultSize() -
> Size
</autodoc> 
14814     <class name=
"BitmapButton" oldname=
"wxBitmapButton" module=
"controls"> 
14815       <docstring>A Button that contains a bitmap.  A bitmap button can be supplied with a
 
14816 single bitmap, and wxWindows will draw all button states using this bitmap. If
 
14817 the application needs more control, additional bitmaps for the selected state,
 
14818 unpressed focused state, and greyed-out state may be supplied.
 
14822     wx.BU_AUTODRAW: If this is specified, the button will be drawn
 
14823                     automatically using the label bitmap only, providing a
 
14824                     3D-look border. If this style is not specified, the button
 
14825                     will be drawn without borders and using all provided
 
14826                     bitmaps. WIN32 only.
 
14827     wx.BU_LEFT:     Left-justifies the label. WIN32 only.
 
14828     wx.BU_TOP:      Aligns the label to the top of the button. WIN32 only.
 
14829     wx.BU_RIGHT:    Right-justifies the bitmap label. WIN32 only.
 
14830     wx.BU_BOTTOM:   Aligns the label to the bottom of the button. WIN32 only.
 
14831     wx.BU_EXACTFIT: Creates the button as small as possible instead of making
 
14832                     it of the standard size (which is the default behaviour.)
 
14835      EVT_BUTTON:    Sent when the button is clicked.
 
14837       <baseclass name=
"Button"/> 
14838       <constructor name=
"BitmapButton" overloaded=
"no"> 
14839         <autodoc>__init__(Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition, 
 
14840     Size size=DefaultSize, long style=BU_AUTODRAW, 
 
14841     Validator validator=DefaultValidator, 
 
14842     String name=ButtonNameStr) -
> BitmapButton
</autodoc> 
14843         <docstring>Create and show a button with a bitmap for the label.
</docstring> 
14845           <param name=
"parent" type=
"Window" default=
""/> 
14846           <param name=
"id" type=
"int" default=
""/> 
14847           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
14848           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
14849           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
14850           <param name=
"style" type=
"long" default=
"wxBU_AUTODRAW"/> 
14851           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
14852           <param name=
"name" type=
"String" default=
"wxPyButtonNameStr"/> 
14855       <constructor name=
"PreBitmapButton" overloaded=
"no"> 
14856         <autodoc>PreBitmapButton() -
> BitmapButton
</autodoc> 
14857         <docstring>Precreate a BitmapButton for 
2-phase creation.
</docstring> 
14859       <method name=
"Create" type=
"bool" overloaded=
"no"> 
14860         <autodoc>Create(Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition, 
 
14861     Size size=DefaultSize, long style=BU_AUTODRAW, 
 
14862     Validator validator=DefaultValidator, 
 
14863     String name=ButtonNameStr) -
> bool
</autodoc> 
14864         <docstring>Acutally create the GUI BitmapButton for 
2-phase creation.
</docstring> 
14866           <param name=
"parent" type=
"Window" default=
""/> 
14867           <param name=
"id" type=
"int" default=
""/> 
14868           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
14869           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
14870           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
14871           <param name=
"style" type=
"long" default=
"wxBU_AUTODRAW"/> 
14872           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
14873           <param name=
"name" type=
"String" default=
"wxPyButtonNameStr"/> 
14876       <method name=
"GetBitmapLabel" type=
"Bitmap" overloaded=
"no"> 
14877         <autodoc>GetBitmapLabel() -
> Bitmap
</autodoc> 
14878         <docstring>Returns the label bitmap (the one passed to the constructor).
</docstring> 
14880       <method name=
"GetBitmapDisabled" type=
"Bitmap" overloaded=
"no"> 
14881         <autodoc>GetBitmapDisabled() -
> Bitmap
</autodoc> 
14882         <docstring>Returns the bitmap for the disabled state.
</docstring> 
14884       <method name=
"GetBitmapFocus" type=
"Bitmap" overloaded=
"no"> 
14885         <autodoc>GetBitmapFocus() -
> Bitmap
</autodoc> 
14886         <docstring>Returns the bitmap for the focused state.
</docstring> 
14888       <method name=
"GetBitmapSelected" type=
"Bitmap" overloaded=
"no"> 
14889         <autodoc>GetBitmapSelected() -
> Bitmap
</autodoc> 
14890         <docstring>Returns the bitmap for the selected state.
</docstring> 
14892       <method name=
"SetBitmapDisabled" type=
"" overloaded=
"no"> 
14893         <autodoc>SetBitmapDisabled(Bitmap bitmap)
</autodoc> 
14894         <docstring>Sets the bitmap for the disabled button appearance.
</docstring> 
14896           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
14899       <method name=
"SetBitmapFocus" type=
"" overloaded=
"no"> 
14900         <autodoc>SetBitmapFocus(Bitmap bitmap)
</autodoc> 
14901         <docstring>Sets the bitmap for the button appearance when it has the keyboard focus.
</docstring> 
14903           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
14906       <method name=
"SetBitmapSelected" type=
"" overloaded=
"no"> 
14907         <autodoc>SetBitmapSelected(Bitmap bitmap)
</autodoc> 
14908         <docstring>Sets the bitmap for the selected (depressed) button appearance.
</docstring> 
14910           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
14913       <method name=
"SetBitmapLabel" type=
"" overloaded=
"no"> 
14914         <autodoc>SetBitmapLabel(Bitmap bitmap)
</autodoc> 
14915         <docstring>Sets the bitmap label for the button.  This is the bitmap used for the
 
14916 unselected state, and for all other states if no other bitmaps are provided.
</docstring> 
14918           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
14921       <method name=
"SetMargins" type=
"" overloaded=
"no"> 
14922         <autodoc>SetMargins(int x, int y)
</autodoc> 
14924           <param name=
"x" type=
"int" default=
""/> 
14925           <param name=
"y" type=
"int" default=
""/> 
14928       <method name=
"GetMarginX" type=
"int" overloaded=
"no"> 
14929         <autodoc>GetMarginX() -
> int
</autodoc> 
14931       <method name=
"GetMarginY" type=
"int" overloaded=
"no"> 
14932         <autodoc>GetMarginY() -
> int
</autodoc> 
14936 #---------------------------------------------------------------------------
 
14938     <class name=
"CheckBox" oldname=
"wxCheckBox" module=
"controls"> 
14939       <docstring>A checkbox is a labelled box which by default is either on (checkmark is
 
14940 visible) or off (no checkmark). Optionally (When the wxCHK_3STATE style flag
 
14941 is set) it can have a third state, called the mixed or undetermined
 
14942 state. Often this is used as a "Does Not Apply" state.
</docstring> 
14945     wx.CHK_2STATE:  Create a 
2-state checkbox. This is the default.
 
14946     wx.CHK_3STATE:  Create a 
3-state checkbox.
 
14947     wx.CHK_ALLOW_3RD_STATE_FOR_USER: By default a user can't set a 
3-state
 
14948                                      checkbox to the third state. It can only
 
14949                                      be done from code. Using this flags
 
14950                                      allows the user to set the checkbox to
 
14951                                      the third state by clicking.
 
14952     wx.ALIGN_RIGHT:  Makes the text appear on the left of the checkbox.
 
14955     EVT_CHECKBOX:       Sent when checkbox is clicked.
 
14957       <baseclass name=
"Control"/> 
14958       <constructor name=
"CheckBox" overloaded=
"no"> 
14959         <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition, 
 
14960     Size size=DefaultSize, long style=
0, 
 
14961     Validator validator=DefaultValidator, String name=CheckBoxNameStr) -
> CheckBox
</autodoc> 
14962         <docstring>Creates and shows a CheckBox control
</docstring> 
14964           <param name=
"parent" type=
"Window" default=
""/> 
14965           <param name=
"id" type=
"int" default=
""/> 
14966           <param name=
"label" type=
"String" default=
""/> 
14967           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
14968           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
14969           <param name=
"style" type=
"long" default=
"0"/> 
14970           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
14971           <param name=
"name" type=
"String" default=
"wxPyCheckBoxNameStr"/> 
14974       <constructor name=
"PreCheckBox" overloaded=
"no"> 
14975         <autodoc>PreCheckBox() -
> CheckBox
</autodoc> 
14976         <docstring>Precreate a CheckBox for 
2-phase creation.
</docstring> 
14978       <method name=
"Create" type=
"bool" overloaded=
"no"> 
14979         <autodoc>Create(Window parent, int id, String label, Point pos=DefaultPosition, 
 
14980     Size size=DefaultSize, long style=
0, 
 
14981     Validator validator=DefaultValidator, String name=CheckBoxNameStr) -
> bool
</autodoc> 
14982         <docstring>Actually create the GUI CheckBox for 
2-phase creation.
</docstring> 
14984           <param name=
"parent" type=
"Window" default=
""/> 
14985           <param name=
"id" type=
"int" default=
""/> 
14986           <param name=
"label" type=
"String" default=
""/> 
14987           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
14988           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
14989           <param name=
"style" type=
"long" default=
"0"/> 
14990           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
14991           <param name=
"name" type=
"String" default=
"wxPyCheckBoxNameStr"/> 
14994       <method name=
"GetValue" type=
"bool" overloaded=
"no"> 
14995         <autodoc>GetValue() -
> bool
</autodoc> 
14996         <docstring>Gets the state of a 
2-state CheckBox.  Returns True if it is checked,
 
14997 False otherwise.
</docstring> 
14999       <method name=
"IsChecked" type=
"bool" overloaded=
"no"> 
15000         <autodoc>IsChecked() -
> bool
</autodoc> 
15001         <docstring>Similar to GetValue, but raises an exception if it is not a 
2-state CheckBox.
</docstring> 
15003       <method name=
"SetValue" type=
"" overloaded=
"no"> 
15004         <autodoc>SetValue(bool state)
</autodoc> 
15005         <docstring>Set the state of a 
2-state CheckBox.  Pass True for checked,
 
15006 False for unchecked.
</docstring> 
15008           <param name=
"state" type=
"bool" default=
""/> 
15011       <method name=
"Get3StateValue" type=
"wxCheckBoxState" overloaded=
"no"> 
15012         <autodoc>Get3StateValue() -
> int
</autodoc> 
15013         <docstring>Returns wx.CHK_UNCHECKED when the CheckBox is unchecked, wx.CHK_CHECKED when
 
15014 it is checked and wx.CHK_UNDETERMINED when it's in the undetermined state.
 
15015 Raises an exceptiion when the function is used with a 
2-state CheckBox.
</docstring> 
15017       <method name=
"Set3StateValue" type=
"" overloaded=
"no"> 
15018         <autodoc>Set3StateValue(int state)
</autodoc> 
15019         <docstring>Sets the CheckBox to the given state.  The state parameter can be
 
15020 one of the following: wx.CHK_UNCHECKED (Check is off), wx.CHK_CHECKED
 
15021 (Check is on) or wx.CHK_UNDETERMINED (Check is mixed). Raises an
 
15022 exception  when the CheckBox is a 
2-state checkbox and setting the state
 
15023 to wx.CHK_UNDETERMINED.
</docstring> 
15025           <param name=
"state" type=
"wxCheckBoxState" default=
""/> 
15028       <method name=
"Is3State" type=
"bool" overloaded=
"no"> 
15029         <autodoc>Is3State() -
> bool
</autodoc> 
15030         <docstring>Returns whether or not the CheckBox is a 
3-state CheckBox.
</docstring> 
15032       <method name=
"Is3rdStateAllowedForUser" type=
"bool" overloaded=
"no"> 
15033         <autodoc>Is3rdStateAllowedForUser() -
> bool
</autodoc> 
15034         <docstring>Returns whether or not the user can set the CheckBox to the third state.
</docstring> 
15038 #---------------------------------------------------------------------------
 
15040     <class name=
"Choice" oldname=
"wxChoice" module=
"controls"> 
15041       <docstring>A Choice control is used to select one of a list of strings. Unlike a ListBox,
 
15042 only the selection is visible until the user pulls down the menu of choices.
</docstring> 
15045     EVT_CHOICE:         Sent when an item in the list is selected.
 
15047       <baseclass name=
"ControlWithItems"/> 
15048       <constructor name=
"Choice" overloaded=
"no"> 
15049         <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
 
15050     List choices=[], long style=
0, Validator validator=DefaultValidator,
 
15051     String name=ChoiceNameStr) -
> Choice
</autodoc> 
15052         <docstring>Create and show a Choice control
</docstring> 
15054           <param name=
"parent" type=
"Window" default=
""/> 
15055           <param name=
"id" type=
"int" default=
""/> 
15056           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
15057           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
15058           <param name=
"choices" type=
"wxArrayString" default=
"wxPyEmptyStringArray"/> 
15059           <param name=
"style" type=
"long" default=
"0"/> 
15060           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
15061           <param name=
"name" type=
"String" default=
"wxPyChoiceNameStr"/> 
15064       <constructor name=
"PreChoice" overloaded=
"no"> 
15065         <autodoc>PreChoice() -
> Choice
</autodoc> 
15066         <docstring>Precreate a Choice control for 
2-phase creation.
</docstring> 
15068       <method name=
"Create" type=
"bool" overloaded=
"no"> 
15069         <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
 
15070     List choices=[], long style=
0, Validator validator=DefaultValidator,
 
15071     String name=ChoiceNameStr) -
> bool
</autodoc> 
15072         <docstring>Actually create the GUI Choice control for 
2-phase creation
</docstring> 
15074           <param name=
"parent" type=
"Window" default=
""/> 
15075           <param name=
"id" type=
"int" default=
""/> 
15076           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
15077           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
15078           <param name=
"choices" type=
"wxArrayString" default=
"wxPyEmptyStringArray"/> 
15079           <param name=
"style" type=
"long" default=
"0"/> 
15080           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
15081           <param name=
"name" type=
"String" default=
"wxPyChoiceNameStr"/> 
15084       <method name=
"SetSelection" type=
"" overloaded=
"no"> 
15085         <autodoc>SetSelection(int n)
</autodoc> 
15086         <docstring>Select the n'th item (zero based) in the list.
</docstring> 
15088           <param name=
"n" type=
"int" default=
""/> 
15091       <method name=
"SetStringSelection" type=
"" overloaded=
"no"> 
15092         <autodoc>SetStringSelection(String string)
</autodoc> 
15093         <docstring>Select the item with the specifed string
</docstring> 
15095           <param name=
"string" type=
"String" default=
""/> 
15098       <method name=
"SetString" type=
"" overloaded=
"no"> 
15099         <autodoc>SetString(int n, String string)
</autodoc> 
15100         <docstring>Set the label for the n'th item (zero based) in the list.
</docstring> 
15102           <param name=
"n" type=
"int" default=
""/> 
15103           <param name=
"string" type=
"String" default=
""/> 
15108 #---------------------------------------------------------------------------
 
15110     <class name=
"ComboBox" oldname=
"wxComboBox" module=
"controls"> 
15111       <docstring>A combobox is like a combination of an edit control and a listbox. It can be
 
15112 displayed as static list with editable or read-only text field; or a drop-down
 
15113 list with text field.
</docstring> 
15116     wx.CB_SIMPLE:  Creates a combobox with a permanently displayed list.
 
15119     wx.CB_DROPDOWN:  Creates a combobox with a drop-down list.
 
15121     wx.CB_READONLY:  Same as wxCB_DROPDOWN but only the strings specified as
 
15122                         the combobox choices can be selected, it is impossible
 
15123                         to select (even from a program) a string which is not in
 
15126     wx.CB_SORT:  Sorts the entries in the list alphabetically.
 
15130     EVT_COMBOBOX:  Sent when an item on the list is selected.
 
15131     EVT_TEXT:          Sent when the combobox text changes.
 
15133       <baseclass name=
"Control"/> 
15134       <baseclass name=
"ItemContainer"/> 
15135       <constructor name=
"ComboBox" overloaded=
"no"> 
15136         <autodoc>__init__(Window parent, int id, String value=EmptyString,
 
15137     Point pos=DefaultPosition, Size size=DefaultSize,
 
15138      List choices=[], long style=
0, Validator validator=DefaultValidator,
 
15139      String name=ComboBoxNameStr) -
> ComboBox
</autodoc> 
15140         <docstring>Constructor, creates and shows a ComboBox control.
</docstring> 
15142           <param name=
"parent" type=
"Window" default=
""/> 
15143           <param name=
"id" type=
"int" default=
""/> 
15144           <param name=
"value" type=
"String" default=
"wxPyEmptyString"/> 
15145           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
15146           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
15147           <param name=
"choices" type=
"wxArrayString" default=
"wxPyEmptyStringArray"/> 
15148           <param name=
"style" type=
"long" default=
"0"/> 
15149           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
15150           <param name=
"name" type=
"String" default=
"wxPyComboBoxNameStr"/> 
15153       <constructor name=
"PreComboBox" overloaded=
"no"> 
15154         <autodoc>PreComboBox() -
> ComboBox
</autodoc> 
15155         <docstring>Precreate a ComboBox control for 
2-phase creation.
</docstring> 
15157       <method name=
"Create" type=
"bool" overloaded=
"no"> 
15158         <autodoc>Create(Window parent, int id, String value=EmptyString,
 
15159     Point pos=DefaultPosition, Size size=DefaultSize,
 
15160     List choices=[], long style=
0, Validator validator=DefaultValidator,
 
15161     String name=ChoiceNameStr) -
> bool
</autodoc> 
15162         <docstring>Actually create the GUI wxComboBox control for 
2-phase creation
</docstring> 
15164           <param name=
"parent" type=
"Window" default=
""/> 
15165           <param name=
"id" type=
"int" default=
""/> 
15166           <param name=
"value" type=
"String" default=
"wxPyEmptyString"/> 
15167           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
15168           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
15169           <param name=
"choices" type=
"wxArrayString" default=
"wxPyEmptyStringArray"/> 
15170           <param name=
"style" type=
"long" default=
"0"/> 
15171           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
15172           <param name=
"name" type=
"String" default=
"wxPyChoiceNameStr"/> 
15175       <method name=
"GetValue" type=
"String" overloaded=
"no"> 
15176         <autodoc>GetValue() -
> String
</autodoc> 
15177         <docstring>Returns the current value in the combobox text field.
</docstring> 
15179       <method name=
"SetValue" type=
"" overloaded=
"no"> 
15180         <autodoc>SetValue(String value)
</autodoc> 
15182           <param name=
"value" type=
"String" default=
""/> 
15185       <method name=
"Copy" type=
"" overloaded=
"no"> 
15186         <autodoc>Copy()
</autodoc> 
15187         <docstring>Copies the selected text to the clipboard.
</docstring> 
15189       <method name=
"Cut" type=
"" overloaded=
"no"> 
15190         <autodoc>Cut()
</autodoc> 
15191         <docstring>Copies the selected text to the clipboard and removes the selection.
</docstring> 
15193       <method name=
"Paste" type=
"" overloaded=
"no"> 
15194         <autodoc>Paste()
</autodoc> 
15195         <docstring>Pastes text from the clipboard to the text field.
</docstring> 
15197       <method name=
"SetInsertionPoint" type=
"" overloaded=
"no"> 
15198         <autodoc>SetInsertionPoint(long pos)
</autodoc> 
15199         <docstring>Sets the insertion point in the combobox text field.
</docstring> 
15201           <param name=
"pos" type=
"long" default=
""/> 
15204       <method name=
"GetInsertionPoint" type=
"long" overloaded=
"no"> 
15205         <autodoc>GetInsertionPoint() -
> long
</autodoc> 
15206         <docstring>Returns the insertion point for the combobox's text field.
</docstring> 
15208       <method name=
"GetLastPosition" type=
"long" overloaded=
"no"> 
15209         <autodoc>GetLastPosition() -
> long
</autodoc> 
15210         <docstring>Returns the last position in the combobox text field.
</docstring> 
15212       <method name=
"Replace" type=
"" overloaded=
"no"> 
15213         <autodoc>Replace(long from, long to, String value)
</autodoc> 
15214         <docstring>Replaces the text between two positions with the given text, in the
 
15215 combobox text field.
</docstring> 
15217           <param name=
"from" type=
"long" default=
""/> 
15218           <param name=
"to" type=
"long" default=
""/> 
15219           <param name=
"value" type=
"String" default=
""/> 
15222       <method name=
"SetSelection" type=
"" overloaded=
"no"> 
15223         <autodoc>SetSelection(int n)
</autodoc> 
15224         <docstring>Selects the text between the two positions, in the combobox text field.
</docstring> 
15226           <param name=
"n" type=
"int" default=
""/> 
15229       <method name=
"SetMark" type=
"" overloaded=
"no"> 
15230         <autodoc>SetMark(long from, long to)
</autodoc> 
15232           <param name=
"from" type=
"long" default=
""/> 
15233           <param name=
"to" type=
"long" default=
""/> 
15236       <method name=
"SetEditable" type=
"" overloaded=
"no"> 
15237         <autodoc>SetEditable(bool editable)
</autodoc> 
15239           <param name=
"editable" type=
"bool" default=
""/> 
15242       <method name=
"SetInsertionPointEnd" type=
"" overloaded=
"no"> 
15243         <autodoc>SetInsertionPointEnd()
</autodoc> 
15244         <docstring>Sets the insertion point at the end of the combobox text field.
</docstring> 
15246       <method name=
"Remove" type=
"" overloaded=
"no"> 
15247         <autodoc>Remove(long from, long to)
</autodoc> 
15248         <docstring>Removes the text between the two positions in the combobox text field.
</docstring> 
15250           <param name=
"from" type=
"long" default=
""/> 
15251           <param name=
"to" type=
"long" default=
""/> 
15256 #---------------------------------------------------------------------------
 
15258     <class name=
"Gauge" oldname=
"wxGauge" module=
"controls"> 
15259       <baseclass name=
"Control"/> 
15260       <constructor name=
"Gauge" overloaded=
"no"> 
15261         <autodoc>__init__(Window parent, int id, int range, Point pos=DefaultPosition, 
 
15262     Size size=DefaultSize, long style=GA_HORIZONTAL, 
 
15263     Validator validator=DefaultValidator, 
 
15264     String name=GaugeNameStr) -
> Gauge
</autodoc> 
15266           <param name=
"parent" type=
"Window" default=
""/> 
15267           <param name=
"id" type=
"int" default=
""/> 
15268           <param name=
"range" type=
"int" default=
""/> 
15269           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
15270           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
15271           <param name=
"style" type=
"long" default=
"wxGA_HORIZONTAL"/> 
15272           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
15273           <param name=
"name" type=
"String" default=
"wxPyGaugeNameStr"/> 
15276       <constructor name=
"PreGauge" overloaded=
"no"> 
15277         <autodoc>PreGauge() -
> Gauge
</autodoc> 
15279       <method name=
"Create" type=
"bool" overloaded=
"no"> 
15280         <autodoc>Create(Window parent, int id, int range, Point pos=DefaultPosition, 
 
15281     Size size=DefaultSize, long style=GA_HORIZONTAL, 
 
15282     Validator validator=DefaultValidator, 
 
15283     String name=GaugeNameStr) -
> bool
</autodoc> 
15285           <param name=
"parent" type=
"Window" default=
""/> 
15286           <param name=
"id" type=
"int" default=
""/> 
15287           <param name=
"range" type=
"int" default=
""/> 
15288           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
15289           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
15290           <param name=
"style" type=
"long" default=
"wxGA_HORIZONTAL"/> 
15291           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
15292           <param name=
"name" type=
"String" default=
"wxPyGaugeNameStr"/> 
15295       <method name=
"SetRange" type=
"" overloaded=
"no"> 
15296         <autodoc>SetRange(int range)
</autodoc> 
15298           <param name=
"range" type=
"int" default=
""/> 
15301       <method name=
"GetRange" type=
"int" overloaded=
"no"> 
15302         <autodoc>GetRange() -
> int
</autodoc> 
15304       <method name=
"SetValue" type=
"" overloaded=
"no"> 
15305         <autodoc>SetValue(int pos)
</autodoc> 
15307           <param name=
"pos" type=
"int" default=
""/> 
15310       <method name=
"GetValue" type=
"int" overloaded=
"no"> 
15311         <autodoc>GetValue() -
> int
</autodoc> 
15313       <method name=
"IsVertical" type=
"bool" overloaded=
"no"> 
15314         <autodoc>IsVertical() -
> bool
</autodoc> 
15316       <method name=
"SetShadowWidth" type=
"" overloaded=
"no"> 
15317         <autodoc>SetShadowWidth(int w)
</autodoc> 
15319           <param name=
"w" type=
"int" default=
""/> 
15322       <method name=
"GetShadowWidth" type=
"int" overloaded=
"no"> 
15323         <autodoc>GetShadowWidth() -
> int
</autodoc> 
15325       <method name=
"SetBezelFace" type=
"" overloaded=
"no"> 
15326         <autodoc>SetBezelFace(int w)
</autodoc> 
15328           <param name=
"w" type=
"int" default=
""/> 
15331       <method name=
"GetBezelFace" type=
"int" overloaded=
"no"> 
15332         <autodoc>GetBezelFace() -
> int
</autodoc> 
15336 #---------------------------------------------------------------------------
 
15338     <class name=
"StaticBox" oldname=
"wxStaticBox" module=
"controls"> 
15339       <baseclass name=
"Control"/> 
15340       <constructor name=
"StaticBox" overloaded=
"no"> 
15341         <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition, 
 
15342     Size size=DefaultSize, long style=
0, 
 
15343     String name=StaticBoxNameStr) -
> StaticBox
</autodoc> 
15345           <param name=
"parent" type=
"Window" default=
""/> 
15346           <param name=
"id" type=
"int" default=
""/> 
15347           <param name=
"label" type=
"String" default=
""/> 
15348           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
15349           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
15350           <param name=
"style" type=
"long" default=
"0"/> 
15351           <param name=
"name" type=
"String" default=
"wxPyStaticBoxNameStr"/> 
15354       <constructor name=
"PreStaticBox" overloaded=
"no"> 
15355         <autodoc>PreStaticBox() -
> StaticBox
</autodoc> 
15357       <method name=
"Create" type=
"bool" overloaded=
"no"> 
15358         <autodoc>Create(Window parent, int id, String label, Point pos=DefaultPosition, 
 
15359     Size size=DefaultSize, long style=
0, 
 
15360     String name=StaticBoxNameStr) -
> bool
</autodoc> 
15362           <param name=
"parent" type=
"Window" default=
""/> 
15363           <param name=
"id" type=
"int" default=
""/> 
15364           <param name=
"label" type=
"String" default=
""/> 
15365           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
15366           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
15367           <param name=
"style" type=
"long" default=
"0"/> 
15368           <param name=
"name" type=
"String" default=
"wxPyStaticBoxNameStr"/> 
15373 #---------------------------------------------------------------------------
 
15375     <class name=
"StaticLine" oldname=
"wxStaticLine" module=
"controls"> 
15376       <baseclass name=
"Control"/> 
15377       <constructor name=
"StaticLine" overloaded=
"no"> 
15378         <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
15379     long style=LI_HORIZONTAL, 
 
15380     String name=StaticTextNameStr) -
> StaticLine
</autodoc> 
15382           <param name=
"parent" type=
"Window" default=
""/> 
15383           <param name=
"id" type=
"int" default=
""/> 
15384           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
15385           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
15386           <param name=
"style" type=
"long" default=
"wxLI_HORIZONTAL"/> 
15387           <param name=
"name" type=
"String" default=
"wxPyStaticTextNameStr"/> 
15390       <constructor name=
"PreStaticLine" overloaded=
"no"> 
15391         <autodoc>PreStaticLine() -
> StaticLine
</autodoc> 
15393       <method name=
"Create" type=
"bool" overloaded=
"no"> 
15394         <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
15395     long style=LI_HORIZONTAL, 
 
15396     String name=StaticTextNameStr) -
> bool
</autodoc> 
15398           <param name=
"parent" type=
"Window" default=
""/> 
15399           <param name=
"id" type=
"int" default=
""/> 
15400           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
15401           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
15402           <param name=
"style" type=
"long" default=
"wxLI_HORIZONTAL"/> 
15403           <param name=
"name" type=
"String" default=
"wxPyStaticTextNameStr"/> 
15406       <method name=
"IsVertical" type=
"bool" overloaded=
"no"> 
15407         <autodoc>IsVertical() -
> bool
</autodoc> 
15409       <staticmethod name=
"GetDefaultSize" type=
"int" overloaded=
"no"> 
15410         <autodoc>GetDefaultSize() -
> int
</autodoc> 
15414 #---------------------------------------------------------------------------
 
15416     <class name=
"StaticText" oldname=
"wxStaticText" module=
"controls"> 
15417       <baseclass name=
"Control"/> 
15418       <constructor name=
"StaticText" overloaded=
"no"> 
15419         <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition, 
 
15420     Size size=DefaultSize, long style=
0, 
 
15421     String name=StaticTextNameStr) -
> StaticText
</autodoc> 
15423           <param name=
"parent" type=
"Window" default=
""/> 
15424           <param name=
"id" type=
"int" default=
""/> 
15425           <param name=
"label" type=
"String" default=
""/> 
15426           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
15427           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
15428           <param name=
"style" type=
"long" default=
"0"/> 
15429           <param name=
"name" type=
"String" default=
"wxPyStaticTextNameStr"/> 
15432       <constructor name=
"PreStaticText" overloaded=
"no"> 
15433         <autodoc>PreStaticText() -
> StaticText
</autodoc> 
15435       <method name=
"Create" type=
"bool" overloaded=
"no"> 
15436         <autodoc>Create(Window parent, int id, String label, Point pos=DefaultPosition, 
 
15437     Size size=DefaultSize, long style=
0, 
 
15438     String name=StaticTextNameStr) -
> bool
</autodoc> 
15440           <param name=
"parent" type=
"Window" default=
""/> 
15441           <param name=
"id" type=
"int" default=
""/> 
15442           <param name=
"label" type=
"String" default=
""/> 
15443           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
15444           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
15445           <param name=
"style" type=
"long" default=
"0"/> 
15446           <param name=
"name" type=
"String" default=
"wxPyStaticTextNameStr"/> 
15451 #---------------------------------------------------------------------------
 
15453     <class name=
"StaticBitmap" oldname=
"wxStaticBitmap" module=
"controls"> 
15454       <baseclass name=
"Control"/> 
15455       <constructor name=
"StaticBitmap" overloaded=
"no"> 
15456         <autodoc>__init__(Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition, 
 
15457     Size size=DefaultSize, long style=
0, 
 
15458     String name=StaticBitmapNameStr) -
> StaticBitmap
</autodoc> 
15460           <param name=
"parent" type=
"Window" default=
""/> 
15461           <param name=
"id" type=
"int" default=
""/> 
15462           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
15463           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
15464           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
15465           <param name=
"style" type=
"long" default=
"0"/> 
15466           <param name=
"name" type=
"String" default=
"wxPyStaticBitmapNameStr"/> 
15469       <constructor name=
"PreStaticBitmap" overloaded=
"no"> 
15470         <autodoc>PreStaticBitmap() -
> StaticBitmap
</autodoc> 
15472       <method name=
"Create" type=
"bool" overloaded=
"no"> 
15473         <autodoc>Create(Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition, 
 
15474     Size size=DefaultSize, long style=
0, 
 
15475     String name=StaticBitmapNameStr) -
> bool
</autodoc> 
15477           <param name=
"parent" type=
"Window" default=
""/> 
15478           <param name=
"id" type=
"int" default=
""/> 
15479           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
15480           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
15481           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
15482           <param name=
"style" type=
"long" default=
"0"/> 
15483           <param name=
"name" type=
"String" default=
"wxPyStaticBitmapNameStr"/> 
15486       <method name=
"GetBitmap" type=
"Bitmap" overloaded=
"no"> 
15487         <autodoc>GetBitmap() -
> Bitmap
</autodoc> 
15489       <method name=
"SetBitmap" type=
"" overloaded=
"no"> 
15490         <autodoc>SetBitmap(Bitmap bitmap)
</autodoc> 
15492           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
15495       <method name=
"SetIcon" type=
"" overloaded=
"no"> 
15496         <autodoc>SetIcon(Icon icon)
</autodoc> 
15498           <param name=
"icon" type=
"Icon" default=
""/> 
15503 #---------------------------------------------------------------------------
 
15505     <class name=
"ListBox" oldname=
"wxListBox" module=
"controls"> 
15506       <baseclass name=
"ControlWithItems"/> 
15507       <constructor name=
"ListBox" overloaded=
"no"> 
15508         <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
15509     wxArrayString choices=wxPyEmptyStringArray, 
 
15510     long style=
0, Validator validator=DefaultValidator, 
 
15511     String name=ListBoxNameStr) -
> ListBox
</autodoc> 
15513           <param name=
"parent" type=
"Window" default=
""/> 
15514           <param name=
"id" type=
"int" default=
""/> 
15515           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
15516           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
15517           <param name=
"choices" type=
"wxArrayString" default=
"wxPyEmptyStringArray"/> 
15518           <param name=
"style" type=
"long" default=
"0"/> 
15519           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
15520           <param name=
"name" type=
"String" default=
"wxPyListBoxNameStr"/> 
15523       <constructor name=
"PreListBox" overloaded=
"no"> 
15524         <autodoc>PreListBox() -
> ListBox
</autodoc> 
15526       <method name=
"Create" type=
"bool" overloaded=
"no"> 
15527         <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
15528     wxArrayString choices=wxPyEmptyStringArray, 
 
15529     long style=
0, Validator validator=DefaultValidator, 
 
15530     String name=ListBoxNameStr) -
> 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=
"choices" type=
"wxArrayString" default=
"wxPyEmptyStringArray"/> 
15537           <param name=
"style" type=
"long" default=
"0"/> 
15538           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
15539           <param name=
"name" type=
"String" default=
"wxPyListBoxNameStr"/> 
15542       <method name=
"Insert" type=
"" overloaded=
"no"> 
15543         <autodoc>Insert(String item, int pos, PyObject clientData=None)
</autodoc> 
15544         <docstring>Insert an item into the control before the item at the pos index,
 
15545 optionally associating some data object with the item.
</docstring> 
15547           <param name=
"item" type=
"String" default=
""/> 
15548           <param name=
"pos" type=
"int" default=
""/> 
15549           <param name=
"clientData" type=
"PyObject" default=
"NULL"/> 
15552       <method name=
"InsertItems" type=
"" overloaded=
"no"> 
15553         <autodoc>InsertItems(wxArrayString items, int pos)
</autodoc> 
15555           <param name=
"items" type=
"wxArrayString" default=
""/> 
15556           <param name=
"pos" type=
"int" default=
""/> 
15559       <method name=
"Set" type=
"" overloaded=
"no"> 
15560         <autodoc>Set(wxArrayString items)
</autodoc> 
15562           <param name=
"items" type=
"wxArrayString" default=
""/> 
15565       <method name=
"IsSelected" type=
"bool" overloaded=
"no"> 
15566         <autodoc>IsSelected(int n) -
> bool
</autodoc> 
15568           <param name=
"n" type=
"int" default=
""/> 
15571       <method name=
"SetSelection" type=
"" overloaded=
"no"> 
15572         <autodoc>SetSelection(int n, bool select=True)
</autodoc> 
15574           <param name=
"n" type=
"int" default=
""/> 
15575           <param name=
"select" type=
"bool" default=
"True"/> 
15578       <method name=
"Select" type=
"" overloaded=
"no"> 
15579         <autodoc>Select(int n)
</autodoc> 
15580         <docstring>Sets the item at index 'n' to be the selected item.
</docstring> 
15582           <param name=
"n" type=
"int" default=
""/> 
15585       <method name=
"Deselect" type=
"" overloaded=
"no"> 
15586         <autodoc>Deselect(int n)
</autodoc> 
15588           <param name=
"n" type=
"int" default=
""/> 
15591       <method name=
"DeselectAll" type=
"" overloaded=
"no"> 
15592         <autodoc>DeselectAll(int itemToLeaveSelected=-
1)
</autodoc> 
15594           <param name=
"itemToLeaveSelected" type=
"int" default=
"-1"/> 
15597       <method name=
"SetStringSelection" type=
"bool" overloaded=
"no"> 
15598         <autodoc>SetStringSelection(String s, bool select=True) -
> bool
</autodoc> 
15600           <param name=
"s" type=
"String" default=
""/> 
15601           <param name=
"select" type=
"bool" default=
"True"/> 
15604       <method name=
"GetSelections" type=
"PyObject" overloaded=
"no"> 
15605         <autodoc>GetSelections() -
> PyObject
</autodoc> 
15607       <method name=
"SetFirstItem" type=
"" overloaded=
"no"> 
15608         <autodoc>SetFirstItem(int n)
</autodoc> 
15610           <param name=
"n" type=
"int" default=
""/> 
15613       <method name=
"SetFirstItemStr" type=
"" overloaded=
"no"> 
15614         <autodoc>SetFirstItemStr(String s)
</autodoc> 
15616           <param name=
"s" type=
"String" default=
""/> 
15619       <method name=
"EnsureVisible" type=
"" overloaded=
"no"> 
15620         <autodoc>EnsureVisible(int n)
</autodoc> 
15622           <param name=
"n" type=
"int" default=
""/> 
15625       <method name=
"AppendAndEnsureVisible" type=
"" overloaded=
"no"> 
15626         <autodoc>AppendAndEnsureVisible(String s)
</autodoc> 
15628           <param name=
"s" type=
"String" default=
""/> 
15631       <method name=
"IsSorted" type=
"bool" overloaded=
"no"> 
15632         <autodoc>IsSorted() -
> bool
</autodoc> 
15634       <method name=
"SetItemForegroundColour" type=
"" overloaded=
"no"> 
15635         <autodoc>SetItemForegroundColour(int item, Colour c)
</autodoc> 
15637           <param name=
"item" type=
"int" default=
""/> 
15638           <param name=
"c" type=
"Colour" default=
""/> 
15641       <method name=
"SetItemBackgroundColour" type=
"" overloaded=
"no"> 
15642         <autodoc>SetItemBackgroundColour(int item, Colour c)
</autodoc> 
15644           <param name=
"item" type=
"int" default=
""/> 
15645           <param name=
"c" type=
"Colour" default=
""/> 
15648       <method name=
"SetItemFont" type=
"" overloaded=
"no"> 
15649         <autodoc>SetItemFont(int item, Font f)
</autodoc> 
15651           <param name=
"item" type=
"int" default=
""/> 
15652           <param name=
"f" type=
"Font" default=
""/> 
15657 #---------------------------------------------------------------------------
 
15659     <class name=
"CheckListBox" oldname=
"wxCheckListBox" module=
"controls"> 
15660       <baseclass name=
"ListBox"/> 
15661       <constructor name=
"CheckListBox" overloaded=
"no"> 
15662         <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
15663     wxArrayString choices=wxPyEmptyStringArray, 
 
15664     long style=
0, Validator validator=DefaultValidator, 
 
15665     String name=ListBoxNameStr) -
> CheckListBox
</autodoc> 
15667           <param name=
"parent" type=
"Window" default=
""/> 
15668           <param name=
"id" type=
"int" default=
""/> 
15669           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
15670           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
15671           <param name=
"choices" type=
"wxArrayString" default=
"wxPyEmptyStringArray"/> 
15672           <param name=
"style" type=
"long" default=
"0"/> 
15673           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
15674           <param name=
"name" type=
"String" default=
"wxPyListBoxNameStr"/> 
15677       <constructor name=
"PreCheckListBox" overloaded=
"no"> 
15678         <autodoc>PreCheckListBox() -
> CheckListBox
</autodoc> 
15680       <method name=
"Create" type=
"bool" overloaded=
"no"> 
15681         <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
15682     wxArrayString choices=wxPyEmptyStringArray, 
 
15683     long style=
0, Validator validator=DefaultValidator, 
 
15684     String name=ListBoxNameStr) -
> bool
</autodoc> 
15686           <param name=
"parent" type=
"Window" default=
""/> 
15687           <param name=
"id" type=
"int" default=
""/> 
15688           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
15689           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
15690           <param name=
"choices" type=
"wxArrayString" default=
"wxPyEmptyStringArray"/> 
15691           <param name=
"style" type=
"long" default=
"0"/> 
15692           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
15693           <param name=
"name" type=
"String" default=
"wxPyListBoxNameStr"/> 
15696       <method name=
"IsChecked" type=
"bool" overloaded=
"no"> 
15697         <autodoc>IsChecked(int index) -
> bool
</autodoc> 
15699           <param name=
"index" type=
"int" default=
""/> 
15702       <method name=
"Check" type=
"" overloaded=
"no"> 
15703         <autodoc>Check(int index, int check=True)
</autodoc> 
15705           <param name=
"index" type=
"int" default=
""/> 
15706           <param name=
"check" type=
"int" default=
"True"/> 
15709       <method name=
"GetItemHeight" type=
"int" overloaded=
"no"> 
15710         <autodoc>GetItemHeight() -
> int
</autodoc> 
15712       <method name=
"HitTest" type=
"int" overloaded=
"no"> 
15713         <autodoc>HitTest(Point pt) -
> int
</autodoc> 
15714         <docstring>Test where the given (in client coords) point lies
</docstring> 
15716           <param name=
"pt" type=
"Point" default=
""/> 
15719       <method name=
"HitTestXY" type=
"int" overloaded=
"no"> 
15720         <autodoc>HitTestXY(int x, int y) -
> int
</autodoc> 
15721         <docstring>Test where the given (in client coords) point lies
</docstring> 
15723           <param name=
"x" type=
"int" default=
""/> 
15724           <param name=
"y" type=
"int" default=
""/> 
15729 #---------------------------------------------------------------------------
 
15731     <class name=
"TextAttr" oldname=
"wxTextAttr" module=
"controls"> 
15732       <constructor name=
"TextAttr" overloaded=
"yes"/> 
15733       <constructor name=
"TextAttr" overloaded=
"yes"> 
15734         <autodoc>__init__() -
> TextAttr
 
15735 __init__(Colour colText, Colour colBack=wxNullColour, Font font=wxNullFont, 
 
15736     int alignment=TEXT_ALIGNMENT_DEFAULT) -
> TextAttr
</autodoc> 
15738           <param name=
"colText" type=
"Colour" default=
""/> 
15739           <param name=
"colBack" type=
"Colour" default=
"wxNullColour"/> 
15740           <param name=
"font" type=
"Font" default=
"wxNullFont"/> 
15741           <param name=
"alignment" type=
"wxTextAttrAlignment" default=
"wxTEXT_ALIGNMENT_DEFAULT"/> 
15744       <destructor name=
"~wxTextAttr" overloaded=
"no"> 
15745         <autodoc>__del__()
</autodoc> 
15747       <method name=
"Init" type=
"" overloaded=
"no"> 
15748         <autodoc>Init()
</autodoc> 
15750       <method name=
"SetTextColour" type=
"" overloaded=
"no"> 
15751         <autodoc>SetTextColour(Colour colText)
</autodoc> 
15753           <param name=
"colText" type=
"Colour" default=
""/> 
15756       <method name=
"SetBackgroundColour" type=
"" overloaded=
"no"> 
15757         <autodoc>SetBackgroundColour(Colour colBack)
</autodoc> 
15759           <param name=
"colBack" type=
"Colour" default=
""/> 
15762       <method name=
"SetFont" type=
"" overloaded=
"no"> 
15763         <autodoc>SetFont(Font font, long flags=TEXT_ATTR_FONT)
</autodoc> 
15765           <param name=
"font" type=
"Font" default=
""/> 
15766           <param name=
"flags" type=
"long" default=
"wxTEXT_ATTR_FONT"/> 
15769       <method name=
"SetAlignment" type=
"" overloaded=
"no"> 
15770         <autodoc>SetAlignment(int alignment)
</autodoc> 
15772           <param name=
"alignment" type=
"wxTextAttrAlignment" default=
""/> 
15775       <method name=
"SetTabs" type=
"" overloaded=
"no"> 
15776         <autodoc>SetTabs(wxArrayInt tabs)
</autodoc> 
15778           <param name=
"tabs" type=
"wxArrayInt" default=
""/> 
15781       <method name=
"SetLeftIndent" type=
"" overloaded=
"no"> 
15782         <autodoc>SetLeftIndent(int indent)
</autodoc> 
15784           <param name=
"indent" type=
"int" default=
""/> 
15787       <method name=
"SetRightIndent" type=
"" overloaded=
"no"> 
15788         <autodoc>SetRightIndent(int indent)
</autodoc> 
15790           <param name=
"indent" type=
"int" default=
""/> 
15793       <method name=
"SetFlags" type=
"" overloaded=
"no"> 
15794         <autodoc>SetFlags(long flags)
</autodoc> 
15796           <param name=
"flags" type=
"long" default=
""/> 
15799       <method name=
"HasTextColour" type=
"bool" overloaded=
"no"> 
15800         <autodoc>HasTextColour() -
> bool
</autodoc> 
15802       <method name=
"HasBackgroundColour" type=
"bool" overloaded=
"no"> 
15803         <autodoc>HasBackgroundColour() -
> bool
</autodoc> 
15805       <method name=
"HasFont" type=
"bool" overloaded=
"no"> 
15806         <autodoc>HasFont() -
> bool
</autodoc> 
15808       <method name=
"HasAlignment" type=
"bool" overloaded=
"no"> 
15809         <autodoc>HasAlignment() -
> bool
</autodoc> 
15811       <method name=
"HasTabs" type=
"bool" overloaded=
"no"> 
15812         <autodoc>HasTabs() -
> bool
</autodoc> 
15814       <method name=
"HasLeftIndent" type=
"bool" overloaded=
"no"> 
15815         <autodoc>HasLeftIndent() -
> bool
</autodoc> 
15817       <method name=
"HasRightIndent" type=
"bool" overloaded=
"no"> 
15818         <autodoc>HasRightIndent() -
> bool
</autodoc> 
15820       <method name=
"HasFlag" type=
"bool" overloaded=
"no"> 
15821         <autodoc>HasFlag(long flag) -
> bool
</autodoc> 
15823           <param name=
"flag" type=
"long" default=
""/> 
15826       <method name=
"GetTextColour" type=
"Colour" overloaded=
"no"> 
15827         <autodoc>GetTextColour() -
> Colour
</autodoc> 
15829       <method name=
"GetBackgroundColour" type=
"Colour" overloaded=
"no"> 
15830         <autodoc>GetBackgroundColour() -
> Colour
</autodoc> 
15832       <method name=
"GetFont" type=
"Font" overloaded=
"no"> 
15833         <autodoc>GetFont() -
> Font
</autodoc> 
15835       <method name=
"GetAlignment" type=
"wxTextAttrAlignment" overloaded=
"no"> 
15836         <autodoc>GetAlignment() -
> int
</autodoc> 
15838       <method name=
"GetTabs" type=
"wxArrayInt" overloaded=
"no"> 
15839         <autodoc>GetTabs() -
> wxArrayInt
</autodoc> 
15841       <method name=
"GetLeftIndent" type=
"long" overloaded=
"no"> 
15842         <autodoc>GetLeftIndent() -
> long
</autodoc> 
15844       <method name=
"GetRightIndent" type=
"long" overloaded=
"no"> 
15845         <autodoc>GetRightIndent() -
> long
</autodoc> 
15847       <method name=
"GetFlags" type=
"long" overloaded=
"no"> 
15848         <autodoc>GetFlags() -
> long
</autodoc> 
15850       <method name=
"IsDefault" type=
"bool" overloaded=
"no"> 
15851         <autodoc>IsDefault() -
> bool
</autodoc> 
15853       <staticmethod name=
"Combine" type=
"TextAttr" overloaded=
"no"> 
15854         <autodoc>Combine(TextAttr attr, TextAttr attrDef, TextCtrl text) -
> TextAttr
</autodoc> 
15856           <param name=
"attr" type=
"TextAttr" default=
""/> 
15857           <param name=
"attrDef" type=
"TextAttr" default=
""/> 
15858           <param name=
"text" type=
"wxTextCtrl" default=
""/> 
15862     <class name=
"TextCtrl" oldname=
"wxTextCtrl" module=
"controls"> 
15863       <baseclass name=
"Control"/> 
15864       <constructor name=
"TextCtrl" overloaded=
"no"> 
15865         <autodoc>__init__(Window parent, int id, String value=EmptyString, Point pos=DefaultPosition, 
 
15866     Size size=DefaultSize, 
 
15867     long style=
0, Validator validator=DefaultValidator, 
 
15868     String name=TextCtrlNameStr) -
> TextCtrl
</autodoc> 
15870           <param name=
"parent" type=
"Window" default=
""/> 
15871           <param name=
"id" type=
"int" default=
""/> 
15872           <param name=
"value" type=
"String" default=
"wxPyEmptyString"/> 
15873           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
15874           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
15875           <param name=
"style" type=
"long" default=
"0"/> 
15876           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
15877           <param name=
"name" type=
"String" default=
"wxPyTextCtrlNameStr"/> 
15880       <constructor name=
"PreTextCtrl" overloaded=
"no"> 
15881         <autodoc>PreTextCtrl() -
> TextCtrl
</autodoc> 
15883       <method name=
"Create" type=
"bool" overloaded=
"no"> 
15884         <autodoc>Create(Window parent, int id, String value=EmptyString, Point pos=DefaultPosition, 
 
15885     Size size=DefaultSize, 
 
15886     long style=
0, Validator validator=DefaultValidator, 
 
15887     String name=TextCtrlNameStr) -
> bool
</autodoc> 
15889           <param name=
"parent" type=
"Window" default=
""/> 
15890           <param name=
"id" type=
"int" default=
""/> 
15891           <param name=
"value" type=
"String" default=
"wxPyEmptyString"/> 
15892           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
15893           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
15894           <param name=
"style" type=
"long" default=
"0"/> 
15895           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
15896           <param name=
"name" type=
"String" default=
"wxPyTextCtrlNameStr"/> 
15899       <method name=
"GetValue" type=
"String" overloaded=
"no"> 
15900         <autodoc>GetValue() -
> String
</autodoc> 
15902       <method name=
"SetValue" type=
"" overloaded=
"no"> 
15903         <autodoc>SetValue(String value)
</autodoc> 
15905           <param name=
"value" type=
"String" default=
""/> 
15908       <method name=
"GetRange" type=
"String" overloaded=
"no"> 
15909         <autodoc>GetRange(long from, long to) -
> String
</autodoc> 
15911           <param name=
"from" type=
"long" default=
""/> 
15912           <param name=
"to" type=
"long" default=
""/> 
15915       <method name=
"GetLineLength" type=
"int" overloaded=
"no"> 
15916         <autodoc>GetLineLength(long lineNo) -
> int
</autodoc> 
15918           <param name=
"lineNo" type=
"long" default=
""/> 
15921       <method name=
"GetLineText" type=
"String" overloaded=
"no"> 
15922         <autodoc>GetLineText(long lineNo) -
> String
</autodoc> 
15924           <param name=
"lineNo" type=
"long" default=
""/> 
15927       <method name=
"GetNumberOfLines" type=
"int" overloaded=
"no"> 
15928         <autodoc>GetNumberOfLines() -
> int
</autodoc> 
15930       <method name=
"IsModified" type=
"bool" overloaded=
"no"> 
15931         <autodoc>IsModified() -
> bool
</autodoc> 
15933       <method name=
"IsEditable" type=
"bool" overloaded=
"no"> 
15934         <autodoc>IsEditable() -
> bool
</autodoc> 
15936       <method name=
"IsSingleLine" type=
"bool" overloaded=
"no"> 
15937         <autodoc>IsSingleLine() -
> bool
</autodoc> 
15939       <method name=
"IsMultiLine" type=
"bool" overloaded=
"no"> 
15940         <autodoc>IsMultiLine() -
> bool
</autodoc> 
15942       <method name=
"GetSelection" type=
"" overloaded=
"no"> 
15943         <autodoc>GetSelection() -
> (from, to)
</autodoc> 
15944         <docstring>If the return values from and to are the same, there is no selection.
</docstring> 
15946           <param name=
"OUTPUT" type=
"long" default=
""/> 
15947           <param name=
"OUTPUT" type=
"long" default=
""/> 
15950       <method name=
"GetStringSelection" type=
"String" overloaded=
"no"> 
15951         <autodoc>GetStringSelection() -
> String
</autodoc> 
15953       <method name=
"Clear" type=
"" overloaded=
"no"> 
15954         <autodoc>Clear()
</autodoc> 
15956       <method name=
"Replace" type=
"" overloaded=
"no"> 
15957         <autodoc>Replace(long from, long to, String value)
</autodoc> 
15959           <param name=
"from" type=
"long" default=
""/> 
15960           <param name=
"to" type=
"long" default=
""/> 
15961           <param name=
"value" type=
"String" default=
""/> 
15964       <method name=
"Remove" type=
"" overloaded=
"no"> 
15965         <autodoc>Remove(long from, long to)
</autodoc> 
15967           <param name=
"from" type=
"long" default=
""/> 
15968           <param name=
"to" type=
"long" default=
""/> 
15971       <method name=
"LoadFile" type=
"bool" overloaded=
"no"> 
15972         <autodoc>LoadFile(String file) -
> bool
</autodoc> 
15974           <param name=
"file" type=
"String" default=
""/> 
15977       <method name=
"SaveFile" type=
"bool" overloaded=
"no"> 
15978         <autodoc>SaveFile(String file=EmptyString) -
> bool
</autodoc> 
15980           <param name=
"file" type=
"String" default=
"wxPyEmptyString"/> 
15983       <method name=
"MarkDirty" type=
"" overloaded=
"no"> 
15984         <autodoc>MarkDirty()
</autodoc> 
15986       <method name=
"DiscardEdits" type=
"" overloaded=
"no"> 
15987         <autodoc>DiscardEdits()
</autodoc> 
15989       <method name=
"SetMaxLength" type=
"" overloaded=
"no"> 
15990         <autodoc>SetMaxLength(unsigned long len)
</autodoc> 
15992           <param name=
"len" type=
"unsigned long" default=
""/> 
15995       <method name=
"WriteText" type=
"" overloaded=
"no"> 
15996         <autodoc>WriteText(String text)
</autodoc> 
15998           <param name=
"text" type=
"String" default=
""/> 
16001       <method name=
"AppendText" type=
"" overloaded=
"no"> 
16002         <autodoc>AppendText(String text)
</autodoc> 
16004           <param name=
"text" type=
"String" default=
""/> 
16007       <method name=
"EmulateKeyPress" type=
"bool" overloaded=
"no"> 
16008         <autodoc>EmulateKeyPress(KeyEvent event) -
> bool
</autodoc> 
16010           <param name=
"event" type=
"KeyEvent" default=
""/> 
16013       <method name=
"SetStyle" type=
"bool" overloaded=
"no"> 
16014         <autodoc>SetStyle(long start, long end, TextAttr style) -
> bool
</autodoc> 
16016           <param name=
"start" type=
"long" default=
""/> 
16017           <param name=
"end" type=
"long" default=
""/> 
16018           <param name=
"style" type=
"TextAttr" default=
""/> 
16021       <method name=
"GetStyle" type=
"bool" overloaded=
"no"> 
16022         <autodoc>GetStyle(long position, TextAttr style) -
> bool
</autodoc> 
16024           <param name=
"position" type=
"long" default=
""/> 
16025           <param name=
"style" type=
"TextAttr" default=
""/> 
16028       <method name=
"SetDefaultStyle" type=
"bool" overloaded=
"no"> 
16029         <autodoc>SetDefaultStyle(TextAttr style) -
> bool
</autodoc> 
16031           <param name=
"style" type=
"TextAttr" default=
""/> 
16034       <method name=
"GetDefaultStyle" type=
"TextAttr" overloaded=
"no"> 
16035         <autodoc>GetDefaultStyle() -
> TextAttr
</autodoc> 
16037       <method name=
"XYToPosition" type=
"long" overloaded=
"no"> 
16038         <autodoc>XYToPosition(long x, long y) -
> long
</autodoc> 
16040           <param name=
"x" type=
"long" default=
""/> 
16041           <param name=
"y" type=
"long" default=
""/> 
16044       <method name=
"PositionToXY" type=
"" overloaded=
"no"> 
16045         <autodoc>PositionToXY(long pos) -
> (x, y)
</autodoc> 
16047           <param name=
"pos" type=
"long" default=
""/> 
16048           <param name=
"OUTPUT" type=
"long" default=
""/> 
16049           <param name=
"OUTPUT" type=
"long" default=
""/> 
16052       <method name=
"ShowPosition" type=
"" overloaded=
"no"> 
16053         <autodoc>ShowPosition(long pos)
</autodoc> 
16055           <param name=
"pos" type=
"long" default=
""/> 
16058       <method name=
"HitTest" type=
"wxTextCtrlHitTestResult" overloaded=
"no"> 
16059         <autodoc>HitTest(Point pt) -
> (result, row, col)
</autodoc> 
16060         <docstring>Find the character at position given in pixels.
 
16061 NB: pt is in device coords (not adjusted for the client area
 
16062 origin nor scrolling)
</docstring> 
16064           <param name=
"pt" type=
"Point" default=
""/> 
16065           <param name=
"OUTPUT" type=
"long" default=
""/> 
16066           <param name=
"OUTPUT" type=
"long" default=
""/> 
16069       <method name=
"Copy" type=
"" overloaded=
"no"> 
16070         <autodoc>Copy()
</autodoc> 
16072       <method name=
"Cut" type=
"" overloaded=
"no"> 
16073         <autodoc>Cut()
</autodoc> 
16075       <method name=
"Paste" type=
"" overloaded=
"no"> 
16076         <autodoc>Paste()
</autodoc> 
16078       <method name=
"CanCopy" type=
"bool" overloaded=
"no"> 
16079         <autodoc>CanCopy() -
> bool
</autodoc> 
16081       <method name=
"CanCut" type=
"bool" overloaded=
"no"> 
16082         <autodoc>CanCut() -
> bool
</autodoc> 
16084       <method name=
"CanPaste" type=
"bool" overloaded=
"no"> 
16085         <autodoc>CanPaste() -
> bool
</autodoc> 
16087       <method name=
"Undo" type=
"" overloaded=
"no"> 
16088         <autodoc>Undo()
</autodoc> 
16090       <method name=
"Redo" type=
"" overloaded=
"no"> 
16091         <autodoc>Redo()
</autodoc> 
16093       <method name=
"CanUndo" type=
"bool" overloaded=
"no"> 
16094         <autodoc>CanUndo() -
> bool
</autodoc> 
16096       <method name=
"CanRedo" type=
"bool" overloaded=
"no"> 
16097         <autodoc>CanRedo() -
> bool
</autodoc> 
16099       <method name=
"SetInsertionPoint" type=
"" overloaded=
"no"> 
16100         <autodoc>SetInsertionPoint(long pos)
</autodoc> 
16102           <param name=
"pos" type=
"long" default=
""/> 
16105       <method name=
"SetInsertionPointEnd" type=
"" overloaded=
"no"> 
16106         <autodoc>SetInsertionPointEnd()
</autodoc> 
16108       <method name=
"GetInsertionPoint" type=
"long" overloaded=
"no"> 
16109         <autodoc>GetInsertionPoint() -
> long
</autodoc> 
16111       <method name=
"GetLastPosition" type=
"long" overloaded=
"no"> 
16112         <autodoc>GetLastPosition() -
> long
</autodoc> 
16114       <method name=
"SetSelection" type=
"" overloaded=
"no"> 
16115         <autodoc>SetSelection(long from, long to)
</autodoc> 
16117           <param name=
"from" type=
"long" default=
""/> 
16118           <param name=
"to" type=
"long" default=
""/> 
16121       <method name=
"SelectAll" type=
"" overloaded=
"no"> 
16122         <autodoc>SelectAll()
</autodoc> 
16124       <method name=
"SetEditable" type=
"" overloaded=
"no"> 
16125         <autodoc>SetEditable(bool editable)
</autodoc> 
16127           <param name=
"editable" type=
"bool" default=
""/> 
16130       <method name=
"write" type=
"" overloaded=
"no"> 
16131         <autodoc>write(String text)
</autodoc> 
16133           <param name=
"text" type=
"String" default=
""/> 
16136       <method name=
"GetString" type=
"String" overloaded=
"no"> 
16137         <autodoc>GetString(long from, long to) -
> String
</autodoc> 
16139           <param name=
"from" type=
"long" default=
""/> 
16140           <param name=
"to" type=
"long" default=
""/> 
16144     <class name=
"TextUrlEvent" oldname=
"wxTextUrlEvent" module=
"controls"> 
16145       <baseclass name=
"CommandEvent"/> 
16146       <constructor name=
"TextUrlEvent" overloaded=
"no"> 
16147         <autodoc>__init__(int winid, MouseEvent evtMouse, long start, long end) -
> TextUrlEvent
</autodoc> 
16149           <param name=
"winid" type=
"int" default=
""/> 
16150           <param name=
"evtMouse" type=
"MouseEvent" default=
""/> 
16151           <param name=
"start" type=
"long" default=
""/> 
16152           <param name=
"end" type=
"long" default=
""/> 
16155       <method name=
"GetMouseEvent" type=
"MouseEvent" overloaded=
"no"> 
16156         <autodoc>GetMouseEvent() -
> MouseEvent
</autodoc> 
16158       <method name=
"GetURLStart" type=
"long" overloaded=
"no"> 
16159         <autodoc>GetURLStart() -
> long
</autodoc> 
16161       <method name=
"GetURLEnd" type=
"long" overloaded=
"no"> 
16162         <autodoc>GetURLEnd() -
> long
</autodoc> 
16166 EVT_TEXT        = wx.PyEventBinder( wxEVT_COMMAND_TEXT_UPDATED, 
1)
 
16167 EVT_TEXT_ENTER  = wx.PyEventBinder( wxEVT_COMMAND_TEXT_ENTER, 
1)
 
16168 EVT_TEXT_URL    = wx.PyEventBinder( wxEVT_COMMAND_TEXT_URL, 
1) 
 
16169 EVT_TEXT_MAXLEN = wx.PyEventBinder( wxEVT_COMMAND_TEXT_MAXLEN, 
1)
 
16172 #---------------------------------------------------------------------------
 
16174     <class name=
"ScrollBar" oldname=
"wxScrollBar" module=
"controls"> 
16175       <baseclass name=
"Control"/> 
16176       <constructor name=
"ScrollBar" overloaded=
"no"> 
16177         <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
16178     Size size=DefaultSize, long style=SB_HORIZONTAL, 
 
16179     Validator validator=DefaultValidator, String name=ScrollBarNameStr) -
> ScrollBar
</autodoc> 
16181           <param name=
"parent" type=
"Window" default=
""/> 
16182           <param name=
"id" type=
"int" default=
"-1"/> 
16183           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
16184           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
16185           <param name=
"style" type=
"long" default=
"wxSB_HORIZONTAL"/> 
16186           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
16187           <param name=
"name" type=
"String" default=
"wxPyScrollBarNameStr"/> 
16190       <constructor name=
"PreScrollBar" overloaded=
"no"> 
16191         <autodoc>PreScrollBar() -
> ScrollBar
</autodoc> 
16193       <method name=
"Create" type=
"bool" overloaded=
"no"> 
16194         <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
16195     Size size=DefaultSize, long style=SB_HORIZONTAL, 
 
16196     Validator validator=DefaultValidator, String name=ScrollBarNameStr) -
> bool
</autodoc> 
16197         <docstring>Do the 
2nd phase and create the GUI control.
</docstring> 
16199           <param name=
"parent" type=
"Window" default=
""/> 
16200           <param name=
"id" type=
"int" default=
"-1"/> 
16201           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
16202           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
16203           <param name=
"style" type=
"long" default=
"wxSB_HORIZONTAL"/> 
16204           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
16205           <param name=
"name" type=
"String" default=
"wxPyScrollBarNameStr"/> 
16208       <method name=
"GetThumbPosition" type=
"int" overloaded=
"no"> 
16209         <autodoc>GetThumbPosition() -
> int
</autodoc> 
16211       <method name=
"GetThumbSize" type=
"int" overloaded=
"no"> 
16212         <autodoc>GetThumbSize() -
> int
</autodoc> 
16214       <method name=
"GetPageSize" type=
"int" overloaded=
"no"> 
16215         <autodoc>GetPageSize() -
> int
</autodoc> 
16217       <method name=
"GetRange" type=
"int" overloaded=
"no"> 
16218         <autodoc>GetRange() -
> int
</autodoc> 
16220       <method name=
"IsVertical" type=
"bool" overloaded=
"no"> 
16221         <autodoc>IsVertical() -
> bool
</autodoc> 
16223       <method name=
"SetThumbPosition" type=
"" overloaded=
"no"> 
16224         <autodoc>SetThumbPosition(int viewStart)
</autodoc> 
16226           <param name=
"viewStart" type=
"int" default=
""/> 
16229       <method name=
"SetScrollbar" type=
"" overloaded=
"no"> 
16230         <autodoc>SetScrollbar(int position, int thumbSize, int range, int pageSize, 
 
16231     bool refresh=True)
</autodoc> 
16232         <docstring>Sets the scrollbar properties of a built-in scrollbar.
 
16234     orientation: Determines the scrollbar whose page size is to be
 
16235                  set. May be wx.HORIZONTAL or wx.VERTICAL.
 
16237     position:    The position of the scrollbar in scroll units.
 
16239     thumbSize:   The size of the thumb, or visible portion of the
 
16240                  scrollbar, in scroll units.
 
16242     range:       The maximum position of the scrollbar.
 
16244     refresh:     True to redraw the scrollbar, false otherwise.
</docstring> 
16246           <param name=
"position" type=
"int" default=
""/> 
16247           <param name=
"thumbSize" type=
"int" default=
""/> 
16248           <param name=
"range" type=
"int" default=
""/> 
16249           <param name=
"pageSize" type=
"int" default=
""/> 
16250           <param name=
"refresh" type=
"bool" default=
"True"/> 
16255 #---------------------------------------------------------------------------
 
16257     <class name=
"SpinButton" oldname=
"wxSpinButton" module=
"controls"> 
16258       <baseclass name=
"Control"/> 
16259       <constructor name=
"SpinButton" overloaded=
"no"> 
16260         <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
16261     Size size=DefaultSize, long style=SP_HORIZONTAL, 
 
16262     String name=SPIN_BUTTON_NAME) -
> SpinButton
</autodoc> 
16264           <param name=
"parent" type=
"Window" default=
""/> 
16265           <param name=
"id" type=
"int" default=
"-1"/> 
16266           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
16267           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
16268           <param name=
"style" type=
"long" default=
"wxSP_HORIZONTAL"/> 
16269           <param name=
"name" type=
"String" default=
"wxPySPIN_BUTTON_NAME"/> 
16272       <constructor name=
"PreSpinButton" overloaded=
"no"> 
16273         <autodoc>PreSpinButton() -
> SpinButton
</autodoc> 
16275       <method name=
"Create" type=
"bool" overloaded=
"no"> 
16276         <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
16277     Size size=DefaultSize, long style=SP_HORIZONTAL, 
 
16278     String name=SPIN_BUTTON_NAME) -
> bool
</autodoc> 
16280           <param name=
"parent" type=
"Window" default=
""/> 
16281           <param name=
"id" type=
"int" default=
"-1"/> 
16282           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
16283           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
16284           <param name=
"style" type=
"long" default=
"wxSP_HORIZONTAL"/> 
16285           <param name=
"name" type=
"String" default=
"wxPySPIN_BUTTON_NAME"/> 
16288       <method name=
"GetValue" type=
"int" overloaded=
"no"> 
16289         <autodoc>GetValue() -
> int
</autodoc> 
16291       <method name=
"GetMin" type=
"int" overloaded=
"no"> 
16292         <autodoc>GetMin() -
> int
</autodoc> 
16294       <method name=
"GetMax" type=
"int" overloaded=
"no"> 
16295         <autodoc>GetMax() -
> int
</autodoc> 
16297       <method name=
"SetValue" type=
"" overloaded=
"no"> 
16298         <autodoc>SetValue(int val)
</autodoc> 
16300           <param name=
"val" type=
"int" default=
""/> 
16303       <method name=
"SetMin" type=
"" overloaded=
"no"> 
16304         <autodoc>SetMin(int minVal)
</autodoc> 
16306           <param name=
"minVal" type=
"int" default=
""/> 
16309       <method name=
"SetMax" type=
"" overloaded=
"no"> 
16310         <autodoc>SetMax(int maxVal)
</autodoc> 
16312           <param name=
"maxVal" type=
"int" default=
""/> 
16315       <method name=
"SetRange" type=
"" overloaded=
"no"> 
16316         <autodoc>SetRange(int minVal, int maxVal)
</autodoc> 
16318           <param name=
"minVal" type=
"int" default=
""/> 
16319           <param name=
"maxVal" type=
"int" default=
""/> 
16322       <method name=
"IsVertical" type=
"bool" overloaded=
"no"> 
16323         <autodoc>IsVertical() -
> bool
</autodoc> 
16326     <class name=
"SpinCtrl" oldname=
"wxSpinCtrl" module=
"controls"> 
16327       <baseclass name=
"Control"/> 
16328       <constructor name=
"SpinCtrl" overloaded=
"no"> 
16329         <autodoc>__init__(Window parent, int id=-
1, String value=EmptyString, 
 
16330     Point pos=DefaultPosition, Size size=DefaultSize, 
 
16331     long style=SP_ARROW_KEYS, int min=
0, int max=
100, 
 
16332     int initial=
0, String name=SpinCtrlNameStr) -
> SpinCtrl
</autodoc> 
16334           <param name=
"parent" type=
"Window" default=
""/> 
16335           <param name=
"id" type=
"int" default=
"-1"/> 
16336           <param name=
"value" type=
"String" default=
"wxPyEmptyString"/> 
16337           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
16338           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
16339           <param name=
"style" type=
"long" default=
"wxSP_ARROW_KEYS"/> 
16340           <param name=
"min" type=
"int" default=
"0"/> 
16341           <param name=
"max" type=
"int" default=
"100"/> 
16342           <param name=
"initial" type=
"int" default=
"0"/> 
16343           <param name=
"name" type=
"String" default=
"wxPySpinCtrlNameStr"/> 
16346       <constructor name=
"PreSpinCtrl" overloaded=
"no"> 
16347         <autodoc>PreSpinCtrl() -
> SpinCtrl
</autodoc> 
16349       <method name=
"Create" type=
"bool" overloaded=
"no"> 
16350         <autodoc>Create(Window parent, int id=-
1, String value=EmptyString, 
 
16351     Point pos=DefaultPosition, Size size=DefaultSize, 
 
16352     long style=SP_ARROW_KEYS, int min=
0, int max=
100, 
 
16353     int initial=
0, String name=SpinCtrlNameStr) -
> bool
</autodoc> 
16355           <param name=
"parent" type=
"Window" default=
""/> 
16356           <param name=
"id" type=
"int" default=
"-1"/> 
16357           <param name=
"value" type=
"String" default=
"wxPyEmptyString"/> 
16358           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
16359           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
16360           <param name=
"style" type=
"long" default=
"wxSP_ARROW_KEYS"/> 
16361           <param name=
"min" type=
"int" default=
"0"/> 
16362           <param name=
"max" type=
"int" default=
"100"/> 
16363           <param name=
"initial" type=
"int" default=
"0"/> 
16364           <param name=
"name" type=
"String" default=
"wxPySpinCtrlNameStr"/> 
16367       <method name=
"GetValue" type=
"int" overloaded=
"no"> 
16368         <autodoc>GetValue() -
> int
</autodoc> 
16370       <method name=
"SetValue" type=
"" overloaded=
"no"> 
16371         <autodoc>SetValue(int value)
</autodoc> 
16373           <param name=
"value" type=
"int" default=
""/> 
16376       <method name=
"SetValueString" type=
"" overloaded=
"no"> 
16377         <autodoc>SetValueString(String text)
</autodoc> 
16379           <param name=
"text" type=
"String" default=
""/> 
16382       <method name=
"SetRange" type=
"" overloaded=
"no"> 
16383         <autodoc>SetRange(int minVal, int maxVal)
</autodoc> 
16385           <param name=
"minVal" type=
"int" default=
""/> 
16386           <param name=
"maxVal" type=
"int" default=
""/> 
16389       <method name=
"GetMin" type=
"int" overloaded=
"no"> 
16390         <autodoc>GetMin() -
> int
</autodoc> 
16392       <method name=
"GetMax" type=
"int" overloaded=
"no"> 
16393         <autodoc>GetMax() -
> int
</autodoc> 
16395       <method name=
"SetSelection" type=
"" overloaded=
"no"> 
16396         <autodoc>SetSelection(long from, long to)
</autodoc> 
16398           <param name=
"from" type=
"long" default=
""/> 
16399           <param name=
"to" type=
"long" default=
""/> 
16403     <class name=
"SpinEvent" oldname=
"wxSpinEvent" module=
"controls"> 
16404       <baseclass name=
"NotifyEvent"/> 
16405       <constructor name=
"SpinEvent" overloaded=
"no"> 
16406         <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int winid=
0) -
> SpinEvent
</autodoc> 
16408           <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/> 
16409           <param name=
"winid" type=
"int" default=
"0"/> 
16412       <method name=
"GetPosition" type=
"int" overloaded=
"no"> 
16413         <autodoc>GetPosition() -
> int
</autodoc> 
16415       <method name=
"SetPosition" type=
"" overloaded=
"no"> 
16416         <autodoc>SetPosition(int pos)
</autodoc> 
16418           <param name=
"pos" type=
"int" default=
""/> 
16423 EVT_SPIN_UP   = wx.PyEventBinder( wx.wxEVT_SCROLL_LINEUP, 
1)
 
16424 EVT_SPIN_DOWN = wx.PyEventBinder( wx.wxEVT_SCROLL_LINEDOWN, 
1)
 
16425 EVT_SPIN      = wx.PyEventBinder( wx.wxEVT_SCROLL_THUMBTRACK, 
1)
 
16426 EVT_SPINCTRL  = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED, 
1)
 
16429 #---------------------------------------------------------------------------
 
16431     <class name=
"RadioBox" oldname=
"wxRadioBox" module=
"controls"> 
16432       <baseclass name=
"Control"/> 
16433       <constructor name=
"RadioBox" overloaded=
"no"> 
16434         <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition, 
 
16435     Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray, 
 
16436     int majorDimension=
0, 
 
16437     long style=RA_HORIZONTAL, Validator validator=DefaultValidator, 
 
16438     String name=RadioBoxNameStr) -
> RadioBox
</autodoc> 
16440           <param name=
"parent" type=
"Window" default=
""/> 
16441           <param name=
"id" type=
"int" default=
""/> 
16442           <param name=
"label" type=
"String" default=
""/> 
16443           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
16444           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
16445           <param name=
"choices" type=
"wxArrayString" default=
"wxPyEmptyStringArray"/> 
16446           <param name=
"majorDimension" type=
"int" default=
"0"/> 
16447           <param name=
"style" type=
"long" default=
"wxRA_HORIZONTAL"/> 
16448           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
16449           <param name=
"name" type=
"String" default=
"wxPyRadioBoxNameStr"/> 
16452       <constructor name=
"PreRadioBox" overloaded=
"no"> 
16453         <autodoc>PreRadioBox() -
> RadioBox
</autodoc> 
16455       <method name=
"Create" type=
"bool" overloaded=
"no"> 
16456         <autodoc>Create(Window parent, int id, String label, Point pos=DefaultPosition, 
 
16457     Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray, 
 
16458     int majorDimension=
0, 
 
16459     long style=RA_HORIZONTAL, Validator validator=DefaultValidator, 
 
16460     String name=RadioBoxNameStr) -
> bool
</autodoc> 
16462           <param name=
"parent" type=
"Window" default=
""/> 
16463           <param name=
"id" type=
"int" default=
""/> 
16464           <param name=
"label" type=
"String" default=
""/> 
16465           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
16466           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
16467           <param name=
"choices" type=
"wxArrayString" default=
"wxPyEmptyStringArray"/> 
16468           <param name=
"majorDimension" type=
"int" default=
"0"/> 
16469           <param name=
"style" type=
"long" default=
"wxRA_HORIZONTAL"/> 
16470           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
16471           <param name=
"name" type=
"String" default=
"wxPyRadioBoxNameStr"/> 
16474       <method name=
"SetSelection" type=
"" overloaded=
"no"> 
16475         <autodoc>SetSelection(int n)
</autodoc> 
16477           <param name=
"n" type=
"int" default=
""/> 
16480       <method name=
"GetSelection" type=
"int" overloaded=
"no"> 
16481         <autodoc>GetSelection() -
> int
</autodoc> 
16483       <method name=
"GetStringSelection" type=
"String" overloaded=
"no"> 
16484         <autodoc>GetStringSelection() -
> String
</autodoc> 
16486       <method name=
"SetStringSelection" type=
"bool" overloaded=
"no"> 
16487         <autodoc>SetStringSelection(String s) -
> bool
</autodoc> 
16489           <param name=
"s" type=
"String" default=
""/> 
16492       <method name=
"GetCount" type=
"int" overloaded=
"no"> 
16493         <autodoc>GetCount() -
> int
</autodoc> 
16495       <method name=
"FindString" type=
"int" overloaded=
"no"> 
16496         <autodoc>FindString(String s) -
> int
</autodoc> 
16498           <param name=
"s" type=
"String" default=
""/> 
16501       <method name=
"GetString" type=
"String" overloaded=
"no"> 
16502         <autodoc>GetString(int n) -
> String
</autodoc> 
16504           <param name=
"n" type=
"int" default=
""/> 
16507       <method name=
"SetString" type=
"" overloaded=
"no"> 
16508         <autodoc>SetString(int n, String label)
</autodoc> 
16510           <param name=
"n" type=
"int" default=
""/> 
16511           <param name=
"label" type=
"String" default=
""/> 
16514       <method name=
"EnableItem" type=
"" overloaded=
"no"> 
16515         <autodoc>EnableItem(int n, bool enable=True)
</autodoc> 
16517           <param name=
"n" type=
"int" default=
""/> 
16518           <param name=
"enable" type=
"bool" default=
"True"/> 
16521       <method name=
"ShowItem" type=
"" overloaded=
"no"> 
16522         <autodoc>ShowItem(int n, bool show=True)
</autodoc> 
16524           <param name=
"n" type=
"int" default=
""/> 
16525           <param name=
"show" type=
"bool" default=
"True"/> 
16528       <method name=
"GetColumnCount" type=
"int" overloaded=
"no"> 
16529         <autodoc>GetColumnCount() -
> int
</autodoc> 
16531       <method name=
"GetRowCount" type=
"int" overloaded=
"no"> 
16532         <autodoc>GetRowCount() -
> int
</autodoc> 
16534       <method name=
"GetNextItem" type=
"int" overloaded=
"no"> 
16535         <autodoc>GetNextItem(int item, int dir, long style) -
> int
</autodoc> 
16537           <param name=
"item" type=
"int" default=
""/> 
16538           <param name=
"dir" type=
"wxDirection" default=
""/> 
16539           <param name=
"style" type=
"long" default=
""/> 
16544 #---------------------------------------------------------------------------
 
16546     <class name=
"RadioButton" oldname=
"wxRadioButton" module=
"controls"> 
16547       <baseclass name=
"Control"/> 
16548       <constructor name=
"RadioButton" overloaded=
"no"> 
16549         <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition, 
 
16550     Size size=DefaultSize, long style=
0, 
 
16551     Validator validator=DefaultValidator, String name=RadioButtonNameStr) -
> RadioButton
</autodoc> 
16553           <param name=
"parent" type=
"Window" default=
""/> 
16554           <param name=
"id" type=
"int" default=
""/> 
16555           <param name=
"label" type=
"String" default=
""/> 
16556           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
16557           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
16558           <param name=
"style" type=
"long" default=
"0"/> 
16559           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
16560           <param name=
"name" type=
"String" default=
"wxPyRadioButtonNameStr"/> 
16563       <constructor name=
"PreRadioButton" overloaded=
"no"> 
16564         <autodoc>PreRadioButton() -
> RadioButton
</autodoc> 
16566       <method name=
"Create" type=
"bool" overloaded=
"no"> 
16567         <autodoc>Create(Window parent, int id, String label, Point pos=DefaultPosition, 
 
16568     Size size=DefaultSize, long style=
0, 
 
16569     Validator validator=DefaultValidator, String name=RadioButtonNameStr) -
> bool
</autodoc> 
16571           <param name=
"parent" type=
"Window" default=
""/> 
16572           <param name=
"id" type=
"int" default=
""/> 
16573           <param name=
"label" type=
"String" default=
""/> 
16574           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
16575           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
16576           <param name=
"style" type=
"long" default=
"0"/> 
16577           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
16578           <param name=
"name" type=
"String" default=
"wxPyRadioButtonNameStr"/> 
16581       <method name=
"GetValue" type=
"bool" overloaded=
"no"> 
16582         <autodoc>GetValue() -
> bool
</autodoc> 
16584       <method name=
"SetValue" type=
"" overloaded=
"no"> 
16585         <autodoc>SetValue(bool value)
</autodoc> 
16587           <param name=
"value" type=
"bool" default=
""/> 
16592 #---------------------------------------------------------------------------
 
16594     <class name=
"Slider" oldname=
"wxSlider" module=
"controls"> 
16595       <baseclass name=
"Control"/> 
16596       <constructor name=
"Slider" overloaded=
"no"> 
16597         <autodoc>__init__(Window parent, int id, int value, int minValue, int maxValue, 
 
16598     Point pos=DefaultPosition, Size size=DefaultSize, 
 
16599     long style=SL_HORIZONTAL, Validator validator=DefaultValidator, 
 
16600     String name=SliderNameStr) -
> Slider
</autodoc> 
16602           <param name=
"parent" type=
"Window" default=
""/> 
16603           <param name=
"id" type=
"int" default=
""/> 
16604           <param name=
"value" type=
"int" default=
""/> 
16605           <param name=
"minValue" type=
"int" default=
""/> 
16606           <param name=
"maxValue" type=
"int" default=
""/> 
16607           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
16608           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
16609           <param name=
"style" type=
"long" default=
"wxSL_HORIZONTAL"/> 
16610           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
16611           <param name=
"name" type=
"String" default=
"wxPySliderNameStr"/> 
16614       <constructor name=
"PreSlider" overloaded=
"no"> 
16615         <autodoc>PreSlider() -
> Slider
</autodoc> 
16617       <method name=
"Create" type=
"bool" overloaded=
"no"> 
16618         <autodoc>Create(Window parent, int id, int value, int minValue, int maxValue, 
 
16619     Point pos=DefaultPosition, Size size=DefaultSize, 
 
16620     long style=SL_HORIZONTAL, Validator validator=DefaultValidator, 
 
16621     String name=SliderNameStr) -
> bool
</autodoc> 
16623           <param name=
"parent" type=
"Window" default=
""/> 
16624           <param name=
"id" type=
"int" default=
""/> 
16625           <param name=
"value" type=
"int" default=
""/> 
16626           <param name=
"minValue" type=
"int" default=
""/> 
16627           <param name=
"maxValue" type=
"int" default=
""/> 
16628           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
16629           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
16630           <param name=
"style" type=
"long" default=
"wxSL_HORIZONTAL"/> 
16631           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
16632           <param name=
"name" type=
"String" default=
"wxPySliderNameStr"/> 
16635       <method name=
"GetValue" type=
"int" overloaded=
"no"> 
16636         <autodoc>GetValue() -
> int
</autodoc> 
16638       <method name=
"SetValue" type=
"" overloaded=
"no"> 
16639         <autodoc>SetValue(int value)
</autodoc> 
16641           <param name=
"value" type=
"int" default=
""/> 
16644       <method name=
"SetRange" type=
"" overloaded=
"no"> 
16645         <autodoc>SetRange(int minValue, int maxValue)
</autodoc> 
16647           <param name=
"minValue" type=
"int" default=
""/> 
16648           <param name=
"maxValue" type=
"int" default=
""/> 
16651       <method name=
"GetMin" type=
"int" overloaded=
"no"> 
16652         <autodoc>GetMin() -
> int
</autodoc> 
16654       <method name=
"GetMax" type=
"int" overloaded=
"no"> 
16655         <autodoc>GetMax() -
> int
</autodoc> 
16657       <method name=
"SetMin" type=
"" overloaded=
"no"> 
16658         <autodoc>SetMin(int minValue)
</autodoc> 
16660           <param name=
"minValue" type=
"int" default=
""/> 
16663       <method name=
"SetMax" type=
"" overloaded=
"no"> 
16664         <autodoc>SetMax(int maxValue)
</autodoc> 
16666           <param name=
"maxValue" type=
"int" default=
""/> 
16669       <method name=
"SetLineSize" type=
"" overloaded=
"no"> 
16670         <autodoc>SetLineSize(int lineSize)
</autodoc> 
16672           <param name=
"lineSize" type=
"int" default=
""/> 
16675       <method name=
"SetPageSize" type=
"" overloaded=
"no"> 
16676         <autodoc>SetPageSize(int pageSize)
</autodoc> 
16678           <param name=
"pageSize" type=
"int" default=
""/> 
16681       <method name=
"GetLineSize" type=
"int" overloaded=
"no"> 
16682         <autodoc>GetLineSize() -
> int
</autodoc> 
16684       <method name=
"GetPageSize" type=
"int" overloaded=
"no"> 
16685         <autodoc>GetPageSize() -
> int
</autodoc> 
16687       <method name=
"SetThumbLength" type=
"" overloaded=
"no"> 
16688         <autodoc>SetThumbLength(int lenPixels)
</autodoc> 
16690           <param name=
"lenPixels" type=
"int" default=
""/> 
16693       <method name=
"GetThumbLength" type=
"int" overloaded=
"no"> 
16694         <autodoc>GetThumbLength() -
> int
</autodoc> 
16696       <method name=
"SetTickFreq" type=
"" overloaded=
"no"> 
16697         <autodoc>SetTickFreq(int n, int pos=
1)
</autodoc> 
16699           <param name=
"n" type=
"int" default=
""/> 
16700           <param name=
"pos" type=
"int" default=
"1"/> 
16703       <method name=
"GetTickFreq" type=
"int" overloaded=
"no"> 
16704         <autodoc>GetTickFreq() -
> int
</autodoc> 
16706       <method name=
"ClearTicks" type=
"" overloaded=
"no"> 
16707         <autodoc>ClearTicks()
</autodoc> 
16709       <method name=
"SetTick" type=
"" overloaded=
"no"> 
16710         <autodoc>SetTick(int tickPos)
</autodoc> 
16712           <param name=
"tickPos" type=
"int" default=
""/> 
16715       <method name=
"ClearSel" type=
"" overloaded=
"no"> 
16716         <autodoc>ClearSel()
</autodoc> 
16718       <method name=
"GetSelEnd" type=
"int" overloaded=
"no"> 
16719         <autodoc>GetSelEnd() -
> int
</autodoc> 
16721       <method name=
"GetSelStart" type=
"int" overloaded=
"no"> 
16722         <autodoc>GetSelStart() -
> int
</autodoc> 
16724       <method name=
"SetSelection" type=
"" overloaded=
"no"> 
16725         <autodoc>SetSelection(int min, int max)
</autodoc> 
16727           <param name=
"min" type=
"int" default=
""/> 
16728           <param name=
"max" type=
"int" default=
""/> 
16733 #---------------------------------------------------------------------------
 
16736     EVT_TOGGLEBUTTON = wx.PyEventBinder( wxEVT_COMMAND_TOGGLEBUTTON_CLICKED, 
1)
 
16738     <class name=
"ToggleButton" oldname=
"wxToggleButton" module=
"controls"> 
16739       <baseclass name=
"Control"/> 
16740       <constructor name=
"ToggleButton" overloaded=
"no"> 
16741         <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition, 
 
16742     Size size=DefaultSize, long style=
0, 
 
16743     Validator validator=DefaultValidator, String name=ToggleButtonNameStr) -
> ToggleButton
</autodoc> 
16745           <param name=
"parent" type=
"Window" default=
""/> 
16746           <param name=
"id" type=
"int" default=
""/> 
16747           <param name=
"label" type=
"String" default=
""/> 
16748           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
16749           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
16750           <param name=
"style" type=
"long" default=
"0"/> 
16751           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
16752           <param name=
"name" type=
"String" default=
"wxPyToggleButtonNameStr"/> 
16755       <constructor name=
"PreToggleButton" overloaded=
"no"> 
16756         <autodoc>PreToggleButton() -
> ToggleButton
</autodoc> 
16758       <method name=
"Create" type=
"bool" overloaded=
"no"> 
16759         <autodoc>Create(Window parent, int id, String label, Point pos=DefaultPosition, 
 
16760     Size size=DefaultSize, long style=
0, 
 
16761     Validator validator=DefaultValidator, String name=ToggleButtonNameStr) -
> bool
</autodoc> 
16763           <param name=
"parent" type=
"Window" default=
""/> 
16764           <param name=
"id" type=
"int" default=
""/> 
16765           <param name=
"label" type=
"String" default=
""/> 
16766           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
16767           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
16768           <param name=
"style" type=
"long" default=
"0"/> 
16769           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
16770           <param name=
"name" type=
"String" default=
"wxPyToggleButtonNameStr"/> 
16773       <method name=
"SetValue" type=
"" overloaded=
"no"> 
16774         <autodoc>SetValue(bool value)
</autodoc> 
16776           <param name=
"value" type=
"bool" default=
""/> 
16779       <method name=
"GetValue" type=
"bool" overloaded=
"no"> 
16780         <autodoc>GetValue() -
> bool
</autodoc> 
16782       <method name=
"SetLabel" type=
"" overloaded=
"no"> 
16783         <autodoc>SetLabel(String label)
</autodoc> 
16784         <docstring>Sets the item's text.
</docstring> 
16786           <param name=
"label" type=
"String" default=
""/> 
16791 #---------------------------------------------------------------------------
 
16793     <class name=
"BookCtrl" oldname=
"wxBookCtrl" module=
"controls"> 
16794       <baseclass name=
"Control"/> 
16795       <method name=
"GetPageCount" type=
"size_t" overloaded=
"no"> 
16796         <autodoc>GetPageCount() -
> size_t
</autodoc> 
16798       <method name=
"GetPage" type=
"Window" overloaded=
"no"> 
16799         <autodoc>GetPage(size_t n) -
> Window
</autodoc> 
16801           <param name=
"n" type=
"size_t" default=
""/> 
16804       <method name=
"GetSelection" type=
"int" overloaded=
"no"> 
16805         <autodoc>GetSelection() -
> int
</autodoc> 
16807       <method name=
"SetPageText" type=
"bool" overloaded=
"no"> 
16808         <autodoc>SetPageText(size_t n, String strText) -
> bool
</autodoc> 
16810           <param name=
"n" type=
"size_t" default=
""/> 
16811           <param name=
"strText" type=
"String" default=
""/> 
16814       <method name=
"GetPageText" type=
"String" overloaded=
"no"> 
16815         <autodoc>GetPageText(size_t n) -
> String
</autodoc> 
16817           <param name=
"n" type=
"size_t" default=
""/> 
16820       <method name=
"SetImageList" type=
"" overloaded=
"no"> 
16821         <autodoc>SetImageList(ImageList imageList)
</autodoc> 
16823           <param name=
"imageList" type=
"ImageList" default=
""/> 
16826       <method name=
"AssignImageList" type=
"" overloaded=
"no"> 
16827         <autodoc>AssignImageList(ImageList imageList)
</autodoc> 
16829           <param name=
"imageList" type=
"ImageList" default=
""/> 
16832       <method name=
"GetImageList" type=
"ImageList" overloaded=
"no"> 
16833         <autodoc>GetImageList() -
> ImageList
</autodoc> 
16835       <method name=
"GetPageImage" type=
"int" overloaded=
"no"> 
16836         <autodoc>GetPageImage(size_t n) -
> int
</autodoc> 
16838           <param name=
"n" type=
"size_t" default=
""/> 
16841       <method name=
"SetPageImage" type=
"bool" overloaded=
"no"> 
16842         <autodoc>SetPageImage(size_t n, int imageId) -
> bool
</autodoc> 
16844           <param name=
"n" type=
"size_t" default=
""/> 
16845           <param name=
"imageId" type=
"int" default=
""/> 
16848       <method name=
"SetPageSize" type=
"" overloaded=
"no"> 
16849         <autodoc>SetPageSize(Size size)
</autodoc> 
16851           <param name=
"size" type=
"Size" default=
""/> 
16854       <method name=
"CalcSizeFromPage" type=
"Size" overloaded=
"no"> 
16855         <autodoc>CalcSizeFromPage(Size sizePage) -
> Size
</autodoc> 
16857           <param name=
"sizePage" type=
"Size" default=
""/> 
16860       <method name=
"DeletePage" type=
"bool" overloaded=
"no"> 
16861         <autodoc>DeletePage(size_t n) -
> bool
</autodoc> 
16863           <param name=
"n" type=
"size_t" default=
""/> 
16866       <method name=
"RemovePage" type=
"bool" overloaded=
"no"> 
16867         <autodoc>RemovePage(size_t n) -
> bool
</autodoc> 
16869           <param name=
"n" type=
"size_t" default=
""/> 
16872       <method name=
"DeleteAllPages" type=
"bool" overloaded=
"no"> 
16873         <autodoc>DeleteAllPages() -
> bool
</autodoc> 
16875       <method name=
"AddPage" type=
"bool" overloaded=
"no"> 
16876         <autodoc>AddPage(Window page, String text, bool select=False, int imageId=-
1) -
> bool
</autodoc> 
16878           <param name=
"page" type=
"Window" default=
""/> 
16879           <param name=
"text" type=
"String" default=
""/> 
16880           <param name=
"select" type=
"bool" default=
"False"/> 
16881           <param name=
"imageId" type=
"int" default=
"-1"/> 
16884       <method name=
"InsertPage" type=
"bool" overloaded=
"no"> 
16885         <autodoc>InsertPage(size_t n, Window page, String text, bool select=False, 
 
16886     int imageId=-
1) -
> bool
</autodoc> 
16888           <param name=
"n" type=
"size_t" default=
""/> 
16889           <param name=
"page" type=
"Window" default=
""/> 
16890           <param name=
"text" type=
"String" default=
""/> 
16891           <param name=
"select" type=
"bool" default=
"False"/> 
16892           <param name=
"imageId" type=
"int" default=
"-1"/> 
16895       <method name=
"SetSelection" type=
"int" overloaded=
"no"> 
16896         <autodoc>SetSelection(size_t n) -
> int
</autodoc> 
16898           <param name=
"n" type=
"size_t" default=
""/> 
16901       <method name=
"AdvanceSelection" type=
"" overloaded=
"no"> 
16902         <autodoc>AdvanceSelection(bool forward=True)
</autodoc> 
16904           <param name=
"forward" type=
"bool" default=
"True"/> 
16908     <class name=
"BookCtrlEvent" oldname=
"wxBookCtrlEvent" module=
"controls"> 
16909       <baseclass name=
"NotifyEvent"/> 
16910       <constructor name=
"BookCtrlEvent" overloaded=
"no"> 
16911         <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int id=
0, int nSel=-
1, 
 
16912     int nOldSel=-
1) -
> BookCtrlEvent
</autodoc> 
16914           <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/> 
16915           <param name=
"id" type=
"int" default=
"0"/> 
16916           <param name=
"nSel" type=
"int" default=
"-1"/> 
16917           <param name=
"nOldSel" type=
"int" default=
"-1"/> 
16920       <method name=
"GetSelection" type=
"int" overloaded=
"no"> 
16921         <autodoc>GetSelection() -
> int
</autodoc> 
16923       <method name=
"SetSelection" type=
"" overloaded=
"no"> 
16924         <autodoc>SetSelection(int nSel)
</autodoc> 
16926           <param name=
"nSel" type=
"int" default=
""/> 
16929       <method name=
"GetOldSelection" type=
"int" overloaded=
"no"> 
16930         <autodoc>GetOldSelection() -
> int
</autodoc> 
16932       <method name=
"SetOldSelection" type=
"" overloaded=
"no"> 
16933         <autodoc>SetOldSelection(int nOldSel)
</autodoc> 
16935           <param name=
"nOldSel" type=
"int" default=
""/> 
16940 #---------------------------------------------------------------------------
 
16942     <class name=
"Notebook" oldname=
"wxNotebook" module=
"controls"> 
16943       <baseclass name=
"BookCtrl"/> 
16944       <constructor name=
"Notebook" overloaded=
"no"> 
16945         <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
16946     Size size=DefaultSize, long style=
0, String name=NOTEBOOK_NAME) -
> Notebook
</autodoc> 
16948           <param name=
"parent" type=
"Window" default=
""/> 
16949           <param name=
"id" type=
"int" default=
"-1"/> 
16950           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
16951           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
16952           <param name=
"style" type=
"long" default=
"0"/> 
16953           <param name=
"name" type=
"String" default=
"wxPyNOTEBOOK_NAME"/> 
16956       <constructor name=
"PreNotebook" overloaded=
"no"> 
16957         <autodoc>PreNotebook() -
> Notebook
</autodoc> 
16959       <method name=
"Create" type=
"bool" overloaded=
"no"> 
16960         <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
16961     long style=
0, String name=NOTEBOOK_NAME) -
> bool
</autodoc> 
16963           <param name=
"parent" type=
"Window" default=
""/> 
16964           <param name=
"id" type=
"int" default=
""/> 
16965           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
16966           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
16967           <param name=
"style" type=
"long" default=
"0"/> 
16968           <param name=
"name" type=
"String" default=
"wxPyNOTEBOOK_NAME"/> 
16971       <method name=
"GetRowCount" type=
"int" overloaded=
"no"> 
16972         <autodoc>GetRowCount() -
> int
</autodoc> 
16974       <method name=
"SetPadding" type=
"" overloaded=
"no"> 
16975         <autodoc>SetPadding(Size padding)
</autodoc> 
16977           <param name=
"padding" type=
"Size" default=
""/> 
16980       <method name=
"SetTabSize" type=
"" overloaded=
"no"> 
16981         <autodoc>SetTabSize(Size sz)
</autodoc> 
16983           <param name=
"sz" type=
"Size" default=
""/> 
16986       <method name=
"HitTest" type=
"int" overloaded=
"no"> 
16987         <autodoc>HitTest(Point pt) -
> (tab, where)
</autodoc> 
16988         <docstring>Returns the tab which is hit, and flags indicating where using wx.NB_HITTEST_ flags.
</docstring> 
16990           <param name=
"pt" type=
"Point" default=
""/> 
16991           <param name=
"OUTPUT" type=
"long" default=
""/> 
16994       <method name=
"CalcSizeFromPage" type=
"Size" overloaded=
"no"> 
16995         <autodoc>CalcSizeFromPage(Size sizePage) -
> Size
</autodoc> 
16997           <param name=
"sizePage" type=
"Size" default=
""/> 
17001     <class name=
"NotebookEvent" oldname=
"wxNotebookEvent" module=
"controls"> 
17002       <baseclass name=
"BookCtrlEvent"/> 
17003       <constructor name=
"NotebookEvent" overloaded=
"no"> 
17004         <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int id=
0, int nSel=-
1, 
 
17005     int nOldSel=-
1) -
> NotebookEvent
</autodoc> 
17007           <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/> 
17008           <param name=
"id" type=
"int" default=
"0"/> 
17009           <param name=
"nSel" type=
"int" default=
"-1"/> 
17010           <param name=
"nOldSel" type=
"int" default=
"-1"/> 
17015     # wxNotebook events
 
17016     EVT_NOTEBOOK_PAGE_CHANGED  = wx.PyEventBinder( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, 
1 )
 
17017     EVT_NOTEBOOK_PAGE_CHANGING = wx.PyEventBinder( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, 
1 )
 
17020 #----------------------------------------------------------------------------
 
17022 class NotebookPage(wx.Panel):
 
17024     There is an old (and apparently unsolvable) bug when placing a
 
17025     window with a nonstandard background colour in a wxNotebook on
 
17026     wxGTK, as the notbooks's background colour would always be used
 
17027     when the window is refreshed.  The solution is to place a panel in
 
17028     the notbook and the coloured window on the panel, sized to cover
 
17029     the panel.  This simple class does that for you, just put an
 
17030     instance of this in the notebook and make your regular window a
 
17031     child of this one and it will handle the resize for you.
 
17033     def __init__(self, parent, id=-
1,
 
17034                  pos=wx.DefaultPosition, size=wx.DefaultSize,
 
17035                  style=wx.TAB_TRAVERSAL, 
name="panel"):
 
17036         wx.Panel.__init__(self, parent, id, pos, size, style, name)
 
17038         EVT_SIZE(self, self.OnSize)
 
17040     def OnSize(self, evt):
 
17041         if self.child is None:
 
17042             children = self.GetChildren()
 
17044                 self.child = children[
0]
 
17046             self.child.SetPosition((
0,
0))
 
17047             self.child.SetSize(self.GetSize())
 
17051 #---------------------------------------------------------------------------
 
17053     <class name=
"Listbook" oldname=
"wxListbook" module=
"controls"> 
17054       <baseclass name=
"BookCtrl"/> 
17055       <constructor name=
"Listbook" overloaded=
"no"> 
17056         <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
17057     Size size=DefaultSize, long style=
0, String name=EmptyString) -
> Listbook
</autodoc> 
17059           <param name=
"parent" type=
"Window" default=
""/> 
17060           <param name=
"id" type=
"int" default=
"-1"/> 
17061           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
17062           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
17063           <param name=
"style" type=
"long" default=
"0"/> 
17064           <param name=
"name" type=
"String" default=
"wxPyEmptyString"/> 
17067       <constructor name=
"PreListbook" overloaded=
"no"> 
17068         <autodoc>PreListbook() -
> Listbook
</autodoc> 
17070       <method name=
"Create" type=
"bool" overloaded=
"no"> 
17071         <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
17072     long style=
0, String name=EmptyString) -
> bool
</autodoc> 
17074           <param name=
"parent" type=
"Window" default=
""/> 
17075           <param name=
"id" type=
"int" default=
""/> 
17076           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
17077           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
17078           <param name=
"style" type=
"long" default=
"0"/> 
17079           <param name=
"name" type=
"String" default=
"wxPyEmptyString"/> 
17082       <method name=
"IsVertical" type=
"bool" overloaded=
"no"> 
17083         <autodoc>IsVertical() -
> bool
</autodoc> 
17086     <class name=
"ListbookEvent" oldname=
"wxListbookEvent" module=
"controls"> 
17087       <baseclass name=
"BookCtrlEvent"/> 
17088       <constructor name=
"ListbookEvent" overloaded=
"no"> 
17089         <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int id=
0, int nSel=-
1, 
 
17090     int nOldSel=-
1) -
> ListbookEvent
</autodoc> 
17092           <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/> 
17093           <param name=
"id" type=
"int" default=
"0"/> 
17094           <param name=
"nSel" type=
"int" default=
"-1"/> 
17095           <param name=
"nOldSel" type=
"int" default=
"-1"/> 
17100     EVT_LISTBOOK_PAGE_CHANGED  = wx.PyEventBinder( wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED, 
1 )
 
17101     EVT_LISTBOOK_PAGE_CHANGING = wx.PyEventBinder( wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING, 
1 )
 
17104 #---------------------------------------------------------------------------
 
17106     <class name=
"BookCtrlSizer" oldname=
"wxBookCtrlSizer" module=
"controls"> 
17107       <baseclass name=
"Sizer"/> 
17108       <constructor name=
"BookCtrlSizer" overloaded=
"no"> 
17109         <autodoc>__init__(BookCtrl nb) -
> BookCtrlSizer
</autodoc> 
17111           <param name=
"nb" type=
"BookCtrl" default=
""/> 
17114       <method name=
"RecalcSizes" type=
"" overloaded=
"no"> 
17115         <autodoc>RecalcSizes()
</autodoc> 
17117       <method name=
"CalcMin" type=
"Size" overloaded=
"no"> 
17118         <autodoc>CalcMin() -
> Size
</autodoc> 
17120       <method name=
"GetControl" type=
"BookCtrl" overloaded=
"no"> 
17121         <autodoc>GetControl() -
> BookCtrl
</autodoc> 
17124     <class name=
"NotebookSizer" oldname=
"wxNotebookSizer" module=
"controls"> 
17125       <baseclass name=
"Sizer"/> 
17126       <constructor name=
"NotebookSizer" overloaded=
"no"> 
17127         <autodoc>__init__(Notebook nb) -
> NotebookSizer
</autodoc> 
17129           <param name=
"nb" type=
"Notebook" default=
""/> 
17132       <method name=
"RecalcSizes" type=
"" overloaded=
"no"> 
17133         <autodoc>RecalcSizes()
</autodoc> 
17135       <method name=
"CalcMin" type=
"Size" overloaded=
"no"> 
17136         <autodoc>CalcMin() -
> Size
</autodoc> 
17138       <method name=
"GetNotebook" type=
"Notebook" overloaded=
"no"> 
17139         <autodoc>GetNotebook() -
> Notebook
</autodoc> 
17143 #---------------------------------------------------------------------------
 
17145     <class name=
"ToolBarToolBase" oldname=
"wxToolBarToolBase" module=
"controls"> 
17146       <baseclass name=
"Object"/> 
17147       <method name=
"GetId" type=
"int" overloaded=
"no"> 
17148         <autodoc>GetId() -
> int
</autodoc> 
17150       <method name=
"GetControl" type=
"Control" overloaded=
"no"> 
17151         <autodoc>GetControl() -
> Control
</autodoc> 
17153       <method name=
"GetToolBar" type=
"wxToolBarBase" overloaded=
"no"> 
17154         <autodoc>GetToolBar() -
> ToolBarBase
</autodoc> 
17156       <method name=
"IsButton" type=
"int" overloaded=
"no"> 
17157         <autodoc>IsButton() -
> int
</autodoc> 
17159       <method name=
"IsControl" type=
"int" overloaded=
"no"> 
17160         <autodoc>IsControl() -
> int
</autodoc> 
17162       <method name=
"IsSeparator" type=
"int" overloaded=
"no"> 
17163         <autodoc>IsSeparator() -
> int
</autodoc> 
17165       <method name=
"GetStyle" type=
"int" overloaded=
"no"> 
17166         <autodoc>GetStyle() -
> int
</autodoc> 
17168       <method name=
"GetKind" type=
"wxItemKind" overloaded=
"no"> 
17169         <autodoc>GetKind() -
> int
</autodoc> 
17171       <method name=
"IsEnabled" type=
"bool" overloaded=
"no"> 
17172         <autodoc>IsEnabled() -
> bool
</autodoc> 
17174       <method name=
"IsToggled" type=
"bool" overloaded=
"no"> 
17175         <autodoc>IsToggled() -
> bool
</autodoc> 
17177       <method name=
"CanBeToggled" type=
"bool" overloaded=
"no"> 
17178         <autodoc>CanBeToggled() -
> bool
</autodoc> 
17180       <method name=
"GetNormalBitmap" type=
"Bitmap" overloaded=
"no"> 
17181         <autodoc>GetNormalBitmap() -
> Bitmap
</autodoc> 
17183       <method name=
"GetDisabledBitmap" type=
"Bitmap" overloaded=
"no"> 
17184         <autodoc>GetDisabledBitmap() -
> Bitmap
</autodoc> 
17186       <method name=
"GetBitmap" type=
"Bitmap" overloaded=
"no"> 
17187         <autodoc>GetBitmap() -
> Bitmap
</autodoc> 
17189       <method name=
"GetLabel" type=
"String" overloaded=
"no"> 
17190         <autodoc>GetLabel() -
> String
</autodoc> 
17192       <method name=
"GetShortHelp" type=
"String" overloaded=
"no"> 
17193         <autodoc>GetShortHelp() -
> String
</autodoc> 
17195       <method name=
"GetLongHelp" type=
"String" overloaded=
"no"> 
17196         <autodoc>GetLongHelp() -
> String
</autodoc> 
17198       <method name=
"Enable" type=
"bool" overloaded=
"no"> 
17199         <autodoc>Enable(bool enable) -
> bool
</autodoc> 
17201           <param name=
"enable" type=
"bool" default=
""/> 
17204       <method name=
"Toggle" type=
"" overloaded=
"no"> 
17205         <autodoc>Toggle()
</autodoc> 
17207       <method name=
"SetToggle" type=
"bool" overloaded=
"no"> 
17208         <autodoc>SetToggle(bool toggle) -
> bool
</autodoc> 
17210           <param name=
"toggle" type=
"bool" default=
""/> 
17213       <method name=
"SetShortHelp" type=
"bool" overloaded=
"no"> 
17214         <autodoc>SetShortHelp(String help) -
> bool
</autodoc> 
17216           <param name=
"help" type=
"String" default=
""/> 
17219       <method name=
"SetLongHelp" type=
"bool" overloaded=
"no"> 
17220         <autodoc>SetLongHelp(String help) -
> bool
</autodoc> 
17222           <param name=
"help" type=
"String" default=
""/> 
17225       <method name=
"SetNormalBitmap" type=
"" overloaded=
"no"> 
17226         <autodoc>SetNormalBitmap(Bitmap bmp)
</autodoc> 
17228           <param name=
"bmp" type=
"Bitmap" default=
""/> 
17231       <method name=
"SetDisabledBitmap" type=
"" overloaded=
"no"> 
17232         <autodoc>SetDisabledBitmap(Bitmap bmp)
</autodoc> 
17234           <param name=
"bmp" type=
"Bitmap" default=
""/> 
17237       <method name=
"SetLabel" type=
"" overloaded=
"no"> 
17238         <autodoc>SetLabel(String label)
</autodoc> 
17240           <param name=
"label" type=
"String" default=
""/> 
17243       <method name=
"Detach" type=
"" overloaded=
"no"> 
17244         <autodoc>Detach()
</autodoc> 
17246       <method name=
"Attach" type=
"" overloaded=
"no"> 
17247         <autodoc>Attach(ToolBarBase tbar)
</autodoc> 
17249           <param name=
"tbar" type=
"wxToolBarBase" default=
""/> 
17252       <method name=
"GetClientData" type=
"PyObject" overloaded=
"no"> 
17253         <autodoc>GetClientData() -
> PyObject
</autodoc> 
17255       <method name=
"SetClientData" type=
"" overloaded=
"no"> 
17256         <autodoc>SetClientData(PyObject clientData)
</autodoc> 
17258           <param name=
"clientData" type=
"PyObject" default=
""/> 
17262     <class name=
"ToolBarBase" oldname=
"wxToolBarBase" module=
"controls"> 
17263       <baseclass name=
"Control"/> 
17264       <method name=
"DoAddTool" type=
"ToolBarToolBase" overloaded=
"no"> 
17265         <autodoc>DoAddTool(int id, String label, Bitmap bitmap, Bitmap bmpDisabled=wxNullBitmap, 
 
17266     int kind=ITEM_NORMAL, String shortHelp=EmptyString, 
 
17267     String longHelp=EmptyString, 
 
17268     PyObject clientData=None) -
> ToolBarToolBase
</autodoc> 
17270           <param name=
"id" type=
"int" default=
""/> 
17271           <param name=
"label" type=
"String" default=
""/> 
17272           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
17273           <param name=
"bmpDisabled" type=
"Bitmap" default=
"wxNullBitmap"/> 
17274           <param name=
"kind" type=
"wxItemKind" default=
"wxITEM_NORMAL"/> 
17275           <param name=
"shortHelp" type=
"String" default=
"wxPyEmptyString"/> 
17276           <param name=
"longHelp" type=
"String" default=
"wxPyEmptyString"/> 
17277           <param name=
"clientData" type=
"PyObject" default=
"NULL"/> 
17280       <method name=
"DoInsertTool" type=
"ToolBarToolBase" overloaded=
"no"> 
17281         <autodoc>DoInsertTool(size_t pos, int id, String label, Bitmap bitmap, Bitmap bmpDisabled=wxNullBitmap, 
 
17282     int kind=ITEM_NORMAL, 
 
17283     String shortHelp=EmptyString, String longHelp=EmptyString, 
 
17284     PyObject clientData=None) -
> ToolBarToolBase
</autodoc> 
17286           <param name=
"pos" type=
"size_t" default=
""/> 
17287           <param name=
"id" type=
"int" default=
""/> 
17288           <param name=
"label" type=
"String" default=
""/> 
17289           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
17290           <param name=
"bmpDisabled" type=
"Bitmap" default=
"wxNullBitmap"/> 
17291           <param name=
"kind" type=
"wxItemKind" default=
"wxITEM_NORMAL"/> 
17292           <param name=
"shortHelp" type=
"String" default=
"wxPyEmptyString"/> 
17293           <param name=
"longHelp" type=
"String" default=
"wxPyEmptyString"/> 
17294           <param name=
"clientData" type=
"PyObject" default=
"NULL"/> 
17297       <method name=
"AddToolItem" type=
"ToolBarToolBase" overloaded=
"no"> 
17298         <autodoc>AddToolItem(ToolBarToolBase tool) -
> ToolBarToolBase
</autodoc> 
17300           <param name=
"tool" type=
"ToolBarToolBase" default=
""/> 
17303       <method name=
"InsertToolItem" type=
"ToolBarToolBase" overloaded=
"no"> 
17304         <autodoc>InsertToolItem(size_t pos, ToolBarToolBase tool) -
> ToolBarToolBase
</autodoc> 
17306           <param name=
"pos" type=
"size_t" default=
""/> 
17307           <param name=
"tool" type=
"ToolBarToolBase" default=
""/> 
17310       <method name=
"AddControl" type=
"ToolBarToolBase" overloaded=
"no"> 
17311         <autodoc>AddControl(Control control) -
> ToolBarToolBase
</autodoc> 
17313           <param name=
"control" type=
"Control" default=
""/> 
17316       <method name=
"InsertControl" type=
"ToolBarToolBase" overloaded=
"no"> 
17317         <autodoc>InsertControl(size_t pos, Control control) -
> ToolBarToolBase
</autodoc> 
17319           <param name=
"pos" type=
"size_t" default=
""/> 
17320           <param name=
"control" type=
"Control" default=
""/> 
17323       <method name=
"FindControl" type=
"Control" overloaded=
"no"> 
17324         <autodoc>FindControl(int id) -
> Control
</autodoc> 
17326           <param name=
"id" type=
"int" default=
""/> 
17329       <method name=
"AddSeparator" type=
"ToolBarToolBase" overloaded=
"no"> 
17330         <autodoc>AddSeparator() -
> ToolBarToolBase
</autodoc> 
17332       <method name=
"InsertSeparator" type=
"ToolBarToolBase" overloaded=
"no"> 
17333         <autodoc>InsertSeparator(size_t pos) -
> ToolBarToolBase
</autodoc> 
17335           <param name=
"pos" type=
"size_t" default=
""/> 
17338       <method name=
"RemoveTool" type=
"ToolBarToolBase" overloaded=
"no"> 
17339         <autodoc>RemoveTool(int id) -
> ToolBarToolBase
</autodoc> 
17341           <param name=
"id" type=
"int" default=
""/> 
17344       <method name=
"DeleteToolByPos" type=
"bool" overloaded=
"no"> 
17345         <autodoc>DeleteToolByPos(size_t pos) -
> bool
</autodoc> 
17347           <param name=
"pos" type=
"size_t" default=
""/> 
17350       <method name=
"DeleteTool" type=
"bool" overloaded=
"no"> 
17351         <autodoc>DeleteTool(int id) -
> bool
</autodoc> 
17353           <param name=
"id" type=
"int" default=
""/> 
17356       <method name=
"ClearTools" type=
"" overloaded=
"no"> 
17357         <autodoc>ClearTools()
</autodoc> 
17359       <method name=
"Realize" type=
"bool" overloaded=
"no"> 
17360         <autodoc>Realize() -
> bool
</autodoc> 
17362       <method name=
"EnableTool" type=
"" overloaded=
"no"> 
17363         <autodoc>EnableTool(int id, bool enable)
</autodoc> 
17365           <param name=
"id" type=
"int" default=
""/> 
17366           <param name=
"enable" type=
"bool" default=
""/> 
17369       <method name=
"ToggleTool" type=
"" overloaded=
"no"> 
17370         <autodoc>ToggleTool(int id, bool toggle)
</autodoc> 
17372           <param name=
"id" type=
"int" default=
""/> 
17373           <param name=
"toggle" type=
"bool" default=
""/> 
17376       <method name=
"SetToggle" type=
"" overloaded=
"no"> 
17377         <autodoc>SetToggle(int id, bool toggle)
</autodoc> 
17379           <param name=
"id" type=
"int" default=
""/> 
17380           <param name=
"toggle" type=
"bool" default=
""/> 
17383       <method name=
"GetToolClientData" type=
"PyObject" overloaded=
"no"> 
17384         <autodoc>GetToolClientData(int id) -
> PyObject
</autodoc> 
17386           <param name=
"id" type=
"int" default=
""/> 
17389       <method name=
"SetToolClientData" type=
"" overloaded=
"no"> 
17390         <autodoc>SetToolClientData(int id, PyObject clientData)
</autodoc> 
17392           <param name=
"id" type=
"int" default=
""/> 
17393           <param name=
"clientData" type=
"PyObject" default=
""/> 
17396       <method name=
"GetToolPos" type=
"int" overloaded=
"no"> 
17397         <autodoc>GetToolPos(int id) -
> int
</autodoc> 
17399           <param name=
"id" type=
"int" default=
""/> 
17402       <method name=
"GetToolState" type=
"bool" overloaded=
"no"> 
17403         <autodoc>GetToolState(int id) -
> bool
</autodoc> 
17405           <param name=
"id" type=
"int" default=
""/> 
17408       <method name=
"GetToolEnabled" type=
"bool" overloaded=
"no"> 
17409         <autodoc>GetToolEnabled(int id) -
> bool
</autodoc> 
17411           <param name=
"id" type=
"int" default=
""/> 
17414       <method name=
"SetToolShortHelp" type=
"" overloaded=
"no"> 
17415         <autodoc>SetToolShortHelp(int id, String helpString)
</autodoc> 
17417           <param name=
"id" type=
"int" default=
""/> 
17418           <param name=
"helpString" type=
"String" default=
""/> 
17421       <method name=
"GetToolShortHelp" type=
"String" overloaded=
"no"> 
17422         <autodoc>GetToolShortHelp(int id) -
> String
</autodoc> 
17424           <param name=
"id" type=
"int" default=
""/> 
17427       <method name=
"SetToolLongHelp" type=
"" overloaded=
"no"> 
17428         <autodoc>SetToolLongHelp(int id, String helpString)
</autodoc> 
17430           <param name=
"id" type=
"int" default=
""/> 
17431           <param name=
"helpString" type=
"String" default=
""/> 
17434       <method name=
"GetToolLongHelp" type=
"String" overloaded=
"no"> 
17435         <autodoc>GetToolLongHelp(int id) -
> String
</autodoc> 
17437           <param name=
"id" type=
"int" default=
""/> 
17440       <method name=
"SetMarginsXY" type=
"" overloaded=
"no"> 
17441         <autodoc>SetMarginsXY(int x, int y)
</autodoc> 
17443           <param name=
"x" type=
"int" default=
""/> 
17444           <param name=
"y" type=
"int" default=
""/> 
17447       <method name=
"SetMargins" type=
"" overloaded=
"no"> 
17448         <autodoc>SetMargins(Size size)
</autodoc> 
17450           <param name=
"size" type=
"Size" default=
""/> 
17453       <method name=
"SetToolPacking" type=
"" overloaded=
"no"> 
17454         <autodoc>SetToolPacking(int packing)
</autodoc> 
17456           <param name=
"packing" type=
"int" default=
""/> 
17459       <method name=
"SetToolSeparation" type=
"" overloaded=
"no"> 
17460         <autodoc>SetToolSeparation(int separation)
</autodoc> 
17462           <param name=
"separation" type=
"int" default=
""/> 
17465       <method name=
"GetToolMargins" type=
"Size" overloaded=
"no"> 
17466         <autodoc>GetToolMargins() -
> Size
</autodoc> 
17468       <method name=
"GetMargins" type=
"Size" overloaded=
"no"> 
17469         <autodoc>GetMargins() -
> Size
</autodoc> 
17471       <method name=
"GetToolPacking" type=
"int" overloaded=
"no"> 
17472         <autodoc>GetToolPacking() -
> int
</autodoc> 
17474       <method name=
"GetToolSeparation" type=
"int" overloaded=
"no"> 
17475         <autodoc>GetToolSeparation() -
> int
</autodoc> 
17477       <method name=
"SetRows" type=
"" overloaded=
"no"> 
17478         <autodoc>SetRows(int nRows)
</autodoc> 
17480           <param name=
"nRows" type=
"int" default=
""/> 
17483       <method name=
"SetMaxRowsCols" type=
"" overloaded=
"no"> 
17484         <autodoc>SetMaxRowsCols(int rows, int cols)
</autodoc> 
17486           <param name=
"rows" type=
"int" default=
""/> 
17487           <param name=
"cols" type=
"int" default=
""/> 
17490       <method name=
"GetMaxRows" type=
"int" overloaded=
"no"> 
17491         <autodoc>GetMaxRows() -
> int
</autodoc> 
17493       <method name=
"GetMaxCols" type=
"int" overloaded=
"no"> 
17494         <autodoc>GetMaxCols() -
> int
</autodoc> 
17496       <method name=
"SetToolBitmapSize" type=
"" overloaded=
"no"> 
17497         <autodoc>SetToolBitmapSize(Size size)
</autodoc> 
17499           <param name=
"size" type=
"Size" default=
""/> 
17502       <method name=
"GetToolBitmapSize" type=
"Size" overloaded=
"no"> 
17503         <autodoc>GetToolBitmapSize() -
> Size
</autodoc> 
17505       <method name=
"GetToolSize" type=
"Size" overloaded=
"no"> 
17506         <autodoc>GetToolSize() -
> Size
</autodoc> 
17508       <method name=
"FindToolForPosition" type=
"ToolBarToolBase" overloaded=
"no"> 
17509         <autodoc>FindToolForPosition(int x, int y) -
> ToolBarToolBase
</autodoc> 
17511           <param name=
"x" type=
"int" default=
""/> 
17512           <param name=
"y" type=
"int" default=
""/> 
17515       <method name=
"FindById" type=
"ToolBarToolBase" overloaded=
"no"> 
17516         <autodoc>FindById(int toolid) -
> ToolBarToolBase
</autodoc> 
17518           <param name=
"toolid" type=
"int" default=
""/> 
17521       <method name=
"IsVertical" type=
"bool" overloaded=
"no"> 
17522         <autodoc>IsVertical() -
> bool
</autodoc> 
17525     <class name=
"ToolBar" oldname=
"wxToolBar" module=
"controls"> 
17526       <baseclass name=
"ToolBarBase"/> 
17527       <constructor name=
"ToolBar" overloaded=
"no"> 
17528         <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
17529     long style=wxNO_BORDER|wxTB_HORIZONTAL, 
 
17530     String name=wxPyToolBarNameStr) -
> ToolBar
</autodoc> 
17532           <param name=
"parent" type=
"Window" default=
""/> 
17533           <param name=
"id" type=
"int" default=
""/> 
17534           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
17535           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
17536           <param name=
"style" type=
"long" default=
"wxNO_BORDER|wxTB_HORIZONTAL"/> 
17537           <param name=
"name" type=
"String" default=
"wxPyToolBarNameStr"/> 
17540       <constructor name=
"PreToolBar" overloaded=
"no"> 
17541         <autodoc>PreToolBar() -
> ToolBar
</autodoc> 
17543       <method name=
"Create" type=
"bool" overloaded=
"no"> 
17544         <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
17545     long style=wxNO_BORDER|wxTB_HORIZONTAL, 
 
17546     String name=wxPyToolBarNameStr) -
> bool
</autodoc> 
17548           <param name=
"parent" type=
"Window" default=
""/> 
17549           <param name=
"id" type=
"int" default=
""/> 
17550           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
17551           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
17552           <param name=
"style" type=
"long" default=
"wxNO_BORDER|wxTB_HORIZONTAL"/> 
17553           <param name=
"name" type=
"String" default=
"wxPyToolBarNameStr"/> 
17556       <method name=
"FindToolForPosition" type=
"ToolBarToolBase" overloaded=
"no"> 
17557         <autodoc>FindToolForPosition(int x, int y) -
> ToolBarToolBase
</autodoc> 
17559           <param name=
"x" type=
"int" default=
""/> 
17560           <param name=
"y" type=
"int" default=
""/> 
17565 #---------------------------------------------------------------------------
 
17568 #---------------------------------------------------------------------------
 
17570     <class name=
"ListItemAttr" oldname=
"wxListItemAttr" module=
"controls"> 
17571       <constructor name=
"ListItemAttr" overloaded=
"no"> 
17572         <autodoc>__init__(Colour colText=wxNullColour, Colour colBack=wxNullColour, 
 
17573     Font font=wxNullFont) -
> ListItemAttr
</autodoc> 
17575           <param name=
"colText" type=
"Colour" default=
"wxNullColour"/> 
17576           <param name=
"colBack" type=
"Colour" default=
"wxNullColour"/> 
17577           <param name=
"font" type=
"Font" default=
"wxNullFont"/> 
17580       <method name=
"SetTextColour" type=
"" overloaded=
"no"> 
17581         <autodoc>SetTextColour(Colour colText)
</autodoc> 
17583           <param name=
"colText" type=
"Colour" default=
""/> 
17586       <method name=
"SetBackgroundColour" type=
"" overloaded=
"no"> 
17587         <autodoc>SetBackgroundColour(Colour colBack)
</autodoc> 
17589           <param name=
"colBack" type=
"Colour" default=
""/> 
17592       <method name=
"SetFont" type=
"" overloaded=
"no"> 
17593         <autodoc>SetFont(Font font)
</autodoc> 
17595           <param name=
"font" type=
"Font" default=
""/> 
17598       <method name=
"HasTextColour" type=
"bool" overloaded=
"no"> 
17599         <autodoc>HasTextColour() -
> bool
</autodoc> 
17601       <method name=
"HasBackgroundColour" type=
"bool" overloaded=
"no"> 
17602         <autodoc>HasBackgroundColour() -
> bool
</autodoc> 
17604       <method name=
"HasFont" type=
"bool" overloaded=
"no"> 
17605         <autodoc>HasFont() -
> bool
</autodoc> 
17607       <method name=
"GetTextColour" type=
"Colour" overloaded=
"no"> 
17608         <autodoc>GetTextColour() -
> Colour
</autodoc> 
17610       <method name=
"GetBackgroundColour" type=
"Colour" overloaded=
"no"> 
17611         <autodoc>GetBackgroundColour() -
> Colour
</autodoc> 
17613       <method name=
"GetFont" type=
"Font" overloaded=
"no"> 
17614         <autodoc>GetFont() -
> Font
</autodoc> 
17616       <method name=
"Destroy" type=
"" overloaded=
"no"> 
17617         <autodoc>Destroy()
</autodoc> 
17621 #---------------------------------------------------------------------------
 
17623     <class name=
"ListItem" oldname=
"wxListItem" module=
"controls"> 
17624       <baseclass name=
"Object"/> 
17625       <constructor name=
"ListItem" overloaded=
"no"> 
17626         <autodoc>__init__() -
> ListItem
</autodoc> 
17628       <destructor name=
"~wxListItem" overloaded=
"no"> 
17629         <autodoc>__del__()
</autodoc> 
17631       <method name=
"Clear" type=
"" overloaded=
"no"> 
17632         <autodoc>Clear()
</autodoc> 
17634       <method name=
"ClearAttributes" type=
"" overloaded=
"no"> 
17635         <autodoc>ClearAttributes()
</autodoc> 
17637       <method name=
"SetMask" type=
"" overloaded=
"no"> 
17638         <autodoc>SetMask(long mask)
</autodoc> 
17640           <param name=
"mask" type=
"long" default=
""/> 
17643       <method name=
"SetId" type=
"" overloaded=
"no"> 
17644         <autodoc>SetId(long id)
</autodoc> 
17646           <param name=
"id" type=
"long" default=
""/> 
17649       <method name=
"SetColumn" type=
"" overloaded=
"no"> 
17650         <autodoc>SetColumn(int col)
</autodoc> 
17652           <param name=
"col" type=
"int" default=
""/> 
17655       <method name=
"SetState" type=
"" overloaded=
"no"> 
17656         <autodoc>SetState(long state)
</autodoc> 
17658           <param name=
"state" type=
"long" default=
""/> 
17661       <method name=
"SetStateMask" type=
"" overloaded=
"no"> 
17662         <autodoc>SetStateMask(long stateMask)
</autodoc> 
17664           <param name=
"stateMask" type=
"long" default=
""/> 
17667       <method name=
"SetText" type=
"" overloaded=
"no"> 
17668         <autodoc>SetText(String text)
</autodoc> 
17670           <param name=
"text" type=
"String" default=
""/> 
17673       <method name=
"SetImage" type=
"" overloaded=
"no"> 
17674         <autodoc>SetImage(int image)
</autodoc> 
17676           <param name=
"image" type=
"int" default=
""/> 
17679       <method name=
"SetData" type=
"" overloaded=
"no"> 
17680         <autodoc>SetData(long data)
</autodoc> 
17682           <param name=
"data" type=
"long" default=
""/> 
17685       <method name=
"SetWidth" type=
"" overloaded=
"no"> 
17686         <autodoc>SetWidth(int width)
</autodoc> 
17688           <param name=
"width" type=
"int" default=
""/> 
17691       <method name=
"SetAlign" type=
"" overloaded=
"no"> 
17692         <autodoc>SetAlign(int align)
</autodoc> 
17694           <param name=
"align" type=
"wxListColumnFormat" default=
""/> 
17697       <method name=
"SetTextColour" type=
"" overloaded=
"no"> 
17698         <autodoc>SetTextColour(Colour colText)
</autodoc> 
17700           <param name=
"colText" type=
"Colour" default=
""/> 
17703       <method name=
"SetBackgroundColour" type=
"" overloaded=
"no"> 
17704         <autodoc>SetBackgroundColour(Colour colBack)
</autodoc> 
17706           <param name=
"colBack" type=
"Colour" default=
""/> 
17709       <method name=
"SetFont" type=
"" overloaded=
"no"> 
17710         <autodoc>SetFont(Font font)
</autodoc> 
17712           <param name=
"font" type=
"Font" default=
""/> 
17715       <method name=
"GetMask" type=
"long" overloaded=
"no"> 
17716         <autodoc>GetMask() -
> long
</autodoc> 
17718       <method name=
"GetId" type=
"long" overloaded=
"no"> 
17719         <autodoc>GetId() -
> long
</autodoc> 
17721       <method name=
"GetColumn" type=
"int" overloaded=
"no"> 
17722         <autodoc>GetColumn() -
> int
</autodoc> 
17724       <method name=
"GetState" type=
"long" overloaded=
"no"> 
17725         <autodoc>GetState() -
> long
</autodoc> 
17727       <method name=
"GetText" type=
"String" overloaded=
"no"> 
17728         <autodoc>GetText() -
> String
</autodoc> 
17730       <method name=
"GetImage" type=
"int" overloaded=
"no"> 
17731         <autodoc>GetImage() -
> int
</autodoc> 
17733       <method name=
"GetData" type=
"long" overloaded=
"no"> 
17734         <autodoc>GetData() -
> long
</autodoc> 
17736       <method name=
"GetWidth" type=
"int" overloaded=
"no"> 
17737         <autodoc>GetWidth() -
> int
</autodoc> 
17739       <method name=
"GetAlign" type=
"wxListColumnFormat" overloaded=
"no"> 
17740         <autodoc>GetAlign() -
> int
</autodoc> 
17742       <method name=
"GetAttributes" type=
"ListItemAttr" overloaded=
"no"> 
17743         <autodoc>GetAttributes() -
> ListItemAttr
</autodoc> 
17745       <method name=
"HasAttributes" type=
"bool" overloaded=
"no"> 
17746         <autodoc>HasAttributes() -
> bool
</autodoc> 
17748       <method name=
"GetTextColour" type=
"Colour" overloaded=
"no"> 
17749         <autodoc>GetTextColour() -
> Colour
</autodoc> 
17751       <method name=
"GetBackgroundColour" type=
"Colour" overloaded=
"no"> 
17752         <autodoc>GetBackgroundColour() -
> Colour
</autodoc> 
17754       <method name=
"GetFont" type=
"Font" overloaded=
"no"> 
17755         <autodoc>GetFont() -
> Font
</autodoc> 
17757       <property name=
"m_mask" type=
"long" readonly=
"no"/> 
17758       <property name=
"m_itemId" type=
"long" readonly=
"no"/> 
17759       <property name=
"m_col" type=
"int" readonly=
"no"/> 
17760       <property name=
"m_state" type=
"long" readonly=
"no"/> 
17761       <property name=
"m_stateMask" type=
"long" readonly=
"no"/> 
17762       <property name=
"m_text" type=
"String" readonly=
"no"/> 
17763       <property name=
"m_image" type=
"int" readonly=
"no"/> 
17764       <property name=
"m_data" type=
"long" readonly=
"no"/> 
17765       <property name=
"m_format" type=
"int" readonly=
"no"/> 
17766       <property name=
"m_width" type=
"int" readonly=
"no"/> 
17769 #---------------------------------------------------------------------------
 
17771     <class name=
"ListEvent" oldname=
"wxListEvent" module=
"controls"> 
17772       <baseclass name=
"NotifyEvent"/> 
17773       <constructor name=
"ListEvent" overloaded=
"no"> 
17774         <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int id=
0) -
> ListEvent
</autodoc> 
17776           <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/> 
17777           <param name=
"id" type=
"int" default=
"0"/> 
17780       <property name=
"m_code" type=
"int" readonly=
"no"/> 
17781       <property name=
"m_oldItemIndex" type=
"long" readonly=
"no"/> 
17782       <property name=
"m_itemIndex" type=
"long" readonly=
"no"/> 
17783       <property name=
"m_col" type=
"int" readonly=
"no"/> 
17784       <property name=
"m_pointDrag" type=
"Point" readonly=
"no"/> 
17785       <property name=
"m_item" type=
"ListItem" readonly=
"yes"/> 
17786       <method name=
"GetKeyCode" type=
"int" overloaded=
"no"> 
17787         <autodoc>GetKeyCode() -
> int
</autodoc> 
17789       <method name=
"GetIndex" type=
"long" overloaded=
"no"> 
17790         <autodoc>GetIndex() -
> long
</autodoc> 
17792       <method name=
"GetColumn" type=
"int" overloaded=
"no"> 
17793         <autodoc>GetColumn() -
> int
</autodoc> 
17795       <method name=
"GetPoint" type=
"Point" overloaded=
"no"> 
17796         <autodoc>GetPoint() -
> Point
</autodoc> 
17798       <method name=
"GetLabel" type=
"String" overloaded=
"no"> 
17799         <autodoc>GetLabel() -
> String
</autodoc> 
17801       <method name=
"GetText" type=
"String" overloaded=
"no"> 
17802         <autodoc>GetText() -
> String
</autodoc> 
17804       <method name=
"GetImage" type=
"int" overloaded=
"no"> 
17805         <autodoc>GetImage() -
> int
</autodoc> 
17807       <method name=
"GetData" type=
"long" overloaded=
"no"> 
17808         <autodoc>GetData() -
> long
</autodoc> 
17810       <method name=
"GetMask" type=
"long" overloaded=
"no"> 
17811         <autodoc>GetMask() -
> long
</autodoc> 
17813       <method name=
"GetItem" type=
"ListItem" overloaded=
"no"> 
17814         <autodoc>GetItem() -
> ListItem
</autodoc> 
17816       <method name=
"GetCacheFrom" type=
"long" overloaded=
"no"> 
17817         <autodoc>GetCacheFrom() -
> long
</autodoc> 
17819       <method name=
"GetCacheTo" type=
"long" overloaded=
"no"> 
17820         <autodoc>GetCacheTo() -
> long
</autodoc> 
17822       <method name=
"IsEditCancelled" type=
"bool" overloaded=
"no"> 
17823         <autodoc>IsEditCancelled() -
> bool
</autodoc> 
17825       <method name=
"SetEditCanceled" type=
"" overloaded=
"no"> 
17826         <autodoc>SetEditCanceled(bool editCancelled)
</autodoc> 
17828           <param name=
"editCancelled" type=
"bool" default=
""/> 
17834 EVT_LIST_BEGIN_DRAG        = wx.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_DRAG       , 
1)
 
17835 EVT_LIST_BEGIN_RDRAG       = wx.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_RDRAG      , 
1)
 
17836 EVT_LIST_BEGIN_LABEL_EDIT  = wx.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT , 
1)
 
17837 EVT_LIST_END_LABEL_EDIT    = wx.PyEventBinder(wxEVT_COMMAND_LIST_END_LABEL_EDIT   , 
1)
 
17838 EVT_LIST_DELETE_ITEM       = wx.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ITEM      , 
1)
 
17839 EVT_LIST_DELETE_ALL_ITEMS  = wx.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS , 
1)
 
17840 EVT_LIST_GET_INFO          = wx.PyEventBinder(wxEVT_COMMAND_LIST_GET_INFO         , 
1)
 
17841 EVT_LIST_SET_INFO          = wx.PyEventBinder(wxEVT_COMMAND_LIST_SET_INFO         , 
1)
 
17842 EVT_LIST_ITEM_SELECTED     = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_SELECTED    , 
1)
 
17843 EVT_LIST_ITEM_DESELECTED   = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_DESELECTED  , 
1)
 
17844 EVT_LIST_KEY_DOWN          = wx.PyEventBinder(wxEVT_COMMAND_LIST_KEY_DOWN         , 
1)
 
17845 EVT_LIST_INSERT_ITEM       = wx.PyEventBinder(wxEVT_COMMAND_LIST_INSERT_ITEM      , 
1)
 
17846 EVT_LIST_COL_CLICK         = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_CLICK        , 
1)
 
17847 EVT_LIST_ITEM_RIGHT_CLICK  = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK , 
1)
 
17848 EVT_LIST_ITEM_MIDDLE_CLICK = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK, 
1)
 
17849 EVT_LIST_ITEM_ACTIVATED    = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_ACTIVATED   , 
1)
 
17850 EVT_LIST_CACHE_HINT        = wx.PyEventBinder(wxEVT_COMMAND_LIST_CACHE_HINT       , 
1)
 
17851 EVT_LIST_COL_RIGHT_CLICK   = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_RIGHT_CLICK  , 
1)
 
17852 EVT_LIST_COL_BEGIN_DRAG    = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG   , 
1)
 
17853 EVT_LIST_COL_DRAGGING      = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_DRAGGING     , 
1)
 
17854 EVT_LIST_COL_END_DRAG      = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_END_DRAG     , 
1)
 
17855 EVT_LIST_ITEM_FOCUSED      = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_FOCUSED     , 
1)
 
17858 #---------------------------------------------------------------------------
 
17860     <class name=
"ListCtrl" oldname=
"wxPyListCtrl" module=
"controls"> 
17861       <baseclass name=
"Control"/> 
17862       <constructor name=
"wxPyListCtrl" overloaded=
"no"> 
17863         <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
17864     Size size=DefaultSize, long style=LC_ICON, 
 
17865     Validator validator=DefaultValidator, String name=ListCtrlNameStr) -
> ListCtrl
</autodoc> 
17867           <param name=
"parent" type=
"Window" default=
""/> 
17868           <param name=
"id" type=
"int" default=
"-1"/> 
17869           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
17870           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
17871           <param name=
"style" type=
"long" default=
"wxLC_ICON"/> 
17872           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
17873           <param name=
"name" type=
"String" default=
"wxPyListCtrlNameStr"/> 
17876       <constructor name=
"PreListCtrl" overloaded=
"no"> 
17877         <autodoc>PreListCtrl() -
> ListCtrl
</autodoc> 
17879       <method name=
"Create" type=
"bool" overloaded=
"no"> 
17880         <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
17881     Size size=DefaultSize, long style=LC_ICON, 
 
17882     Validator validator=DefaultValidator, String name=ListCtrlNameStr) -
> bool
</autodoc> 
17883         <docstring>Do the 
2nd phase and create the GUI control.
</docstring> 
17885           <param name=
"parent" type=
"Window" default=
""/> 
17886           <param name=
"id" type=
"int" default=
"-1"/> 
17887           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
17888           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
17889           <param name=
"style" type=
"long" default=
"wxLC_ICON"/> 
17890           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
17891           <param name=
"name" type=
"String" default=
"wxPyListCtrlNameStr"/> 
17894       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
17895         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
17897           <param name=
"self" type=
"PyObject" default=
""/> 
17898           <param name=
"_class" type=
"PyObject" default=
""/> 
17901       <method name=
"SetForegroundColour" type=
"bool" overloaded=
"no"> 
17902         <autodoc>SetForegroundColour(Colour col) -
> bool
</autodoc> 
17904           <param name=
"col" type=
"Colour" default=
""/> 
17907       <method name=
"SetBackgroundColour" type=
"bool" overloaded=
"no"> 
17908         <autodoc>SetBackgroundColour(Colour col) -
> bool
</autodoc> 
17910           <param name=
"col" type=
"Colour" default=
""/> 
17913       <method name=
"GetColumn" type=
"ListItem" overloaded=
"no"> 
17914         <autodoc>GetColumn(int col) -
> ListItem
</autodoc> 
17916           <param name=
"col" type=
"int" default=
""/> 
17919       <method name=
"SetColumn" type=
"bool" overloaded=
"no"> 
17920         <autodoc>SetColumn(int col, ListItem item) -
> bool
</autodoc> 
17922           <param name=
"col" type=
"int" default=
""/> 
17923           <param name=
"item" type=
"ListItem" default=
""/> 
17926       <method name=
"GetColumnWidth" type=
"int" overloaded=
"no"> 
17927         <autodoc>GetColumnWidth(int col) -
> int
</autodoc> 
17929           <param name=
"col" type=
"int" default=
""/> 
17932       <method name=
"SetColumnWidth" type=
"bool" overloaded=
"no"> 
17933         <autodoc>SetColumnWidth(int col, int width) -
> bool
</autodoc> 
17935           <param name=
"col" type=
"int" default=
""/> 
17936           <param name=
"width" type=
"int" default=
""/> 
17939       <method name=
"GetCountPerPage" type=
"int" overloaded=
"no"> 
17940         <autodoc>GetCountPerPage() -
> int
</autodoc> 
17942       <method name=
"GetViewRect" type=
"Rect" overloaded=
"no"> 
17943         <autodoc>GetViewRect() -
> Rect
</autodoc> 
17945       <method name=
"GetItem" type=
"ListItem" overloaded=
"no"> 
17946         <autodoc>GetItem(long itemId, int col=
0) -
> ListItem
</autodoc> 
17948           <param name=
"itemId" type=
"long" default=
""/> 
17949           <param name=
"col" type=
"int" default=
"0"/> 
17952       <method name=
"SetItem" type=
"bool" overloaded=
"no"> 
17953         <autodoc>SetItem(ListItem info) -
> bool
</autodoc> 
17955           <param name=
"info" type=
"ListItem" default=
""/> 
17958       <method name=
"SetStringItem" type=
"long" overloaded=
"no"> 
17959         <autodoc>SetStringItem(long index, int col, String label, int imageId=-
1) -
> long
</autodoc> 
17961           <param name=
"index" type=
"long" default=
""/> 
17962           <param name=
"col" type=
"int" default=
""/> 
17963           <param name=
"label" type=
"String" default=
""/> 
17964           <param name=
"imageId" type=
"int" default=
"-1"/> 
17967       <method name=
"GetItemState" type=
"int" overloaded=
"no"> 
17968         <autodoc>GetItemState(long item, long stateMask) -
> int
</autodoc> 
17970           <param name=
"item" type=
"long" default=
""/> 
17971           <param name=
"stateMask" type=
"long" default=
""/> 
17974       <method name=
"SetItemState" type=
"bool" overloaded=
"no"> 
17975         <autodoc>SetItemState(long item, long state, long stateMask) -
> bool
</autodoc> 
17977           <param name=
"item" type=
"long" default=
""/> 
17978           <param name=
"state" type=
"long" default=
""/> 
17979           <param name=
"stateMask" type=
"long" default=
""/> 
17982       <method name=
"SetItemImage" type=
"bool" overloaded=
"no"> 
17983         <autodoc>SetItemImage(long item, int image, int selImage) -
> bool
</autodoc> 
17985           <param name=
"item" type=
"long" default=
""/> 
17986           <param name=
"image" type=
"int" default=
""/> 
17987           <param name=
"selImage" type=
"int" default=
""/> 
17990       <method name=
"GetItemText" type=
"String" overloaded=
"no"> 
17991         <autodoc>GetItemText(long item) -
> String
</autodoc> 
17993           <param name=
"item" type=
"long" default=
""/> 
17996       <method name=
"SetItemText" type=
"" overloaded=
"no"> 
17997         <autodoc>SetItemText(long item, String str)
</autodoc> 
17999           <param name=
"item" type=
"long" default=
""/> 
18000           <param name=
"str" type=
"String" default=
""/> 
18003       <method name=
"GetItemData" type=
"long" overloaded=
"no"> 
18004         <autodoc>GetItemData(long item) -
> long
</autodoc> 
18006           <param name=
"item" type=
"long" default=
""/> 
18009       <method name=
"SetItemData" type=
"bool" overloaded=
"no"> 
18010         <autodoc>SetItemData(long item, long data) -
> bool
</autodoc> 
18012           <param name=
"item" type=
"long" default=
""/> 
18013           <param name=
"data" type=
"long" default=
""/> 
18016       <method name=
"GetItemPosition" type=
"Point" overloaded=
"no"> 
18017         <autodoc>GetItemPosition(long item) -
> Point
</autodoc> 
18019           <param name=
"item" type=
"long" default=
""/> 
18022       <method name=
"GetItemRect" type=
"Rect" overloaded=
"no"> 
18023         <autodoc>GetItemRect(long item, int code=LIST_RECT_BOUNDS) -
> Rect
</autodoc> 
18025           <param name=
"item" type=
"long" default=
""/> 
18026           <param name=
"code" type=
"int" default=
"wxLIST_RECT_BOUNDS"/> 
18029       <method name=
"SetItemPosition" type=
"bool" overloaded=
"no"> 
18030         <autodoc>SetItemPosition(long item, Point pos) -
> bool
</autodoc> 
18032           <param name=
"item" type=
"long" default=
""/> 
18033           <param name=
"pos" type=
"Point" default=
""/> 
18036       <method name=
"GetItemCount" type=
"int" overloaded=
"no"> 
18037         <autodoc>GetItemCount() -
> int
</autodoc> 
18039       <method name=
"GetColumnCount" type=
"int" overloaded=
"no"> 
18040         <autodoc>GetColumnCount() -
> int
</autodoc> 
18042       <method name=
"GetItemSpacing" type=
"Size" overloaded=
"no"> 
18043         <autodoc>GetItemSpacing() -
> Size
</autodoc> 
18045       <method name=
"SetItemSpacing" type=
"" overloaded=
"no"> 
18046         <autodoc>SetItemSpacing(int spacing, bool isSmall=False)
</autodoc> 
18048           <param name=
"spacing" type=
"int" default=
""/> 
18049           <param name=
"isSmall" type=
"bool" default=
"False"/> 
18052       <method name=
"GetSelectedItemCount" type=
"int" overloaded=
"no"> 
18053         <autodoc>GetSelectedItemCount() -
> int
</autodoc> 
18055       <method name=
"GetTextColour" type=
"Colour" overloaded=
"no"> 
18056         <autodoc>GetTextColour() -
> Colour
</autodoc> 
18058       <method name=
"SetTextColour" type=
"" overloaded=
"no"> 
18059         <autodoc>SetTextColour(Colour col)
</autodoc> 
18061           <param name=
"col" type=
"Colour" default=
""/> 
18064       <method name=
"GetTopItem" type=
"long" overloaded=
"no"> 
18065         <autodoc>GetTopItem() -
> long
</autodoc> 
18067       <method name=
"SetSingleStyle" type=
"" overloaded=
"no"> 
18068         <autodoc>SetSingleStyle(long style, bool add=True)
</autodoc> 
18070           <param name=
"style" type=
"long" default=
""/> 
18071           <param name=
"add" type=
"bool" default=
"True"/> 
18074       <method name=
"SetWindowStyleFlag" type=
"" overloaded=
"no"> 
18075         <autodoc>SetWindowStyleFlag(long style)
</autodoc> 
18076         <docstring>Sets the style of the window. Please note that some styles cannot be
 
18077 changed after the window creation and that Refresh() might be called
 
18078 after changing the others for the change to take place immediately.
</docstring> 
18080           <param name=
"style" type=
"long" default=
""/> 
18083       <method name=
"GetNextItem" type=
"long" overloaded=
"no"> 
18084         <autodoc>GetNextItem(long item, int geometry=LIST_NEXT_ALL, int state=LIST_STATE_DONTCARE) -
> long
</autodoc> 
18086           <param name=
"item" type=
"long" default=
""/> 
18087           <param name=
"geometry" type=
"int" default=
"wxLIST_NEXT_ALL"/> 
18088           <param name=
"state" type=
"int" default=
"wxLIST_STATE_DONTCARE"/> 
18091       <method name=
"GetImageList" type=
"ImageList" overloaded=
"no"> 
18092         <autodoc>GetImageList(int which) -
> ImageList
</autodoc> 
18094           <param name=
"which" type=
"int" default=
""/> 
18097       <method name=
"SetImageList" type=
"" overloaded=
"no"> 
18098         <autodoc>SetImageList(ImageList imageList, int which)
</autodoc> 
18100           <param name=
"imageList" type=
"ImageList" default=
""/> 
18101           <param name=
"which" type=
"int" default=
""/> 
18104       <method name=
"AssignImageList" type=
"" overloaded=
"no"> 
18105         <autodoc>AssignImageList(ImageList imageList, int which)
</autodoc> 
18107           <param name=
"imageList" type=
"ImageList" default=
""/> 
18108           <param name=
"which" type=
"int" default=
""/> 
18111       <method name=
"InReportView" type=
"bool" overloaded=
"no"> 
18112         <autodoc>InReportView() -
> bool
</autodoc> 
18114       <method name=
"IsVirtual" type=
"bool" overloaded=
"no"> 
18115         <autodoc>IsVirtual() -
> bool
</autodoc> 
18117       <method name=
"RefreshItem" type=
"" overloaded=
"no"> 
18118         <autodoc>RefreshItem(long item)
</autodoc> 
18120           <param name=
"item" type=
"long" default=
""/> 
18123       <method name=
"RefreshItems" type=
"" overloaded=
"no"> 
18124         <autodoc>RefreshItems(long itemFrom, long itemTo)
</autodoc> 
18126           <param name=
"itemFrom" type=
"long" default=
""/> 
18127           <param name=
"itemTo" type=
"long" default=
""/> 
18130       <method name=
"Arrange" type=
"bool" overloaded=
"no"> 
18131         <autodoc>Arrange(int flag=LIST_ALIGN_DEFAULT) -
> bool
</autodoc> 
18133           <param name=
"flag" type=
"int" default=
"wxLIST_ALIGN_DEFAULT"/> 
18136       <method name=
"DeleteItem" type=
"bool" overloaded=
"no"> 
18137         <autodoc>DeleteItem(long item) -
> bool
</autodoc> 
18139           <param name=
"item" type=
"long" default=
""/> 
18142       <method name=
"DeleteAllItems" type=
"bool" overloaded=
"no"> 
18143         <autodoc>DeleteAllItems() -
> bool
</autodoc> 
18145       <method name=
"DeleteColumn" type=
"bool" overloaded=
"no"> 
18146         <autodoc>DeleteColumn(int col) -
> bool
</autodoc> 
18148           <param name=
"col" type=
"int" default=
""/> 
18151       <method name=
"DeleteAllColumns" type=
"bool" overloaded=
"no"> 
18152         <autodoc>DeleteAllColumns() -
> bool
</autodoc> 
18154       <method name=
"ClearAll" type=
"" overloaded=
"no"> 
18155         <autodoc>ClearAll()
</autodoc> 
18157       <method name=
"EditLabel" type=
"" overloaded=
"no"> 
18158         <autodoc>EditLabel(long item)
</autodoc> 
18160           <param name=
"item" type=
"long" default=
""/> 
18163       <method name=
"EnsureVisible" type=
"bool" overloaded=
"no"> 
18164         <autodoc>EnsureVisible(long item) -
> bool
</autodoc> 
18166           <param name=
"item" type=
"long" default=
""/> 
18169       <method name=
"FindItem" type=
"long" overloaded=
"no"> 
18170         <autodoc>FindItem(long start, String str, bool partial=False) -
> long
</autodoc> 
18172           <param name=
"start" type=
"long" default=
""/> 
18173           <param name=
"str" type=
"String" default=
""/> 
18174           <param name=
"partial" type=
"bool" default=
"False"/> 
18177       <method name=
"FindItemData" type=
"long" overloaded=
"no"> 
18178         <autodoc>FindItemData(long start, long data) -
> long
</autodoc> 
18180           <param name=
"start" type=
"long" default=
""/> 
18181           <param name=
"data" type=
"long" default=
""/> 
18184       <method name=
"FindItemAtPos" type=
"long" overloaded=
"no"> 
18185         <autodoc>FindItemAtPos(long start, Point pt, int direction) -
> long
</autodoc> 
18187           <param name=
"start" type=
"long" default=
""/> 
18188           <param name=
"pt" type=
"Point" default=
""/> 
18189           <param name=
"direction" type=
"int" default=
""/> 
18192       <method name=
"HitTest" type=
"long" overloaded=
"no"> 
18193         <autodoc>HitTest(Point point) -
> (item, where)
</autodoc> 
18194         <docstring>Determines which item (if any) is at the specified point,
 
18195 giving details in the second return value (see wxLIST_HITTEST_... flags.)
</docstring> 
18197           <param name=
"point" type=
"Point" default=
""/> 
18198           <param name=
"OUTPUT" type=
"int" default=
""/> 
18201       <method name=
"InsertItem" type=
"long" overloaded=
"no"> 
18202         <autodoc>InsertItem(ListItem info) -
> long
</autodoc> 
18204           <param name=
"info" type=
"ListItem" default=
""/> 
18207       <method name=
"InsertStringItem" type=
"long" overloaded=
"no"> 
18208         <autodoc>InsertStringItem(long index, String label) -
> long
</autodoc> 
18210           <param name=
"index" type=
"long" default=
""/> 
18211           <param name=
"label" type=
"String" default=
""/> 
18214       <method name=
"InsertImageItem" type=
"long" overloaded=
"no"> 
18215         <autodoc>InsertImageItem(long index, int imageIndex) -
> long
</autodoc> 
18217           <param name=
"index" type=
"long" default=
""/> 
18218           <param name=
"imageIndex" type=
"int" default=
""/> 
18221       <method name=
"InsertImageStringItem" type=
"long" overloaded=
"no"> 
18222         <autodoc>InsertImageStringItem(long index, String label, int imageIndex) -
> long
</autodoc> 
18224           <param name=
"index" type=
"long" default=
""/> 
18225           <param name=
"label" type=
"String" default=
""/> 
18226           <param name=
"imageIndex" type=
"int" default=
""/> 
18229       <method name=
"InsertColumnInfo" type=
"long" overloaded=
"no"> 
18230         <autodoc>InsertColumnInfo(long col, ListItem info) -
> long
</autodoc> 
18232           <param name=
"col" type=
"long" default=
""/> 
18233           <param name=
"info" type=
"ListItem" default=
""/> 
18236       <method name=
"InsertColumn" type=
"long" overloaded=
"no"> 
18237         <autodoc>InsertColumn(long col, String heading, int format=LIST_FORMAT_LEFT, 
 
18238     int width=-
1) -
> long
</autodoc> 
18240           <param name=
"col" type=
"long" default=
""/> 
18241           <param name=
"heading" type=
"String" default=
""/> 
18242           <param name=
"format" type=
"int" default=
"wxLIST_FORMAT_LEFT"/> 
18243           <param name=
"width" type=
"int" default=
"-1"/> 
18246       <method name=
"SetItemCount" type=
"" overloaded=
"no"> 
18247         <autodoc>SetItemCount(long count)
</autodoc> 
18249           <param name=
"count" type=
"long" default=
""/> 
18252       <method name=
"ScrollList" type=
"bool" overloaded=
"no"> 
18253         <autodoc>ScrollList(int dx, int dy) -
> bool
</autodoc> 
18255           <param name=
"dx" type=
"int" default=
""/> 
18256           <param name=
"dy" type=
"int" default=
""/> 
18259       <method name=
"SetItemTextColour" type=
"" overloaded=
"no"> 
18260         <autodoc>SetItemTextColour(long item, Colour col)
</autodoc> 
18262           <param name=
"item" type=
"long" default=
""/> 
18263           <param name=
"col" type=
"Colour" default=
""/> 
18266       <method name=
"GetItemTextColour" type=
"Colour" overloaded=
"no"> 
18267         <autodoc>GetItemTextColour(long item) -
> Colour
</autodoc> 
18269           <param name=
"item" type=
"long" default=
""/> 
18272       <method name=
"SetItemBackgroundColour" type=
"" overloaded=
"no"> 
18273         <autodoc>SetItemBackgroundColour(long item, Colour col)
</autodoc> 
18275           <param name=
"item" type=
"long" default=
""/> 
18276           <param name=
"col" type=
"Colour" default=
""/> 
18279       <method name=
"GetItemBackgroundColour" type=
"Colour" overloaded=
"no"> 
18280         <autodoc>GetItemBackgroundColour(long item) -
> Colour
</autodoc> 
18282           <param name=
"item" type=
"long" default=
""/> 
18285       <method name=
"SortItems" type=
"bool" overloaded=
"no"> 
18286         <autodoc>SortItems(PyObject func) -
> bool
</autodoc> 
18288           <param name=
"func" type=
"PyObject" default=
""/> 
18291       <method name=
"GetMainWindow" type=
"Window" overloaded=
"no"> 
18292         <autodoc>GetMainWindow() -
> Window
</autodoc> 
18296 #---------------------------------------------------------------------------
 
18298     <class name=
"ListView" oldname=
"wxListView" module=
"controls"> 
18299       <baseclass name=
"ListCtrl"/> 
18300       <constructor name=
"ListView" overloaded=
"no"> 
18301         <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
18302     Size size=DefaultSize, long style=LC_REPORT, 
 
18303     Validator validator=DefaultValidator, String name=ListCtrlNameStr) -
> ListView
</autodoc> 
18305           <param name=
"parent" type=
"Window" default=
""/> 
18306           <param name=
"id" type=
"int" default=
"-1"/> 
18307           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
18308           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
18309           <param name=
"style" type=
"long" default=
"wxLC_REPORT"/> 
18310           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
18311           <param name=
"name" type=
"String" default=
"wxPyListCtrlNameStr"/> 
18314       <constructor name=
"PreListView" overloaded=
"no"> 
18315         <autodoc>PreListView() -
> ListView
</autodoc> 
18317       <method name=
"Create" type=
"bool" overloaded=
"no"> 
18318         <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
18319     Size size=DefaultSize, long style=LC_REPORT, 
 
18320     Validator validator=DefaultValidator, String name=ListCtrlNameStr) -
> bool
</autodoc> 
18321         <docstring>Do the 
2nd phase and create the GUI control.
</docstring> 
18323           <param name=
"parent" type=
"Window" default=
""/> 
18324           <param name=
"id" type=
"int" default=
"-1"/> 
18325           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
18326           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
18327           <param name=
"style" type=
"long" default=
"wxLC_REPORT"/> 
18328           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
18329           <param name=
"name" type=
"String" default=
"wxPyListCtrlNameStr"/> 
18332       <method name=
"Select" type=
"" overloaded=
"no"> 
18333         <autodoc>Select(long n, bool on=True)
</autodoc> 
18335           <param name=
"n" type=
"long" default=
""/> 
18336           <param name=
"on" type=
"bool" default=
"True"/> 
18339       <method name=
"Focus" type=
"" overloaded=
"no"> 
18340         <autodoc>Focus(long index)
</autodoc> 
18342           <param name=
"index" type=
"long" default=
""/> 
18345       <method name=
"GetFocusedItem" type=
"long" overloaded=
"no"> 
18346         <autodoc>GetFocusedItem() -
> long
</autodoc> 
18348       <method name=
"GetNextSelected" type=
"long" overloaded=
"no"> 
18349         <autodoc>GetNextSelected(long item) -
> long
</autodoc> 
18351           <param name=
"item" type=
"long" default=
""/> 
18354       <method name=
"GetFirstSelected" type=
"long" overloaded=
"no"> 
18355         <autodoc>GetFirstSelected() -
> long
</autodoc> 
18357       <method name=
"IsSelected" type=
"bool" overloaded=
"no"> 
18358         <autodoc>IsSelected(long index) -
> bool
</autodoc> 
18360           <param name=
"index" type=
"long" default=
""/> 
18363       <method name=
"SetColumnImage" type=
"" overloaded=
"no"> 
18364         <autodoc>SetColumnImage(int col, int image)
</autodoc> 
18366           <param name=
"col" type=
"int" default=
""/> 
18367           <param name=
"image" type=
"int" default=
""/> 
18370       <method name=
"ClearColumnImage" type=
"" overloaded=
"no"> 
18371         <autodoc>ClearColumnImage(int col)
</autodoc> 
18373           <param name=
"col" type=
"int" default=
""/> 
18378 #---------------------------------------------------------------------------
 
18381 #---------------------------------------------------------------------------
 
18383     <class name=
"TreeItemId" oldname=
"wxTreeItemId" module=
"controls"> 
18384       <constructor name=
"TreeItemId" overloaded=
"no"> 
18385         <autodoc>__init__() -
> TreeItemId
</autodoc> 
18387       <destructor name=
"~wxTreeItemId" overloaded=
"no"> 
18388         <autodoc>__del__()
</autodoc> 
18390       <method name=
"IsOk" type=
"bool" overloaded=
"no"> 
18391         <autodoc>IsOk() -
> bool
</autodoc> 
18393       <method name=
"__eq__" type=
"bool" overloaded=
"no"> 
18394         <autodoc>__eq__(TreeItemId other) -
> bool
</autodoc> 
18396           <param name=
"other" type=
"TreeItemId" default=
""/> 
18399       <method name=
"__ne__" type=
"bool" overloaded=
"no"> 
18400         <autodoc>__ne__(TreeItemId other) -
> bool
</autodoc> 
18402           <param name=
"other" type=
"TreeItemId" default=
""/> 
18405       <property name=
"m_pItem" type=
"" readonly=
"no"/> 
18407     <class name=
"TreeItemData" oldname=
"wxPyTreeItemData" module=
"controls"> 
18408       <constructor name=
"wxPyTreeItemData" overloaded=
"no"> 
18409         <autodoc>__init__(PyObject obj=None) -
> TreeItemData
</autodoc> 
18411           <param name=
"obj" type=
"PyObject" default=
"NULL"/> 
18414       <method name=
"GetData" type=
"PyObject" overloaded=
"no"> 
18415         <autodoc>GetData() -
> PyObject
</autodoc> 
18417       <method name=
"SetData" type=
"" overloaded=
"no"> 
18418         <autodoc>SetData(PyObject obj)
</autodoc> 
18420           <param name=
"obj" type=
"PyObject" default=
""/> 
18423       <method name=
"GetId" type=
"TreeItemId" overloaded=
"no"> 
18424         <autodoc>GetId() -
> TreeItemId
</autodoc> 
18426       <method name=
"SetId" type=
"" overloaded=
"no"> 
18427         <autodoc>SetId(TreeItemId id)
</autodoc> 
18429           <param name=
"id" type=
"TreeItemId" default=
""/> 
18432       <method name=
"Destroy" type=
"" overloaded=
"no"> 
18433         <autodoc>Destroy()
</autodoc> 
18437 #---------------------------------------------------------------------------
 
18441 EVT_TREE_BEGIN_DRAG        = wx.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_DRAG       , 
1)
 
18442 EVT_TREE_BEGIN_RDRAG       = wx.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_RDRAG      , 
1)
 
18443 EVT_TREE_BEGIN_LABEL_EDIT  = wx.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT , 
1)
 
18444 EVT_TREE_END_LABEL_EDIT    = wx.PyEventBinder(wxEVT_COMMAND_TREE_END_LABEL_EDIT   , 
1)
 
18445 EVT_TREE_DELETE_ITEM       = wx.PyEventBinder(wxEVT_COMMAND_TREE_DELETE_ITEM      , 
1)
 
18446 EVT_TREE_GET_INFO          = wx.PyEventBinder(wxEVT_COMMAND_TREE_GET_INFO         , 
1)
 
18447 EVT_TREE_SET_INFO          = wx.PyEventBinder(wxEVT_COMMAND_TREE_SET_INFO         , 
1)
 
18448 EVT_TREE_ITEM_EXPANDED     = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_EXPANDED    , 
1)
 
18449 EVT_TREE_ITEM_EXPANDING    = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_EXPANDING   , 
1)
 
18450 EVT_TREE_ITEM_COLLAPSED    = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_COLLAPSED   , 
1)
 
18451 EVT_TREE_ITEM_COLLAPSING   = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_COLLAPSING  , 
1)
 
18452 EVT_TREE_SEL_CHANGED       = wx.PyEventBinder(wxEVT_COMMAND_TREE_SEL_CHANGED      , 
1)
 
18453 EVT_TREE_SEL_CHANGING      = wx.PyEventBinder(wxEVT_COMMAND_TREE_SEL_CHANGING     , 
1)
 
18454 EVT_TREE_KEY_DOWN          = wx.PyEventBinder(wxEVT_COMMAND_TREE_KEY_DOWN         , 
1)
 
18455 EVT_TREE_ITEM_ACTIVATED    = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_ACTIVATED   , 
1)
 
18456 EVT_TREE_ITEM_RIGHT_CLICK  = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK , 
1)
 
18457 EVT_TREE_ITEM_MIDDLE_CLICK = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK, 
1)
 
18458 EVT_TREE_END_DRAG          = wx.PyEventBinder(wxEVT_COMMAND_TREE_END_DRAG         , 
1)
 
18459 EVT_TREE_STATE_IMAGE_CLICK = wx.PyEventBinder(wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK, 
1)
 
18460 EVT_TREE_ITEM_GETTOOLTIP   = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP,   
1)
 
18462     <class name=
"TreeEvent" oldname=
"wxTreeEvent" module=
"controls"> 
18463       <baseclass name=
"NotifyEvent"/> 
18464       <constructor name=
"TreeEvent" overloaded=
"no"> 
18465         <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int id=
0) -
> TreeEvent
</autodoc> 
18467           <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/> 
18468           <param name=
"id" type=
"int" default=
"0"/> 
18471       <method name=
"GetItem" type=
"TreeItemId" overloaded=
"no"> 
18472         <autodoc>GetItem() -
> TreeItemId
</autodoc> 
18474       <method name=
"SetItem" type=
"" overloaded=
"no"> 
18475         <autodoc>SetItem(TreeItemId item)
</autodoc> 
18477           <param name=
"item" type=
"TreeItemId" default=
""/> 
18480       <method name=
"GetOldItem" type=
"TreeItemId" overloaded=
"no"> 
18481         <autodoc>GetOldItem() -
> TreeItemId
</autodoc> 
18483       <method name=
"SetOldItem" type=
"" overloaded=
"no"> 
18484         <autodoc>SetOldItem(TreeItemId item)
</autodoc> 
18486           <param name=
"item" type=
"TreeItemId" default=
""/> 
18489       <method name=
"GetPoint" type=
"Point" overloaded=
"no"> 
18490         <autodoc>GetPoint() -
> Point
</autodoc> 
18492       <method name=
"SetPoint" type=
"" overloaded=
"no"> 
18493         <autodoc>SetPoint(Point pt)
</autodoc> 
18495           <param name=
"pt" type=
"Point" default=
""/> 
18498       <method name=
"GetKeyEvent" type=
"KeyEvent" overloaded=
"no"> 
18499         <autodoc>GetKeyEvent() -
> KeyEvent
</autodoc> 
18501       <method name=
"GetKeyCode" type=
"int" overloaded=
"no"> 
18502         <autodoc>GetKeyCode() -
> int
</autodoc> 
18504       <method name=
"SetKeyEvent" type=
"" overloaded=
"no"> 
18505         <autodoc>SetKeyEvent(KeyEvent evt)
</autodoc> 
18507           <param name=
"evt" type=
"KeyEvent" default=
""/> 
18510       <method name=
"GetLabel" type=
"String" overloaded=
"no"> 
18511         <autodoc>GetLabel() -
> String
</autodoc> 
18513       <method name=
"SetLabel" type=
"" overloaded=
"no"> 
18514         <autodoc>SetLabel(String label)
</autodoc> 
18516           <param name=
"label" type=
"String" default=
""/> 
18519       <method name=
"IsEditCancelled" type=
"bool" overloaded=
"no"> 
18520         <autodoc>IsEditCancelled() -
> bool
</autodoc> 
18522       <method name=
"SetEditCanceled" type=
"" overloaded=
"no"> 
18523         <autodoc>SetEditCanceled(bool editCancelled)
</autodoc> 
18525           <param name=
"editCancelled" type=
"bool" default=
""/> 
18528       <method name=
"SetToolTip" type=
"" overloaded=
"no"> 
18529         <autodoc>SetToolTip(String toolTip)
</autodoc> 
18531           <param name=
"toolTip" type=
"String" default=
""/> 
18536 #---------------------------------------------------------------------------
 
18538     <class name=
"TreeCtrl" oldname=
"wxPyTreeCtrl" module=
"controls"> 
18539       <baseclass name=
"Control"/> 
18540       <constructor name=
"wxPyTreeCtrl" overloaded=
"no"> 
18541         <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
18542     Size size=DefaultSize, long style=TR_DEFAULT_STYLE, 
 
18543     Validator validator=DefaultValidator, 
 
18544     String name=TreeCtrlNameStr) -
> TreeCtrl
</autodoc> 
18546           <param name=
"parent" type=
"Window" default=
""/> 
18547           <param name=
"id" type=
"int" default=
"-1"/> 
18548           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
18549           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
18550           <param name=
"style" type=
"long" default=
"wxTR_DEFAULT_STYLE"/> 
18551           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
18552           <param name=
"name" type=
"String" default=
"wxPyTreeCtrlNameStr"/> 
18555       <constructor name=
"PreTreeCtrl" overloaded=
"no"> 
18556         <autodoc>PreTreeCtrl() -
> TreeCtrl
</autodoc> 
18558       <method name=
"Create" type=
"bool" overloaded=
"no"> 
18559         <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
18560     Size size=DefaultSize, long style=TR_DEFAULT_STYLE, 
 
18561     Validator validator=DefaultValidator, 
 
18562     String name=TreeCtrlNameStr) -
> bool
</autodoc> 
18563         <docstring>Do the 
2nd phase and create the GUI control.
</docstring> 
18565           <param name=
"parent" type=
"Window" default=
""/> 
18566           <param name=
"id" type=
"int" default=
"-1"/> 
18567           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
18568           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
18569           <param name=
"style" type=
"long" default=
"wxTR_DEFAULT_STYLE"/> 
18570           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
18571           <param name=
"name" type=
"String" default=
"wxPyTreeCtrlNameStr"/> 
18574       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
18575         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
18577           <param name=
"self" type=
"PyObject" default=
""/> 
18578           <param name=
"_class" type=
"PyObject" default=
""/> 
18581       <method name=
"GetCount" type=
"size_t" overloaded=
"no"> 
18582         <autodoc>GetCount() -
> size_t
</autodoc> 
18584       <method name=
"GetIndent" type=
"unsigned int" overloaded=
"no"> 
18585         <autodoc>GetIndent() -
> unsigned int
</autodoc> 
18587       <method name=
"SetIndent" type=
"" overloaded=
"no"> 
18588         <autodoc>SetIndent(unsigned int indent)
</autodoc> 
18590           <param name=
"indent" type=
"unsigned int" default=
""/> 
18593       <method name=
"GetSpacing" type=
"unsigned int" overloaded=
"no"> 
18594         <autodoc>GetSpacing() -
> unsigned int
</autodoc> 
18596       <method name=
"SetSpacing" type=
"" overloaded=
"no"> 
18597         <autodoc>SetSpacing(unsigned int spacing)
</autodoc> 
18599           <param name=
"spacing" type=
"unsigned int" default=
""/> 
18602       <method name=
"GetImageList" type=
"ImageList" overloaded=
"no"> 
18603         <autodoc>GetImageList() -
> ImageList
</autodoc> 
18605       <method name=
"GetStateImageList" type=
"ImageList" overloaded=
"no"> 
18606         <autodoc>GetStateImageList() -
> ImageList
</autodoc> 
18608       <method name=
"SetImageList" type=
"" overloaded=
"no"> 
18609         <autodoc>SetImageList(ImageList imageList)
</autodoc> 
18611           <param name=
"imageList" type=
"ImageList" default=
""/> 
18614       <method name=
"SetStateImageList" type=
"" overloaded=
"no"> 
18615         <autodoc>SetStateImageList(ImageList imageList)
</autodoc> 
18617           <param name=
"imageList" type=
"ImageList" default=
""/> 
18620       <method name=
"AssignImageList" type=
"" overloaded=
"no"> 
18621         <autodoc>AssignImageList(ImageList imageList)
</autodoc> 
18623           <param name=
"imageList" type=
"ImageList" default=
""/> 
18626       <method name=
"AssignStateImageList" type=
"" overloaded=
"no"> 
18627         <autodoc>AssignStateImageList(ImageList imageList)
</autodoc> 
18629           <param name=
"imageList" type=
"ImageList" default=
""/> 
18632       <method name=
"GetItemText" type=
"String" overloaded=
"no"> 
18633         <autodoc>GetItemText(TreeItemId item) -
> String
</autodoc> 
18635           <param name=
"item" type=
"TreeItemId" default=
""/> 
18638       <method name=
"GetItemImage" type=
"int" overloaded=
"no"> 
18639         <autodoc>GetItemImage(TreeItemId item, int which=TreeItemIcon_Normal) -
> int
</autodoc> 
18641           <param name=
"item" type=
"TreeItemId" default=
""/> 
18642           <param name=
"which" type=
"wxTreeItemIcon" default=
"wxTreeItemIcon_Normal"/> 
18645       <method name=
"GetItemData" type=
"TreeItemData" overloaded=
"no"> 
18646         <autodoc>GetItemData(TreeItemId item) -
> TreeItemData
</autodoc> 
18648           <param name=
"item" type=
"TreeItemId" default=
""/> 
18651       <method name=
"GetItemPyData" type=
"PyObject" overloaded=
"no"> 
18652         <autodoc>GetItemPyData(TreeItemId item) -
> PyObject
</autodoc> 
18654           <param name=
"item" type=
"TreeItemId" default=
""/> 
18657       <method name=
"GetItemTextColour" type=
"Colour" overloaded=
"no"> 
18658         <autodoc>GetItemTextColour(TreeItemId item) -
> Colour
</autodoc> 
18660           <param name=
"item" type=
"TreeItemId" default=
""/> 
18663       <method name=
"GetItemBackgroundColour" type=
"Colour" overloaded=
"no"> 
18664         <autodoc>GetItemBackgroundColour(TreeItemId item) -
> Colour
</autodoc> 
18666           <param name=
"item" type=
"TreeItemId" default=
""/> 
18669       <method name=
"GetItemFont" type=
"Font" overloaded=
"no"> 
18670         <autodoc>GetItemFont(TreeItemId item) -
> Font
</autodoc> 
18672           <param name=
"item" type=
"TreeItemId" default=
""/> 
18675       <method name=
"SetItemText" type=
"" overloaded=
"no"> 
18676         <autodoc>SetItemText(TreeItemId item, String text)
</autodoc> 
18678           <param name=
"item" type=
"TreeItemId" default=
""/> 
18679           <param name=
"text" type=
"String" default=
""/> 
18682       <method name=
"SetItemImage" type=
"" overloaded=
"no"> 
18683         <autodoc>SetItemImage(TreeItemId item, int image, int which=TreeItemIcon_Normal)
</autodoc> 
18685           <param name=
"item" type=
"TreeItemId" default=
""/> 
18686           <param name=
"image" type=
"int" default=
""/> 
18687           <param name=
"which" type=
"wxTreeItemIcon" default=
"wxTreeItemIcon_Normal"/> 
18690       <method name=
"SetItemData" type=
"" overloaded=
"no"> 
18691         <autodoc>SetItemData(TreeItemId item, TreeItemData data)
</autodoc> 
18693           <param name=
"item" type=
"TreeItemId" default=
""/> 
18694           <param name=
"data" type=
"TreeItemData" default=
""/> 
18697       <method name=
"SetItemPyData" type=
"" overloaded=
"no"> 
18698         <autodoc>SetItemPyData(TreeItemId item, PyObject obj)
</autodoc> 
18700           <param name=
"item" type=
"TreeItemId" default=
""/> 
18701           <param name=
"obj" type=
"PyObject" default=
""/> 
18704       <method name=
"SetItemHasChildren" type=
"" overloaded=
"no"> 
18705         <autodoc>SetItemHasChildren(TreeItemId item, bool has=True)
</autodoc> 
18707           <param name=
"item" type=
"TreeItemId" default=
""/> 
18708           <param name=
"has" type=
"bool" default=
"True"/> 
18711       <method name=
"SetItemBold" type=
"" overloaded=
"no"> 
18712         <autodoc>SetItemBold(TreeItemId item, bool bold=True)
</autodoc> 
18714           <param name=
"item" type=
"TreeItemId" default=
""/> 
18715           <param name=
"bold" type=
"bool" default=
"True"/> 
18718       <method name=
"SetItemTextColour" type=
"" overloaded=
"no"> 
18719         <autodoc>SetItemTextColour(TreeItemId item, Colour col)
</autodoc> 
18721           <param name=
"item" type=
"TreeItemId" default=
""/> 
18722           <param name=
"col" type=
"Colour" default=
""/> 
18725       <method name=
"SetItemBackgroundColour" type=
"" overloaded=
"no"> 
18726         <autodoc>SetItemBackgroundColour(TreeItemId item, Colour col)
</autodoc> 
18728           <param name=
"item" type=
"TreeItemId" default=
""/> 
18729           <param name=
"col" type=
"Colour" default=
""/> 
18732       <method name=
"SetItemFont" type=
"" overloaded=
"no"> 
18733         <autodoc>SetItemFont(TreeItemId item, Font font)
</autodoc> 
18735           <param name=
"item" type=
"TreeItemId" default=
""/> 
18736           <param name=
"font" type=
"Font" default=
""/> 
18739       <method name=
"IsVisible" type=
"bool" overloaded=
"no"> 
18740         <autodoc>IsVisible(TreeItemId item) -
> bool
</autodoc> 
18742           <param name=
"item" type=
"TreeItemId" default=
""/> 
18745       <method name=
"ItemHasChildren" type=
"bool" overloaded=
"no"> 
18746         <autodoc>ItemHasChildren(TreeItemId item) -
> bool
</autodoc> 
18748           <param name=
"item" type=
"TreeItemId" default=
""/> 
18751       <method name=
"IsExpanded" type=
"bool" overloaded=
"no"> 
18752         <autodoc>IsExpanded(TreeItemId item) -
> bool
</autodoc> 
18754           <param name=
"item" type=
"TreeItemId" default=
""/> 
18757       <method name=
"IsSelected" type=
"bool" overloaded=
"no"> 
18758         <autodoc>IsSelected(TreeItemId item) -
> bool
</autodoc> 
18760           <param name=
"item" type=
"TreeItemId" default=
""/> 
18763       <method name=
"IsBold" type=
"bool" overloaded=
"no"> 
18764         <autodoc>IsBold(TreeItemId item) -
> bool
</autodoc> 
18766           <param name=
"item" type=
"TreeItemId" default=
""/> 
18769       <method name=
"GetChildrenCount" type=
"size_t" overloaded=
"no"> 
18770         <autodoc>GetChildrenCount(TreeItemId item, bool recursively=True) -
> size_t
</autodoc> 
18772           <param name=
"item" type=
"TreeItemId" default=
""/> 
18773           <param name=
"recursively" type=
"bool" default=
"True"/> 
18776       <method name=
"GetRootItem" type=
"TreeItemId" overloaded=
"no"> 
18777         <autodoc>GetRootItem() -
> TreeItemId
</autodoc> 
18779       <method name=
"GetSelection" type=
"TreeItemId" overloaded=
"no"> 
18780         <autodoc>GetSelection() -
> TreeItemId
</autodoc> 
18782       <method name=
"GetSelections" type=
"PyObject" overloaded=
"no"> 
18783         <autodoc>GetSelections() -
> PyObject
</autodoc> 
18785       <method name=
"GetItemParent" type=
"TreeItemId" overloaded=
"no"> 
18786         <autodoc>GetItemParent(TreeItemId item) -
> TreeItemId
</autodoc> 
18788           <param name=
"item" type=
"TreeItemId" default=
""/> 
18791       <method name=
"GetFirstChild" type=
"PyObject" overloaded=
"no"> 
18792         <autodoc>GetFirstChild(TreeItemId item) -
> PyObject
</autodoc> 
18794           <param name=
"item" type=
"TreeItemId" default=
""/> 
18797       <method name=
"GetNextChild" type=
"PyObject" overloaded=
"no"> 
18798         <autodoc>GetNextChild(TreeItemId item, void cookie) -
> PyObject
</autodoc> 
18800           <param name=
"item" type=
"TreeItemId" default=
""/> 
18801           <param name=
"cookie" type=
"" default=
""/> 
18804       <method name=
"GetLastChild" type=
"TreeItemId" overloaded=
"no"> 
18805         <autodoc>GetLastChild(TreeItemId item) -
> TreeItemId
</autodoc> 
18807           <param name=
"item" type=
"TreeItemId" default=
""/> 
18810       <method name=
"GetNextSibling" type=
"TreeItemId" overloaded=
"no"> 
18811         <autodoc>GetNextSibling(TreeItemId item) -
> TreeItemId
</autodoc> 
18813           <param name=
"item" type=
"TreeItemId" default=
""/> 
18816       <method name=
"GetPrevSibling" type=
"TreeItemId" overloaded=
"no"> 
18817         <autodoc>GetPrevSibling(TreeItemId item) -
> TreeItemId
</autodoc> 
18819           <param name=
"item" type=
"TreeItemId" default=
""/> 
18822       <method name=
"GetFirstVisibleItem" type=
"TreeItemId" overloaded=
"no"> 
18823         <autodoc>GetFirstVisibleItem() -
> TreeItemId
</autodoc> 
18825       <method name=
"GetNextVisible" type=
"TreeItemId" overloaded=
"no"> 
18826         <autodoc>GetNextVisible(TreeItemId item) -
> TreeItemId
</autodoc> 
18828           <param name=
"item" type=
"TreeItemId" default=
""/> 
18831       <method name=
"GetPrevVisible" type=
"TreeItemId" overloaded=
"no"> 
18832         <autodoc>GetPrevVisible(TreeItemId item) -
> TreeItemId
</autodoc> 
18834           <param name=
"item" type=
"TreeItemId" default=
""/> 
18837       <method name=
"AddRoot" type=
"TreeItemId" overloaded=
"no"> 
18838         <autodoc>AddRoot(String text, int image=-
1, int selectedImage=-
1, TreeItemData data=None) -
> TreeItemId
</autodoc> 
18840           <param name=
"text" type=
"String" default=
""/> 
18841           <param name=
"image" type=
"int" default=
"-1"/> 
18842           <param name=
"selectedImage" type=
"int" default=
"-1"/> 
18843           <param name=
"data" type=
"TreeItemData" default=
"NULL"/> 
18846       <method name=
"PrependItem" type=
"TreeItemId" overloaded=
"no"> 
18847         <autodoc>PrependItem(TreeItemId parent, String text, int image=-
1, int selectedImage=-
1, 
 
18848     TreeItemData data=None) -
> TreeItemId
</autodoc> 
18850           <param name=
"parent" type=
"TreeItemId" default=
""/> 
18851           <param name=
"text" type=
"String" default=
""/> 
18852           <param name=
"image" type=
"int" default=
"-1"/> 
18853           <param name=
"selectedImage" type=
"int" default=
"-1"/> 
18854           <param name=
"data" type=
"TreeItemData" default=
"NULL"/> 
18857       <method name=
"InsertItem" type=
"TreeItemId" overloaded=
"no"> 
18858         <autodoc>InsertItem(TreeItemId parent, TreeItemId idPrevious, String text, 
 
18859     int image=-
1, int selectedImage=-
1, TreeItemData data=None) -
> TreeItemId
</autodoc> 
18861           <param name=
"parent" type=
"TreeItemId" default=
""/> 
18862           <param name=
"idPrevious" type=
"TreeItemId" default=
""/> 
18863           <param name=
"text" type=
"String" default=
""/> 
18864           <param name=
"image" type=
"int" default=
"-1"/> 
18865           <param name=
"selectedImage" type=
"int" default=
"-1"/> 
18866           <param name=
"data" type=
"TreeItemData" default=
"NULL"/> 
18869       <method name=
"InsertItemBefore" type=
"TreeItemId" overloaded=
"no"> 
18870         <autodoc>InsertItemBefore(TreeItemId parent, size_t index, String text, int image=-
1, 
 
18871     int selectedImage=-
1, TreeItemData data=None) -
> TreeItemId
</autodoc> 
18873           <param name=
"parent" type=
"TreeItemId" default=
""/> 
18874           <param name=
"index" type=
"size_t" default=
""/> 
18875           <param name=
"text" type=
"String" default=
""/> 
18876           <param name=
"image" type=
"int" default=
"-1"/> 
18877           <param name=
"selectedImage" type=
"int" default=
"-1"/> 
18878           <param name=
"data" type=
"TreeItemData" default=
"NULL"/> 
18881       <method name=
"AppendItem" type=
"TreeItemId" overloaded=
"no"> 
18882         <autodoc>AppendItem(TreeItemId parent, String text, int image=-
1, int selectedImage=-
1, 
 
18883     TreeItemData data=None) -
> TreeItemId
</autodoc> 
18885           <param name=
"parent" type=
"TreeItemId" default=
""/> 
18886           <param name=
"text" type=
"String" default=
""/> 
18887           <param name=
"image" type=
"int" default=
"-1"/> 
18888           <param name=
"selectedImage" type=
"int" default=
"-1"/> 
18889           <param name=
"data" type=
"TreeItemData" default=
"NULL"/> 
18892       <method name=
"Delete" type=
"" overloaded=
"no"> 
18893         <autodoc>Delete(TreeItemId item)
</autodoc> 
18895           <param name=
"item" type=
"TreeItemId" default=
""/> 
18898       <method name=
"DeleteChildren" type=
"" overloaded=
"no"> 
18899         <autodoc>DeleteChildren(TreeItemId item)
</autodoc> 
18901           <param name=
"item" type=
"TreeItemId" default=
""/> 
18904       <method name=
"DeleteAllItems" type=
"" overloaded=
"no"> 
18905         <autodoc>DeleteAllItems()
</autodoc> 
18907       <method name=
"Expand" type=
"" overloaded=
"no"> 
18908         <autodoc>Expand(TreeItemId item)
</autodoc> 
18910           <param name=
"item" type=
"TreeItemId" default=
""/> 
18913       <method name=
"Collapse" type=
"" overloaded=
"no"> 
18914         <autodoc>Collapse(TreeItemId item)
</autodoc> 
18916           <param name=
"item" type=
"TreeItemId" default=
""/> 
18919       <method name=
"CollapseAndReset" type=
"" overloaded=
"no"> 
18920         <autodoc>CollapseAndReset(TreeItemId item)
</autodoc> 
18922           <param name=
"item" type=
"TreeItemId" default=
""/> 
18925       <method name=
"Toggle" type=
"" overloaded=
"no"> 
18926         <autodoc>Toggle(TreeItemId item)
</autodoc> 
18928           <param name=
"item" type=
"TreeItemId" default=
""/> 
18931       <method name=
"Unselect" type=
"" overloaded=
"no"> 
18932         <autodoc>Unselect()
</autodoc> 
18934       <method name=
"UnselectItem" type=
"" overloaded=
"no"> 
18935         <autodoc>UnselectItem(TreeItemId item)
</autodoc> 
18937           <param name=
"item" type=
"TreeItemId" default=
""/> 
18940       <method name=
"UnselectAll" type=
"" overloaded=
"no"> 
18941         <autodoc>UnselectAll()
</autodoc> 
18943       <method name=
"SelectItem" type=
"" overloaded=
"no"> 
18944         <autodoc>SelectItem(TreeItemId item, bool select=True)
</autodoc> 
18946           <param name=
"item" type=
"TreeItemId" default=
""/> 
18947           <param name=
"select" type=
"bool" default=
"True"/> 
18950       <method name=
"ToggleItemSelection" type=
"" overloaded=
"no"> 
18951         <autodoc>ToggleItemSelection(TreeItemId item)
</autodoc> 
18953           <param name=
"item" type=
"TreeItemId" default=
""/> 
18956       <method name=
"EnsureVisible" type=
"" overloaded=
"no"> 
18957         <autodoc>EnsureVisible(TreeItemId item)
</autodoc> 
18959           <param name=
"item" type=
"TreeItemId" default=
""/> 
18962       <method name=
"ScrollTo" type=
"" overloaded=
"no"> 
18963         <autodoc>ScrollTo(TreeItemId item)
</autodoc> 
18965           <param name=
"item" type=
"TreeItemId" default=
""/> 
18968       <method name=
"EditLabel" type=
"" overloaded=
"no"> 
18969         <autodoc>EditLabel(TreeItemId item)
</autodoc> 
18971           <param name=
"item" type=
"TreeItemId" default=
""/> 
18974       <method name=
"GetEditControl" type=
"TextCtrl" overloaded=
"no"> 
18975         <autodoc>GetEditControl() -
> TextCtrl
</autodoc> 
18977       <method name=
"SortChildren" type=
"" overloaded=
"no"> 
18978         <autodoc>SortChildren(TreeItemId item)
</autodoc> 
18980           <param name=
"item" type=
"TreeItemId" default=
""/> 
18983       <method name=
"HitTest" type=
"TreeItemId" overloaded=
"no"> 
18984         <autodoc>HitTest(Point point) -
> (item, where)
</autodoc> 
18985         <docstring>Determine which item (if any) belongs the given point.  The
 
18986 coordinates specified are relative to the client area of tree ctrl
 
18987 and the where return value is set to a bitmask of wxTREE_HITTEST_xxx
 
18991           <param name=
"point" type=
"Point" default=
""/> 
18992           <param name=
"OUTPUT" type=
"int" default=
""/> 
18995       <method name=
"GetBoundingRect" type=
"PyObject" overloaded=
"no"> 
18996         <autodoc>GetBoundingRect(TreeItemId item, bool textOnly=False) -
> PyObject
</autodoc> 
18998           <param name=
"item" type=
"TreeItemId" default=
""/> 
18999           <param name=
"textOnly" type=
"bool" default=
"False"/> 
19004 #---------------------------------------------------------------------------
 
19006     <class name=
"GenericDirCtrl" oldname=
"wxGenericDirCtrl" module=
"controls"> 
19007       <baseclass name=
"Control"/> 
19008       <constructor name=
"GenericDirCtrl" overloaded=
"no"> 
19009         <autodoc>__init__(Window parent, int id=-
1, String dir=DirDialogDefaultFolderStr, 
 
19010     Point pos=DefaultPosition, Size size=DefaultSize, 
 
19011     long style=wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER, 
 
19012     String filter=EmptyString, 
 
19013     int defaultFilter=
0, String name=TreeCtrlNameStr) -
> GenericDirCtrl
</autodoc> 
19015           <param name=
"parent" type=
"Window" default=
""/> 
19016           <param name=
"id" type=
"int" default=
"-1"/> 
19017           <param name=
"dir" type=
"String" default=
"wxPyDirDialogDefaultFolderStr"/> 
19018           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
19019           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
19020           <param name=
"style" type=
"long" default=
"wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER"/> 
19021           <param name=
"filter" type=
"String" default=
"wxPyEmptyString"/> 
19022           <param name=
"defaultFilter" type=
"int" default=
"0"/> 
19023           <param name=
"name" type=
"String" default=
"wxPyTreeCtrlNameStr"/> 
19026       <constructor name=
"PreGenericDirCtrl" overloaded=
"no"> 
19027         <autodoc>PreGenericDirCtrl() -
> GenericDirCtrl
</autodoc> 
19029       <method name=
"Create" type=
"bool" overloaded=
"no"> 
19030         <autodoc>Create(Window parent, int id=-
1, String dir=DirDialogDefaultFolderStr, 
 
19031     Point pos=DefaultPosition, Size size=DefaultSize, 
 
19032     long style=wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER, 
 
19033     String filter=EmptyString, 
 
19034     int defaultFilter=
0, String name=TreeCtrlNameStr) -
> bool
</autodoc> 
19036           <param name=
"parent" type=
"Window" default=
""/> 
19037           <param name=
"id" type=
"int" default=
"-1"/> 
19038           <param name=
"dir" type=
"String" default=
"wxPyDirDialogDefaultFolderStr"/> 
19039           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
19040           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
19041           <param name=
"style" type=
"long" default=
"wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER"/> 
19042           <param name=
"filter" type=
"String" default=
"wxPyEmptyString"/> 
19043           <param name=
"defaultFilter" type=
"int" default=
"0"/> 
19044           <param name=
"name" type=
"String" default=
"wxPyTreeCtrlNameStr"/> 
19047       <method name=
"ExpandPath" type=
"bool" overloaded=
"no"> 
19048         <autodoc>ExpandPath(String path) -
> bool
</autodoc> 
19050           <param name=
"path" type=
"String" default=
""/> 
19053       <method name=
"GetDefaultPath" type=
"String" overloaded=
"no"> 
19054         <autodoc>GetDefaultPath() -
> String
</autodoc> 
19056       <method name=
"SetDefaultPath" type=
"" overloaded=
"no"> 
19057         <autodoc>SetDefaultPath(String path)
</autodoc> 
19059           <param name=
"path" type=
"String" default=
""/> 
19062       <method name=
"GetPath" type=
"String" overloaded=
"no"> 
19063         <autodoc>GetPath() -
> String
</autodoc> 
19065       <method name=
"GetFilePath" type=
"String" overloaded=
"no"> 
19066         <autodoc>GetFilePath() -
> String
</autodoc> 
19068       <method name=
"SetPath" type=
"" overloaded=
"no"> 
19069         <autodoc>SetPath(String path)
</autodoc> 
19071           <param name=
"path" type=
"String" default=
""/> 
19074       <method name=
"ShowHidden" type=
"" overloaded=
"no"> 
19075         <autodoc>ShowHidden(bool show)
</autodoc> 
19077           <param name=
"show" type=
"bool" default=
""/> 
19080       <method name=
"GetShowHidden" type=
"bool" overloaded=
"no"> 
19081         <autodoc>GetShowHidden() -
> bool
</autodoc> 
19083       <method name=
"GetFilter" type=
"String" overloaded=
"no"> 
19084         <autodoc>GetFilter() -
> String
</autodoc> 
19086       <method name=
"SetFilter" type=
"" overloaded=
"no"> 
19087         <autodoc>SetFilter(String filter)
</autodoc> 
19089           <param name=
"filter" type=
"String" default=
""/> 
19092       <method name=
"GetFilterIndex" type=
"int" overloaded=
"no"> 
19093         <autodoc>GetFilterIndex() -
> int
</autodoc> 
19095       <method name=
"SetFilterIndex" type=
"" overloaded=
"no"> 
19096         <autodoc>SetFilterIndex(int n)
</autodoc> 
19098           <param name=
"n" type=
"int" default=
""/> 
19101       <method name=
"GetRootId" type=
"TreeItemId" overloaded=
"no"> 
19102         <autodoc>GetRootId() -
> TreeItemId
</autodoc> 
19104       <method name=
"GetTreeCtrl" type=
"TreeCtrl" overloaded=
"no"> 
19105         <autodoc>GetTreeCtrl() -
> TreeCtrl
</autodoc> 
19107       <method name=
"GetFilterListCtrl" type=
"wxDirFilterListCtrl" overloaded=
"no"> 
19108         <autodoc>GetFilterListCtrl() -
> DirFilterListCtrl
</autodoc> 
19110       <method name=
"FindChild" type=
"TreeItemId" overloaded=
"no"> 
19111         <autodoc>FindChild(wxTreeItemId parentId, wxString path) -
> (item, done)
</autodoc> 
19112         <docstring>Find the child that matches the first part of 'path'.  E.g. if a child path is
 
19113 "/usr" and 'path' is "/usr/include" then the child for /usr is returned.
 
19114 If the path string has been used (we're at the leaf), done is set to True
 
19117           <param name=
"parentId" type=
"TreeItemId" default=
""/> 
19118           <param name=
"path" type=
"String" default=
""/> 
19119           <param name=
"OUTPUT" type=
"bool" default=
""/> 
19122       <method name=
"DoResize" type=
"" overloaded=
"no"> 
19123         <autodoc>DoResize()
</autodoc> 
19125       <method name=
"ReCreateTree" type=
"" overloaded=
"no"> 
19126         <autodoc>ReCreateTree()
</autodoc> 
19129     <class name=
"DirFilterListCtrl" oldname=
"wxDirFilterListCtrl" module=
"controls"> 
19130       <baseclass name=
"Choice"/> 
19131       <constructor name=
"DirFilterListCtrl" overloaded=
"no"> 
19132         <autodoc>__init__(GenericDirCtrl parent, int id=-
1, Point pos=DefaultPosition, 
 
19133     Size size=DefaultSize, long style=
0) -
> DirFilterListCtrl
</autodoc> 
19135           <param name=
"parent" type=
"GenericDirCtrl" default=
""/> 
19136           <param name=
"id" type=
"int" default=
"-1"/> 
19137           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
19138           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
19139           <param name=
"style" type=
"long" default=
"0"/> 
19142       <constructor name=
"PreDirFilterListCtrl" overloaded=
"no"> 
19143         <autodoc>PreDirFilterListCtrl() -
> DirFilterListCtrl
</autodoc> 
19145       <method name=
"Create" type=
"bool" overloaded=
"no"> 
19146         <autodoc>Create(GenericDirCtrl parent, int id=-
1, Point pos=DefaultPosition, 
 
19147     Size size=DefaultSize, long style=
0) -
> bool
</autodoc> 
19149           <param name=
"parent" type=
"GenericDirCtrl" default=
""/> 
19150           <param name=
"id" type=
"int" default=
"-1"/> 
19151           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
19152           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
19153           <param name=
"style" type=
"long" default=
"0"/> 
19156       <method name=
"FillFilterList" type=
"" overloaded=
"no"> 
19157         <autodoc>FillFilterList(String filter, int defaultFilter)
</autodoc> 
19159           <param name=
"filter" type=
"String" default=
""/> 
19160           <param name=
"defaultFilter" type=
"int" default=
""/> 
19165 #---------------------------------------------------------------------------
 
19167     <class name=
"PyControl" oldname=
"wxPyControl" module=
"controls"> 
19168       <baseclass name=
"Control"/> 
19169       <constructor name=
"PyControl" overloaded=
"no"> 
19170         <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
19171     long style=
0, Validator validator=DefaultValidator, 
 
19172     String name=ControlNameStr) -
> PyControl
</autodoc> 
19174           <param name=
"parent" type=
"Window" default=
""/> 
19175           <param name=
"id" type=
"int" default=
""/> 
19176           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
19177           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
19178           <param name=
"style" type=
"long" default=
"0"/> 
19179           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
19180           <param name=
"name" type=
"String" default=
"wxPyControlNameStr"/> 
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_DoMoveWindow" type=
"" overloaded=
"no"> 
19191         <autodoc>base_DoMoveWindow(int x, int y, int width, int height)
</autodoc> 
19193           <param name=
"x" type=
"int" default=
""/> 
19194           <param name=
"y" type=
"int" default=
""/> 
19195           <param name=
"width" type=
"int" default=
""/> 
19196           <param name=
"height" type=
"int" default=
""/> 
19199       <method name=
"base_DoSetSize" type=
"" overloaded=
"no"> 
19200         <autodoc>base_DoSetSize(int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)
</autodoc> 
19202           <param name=
"x" type=
"int" default=
""/> 
19203           <param name=
"y" type=
"int" default=
""/> 
19204           <param name=
"width" type=
"int" default=
""/> 
19205           <param name=
"height" type=
"int" default=
""/> 
19206           <param name=
"sizeFlags" type=
"int" default=
"wxSIZE_AUTO"/> 
19209       <method name=
"base_DoSetClientSize" type=
"" overloaded=
"no"> 
19210         <autodoc>base_DoSetClientSize(int width, int height)
</autodoc> 
19212           <param name=
"width" type=
"int" default=
""/> 
19213           <param name=
"height" type=
"int" default=
""/> 
19216       <method name=
"base_DoSetVirtualSize" type=
"" overloaded=
"no"> 
19217         <autodoc>base_DoSetVirtualSize(int x, int y)
</autodoc> 
19219           <param name=
"x" type=
"int" default=
""/> 
19220           <param name=
"y" type=
"int" default=
""/> 
19223       <method name=
"base_DoGetSize" type=
"" overloaded=
"no"> 
19224         <autodoc>base_DoGetSize() -
> (width, height)
</autodoc> 
19226           <param name=
"OUTPUT" type=
"int" default=
""/> 
19227           <param name=
"OUTPUT" type=
"int" default=
""/> 
19230       <method name=
"base_DoGetClientSize" type=
"" overloaded=
"no"> 
19231         <autodoc>base_DoGetClientSize() -
> (width, height)
</autodoc> 
19233           <param name=
"OUTPUT" type=
"int" default=
""/> 
19234           <param name=
"OUTPUT" type=
"int" default=
""/> 
19237       <method name=
"base_DoGetPosition" type=
"" overloaded=
"no"> 
19238         <autodoc>base_DoGetPosition() -
> (x,y)
</autodoc> 
19240           <param name=
"OUTPUT" type=
"int" default=
""/> 
19241           <param name=
"OUTPUT" type=
"int" default=
""/> 
19244       <method name=
"base_DoGetVirtualSize" type=
"Size" overloaded=
"no"> 
19245         <autodoc>base_DoGetVirtualSize() -
> Size
</autodoc> 
19247       <method name=
"base_DoGetBestSize" type=
"Size" overloaded=
"no"> 
19248         <autodoc>base_DoGetBestSize() -
> Size
</autodoc> 
19250       <method name=
"base_InitDialog" type=
"" overloaded=
"no"> 
19251         <autodoc>base_InitDialog()
</autodoc> 
19253       <method name=
"base_TransferDataToWindow" type=
"bool" overloaded=
"no"> 
19254         <autodoc>base_TransferDataToWindow() -
> bool
</autodoc> 
19256       <method name=
"base_TransferDataFromWindow" type=
"bool" overloaded=
"no"> 
19257         <autodoc>base_TransferDataFromWindow() -
> bool
</autodoc> 
19259       <method name=
"base_Validate" type=
"bool" overloaded=
"no"> 
19260         <autodoc>base_Validate() -
> bool
</autodoc> 
19262       <method name=
"base_AcceptsFocus" type=
"bool" overloaded=
"no"> 
19263         <autodoc>base_AcceptsFocus() -
> bool
</autodoc> 
19265       <method name=
"base_AcceptsFocusFromKeyboard" type=
"bool" overloaded=
"no"> 
19266         <autodoc>base_AcceptsFocusFromKeyboard() -
> bool
</autodoc> 
19268       <method name=
"base_GetMaxSize" type=
"Size" overloaded=
"no"> 
19269         <autodoc>base_GetMaxSize() -
> Size
</autodoc> 
19271       <method name=
"base_AddChild" type=
"" overloaded=
"no"> 
19272         <autodoc>base_AddChild(Window child)
</autodoc> 
19274           <param name=
"child" type=
"Window" default=
""/> 
19277       <method name=
"base_RemoveChild" type=
"" overloaded=
"no"> 
19278         <autodoc>base_RemoveChild(Window child)
</autodoc> 
19280           <param name=
"child" type=
"Window" default=
""/> 
19285 #---------------------------------------------------------------------------
 
19288 EVT_HELP = wx.PyEventBinder( wxEVT_HELP, 
1)
 
19289 EVT_HELP_RANGE = wx.PyEventBinder(  wxEVT_HELP, 
2)
 
19290 EVT_DETAILED_HELP = wx.PyEventBinder( wxEVT_DETAILED_HELP, 
1)
 
19291 EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 
2)
 
19293     <class name=
"HelpEvent" oldname=
"wxHelpEvent" module=
"controls"> 
19294       <docstring>A help event is sent when the user has requested
 
19295 context-sensitive help. This can either be caused by the
 
19296 application requesting context-sensitive help mode via
 
19297 wx.ContextHelp, or (on MS Windows) by the system generating a
 
19298 WM_HELP message when the user pressed F1 or clicked on the query
 
19299 button in a dialog caption.
 
19301 A help event is sent to the window that the user clicked on, and
 
19302 is propagated up the window hierarchy until the event is
 
19303 processed or there are no more event handlers. The application
 
19304 should call event.GetId to check the identity of the clicked-on
 
19305 window, and then either show some suitable help or call
 
19306 event.Skip if the identifier is unrecognised. Calling Skip is
 
19307 important because it allows wxWindows to generate further events
 
19308 for ancestors of the clicked-on window. Otherwise it would be
 
19309 impossible to show help for container windows, since processing
 
19310 would stop after the first window found.
 
19313     EVT_HELP            Sent when the user has requested context-
 
19315     EVT_HELP_RANGE      Allows to catch EVT_HELP for a range of IDs
 
19317       <baseclass name=
"CommandEvent"/> 
19318       <constructor name=
"HelpEvent" overloaded=
"no"> 
19319         <autodoc>__init__(wxEventType type=wxEVT_NULL, int winid=
0, Point pt=DefaultPosition) -
> HelpEvent
</autodoc> 
19321           <param name=
"type" type=
"wxEventType" default=
"wxEVT_NULL"/> 
19322           <param name=
"winid" type=
"int" default=
"0"/> 
19323           <param name=
"pt" type=
"Point" default=
"wxDefaultPosition"/> 
19326       <method name=
"GetPosition" type=
"Point" overloaded=
"no"> 
19327         <autodoc>GetPosition() -
> Point
</autodoc> 
19328         <docstring>Returns the left-click position of the mouse, in screen
 
19329 coordinates. This allows the application to position the help
 
19330 appropriately.
</docstring> 
19332       <method name=
"SetPosition" type=
"" overloaded=
"no"> 
19333         <autodoc>SetPosition(Point pos)
</autodoc> 
19334         <docstring>Sets the left-click position of the mouse, in screen coordinates.
</docstring> 
19336           <param name=
"pos" type=
"Point" default=
""/> 
19339       <method name=
"GetLink" type=
"String" overloaded=
"no"> 
19340         <autodoc>GetLink() -
> String
</autodoc> 
19341         <docstring>Get an optional link to further help
</docstring> 
19343       <method name=
"SetLink" type=
"" overloaded=
"no"> 
19344         <autodoc>SetLink(String link)
</autodoc> 
19345         <docstring>Set an optional link to further help
</docstring> 
19347           <param name=
"link" type=
"String" default=
""/> 
19350       <method name=
"GetTarget" type=
"String" overloaded=
"no"> 
19351         <autodoc>GetTarget() -
> String
</autodoc> 
19352         <docstring>Get an optional target to display help in. E.g. a window specification
</docstring> 
19354       <method name=
"SetTarget" type=
"" overloaded=
"no"> 
19355         <autodoc>SetTarget(String target)
</autodoc> 
19356         <docstring>Set an optional target to display help in. E.g. a window specification
</docstring> 
19358           <param name=
"target" type=
"String" default=
""/> 
19362     <class name=
"ContextHelp" oldname=
"wxContextHelp" module=
"controls"> 
19363       <docstring>This class changes the cursor to a query and puts the application
 
19364 into a 'context-sensitive help mode'. When the user left-clicks
 
19365 on a window within the specified window, a EVT_HELP event is sent
 
19366 to that control, and the application may respond to it by popping
 
19369 There are a couple of ways to invoke this behaviour implicitly:
 
19371     * Use the wx.DIALOG_EX_CONTEXTHELP extended style for a
 
19372       dialog (Windows only). This will put a question mark in the
 
19373       titlebar, and Windows will put the application into
 
19374       context-sensitive help mode automatically, with further
 
19377     * Create a wx.ContextHelpButton, whose predefined behaviour
 
19378       is to create a context help object. Normally you will write
 
19379       your application so that this button is only added to a
 
19380       dialog for non-Windows platforms (use
 
19381       wx.DIALOG_EX_CONTEXTHELP on Windows).
 
19383       <baseclass name=
"Object"/> 
19384       <constructor name=
"ContextHelp" overloaded=
"no"> 
19385         <autodoc>__init__(Window window=None, bool doNow=True) -
> ContextHelp
</autodoc> 
19386         <docstring>Constructs a context help object, calling BeginContextHelp if
 
19387 doNow is true (the default).
 
19389 If window is None, the top window is used.
</docstring> 
19391           <param name=
"window" type=
"Window" default=
"NULL"/> 
19392           <param name=
"doNow" type=
"bool" default=
"True"/> 
19395       <destructor name=
"~wxContextHelp" overloaded=
"no"> 
19396         <autodoc>__del__()
</autodoc> 
19398       <method name=
"BeginContextHelp" type=
"bool" overloaded=
"no"> 
19399         <autodoc>BeginContextHelp(Window window=None) -
> bool
</autodoc> 
19400         <docstring>Puts the application into context-sensitive help mode. window is
 
19401 the window which will be used to catch events; if NULL, the top
 
19402 window will be used.
 
19404 Returns true if the application was successfully put into
 
19405 context-sensitive help mode. This function only returns when the
 
19406 event loop has finished.
</docstring> 
19408           <param name=
"window" type=
"Window" default=
"NULL"/> 
19411       <method name=
"EndContextHelp" type=
"bool" overloaded=
"no"> 
19412         <autodoc>EndContextHelp() -
> bool
</autodoc> 
19413         <docstring>Ends context-sensitive help mode. Not normally called by the
 
19414 application.
</docstring> 
19417     <class name=
"ContextHelpButton" oldname=
"wxContextHelpButton" module=
"controls"> 
19418       <docstring>Instances of this class may be used to add a question mark button
 
19419 that when pressed, puts the application into context-help
 
19420 mode. It does this by creating a wx.ContextHelp object which
 
19421 itself generates a EVT_HELP event when the user clicks on a
 
19424 On Windows, you may add a question-mark icon to a dialog by use
 
19425 of the wx.DIALOG_EX_CONTEXTHELP extra style, but on other
 
19426 platforms you will have to add a button explicitly, usually next
 
19427 to OK, Cancel or similar buttons.
 
19429       <baseclass name=
"BitmapButton"/> 
19430       <constructor name=
"ContextHelpButton" overloaded=
"no"> 
19431         <autodoc>__init__(Window parent, int id=ID_CONTEXT_HELP, Point pos=DefaultPosition, 
 
19432     Size size=DefaultSize, long style=BU_AUTODRAW) -
> ContextHelpButton
</autodoc> 
19433         <docstring>Constructor, creating and showing a context help button.
</docstring> 
19435           <param name=
"parent" type=
"Window" default=
""/> 
19436           <param name=
"id" type=
"int" default=
"wxID_CONTEXT_HELP"/> 
19437           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
19438           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
19439           <param name=
"style" type=
"long" default=
"wxBU_AUTODRAW"/> 
19443     <class name=
"HelpProvider" oldname=
"wxHelpProvider" module=
"controls"> 
19444       <docstring>wx.HelpProvider is an abstract class used by a program
 
19445 implementing context-sensitive help to show the help text for the
 
19448 The current help provider must be explicitly set by the
 
19449 application using wx.HelpProvider.Set().
</docstring> 
19450       <staticmethod name=
"Set" type=
"HelpProvider" overloaded=
"no"> 
19451         <autodoc>Set(HelpProvider helpProvider) -
> HelpProvider
</autodoc> 
19452         <docstring>Sset the current, application-wide help provider. Returns the
 
19453 previous one.  Unlike some other classes, the help provider is
 
19454 not created on demand. This must be explicitly done by the
 
19455 application.
</docstring> 
19457           <param name=
"helpProvider" type=
"HelpProvider" default=
""/> 
19460       <staticmethod name=
"Get" type=
"HelpProvider" overloaded=
"no"> 
19461         <autodoc>Get() -
> HelpProvider
</autodoc> 
19462         <docstring>Return the current application-wide help provider.
</docstring> 
19464       <method name=
"GetHelp" type=
"String" overloaded=
"no"> 
19465         <autodoc>GetHelp(Window window) -
> String
</autodoc> 
19466         <docstring>Gets the help string for this window. Its interpretation is
 
19467 dependent on the help provider except that empty string always
 
19468 means that no help is associated with the window.
</docstring> 
19470           <param name=
"window" type=
"Window" default=
""/> 
19473       <method name=
"ShowHelp" type=
"bool" overloaded=
"no"> 
19474         <autodoc>ShowHelp(Window window) -
> bool
</autodoc> 
19475         <docstring>Shows help for the given window. Uses GetHelp internally if
 
19478 Returns true if it was done, or false if no help was available
 
19479 for this window.
</docstring> 
19481           <param name=
"window" type=
"Window" default=
""/> 
19484       <method name=
"AddHelp" type=
"" overloaded=
"no"> 
19485         <autodoc>AddHelp(Window window, String text)
</autodoc> 
19486         <docstring>Associates the text with the given window.
</docstring> 
19488           <param name=
"window" type=
"Window" default=
""/> 
19489           <param name=
"text" type=
"String" default=
""/> 
19492       <method name=
"AddHelpById" type=
"" overloaded=
"no"> 
19493         <autodoc>AddHelpById(int id, String text)
</autodoc> 
19494         <docstring>This version associates the given text with all windows with this
 
19495 id. May be used to set the same help string for all Cancel
 
19496 buttons in the application, for example.
</docstring> 
19498           <param name=
"id" type=
"int" default=
""/> 
19499           <param name=
"text" type=
"String" default=
""/> 
19502       <method name=
"RemoveHelp" type=
"" overloaded=
"no"> 
19503         <autodoc>RemoveHelp(Window window)
</autodoc> 
19504         <docstring>Removes the association between the window pointer and the help
 
19505 text. This is called by the wx.Window destructor. Without this,
 
19506 the table of help strings will fill up and when window pointers
 
19507 are reused, the wrong help string will be found.
</docstring> 
19509           <param name=
"window" type=
"Window" default=
""/> 
19512       <method name=
"Destroy" type=
"" overloaded=
"no"> 
19513         <autodoc>Destroy()
</autodoc> 
19516     <class name=
"SimpleHelpProvider" oldname=
"wxSimpleHelpProvider" module=
"controls"> 
19517       <docstring>wx.SimpleHelpProvider is an implementation of wx.HelpProvider
 
19518 which supports only plain text help strings, and shows the string
 
19519 associated with the control (if any) in a tooltip.
</docstring> 
19520       <baseclass name=
"HelpProvider"/> 
19521       <constructor name=
"SimpleHelpProvider" overloaded=
"no"> 
19522         <autodoc>__init__() -
> SimpleHelpProvider
</autodoc> 
19523         <docstring>wx.SimpleHelpProvider is an implementation of wx.HelpProvider
 
19524 which supports only plain text help strings, and shows the string
 
19525 associated with the control (if any) in a tooltip.
</docstring> 
19529 #---------------------------------------------------------------------------
 
19531     <class name=
"DragImage" oldname=
"wxGenericDragImage" module=
"controls"> 
19532       <baseclass name=
"Object"/> 
19533       <constructor name=
"wxGenericDragImage" overloaded=
"no"> 
19534         <autodoc>__init__(Bitmap image, Cursor cursor=wxNullCursor) -
> DragImage
</autodoc> 
19536           <param name=
"image" type=
"Bitmap" default=
""/> 
19537           <param name=
"cursor" type=
"Cursor" default=
"wxNullCursor"/> 
19540       <constructor name=
"DragIcon" overloaded=
"no"> 
19541         <autodoc>DragIcon(Icon image, Cursor cursor=wxNullCursor) -
> DragImage
</autodoc> 
19543           <param name=
"image" type=
"Icon" default=
""/> 
19544           <param name=
"cursor" type=
"Cursor" default=
"wxNullCursor"/> 
19547       <constructor name=
"DragString" overloaded=
"no"> 
19548         <autodoc>DragString(String str, Cursor cursor=wxNullCursor) -
> DragImage
</autodoc> 
19550           <param name=
"str" type=
"String" default=
""/> 
19551           <param name=
"cursor" type=
"Cursor" default=
"wxNullCursor"/> 
19554       <constructor name=
"DragTreeItem" overloaded=
"no"> 
19555         <autodoc>DragTreeItem(TreeCtrl treeCtrl, TreeItemId id) -
> DragImage
</autodoc> 
19557           <param name=
"treeCtrl" type=
"TreeCtrl" default=
""/> 
19558           <param name=
"id" type=
"TreeItemId" default=
""/> 
19561       <constructor name=
"DragListItem" overloaded=
"no"> 
19562         <autodoc>DragListItem(ListCtrl listCtrl, long id) -
> DragImage
</autodoc> 
19564           <param name=
"listCtrl" type=
"ListCtrl" default=
""/> 
19565           <param name=
"id" type=
"long" default=
""/> 
19568       <destructor name=
"~wxGenericDragImage" overloaded=
"no"> 
19569         <autodoc>__del__()
</autodoc> 
19571       <method name=
"SetBackingBitmap" type=
"" overloaded=
"no"> 
19572         <autodoc>SetBackingBitmap(Bitmap bitmap)
</autodoc> 
19574           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
19577       <method name=
"BeginDrag" type=
"bool" overloaded=
"no"> 
19578         <autodoc>BeginDrag(Point hotspot, Window window, bool fullScreen=False, 
 
19579     Rect rect=None) -
> bool
</autodoc> 
19581           <param name=
"hotspot" type=
"Point" default=
""/> 
19582           <param name=
"window" type=
"Window" default=
""/> 
19583           <param name=
"fullScreen" type=
"bool" default=
"False"/> 
19584           <param name=
"rect" type=
"Rect" default=
"NULL"/> 
19587       <method name=
"BeginDragBounded" type=
"bool" overloaded=
"no"> 
19588         <autodoc>BeginDragBounded(Point hotspot, Window window, Window boundingWindow) -
> bool
</autodoc> 
19590           <param name=
"hotspot" type=
"Point" default=
""/> 
19591           <param name=
"window" type=
"Window" default=
""/> 
19592           <param name=
"boundingWindow" type=
"Window" default=
""/> 
19595       <method name=
"EndDrag" type=
"bool" overloaded=
"no"> 
19596         <autodoc>EndDrag() -
> bool
</autodoc> 
19598       <method name=
"Move" type=
"bool" overloaded=
"no"> 
19599         <autodoc>Move(Point pt) -
> bool
</autodoc> 
19601           <param name=
"pt" type=
"Point" default=
""/> 
19604       <method name=
"Show" type=
"bool" overloaded=
"no"> 
19605         <autodoc>Show() -
> bool
</autodoc> 
19607       <method name=
"Hide" type=
"bool" overloaded=
"no"> 
19608         <autodoc>Hide() -
> bool
</autodoc> 
19610       <method name=
"GetImageRect" type=
"Rect" overloaded=
"no"> 
19611         <autodoc>GetImageRect(Point pos) -
> Rect
</autodoc> 
19613           <param name=
"pos" type=
"Point" default=
""/> 
19616       <method name=
"DoDrawImage" type=
"bool" overloaded=
"no"> 
19617         <autodoc>DoDrawImage(DC dc, Point pos) -
> bool
</autodoc> 
19619           <param name=
"dc" type=
"DC" default=
""/> 
19620           <param name=
"pos" type=
"Point" default=
""/> 
19623       <method name=
"UpdateBackingFromWindow" type=
"bool" overloaded=
"no"> 
19624         <autodoc>UpdateBackingFromWindow(DC windowDC, MemoryDC destDC, Rect sourceRect, Rect destRect) -
> bool
</autodoc> 
19626           <param name=
"windowDC" type=
"DC" default=
""/> 
19627           <param name=
"destDC" type=
"MemoryDC" default=
""/> 
19628           <param name=
"sourceRect" type=
"Rect" default=
""/> 
19629           <param name=
"destRect" type=
"Rect" default=
""/> 
19632       <method name=
"RedrawImage" type=
"bool" overloaded=
"no"> 
19633         <autodoc>RedrawImage(Point oldPos, Point newPos, bool eraseOld, bool drawNew) -
> bool
</autodoc> 
19635           <param name=
"oldPos" type=
"Point" default=
""/> 
19636           <param name=
"newPos" type=
"Point" default=
""/> 
19637           <param name=
"eraseOld" type=
"bool" default=
""/> 
19638           <param name=
"drawNew" type=
"bool" default=
""/> 
19643   <module name=
"misc"> 
19644     <import name=
"core"/> 
19645     <pythoncode> wx = core 
</pythoncode> 
19647 #---------------------------------------------------------------------------
 
19649     <class name=
"SystemSettings" oldname=
"wxSystemSettings" module=
"misc"> 
19650       <staticmethod name=
"GetColour" type=
"Colour" overloaded=
"no"> 
19651         <autodoc>GetColour(int index) -
> Colour
</autodoc> 
19653           <param name=
"index" type=
"wxSystemColour" default=
""/> 
19656       <staticmethod name=
"GetFont" type=
"Font" overloaded=
"no"> 
19657         <autodoc>GetFont(int index) -
> Font
</autodoc> 
19659           <param name=
"index" type=
"wxSystemFont" default=
""/> 
19662       <staticmethod name=
"GetMetric" type=
"int" overloaded=
"no"> 
19663         <autodoc>GetMetric(int index) -
> int
</autodoc> 
19665           <param name=
"index" type=
"wxSystemMetric" default=
""/> 
19668       <staticmethod name=
"HasFeature" type=
"bool" overloaded=
"no"> 
19669         <autodoc>HasFeature(int index) -
> bool
</autodoc> 
19671           <param name=
"index" type=
"wxSystemFeature" default=
""/> 
19674       <staticmethod name=
"GetScreenType" type=
"wxSystemScreenType" overloaded=
"no"> 
19675         <autodoc>GetScreenType() -
> int
</autodoc> 
19677       <staticmethod name=
"SetScreenType" type=
"" overloaded=
"no"> 
19678         <autodoc>SetScreenType(int screen)
</autodoc> 
19680           <param name=
"screen" type=
"wxSystemScreenType" default=
""/> 
19684     <class name=
"SystemOptions" oldname=
"wxSystemOptions" module=
"misc"> 
19685       <baseclass name=
"Object"/> 
19686       <constructor name=
"SystemOptions" overloaded=
"no"> 
19687         <autodoc>__init__() -
> SystemOptions
</autodoc> 
19689       <staticmethod name=
"SetOption" type=
"" overloaded=
"no"> 
19690         <autodoc>SetOption(String name, String value)
</autodoc> 
19692           <param name=
"name" type=
"String" default=
""/> 
19693           <param name=
"value" type=
"String" default=
""/> 
19696       <staticmethod name=
"SetOptionInt" type=
"" overloaded=
"no"> 
19697         <autodoc>SetOptionInt(String name, int value)
</autodoc> 
19699           <param name=
"name" type=
"String" default=
""/> 
19700           <param name=
"value" type=
"int" default=
""/> 
19703       <staticmethod name=
"GetOption" type=
"String" overloaded=
"no"> 
19704         <autodoc>GetOption(String name) -
> String
</autodoc> 
19706           <param name=
"name" type=
"String" default=
""/> 
19709       <staticmethod name=
"GetOptionInt" type=
"int" overloaded=
"no"> 
19710         <autodoc>GetOptionInt(String name) -
> int
</autodoc> 
19712           <param name=
"name" type=
"String" default=
""/> 
19715       <staticmethod name=
"HasOption" type=
"bool" overloaded=
"no"> 
19716         <autodoc>HasOption(String name) -
> bool
</autodoc> 
19718           <param name=
"name" type=
"String" default=
""/> 
19723 #---------------------------------------------------------------------------
 
19725     <method name=
"NewId" oldname=
"wxNewId" type=
"long" overloaded=
"no"> 
19726       <autodoc>NewId() -
> long
</autodoc> 
19728     <method name=
"RegisterId" oldname=
"wxRegisterId" type=
"" overloaded=
"no"> 
19729       <autodoc>RegisterId(long id)
</autodoc> 
19731         <param name=
"id" type=
"long" default=
""/> 
19734     <method name=
"GetCurrentId" oldname=
"wxGetCurrentId" type=
"long" overloaded=
"no"> 
19735       <autodoc>GetCurrentId() -
> long
</autodoc> 
19737     <method name=
"Bell" oldname=
"wxBell" type=
"" overloaded=
"no"> 
19738       <autodoc>Bell()
</autodoc> 
19740     <method name=
"EndBusyCursor" oldname=
"wxEndBusyCursor" type=
"" overloaded=
"no"> 
19741       <autodoc>EndBusyCursor()
</autodoc> 
19743     <method name=
"GetElapsedTime" oldname=
"wxGetElapsedTime" type=
"long" overloaded=
"no"> 
19744       <autodoc>GetElapsedTime(bool resetTimer=True) -
> long
</autodoc> 
19746         <param name=
"resetTimer" type=
"bool" default=
"True"/> 
19749     <method name=
"GetMousePosition" oldname=
"wxGetMousePosition" type=
"" overloaded=
"no"> 
19750       <autodoc>GetMousePosition() -
> (x,y)
</autodoc> 
19752         <param name=
"OUTPUT" type=
"int" default=
""/> 
19753         <param name=
"OUTPUT" type=
"int" default=
""/> 
19756     <method name=
"IsBusy" oldname=
"wxIsBusy" type=
"bool" overloaded=
"no"> 
19757       <autodoc>IsBusy() -
> bool
</autodoc> 
19759     <method name=
"Now" oldname=
"wxNow" type=
"String" overloaded=
"no"> 
19760       <autodoc>Now() -
> String
</autodoc> 
19762     <method name=
"Shell" oldname=
"wxShell" type=
"bool" overloaded=
"no"> 
19763       <autodoc>Shell(String command=EmptyString) -
> bool
</autodoc> 
19765         <param name=
"command" type=
"String" default=
"wxPyEmptyString"/> 
19768     <method name=
"StartTimer" oldname=
"wxStartTimer" type=
"" overloaded=
"no"> 
19769       <autodoc>StartTimer()
</autodoc> 
19771     <method name=
"GetOsVersion" oldname=
"wxGetOsVersion" type=
"int" overloaded=
"no"> 
19772       <autodoc>GetOsVersion() -
> (platform, major, minor)
</autodoc> 
19774         <param name=
"OUTPUT" type=
"int" default=
""/> 
19775         <param name=
"OUTPUT" type=
"int" default=
""/> 
19778     <method name=
"GetOsDescription" oldname=
"wxGetOsDescription" type=
"String" overloaded=
"no"> 
19779       <autodoc>GetOsDescription() -
> String
</autodoc> 
19781     <method name=
"GetFreeMemory" oldname=
"wxGetFreeMemory" type=
"long" overloaded=
"no"> 
19782       <autodoc>GetFreeMemory() -
> long
</autodoc> 
19784     <method name=
"Shutdown" oldname=
"wxShutdown" type=
"bool" overloaded=
"no"> 
19785       <autodoc>Shutdown(int wFlags) -
> bool
</autodoc> 
19787         <param name=
"wFlags" type=
"wxShutdownFlags" default=
""/> 
19790     <method name=
"Sleep" oldname=
"wxSleep" type=
"" overloaded=
"no"> 
19791       <autodoc>Sleep(int secs)
</autodoc> 
19793         <param name=
"secs" type=
"int" default=
""/> 
19796     <method name=
"Usleep" oldname=
"wxUsleep" type=
"" overloaded=
"no"> 
19797       <autodoc>Usleep(unsigned long milliseconds)
</autodoc> 
19799         <param name=
"milliseconds" type=
"unsigned long" default=
""/> 
19802     <method name=
"EnableTopLevelWindows" oldname=
"wxEnableTopLevelWindows" type=
"" overloaded=
"no"> 
19803       <autodoc>EnableTopLevelWindows(bool enable)
</autodoc> 
19805         <param name=
"enable" type=
"bool" default=
""/> 
19808     <method name=
"StripMenuCodes" oldname=
"wxStripMenuCodes" type=
"String" overloaded=
"no"> 
19809       <autodoc>StripMenuCodes(String in) -
> String
</autodoc> 
19811         <param name=
"in" type=
"String" default=
""/> 
19814     <method name=
"GetEmailAddress" oldname=
"wxGetEmailAddress" type=
"String" overloaded=
"no"> 
19815       <autodoc>GetEmailAddress() -
> String
</autodoc> 
19817     <method name=
"GetHostName" oldname=
"wxGetHostName" type=
"String" overloaded=
"no"> 
19818       <autodoc>GetHostName() -
> String
</autodoc> 
19820     <method name=
"GetFullHostName" oldname=
"wxGetFullHostName" type=
"String" overloaded=
"no"> 
19821       <autodoc>GetFullHostName() -
> String
</autodoc> 
19823     <method name=
"GetUserId" oldname=
"wxGetUserId" type=
"String" overloaded=
"no"> 
19824       <autodoc>GetUserId() -
> String
</autodoc> 
19826     <method name=
"GetUserName" oldname=
"wxGetUserName" type=
"String" overloaded=
"no"> 
19827       <autodoc>GetUserName() -
> String
</autodoc> 
19829     <method name=
"GetHomeDir" oldname=
"wxGetHomeDir" type=
"String" overloaded=
"no"> 
19830       <autodoc>GetHomeDir() -
> String
</autodoc> 
19832     <method name=
"GetUserHome" oldname=
"wxGetUserHome" type=
"String" overloaded=
"no"> 
19833       <autodoc>GetUserHome(String user=EmptyString) -
> String
</autodoc> 
19835         <param name=
"user" type=
"String" default=
"wxPyEmptyString"/> 
19838     <method name=
"GetProcessId" oldname=
"wxGetProcessId" type=
"unsigned long" overloaded=
"no"> 
19839       <autodoc>GetProcessId() -
> unsigned long
</autodoc> 
19841     <method name=
"Trap" oldname=
"wxTrap" type=
"" overloaded=
"no"> 
19842       <autodoc>Trap()
</autodoc> 
19844     <method name=
"FileSelector" oldname=
"wxFileSelector" type=
"String" overloaded=
"no"> 
19845       <autodoc>FileSelector(String message=FileSelectorPromptStr, String default_path=EmptyString, 
 
19846     String default_filename=EmptyString, 
 
19847     String default_extension=EmptyString, 
 
19848     String wildcard=FileSelectorDefaultWildcardStr, 
 
19849     int flags=
0, Window parent=None, int x=-
1, 
 
19850     int y=-
1) -
> String
</autodoc> 
19852         <param name=
"message" type=
"String" default=
"wxPyFileSelectorPromptStr"/> 
19853         <param name=
"default_path" type=
"String" default=
"wxPyEmptyString"/> 
19854         <param name=
"default_filename" type=
"String" default=
"wxPyEmptyString"/> 
19855         <param name=
"default_extension" type=
"String" default=
"wxPyEmptyString"/> 
19856         <param name=
"wildcard" type=
"String" default=
"wxPyFileSelectorDefaultWildcardStr"/> 
19857         <param name=
"flags" type=
"int" default=
"0"/> 
19858         <param name=
"parent" type=
"Window" default=
"NULL"/> 
19859         <param name=
"x" type=
"int" default=
"-1"/> 
19860         <param name=
"y" type=
"int" default=
"-1"/> 
19863     <method name=
"LoadFileSelector" oldname=
"wxLoadFileSelector" type=
"String" overloaded=
"no"> 
19864       <autodoc>LoadFileSelector(String what, String extension, String default_name=EmptyString, 
 
19865     Window parent=None) -
> String
</autodoc> 
19867         <param name=
"what" type=
"String" default=
""/> 
19868         <param name=
"extension" type=
"String" default=
""/> 
19869         <param name=
"default_name" type=
"String" default=
"wxPyEmptyString"/> 
19870         <param name=
"parent" type=
"Window" default=
"NULL"/> 
19873     <method name=
"SaveFileSelector" oldname=
"wxSaveFileSelector" type=
"String" overloaded=
"no"> 
19874       <autodoc>SaveFileSelector(String what, String extension, String default_name=EmptyString, 
 
19875     Window parent=None) -
> String
</autodoc> 
19877         <param name=
"what" type=
"String" default=
""/> 
19878         <param name=
"extension" type=
"String" default=
""/> 
19879         <param name=
"default_name" type=
"String" default=
"wxPyEmptyString"/> 
19880         <param name=
"parent" type=
"Window" default=
"NULL"/> 
19883     <method name=
"DirSelector" oldname=
"wxDirSelector" type=
"String" overloaded=
"no"> 
19884       <autodoc>DirSelector(String message=DirSelectorPromptStr, String defaultPath=EmptyString, 
 
19885     long style=DD_DEFAULT_STYLE, 
 
19886     Point pos=DefaultPosition, Window parent=None) -
> String
</autodoc> 
19888         <param name=
"message" type=
"String" default=
"wxPyDirSelectorPromptStr"/> 
19889         <param name=
"defaultPath" type=
"String" default=
"wxPyEmptyString"/> 
19890         <param name=
"style" type=
"long" default=
"wxDD_DEFAULT_STYLE"/> 
19891         <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
19892         <param name=
"parent" type=
"Window" default=
"NULL"/> 
19895     <method name=
"GetTextFromUser" oldname=
"wxGetTextFromUser" type=
"String" overloaded=
"no"> 
19896       <autodoc>GetTextFromUser(String message, String caption=EmptyString, String default_value=EmptyString, 
 
19897     Window parent=None, 
 
19898     int x=-
1, int y=-
1, bool centre=True) -
> String
</autodoc> 
19900         <param name=
"message" type=
"String" default=
""/> 
19901         <param name=
"caption" type=
"String" default=
"wxPyEmptyString"/> 
19902         <param name=
"default_value" type=
"String" default=
"wxPyEmptyString"/> 
19903         <param name=
"parent" type=
"Window" default=
"NULL"/> 
19904         <param name=
"x" type=
"int" default=
"-1"/> 
19905         <param name=
"y" type=
"int" default=
"-1"/> 
19906         <param name=
"centre" type=
"bool" default=
"True"/> 
19909     <method name=
"GetPasswordFromUser" oldname=
"wxGetPasswordFromUser" type=
"String" overloaded=
"no"> 
19910       <autodoc>GetPasswordFromUser(String message, String caption=EmptyString, String default_value=EmptyString, 
 
19911     Window parent=None) -
> String
</autodoc> 
19913         <param name=
"message" type=
"String" default=
""/> 
19914         <param name=
"caption" type=
"String" default=
"wxPyEmptyString"/> 
19915         <param name=
"default_value" type=
"String" default=
"wxPyEmptyString"/> 
19916         <param name=
"parent" type=
"Window" default=
"NULL"/> 
19919     <method name=
"GetSingleChoice" oldname=
"wxGetSingleChoice" type=
"String" overloaded=
"no"> 
19920       <autodoc>GetSingleChoice(String message, String caption, int choices, String choices_array, 
 
19921     Window parent=None, int x=-
1, 
 
19922     int y=-
1, bool centre=True, int width=
150, int height=
200) -
> String
</autodoc> 
19924         <param name=
"message" type=
"String" default=
""/> 
19925         <param name=
"caption" type=
"String" default=
""/> 
19926         <param name=
"choices" type=
"int" default=
""/> 
19927         <param name=
"choices_array" type=
"String" default=
""/> 
19928         <param name=
"parent" type=
"Window" default=
"NULL"/> 
19929         <param name=
"x" type=
"int" default=
"-1"/> 
19930         <param name=
"y" type=
"int" default=
"-1"/> 
19931         <param name=
"centre" type=
"bool" default=
"True"/> 
19932         <param name=
"width" type=
"int" default=
"150"/> 
19933         <param name=
"height" type=
"int" default=
"200"/> 
19936     <method name=
"GetSingleChoiceIndex" oldname=
"wxGetSingleChoiceIndex" type=
"int" overloaded=
"no"> 
19937       <autodoc>GetSingleChoiceIndex(String message, String caption, int choices, String choices_array, 
 
19938     Window parent=None, int x=-
1, 
 
19939     int y=-
1, bool centre=True, int width=
150, int height=
200) -
> int
</autodoc> 
19941         <param name=
"message" type=
"String" default=
""/> 
19942         <param name=
"caption" type=
"String" default=
""/> 
19943         <param name=
"choices" type=
"int" default=
""/> 
19944         <param name=
"choices_array" type=
"String" default=
""/> 
19945         <param name=
"parent" type=
"Window" default=
"NULL"/> 
19946         <param name=
"x" type=
"int" default=
"-1"/> 
19947         <param name=
"y" type=
"int" default=
"-1"/> 
19948         <param name=
"centre" type=
"bool" default=
"True"/> 
19949         <param name=
"width" type=
"int" default=
"150"/> 
19950         <param name=
"height" type=
"int" default=
"200"/> 
19953     <method name=
"MessageBox" oldname=
"wxMessageBox" type=
"int" overloaded=
"no"> 
19954       <autodoc>MessageBox(String message, String caption=EmptyString, int style=wxOK|wxCENTRE, 
 
19955     Window parent=None, int x=-
1, 
 
19956     int y=-
1) -
> int
</autodoc> 
19958         <param name=
"message" type=
"String" default=
""/> 
19959         <param name=
"caption" type=
"String" default=
"wxPyEmptyString"/> 
19960         <param name=
"style" type=
"int" default=
"wxOK|wxCENTRE"/> 
19961         <param name=
"parent" type=
"Window" default=
"NULL"/> 
19962         <param name=
"x" type=
"int" default=
"-1"/> 
19963         <param name=
"y" type=
"int" default=
"-1"/> 
19966     <method name=
"GetNumberFromUser" oldname=
"wxGetNumberFromUser" type=
"long" overloaded=
"no"> 
19967       <autodoc>GetNumberFromUser(String message, String prompt, String caption, long value, 
 
19968     long min=
0, long max=
100, Window parent=None, 
 
19969     Point pos=DefaultPosition) -
> long
</autodoc> 
19971         <param name=
"message" type=
"String" default=
""/> 
19972         <param name=
"prompt" type=
"String" default=
""/> 
19973         <param name=
"caption" type=
"String" default=
""/> 
19974         <param name=
"value" type=
"long" default=
""/> 
19975         <param name=
"min" type=
"long" default=
"0"/> 
19976         <param name=
"max" type=
"long" default=
"100"/> 
19977         <param name=
"parent" type=
"Window" default=
"NULL"/> 
19978         <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
19981     <method name=
"ColourDisplay" oldname=
"wxColourDisplay" type=
"bool" overloaded=
"no"> 
19982       <autodoc>ColourDisplay() -
> bool
</autodoc> 
19984     <method name=
"DisplayDepth" oldname=
"wxDisplayDepth" type=
"int" overloaded=
"no"> 
19985       <autodoc>DisplayDepth() -
> int
</autodoc> 
19987     <method name=
"GetDisplayDepth" oldname=
"wxGetDisplayDepth" type=
"int" overloaded=
"no"> 
19988       <autodoc>GetDisplayDepth() -
> int
</autodoc> 
19990     <method name=
"DisplaySize" oldname=
"wxDisplaySize" type=
"" overloaded=
"no"> 
19991       <autodoc>DisplaySize() -
> (width, height)
</autodoc> 
19993         <param name=
"OUTPUT" type=
"int" default=
""/> 
19994         <param name=
"OUTPUT" type=
"int" default=
""/> 
19997     <method name=
"GetDisplaySize" oldname=
"wxGetDisplaySize" type=
"Size" overloaded=
"no"> 
19998       <autodoc>GetDisplaySize() -
> Size
</autodoc> 
20000     <method name=
"DisplaySizeMM" oldname=
"wxDisplaySizeMM" type=
"" overloaded=
"no"> 
20001       <autodoc>DisplaySizeMM() -
> (width, height)
</autodoc> 
20003         <param name=
"OUTPUT" type=
"int" default=
""/> 
20004         <param name=
"OUTPUT" type=
"int" default=
""/> 
20007     <method name=
"GetDisplaySizeMM" oldname=
"wxGetDisplaySizeMM" type=
"Size" overloaded=
"no"> 
20008       <autodoc>GetDisplaySizeMM() -
> Size
</autodoc> 
20010     <method name=
"ClientDisplayRect" oldname=
"wxClientDisplayRect" type=
"" overloaded=
"no"> 
20011       <autodoc>ClientDisplayRect() -
> (x, y, width, height)
</autodoc> 
20013         <param name=
"OUTPUT" type=
"int" default=
""/> 
20014         <param name=
"OUTPUT" type=
"int" default=
""/> 
20015         <param name=
"OUTPUT" type=
"int" default=
""/> 
20016         <param name=
"OUTPUT" type=
"int" default=
""/> 
20019     <method name=
"GetClientDisplayRect" oldname=
"wxGetClientDisplayRect" type=
"Rect" overloaded=
"no"> 
20020       <autodoc>GetClientDisplayRect() -
> Rect
</autodoc> 
20022     <method name=
"SetCursor" oldname=
"wxSetCursor" type=
"" overloaded=
"no"> 
20023       <autodoc>SetCursor(Cursor cursor)
</autodoc> 
20025         <param name=
"cursor" type=
"Cursor" default=
""/> 
20028     <method name=
"BeginBusyCursor" oldname=
"wxBeginBusyCursor" type=
"" overloaded=
"no"> 
20029       <autodoc>BeginBusyCursor(Cursor cursor=wxHOURGLASS_CURSOR)
</autodoc> 
20031         <param name=
"cursor" type=
"Cursor" default=
"wxHOURGLASS_CURSOR"/> 
20034     <method name=
"GetActiveWindow" oldname=
"wxGetActiveWindow" type=
"Window" overloaded=
"no"> 
20035       <autodoc>GetActiveWindow() -
> Window
</autodoc> 
20037     <method name=
"GenericFindWindowAtPoint" oldname=
"wxGenericFindWindowAtPoint" type=
"Window" overloaded=
"no"> 
20038       <autodoc>GenericFindWindowAtPoint(Point pt) -
> Window
</autodoc> 
20040         <param name=
"pt" type=
"Point" default=
""/> 
20043     <method name=
"FindWindowAtPoint" oldname=
"wxFindWindowAtPoint" type=
"Window" overloaded=
"no"> 
20044       <autodoc>FindWindowAtPoint(Point pt) -
> Window
</autodoc> 
20046         <param name=
"pt" type=
"Point" default=
""/> 
20049     <method name=
"GetTopLevelParent" oldname=
"wxGetTopLevelParent" type=
"Window" overloaded=
"no"> 
20050       <autodoc>GetTopLevelParent(Window win) -
> Window
</autodoc> 
20052         <param name=
"win" type=
"Window" default=
""/> 
20055     <method name=
"GetKeyState" oldname=
"wxGetKeyState" type=
"bool" overloaded=
"no"> 
20056       <autodoc>GetKeyState(int key) -
> bool
</autodoc> 
20058         <param name=
"key" type=
"wxKeyCode" default=
""/> 
20061     <method name=
"WakeUpMainThread" oldname=
"wxWakeUpMainThread" type=
"" overloaded=
"no"> 
20062       <autodoc>WakeUpMainThread()
</autodoc> 
20064     <method name=
"MutexGuiEnter" oldname=
"wxMutexGuiEnter" type=
"" overloaded=
"no"> 
20065       <autodoc>MutexGuiEnter()
</autodoc> 
20067     <method name=
"MutexGuiLeave" oldname=
"wxMutexGuiLeave" type=
"" overloaded=
"no"> 
20068       <autodoc>MutexGuiLeave()
</autodoc> 
20070     <class name=
"MutexGuiLocker" oldname=
"wxMutexGuiLocker" module=
"misc"> 
20071       <constructor name=
"MutexGuiLocker" overloaded=
"no"> 
20072         <autodoc>__init__() -
> MutexGuiLocker
</autodoc> 
20074       <destructor name=
"~wxMutexGuiLocker" overloaded=
"no"> 
20075         <autodoc>__del__()
</autodoc> 
20078     <method name=
"Thread_IsMain" oldname=
"wxThread_IsMain" type=
"bool" overloaded=
"no"> 
20079       <autodoc>Thread_IsMain() -
> bool
</autodoc> 
20082 #---------------------------------------------------------------------------
 
20084     <class name=
"ToolTip" oldname=
"wxToolTip" module=
"misc"> 
20085       <baseclass name=
"Object"/> 
20086       <constructor name=
"ToolTip" overloaded=
"no"> 
20087         <autodoc>__init__(String tip) -
> ToolTip
</autodoc> 
20089           <param name=
"tip" type=
"String" default=
""/> 
20092       <method name=
"SetTip" type=
"" overloaded=
"no"> 
20093         <autodoc>SetTip(String tip)
</autodoc> 
20095           <param name=
"tip" type=
"String" default=
""/> 
20098       <method name=
"GetTip" type=
"String" overloaded=
"no"> 
20099         <autodoc>GetTip() -
> String
</autodoc> 
20101       <method name=
"GetWindow" type=
"Window" overloaded=
"no"> 
20102         <autodoc>GetWindow() -
> Window
</autodoc> 
20104       <staticmethod name=
"Enable" type=
"" overloaded=
"no"> 
20105         <autodoc>Enable(bool flag)
</autodoc> 
20107           <param name=
"flag" type=
"bool" default=
""/> 
20110       <staticmethod name=
"SetDelay" type=
"" overloaded=
"no"> 
20111         <autodoc>SetDelay(long milliseconds)
</autodoc> 
20113           <param name=
"milliseconds" type=
"long" default=
""/> 
20117     <class name=
"Caret" oldname=
"wxCaret" module=
"misc"> 
20118       <constructor name=
"Caret" overloaded=
"no"> 
20119         <autodoc>__init__(Window window, Size size) -
> Caret
</autodoc> 
20121           <param name=
"window" type=
"Window" default=
""/> 
20122           <param name=
"size" type=
"Size" default=
""/> 
20125       <destructor name=
"~wxCaret" overloaded=
"no"> 
20126         <autodoc>__del__()
</autodoc> 
20128       <method name=
"IsOk" type=
"bool" overloaded=
"no"> 
20129         <autodoc>IsOk() -
> bool
</autodoc> 
20131       <method name=
"IsVisible" type=
"bool" overloaded=
"no"> 
20132         <autodoc>IsVisible() -
> bool
</autodoc> 
20134       <method name=
"GetPosition" type=
"Point" overloaded=
"no"> 
20135         <autodoc>GetPosition() -
> Point
</autodoc> 
20137       <method name=
"GetPositionTuple" type=
"" overloaded=
"no"> 
20138         <autodoc>GetPositionTuple() -
> (x,y)
</autodoc> 
20140           <param name=
"OUTPUT" type=
"int" default=
""/> 
20141           <param name=
"OUTPUT" type=
"int" default=
""/> 
20144       <method name=
"GetSize" type=
"Size" overloaded=
"no"> 
20145         <autodoc>GetSize() -
> Size
</autodoc> 
20147       <method name=
"GetSizeTuple" type=
"" overloaded=
"no"> 
20148         <autodoc>GetSizeTuple() -
> (width, height)
</autodoc> 
20150           <param name=
"OUTPUT" type=
"int" default=
""/> 
20151           <param name=
"OUTPUT" type=
"int" default=
""/> 
20154       <method name=
"GetWindow" type=
"Window" overloaded=
"no"> 
20155         <autodoc>GetWindow() -
> Window
</autodoc> 
20157       <method name=
"MoveXY" type=
"" overloaded=
"no"> 
20158         <autodoc>MoveXY(int x, int y)
</autodoc> 
20160           <param name=
"x" type=
"int" default=
""/> 
20161           <param name=
"y" type=
"int" default=
""/> 
20164       <method name=
"Move" type=
"" overloaded=
"no"> 
20165         <autodoc>Move(Point pt)
</autodoc> 
20167           <param name=
"pt" type=
"Point" default=
""/> 
20170       <method name=
"SetSizeWH" type=
"" overloaded=
"no"> 
20171         <autodoc>SetSizeWH(int width, int height)
</autodoc> 
20173           <param name=
"width" type=
"int" default=
""/> 
20174           <param name=
"height" type=
"int" default=
""/> 
20177       <method name=
"SetSize" type=
"" overloaded=
"no"> 
20178         <autodoc>SetSize(Size size)
</autodoc> 
20180           <param name=
"size" type=
"Size" default=
""/> 
20183       <method name=
"Show" type=
"" overloaded=
"no"> 
20184         <autodoc>Show(int show=True)
</autodoc> 
20186           <param name=
"show" type=
"int" default=
"True"/> 
20189       <method name=
"Hide" type=
"" overloaded=
"no"> 
20190         <autodoc>Hide()
</autodoc> 
20193     <method name=
"Caret_GetBlinkTime" oldname=
"wxCaret_GetBlinkTime" type=
"int" overloaded=
"no"> 
20194       <autodoc>Caret_GetBlinkTime() -
> int
</autodoc> 
20196     <method name=
"Caret_SetBlinkTime" oldname=
"wxCaret_SetBlinkTime" type=
"" overloaded=
"no"> 
20197       <autodoc>Caret_SetBlinkTime(int milliseconds)
</autodoc> 
20199         <param name=
"milliseconds" type=
"int" default=
""/> 
20202     <class name=
"BusyCursor" oldname=
"wxBusyCursor" module=
"misc"> 
20203       <constructor name=
"BusyCursor" overloaded=
"no"> 
20204         <autodoc>__init__(Cursor cursor=wxHOURGLASS_CURSOR) -
> BusyCursor
</autodoc> 
20206           <param name=
"cursor" type=
"Cursor" default=
"wxHOURGLASS_CURSOR"/> 
20209       <destructor name=
"~wxBusyCursor" overloaded=
"no"> 
20210         <autodoc>__del__()
</autodoc> 
20213     <class name=
"WindowDisabler" oldname=
"wxWindowDisabler" module=
"misc"> 
20214       <constructor name=
"WindowDisabler" overloaded=
"no"> 
20215         <autodoc>__init__(Window winToSkip=None) -
> WindowDisabler
</autodoc> 
20217           <param name=
"winToSkip" type=
"Window" default=
"NULL"/> 
20220       <destructor name=
"~wxWindowDisabler" overloaded=
"no"> 
20221         <autodoc>__del__()
</autodoc> 
20224     <class name=
"BusyInfo" oldname=
"wxBusyInfo" module=
"misc"> 
20225       <baseclass name=
"Object"/> 
20226       <constructor name=
"BusyInfo" overloaded=
"no"> 
20227         <autodoc>__init__(String message) -
> BusyInfo
</autodoc> 
20229           <param name=
"message" type=
"String" default=
""/> 
20232       <destructor name=
"~wxBusyInfo" overloaded=
"no"> 
20233         <autodoc>__del__()
</autodoc> 
20236     <class name=
"StopWatch" oldname=
"wxStopWatch" module=
"misc"> 
20237       <constructor name=
"StopWatch" overloaded=
"no"> 
20238         <autodoc>__init__() -
> StopWatch
</autodoc> 
20240       <method name=
"Start" type=
"" overloaded=
"no"> 
20241         <autodoc>Start(long t0=
0)
</autodoc> 
20243           <param name=
"t0" type=
"long" default=
"0"/> 
20246       <method name=
"Pause" type=
"" overloaded=
"no"> 
20247         <autodoc>Pause()
</autodoc> 
20249       <method name=
"Resume" type=
"" overloaded=
"no"> 
20250         <autodoc>Resume()
</autodoc> 
20252       <method name=
"Time" type=
"long" overloaded=
"no"> 
20253         <autodoc>Time() -
> long
</autodoc> 
20256     <class name=
"FileHistory" oldname=
"wxFileHistory" module=
"misc"> 
20257       <baseclass name=
"Object"/> 
20258       <constructor name=
"FileHistory" overloaded=
"no"> 
20259         <autodoc>__init__(int maxFiles=
9) -
> FileHistory
</autodoc> 
20261           <param name=
"maxFiles" type=
"int" default=
"9"/> 
20264       <destructor name=
"~wxFileHistory" overloaded=
"no"> 
20265         <autodoc>__del__()
</autodoc> 
20267       <method name=
"AddFileToHistory" type=
"" overloaded=
"no"> 
20268         <autodoc>AddFileToHistory(String file)
</autodoc> 
20270           <param name=
"file" type=
"String" default=
""/> 
20273       <method name=
"RemoveFileFromHistory" type=
"" overloaded=
"no"> 
20274         <autodoc>RemoveFileFromHistory(int i)
</autodoc> 
20276           <param name=
"i" type=
"int" default=
""/> 
20279       <method name=
"GetMaxFiles" type=
"int" overloaded=
"no"> 
20280         <autodoc>GetMaxFiles() -
> int
</autodoc> 
20282       <method name=
"UseMenu" type=
"" overloaded=
"no"> 
20283         <autodoc>UseMenu(Menu menu)
</autodoc> 
20285           <param name=
"menu" type=
"Menu" default=
""/> 
20288       <method name=
"RemoveMenu" type=
"" overloaded=
"no"> 
20289         <autodoc>RemoveMenu(Menu menu)
</autodoc> 
20291           <param name=
"menu" type=
"Menu" default=
""/> 
20294       <method name=
"Load" type=
"" overloaded=
"no"> 
20295         <autodoc>Load(ConfigBase config)
</autodoc> 
20297           <param name=
"config" type=
"wxConfigBase" default=
""/> 
20300       <method name=
"Save" type=
"" overloaded=
"no"> 
20301         <autodoc>Save(ConfigBase config)
</autodoc> 
20303           <param name=
"config" type=
"wxConfigBase" default=
""/> 
20306       <method name=
"AddFilesToMenu" type=
"" overloaded=
"no"> 
20307         <autodoc>AddFilesToMenu()
</autodoc> 
20309       <method name=
"AddFilesToThisMenu" type=
"" overloaded=
"no"> 
20310         <autodoc>AddFilesToThisMenu(Menu menu)
</autodoc> 
20312           <param name=
"menu" type=
"Menu" default=
""/> 
20315       <method name=
"GetHistoryFile" type=
"String" overloaded=
"no"> 
20316         <autodoc>GetHistoryFile(int i) -
> String
</autodoc> 
20318           <param name=
"i" type=
"int" default=
""/> 
20321       <method name=
"GetCount" type=
"int" overloaded=
"no"> 
20322         <autodoc>GetCount() -
> int
</autodoc> 
20325     <class name=
"SingleInstanceChecker" oldname=
"wxSingleInstanceChecker" module=
"misc"> 
20326       <constructor name=
"SingleInstanceChecker" overloaded=
"no"> 
20327         <autodoc>__init__(String name, String path=EmptyString) -
> SingleInstanceChecker
</autodoc> 
20329           <param name=
"name" type=
"String" default=
""/> 
20330           <param name=
"path" type=
"String" default=
"wxPyEmptyString"/> 
20333       <constructor name=
"PreSingleInstanceChecker" overloaded=
"no"> 
20334         <autodoc>PreSingleInstanceChecker() -
> SingleInstanceChecker
</autodoc> 
20336       <destructor name=
"~wxSingleInstanceChecker" overloaded=
"no"> 
20337         <autodoc>__del__()
</autodoc> 
20339       <method name=
"Create" type=
"bool" overloaded=
"no"> 
20340         <autodoc>Create(String name, String path=EmptyString) -
> bool
</autodoc> 
20342           <param name=
"name" type=
"String" default=
""/> 
20343           <param name=
"path" type=
"String" default=
"wxPyEmptyString"/> 
20346       <method name=
"IsAnotherRunning" type=
"bool" overloaded=
"no"> 
20347         <autodoc>IsAnotherRunning() -
> bool
</autodoc> 
20350     <method name=
"DrawWindowOnDC" oldname=
"wxDrawWindowOnDC" type=
"" overloaded=
"no"> 
20351       <autodoc>DrawWindowOnDC(Window window, DC dc, int method)
</autodoc> 
20353         <param name=
"window" type=
"Window" default=
""/> 
20354         <param name=
"dc" type=
"DC" default=
""/> 
20355         <param name=
"method" type=
"int" default=
""/> 
20359 #---------------------------------------------------------------------------
 
20361     <class name=
"TipProvider" oldname=
"wxTipProvider" module=
"misc"> 
20362       <destructor name=
"~wxTipProvider" overloaded=
"no"> 
20363         <autodoc>__del__()
</autodoc> 
20365       <method name=
"GetTip" type=
"String" overloaded=
"no"> 
20366         <autodoc>GetTip() -
> String
</autodoc> 
20368       <method name=
"GetCurrentTip" type=
"size_t" overloaded=
"no"> 
20369         <autodoc>GetCurrentTip() -
> size_t
</autodoc> 
20371       <method name=
"PreprocessTip" type=
"String" overloaded=
"no"> 
20372         <autodoc>PreprocessTip(String tip) -
> String
</autodoc> 
20374           <param name=
"tip" type=
"String" default=
""/> 
20378     <class name=
"PyTipProvider" oldname=
"wxPyTipProvider" module=
"misc"> 
20379       <baseclass name=
"TipProvider"/> 
20380       <constructor name=
"PyTipProvider" overloaded=
"no"> 
20381         <autodoc>__init__(size_t currentTip) -
> PyTipProvider
</autodoc> 
20383           <param name=
"currentTip" type=
"size_t" default=
""/> 
20386       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
20387         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
20389           <param name=
"self" type=
"PyObject" default=
""/> 
20390           <param name=
"_class" type=
"PyObject" default=
""/> 
20394     <method name=
"ShowTip" oldname=
"wxShowTip" type=
"bool" overloaded=
"no"> 
20395       <autodoc>ShowTip(Window parent, TipProvider tipProvider, bool showAtStartup=True) -
> bool
</autodoc> 
20397         <param name=
"parent" type=
"Window" default=
""/> 
20398         <param name=
"tipProvider" type=
"TipProvider" default=
""/> 
20399         <param name=
"showAtStartup" type=
"bool" default=
"True"/> 
20402     <method name=
"CreateFileTipProvider" oldname=
"wxCreateFileTipProvider" type=
"TipProvider" overloaded=
"no"> 
20403       <autodoc>CreateFileTipProvider(String filename, size_t currentTip) -
> TipProvider
</autodoc> 
20405         <param name=
"filename" type=
"String" default=
""/> 
20406         <param name=
"currentTip" type=
"size_t" default=
""/> 
20410 #---------------------------------------------------------------------------
 
20412     <class name=
"Timer" oldname=
"wxPyTimer" module=
"misc"> 
20413       <baseclass name=
"EvtHandler"/> 
20414       <constructor name=
"wxPyTimer" overloaded=
"no"> 
20415         <autodoc>__init__(EvtHandler owner=None, int id=-
1) -
> Timer
</autodoc> 
20417           <param name=
"owner" type=
"EvtHandler" default=
"NULL"/> 
20418           <param name=
"id" type=
"int" default=
"-1"/> 
20421       <destructor name=
"~wxPyTimer" overloaded=
"no"> 
20422         <autodoc>__del__()
</autodoc> 
20424       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
20425         <autodoc>_setCallbackInfo(PyObject self, PyObject _class, int incref=
1)
</autodoc> 
20427           <param name=
"self" type=
"PyObject" default=
""/> 
20428           <param name=
"_class" type=
"PyObject" default=
""/> 
20429           <param name=
"incref" type=
"int" default=
"1"/> 
20432       <method name=
"SetOwner" type=
"" overloaded=
"no"> 
20433         <autodoc>SetOwner(EvtHandler owner, int id=-
1)
</autodoc> 
20435           <param name=
"owner" type=
"EvtHandler" default=
""/> 
20436           <param name=
"id" type=
"int" default=
"-1"/> 
20439       <method name=
"Start" type=
"bool" overloaded=
"no"> 
20440         <autodoc>Start(int milliseconds=-
1, bool oneShot=False) -
> bool
</autodoc> 
20442           <param name=
"milliseconds" type=
"int" default=
"-1"/> 
20443           <param name=
"oneShot" type=
"bool" default=
"False"/> 
20446       <method name=
"Stop" type=
"" overloaded=
"no"> 
20447         <autodoc>Stop()
</autodoc> 
20449       <method name=
"IsRunning" type=
"bool" overloaded=
"no"> 
20450         <autodoc>IsRunning() -
> bool
</autodoc> 
20452       <method name=
"GetInterval" type=
"int" overloaded=
"no"> 
20453         <autodoc>GetInterval() -
> int
</autodoc> 
20455       <method name=
"IsOneShot" type=
"bool" overloaded=
"no"> 
20456         <autodoc>IsOneShot() -
> bool
</autodoc> 
20458       <method name=
"GetId" type=
"int" overloaded=
"no"> 
20459         <autodoc>GetId() -
> int
</autodoc> 
20463 # For backwards compatibility with 
2.4 
20464 class PyTimer(Timer):
 
20465     def __init__(self, notify):
 
20466         Timer.__init__(self)
 
20467         self.notify = notify
 
20474 EVT_TIMER = wx.PyEventBinder( wxEVT_TIMER, 
1 )
 
20477     <class name=
"TimerEvent" oldname=
"wxTimerEvent" module=
"misc"> 
20478       <baseclass name=
"Event"/> 
20479       <constructor name=
"TimerEvent" overloaded=
"no"> 
20480         <autodoc>__init__(int timerid=
0, int interval=
0) -
> TimerEvent
</autodoc> 
20482           <param name=
"timerid" type=
"int" default=
"0"/> 
20483           <param name=
"interval" type=
"int" default=
"0"/> 
20486       <method name=
"GetInterval" type=
"int" overloaded=
"no"> 
20487         <autodoc>GetInterval() -
> int
</autodoc> 
20490     <class name=
"TimerRunner" oldname=
"wxTimerRunner" module=
"misc"> 
20491       <constructor name=
"TimerRunner" overloaded=
"yes"> 
20493           <param name=
"timer" type=
"wxTimer" default=
""/> 
20496       <constructor name=
"TimerRunner" overloaded=
"yes"> 
20497         <autodoc>__init__(wxTimer timer) -
> TimerRunner
 
20498 __init__(wxTimer timer, int milli, bool oneShot=False) -
> TimerRunner
</autodoc> 
20500           <param name=
"timer" type=
"wxTimer" default=
""/> 
20501           <param name=
"milli" type=
"int" default=
""/> 
20502           <param name=
"oneShot" type=
"bool" default=
"False"/> 
20505       <destructor name=
"~wxTimerRunner" overloaded=
"no"> 
20506         <autodoc>__del__()
</autodoc> 
20508       <method name=
"Start" type=
"" overloaded=
"no"> 
20509         <autodoc>Start(int milli, bool oneShot=False)
</autodoc> 
20511           <param name=
"milli" type=
"int" default=
""/> 
20512           <param name=
"oneShot" type=
"bool" default=
"False"/> 
20517 #---------------------------------------------------------------------------
 
20519     <class name=
"Log" oldname=
"wxLog" module=
"misc"> 
20520       <constructor name=
"Log" overloaded=
"no"> 
20521         <autodoc>__init__() -
> Log
</autodoc> 
20523       <staticmethod name=
"IsEnabled" type=
"bool" overloaded=
"no"> 
20524         <autodoc>IsEnabled() -
> bool
</autodoc> 
20526       <staticmethod name=
"EnableLogging" type=
"bool" overloaded=
"no"> 
20527         <autodoc>EnableLogging(bool doIt=True) -
> bool
</autodoc> 
20529           <param name=
"doIt" type=
"bool" default=
"True"/> 
20532       <staticmethod name=
"OnLog" type=
"" overloaded=
"no"> 
20533         <autodoc>OnLog(wxLogLevel level, wxChar szString, time_t t)
</autodoc> 
20535           <param name=
"level" type=
"wxLogLevel" default=
""/> 
20536           <param name=
"szString" type=
"wxChar" default=
""/> 
20537           <param name=
"t" type=
"time_t" default=
""/> 
20540       <method name=
"Flush" type=
"" overloaded=
"no"> 
20541         <autodoc>Flush()
</autodoc> 
20543       <staticmethod name=
"FlushActive" type=
"" overloaded=
"no"> 
20544         <autodoc>FlushActive()
</autodoc> 
20546       <staticmethod name=
"GetActiveTarget" type=
"Log" overloaded=
"no"> 
20547         <autodoc>GetActiveTarget() -
> Log
</autodoc> 
20549       <staticmethod name=
"SetActiveTarget" type=
"Log" overloaded=
"no"> 
20550         <autodoc>SetActiveTarget(Log pLogger) -
> Log
</autodoc> 
20552           <param name=
"pLogger" type=
"Log" default=
""/> 
20555       <staticmethod name=
"Suspend" type=
"" overloaded=
"no"> 
20556         <autodoc>Suspend()
</autodoc> 
20558       <staticmethod name=
"Resume" type=
"" overloaded=
"no"> 
20559         <autodoc>Resume()
</autodoc> 
20561       <staticmethod name=
"SetVerbose" type=
"" overloaded=
"no"> 
20562         <autodoc>SetVerbose(bool bVerbose=True)
</autodoc> 
20564           <param name=
"bVerbose" type=
"bool" default=
"True"/> 
20567       <staticmethod name=
"SetLogLevel" type=
"" overloaded=
"no"> 
20568         <autodoc>SetLogLevel(wxLogLevel logLevel)
</autodoc> 
20570           <param name=
"logLevel" type=
"wxLogLevel" default=
""/> 
20573       <staticmethod name=
"DontCreateOnDemand" type=
"" overloaded=
"no"> 
20574         <autodoc>DontCreateOnDemand()
</autodoc> 
20576       <staticmethod name=
"SetTraceMask" type=
"" overloaded=
"no"> 
20577         <autodoc>SetTraceMask(wxTraceMask ulMask)
</autodoc> 
20579           <param name=
"ulMask" type=
"wxTraceMask" default=
""/> 
20582       <staticmethod name=
"AddTraceMask" type=
"" overloaded=
"no"> 
20583         <autodoc>AddTraceMask(String str)
</autodoc> 
20585           <param name=
"str" type=
"String" default=
""/> 
20588       <staticmethod name=
"RemoveTraceMask" type=
"" overloaded=
"no"> 
20589         <autodoc>RemoveTraceMask(String str)
</autodoc> 
20591           <param name=
"str" type=
"String" default=
""/> 
20594       <staticmethod name=
"ClearTraceMasks" type=
"" overloaded=
"no"> 
20595         <autodoc>ClearTraceMasks()
</autodoc> 
20597       <staticmethod name=
"GetTraceMasks" type=
"wxArrayString" overloaded=
"no"> 
20598         <autodoc>GetTraceMasks() -
> wxArrayString
</autodoc> 
20600       <staticmethod name=
"SetTimestamp" type=
"" overloaded=
"no"> 
20601         <autodoc>SetTimestamp(wxChar ts)
</autodoc> 
20603           <param name=
"ts" type=
"wxChar" default=
""/> 
20606       <staticmethod name=
"GetVerbose" type=
"bool" overloaded=
"no"> 
20607         <autodoc>GetVerbose() -
> bool
</autodoc> 
20609       <staticmethod name=
"GetTraceMask" type=
"wxTraceMask" overloaded=
"no"> 
20610         <autodoc>GetTraceMask() -
> wxTraceMask
</autodoc> 
20612       <staticmethod name=
"IsAllowedTraceMask" type=
"bool" overloaded=
"no"> 
20613         <autodoc>IsAllowedTraceMask(wxChar mask) -
> bool
</autodoc> 
20615           <param name=
"mask" type=
"wxChar" default=
""/> 
20618       <staticmethod name=
"GetLogLevel" type=
"wxLogLevel" overloaded=
"no"> 
20619         <autodoc>GetLogLevel() -
> wxLogLevel
</autodoc> 
20621       <staticmethod name=
"GetTimestamp" type=
"wxChar" overloaded=
"no"> 
20622         <autodoc>GetTimestamp() -
> wxChar
</autodoc> 
20624       <staticmethod name=
"TimeStamp" type=
"String" overloaded=
"no"> 
20625         <autodoc>TimeStamp() -
> String
</autodoc> 
20627       <method name=
"Destroy" type=
"" overloaded=
"no"> 
20628         <autodoc>Destroy()
</autodoc> 
20631     <class name=
"LogStderr" oldname=
"wxLogStderr" module=
"misc"> 
20632       <baseclass name=
"Log"/> 
20633       <constructor name=
"LogStderr" overloaded=
"no"> 
20634         <autodoc>__init__() -
> LogStderr
</autodoc> 
20637     <class name=
"LogTextCtrl" oldname=
"wxLogTextCtrl" module=
"misc"> 
20638       <baseclass name=
"Log"/> 
20639       <constructor name=
"LogTextCtrl" overloaded=
"no"> 
20640         <autodoc>__init__(wxTextCtrl pTextCtrl) -
> LogTextCtrl
</autodoc> 
20642           <param name=
"pTextCtrl" type=
"TextCtrl" default=
""/> 
20646     <class name=
"LogGui" oldname=
"wxLogGui" module=
"misc"> 
20647       <baseclass name=
"Log"/> 
20648       <constructor name=
"LogGui" overloaded=
"no"> 
20649         <autodoc>__init__() -
> LogGui
</autodoc> 
20652     <class name=
"LogWindow" oldname=
"wxLogWindow" module=
"misc"> 
20653       <baseclass name=
"Log"/> 
20654       <constructor name=
"LogWindow" overloaded=
"no"> 
20655         <autodoc>__init__(wxFrame pParent, String szTitle, bool bShow=True, bool bPassToOld=True) -
> LogWindow
</autodoc> 
20657           <param name=
"pParent" type=
"Frame" default=
""/> 
20658           <param name=
"szTitle" type=
"String" default=
""/> 
20659           <param name=
"bShow" type=
"bool" default=
"True"/> 
20660           <param name=
"bPassToOld" type=
"bool" default=
"True"/> 
20663       <method name=
"Show" type=
"" overloaded=
"no"> 
20664         <autodoc>Show(bool bShow=True)
</autodoc> 
20666           <param name=
"bShow" type=
"bool" default=
"True"/> 
20669       <method name=
"GetFrame" type=
"Frame" overloaded=
"no"> 
20670         <autodoc>GetFrame() -
> wxFrame
</autodoc> 
20672       <method name=
"GetOldLog" type=
"Log" overloaded=
"no"> 
20673         <autodoc>GetOldLog() -
> Log
</autodoc> 
20675       <method name=
"IsPassingMessages" type=
"bool" overloaded=
"no"> 
20676         <autodoc>IsPassingMessages() -
> bool
</autodoc> 
20678       <method name=
"PassMessages" type=
"" overloaded=
"no"> 
20679         <autodoc>PassMessages(bool bDoPass)
</autodoc> 
20681           <param name=
"bDoPass" type=
"bool" default=
""/> 
20685     <class name=
"LogChain" oldname=
"wxLogChain" module=
"misc"> 
20686       <baseclass name=
"Log"/> 
20687       <constructor name=
"LogChain" overloaded=
"no"> 
20688         <autodoc>__init__(Log logger) -
> LogChain
</autodoc> 
20690           <param name=
"logger" type=
"Log" default=
""/> 
20693       <method name=
"SetLog" type=
"" overloaded=
"no"> 
20694         <autodoc>SetLog(Log logger)
</autodoc> 
20696           <param name=
"logger" type=
"Log" default=
""/> 
20699       <method name=
"PassMessages" type=
"" overloaded=
"no"> 
20700         <autodoc>PassMessages(bool bDoPass)
</autodoc> 
20702           <param name=
"bDoPass" type=
"bool" default=
""/> 
20705       <method name=
"IsPassingMessages" type=
"bool" overloaded=
"no"> 
20706         <autodoc>IsPassingMessages() -
> bool
</autodoc> 
20708       <method name=
"GetOldLog" type=
"Log" overloaded=
"no"> 
20709         <autodoc>GetOldLog() -
> Log
</autodoc> 
20712     <method name=
"SysErrorCode" oldname=
"wxSysErrorCode" type=
"unsigned long" overloaded=
"no"> 
20713       <autodoc>SysErrorCode() -
> unsigned long
</autodoc> 
20715     <method name=
"SysErrorMsg" oldname=
"wxSysErrorMsg" type=
"String" overloaded=
"no"> 
20716       <autodoc>SysErrorMsg(unsigned long nErrCode=
0) -
> String
</autodoc> 
20718         <param name=
"nErrCode" type=
"unsigned long" default=
"0"/> 
20721     <method name=
"LogFatalError" oldname=
"wxLogFatalError" type=
"" overloaded=
"no"> 
20722       <autodoc>LogFatalError(String msg)
</autodoc> 
20724         <param name=
"msg" type=
"String" default=
""/> 
20727     <method name=
"LogError" oldname=
"wxLogError" type=
"" overloaded=
"no"> 
20728       <autodoc>LogError(String msg)
</autodoc> 
20730         <param name=
"msg" type=
"String" default=
""/> 
20733     <method name=
"LogWarning" oldname=
"wxLogWarning" type=
"" overloaded=
"no"> 
20734       <autodoc>LogWarning(String msg)
</autodoc> 
20736         <param name=
"msg" type=
"String" default=
""/> 
20739     <method name=
"LogMessage" oldname=
"wxLogMessage" type=
"" overloaded=
"no"> 
20740       <autodoc>LogMessage(String msg)
</autodoc> 
20742         <param name=
"msg" type=
"String" default=
""/> 
20745     <method name=
"LogInfo" oldname=
"wxLogInfo" type=
"" overloaded=
"no"> 
20746       <autodoc>LogInfo(String msg)
</autodoc> 
20748         <param name=
"msg" type=
"String" default=
""/> 
20751     <method name=
"LogDebug" oldname=
"wxLogDebug" type=
"" overloaded=
"no"> 
20752       <autodoc>LogDebug(String msg)
</autodoc> 
20754         <param name=
"msg" type=
"String" default=
""/> 
20757     <method name=
"LogVerbose" oldname=
"wxLogVerbose" type=
"" overloaded=
"no"> 
20758       <autodoc>LogVerbose(String msg)
</autodoc> 
20760         <param name=
"msg" type=
"String" default=
""/> 
20763     <method name=
"LogStatus" oldname=
"wxLogStatus" type=
"" overloaded=
"no"> 
20764       <autodoc>LogStatus(String msg)
</autodoc> 
20766         <param name=
"msg" type=
"String" default=
""/> 
20769     <method name=
"LogStatusFrame" oldname=
"wxLogStatus" type=
"" overloaded=
"no"> 
20770       <autodoc>LogStatusFrame(wxFrame pFrame, String msg)
</autodoc> 
20772         <param name=
"pFrame" type=
"Frame" default=
""/> 
20773         <param name=
"msg" type=
"String" default=
""/> 
20776     <method name=
"LogSysError" oldname=
"wxLogSysError" type=
"" overloaded=
"no"> 
20777       <autodoc>LogSysError(String msg)
</autodoc> 
20779         <param name=
"msg" type=
"String" default=
""/> 
20782     <method name=
"LogTrace" oldname=
"wxLogTrace" type=
"" overloaded=
"yes"> 
20784         <param name=
"mask" type=
"unsigned long" default=
""/> 
20785         <param name=
"msg" type=
"String" default=
""/> 
20788     <method name=
"LogTrace" oldname=
"wxLogTrace" type=
"" overloaded=
"yes"> 
20789       <autodoc>LogTrace(unsigned long mask, String msg)
 
20790 LogTrace(String mask, String msg)
</autodoc> 
20792         <param name=
"mask" type=
"String" default=
""/> 
20793         <param name=
"msg" type=
"String" default=
""/> 
20796     <method name=
"LogGeneric" oldname=
"wxLogGeneric" type=
"" overloaded=
"no"> 
20797       <autodoc>LogGeneric(unsigned long level, String msg)
</autodoc> 
20799         <param name=
"level" type=
"unsigned long" default=
""/> 
20800         <param name=
"msg" type=
"String" default=
""/> 
20803     <method name=
"SafeShowMessage" oldname=
"wxSafeShowMessage" type=
"" overloaded=
"no"> 
20804       <autodoc>SafeShowMessage(String title, String text)
</autodoc> 
20806         <param name=
"title" type=
"String" default=
""/> 
20807         <param name=
"text" type=
"String" default=
""/> 
20810     <class name=
"LogNull" oldname=
"wxLogNull" module=
"misc"> 
20811       <constructor name=
"LogNull" overloaded=
"no"> 
20812         <autodoc>__init__() -
> LogNull
</autodoc> 
20814       <destructor name=
"~wxLogNull" overloaded=
"no"> 
20815         <autodoc>__del__()
</autodoc> 
20818     <class name=
"PyLog" oldname=
"wxPyLog" module=
"misc"> 
20819       <baseclass name=
"Log"/> 
20820       <constructor name=
"PyLog" overloaded=
"no"> 
20821         <autodoc>__init__() -
> PyLog
</autodoc> 
20823       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
20824         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
20826           <param name=
"self" type=
"PyObject" default=
""/> 
20827           <param name=
"_class" type=
"PyObject" default=
""/> 
20832 #---------------------------------------------------------------------------
 
20834     <class name=
"Process" oldname=
"wxPyProcess" module=
"misc"> 
20835       <baseclass name=
"EvtHandler"/> 
20836       <constructor name=
"wxPyProcess" overloaded=
"no"> 
20837         <autodoc>__init__(EvtHandler parent=None, int id=-
1) -
> Process
</autodoc> 
20839           <param name=
"parent" type=
"EvtHandler" default=
"NULL"/> 
20840           <param name=
"id" type=
"int" default=
"-1"/> 
20843       <staticmethod name=
"Kill" type=
"wxKillError" overloaded=
"no"> 
20844         <autodoc>Kill(int pid, int sig=SIGTERM) -
> int
</autodoc> 
20846           <param name=
"pid" type=
"int" default=
""/> 
20847           <param name=
"sig" type=
"wxSignal" default=
"wxSIGTERM"/> 
20850       <staticmethod name=
"Exists" type=
"bool" overloaded=
"no"> 
20851         <autodoc>Exists(int pid) -
> bool
</autodoc> 
20853           <param name=
"pid" type=
"int" default=
""/> 
20856       <staticmethod name=
"Open" type=
"Process" overloaded=
"no"> 
20857         <autodoc>Open(String cmd, int flags=EXEC_ASYNC) -
> Process
</autodoc> 
20859           <param name=
"cmd" type=
"String" default=
""/> 
20860           <param name=
"flags" type=
"int" default=
"wxEXEC_ASYNC"/> 
20863       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
20864         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
20866           <param name=
"self" type=
"PyObject" default=
""/> 
20867           <param name=
"_class" type=
"PyObject" default=
""/> 
20870       <method name=
"base_OnTerminate" type=
"" overloaded=
"no"> 
20871         <autodoc>base_OnTerminate(int pid, int status)
</autodoc> 
20873           <param name=
"pid" type=
"int" default=
""/> 
20874           <param name=
"status" type=
"int" default=
""/> 
20877       <method name=
"Redirect" type=
"" overloaded=
"no"> 
20878         <autodoc>Redirect()
</autodoc> 
20880       <method name=
"IsRedirected" type=
"bool" overloaded=
"no"> 
20881         <autodoc>IsRedirected() -
> bool
</autodoc> 
20883       <method name=
"Detach" type=
"" overloaded=
"no"> 
20884         <autodoc>Detach()
</autodoc> 
20886       <method name=
"GetInputStream" type=
"wxInputStream" overloaded=
"no"> 
20887         <autodoc>GetInputStream() -
> InputStream
</autodoc> 
20889       <method name=
"GetErrorStream" type=
"wxInputStream" overloaded=
"no"> 
20890         <autodoc>GetErrorStream() -
> InputStream
</autodoc> 
20892       <method name=
"GetOutputStream" type=
"OutputStream" overloaded=
"no"> 
20893         <autodoc>GetOutputStream() -
> OutputStream
</autodoc> 
20895       <method name=
"CloseOutput" type=
"" overloaded=
"no"> 
20896         <autodoc>CloseOutput()
</autodoc> 
20898       <method name=
"IsInputOpened" type=
"bool" overloaded=
"no"> 
20899         <autodoc>IsInputOpened() -
> bool
</autodoc> 
20901       <method name=
"IsInputAvailable" type=
"bool" overloaded=
"no"> 
20902         <autodoc>IsInputAvailable() -
> bool
</autodoc> 
20904       <method name=
"IsErrorAvailable" type=
"bool" overloaded=
"no"> 
20905         <autodoc>IsErrorAvailable() -
> bool
</autodoc> 
20908     <class name=
"ProcessEvent" oldname=
"wxProcessEvent" module=
"misc"> 
20909       <baseclass name=
"Event"/> 
20910       <constructor name=
"ProcessEvent" overloaded=
"no"> 
20911         <autodoc>__init__(int id=
0, int pid=
0, int exitcode=
0) -
> ProcessEvent
</autodoc> 
20913           <param name=
"id" type=
"int" default=
"0"/> 
20914           <param name=
"pid" type=
"int" default=
"0"/> 
20915           <param name=
"exitcode" type=
"int" default=
"0"/> 
20918       <method name=
"GetPid" type=
"int" overloaded=
"no"> 
20919         <autodoc>GetPid() -
> int
</autodoc> 
20921       <method name=
"GetExitCode" type=
"int" overloaded=
"no"> 
20922         <autodoc>GetExitCode() -
> int
</autodoc> 
20924       <property name=
"m_pid" type=
"int" readonly=
"no"/> 
20925       <property name=
"m_exitcode" type=
"int" readonly=
"no"/> 
20928 EVT_END_PROCESS = wx.PyEventBinder( wxEVT_END_PROCESS, 
1 )
 
20930     <method name=
"Execute" oldname=
"wxExecute" type=
"long" overloaded=
"no"> 
20931       <autodoc>Execute(String command, int flags=EXEC_ASYNC, Process process=None) -
> long
</autodoc> 
20933         <param name=
"command" type=
"String" default=
""/> 
20934         <param name=
"flags" type=
"int" default=
"wxEXEC_ASYNC"/> 
20935         <param name=
"process" type=
"Process" default=
"NULL"/> 
20939 #---------------------------------------------------------------------------
 
20941     <class name=
"Joystick" oldname=
"wxJoystick" module=
"misc"> 
20942       <constructor name=
"Joystick" overloaded=
"no"> 
20943         <autodoc>__init__(int joystick=JOYSTICK1) -
> Joystick
</autodoc> 
20945           <param name=
"joystick" type=
"int" default=
"wxJOYSTICK1"/> 
20948       <destructor name=
"~wxJoystick" overloaded=
"no"> 
20949         <autodoc>__del__()
</autodoc> 
20951       <method name=
"GetPosition" type=
"Point" overloaded=
"no"> 
20952         <autodoc>GetPosition() -
> Point
</autodoc> 
20954       <method name=
"GetZPosition" type=
"int" overloaded=
"no"> 
20955         <autodoc>GetZPosition() -
> int
</autodoc> 
20957       <method name=
"GetButtonState" type=
"int" overloaded=
"no"> 
20958         <autodoc>GetButtonState() -
> int
</autodoc> 
20960       <method name=
"GetPOVPosition" type=
"int" overloaded=
"no"> 
20961         <autodoc>GetPOVPosition() -
> int
</autodoc> 
20963       <method name=
"GetPOVCTSPosition" type=
"int" overloaded=
"no"> 
20964         <autodoc>GetPOVCTSPosition() -
> int
</autodoc> 
20966       <method name=
"GetRudderPosition" type=
"int" overloaded=
"no"> 
20967         <autodoc>GetRudderPosition() -
> int
</autodoc> 
20969       <method name=
"GetUPosition" type=
"int" overloaded=
"no"> 
20970         <autodoc>GetUPosition() -
> int
</autodoc> 
20972       <method name=
"GetVPosition" type=
"int" overloaded=
"no"> 
20973         <autodoc>GetVPosition() -
> int
</autodoc> 
20975       <method name=
"GetMovementThreshold" type=
"int" overloaded=
"no"> 
20976         <autodoc>GetMovementThreshold() -
> int
</autodoc> 
20978       <method name=
"SetMovementThreshold" type=
"" overloaded=
"no"> 
20979         <autodoc>SetMovementThreshold(int threshold)
</autodoc> 
20981           <param name=
"threshold" type=
"int" default=
""/> 
20984       <method name=
"IsOk" type=
"bool" overloaded=
"no"> 
20985         <autodoc>IsOk() -
> bool
</autodoc> 
20987       <method name=
"GetNumberJoysticks" type=
"int" overloaded=
"no"> 
20988         <autodoc>GetNumberJoysticks() -
> int
</autodoc> 
20990       <method name=
"GetManufacturerId" type=
"int" overloaded=
"no"> 
20991         <autodoc>GetManufacturerId() -
> int
</autodoc> 
20993       <method name=
"GetProductId" type=
"int" overloaded=
"no"> 
20994         <autodoc>GetProductId() -
> int
</autodoc> 
20996       <method name=
"GetProductName" type=
"String" overloaded=
"no"> 
20997         <autodoc>GetProductName() -
> String
</autodoc> 
20999       <method name=
"GetXMin" type=
"int" overloaded=
"no"> 
21000         <autodoc>GetXMin() -
> int
</autodoc> 
21002       <method name=
"GetYMin" type=
"int" overloaded=
"no"> 
21003         <autodoc>GetYMin() -
> int
</autodoc> 
21005       <method name=
"GetZMin" type=
"int" overloaded=
"no"> 
21006         <autodoc>GetZMin() -
> int
</autodoc> 
21008       <method name=
"GetXMax" type=
"int" overloaded=
"no"> 
21009         <autodoc>GetXMax() -
> int
</autodoc> 
21011       <method name=
"GetYMax" type=
"int" overloaded=
"no"> 
21012         <autodoc>GetYMax() -
> int
</autodoc> 
21014       <method name=
"GetZMax" type=
"int" overloaded=
"no"> 
21015         <autodoc>GetZMax() -
> int
</autodoc> 
21017       <method name=
"GetNumberButtons" type=
"int" overloaded=
"no"> 
21018         <autodoc>GetNumberButtons() -
> int
</autodoc> 
21020       <method name=
"GetNumberAxes" type=
"int" overloaded=
"no"> 
21021         <autodoc>GetNumberAxes() -
> int
</autodoc> 
21023       <method name=
"GetMaxButtons" type=
"int" overloaded=
"no"> 
21024         <autodoc>GetMaxButtons() -
> int
</autodoc> 
21026       <method name=
"GetMaxAxes" type=
"int" overloaded=
"no"> 
21027         <autodoc>GetMaxAxes() -
> int
</autodoc> 
21029       <method name=
"GetPollingMin" type=
"int" overloaded=
"no"> 
21030         <autodoc>GetPollingMin() -
> int
</autodoc> 
21032       <method name=
"GetPollingMax" type=
"int" overloaded=
"no"> 
21033         <autodoc>GetPollingMax() -
> int
</autodoc> 
21035       <method name=
"GetRudderMin" type=
"int" overloaded=
"no"> 
21036         <autodoc>GetRudderMin() -
> int
</autodoc> 
21038       <method name=
"GetRudderMax" type=
"int" overloaded=
"no"> 
21039         <autodoc>GetRudderMax() -
> int
</autodoc> 
21041       <method name=
"GetUMin" type=
"int" overloaded=
"no"> 
21042         <autodoc>GetUMin() -
> int
</autodoc> 
21044       <method name=
"GetUMax" type=
"int" overloaded=
"no"> 
21045         <autodoc>GetUMax() -
> int
</autodoc> 
21047       <method name=
"GetVMin" type=
"int" overloaded=
"no"> 
21048         <autodoc>GetVMin() -
> int
</autodoc> 
21050       <method name=
"GetVMax" type=
"int" overloaded=
"no"> 
21051         <autodoc>GetVMax() -
> int
</autodoc> 
21053       <method name=
"HasRudder" type=
"bool" overloaded=
"no"> 
21054         <autodoc>HasRudder() -
> bool
</autodoc> 
21056       <method name=
"HasZ" type=
"bool" overloaded=
"no"> 
21057         <autodoc>HasZ() -
> bool
</autodoc> 
21059       <method name=
"HasU" type=
"bool" overloaded=
"no"> 
21060         <autodoc>HasU() -
> bool
</autodoc> 
21062       <method name=
"HasV" type=
"bool" overloaded=
"no"> 
21063         <autodoc>HasV() -
> bool
</autodoc> 
21065       <method name=
"HasPOV" type=
"bool" overloaded=
"no"> 
21066         <autodoc>HasPOV() -
> bool
</autodoc> 
21068       <method name=
"HasPOV4Dir" type=
"bool" overloaded=
"no"> 
21069         <autodoc>HasPOV4Dir() -
> bool
</autodoc> 
21071       <method name=
"HasPOVCTS" type=
"bool" overloaded=
"no"> 
21072         <autodoc>HasPOVCTS() -
> bool
</autodoc> 
21074       <method name=
"SetCapture" type=
"bool" overloaded=
"no"> 
21075         <autodoc>SetCapture(Window win, int pollingFreq=
0) -
> bool
</autodoc> 
21077           <param name=
"win" type=
"Window" default=
""/> 
21078           <param name=
"pollingFreq" type=
"int" default=
"0"/> 
21081       <method name=
"ReleaseCapture" type=
"bool" overloaded=
"no"> 
21082         <autodoc>ReleaseCapture() -
> bool
</autodoc> 
21085     <class name=
"JoystickEvent" oldname=
"wxJoystickEvent" module=
"misc"> 
21086       <baseclass name=
"Event"/> 
21087       <constructor name=
"JoystickEvent" overloaded=
"no"> 
21088         <autodoc>__init__(wxEventType type=wxEVT_NULL, int state=
0, int joystick=JOYSTICK1, 
 
21089     int change=
0) -
> JoystickEvent
</autodoc> 
21091           <param name=
"type" type=
"wxEventType" default=
"wxEVT_NULL"/> 
21092           <param name=
"state" type=
"int" default=
"0"/> 
21093           <param name=
"joystick" type=
"int" default=
"wxJOYSTICK1"/> 
21094           <param name=
"change" type=
"int" default=
"0"/> 
21097       <property name=
"m_pos" type=
"Point" readonly=
"no"/> 
21098       <property name=
"m_zPosition" type=
"int" readonly=
"no"/> 
21099       <property name=
"m_buttonChange" type=
"int" readonly=
"no"/> 
21100       <property name=
"m_buttonState" type=
"int" readonly=
"no"/> 
21101       <property name=
"m_joyStick" type=
"int" readonly=
"no"/> 
21102       <method name=
"GetPosition" type=
"Point" overloaded=
"no"> 
21103         <autodoc>GetPosition() -
> Point
</autodoc> 
21105       <method name=
"GetZPosition" type=
"int" overloaded=
"no"> 
21106         <autodoc>GetZPosition() -
> int
</autodoc> 
21108       <method name=
"GetButtonState" type=
"int" overloaded=
"no"> 
21109         <autodoc>GetButtonState() -
> int
</autodoc> 
21111       <method name=
"GetButtonChange" type=
"int" overloaded=
"no"> 
21112         <autodoc>GetButtonChange() -
> int
</autodoc> 
21114       <method name=
"GetJoystick" type=
"int" overloaded=
"no"> 
21115         <autodoc>GetJoystick() -
> int
</autodoc> 
21117       <method name=
"SetJoystick" type=
"" overloaded=
"no"> 
21118         <autodoc>SetJoystick(int stick)
</autodoc> 
21120           <param name=
"stick" type=
"int" default=
""/> 
21123       <method name=
"SetButtonState" type=
"" overloaded=
"no"> 
21124         <autodoc>SetButtonState(int state)
</autodoc> 
21126           <param name=
"state" type=
"int" default=
""/> 
21129       <method name=
"SetButtonChange" type=
"" overloaded=
"no"> 
21130         <autodoc>SetButtonChange(int change)
</autodoc> 
21132           <param name=
"change" type=
"int" default=
""/> 
21135       <method name=
"SetPosition" type=
"" overloaded=
"no"> 
21136         <autodoc>SetPosition(Point pos)
</autodoc> 
21138           <param name=
"pos" type=
"Point" default=
""/> 
21141       <method name=
"SetZPosition" type=
"" overloaded=
"no"> 
21142         <autodoc>SetZPosition(int zPos)
</autodoc> 
21144           <param name=
"zPos" type=
"int" default=
""/> 
21147       <method name=
"IsButton" type=
"bool" overloaded=
"no"> 
21148         <autodoc>IsButton() -
> bool
</autodoc> 
21150       <method name=
"IsMove" type=
"bool" overloaded=
"no"> 
21151         <autodoc>IsMove() -
> bool
</autodoc> 
21153       <method name=
"IsZMove" type=
"bool" overloaded=
"no"> 
21154         <autodoc>IsZMove() -
> bool
</autodoc> 
21156       <method name=
"ButtonDown" type=
"bool" overloaded=
"no"> 
21157         <autodoc>ButtonDown(int but=JOY_BUTTON_ANY) -
> bool
</autodoc> 
21159           <param name=
"but" type=
"int" default=
"wxJOY_BUTTON_ANY"/> 
21162       <method name=
"ButtonUp" type=
"bool" overloaded=
"no"> 
21163         <autodoc>ButtonUp(int but=JOY_BUTTON_ANY) -
> bool
</autodoc> 
21165           <param name=
"but" type=
"int" default=
"wxJOY_BUTTON_ANY"/> 
21168       <method name=
"ButtonIsDown" type=
"bool" overloaded=
"no"> 
21169         <autodoc>ButtonIsDown(int but=JOY_BUTTON_ANY) -
> bool
</autodoc> 
21171           <param name=
"but" type=
"int" default=
"wxJOY_BUTTON_ANY"/> 
21176 EVT_JOY_BUTTON_DOWN = wx.PyEventBinder( wxEVT_JOY_BUTTON_DOWN )
 
21177 EVT_JOY_BUTTON_UP = wx.PyEventBinder( wxEVT_JOY_BUTTON_UP )
 
21178 EVT_JOY_MOVE = wx.PyEventBinder( wxEVT_JOY_MOVE )
 
21179 EVT_JOY_ZMOVE = wx.PyEventBinder( wxEVT_JOY_ZMOVE )
 
21181 EVT_JOYSTICK_EVENTS = wx.PyEventBinder([ wxEVT_JOY_BUTTON_DOWN,
 
21182                                         wxEVT_JOY_BUTTON_UP, 
 
21189 #---------------------------------------------------------------------------
 
21191     <class name=
"Sound" oldname=
"wxSound" module=
"misc"> 
21192       <constructor name=
"Sound" overloaded=
"yes"/> 
21193       <constructor name=
"Sound" overloaded=
"yes"> 
21195           <param name=
"fileName" type=
"String" default=
""/> 
21196           <param name=
"isResource" type=
"bool" default=
"false"/> 
21199       <constructor name=
"Sound" overloaded=
"yes"> 
21200         <autodoc>__init__() -
> Sound
 
21201 __init__(String fileName, bool isResource=false) -
> Sound
 
21202 __init__(int size, wxByte data) -
> Sound
</autodoc> 
21204           <param name=
"size" type=
"int" default=
""/> 
21205           <param name=
"data" type=
"wxByte" default=
""/> 
21208       <destructor name=
"~wxSound" overloaded=
"no"> 
21209         <autodoc>__del__()
</autodoc> 
21211       <method name=
"Create" type=
"bool" overloaded=
"yes"> 
21213           <param name=
"fileName" type=
"String" default=
""/> 
21214           <param name=
"isResource" type=
"bool" default=
"false"/> 
21217       <method name=
"Create" type=
"bool" overloaded=
"yes"> 
21218         <autodoc>Create(String fileName, bool isResource=false) -
> bool
 
21219 Create(int size, wxByte data) -
> bool
</autodoc> 
21221           <param name=
"size" type=
"int" default=
""/> 
21222           <param name=
"data" type=
"wxByte" default=
""/> 
21225       <method name=
"IsOk" type=
"bool" overloaded=
"no"> 
21226         <autodoc>IsOk() -
> bool
</autodoc> 
21228       <method name=
"Play" type=
"bool" overloaded=
"no"> 
21229         <autodoc>Play(unsigned int flags=SOUND_ASYNC) -
> bool
</autodoc> 
21231           <param name=
"flags" type=
"unsigned int" default=
"wxSOUND_ASYNC"/> 
21234       <staticmethod name=
"PlaySound" type=
"bool" overloaded=
"no"> 
21235         <autodoc>PlaySound(String filename, unsigned int flags=SOUND_ASYNC) -
> bool
</autodoc> 
21237           <param name=
"filename" type=
"String" default=
""/> 
21238           <param name=
"flags" type=
"unsigned int" default=
"wxSOUND_ASYNC"/> 
21241       <staticmethod name=
"Stop" type=
"" overloaded=
"no"> 
21242         <autodoc>Stop()
</autodoc> 
21246 #---------------------------------------------------------------------------
 
21248     <class name=
"FileTypeInfo" oldname=
"wxFileTypeInfo" module=
"misc"> 
21249       <constructor name=
"FileTypeInfo" overloaded=
"no"> 
21250         <autodoc>__init__(String mimeType, String openCmd, String printCmd, String desc) -
> FileTypeInfo
</autodoc> 
21252           <param name=
"mimeType" type=
"String" default=
""/> 
21253           <param name=
"openCmd" type=
"String" default=
""/> 
21254           <param name=
"printCmd" type=
"String" default=
""/> 
21255           <param name=
"desc" type=
"String" default=
""/> 
21258       <constructor name=
"FileTypeInfoSequence" overloaded=
"no"> 
21259         <autodoc>FileTypeInfoSequence(wxArrayString sArray) -
> FileTypeInfo
</autodoc> 
21261           <param name=
"sArray" type=
"wxArrayString" default=
""/> 
21264       <constructor name=
"NullFileTypeInfo" overloaded=
"no"> 
21265         <autodoc>NullFileTypeInfo() -
> FileTypeInfo
</autodoc> 
21267       <method name=
"IsValid" type=
"bool" overloaded=
"no"> 
21268         <autodoc>IsValid() -
> bool
</autodoc> 
21270       <method name=
"SetIcon" type=
"" overloaded=
"no"> 
21271         <autodoc>SetIcon(String iconFile, int iconIndex=
0)
</autodoc> 
21273           <param name=
"iconFile" type=
"String" default=
""/> 
21274           <param name=
"iconIndex" type=
"int" default=
"0"/> 
21277       <method name=
"SetShortDesc" type=
"" overloaded=
"no"> 
21278         <autodoc>SetShortDesc(String shortDesc)
</autodoc> 
21280           <param name=
"shortDesc" type=
"String" default=
""/> 
21283       <method name=
"GetMimeType" type=
"String" overloaded=
"no"> 
21284         <autodoc>GetMimeType() -
> String
</autodoc> 
21286       <method name=
"GetOpenCommand" type=
"String" overloaded=
"no"> 
21287         <autodoc>GetOpenCommand() -
> String
</autodoc> 
21289       <method name=
"GetPrintCommand" type=
"String" overloaded=
"no"> 
21290         <autodoc>GetPrintCommand() -
> String
</autodoc> 
21292       <method name=
"GetShortDesc" type=
"String" overloaded=
"no"> 
21293         <autodoc>GetShortDesc() -
> String
</autodoc> 
21295       <method name=
"GetDescription" type=
"String" overloaded=
"no"> 
21296         <autodoc>GetDescription() -
> String
</autodoc> 
21298       <method name=
"GetExtensions" type=
"wxArrayString" overloaded=
"no"> 
21299         <autodoc>GetExtensions() -
> wxArrayString
</autodoc> 
21301       <method name=
"GetExtensionsCount" type=
"int" overloaded=
"no"> 
21302         <autodoc>GetExtensionsCount() -
> int
</autodoc> 
21304       <method name=
"GetIconFile" type=
"String" overloaded=
"no"> 
21305         <autodoc>GetIconFile() -
> String
</autodoc> 
21307       <method name=
"GetIconIndex" type=
"int" overloaded=
"no"> 
21308         <autodoc>GetIconIndex() -
> int
</autodoc> 
21311     <class name=
"FileType" oldname=
"wxFileType" module=
"misc"> 
21312       <constructor name=
"FileType" overloaded=
"no"> 
21313         <autodoc>__init__(FileTypeInfo ftInfo) -
> FileType
</autodoc> 
21315           <param name=
"ftInfo" type=
"FileTypeInfo" default=
""/> 
21318       <destructor name=
"~wxFileType" overloaded=
"no"> 
21319         <autodoc>__del__()
</autodoc> 
21321       <method name=
"GetMimeType" type=
"PyObject" overloaded=
"no"> 
21322         <autodoc>GetMimeType() -
> PyObject
</autodoc> 
21324       <method name=
"GetMimeTypes" type=
"PyObject" overloaded=
"no"> 
21325         <autodoc>GetMimeTypes() -
> PyObject
</autodoc> 
21327       <method name=
"GetExtensions" type=
"PyObject" overloaded=
"no"> 
21328         <autodoc>GetExtensions() -
> PyObject
</autodoc> 
21330       <method name=
"GetIcon" type=
"Icon" overloaded=
"no"> 
21331         <autodoc>GetIcon() -
> Icon
</autodoc> 
21333       <method name=
"GetIconInfo" type=
"PyObject" overloaded=
"no"> 
21334         <autodoc>GetIconInfo() -
> PyObject
</autodoc> 
21336       <method name=
"GetDescription" type=
"PyObject" overloaded=
"no"> 
21337         <autodoc>GetDescription() -
> PyObject
</autodoc> 
21339       <method name=
"GetOpenCommand" type=
"PyObject" overloaded=
"no"> 
21340         <autodoc>GetOpenCommand(String filename, String mimetype=EmptyString) -
> PyObject
</autodoc> 
21342           <param name=
"filename" type=
"String" default=
""/> 
21343           <param name=
"mimetype" type=
"String" default=
"wxPyEmptyString"/> 
21346       <method name=
"GetPrintCommand" type=
"PyObject" overloaded=
"no"> 
21347         <autodoc>GetPrintCommand(String filename, String mimetype=EmptyString) -
> PyObject
</autodoc> 
21349           <param name=
"filename" type=
"String" default=
""/> 
21350           <param name=
"mimetype" type=
"String" default=
"wxPyEmptyString"/> 
21353       <method name=
"GetAllCommands" type=
"PyObject" overloaded=
"no"> 
21354         <autodoc>GetAllCommands(String filename, String mimetype=EmptyString) -
> PyObject
</autodoc> 
21356           <param name=
"filename" type=
"String" default=
""/> 
21357           <param name=
"mimetype" type=
"String" default=
"wxPyEmptyString"/> 
21360       <method name=
"SetCommand" type=
"bool" overloaded=
"no"> 
21361         <autodoc>SetCommand(String cmd, String verb, bool overwriteprompt=True) -
> bool
</autodoc> 
21363           <param name=
"cmd" type=
"String" default=
""/> 
21364           <param name=
"verb" type=
"String" default=
""/> 
21365           <param name=
"overwriteprompt" type=
"bool" default=
"True"/> 
21368       <method name=
"SetDefaultIcon" type=
"bool" overloaded=
"no"> 
21369         <autodoc>SetDefaultIcon(String cmd=EmptyString, int index=
0) -
> bool
</autodoc> 
21371           <param name=
"cmd" type=
"String" default=
"wxPyEmptyString"/> 
21372           <param name=
"index" type=
"int" default=
"0"/> 
21375       <method name=
"Unassociate" type=
"bool" overloaded=
"no"> 
21376         <autodoc>Unassociate() -
> bool
</autodoc> 
21378       <staticmethod name=
"ExpandCommand" type=
"String" overloaded=
"no"> 
21379         <autodoc>ExpandCommand(String command, String filename, String mimetype=EmptyString) -
> String
</autodoc> 
21381           <param name=
"command" type=
"String" default=
""/> 
21382           <param name=
"filename" type=
"String" default=
""/> 
21383           <param name=
"mimetype" type=
"String" default=
"wxPyEmptyString"/> 
21387     <class name=
"MimeTypesManager" oldname=
"wxMimeTypesManager" module=
"misc"> 
21388       <constructor name=
"MimeTypesManager" overloaded=
"no"> 
21389         <autodoc>__init__() -
> MimeTypesManager
</autodoc> 
21391       <destructor name=
"~wxMimeTypesManager" overloaded=
"no"> 
21392         <autodoc>__del__()
</autodoc> 
21394       <staticmethod name=
"IsOfType" type=
"bool" overloaded=
"no"> 
21395         <autodoc>IsOfType(String mimeType, String wildcard) -
> bool
</autodoc> 
21397           <param name=
"mimeType" type=
"String" default=
""/> 
21398           <param name=
"wildcard" type=
"String" default=
""/> 
21401       <method name=
"Initialize" type=
"" overloaded=
"no"> 
21402         <autodoc>Initialize(int mailcapStyle=MAILCAP_ALL, String extraDir=EmptyString)
</autodoc> 
21404           <param name=
"mailcapStyle" type=
"int" default=
"wxMAILCAP_ALL"/> 
21405           <param name=
"extraDir" type=
"String" default=
"wxPyEmptyString"/> 
21408       <method name=
"ClearData" type=
"" overloaded=
"no"> 
21409         <autodoc>ClearData()
</autodoc> 
21411       <method name=
"GetFileTypeFromExtension" type=
"FileType" overloaded=
"no"> 
21412         <autodoc>GetFileTypeFromExtension(String ext) -
> FileType
</autodoc> 
21414           <param name=
"ext" type=
"String" default=
""/> 
21417       <method name=
"GetFileTypeFromMimeType" type=
"FileType" overloaded=
"no"> 
21418         <autodoc>GetFileTypeFromMimeType(String mimeType) -
> FileType
</autodoc> 
21420           <param name=
"mimeType" type=
"String" default=
""/> 
21423       <method name=
"ReadMailcap" type=
"bool" overloaded=
"no"> 
21424         <autodoc>ReadMailcap(String filename, bool fallback=False) -
> bool
</autodoc> 
21426           <param name=
"filename" type=
"String" default=
""/> 
21427           <param name=
"fallback" type=
"bool" default=
"False"/> 
21430       <method name=
"ReadMimeTypes" type=
"bool" overloaded=
"no"> 
21431         <autodoc>ReadMimeTypes(String filename) -
> bool
</autodoc> 
21433           <param name=
"filename" type=
"String" default=
""/> 
21436       <method name=
"EnumAllFileTypes" type=
"PyObject" overloaded=
"no"> 
21437         <autodoc>EnumAllFileTypes() -
> PyObject
</autodoc> 
21439       <method name=
"AddFallback" type=
"" overloaded=
"no"> 
21440         <autodoc>AddFallback(FileTypeInfo ft)
</autodoc> 
21442           <param name=
"ft" type=
"FileTypeInfo" default=
""/> 
21445       <method name=
"Associate" type=
"FileType" overloaded=
"no"> 
21446         <autodoc>Associate(FileTypeInfo ftInfo) -
> FileType
</autodoc> 
21448           <param name=
"ftInfo" type=
"FileTypeInfo" default=
""/> 
21451       <method name=
"Unassociate" type=
"bool" overloaded=
"no"> 
21452         <autodoc>Unassociate(FileType ft) -
> bool
</autodoc> 
21454           <param name=
"ft" type=
"FileType" default=
""/> 
21459 #---------------------------------------------------------------------------
 
21461     <class name=
"ArtProvider" oldname=
"wxPyArtProvider" module=
"misc"> 
21462       <constructor name=
"wxPyArtProvider" overloaded=
"no"> 
21463         <autodoc>__init__() -
> ArtProvider
</autodoc> 
21465       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
21466         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
21468           <param name=
"self" type=
"PyObject" default=
""/> 
21469           <param name=
"_class" type=
"PyObject" default=
""/> 
21472       <staticmethod name=
"PushProvider" type=
"" overloaded=
"no"> 
21473         <autodoc>PushProvider(ArtProvider provider)
</autodoc> 
21474         <docstring>Add new provider to the top of providers stack.
</docstring> 
21476           <param name=
"provider" type=
"ArtProvider" default=
""/> 
21479       <staticmethod name=
"PopProvider" type=
"bool" overloaded=
"no"> 
21480         <autodoc>PopProvider() -
> bool
</autodoc> 
21481         <docstring>Remove latest added provider and delete it.
</docstring> 
21483       <staticmethod name=
"RemoveProvider" type=
"bool" overloaded=
"no"> 
21484         <autodoc>RemoveProvider(ArtProvider provider) -
> bool
</autodoc> 
21485         <docstring>Remove provider. The provider must have been added previously!
 
21486 The provider is _not_ deleted.
</docstring> 
21488           <param name=
"provider" type=
"ArtProvider" default=
""/> 
21491       <staticmethod name=
"GetBitmap" type=
"Bitmap" overloaded=
"no"> 
21492         <autodoc>GetBitmap(String id, String client=ART_OTHER, Size size=DefaultSize) -
> Bitmap
</autodoc> 
21493         <docstring>Query the providers for bitmap with given ID and return it. Return
 
21494 wx.NullBitmap if no provider provides it.
</docstring> 
21496           <param name=
"id" type=
"String" default=
""/> 
21497           <param name=
"client" type=
"String" default=
"wxPyART_OTHER"/> 
21498           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
21501       <staticmethod name=
"GetIcon" type=
"Icon" overloaded=
"no"> 
21502         <autodoc>GetIcon(String id, String client=ART_OTHER, Size size=DefaultSize) -
> Icon
</autodoc> 
21503         <docstring>Query the providers for icon with given ID and return it. Return
 
21504 wx.NullIcon if no provider provides it.
</docstring> 
21506           <param name=
"id" type=
"String" default=
""/> 
21507           <param name=
"client" type=
"String" default=
"wxPyART_OTHER"/> 
21508           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
21511       <method name=
"Destroy" type=
"" overloaded=
"no"> 
21512         <autodoc>Destroy()
</autodoc> 
21516 #---------------------------------------------------------------------------
 
21518     <class name=
"ConfigBase" oldname=
"wxConfigBase" module=
"misc"> 
21519       <docstring>wx.ConfigBase class defines the basic interface of all config
 
21520 classes. It can not be used by itself (it is an abstract base
 
21521 class) and you will always use one of its derivations: wx.Config
 
21524 wx.ConfigBase organizes the items in a tree-like structure,
 
21525 modeled after the Unix/Dos filesystem. There are groups that act
 
21526 like directories and entries, key/value pairs that act like
 
21527 files.  There is always one current group given by the current
 
21528 path.  As in the file system case, to specify a key in the config
 
21529 class you must use a path to it.  Config classes also support the
 
21530 notion of the current group, which makes it possible to use
 
21533 Keys are pairs "key_name = value" where value may be of string,
 
21534 integer floating point or boolean, you can not store binary data
 
21535 without first encoding it as a string.  For performance reasons
 
21536 items should be kept small, no more than a couple kilobytes.
 
21538       <destructor name=
"~wxConfigBase" overloaded=
"no"> 
21539         <autodoc>__del__()
</autodoc> 
21541       <staticmethod name=
"Set" type=
"ConfigBase" overloaded=
"no"> 
21542         <autodoc>Set(ConfigBase config) -
> ConfigBase
</autodoc> 
21543         <docstring>Sets the global config object (the one returned by Get) and
 
21544 returns a reference to the previous global config object.
</docstring> 
21546           <param name=
"config" type=
"ConfigBase" default=
""/> 
21549       <staticmethod name=
"Get" type=
"ConfigBase" overloaded=
"no"> 
21550         <autodoc>Get(bool createOnDemand=True) -
> ConfigBase
</autodoc> 
21551         <docstring>Returns the current global config object, creating one if neccessary.
</docstring> 
21553           <param name=
"createOnDemand" type=
"bool" default=
"True"/> 
21556       <staticmethod name=
"Create" type=
"ConfigBase" overloaded=
"no"> 
21557         <autodoc>Create() -
> ConfigBase
</autodoc> 
21558         <docstring>Create and return a new global config object.  This function will
 
21559 create the "best" implementation of wx.Config available for the
 
21560 current platform.
</docstring> 
21562       <staticmethod name=
"DontCreateOnDemand" type=
"" overloaded=
"no"> 
21563         <autodoc>DontCreateOnDemand()
</autodoc> 
21564         <docstring>Should Get() try to create a new log object if there isn't a current one?
</docstring> 
21566       <method name=
"SetPath" type=
"" overloaded=
"no"> 
21567         <autodoc>SetPath(String path)
</autodoc> 
21568         <docstring>Set current path: if the first character is '/', it's the absolute path,
 
21569 otherwise it's a relative path. '..' is supported. If the strPath
 
21570 doesn't exist it is created.
</docstring> 
21572           <param name=
"path" type=
"String" default=
""/> 
21575       <method name=
"GetPath" type=
"String" overloaded=
"no"> 
21576         <autodoc>GetPath() -
> String
</autodoc> 
21577         <docstring>Retrieve the current path (always as absolute path)
</docstring> 
21579       <method name=
"GetFirstGroup" type=
"PyObject" overloaded=
"no"> 
21580         <autodoc>GetFirstGroup() -
> (more, value, index)
</autodoc> 
21581         <docstring>Allows enumerating the subgroups in a config object.  Returns
 
21582 a tuple containing a flag indicating there are more items, the
 
21583 name of the current item, and an index to pass to GetNextGroup to
 
21584 fetch the next item.
</docstring> 
21586       <method name=
"GetNextGroup" type=
"PyObject" overloaded=
"no"> 
21587         <autodoc>GetNextGroup(long index) -
> (more, value, index)
</autodoc> 
21588         <docstring>Allows enumerating the subgroups in a config object.  Returns
 
21589 a tuple containing a flag indicating there are more items, the
 
21590 name of the current item, and an index to pass to GetNextGroup to
 
21591 fetch the next item.
</docstring> 
21593           <param name=
"index" type=
"long" default=
""/> 
21596       <method name=
"GetFirstEntry" type=
"PyObject" overloaded=
"no"> 
21597         <autodoc>GetFirstEntry() -
> (more, value, index)
</autodoc> 
21598         <docstring>Allows enumerating the entries in the current group in a config
 
21599 object.  Returns a tuple containing a flag indicating there are
 
21600 more items, the name of the current item, and an index to pass to
 
21601 GetNextGroup to fetch the next item.
</docstring> 
21603       <method name=
"GetNextEntry" type=
"PyObject" overloaded=
"no"> 
21604         <autodoc>GetNextEntry(long index) -
> (more, value, index)
</autodoc> 
21605         <docstring>Allows enumerating the entries in the current group in a config
 
21606 object.  Returns a tuple containing a flag indicating there are
 
21607 more items, the name of the current item, and an index to pass to
 
21608 GetNextGroup to fetch the next item.
</docstring> 
21610           <param name=
"index" type=
"long" default=
""/> 
21613       <method name=
"GetNumberOfEntries" type=
"size_t" overloaded=
"no"> 
21614         <autodoc>GetNumberOfEntries(bool recursive=False) -
> size_t
</autodoc> 
21615         <docstring>Get the number of entries in the current group, with or
 
21616 without its subgroups.
</docstring> 
21618           <param name=
"recursive" type=
"bool" default=
"False"/> 
21621       <method name=
"GetNumberOfGroups" type=
"size_t" overloaded=
"no"> 
21622         <autodoc>GetNumberOfGroups(bool recursive=False) -
> size_t
</autodoc> 
21623         <docstring>Get the number of subgroups in the current group, with or
 
21624 without its subgroups.
</docstring> 
21626           <param name=
"recursive" type=
"bool" default=
"False"/> 
21629       <method name=
"HasGroup" type=
"bool" overloaded=
"no"> 
21630         <autodoc>HasGroup(String name) -
> bool
</autodoc> 
21631         <docstring>Returns True if the group by this name exists
</docstring> 
21633           <param name=
"name" type=
"String" default=
""/> 
21636       <method name=
"HasEntry" type=
"bool" overloaded=
"no"> 
21637         <autodoc>HasEntry(String name) -
> bool
</autodoc> 
21638         <docstring>Returns True if the entry by this name exists
</docstring> 
21640           <param name=
"name" type=
"String" default=
""/> 
21643       <method name=
"Exists" type=
"bool" overloaded=
"no"> 
21644         <autodoc>Exists(String name) -
> bool
</autodoc> 
21645         <docstring>Returns True if either a group or an entry with a given name exists
</docstring> 
21647           <param name=
"name" type=
"String" default=
""/> 
21650       <method name=
"GetEntryType" type=
"wxConfigBase::EntryType" overloaded=
"no"> 
21651         <autodoc>GetEntryType(String name) -
> int
</autodoc> 
21652         <docstring>Get the type of the entry.  Returns one of the wx.Config.Type_XXX values.
</docstring> 
21654           <param name=
"name" type=
"String" default=
""/> 
21657       <method name=
"Read" type=
"String" overloaded=
"no"> 
21658         <autodoc>Read(String key, String defaultVal=EmptyString) -
> String
</autodoc> 
21659         <docstring>Returns the value of key if it exists, defaultVal otherwise.
</docstring> 
21661           <param name=
"key" type=
"String" default=
""/> 
21662           <param name=
"defaultVal" type=
"String" default=
"wxPyEmptyString"/> 
21665       <method name=
"ReadInt" type=
"long" overloaded=
"no"> 
21666         <autodoc>ReadInt(String key, long defaultVal=
0) -
> long
</autodoc> 
21667         <docstring>Returns the value of key if it exists, defaultVal otherwise.
</docstring> 
21669           <param name=
"key" type=
"String" default=
""/> 
21670           <param name=
"defaultVal" type=
"long" default=
"0"/> 
21673       <method name=
"ReadFloat" type=
"double" overloaded=
"no"> 
21674         <autodoc>ReadFloat(String key, double defaultVal=
0.0) -
> double
</autodoc> 
21675         <docstring>Returns the value of key if it exists, defaultVal otherwise.
</docstring> 
21677           <param name=
"key" type=
"String" default=
""/> 
21678           <param name=
"defaultVal" type=
"double" default=
"0.0"/> 
21681       <method name=
"ReadBool" type=
"bool" overloaded=
"no"> 
21682         <autodoc>ReadBool(String key, bool defaultVal=False) -
> bool
</autodoc> 
21683         <docstring>Returns the value of key if it exists, defaultVal otherwise.
</docstring> 
21685           <param name=
"key" type=
"String" default=
""/> 
21686           <param name=
"defaultVal" type=
"bool" default=
"False"/> 
21689       <method name=
"Write" type=
"bool" overloaded=
"no"> 
21690         <autodoc>Write(String key, String value) -
> bool
</autodoc> 
21691         <docstring>write the value (return True on success)
</docstring> 
21693           <param name=
"key" type=
"String" default=
""/> 
21694           <param name=
"value" type=
"String" default=
""/> 
21697       <method name=
"WriteInt" type=
"bool" overloaded=
"no"> 
21698         <autodoc>WriteInt(String key, long value) -
> bool
</autodoc> 
21699         <docstring>write the value (return True on success)
</docstring> 
21701           <param name=
"key" type=
"String" default=
""/> 
21702           <param name=
"value" type=
"long" default=
""/> 
21705       <method name=
"WriteFloat" type=
"bool" overloaded=
"no"> 
21706         <autodoc>WriteFloat(String key, double value) -
> bool
</autodoc> 
21707         <docstring>write the value (return True on success)
</docstring> 
21709           <param name=
"key" type=
"String" default=
""/> 
21710           <param name=
"value" type=
"double" default=
""/> 
21713       <method name=
"WriteBool" type=
"bool" overloaded=
"no"> 
21714         <autodoc>WriteBool(String key, bool value) -
> bool
</autodoc> 
21715         <docstring>write the value (return True on success)
</docstring> 
21717           <param name=
"key" type=
"String" default=
""/> 
21718           <param name=
"value" type=
"bool" default=
""/> 
21721       <method name=
"Flush" type=
"bool" overloaded=
"no"> 
21722         <autodoc>Flush(bool currentOnly=False) -
> bool
</autodoc> 
21723         <docstring>permanently writes all changes
</docstring> 
21725           <param name=
"currentOnly" type=
"bool" default=
"False"/> 
21728       <method name=
"RenameEntry" type=
"bool" overloaded=
"no"> 
21729         <autodoc>RenameEntry(String oldName, String newName) -
> bool
</autodoc> 
21730         <docstring>Rename an entry.  Returns False on failure (probably because the new
 
21731 name is already taken by an existing entry)
</docstring> 
21733           <param name=
"oldName" type=
"String" default=
""/> 
21734           <param name=
"newName" type=
"String" default=
""/> 
21737       <method name=
"RenameGroup" type=
"bool" overloaded=
"no"> 
21738         <autodoc>RenameGroup(String oldName, String newName) -
> bool
</autodoc> 
21739         <docstring>Rename aa group.  Returns False on failure (probably because the new
 
21740 name is already taken by an existing entry)
</docstring> 
21742           <param name=
"oldName" type=
"String" default=
""/> 
21743           <param name=
"newName" type=
"String" default=
""/> 
21746       <method name=
"DeleteEntry" type=
"bool" overloaded=
"no"> 
21747         <autodoc>DeleteEntry(String key, bool deleteGroupIfEmpty=True) -
> bool
</autodoc> 
21748         <docstring>Deletes the specified entry and the group it belongs to if
 
21749 it was the last key in it and the second parameter is True
</docstring> 
21751           <param name=
"key" type=
"String" default=
""/> 
21752           <param name=
"deleteGroupIfEmpty" type=
"bool" default=
"True"/> 
21755       <method name=
"DeleteGroup" type=
"bool" overloaded=
"no"> 
21756         <autodoc>DeleteGroup(String key) -
> bool
</autodoc> 
21757         <docstring>Delete the group (with all subgroups)
</docstring> 
21759           <param name=
"key" type=
"String" default=
""/> 
21762       <method name=
"DeleteAll" type=
"bool" overloaded=
"no"> 
21763         <autodoc>DeleteAll() -
> bool
</autodoc> 
21764         <docstring>Delete the whole underlying object (disk file, registry key, ...)
 
21765 primarly intended for use by desinstallation routine.
</docstring> 
21767       <method name=
"SetExpandEnvVars" type=
"" overloaded=
"no"> 
21768         <autodoc>SetExpandEnvVars(bool doIt=True)
</autodoc> 
21769         <docstring>We can automatically expand environment variables in the config entries
 
21770 (this option is on by default, you can turn it on/off at any time)
</docstring> 
21772           <param name=
"doIt" type=
"bool" default=
"True"/> 
21775       <method name=
"IsExpandingEnvVars" type=
"bool" overloaded=
"no"> 
21776         <autodoc>IsExpandingEnvVars() -
> bool
</autodoc> 
21777         <docstring>Are we currently expanding environment variables?
</docstring> 
21779       <method name=
"SetRecordDefaults" type=
"" overloaded=
"no"> 
21780         <autodoc>SetRecordDefaults(bool doIt=True)
</autodoc> 
21781         <docstring>Set whether the config objec should record default values.
</docstring> 
21783           <param name=
"doIt" type=
"bool" default=
"True"/> 
21786       <method name=
"IsRecordingDefaults" type=
"bool" overloaded=
"no"> 
21787         <autodoc>IsRecordingDefaults() -
> bool
</autodoc> 
21788         <docstring>Are we currently recording default values?
</docstring> 
21790       <method name=
"ExpandEnvVars" type=
"String" overloaded=
"no"> 
21791         <autodoc>ExpandEnvVars(String str) -
> String
</autodoc> 
21792         <docstring>Expand any environment variables in str and return the result
</docstring> 
21794           <param name=
"str" type=
"String" default=
""/> 
21797       <method name=
"GetAppName" type=
"String" overloaded=
"no"> 
21798         <autodoc>GetAppName() -
> String
</autodoc> 
21800       <method name=
"GetVendorName" type=
"String" overloaded=
"no"> 
21801         <autodoc>GetVendorName() -
> String
</autodoc> 
21803       <method name=
"SetAppName" type=
"" overloaded=
"no"> 
21804         <autodoc>SetAppName(String appName)
</autodoc> 
21806           <param name=
"appName" type=
"String" default=
""/> 
21809       <method name=
"SetVendorName" type=
"" overloaded=
"no"> 
21810         <autodoc>SetVendorName(String vendorName)
</autodoc> 
21812           <param name=
"vendorName" type=
"String" default=
""/> 
21815       <method name=
"SetStyle" type=
"" overloaded=
"no"> 
21816         <autodoc>SetStyle(long style)
</autodoc> 
21818           <param name=
"style" type=
"long" default=
""/> 
21821       <method name=
"GetStyle" type=
"long" overloaded=
"no"> 
21822         <autodoc>GetStyle() -
> long
</autodoc> 
21825     <class name=
"Config" oldname=
"wxConfig" module=
"misc"> 
21826       <docstring>This ConfigBase-derived class will use the registry on Windows,
 
21827 and will be a wx.FileConfig on other platforms.
</docstring> 
21828       <baseclass name=
"ConfigBase"/> 
21829       <constructor name=
"Config" overloaded=
"no"> 
21830         <autodoc>__init__(String appName=EmptyString, String vendorName=EmptyString, 
 
21831     String localFilename=EmptyString, String globalFilename=EmptyString, 
 
21832     long style=wxCONFIG_USE_LOCAL_FILE|wxCONFIG_USE_GLOBAL_FILE) -
> Config
</autodoc> 
21834           <param name=
"appName" type=
"String" default=
"wxPyEmptyString"/> 
21835           <param name=
"vendorName" type=
"String" default=
"wxPyEmptyString"/> 
21836           <param name=
"localFilename" type=
"String" default=
"wxPyEmptyString"/> 
21837           <param name=
"globalFilename" type=
"String" default=
"wxPyEmptyString"/> 
21838           <param name=
"style" type=
"long" default=
"wxCONFIG_USE_LOCAL_FILE|wxCONFIG_USE_GLOBAL_FILE"/> 
21841       <destructor name=
"~wxConfig" overloaded=
"no"> 
21842         <autodoc>__del__()
</autodoc> 
21845     <class name=
"FileConfig" oldname=
"wxFileConfig" module=
"misc"> 
21846       <docstring>This config class will use a file for storage on all platforms.
</docstring> 
21847       <baseclass name=
"ConfigBase"/> 
21848       <constructor name=
"FileConfig" overloaded=
"no"> 
21849         <autodoc>__init__(String appName=EmptyString, String vendorName=EmptyString, 
 
21850     String localFilename=EmptyString, String globalFilename=EmptyString, 
 
21851     long style=wxCONFIG_USE_LOCAL_FILE|wxCONFIG_USE_GLOBAL_FILE) -
> FileConfig
</autodoc> 
21853           <param name=
"appName" type=
"String" default=
"wxPyEmptyString"/> 
21854           <param name=
"vendorName" type=
"String" default=
"wxPyEmptyString"/> 
21855           <param name=
"localFilename" type=
"String" default=
"wxPyEmptyString"/> 
21856           <param name=
"globalFilename" type=
"String" default=
"wxPyEmptyString"/> 
21857           <param name=
"style" type=
"long" default=
"wxCONFIG_USE_LOCAL_FILE|wxCONFIG_USE_GLOBAL_FILE"/> 
21860       <destructor name=
"~wxFileConfig" overloaded=
"no"> 
21861         <autodoc>__del__()
</autodoc> 
21864     <class name=
"ConfigPathChanger" oldname=
"wxConfigPathChanger" module=
"misc"> 
21865       <docstring>A handy little class which changes current path to the path of
 
21866 given entry and restores it in the destructoir: so if you declare
 
21867 a local variable of this type, you work in the entry directory
 
21868 and the path is automatically restored when the function returns.
</docstring> 
21869       <constructor name=
"ConfigPathChanger" overloaded=
"no"> 
21870         <autodoc>__init__(ConfigBase config, String entry) -
> ConfigPathChanger
</autodoc> 
21872           <param name=
"config" type=
"ConfigBase" default=
""/> 
21873           <param name=
"entry" type=
"String" default=
""/> 
21876       <destructor name=
"~wxConfigPathChanger" overloaded=
"no"> 
21877         <autodoc>__del__()
</autodoc> 
21879       <method name=
"Name" type=
"String" overloaded=
"no"> 
21880         <autodoc>Name() -
> String
</autodoc> 
21881         <docstring>Get the key name
</docstring> 
21884     <method name=
"ExpandEnvVars" oldname=
"wxExpandEnvVars" type=
"String" overloaded=
"no"> 
21885       <autodoc>ExpandEnvVars(String sz) -
> String
</autodoc> 
21886       <docstring>Replace environment variables ($SOMETHING) with their values. The
 
21887 format is $VARNAME or ${VARNAME} where VARNAME contains
 
21888 alphanumeric characters and '_' only. '$' must be escaped ('\\$')
 
21889 in order to be taken literally.
</docstring> 
21891         <param name=
"sz" type=
"String" default=
""/> 
21895 #---------------------------------------------------------------------------
 
21897     <class name=
"DateTime" oldname=
"wxDateTime" module=
"misc"> 
21898       <constructor name=
"DateTime" overloaded=
"no"> 
21899         <autodoc>__init__() -
> DateTime
</autodoc> 
21901       <constructor name=
"DateTimeFromTimeT" overloaded=
"no"> 
21902         <autodoc>DateTimeFromTimeT(time_t timet) -
> DateTime
</autodoc> 
21904           <param name=
"timet" type=
"time_t" default=
""/> 
21907       <constructor name=
"DateTimeFromJDN" overloaded=
"no"> 
21908         <autodoc>DateTimeFromJDN(double jdn) -
> DateTime
</autodoc> 
21910           <param name=
"jdn" type=
"double" default=
""/> 
21913       <constructor name=
"DateTimeFromHMS" overloaded=
"no"> 
21914         <autodoc>DateTimeFromHMS(int hour, int minute=
0, int second=
0, int millisec=
0) -
> DateTime
</autodoc> 
21916           <param name=
"hour" type=
"int" default=
""/> 
21917           <param name=
"minute" type=
"int" default=
"0"/> 
21918           <param name=
"second" type=
"int" default=
"0"/> 
21919           <param name=
"millisec" type=
"int" default=
"0"/> 
21922       <constructor name=
"DateTimeFromDMY" overloaded=
"no"> 
21923         <autodoc>DateTimeFromDMY(int day, int month=Inv_Month, int year=Inv_Year, int hour=
0, 
 
21924     int minute=
0, int second=
0, int millisec=
0) -
> DateTime
</autodoc> 
21926           <param name=
"day" type=
"int" default=
""/> 
21927           <param name=
"month" type=
"wxDateTime::Month" default=
"wxDateTime::Inv_Month"/> 
21928           <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/> 
21929           <param name=
"hour" type=
"int" default=
"0"/> 
21930           <param name=
"minute" type=
"int" default=
"0"/> 
21931           <param name=
"second" type=
"int" default=
"0"/> 
21932           <param name=
"millisec" type=
"int" default=
"0"/> 
21935       <destructor name=
"~wxDateTime" overloaded=
"no"> 
21936         <autodoc>__del__()
</autodoc> 
21938       <staticmethod name=
"SetCountry" type=
"" overloaded=
"no"> 
21939         <autodoc>SetCountry(int country)
</autodoc> 
21941           <param name=
"country" type=
"wxDateTime::Country" default=
""/> 
21944       <staticmethod name=
"GetCountry" type=
"wxDateTime::Country" overloaded=
"no"> 
21945         <autodoc>GetCountry() -
> int
</autodoc> 
21947       <staticmethod name=
"IsWestEuropeanCountry" type=
"bool" overloaded=
"no"> 
21948         <autodoc>IsWestEuropeanCountry(int country=Country_Default) -
> bool
</autodoc> 
21950           <param name=
"country" type=
"wxDateTime::Country" default=
"wxDateTime::Country_Default"/> 
21953       <staticmethod name=
"GetCurrentYear" type=
"int" overloaded=
"no"> 
21954         <autodoc>GetCurrentYear(int cal=Gregorian) -
> int
</autodoc> 
21956           <param name=
"cal" type=
"wxDateTime::Calendar" default=
"wxDateTime::Gregorian"/> 
21959       <staticmethod name=
"ConvertYearToBC" type=
"int" overloaded=
"no"> 
21960         <autodoc>ConvertYearToBC(int year) -
> int
</autodoc> 
21962           <param name=
"year" type=
"int" default=
""/> 
21965       <staticmethod name=
"GetCurrentMonth" type=
"wxDateTime::Month" overloaded=
"no"> 
21966         <autodoc>GetCurrentMonth(int cal=Gregorian) -
> int
</autodoc> 
21968           <param name=
"cal" type=
"wxDateTime::Calendar" default=
"wxDateTime::Gregorian"/> 
21971       <staticmethod name=
"IsLeapYear" type=
"bool" overloaded=
"no"> 
21972         <autodoc>IsLeapYear(int year=Inv_Year, int cal=Gregorian) -
> bool
</autodoc> 
21974           <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/> 
21975           <param name=
"cal" type=
"wxDateTime::Calendar" default=
"wxDateTime::Gregorian"/> 
21978       <staticmethod name=
"GetCentury" type=
"int" overloaded=
"no"> 
21979         <autodoc>GetCentury(int year=Inv_Year) -
> int
</autodoc> 
21981           <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/> 
21984       <staticmethod name=
"GetNumberOfDaysinYear" type=
"int" overloaded=
"no"> 
21985         <autodoc>GetNumberOfDaysinYear(int year, int cal=Gregorian) -
> int
</autodoc> 
21987           <param name=
"year" type=
"int" default=
""/> 
21988           <param name=
"cal" type=
"wxDateTime::Calendar" default=
"wxDateTime::Gregorian"/> 
21991       <staticmethod name=
"GetNumberOfDaysInMonth" type=
"int" overloaded=
"no"> 
21992         <autodoc>GetNumberOfDaysInMonth(int month, int year=Inv_Year, int cal=Gregorian) -
> int
</autodoc> 
21994           <param name=
"month" type=
"wxDateTime::Month" default=
""/> 
21995           <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/> 
21996           <param name=
"cal" type=
"wxDateTime::Calendar" default=
"wxDateTime::Gregorian"/> 
21999       <staticmethod name=
"GetMonthName" type=
"String" overloaded=
"no"> 
22000         <autodoc>GetMonthName(int month, int flags=Name_Full) -
> String
</autodoc> 
22002           <param name=
"month" type=
"wxDateTime::Month" default=
""/> 
22003           <param name=
"flags" type=
"wxDateTime::NameFlags" default=
"wxDateTime::Name_Full"/> 
22006       <staticmethod name=
"GetWeekDayName" type=
"String" overloaded=
"no"> 
22007         <autodoc>GetWeekDayName(int weekday, int flags=Name_Full) -
> String
</autodoc> 
22009           <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/> 
22010           <param name=
"flags" type=
"wxDateTime::NameFlags" default=
"wxDateTime::Name_Full"/> 
22013       <staticmethod name=
"GetAmPmStrings" type=
"" overloaded=
"no"> 
22014         <autodoc>GetAmPmStrings() -
> (am, pm)
</autodoc> 
22015         <docstring>Get the AM and PM strings in the current locale (may be empty)
</docstring> 
22017           <param name=
"OUTPUT" type=
"String" default=
""/> 
22018           <param name=
"OUTPUT" type=
"String" default=
""/> 
22021       <staticmethod name=
"IsDSTApplicable" type=
"bool" overloaded=
"no"> 
22022         <autodoc>IsDSTApplicable(int year=Inv_Year, int country=Country_Default) -
> bool
</autodoc> 
22024           <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/> 
22025           <param name=
"country" type=
"wxDateTime::Country" default=
"wxDateTime::Country_Default"/> 
22028       <staticmethod name=
"GetBeginDST" type=
"DateTime" overloaded=
"no"> 
22029         <autodoc>GetBeginDST(int year=Inv_Year, int country=Country_Default) -
> DateTime
</autodoc> 
22031           <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/> 
22032           <param name=
"country" type=
"wxDateTime::Country" default=
"wxDateTime::Country_Default"/> 
22035       <staticmethod name=
"GetEndDST" type=
"DateTime" overloaded=
"no"> 
22036         <autodoc>GetEndDST(int year=Inv_Year, int country=Country_Default) -
> DateTime
</autodoc> 
22038           <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/> 
22039           <param name=
"country" type=
"wxDateTime::Country" default=
"wxDateTime::Country_Default"/> 
22042       <staticmethod name=
"Now" type=
"DateTime" overloaded=
"no"> 
22043         <autodoc>Now() -
> DateTime
</autodoc> 
22045       <staticmethod name=
"UNow" type=
"DateTime" overloaded=
"no"> 
22046         <autodoc>UNow() -
> DateTime
</autodoc> 
22048       <staticmethod name=
"Today" type=
"DateTime" overloaded=
"no"> 
22049         <autodoc>Today() -
> DateTime
</autodoc> 
22051       <method name=
"SetToCurrent" type=
"DateTime" overloaded=
"no"> 
22052         <autodoc>SetToCurrent() -
> DateTime
</autodoc> 
22054       <method name=
"SetTimeT" type=
"DateTime" overloaded=
"no"> 
22055         <autodoc>SetTimeT(time_t timet) -
> DateTime
</autodoc> 
22057           <param name=
"timet" type=
"time_t" default=
""/> 
22060       <method name=
"SetJDN" type=
"DateTime" overloaded=
"no"> 
22061         <autodoc>SetJDN(double jdn) -
> DateTime
</autodoc> 
22063           <param name=
"jdn" type=
"double" default=
""/> 
22066       <method name=
"SetHMS" type=
"DateTime" overloaded=
"no"> 
22067         <autodoc>SetHMS(int hour, int minute=
0, int second=
0, int millisec=
0) -
> DateTime
</autodoc> 
22069           <param name=
"hour" type=
"int" default=
""/> 
22070           <param name=
"minute" type=
"int" default=
"0"/> 
22071           <param name=
"second" type=
"int" default=
"0"/> 
22072           <param name=
"millisec" type=
"int" default=
"0"/> 
22075       <method name=
"Set" type=
"DateTime" overloaded=
"no"> 
22076         <autodoc>Set(int day, int month=Inv_Month, int year=Inv_Year, int hour=
0, 
 
22077     int minute=
0, int second=
0, int millisec=
0) -
> DateTime
</autodoc> 
22079           <param name=
"day" type=
"int" default=
""/> 
22080           <param name=
"month" type=
"wxDateTime::Month" default=
"wxDateTime::Inv_Month"/> 
22081           <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/> 
22082           <param name=
"hour" type=
"int" default=
"0"/> 
22083           <param name=
"minute" type=
"int" default=
"0"/> 
22084           <param name=
"second" type=
"int" default=
"0"/> 
22085           <param name=
"millisec" type=
"int" default=
"0"/> 
22088       <method name=
"ResetTime" type=
"DateTime" overloaded=
"no"> 
22089         <autodoc>ResetTime() -
> DateTime
</autodoc> 
22091       <method name=
"SetYear" type=
"DateTime" overloaded=
"no"> 
22092         <autodoc>SetYear(int year) -
> DateTime
</autodoc> 
22094           <param name=
"year" type=
"int" default=
""/> 
22097       <method name=
"SetMonth" type=
"DateTime" overloaded=
"no"> 
22098         <autodoc>SetMonth(int month) -
> DateTime
</autodoc> 
22100           <param name=
"month" type=
"wxDateTime::Month" default=
""/> 
22103       <method name=
"SetDay" type=
"DateTime" overloaded=
"no"> 
22104         <autodoc>SetDay(int day) -
> DateTime
</autodoc> 
22106           <param name=
"day" type=
"int" default=
""/> 
22109       <method name=
"SetHour" type=
"DateTime" overloaded=
"no"> 
22110         <autodoc>SetHour(int hour) -
> DateTime
</autodoc> 
22112           <param name=
"hour" type=
"int" default=
""/> 
22115       <method name=
"SetMinute" type=
"DateTime" overloaded=
"no"> 
22116         <autodoc>SetMinute(int minute) -
> DateTime
</autodoc> 
22118           <param name=
"minute" type=
"int" default=
""/> 
22121       <method name=
"SetSecond" type=
"DateTime" overloaded=
"no"> 
22122         <autodoc>SetSecond(int second) -
> DateTime
</autodoc> 
22124           <param name=
"second" type=
"int" default=
""/> 
22127       <method name=
"SetMillisecond" type=
"DateTime" overloaded=
"no"> 
22128         <autodoc>SetMillisecond(int millisecond) -
> DateTime
</autodoc> 
22130           <param name=
"millisecond" type=
"int" default=
""/> 
22133       <method name=
"SetToWeekDayInSameWeek" type=
"DateTime" overloaded=
"no"> 
22134         <autodoc>SetToWeekDayInSameWeek(int weekday, int flags=Monday_First) -
> DateTime
</autodoc> 
22136           <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/> 
22137           <param name=
"flags" type=
"wxDateTime::WeekFlags" default=
"wxDateTime::Monday_First"/> 
22140       <method name=
"GetWeekDayInSameWeek" type=
"DateTime" overloaded=
"no"> 
22141         <autodoc>GetWeekDayInSameWeek(int weekday, int flags=Monday_First) -
> DateTime
</autodoc> 
22143           <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/> 
22144           <param name=
"flags" type=
"wxDateTime::WeekFlags" default=
"wxDateTime::Monday_First"/> 
22147       <method name=
"SetToNextWeekDay" type=
"DateTime" overloaded=
"no"> 
22148         <autodoc>SetToNextWeekDay(int weekday) -
> DateTime
</autodoc> 
22150           <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/> 
22153       <method name=
"GetNextWeekDay" type=
"DateTime" overloaded=
"no"> 
22154         <autodoc>GetNextWeekDay(int weekday) -
> DateTime
</autodoc> 
22156           <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/> 
22159       <method name=
"SetToPrevWeekDay" type=
"DateTime" overloaded=
"no"> 
22160         <autodoc>SetToPrevWeekDay(int weekday) -
> DateTime
</autodoc> 
22162           <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/> 
22165       <method name=
"GetPrevWeekDay" type=
"DateTime" overloaded=
"no"> 
22166         <autodoc>GetPrevWeekDay(int weekday) -
> DateTime
</autodoc> 
22168           <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/> 
22171       <method name=
"SetToWeekDay" type=
"bool" overloaded=
"no"> 
22172         <autodoc>SetToWeekDay(int weekday, int n=
1, int month=Inv_Month, int year=Inv_Year) -
> bool
</autodoc> 
22174           <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/> 
22175           <param name=
"n" type=
"int" default=
"1"/> 
22176           <param name=
"month" type=
"wxDateTime::Month" default=
"wxDateTime::Inv_Month"/> 
22177           <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/> 
22180       <method name=
"SetToLastWeekDay" type=
"bool" overloaded=
"no"> 
22181         <autodoc>SetToLastWeekDay(int weekday, int month=Inv_Month, int year=Inv_Year) -
> bool
</autodoc> 
22183           <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/> 
22184           <param name=
"month" type=
"wxDateTime::Month" default=
"wxDateTime::Inv_Month"/> 
22185           <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/> 
22188       <method name=
"GetLastWeekDay" type=
"DateTime" overloaded=
"no"> 
22189         <autodoc>GetLastWeekDay(int weekday, int month=Inv_Month, int year=Inv_Year) -
> DateTime
</autodoc> 
22191           <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/> 
22192           <param name=
"month" type=
"wxDateTime::Month" default=
"wxDateTime::Inv_Month"/> 
22193           <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/> 
22196       <method name=
"SetToTheWeek" type=
"bool" overloaded=
"no"> 
22197         <autodoc>SetToTheWeek(int numWeek, int weekday=Mon, int flags=Monday_First) -
> bool
</autodoc> 
22199           <param name=
"numWeek" type=
"int" default=
""/> 
22200           <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
"wxDateTime::Mon"/> 
22201           <param name=
"flags" type=
"wxDateTime::WeekFlags" default=
"wxDateTime::Monday_First"/> 
22204       <method name=
"GetWeek" type=
"DateTime" overloaded=
"no"> 
22205         <autodoc>GetWeek(int numWeek, int weekday=Mon, int flags=Monday_First) -
> DateTime
</autodoc> 
22207           <param name=
"numWeek" type=
"int" default=
""/> 
22208           <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
"wxDateTime::Mon"/> 
22209           <param name=
"flags" type=
"wxDateTime::WeekFlags" default=
"wxDateTime::Monday_First"/> 
22212       <method name=
"SetToLastMonthDay" type=
"DateTime" overloaded=
"no"> 
22213         <autodoc>SetToLastMonthDay(int month=Inv_Month, int year=Inv_Year) -
> DateTime
</autodoc> 
22215           <param name=
"month" type=
"wxDateTime::Month" default=
"wxDateTime::Inv_Month"/> 
22216           <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/> 
22219       <method name=
"GetLastMonthDay" type=
"DateTime" overloaded=
"no"> 
22220         <autodoc>GetLastMonthDay(int month=Inv_Month, int year=Inv_Year) -
> DateTime
</autodoc> 
22222           <param name=
"month" type=
"wxDateTime::Month" default=
"wxDateTime::Inv_Month"/> 
22223           <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/> 
22226       <method name=
"SetToYearDay" type=
"DateTime" overloaded=
"no"> 
22227         <autodoc>SetToYearDay(int yday) -
> DateTime
</autodoc> 
22229           <param name=
"yday" type=
"int" default=
""/> 
22232       <method name=
"GetYearDay" type=
"DateTime" overloaded=
"no"> 
22233         <autodoc>GetYearDay(int yday) -
> DateTime
</autodoc> 
22235           <param name=
"yday" type=
"int" default=
""/> 
22238       <method name=
"GetJulianDayNumber" type=
"double" overloaded=
"no"> 
22239         <autodoc>GetJulianDayNumber() -
> double
</autodoc> 
22241       <method name=
"GetJDN" type=
"double" overloaded=
"no"> 
22242         <autodoc>GetJDN() -
> double
</autodoc> 
22244       <method name=
"GetModifiedJulianDayNumber" type=
"double" overloaded=
"no"> 
22245         <autodoc>GetModifiedJulianDayNumber() -
> double
</autodoc> 
22247       <method name=
"GetMJD" type=
"double" overloaded=
"no"> 
22248         <autodoc>GetMJD() -
> double
</autodoc> 
22250       <method name=
"GetRataDie" type=
"double" overloaded=
"no"> 
22251         <autodoc>GetRataDie() -
> double
</autodoc> 
22253       <method name=
"ToTimezone" type=
"DateTime" overloaded=
"no"> 
22254         <autodoc>ToTimezone(wxDateTime::TimeZone tz, bool noDST=False) -
> DateTime
</autodoc> 
22256           <param name=
"tz" type=
"wxDateTime::TimeZone" default=
""/> 
22257           <param name=
"noDST" type=
"bool" default=
"False"/> 
22260       <method name=
"MakeTimezone" type=
"DateTime" overloaded=
"no"> 
22261         <autodoc>MakeTimezone(wxDateTime::TimeZone tz, bool noDST=False) -
> DateTime
</autodoc> 
22263           <param name=
"tz" type=
"wxDateTime::TimeZone" default=
""/> 
22264           <param name=
"noDST" type=
"bool" default=
"False"/> 
22267       <method name=
"ToGMT" type=
"DateTime" overloaded=
"no"> 
22268         <autodoc>ToGMT(bool noDST=False) -
> DateTime
</autodoc> 
22270           <param name=
"noDST" type=
"bool" default=
"False"/> 
22273       <method name=
"MakeGMT" type=
"DateTime" overloaded=
"no"> 
22274         <autodoc>MakeGMT(bool noDST=False) -
> DateTime
</autodoc> 
22276           <param name=
"noDST" type=
"bool" default=
"False"/> 
22279       <method name=
"IsDST" type=
"int" overloaded=
"no"> 
22280         <autodoc>IsDST(int country=Country_Default) -
> int
</autodoc> 
22282           <param name=
"country" type=
"wxDateTime::Country" default=
"wxDateTime::Country_Default"/> 
22285       <method name=
"IsValid" type=
"bool" overloaded=
"no"> 
22286         <autodoc>IsValid() -
> bool
</autodoc> 
22288       <method name=
"GetTicks" type=
"time_t" overloaded=
"no"> 
22289         <autodoc>GetTicks() -
> time_t
</autodoc> 
22291       <method name=
"GetYear" type=
"int" overloaded=
"no"> 
22292         <autodoc>GetYear(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc> 
22294           <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/> 
22297       <method name=
"GetMonth" type=
"wxDateTime::Month" overloaded=
"no"> 
22298         <autodoc>GetMonth(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc> 
22300           <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/> 
22303       <method name=
"GetDay" type=
"int" overloaded=
"no"> 
22304         <autodoc>GetDay(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc> 
22306           <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/> 
22309       <method name=
"GetWeekDay" type=
"wxDateTime::WeekDay" overloaded=
"no"> 
22310         <autodoc>GetWeekDay(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc> 
22312           <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/> 
22315       <method name=
"GetHour" type=
"int" overloaded=
"no"> 
22316         <autodoc>GetHour(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc> 
22318           <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/> 
22321       <method name=
"GetMinute" type=
"int" overloaded=
"no"> 
22322         <autodoc>GetMinute(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc> 
22324           <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/> 
22327       <method name=
"GetSecond" type=
"int" overloaded=
"no"> 
22328         <autodoc>GetSecond(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc> 
22330           <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/> 
22333       <method name=
"GetMillisecond" type=
"int" overloaded=
"no"> 
22334         <autodoc>GetMillisecond(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc> 
22336           <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/> 
22339       <method name=
"GetDayOfYear" type=
"int" overloaded=
"no"> 
22340         <autodoc>GetDayOfYear(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc> 
22342           <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/> 
22345       <method name=
"GetWeekOfYear" type=
"int" overloaded=
"no"> 
22346         <autodoc>GetWeekOfYear(int flags=Monday_First, wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc> 
22348           <param name=
"flags" type=
"wxDateTime::WeekFlags" default=
"wxDateTime::Monday_First"/> 
22349           <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/> 
22352       <method name=
"GetWeekOfMonth" type=
"int" overloaded=
"no"> 
22353         <autodoc>GetWeekOfMonth(int flags=Monday_First, wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc> 
22355           <param name=
"flags" type=
"wxDateTime::WeekFlags" default=
"wxDateTime::Monday_First"/> 
22356           <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/> 
22359       <method name=
"IsWorkDay" type=
"bool" overloaded=
"no"> 
22360         <autodoc>IsWorkDay(int country=Country_Default) -
> bool
</autodoc> 
22362           <param name=
"country" type=
"wxDateTime::Country" default=
"wxDateTime::Country_Default"/> 
22365       <method name=
"IsEqualTo" type=
"bool" overloaded=
"no"> 
22366         <autodoc>IsEqualTo(DateTime datetime) -
> bool
</autodoc> 
22368           <param name=
"datetime" type=
"DateTime" default=
""/> 
22371       <method name=
"IsEarlierThan" type=
"bool" overloaded=
"no"> 
22372         <autodoc>IsEarlierThan(DateTime datetime) -
> bool
</autodoc> 
22374           <param name=
"datetime" type=
"DateTime" default=
""/> 
22377       <method name=
"IsLaterThan" type=
"bool" overloaded=
"no"> 
22378         <autodoc>IsLaterThan(DateTime datetime) -
> bool
</autodoc> 
22380           <param name=
"datetime" type=
"DateTime" default=
""/> 
22383       <method name=
"IsStrictlyBetween" type=
"bool" overloaded=
"no"> 
22384         <autodoc>IsStrictlyBetween(DateTime t1, DateTime t2) -
> bool
</autodoc> 
22386           <param name=
"t1" type=
"DateTime" default=
""/> 
22387           <param name=
"t2" type=
"DateTime" default=
""/> 
22390       <method name=
"IsBetween" type=
"bool" overloaded=
"no"> 
22391         <autodoc>IsBetween(DateTime t1, DateTime t2) -
> bool
</autodoc> 
22393           <param name=
"t1" type=
"DateTime" default=
""/> 
22394           <param name=
"t2" type=
"DateTime" default=
""/> 
22397       <method name=
"IsSameDate" type=
"bool" overloaded=
"no"> 
22398         <autodoc>IsSameDate(DateTime dt) -
> bool
</autodoc> 
22400           <param name=
"dt" type=
"DateTime" default=
""/> 
22403       <method name=
"IsSameTime" type=
"bool" overloaded=
"no"> 
22404         <autodoc>IsSameTime(DateTime dt) -
> bool
</autodoc> 
22406           <param name=
"dt" type=
"DateTime" default=
""/> 
22409       <method name=
"IsEqualUpTo" type=
"bool" overloaded=
"no"> 
22410         <autodoc>IsEqualUpTo(DateTime dt, TimeSpan ts) -
> bool
</autodoc> 
22412           <param name=
"dt" type=
"DateTime" default=
""/> 
22413           <param name=
"ts" type=
"wxTimeSpan" default=
""/> 
22416       <method name=
"AddTS" type=
"DateTime" overloaded=
"no"> 
22417         <autodoc>AddTS(TimeSpan diff) -
> DateTime
</autodoc> 
22419           <param name=
"diff" type=
"wxTimeSpan" default=
""/> 
22422       <method name=
"AddDS" type=
"DateTime" overloaded=
"no"> 
22423         <autodoc>AddDS(DateSpan diff) -
> DateTime
</autodoc> 
22425           <param name=
"diff" type=
"wxDateSpan" default=
""/> 
22428       <method name=
"SubtractTS" type=
"DateTime" overloaded=
"no"> 
22429         <autodoc>SubtractTS(TimeSpan diff) -
> DateTime
</autodoc> 
22431           <param name=
"diff" type=
"wxTimeSpan" default=
""/> 
22434       <method name=
"SubtractDS" type=
"DateTime" overloaded=
"no"> 
22435         <autodoc>SubtractDS(DateSpan diff) -
> DateTime
</autodoc> 
22437           <param name=
"diff" type=
"wxDateSpan" default=
""/> 
22440       <method name=
"Subtract" type=
"wxTimeSpan" overloaded=
"no"> 
22441         <autodoc>Subtract(DateTime dt) -
> TimeSpan
</autodoc> 
22443           <param name=
"dt" type=
"DateTime" default=
""/> 
22446       <method name=
"__iadd__" type=
"DateTime" overloaded=
"yes"> 
22448           <param name=
"diff" type=
"wxTimeSpan" default=
""/> 
22451       <method name=
"__iadd__" type=
"DateTime" overloaded=
"yes"> 
22452         <autodoc>__iadd__(TimeSpan diff) -
> DateTime
 
22453 __iadd__(DateSpan diff) -
> DateTime
</autodoc> 
22455           <param name=
"diff" type=
"wxDateSpan" default=
""/> 
22458       <method name=
"__isub__" type=
"DateTime" overloaded=
"yes"> 
22460           <param name=
"diff" type=
"wxTimeSpan" default=
""/> 
22463       <method name=
"__isub__" type=
"DateTime" overloaded=
"yes"> 
22464         <autodoc>__isub__(TimeSpan diff) -
> DateTime
 
22465 __isub__(DateSpan diff) -
> DateTime
</autodoc> 
22467           <param name=
"diff" type=
"wxDateSpan" default=
""/> 
22470       <method name=
"__add__" type=
"DateTime" overloaded=
"yes"> 
22472           <param name=
"other" type=
"wxTimeSpan" default=
""/> 
22475       <method name=
"__add__" type=
"DateTime" overloaded=
"yes"> 
22476         <autodoc>__add__(TimeSpan other) -
> DateTime
 
22477 __add__(DateSpan other) -
> DateTime
</autodoc> 
22479           <param name=
"other" type=
"wxDateSpan" default=
""/> 
22482       <method name=
"__sub__" type=
"wxTimeSpan" overloaded=
"yes"> 
22484           <param name=
"other" type=
"DateTime" default=
""/> 
22487       <method name=
"__sub__" type=
"DateTime" overloaded=
"yes"> 
22489           <param name=
"other" type=
"wxTimeSpan" default=
""/> 
22492       <method name=
"__sub__" type=
"DateTime" overloaded=
"yes"> 
22493         <autodoc>__sub__(DateTime other) -
> TimeSpan
 
22494 __sub__(TimeSpan other) -
> DateTime
 
22495 __sub__(DateSpan other) -
> DateTime
</autodoc> 
22497           <param name=
"other" type=
"wxDateSpan" default=
""/> 
22500       <method name=
"__lt__" type=
"bool" overloaded=
"no"> 
22501         <autodoc>__lt__(DateTime other) -
> bool
</autodoc> 
22503           <param name=
"other" type=
"DateTime" default=
""/> 
22506       <method name=
"__le__" type=
"bool" overloaded=
"no"> 
22507         <autodoc>__le__(DateTime other) -
> bool
</autodoc> 
22509           <param name=
"other" type=
"DateTime" default=
""/> 
22512       <method name=
"__gt__" type=
"bool" overloaded=
"no"> 
22513         <autodoc>__gt__(DateTime other) -
> bool
</autodoc> 
22515           <param name=
"other" type=
"DateTime" default=
""/> 
22518       <method name=
"__ge__" type=
"bool" overloaded=
"no"> 
22519         <autodoc>__ge__(DateTime other) -
> bool
</autodoc> 
22521           <param name=
"other" type=
"DateTime" default=
""/> 
22524       <method name=
"__eq__" type=
"bool" overloaded=
"no"> 
22525         <autodoc>__eq__(DateTime other) -
> bool
</autodoc> 
22527           <param name=
"other" type=
"DateTime" default=
""/> 
22530       <method name=
"__ne__" type=
"bool" overloaded=
"no"> 
22531         <autodoc>__ne__(DateTime other) -
> bool
</autodoc> 
22533           <param name=
"other" type=
"DateTime" default=
""/> 
22536       <method name=
"ParseRfc822Date" type=
"int" overloaded=
"no"> 
22537         <autodoc>ParseRfc822Date(String date) -
> int
</autodoc> 
22539           <param name=
"date" type=
"String" default=
""/> 
22542       <method name=
"ParseFormat" type=
"int" overloaded=
"no"> 
22543         <autodoc>ParseFormat(String date, String format=DateFormatStr, DateTime dateDef=DefaultDateTime) -
> int
</autodoc> 
22545           <param name=
"date" type=
"String" default=
""/> 
22546           <param name=
"format" type=
"String" default=
"wxPyDateFormatStr"/> 
22547           <param name=
"dateDef" type=
"DateTime" default=
"wxDefaultDateTime"/> 
22550       <method name=
"ParseDateTime" type=
"int" overloaded=
"no"> 
22551         <autodoc>ParseDateTime(String datetime) -
> int
</autodoc> 
22553           <param name=
"datetime" type=
"String" default=
""/> 
22556       <method name=
"ParseDate" type=
"int" overloaded=
"no"> 
22557         <autodoc>ParseDate(String date) -
> int
</autodoc> 
22559           <param name=
"date" type=
"String" default=
""/> 
22562       <method name=
"ParseTime" type=
"int" overloaded=
"no"> 
22563         <autodoc>ParseTime(String time) -
> int
</autodoc> 
22565           <param name=
"time" type=
"String" default=
""/> 
22568       <method name=
"Format" type=
"String" overloaded=
"no"> 
22569         <autodoc>Format(String format=DateFormatStr, wxDateTime::TimeZone tz=LOCAL_TZ) -
> String
</autodoc> 
22571           <param name=
"format" type=
"String" default=
"wxPyDateFormatStr"/> 
22572           <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/> 
22575       <method name=
"FormatDate" type=
"String" overloaded=
"no"> 
22576         <autodoc>FormatDate() -
> String
</autodoc> 
22578       <method name=
"FormatTime" type=
"String" overloaded=
"no"> 
22579         <autodoc>FormatTime() -
> String
</autodoc> 
22581       <method name=
"FormatISODate" type=
"String" overloaded=
"no"> 
22582         <autodoc>FormatISODate() -
> String
</autodoc> 
22584       <method name=
"FormatISOTime" type=
"String" overloaded=
"no"> 
22585         <autodoc>FormatISOTime() -
> String
</autodoc> 
22588     <class name=
"TimeSpan" oldname=
"wxTimeSpan" module=
"misc"> 
22589       <constructor name=
"TimeSpan" overloaded=
"no"> 
22590         <autodoc>__init__(long hours=
0, long minutes=
0, long seconds=
0, long milliseconds=
0) -
> TimeSpan
</autodoc> 
22592           <param name=
"hours" type=
"long" default=
"0"/> 
22593           <param name=
"minutes" type=
"long" default=
"0"/> 
22594           <param name=
"seconds" type=
"long" default=
"0"/> 
22595           <param name=
"milliseconds" type=
"long" default=
"0"/> 
22598       <destructor name=
"~wxTimeSpan" overloaded=
"no"> 
22599         <autodoc>__del__()
</autodoc> 
22601       <staticmethod name=
"Seconds" type=
"TimeSpan" overloaded=
"no"> 
22602         <autodoc>Seconds(long sec) -
> TimeSpan
</autodoc> 
22604           <param name=
"sec" type=
"long" default=
""/> 
22607       <staticmethod name=
"Second" type=
"TimeSpan" overloaded=
"no"> 
22608         <autodoc>Second() -
> TimeSpan
</autodoc> 
22610       <staticmethod name=
"Minutes" type=
"TimeSpan" overloaded=
"no"> 
22611         <autodoc>Minutes(long min) -
> TimeSpan
</autodoc> 
22613           <param name=
"min" type=
"long" default=
""/> 
22616       <staticmethod name=
"Minute" type=
"TimeSpan" overloaded=
"no"> 
22617         <autodoc>Minute() -
> TimeSpan
</autodoc> 
22619       <staticmethod name=
"Hours" type=
"TimeSpan" overloaded=
"no"> 
22620         <autodoc>Hours(long hours) -
> TimeSpan
</autodoc> 
22622           <param name=
"hours" type=
"long" default=
""/> 
22625       <staticmethod name=
"Hour" type=
"TimeSpan" overloaded=
"no"> 
22626         <autodoc>Hour() -
> TimeSpan
</autodoc> 
22628       <staticmethod name=
"Days" type=
"TimeSpan" overloaded=
"no"> 
22629         <autodoc>Days(long days) -
> TimeSpan
</autodoc> 
22631           <param name=
"days" type=
"long" default=
""/> 
22634       <staticmethod name=
"Day" type=
"TimeSpan" overloaded=
"no"> 
22635         <autodoc>Day() -
> TimeSpan
</autodoc> 
22637       <staticmethod name=
"Weeks" type=
"TimeSpan" overloaded=
"no"> 
22638         <autodoc>Weeks(long days) -
> TimeSpan
</autodoc> 
22640           <param name=
"days" type=
"long" default=
""/> 
22643       <staticmethod name=
"Week" type=
"TimeSpan" overloaded=
"no"> 
22644         <autodoc>Week() -
> TimeSpan
</autodoc> 
22646       <method name=
"Add" type=
"TimeSpan" overloaded=
"no"> 
22647         <autodoc>Add(TimeSpan diff) -
> TimeSpan
</autodoc> 
22649           <param name=
"diff" type=
"TimeSpan" default=
""/> 
22652       <method name=
"Subtract" type=
"TimeSpan" overloaded=
"no"> 
22653         <autodoc>Subtract(TimeSpan diff) -
> TimeSpan
</autodoc> 
22655           <param name=
"diff" type=
"TimeSpan" default=
""/> 
22658       <method name=
"Multiply" type=
"TimeSpan" overloaded=
"no"> 
22659         <autodoc>Multiply(int n) -
> TimeSpan
</autodoc> 
22661           <param name=
"n" type=
"int" default=
""/> 
22664       <method name=
"Neg" type=
"TimeSpan" overloaded=
"no"> 
22665         <autodoc>Neg() -
> TimeSpan
</autodoc> 
22667       <method name=
"Abs" type=
"TimeSpan" overloaded=
"no"> 
22668         <autodoc>Abs() -
> TimeSpan
</autodoc> 
22670       <method name=
"__iadd__" type=
"TimeSpan" overloaded=
"no"> 
22671         <autodoc>__iadd__(TimeSpan diff) -
> TimeSpan
</autodoc> 
22673           <param name=
"diff" type=
"TimeSpan" default=
""/> 
22676       <method name=
"__isub__" type=
"TimeSpan" overloaded=
"no"> 
22677         <autodoc>__isub__(TimeSpan diff) -
> TimeSpan
</autodoc> 
22679           <param name=
"diff" type=
"TimeSpan" default=
""/> 
22682       <method name=
"__imul__" type=
"TimeSpan" overloaded=
"no"> 
22683         <autodoc>__imul__(int n) -
> TimeSpan
</autodoc> 
22685           <param name=
"n" type=
"int" default=
""/> 
22688       <method name=
"__neg__" type=
"TimeSpan" overloaded=
"no"> 
22689         <autodoc>__neg__() -
> TimeSpan
</autodoc> 
22691       <method name=
"__add__" type=
"TimeSpan" overloaded=
"no"> 
22692         <autodoc>__add__(TimeSpan other) -
> TimeSpan
</autodoc> 
22694           <param name=
"other" type=
"TimeSpan" default=
""/> 
22697       <method name=
"__sub__" type=
"TimeSpan" overloaded=
"no"> 
22698         <autodoc>__sub__(TimeSpan other) -
> TimeSpan
</autodoc> 
22700           <param name=
"other" type=
"TimeSpan" default=
""/> 
22703       <method name=
"__mul__" type=
"TimeSpan" overloaded=
"no"> 
22704         <autodoc>__mul__(int n) -
> TimeSpan
</autodoc> 
22706           <param name=
"n" type=
"int" default=
""/> 
22709       <method name=
"__rmul__" type=
"TimeSpan" overloaded=
"no"> 
22710         <autodoc>__rmul__(int n) -
> TimeSpan
</autodoc> 
22712           <param name=
"n" type=
"int" default=
""/> 
22715       <method name=
"__lt__" type=
"bool" overloaded=
"no"> 
22716         <autodoc>__lt__(TimeSpan other) -
> bool
</autodoc> 
22718           <param name=
"other" type=
"TimeSpan" default=
""/> 
22721       <method name=
"__le__" type=
"bool" overloaded=
"no"> 
22722         <autodoc>__le__(TimeSpan other) -
> bool
</autodoc> 
22724           <param name=
"other" type=
"TimeSpan" default=
""/> 
22727       <method name=
"__gt__" type=
"bool" overloaded=
"no"> 
22728         <autodoc>__gt__(TimeSpan other) -
> bool
</autodoc> 
22730           <param name=
"other" type=
"TimeSpan" default=
""/> 
22733       <method name=
"__ge__" type=
"bool" overloaded=
"no"> 
22734         <autodoc>__ge__(TimeSpan other) -
> bool
</autodoc> 
22736           <param name=
"other" type=
"TimeSpan" default=
""/> 
22739       <method name=
"__eq__" type=
"bool" overloaded=
"no"> 
22740         <autodoc>__eq__(TimeSpan other) -
> bool
</autodoc> 
22742           <param name=
"other" type=
"TimeSpan" default=
""/> 
22745       <method name=
"__ne__" type=
"bool" overloaded=
"no"> 
22746         <autodoc>__ne__(TimeSpan other) -
> bool
</autodoc> 
22748           <param name=
"other" type=
"TimeSpan" default=
""/> 
22751       <method name=
"IsNull" type=
"bool" overloaded=
"no"> 
22752         <autodoc>IsNull() -
> bool
</autodoc> 
22754       <method name=
"IsPositive" type=
"bool" overloaded=
"no"> 
22755         <autodoc>IsPositive() -
> bool
</autodoc> 
22757       <method name=
"IsNegative" type=
"bool" overloaded=
"no"> 
22758         <autodoc>IsNegative() -
> bool
</autodoc> 
22760       <method name=
"IsEqualTo" type=
"bool" overloaded=
"no"> 
22761         <autodoc>IsEqualTo(TimeSpan ts) -
> bool
</autodoc> 
22763           <param name=
"ts" type=
"TimeSpan" default=
""/> 
22766       <method name=
"IsLongerThan" type=
"bool" overloaded=
"no"> 
22767         <autodoc>IsLongerThan(TimeSpan ts) -
> bool
</autodoc> 
22769           <param name=
"ts" type=
"TimeSpan" default=
""/> 
22772       <method name=
"IsShorterThan" type=
"bool" overloaded=
"no"> 
22773         <autodoc>IsShorterThan(TimeSpan t) -
> bool
</autodoc> 
22775           <param name=
"t" type=
"TimeSpan" default=
""/> 
22778       <method name=
"GetWeeks" type=
"int" overloaded=
"no"> 
22779         <autodoc>GetWeeks() -
> int
</autodoc> 
22781       <method name=
"GetDays" type=
"int" overloaded=
"no"> 
22782         <autodoc>GetDays() -
> int
</autodoc> 
22784       <method name=
"GetHours" type=
"int" overloaded=
"no"> 
22785         <autodoc>GetHours() -
> int
</autodoc> 
22787       <method name=
"GetMinutes" type=
"int" overloaded=
"no"> 
22788         <autodoc>GetMinutes() -
> int
</autodoc> 
22790       <method name=
"GetSeconds" type=
"wxLongLong" overloaded=
"no"> 
22791         <autodoc>GetSeconds() -
> wxLongLong
</autodoc> 
22793       <method name=
"GetMilliseconds" type=
"wxLongLong" overloaded=
"no"> 
22794         <autodoc>GetMilliseconds() -
> wxLongLong
</autodoc> 
22796       <method name=
"Format" type=
"String" overloaded=
"no"> 
22797         <autodoc>Format(String format=TimeSpanFormatStr) -
> String
</autodoc> 
22799           <param name=
"format" type=
"String" default=
"wxPyTimeSpanFormatStr"/> 
22803     <class name=
"DateSpan" oldname=
"wxDateSpan" module=
"misc"> 
22804       <constructor name=
"DateSpan" overloaded=
"no"> 
22805         <autodoc>__init__(int years=
0, int months=
0, int weeks=
0, int days=
0) -
> DateSpan
</autodoc> 
22807           <param name=
"years" type=
"int" default=
"0"/> 
22808           <param name=
"months" type=
"int" default=
"0"/> 
22809           <param name=
"weeks" type=
"int" default=
"0"/> 
22810           <param name=
"days" type=
"int" default=
"0"/> 
22813       <destructor name=
"~wxDateSpan" overloaded=
"no"> 
22814         <autodoc>__del__()
</autodoc> 
22816       <staticmethod name=
"Days" type=
"DateSpan" overloaded=
"no"> 
22817         <autodoc>Days(int days) -
> DateSpan
</autodoc> 
22819           <param name=
"days" type=
"int" default=
""/> 
22822       <staticmethod name=
"Day" type=
"DateSpan" overloaded=
"no"> 
22823         <autodoc>Day() -
> DateSpan
</autodoc> 
22825       <staticmethod name=
"Weeks" type=
"DateSpan" overloaded=
"no"> 
22826         <autodoc>Weeks(int weeks) -
> DateSpan
</autodoc> 
22828           <param name=
"weeks" type=
"int" default=
""/> 
22831       <staticmethod name=
"Week" type=
"DateSpan" overloaded=
"no"> 
22832         <autodoc>Week() -
> DateSpan
</autodoc> 
22834       <staticmethod name=
"Months" type=
"DateSpan" overloaded=
"no"> 
22835         <autodoc>Months(int mon) -
> DateSpan
</autodoc> 
22837           <param name=
"mon" type=
"int" default=
""/> 
22840       <staticmethod name=
"Month" type=
"DateSpan" overloaded=
"no"> 
22841         <autodoc>Month() -
> DateSpan
</autodoc> 
22843       <staticmethod name=
"Years" type=
"DateSpan" overloaded=
"no"> 
22844         <autodoc>Years(int years) -
> DateSpan
</autodoc> 
22846           <param name=
"years" type=
"int" default=
""/> 
22849       <staticmethod name=
"Year" type=
"DateSpan" overloaded=
"no"> 
22850         <autodoc>Year() -
> DateSpan
</autodoc> 
22852       <method name=
"SetYears" type=
"DateSpan" overloaded=
"no"> 
22853         <autodoc>SetYears(int n) -
> DateSpan
</autodoc> 
22855           <param name=
"n" type=
"int" default=
""/> 
22858       <method name=
"SetMonths" type=
"DateSpan" overloaded=
"no"> 
22859         <autodoc>SetMonths(int n) -
> DateSpan
</autodoc> 
22861           <param name=
"n" type=
"int" default=
""/> 
22864       <method name=
"SetWeeks" type=
"DateSpan" overloaded=
"no"> 
22865         <autodoc>SetWeeks(int n) -
> DateSpan
</autodoc> 
22867           <param name=
"n" type=
"int" default=
""/> 
22870       <method name=
"SetDays" type=
"DateSpan" overloaded=
"no"> 
22871         <autodoc>SetDays(int n) -
> DateSpan
</autodoc> 
22873           <param name=
"n" type=
"int" default=
""/> 
22876       <method name=
"GetYears" type=
"int" overloaded=
"no"> 
22877         <autodoc>GetYears() -
> int
</autodoc> 
22879       <method name=
"GetMonths" type=
"int" overloaded=
"no"> 
22880         <autodoc>GetMonths() -
> int
</autodoc> 
22882       <method name=
"GetWeeks" type=
"int" overloaded=
"no"> 
22883         <autodoc>GetWeeks() -
> int
</autodoc> 
22885       <method name=
"GetDays" type=
"int" overloaded=
"no"> 
22886         <autodoc>GetDays() -
> int
</autodoc> 
22888       <method name=
"GetTotalDays" type=
"int" overloaded=
"no"> 
22889         <autodoc>GetTotalDays() -
> int
</autodoc> 
22891       <method name=
"Add" type=
"DateSpan" overloaded=
"no"> 
22892         <autodoc>Add(DateSpan other) -
> DateSpan
</autodoc> 
22894           <param name=
"other" type=
"DateSpan" default=
""/> 
22897       <method name=
"Subtract" type=
"DateSpan" overloaded=
"no"> 
22898         <autodoc>Subtract(DateSpan other) -
> DateSpan
</autodoc> 
22900           <param name=
"other" type=
"DateSpan" default=
""/> 
22903       <method name=
"Neg" type=
"DateSpan" overloaded=
"no"> 
22904         <autodoc>Neg() -
> DateSpan
</autodoc> 
22906       <method name=
"Multiply" type=
"DateSpan" overloaded=
"no"> 
22907         <autodoc>Multiply(int factor) -
> DateSpan
</autodoc> 
22909           <param name=
"factor" type=
"int" default=
""/> 
22912       <method name=
"__iadd__" type=
"DateSpan" overloaded=
"no"> 
22913         <autodoc>__iadd__(DateSpan other) -
> DateSpan
</autodoc> 
22915           <param name=
"other" type=
"DateSpan" default=
""/> 
22918       <method name=
"__isub__" type=
"DateSpan" overloaded=
"no"> 
22919         <autodoc>__isub__(DateSpan other) -
> DateSpan
</autodoc> 
22921           <param name=
"other" type=
"DateSpan" default=
""/> 
22924       <method name=
"__neg__" type=
"DateSpan" overloaded=
"no"> 
22925         <autodoc>__neg__() -
> DateSpan
</autodoc> 
22927       <method name=
"__imul__" type=
"DateSpan" overloaded=
"no"> 
22928         <autodoc>__imul__(int factor) -
> DateSpan
</autodoc> 
22930           <param name=
"factor" type=
"int" default=
""/> 
22933       <method name=
"__add__" type=
"DateSpan" overloaded=
"no"> 
22934         <autodoc>__add__(DateSpan other) -
> DateSpan
</autodoc> 
22936           <param name=
"other" type=
"DateSpan" default=
""/> 
22939       <method name=
"__sub__" type=
"DateSpan" overloaded=
"no"> 
22940         <autodoc>__sub__(DateSpan other) -
> DateSpan
</autodoc> 
22942           <param name=
"other" type=
"DateSpan" default=
""/> 
22945       <method name=
"__mul__" type=
"DateSpan" overloaded=
"no"> 
22946         <autodoc>__mul__(int n) -
> DateSpan
</autodoc> 
22948           <param name=
"n" type=
"int" default=
""/> 
22951       <method name=
"__rmul__" type=
"DateSpan" overloaded=
"no"> 
22952         <autodoc>__rmul__(int n) -
> DateSpan
</autodoc> 
22954           <param name=
"n" type=
"int" default=
""/> 
22957       <method name=
"__eq__" type=
"bool" overloaded=
"no"> 
22958         <autodoc>__eq__(DateSpan other) -
> bool
</autodoc> 
22960           <param name=
"other" type=
"DateSpan" default=
""/> 
22963       <method name=
"__ne__" type=
"bool" overloaded=
"no"> 
22964         <autodoc>__ne__(DateSpan other) -
> bool
</autodoc> 
22966           <param name=
"other" type=
"DateSpan" default=
""/> 
22970     <method name=
"GetLocalTime" oldname=
"wxGetLocalTime" type=
"long" overloaded=
"no"> 
22971       <autodoc>GetLocalTime() -
> long
</autodoc> 
22973     <method name=
"GetUTCTime" oldname=
"wxGetUTCTime" type=
"long" overloaded=
"no"> 
22974       <autodoc>GetUTCTime() -
> long
</autodoc> 
22976     <method name=
"GetCurrentTime" oldname=
"wxGetCurrentTime" type=
"long" overloaded=
"no"> 
22977       <autodoc>GetCurrentTime() -
> long
</autodoc> 
22979     <method name=
"GetLocalTimeMillis" oldname=
"wxGetLocalTimeMillis" type=
"wxLongLong" overloaded=
"no"> 
22980       <autodoc>GetLocalTimeMillis() -
> wxLongLong
</autodoc> 
22983 #---------------------------------------------------------------------------
 
22985     <class name=
"DataFormat" oldname=
"wxDataFormat" module=
"misc"> 
22986       <docstring>A wx.DataFormat is an encapsulation of a platform-specific format
 
22987 handle which is used by the system for the clipboard and drag and
 
22988 drop operations. The applications are usually only interested in,
 
22989 for example, pasting data from the clipboard only if the data is
 
22990 in a format the program understands.  A data format is is used to
 
22991 uniquely identify this format.
 
22993 On the system level, a data format is usually just a number
 
22994 (CLIPFORMAT under Windows or Atom under X11, for example).
</docstring> 
22995       <constructor name=
"DataFormat" overloaded=
"no"> 
22996         <autodoc>__init__(int type) -
> DataFormat
</autodoc> 
22997         <docstring>Constructs a data format object for one of the standard data
 
22998 formats or an empty data object (use SetType or SetId later in
 
22999 this case)
</docstring> 
23001           <param name=
"type" type=
"wxDataFormatId" default=
""/> 
23004       <constructor name=
"CustomDataFormat" overloaded=
"no"> 
23005         <autodoc>CustomDataFormat(String format) -
> DataFormat
</autodoc> 
23006         <docstring>Constructs a data format object for a custom format identified by its name.
</docstring> 
23008           <param name=
"format" type=
"String" default=
""/> 
23011       <destructor name=
"~wxDataFormat" overloaded=
"no"> 
23012         <autodoc>__del__()
</autodoc> 
23014       <method name=
"__eq__" type=
"bool" overloaded=
"yes"> 
23016           <param name=
"format" type=
"wxDataFormatId" default=
""/> 
23019       <method name=
"__ne__" type=
"bool" overloaded=
"yes"> 
23021           <param name=
"format" type=
"wxDataFormatId" default=
""/> 
23024       <method name=
"__eq__" type=
"bool" overloaded=
"yes"> 
23025         <autodoc>__eq__(int format) -
> bool
 
23026 __eq__(DataFormat format) -
> bool
</autodoc> 
23028           <param name=
"format" type=
"DataFormat" default=
""/> 
23031       <method name=
"__ne__" type=
"bool" overloaded=
"yes"> 
23032         <autodoc>__ne__(int format) -
> bool
 
23033 __ne__(DataFormat format) -
> bool
</autodoc> 
23035           <param name=
"format" type=
"DataFormat" default=
""/> 
23038       <method name=
"SetType" type=
"" overloaded=
"no"> 
23039         <autodoc>SetType(int format)
</autodoc> 
23040         <docstring>Sets the format to the given value, which should be one of wx.DF_XXX constants.
</docstring> 
23042           <param name=
"format" type=
"wxDataFormatId" default=
""/> 
23045       <method name=
"GetType" type=
"wxDataFormatId" overloaded=
"no"> 
23046         <autodoc>GetType() -
> int
</autodoc> 
23047         <docstring>Returns the platform-specific number identifying the format.
</docstring> 
23049       <method name=
"GetId" type=
"String" overloaded=
"no"> 
23050         <autodoc>GetId() -
> String
</autodoc> 
23051         <docstring>Returns the name of a custom format (this function will fail for a standard format).
</docstring> 
23053       <method name=
"SetId" type=
"" overloaded=
"no"> 
23054         <autodoc>SetId(String format)
</autodoc> 
23055         <docstring>Sets the format to be the custom format identified by the given name.
</docstring> 
23057           <param name=
"format" type=
"String" default=
""/> 
23061     <class name=
"DataObject" oldname=
"wxDataObject" module=
"misc"> 
23062       <destructor name=
"~wxDataObject" overloaded=
"no"> 
23063         <autodoc>__del__()
</autodoc> 
23065       <method name=
"GetPreferredFormat" type=
"DataFormat" overloaded=
"no"> 
23066         <autodoc>GetPreferredFormat(int dir=Get) -
> DataFormat
</autodoc> 
23068           <param name=
"dir" type=
"wxDataObject::Direction" default=
"wxDataObject::Get"/> 
23071       <method name=
"GetFormatCount" type=
"size_t" overloaded=
"no"> 
23072         <autodoc>GetFormatCount(int dir=Get) -
> size_t
</autodoc> 
23074           <param name=
"dir" type=
"wxDataObject::Direction" default=
"wxDataObject::Get"/> 
23077       <method name=
"IsSupported" type=
"bool" overloaded=
"no"> 
23078         <autodoc>IsSupported(DataFormat format, int dir=Get) -
> bool
</autodoc> 
23080           <param name=
"format" type=
"DataFormat" default=
""/> 
23081           <param name=
"dir" type=
"wxDataObject::Direction" default=
"wxDataObject::Get"/> 
23084       <method name=
"GetDataSize" type=
"size_t" overloaded=
"no"> 
23085         <autodoc>GetDataSize(DataFormat format) -
> size_t
</autodoc> 
23087           <param name=
"format" type=
"DataFormat" default=
""/> 
23090       <method name=
"GetAllFormats" type=
"" overloaded=
"no"> 
23091         <autodoc>GetAllFormats(DataFormat formats, int dir=Get)
</autodoc> 
23093           <param name=
"formats" type=
"DataFormat" default=
""/> 
23094           <param name=
"dir" type=
"wxDataObject::Direction" default=
"wxDataObject::Get"/> 
23097       <method name=
"GetDataHere" type=
"bool" overloaded=
"no"> 
23098         <autodoc>GetDataHere(DataFormat format, void buf) -
> bool
</autodoc> 
23100           <param name=
"format" type=
"DataFormat" default=
""/> 
23101           <param name=
"buf" type=
"" default=
""/> 
23104       <method name=
"SetData" type=
"bool" overloaded=
"no"> 
23105         <autodoc>SetData(DataFormat format, size_t len, void buf) -
> bool
</autodoc> 
23107           <param name=
"format" type=
"DataFormat" default=
""/> 
23108           <param name=
"len" type=
"size_t" default=
""/> 
23109           <param name=
"buf" type=
"" default=
""/> 
23113     <class name=
"DataObjectSimple" oldname=
"wxDataObjectSimple" module=
"misc"> 
23114       <baseclass name=
"DataObject"/> 
23115       <constructor name=
"DataObjectSimple" overloaded=
"no"> 
23116         <autodoc>__init__(DataFormat format=FormatInvalid) -
> DataObjectSimple
</autodoc> 
23118           <param name=
"format" type=
"DataFormat" default=
"wxFormatInvalid"/> 
23121       <method name=
"GetFormat" type=
"DataFormat" overloaded=
"no"> 
23122         <autodoc>GetFormat() -
> DataFormat
</autodoc> 
23124       <method name=
"SetFormat" type=
"" overloaded=
"no"> 
23125         <autodoc>SetFormat(DataFormat format)
</autodoc> 
23127           <param name=
"format" type=
"DataFormat" default=
""/> 
23131     <class name=
"PyDataObjectSimple" oldname=
"wxPyDataObjectSimple" module=
"misc"> 
23132       <baseclass name=
"DataObjectSimple"/> 
23133       <constructor name=
"PyDataObjectSimple" overloaded=
"no"> 
23134         <autodoc>__init__(DataFormat format=FormatInvalid) -
> PyDataObjectSimple
</autodoc> 
23136           <param name=
"format" type=
"DataFormat" default=
"wxFormatInvalid"/> 
23139       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
23140         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
23142           <param name=
"self" type=
"PyObject" default=
""/> 
23143           <param name=
"_class" type=
"PyObject" default=
""/> 
23147     <class name=
"DataObjectComposite" oldname=
"wxDataObjectComposite" module=
"misc"> 
23148       <baseclass name=
"DataObject"/> 
23149       <constructor name=
"DataObjectComposite" overloaded=
"no"> 
23150         <autodoc>__init__() -
> DataObjectComposite
</autodoc> 
23152       <method name=
"Add" type=
"" overloaded=
"no"> 
23153         <autodoc>Add(DataObjectSimple dataObject, int preferred=False)
</autodoc> 
23155           <param name=
"dataObject" type=
"DataObjectSimple" default=
""/> 
23156           <param name=
"preferred" type=
"int" default=
"False"/> 
23160     <class name=
"TextDataObject" oldname=
"wxTextDataObject" module=
"misc"> 
23161       <baseclass name=
"DataObjectSimple"/> 
23162       <constructor name=
"TextDataObject" overloaded=
"no"> 
23163         <autodoc>__init__(String text=EmptyString) -
> TextDataObject
</autodoc> 
23165           <param name=
"text" type=
"String" default=
"wxPyEmptyString"/> 
23168       <method name=
"GetTextLength" type=
"size_t" overloaded=
"no"> 
23169         <autodoc>GetTextLength() -
> size_t
</autodoc> 
23171       <method name=
"GetText" type=
"String" overloaded=
"no"> 
23172         <autodoc>GetText() -
> String
</autodoc> 
23174       <method name=
"SetText" type=
"" overloaded=
"no"> 
23175         <autodoc>SetText(String text)
</autodoc> 
23177           <param name=
"text" type=
"String" default=
""/> 
23181     <class name=
"PyTextDataObject" oldname=
"wxPyTextDataObject" module=
"misc"> 
23182       <baseclass name=
"TextDataObject"/> 
23183       <constructor name=
"PyTextDataObject" overloaded=
"no"> 
23184         <autodoc>__init__(String text=EmptyString) -
> PyTextDataObject
</autodoc> 
23186           <param name=
"text" type=
"String" default=
"wxPyEmptyString"/> 
23189       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
23190         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
23192           <param name=
"self" type=
"PyObject" default=
""/> 
23193           <param name=
"_class" type=
"PyObject" default=
""/> 
23197     <class name=
"BitmapDataObject" oldname=
"wxBitmapDataObject" module=
"misc"> 
23198       <baseclass name=
"DataObjectSimple"/> 
23199       <constructor name=
"BitmapDataObject" overloaded=
"no"> 
23200         <autodoc>__init__(Bitmap bitmap=wxNullBitmap) -
> BitmapDataObject
</autodoc> 
23202           <param name=
"bitmap" type=
"Bitmap" default=
"wxNullBitmap"/> 
23205       <method name=
"GetBitmap" type=
"Bitmap" overloaded=
"no"> 
23206         <autodoc>GetBitmap() -
> Bitmap
</autodoc> 
23208       <method name=
"SetBitmap" type=
"" overloaded=
"no"> 
23209         <autodoc>SetBitmap(Bitmap bitmap)
</autodoc> 
23211           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
23215     <class name=
"PyBitmapDataObject" oldname=
"wxPyBitmapDataObject" module=
"misc"> 
23216       <baseclass name=
"BitmapDataObject"/> 
23217       <constructor name=
"PyBitmapDataObject" overloaded=
"no"> 
23218         <autodoc>__init__(Bitmap bitmap=wxNullBitmap) -
> PyBitmapDataObject
</autodoc> 
23220           <param name=
"bitmap" type=
"Bitmap" default=
"wxNullBitmap"/> 
23223       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
23224         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
23226           <param name=
"self" type=
"PyObject" default=
""/> 
23227           <param name=
"_class" type=
"PyObject" default=
""/> 
23231     <class name=
"FileDataObject" oldname=
"wxFileDataObject" module=
"misc"> 
23232       <baseclass name=
"DataObjectSimple"/> 
23233       <constructor name=
"FileDataObject" overloaded=
"no"> 
23234         <autodoc>__init__() -
> FileDataObject
</autodoc> 
23236       <method name=
"GetFilenames" type=
"wxArrayString" overloaded=
"no"> 
23237         <autodoc>GetFilenames() -
> wxArrayString
</autodoc> 
23239       <method name=
"AddFile" type=
"" overloaded=
"no"> 
23240         <autodoc>AddFile(String filename)
</autodoc> 
23242           <param name=
"filename" type=
"String" default=
""/> 
23246     <class name=
"CustomDataObject" oldname=
"wxCustomDataObject" module=
"misc"> 
23247       <baseclass name=
"DataObjectSimple"/> 
23248       <constructor name=
"CustomDataObject" overloaded=
"no"> 
23249         <autodoc>__init__(DataFormat format=FormatInvalid) -
> CustomDataObject
</autodoc> 
23251           <param name=
"format" type=
"DataFormat" default=
"wxFormatInvalid"/> 
23254       <method name=
"TakeData" type=
"" overloaded=
"no"> 
23255         <autodoc>TakeData(PyObject data)
</autodoc> 
23257           <param name=
"data" type=
"PyObject" default=
""/> 
23260       <method name=
"SetData" type=
"bool" overloaded=
"no"> 
23261         <autodoc>SetData(PyObject data) -
> bool
</autodoc> 
23263           <param name=
"data" type=
"PyObject" default=
""/> 
23266       <method name=
"GetSize" type=
"size_t" overloaded=
"no"> 
23267         <autodoc>GetSize() -
> size_t
</autodoc> 
23269       <method name=
"GetData" type=
"PyObject" overloaded=
"no"> 
23270         <autodoc>GetData() -
> PyObject
</autodoc> 
23273     <class name=
"URLDataObject" oldname=
"wxURLDataObject" module=
"misc"> 
23274       <baseclass name=
"DataObjectComposite"/> 
23275       <constructor name=
"URLDataObject" overloaded=
"no"> 
23276         <autodoc>__init__() -
> URLDataObject
</autodoc> 
23278       <method name=
"GetURL" type=
"String" overloaded=
"no"> 
23279         <autodoc>GetURL() -
> String
</autodoc> 
23281       <method name=
"SetURL" type=
"" overloaded=
"no"> 
23282         <autodoc>SetURL(String url)
</autodoc> 
23284           <param name=
"url" type=
"String" default=
""/> 
23288     <class name=
"MetafileDataObject" oldname=
"wxMetafileDataObject" module=
"misc"> 
23289       <baseclass name=
"DataObjectSimple"/> 
23290       <constructor name=
"MetafileDataObject" overloaded=
"no"> 
23291         <autodoc>__init__() -
> MetafileDataObject
</autodoc> 
23295 #---------------------------------------------------------------------------
 
23297     <method name=
"IsDragResultOk" oldname=
"wxIsDragResultOk" type=
"bool" overloaded=
"no"> 
23298       <autodoc>IsDragResultOk(int res) -
> bool
</autodoc> 
23300         <param name=
"res" type=
"wxDragResult" default=
""/> 
23303     <class name=
"DropSource" oldname=
"wxPyDropSource" module=
"misc"> 
23304       <constructor name=
"wxPyDropSource" overloaded=
"no"> 
23305         <autodoc>__init__(Window win, Icon copy=wxNullIcon, Icon move=wxNullIcon, 
 
23306     Icon none=wxNullIcon) -
> DropSource
</autodoc> 
23308           <param name=
"win" type=
"Window" default=
""/> 
23309           <param name=
"copy" type=
"Icon" default=
"wxNullIcon"/> 
23310           <param name=
"move" type=
"Icon" default=
"wxNullIcon"/> 
23311           <param name=
"none" type=
"Icon" default=
"wxNullIcon"/> 
23314       <destructor name=
"~wxPyDropSource" overloaded=
"no"> 
23315         <autodoc>__del__()
</autodoc> 
23317       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
23318         <autodoc>_setCallbackInfo(PyObject self, PyObject _class, int incref)
</autodoc> 
23320           <param name=
"self" type=
"PyObject" default=
""/> 
23321           <param name=
"_class" type=
"PyObject" default=
""/> 
23322           <param name=
"incref" type=
"int" default=
""/> 
23325       <method name=
"SetData" type=
"" overloaded=
"no"> 
23326         <autodoc>SetData(DataObject data)
</autodoc> 
23328           <param name=
"data" type=
"DataObject" default=
""/> 
23331       <method name=
"GetDataObject" type=
"DataObject" overloaded=
"no"> 
23332         <autodoc>GetDataObject() -
> DataObject
</autodoc> 
23334       <method name=
"SetCursor" type=
"" overloaded=
"no"> 
23335         <autodoc>SetCursor(int res, Cursor cursor)
</autodoc> 
23337           <param name=
"res" type=
"wxDragResult" default=
""/> 
23338           <param name=
"cursor" type=
"Cursor" default=
""/> 
23341       <method name=
"DoDragDrop" type=
"wxDragResult" overloaded=
"no"> 
23342         <autodoc>DoDragDrop(int flags=Drag_CopyOnly) -
> int
</autodoc> 
23344           <param name=
"flags" type=
"int" default=
"wxDrag_CopyOnly"/> 
23347       <method name=
"base_GiveFeedback" type=
"bool" overloaded=
"no"> 
23348         <autodoc>base_GiveFeedback(int effect) -
> bool
</autodoc> 
23350           <param name=
"effect" type=
"wxDragResult" default=
""/> 
23354     <class name=
"DropTarget" oldname=
"wxPyDropTarget" module=
"misc"> 
23355       <constructor name=
"DropTarget" overloaded=
"no"> 
23356         <autodoc>__init__(DataObject dataObject=None) -
> DropTarget
</autodoc> 
23358           <param name=
"dataObject" type=
"DataObject" default=
"NULL"/> 
23361       <destructor name=
"~wxPyDropTarget" overloaded=
"no"> 
23362         <autodoc>__del__()
</autodoc> 
23364       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
23365         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
23367           <param name=
"self" type=
"PyObject" default=
""/> 
23368           <param name=
"_class" type=
"PyObject" default=
""/> 
23371       <method name=
"GetDataObject" type=
"DataObject" overloaded=
"no"> 
23372         <autodoc>GetDataObject() -
> DataObject
</autodoc> 
23374       <method name=
"SetDataObject" type=
"" overloaded=
"no"> 
23375         <autodoc>SetDataObject(DataObject dataObject)
</autodoc> 
23377           <param name=
"dataObject" type=
"DataObject" default=
""/> 
23380       <method name=
"base_OnEnter" type=
"wxDragResult" overloaded=
"no"> 
23381         <autodoc>base_OnEnter(int x, int y, int def) -
> int
</autodoc> 
23383           <param name=
"x" type=
"int" default=
""/> 
23384           <param name=
"y" type=
"int" default=
""/> 
23385           <param name=
"def" type=
"wxDragResult" default=
""/> 
23388       <method name=
"base_OnDragOver" type=
"wxDragResult" overloaded=
"no"> 
23389         <autodoc>base_OnDragOver(int x, int y, int def) -
> int
</autodoc> 
23391           <param name=
"x" type=
"int" default=
""/> 
23392           <param name=
"y" type=
"int" default=
""/> 
23393           <param name=
"def" type=
"wxDragResult" default=
""/> 
23396       <method name=
"base_OnLeave" type=
"" overloaded=
"no"> 
23397         <autodoc>base_OnLeave()
</autodoc> 
23399       <method name=
"base_OnDrop" type=
"bool" overloaded=
"no"> 
23400         <autodoc>base_OnDrop(int x, int y) -
> bool
</autodoc> 
23402           <param name=
"x" type=
"int" default=
""/> 
23403           <param name=
"y" type=
"int" default=
""/> 
23406       <method name=
"GetData" type=
"bool" overloaded=
"no"> 
23407         <autodoc>GetData() -
> bool
</autodoc> 
23410     <pythoncode> PyDropTarget = DropTarget 
</pythoncode> 
23411     <class name=
"TextDropTarget" oldname=
"wxPyTextDropTarget" module=
"misc"> 
23412       <baseclass name=
"DropTarget"/> 
23413       <constructor name=
"wxPyTextDropTarget" overloaded=
"no"> 
23414         <autodoc>__init__() -
> TextDropTarget
</autodoc> 
23416       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
23417         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
23419           <param name=
"self" type=
"PyObject" default=
""/> 
23420           <param name=
"_class" type=
"PyObject" default=
""/> 
23423       <method name=
"base_OnEnter" type=
"wxDragResult" overloaded=
"no"> 
23424         <autodoc>base_OnEnter(int x, int y, int def) -
> int
</autodoc> 
23426           <param name=
"x" type=
"int" default=
""/> 
23427           <param name=
"y" type=
"int" default=
""/> 
23428           <param name=
"def" type=
"wxDragResult" default=
""/> 
23431       <method name=
"base_OnDragOver" type=
"wxDragResult" overloaded=
"no"> 
23432         <autodoc>base_OnDragOver(int x, int y, int def) -
> int
</autodoc> 
23434           <param name=
"x" type=
"int" default=
""/> 
23435           <param name=
"y" type=
"int" default=
""/> 
23436           <param name=
"def" type=
"wxDragResult" default=
""/> 
23439       <method name=
"base_OnLeave" type=
"" overloaded=
"no"> 
23440         <autodoc>base_OnLeave()
</autodoc> 
23442       <method name=
"base_OnDrop" type=
"bool" overloaded=
"no"> 
23443         <autodoc>base_OnDrop(int x, int y) -
> bool
</autodoc> 
23445           <param name=
"x" type=
"int" default=
""/> 
23446           <param name=
"y" type=
"int" default=
""/> 
23449       <method name=
"base_OnData" type=
"wxDragResult" overloaded=
"no"> 
23450         <autodoc>base_OnData(int x, int y, int def) -
> int
</autodoc> 
23452           <param name=
"x" type=
"int" default=
""/> 
23453           <param name=
"y" type=
"int" default=
""/> 
23454           <param name=
"def" type=
"wxDragResult" default=
""/> 
23458     <class name=
"FileDropTarget" oldname=
"wxPyFileDropTarget" module=
"misc"> 
23459       <baseclass name=
"DropTarget"/> 
23460       <constructor name=
"wxPyFileDropTarget" overloaded=
"no"> 
23461         <autodoc>__init__() -
> FileDropTarget
</autodoc> 
23463       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
23464         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
23466           <param name=
"self" type=
"PyObject" default=
""/> 
23467           <param name=
"_class" type=
"PyObject" default=
""/> 
23470       <method name=
"base_OnEnter" type=
"wxDragResult" overloaded=
"no"> 
23471         <autodoc>base_OnEnter(int x, int y, int def) -
> int
</autodoc> 
23473           <param name=
"x" type=
"int" default=
""/> 
23474           <param name=
"y" type=
"int" default=
""/> 
23475           <param name=
"def" type=
"wxDragResult" default=
""/> 
23478       <method name=
"base_OnDragOver" type=
"wxDragResult" overloaded=
"no"> 
23479         <autodoc>base_OnDragOver(int x, int y, int def) -
> int
</autodoc> 
23481           <param name=
"x" type=
"int" default=
""/> 
23482           <param name=
"y" type=
"int" default=
""/> 
23483           <param name=
"def" type=
"wxDragResult" default=
""/> 
23486       <method name=
"base_OnLeave" type=
"" overloaded=
"no"> 
23487         <autodoc>base_OnLeave()
</autodoc> 
23489       <method name=
"base_OnDrop" type=
"bool" overloaded=
"no"> 
23490         <autodoc>base_OnDrop(int x, int y) -
> bool
</autodoc> 
23492           <param name=
"x" type=
"int" default=
""/> 
23493           <param name=
"y" type=
"int" default=
""/> 
23496       <method name=
"base_OnData" type=
"wxDragResult" overloaded=
"no"> 
23497         <autodoc>base_OnData(int x, int y, int def) -
> int
</autodoc> 
23499           <param name=
"x" type=
"int" default=
""/> 
23500           <param name=
"y" type=
"int" default=
""/> 
23501           <param name=
"def" type=
"wxDragResult" default=
""/> 
23506 #---------------------------------------------------------------------------
 
23508     <class name=
"Clipboard" oldname=
"wxClipboard" module=
"misc"> 
23509       <docstring>wx.Clipboard represents the system clipboard and provides methods to copy data
 
23510 to or paste data from it.  Normally, you should only use wx.TheClipboard which
 
23511 is a reference to a global wx.Clipboard instance.
 
23513 Call wx.TheClipboard.Open to get ownership of the clipboard. If this operation
 
23514 returns True, you now own the clipboard. Call wx.TheClipboard.SetData to put
 
23515 data on the clipboard, or wx.TheClipboard.GetData to retrieve data from the
 
23516 clipboard.  Call wx.TheClipboard.Close to close the clipboard and relinquish
 
23517 ownership. You should keep the clipboard open only momentarily.
 
23519       <baseclass name=
"Object"/> 
23520       <constructor name=
"Clipboard" overloaded=
"no"> 
23521         <autodoc>__init__() -
> Clipboard
</autodoc> 
23523       <destructor name=
"~wxClipboard" overloaded=
"no"> 
23524         <autodoc>__del__()
</autodoc> 
23526       <method name=
"Open" type=
"bool" overloaded=
"no"> 
23527         <autodoc>Open() -
> bool
</autodoc> 
23528         <docstring>Call this function to open the clipboard before calling SetData
 
23529 and GetData.  Call Close when you have finished with the clipboard.
 
23530 You should keep the clipboard open for only a very short time.
 
23531 Returns true on success. 
</docstring> 
23533       <method name=
"Close" type=
"" overloaded=
"no"> 
23534         <autodoc>Close()
</autodoc> 
23535         <docstring>Closes the clipboard.
</docstring> 
23537       <method name=
"IsOpened" type=
"bool" overloaded=
"no"> 
23538         <autodoc>IsOpened() -
> bool
</autodoc> 
23539         <docstring>Query whether the clipboard is opened
</docstring> 
23541       <method name=
"AddData" type=
"bool" overloaded=
"no"> 
23542         <autodoc>AddData(DataObject data) -
> bool
</autodoc> 
23543         <docstring>Call this function to add the data object to the clipboard. You
 
23544 may call this function repeatedly after having cleared the clipboard.
 
23545 After this function has been called, the clipboard owns the data, so
 
23546 do not delete the data explicitly.
</docstring> 
23548           <param name=
"data" type=
"DataObject" default=
""/> 
23551       <method name=
"SetData" type=
"bool" overloaded=
"no"> 
23552         <autodoc>SetData(DataObject data) -
> bool
</autodoc> 
23553         <docstring>Set the clipboard data, this is the same as Clear followed by AddData.
</docstring> 
23555           <param name=
"data" type=
"DataObject" default=
""/> 
23558       <method name=
"IsSupported" type=
"bool" overloaded=
"no"> 
23559         <autodoc>IsSupported(DataFormat format) -
> bool
</autodoc> 
23560         <docstring>Returns True if the given format is available in the data object(s) on
 
23561 the clipboard.
</docstring> 
23563           <param name=
"format" type=
"DataFormat" default=
""/> 
23566       <method name=
"GetData" type=
"bool" overloaded=
"no"> 
23567         <autodoc>GetData(DataObject data) -
> bool
</autodoc> 
23568         <docstring>Call this function to fill data with data on the clipboard, if available
 
23569 in the required format. Returns true on success.
</docstring> 
23571           <param name=
"data" type=
"DataObject" default=
""/> 
23574       <method name=
"Clear" type=
"" overloaded=
"no"> 
23575         <autodoc>Clear()
</autodoc> 
23576         <docstring>Clears data from the clipboard object and also  the system's clipboard
 
23577 if possible.
</docstring> 
23579       <method name=
"Flush" type=
"bool" overloaded=
"no"> 
23580         <autodoc>Flush() -
> bool
</autodoc> 
23581         <docstring>Flushes the clipboard: this means that the data which is currently on
 
23582 clipboard will stay available even after the application exits (possibly
 
23583 eating memory), otherwise the clipboard will be emptied on exit.
 
23584 Returns False if the operation is unsuccesful for any reason.
</docstring> 
23586       <method name=
"UsePrimarySelection" type=
"" overloaded=
"no"> 
23587         <autodoc>UsePrimarySelection(bool primary=True)
</autodoc> 
23588         <docstring>On platforms supporting it (the X11 based platforms), selects the so
 
23589 called PRIMARY SELECTION as the clipboard as opposed to the normal
 
23590 clipboard, if primary is True.
</docstring> 
23592           <param name=
"primary" type=
"bool" default=
"True"/> 
23596     <class name=
"ClipboardLocker" oldname=
"wxClipboardLocker" module=
"misc"> 
23597       <docstring>A helpful class for opening the clipboard and automatically closing it when
 
23598 the locker is destroyed.
</docstring> 
23599       <constructor name=
"ClipboardLocker" overloaded=
"no"> 
23600         <autodoc>__init__(Clipboard clipboard=None) -
> ClipboardLocker
</autodoc> 
23601         <docstring>A helpful class for opening the clipboard and automatically closing it when
 
23602 the locker is destroyed.
</docstring> 
23604           <param name=
"clipboard" type=
"Clipboard" default=
"NULL"/> 
23607       <destructor name=
"~wxClipboardLocker" overloaded=
"no"> 
23608         <autodoc>__del__()
</autodoc> 
23610       <method name=
"__nonzero__" type=
"bool" overloaded=
"no"> 
23611         <autodoc>__nonzero__() -
> bool
</autodoc> 
23612         <docstring>A ClipboardLocker instance evaluates to True if the clipboard was
 
23613 successfully opened.
</docstring> 
23617 #---------------------------------------------------------------------------
 
23619     <class name=
"VideoMode" oldname=
"wxVideoMode" module=
"misc"> 
23620       <docstring>A simple struct containing video mode parameters for a display
</docstring> 
23621       <constructor name=
"VideoMode" overloaded=
"no"> 
23622         <autodoc>__init__(int width=
0, int height=
0, int depth=
0, int freq=
0) -
> VideoMode
</autodoc> 
23623         <docstring>A simple struct containing video mode parameters for a display
</docstring> 
23625           <param name=
"width" type=
"int" default=
"0"/> 
23626           <param name=
"height" type=
"int" default=
"0"/> 
23627           <param name=
"depth" type=
"int" default=
"0"/> 
23628           <param name=
"freq" type=
"int" default=
"0"/> 
23631       <destructor name=
"~wxVideoMode" overloaded=
"no"> 
23632         <autodoc>__del__()
</autodoc> 
23634       <method name=
"Matches" type=
"bool" overloaded=
"no"> 
23635         <autodoc>Matches(VideoMode other) -
> bool
</autodoc> 
23636         <docstring>Returns true if this mode matches the other one in the sense that
 
23637 all non zero fields of the other mode have the same value in this
 
23638 one (except for refresh which is allowed to have a greater value)
</docstring> 
23640           <param name=
"other" type=
"VideoMode" default=
""/> 
23643       <method name=
"GetWidth" type=
"int" overloaded=
"no"> 
23644         <autodoc>GetWidth() -
> int
</autodoc> 
23645         <docstring>Returns the screen width in pixels (e.g. 
640*
480), 
0 means
 
23646 unspecified
</docstring> 
23648       <method name=
"GetHeight" type=
"int" overloaded=
"no"> 
23649         <autodoc>GetHeight() -
> int
</autodoc> 
23650         <docstring>Returns the screen width in pixels (e.g. 
640*
480), 
0 means
 
23651 unspecified
</docstring> 
23653       <method name=
"GetDepth" type=
"int" overloaded=
"no"> 
23654         <autodoc>GetDepth() -
> int
</autodoc> 
23655         <docstring>Returns the screen's bits per pixel (e.g. 
32), 
1 is monochrome
 
23656 and 
0 means unspecified/known
</docstring> 
23658       <method name=
"IsOk" type=
"bool" overloaded=
"no"> 
23659         <autodoc>IsOk() -
> bool
</autodoc> 
23660         <docstring>returns true if the object has been initialized
</docstring> 
23662       <method name=
"__eq__" type=
"bool" overloaded=
"no"> 
23663         <autodoc>__eq__(VideoMode other) -
> bool
</autodoc> 
23665           <param name=
"other" type=
"VideoMode" default=
""/> 
23668       <method name=
"__ne__" type=
"bool" overloaded=
"no"> 
23669         <autodoc>__ne__(VideoMode other) -
> bool
</autodoc> 
23671           <param name=
"other" type=
"VideoMode" default=
""/> 
23674       <property name=
"w" type=
"int" readonly=
"no"/> 
23675       <property name=
"h" type=
"int" readonly=
"no"/> 
23676       <property name=
"bpp" type=
"int" readonly=
"no"/> 
23677       <property name=
"refresh" type=
"int" readonly=
"no"/> 
23679     <class name=
"Display" oldname=
"wxDisplay" module=
"misc"> 
23680       <docstring>Represents a display/monitor attached to the system
</docstring> 
23681       <constructor name=
"Display" overloaded=
"no"> 
23682         <autodoc>__init__(size_t index=
0) -
> Display
</autodoc> 
23683         <docstring>Set up a Display instance with the specified display.  The
 
23684 displays are numbered from 
0 to GetCount() - 
1, 
0 is always the
 
23685 primary display and the only one which is always supported
</docstring> 
23687           <param name=
"index" type=
"size_t" default=
"0"/> 
23690       <destructor name=
"~wxDisplay" overloaded=
"no"> 
23691         <autodoc>__del__()
</autodoc> 
23693       <staticmethod name=
"GetCount" type=
"size_t" overloaded=
"no"> 
23694         <autodoc>GetCount() -
> size_t
</autodoc> 
23695         <docstring>Return the number of available displays.
</docstring> 
23697       <staticmethod name=
"GetFromPoint" type=
"int" overloaded=
"no"> 
23698         <autodoc>GetFromPoint(Point pt) -
> int
</autodoc> 
23699         <docstring>Find the display where the given point lies, return wx.NOT_FOUND
 
23700 if it doesn't belong to any display
</docstring> 
23702           <param name=
"pt" type=
"Point" default=
""/> 
23705       <staticmethod name=
"GetFromWindow" type=
"int" overloaded=
"no"> 
23706         <autodoc>GetFromWindow(Window window) -
> int
</autodoc> 
23707         <docstring>Find the display where the given window lies, return wx.NOT_FOUND
 
23708 if it is not shown at all.
</docstring> 
23710           <param name=
"window" type=
"Window" default=
""/> 
23713       <method name=
"IsOk" type=
"bool" overloaded=
"no"> 
23714         <autodoc>IsOk() -
> bool
</autodoc> 
23715         <docstring>Return true if the object was initialized successfully
</docstring> 
23717       <method name=
"GetGeometry" type=
"Rect" overloaded=
"no"> 
23718         <autodoc>GetGeometry() -
> Rect
</autodoc> 
23719         <docstring>Returns the bounding rectangle of the display whose index was
 
23720 passed to the constructor.
</docstring> 
23722       <method name=
"GetName" type=
"String" overloaded=
"no"> 
23723         <autodoc>GetName() -
> String
</autodoc> 
23724         <docstring>Returns the display's name. A name is not available on all platforms.
</docstring> 
23726       <method name=
"IsPrimary" type=
"bool" overloaded=
"no"> 
23727         <autodoc>IsPrimary() -
> bool
</autodoc> 
23728         <docstring>Returns true if the display is the primary display. The primary
 
23729 display is the one whose index is 
0.
</docstring> 
23731       <method name=
"GetModes" type=
"PyObject" overloaded=
"no"> 
23732         <autodoc>GetModes(VideoMode mode=DefaultVideoMode) -
> [videoMode...]
</autodoc> 
23733         <docstring>Enumerate all video modes supported by this display matching the
 
23734 given one (in the sense of VideoMode.Match()).
 
23736 As any mode matches the default value of the argument and there
 
23737 is always at least one video mode supported by display, the
 
23738 returned array is only empty for the default value of the
 
23739 argument if this function is not supported at all on this
 
23740 platform.
</docstring> 
23742           <param name=
"mode" type=
"VideoMode" default=
"wxDefaultVideoMode"/> 
23745       <method name=
"GetCurrentMode" type=
"VideoMode" overloaded=
"no"> 
23746         <autodoc>GetCurrentMode() -
> VideoMode
</autodoc> 
23747         <docstring>Get the current video mode.
</docstring> 
23749       <method name=
"ChangeMode" type=
"bool" overloaded=
"no"> 
23750         <autodoc>ChangeMode(VideoMode mode=DefaultVideoMode) -
> bool
</autodoc> 
23751         <docstring>Change current mode, return true if succeeded, false otherwise
</docstring> 
23753           <param name=
"mode" type=
"VideoMode" default=
"wxDefaultVideoMode"/> 
23756       <method name=
"ResetMode" type=
"" overloaded=
"no"> 
23757         <autodoc>ResetMode()
</autodoc> 
23758         <docstring>Restore the default video mode (just a more readable synonym)
</docstring> 
23762   <module name=
"calendar"> 
23763     <import name=
"misc"/> 
23764     <pythoncode> wx = core 
</pythoncode> 
23765     <class name=
"CalendarDateAttr" oldname=
"wxCalendarDateAttr" module=
"calendar"> 
23766       <docstring>A set of customization attributes for a calendar date, which can be used to
 
23767 control the look of the Calendar object.
</docstring> 
23768       <constructor name=
"CalendarDateAttr" overloaded=
"no"> 
23769         <autodoc>__init__(Colour colText=wxNullColour, Colour colBack=wxNullColour, 
 
23770     Colour colBorder=wxNullColour, Font font=wxNullFont, 
 
23771     int border=CAL_BORDER_NONE) -
> CalendarDateAttr
</autodoc> 
23772         <docstring>Create a CalendarDateAttr.
</docstring> 
23774           <param name=
"colText" type=
"Colour" default=
"wxNullColour"/> 
23775           <param name=
"colBack" type=
"Colour" default=
"wxNullColour"/> 
23776           <param name=
"colBorder" type=
"Colour" default=
"wxNullColour"/> 
23777           <param name=
"font" type=
"Font" default=
"wxNullFont"/> 
23778           <param name=
"border" type=
"wxCalendarDateBorder" default=
"wxCAL_BORDER_NONE"/> 
23781       <method name=
"SetTextColour" type=
"" overloaded=
"no"> 
23782         <autodoc>SetTextColour(Colour colText)
</autodoc> 
23784           <param name=
"colText" type=
"Colour" default=
""/> 
23787       <method name=
"SetBackgroundColour" type=
"" overloaded=
"no"> 
23788         <autodoc>SetBackgroundColour(Colour colBack)
</autodoc> 
23790           <param name=
"colBack" type=
"Colour" default=
""/> 
23793       <method name=
"SetBorderColour" type=
"" overloaded=
"no"> 
23794         <autodoc>SetBorderColour(Colour col)
</autodoc> 
23796           <param name=
"col" type=
"Colour" default=
""/> 
23799       <method name=
"SetFont" type=
"" overloaded=
"no"> 
23800         <autodoc>SetFont(Font font)
</autodoc> 
23802           <param name=
"font" type=
"Font" default=
""/> 
23805       <method name=
"SetBorder" type=
"" overloaded=
"no"> 
23806         <autodoc>SetBorder(int border)
</autodoc> 
23808           <param name=
"border" type=
"wxCalendarDateBorder" default=
""/> 
23811       <method name=
"SetHoliday" type=
"" overloaded=
"no"> 
23812         <autodoc>SetHoliday(bool holiday)
</autodoc> 
23814           <param name=
"holiday" type=
"bool" default=
""/> 
23817       <method name=
"HasTextColour" type=
"bool" overloaded=
"no"> 
23818         <autodoc>HasTextColour() -
> bool
</autodoc> 
23820       <method name=
"HasBackgroundColour" type=
"bool" overloaded=
"no"> 
23821         <autodoc>HasBackgroundColour() -
> bool
</autodoc> 
23823       <method name=
"HasBorderColour" type=
"bool" overloaded=
"no"> 
23824         <autodoc>HasBorderColour() -
> bool
</autodoc> 
23826       <method name=
"HasFont" type=
"bool" overloaded=
"no"> 
23827         <autodoc>HasFont() -
> bool
</autodoc> 
23829       <method name=
"HasBorder" type=
"bool" overloaded=
"no"> 
23830         <autodoc>HasBorder() -
> bool
</autodoc> 
23832       <method name=
"IsHoliday" type=
"bool" overloaded=
"no"> 
23833         <autodoc>IsHoliday() -
> bool
</autodoc> 
23835       <method name=
"GetTextColour" type=
"Colour" overloaded=
"no"> 
23836         <autodoc>GetTextColour() -
> Colour
</autodoc> 
23838       <method name=
"GetBackgroundColour" type=
"Colour" overloaded=
"no"> 
23839         <autodoc>GetBackgroundColour() -
> Colour
</autodoc> 
23841       <method name=
"GetBorderColour" type=
"Colour" overloaded=
"no"> 
23842         <autodoc>GetBorderColour() -
> Colour
</autodoc> 
23844       <method name=
"GetFont" type=
"Font" overloaded=
"no"> 
23845         <autodoc>GetFont() -
> Font
</autodoc> 
23847       <method name=
"GetBorder" type=
"wxCalendarDateBorder" overloaded=
"no"> 
23848         <autodoc>GetBorder() -
> int
</autodoc> 
23851     <class name=
"CalendarEvent" oldname=
"wxCalendarEvent" module=
"calendar"> 
23852       <baseclass name=
"CommandEvent"/> 
23853       <constructor name=
"CalendarEvent" overloaded=
"no"> 
23854         <autodoc>__init__(CalendarCtrl cal, wxEventType type) -
> CalendarEvent
</autodoc> 
23856           <param name=
"cal" type=
"wxCalendarCtrl" default=
""/> 
23857           <param name=
"type" type=
"wxEventType" default=
""/> 
23860       <method name=
"GetDate" type=
"DateTime" overloaded=
"no"> 
23861         <autodoc>GetDate() -
> DateTime
</autodoc> 
23863       <method name=
"SetDate" type=
"" overloaded=
"no"> 
23864         <autodoc>SetDate(DateTime date)
</autodoc> 
23866           <param name=
"date" type=
"DateTime" default=
""/> 
23869       <method name=
"SetWeekDay" type=
"" overloaded=
"no"> 
23870         <autodoc>SetWeekDay(int wd)
</autodoc> 
23872           <param name=
"wd" type=
"wxDateTime::WeekDay" default=
""/> 
23875       <method name=
"GetWeekDay" type=
"wxDateTime::WeekDay" overloaded=
"no"> 
23876         <autodoc>GetWeekDay() -
> int
</autodoc> 
23880 EVT_CALENDAR =                 wx.PyEventBinder( wxEVT_CALENDAR_DOUBLECLICKED, 
1)
 
23881 EVT_CALENDAR_SEL_CHANGED =     wx.PyEventBinder( wxEVT_CALENDAR_SEL_CHANGED, 
1)
 
23882 EVT_CALENDAR_DAY =             wx.PyEventBinder( wxEVT_CALENDAR_DAY_CHANGED, 
1)
 
23883 EVT_CALENDAR_MONTH =           wx.PyEventBinder( wxEVT_CALENDAR_MONTH_CHANGED, 
1)
 
23884 EVT_CALENDAR_YEAR =            wx.PyEventBinder( wxEVT_CALENDAR_YEAR_CHANGED, 
1)
 
23885 EVT_CALENDAR_WEEKDAY_CLICKED = wx.PyEventBinder( wxEVT_CALENDAR_WEEKDAY_CLICKED, 
1)
 
23887     <class name=
"CalendarCtrl" oldname=
"wxCalendarCtrl" module=
"calendar"> 
23888       <docstring>The calendar control allows the user to pick a date interactively.
</docstring> 
23889       <refdoc>The CalendarCtrl displays a window containing several parts: the control to
 
23890 pick the month and the year at the top (either or both of them may be
 
23891 disabled) and a month area below them which shows all the days in the
 
23892 month. The user can move the current selection using the keyboard and select
 
23893 the date (generating EVT_CALENDAR event) by pressing 
<Return
> or double
 
23896 It has advanced possibilities for the customization of its display. All global
 
23897 settings (such as colours and fonts used) can, of course, be changed. But
 
23898 also, the display style for each day in the month can be set independently
 
23899 using CalendarDateAttr class.
 
23901 An item without custom attributes is drawn with the default colours and font
 
23902 and without border, but setting custom attributes with SetAttr allows to
 
23903 modify its appearance. Just create a custom attribute object and set it for
 
23904 the day you want to be displayed specially A day may be marked as being a
 
23905 holiday, (even if it is not recognized as one by wx.DateTime) by using the
 
23908 As the attributes are specified for each day, they may change when the month
 
23909 is changed, so you will often want to update them in an EVT_CALENDAR_MONTH
 
23913     CAL_SUNDAY_FIRST:         Show Sunday as the first day in the week
 
23914     CAL_MONDAY_FIRST:         Show Monday as the first day in the week
 
23915     CAL_SHOW_HOLIDAYS:         Highlight holidays in the calendar
 
23916     CAL_NO_YEAR_CHANGE:         Disable the year changing
 
23917     CAL_NO_MONTH_CHANGE: Disable the month (and, implicitly, the year) changing
 
23918     CAL_SHOW_SURROUNDING_WEEKS: Show the neighbouring weeks in the previous and next months
 
23919     CAL_SEQUENTIAL_MONTH_SELECTION: Use alternative, more compact, style for the month and year selection controls.
 
23921 The default calendar style is wxCAL_SHOW_HOLIDAYS.
 
23924     EVT_CALENDAR:        A day was double clicked in the calendar.
 
23925     EVT_CALENDAR_SEL_CHANGED: The selected date changed.
 
23926     EVT_CALENDAR_DAY:     The selected day changed.
 
23927     EVT_CALENDAR_MONTH:  The selected month changed.
 
23928     EVT_CALENDAR_YEAR:    The selected year changed.
 
23929     EVT_CALENDAR_WEEKDAY_CLICKED:  User clicked on the week day header
 
23931 Note that changing the selected date will result in either of
 
23932 EVT_CALENDAR_DAY, MONTH or YEAR events and an EVT_CALENDAR_SEL_CHANGED event.
 
23935       <baseclass name=
"Control"/> 
23936       <constructor name=
"CalendarCtrl" overloaded=
"no"> 
23937         <autodoc>__init__(Window parent, int id, DateTime date=DefaultDateTime, 
 
23938     Point pos=DefaultPosition, Size size=DefaultSize, 
 
23939     long style=wxCAL_SHOW_HOLIDAYS|wxWANTS_CHARS, 
 
23940     String name=CalendarNameStr) -
> CalendarCtrl
</autodoc> 
23941         <docstring>Create and show a calendar control.
</docstring> 
23943           <param name=
"parent" type=
"Window" default=
""/> 
23944           <param name=
"id" type=
"int" default=
""/> 
23945           <param name=
"date" type=
"DateTime" default=
"wxDefaultDateTime"/> 
23946           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
23947           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
23948           <param name=
"style" type=
"long" default=
"wxCAL_SHOW_HOLIDAYS|wxWANTS_CHARS"/> 
23949           <param name=
"name" type=
"String" default=
"wxPyCalendarNameStr"/> 
23952       <constructor name=
"PreCalendarCtrl" overloaded=
"no"> 
23953         <autodoc>PreCalendarCtrl() -
> CalendarCtrl
</autodoc> 
23954         <docstring>Precreate a CalendarCtrl for 
2-phase creation.
</docstring> 
23956       <method name=
"Create" type=
"bool" overloaded=
"no"> 
23957         <autodoc>Create(Window parent, int id, DateTime date=DefaultDateTime, 
 
23958     Point pos=DefaultPosition, Size size=DefaultSize, 
 
23959     long style=wxCAL_SHOW_HOLIDAYS|wxWANTS_CHARS, 
 
23960     String name=CalendarNameStr) -
> bool
</autodoc> 
23961         <docstring>Acutally create the GUI portion of the CalendarCtrl for 
2-phase creation.
</docstring> 
23963           <param name=
"parent" type=
"Window" default=
""/> 
23964           <param name=
"id" type=
"int" default=
""/> 
23965           <param name=
"date" type=
"DateTime" default=
"wxDefaultDateTime"/> 
23966           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
23967           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
23968           <param name=
"style" type=
"long" default=
"wxCAL_SHOW_HOLIDAYS|wxWANTS_CHARS"/> 
23969           <param name=
"name" type=
"String" default=
"wxPyCalendarNameStr"/> 
23972       <method name=
"SetDate" type=
"" overloaded=
"no"> 
23973         <autodoc>SetDate(DateTime date)
</autodoc> 
23974         <docstring>Sets the current date.
</docstring> 
23976           <param name=
"date" type=
"DateTime" default=
""/> 
23979       <method name=
"GetDate" type=
"DateTime" overloaded=
"no"> 
23980         <autodoc>GetDate() -
> DateTime
</autodoc> 
23981         <docstring>Gets the currently selected date.
</docstring> 
23983       <method name=
"SetLowerDateLimit" type=
"bool" overloaded=
"no"> 
23984         <autodoc>SetLowerDateLimit(DateTime date=DefaultDateTime) -
> bool
</autodoc> 
23985         <docstring>set the range in which selection can occur
</docstring> 
23987           <param name=
"date" type=
"DateTime" default=
"wxDefaultDateTime"/> 
23990       <method name=
"SetUpperDateLimit" type=
"bool" overloaded=
"no"> 
23991         <autodoc>SetUpperDateLimit(DateTime date=DefaultDateTime) -
> bool
</autodoc> 
23992         <docstring>set the range in which selection can occur
</docstring> 
23994           <param name=
"date" type=
"DateTime" default=
"wxDefaultDateTime"/> 
23997       <method name=
"GetLowerDateLimit" type=
"DateTime" overloaded=
"no"> 
23998         <autodoc>GetLowerDateLimit() -
> DateTime
</autodoc> 
23999         <docstring>get the range in which selection can occur
</docstring> 
24001       <method name=
"GetUpperDateLimit" type=
"DateTime" overloaded=
"no"> 
24002         <autodoc>GetUpperDateLimit() -
> DateTime
</autodoc> 
24003         <docstring>get the range in which selection can occur
</docstring> 
24005       <method name=
"SetDateRange" type=
"bool" overloaded=
"no"> 
24006         <autodoc>SetDateRange(DateTime lowerdate=DefaultDateTime, DateTime upperdate=DefaultDateTime) -
> bool
</autodoc> 
24007         <docstring>set the range in which selection can occur
</docstring> 
24009           <param name=
"lowerdate" type=
"DateTime" default=
"wxDefaultDateTime"/> 
24010           <param name=
"upperdate" type=
"DateTime" default=
"wxDefaultDateTime"/> 
24013       <method name=
"EnableYearChange" type=
"" overloaded=
"no"> 
24014         <autodoc>EnableYearChange(bool enable=True)
</autodoc> 
24015         <docstring>This function should be used instead of changing CAL_NO_YEAR_CHANGE
 
24016 style bit directly. It allows or disallows the user to change the year
 
24017 interactively.
</docstring> 
24019           <param name=
"enable" type=
"bool" default=
"True"/> 
24022       <method name=
"EnableMonthChange" type=
"" overloaded=
"no"> 
24023         <autodoc>EnableMonthChange(bool enable=True)
</autodoc> 
24024         <docstring>This function should be used instead of changing CAL_NO_MONTH_CHANGE style
 
24025 bit. It allows or disallows the user to change the month interactively. Note
 
24026 that if the month can not be changed, the year can not be changed either.
</docstring> 
24028           <param name=
"enable" type=
"bool" default=
"True"/> 
24031       <method name=
"EnableHolidayDisplay" type=
"" overloaded=
"no"> 
24032         <autodoc>EnableHolidayDisplay(bool display=True)
</autodoc> 
24033         <docstring>This function should be used instead of changing CAL_SHOW_HOLIDAYS style
 
24034 bit directly. It enables or disables the special highlighting of the holidays.
</docstring> 
24036           <param name=
"display" type=
"bool" default=
"True"/> 
24039       <method name=
"SetHeaderColours" type=
"" overloaded=
"no"> 
24040         <autodoc>SetHeaderColours(Colour colFg, Colour colBg)
</autodoc> 
24041         <docstring>header colours are used for painting the weekdays at the top
</docstring> 
24043           <param name=
"colFg" type=
"Colour" default=
""/> 
24044           <param name=
"colBg" type=
"Colour" default=
""/> 
24047       <method name=
"GetHeaderColourFg" type=
"Colour" overloaded=
"no"> 
24048         <autodoc>GetHeaderColourFg() -
> Colour
</autodoc> 
24049         <docstring>header colours are used for painting the weekdays at the top
</docstring> 
24051       <method name=
"GetHeaderColourBg" type=
"Colour" overloaded=
"no"> 
24052         <autodoc>GetHeaderColourBg() -
> Colour
</autodoc> 
24053         <docstring>header colours are used for painting the weekdays at the top
</docstring> 
24055       <method name=
"SetHighlightColours" type=
"" overloaded=
"no"> 
24056         <autodoc>SetHighlightColours(Colour colFg, Colour colBg)
</autodoc> 
24057         <docstring>highlight colour is used for the currently selected date
</docstring> 
24059           <param name=
"colFg" type=
"Colour" default=
""/> 
24060           <param name=
"colBg" type=
"Colour" default=
""/> 
24063       <method name=
"GetHighlightColourFg" type=
"Colour" overloaded=
"no"> 
24064         <autodoc>GetHighlightColourFg() -
> Colour
</autodoc> 
24065         <docstring>highlight colour is used for the currently selected date
</docstring> 
24067       <method name=
"GetHighlightColourBg" type=
"Colour" overloaded=
"no"> 
24068         <autodoc>GetHighlightColourBg() -
> Colour
</autodoc> 
24069         <docstring>highlight colour is used for the currently selected date
</docstring> 
24071       <method name=
"SetHolidayColours" type=
"" overloaded=
"no"> 
24072         <autodoc>SetHolidayColours(Colour colFg, Colour colBg)
</autodoc> 
24073         <docstring>holiday colour is used for the holidays (if CAL_SHOW_HOLIDAYS style is used)
</docstring> 
24075           <param name=
"colFg" type=
"Colour" default=
""/> 
24076           <param name=
"colBg" type=
"Colour" default=
""/> 
24079       <method name=
"GetHolidayColourFg" type=
"Colour" overloaded=
"no"> 
24080         <autodoc>GetHolidayColourFg() -
> Colour
</autodoc> 
24081         <docstring>holiday colour is used for the holidays (if CAL_SHOW_HOLIDAYS style is used)
</docstring> 
24083       <method name=
"GetHolidayColourBg" type=
"Colour" overloaded=
"no"> 
24084         <autodoc>GetHolidayColourBg() -
> Colour
</autodoc> 
24085         <docstring>holiday colour is used for the holidays (if CAL_SHOW_HOLIDAYS style is used)
</docstring> 
24087       <method name=
"GetAttr" type=
"CalendarDateAttr" overloaded=
"no"> 
24088         <autodoc>GetAttr(size_t day) -
> CalendarDateAttr
</autodoc> 
24089         <docstring>Returns the attribute for the given date (should be in the range 
1..
.31).
 
24090 The returned value may be None
</docstring> 
24092           <param name=
"day" type=
"size_t" default=
""/> 
24095       <method name=
"SetAttr" type=
"" overloaded=
"no"> 
24096         <autodoc>SetAttr(size_t day, CalendarDateAttr attr)
</autodoc> 
24097         <docstring>Associates the attribute with the specified date (in the range 
1..
.31).
 
24098 If the attribute passed is None, the items attribute is cleared.
</docstring> 
24100           <param name=
"day" type=
"size_t" default=
""/> 
24101           <param name=
"attr" type=
"CalendarDateAttr" default=
""/> 
24104       <method name=
"SetHoliday" type=
"" overloaded=
"no"> 
24105         <autodoc>SetHoliday(size_t day)
</autodoc> 
24106         <docstring>Marks the specified day as being a holiday in the current month.
</docstring> 
24108           <param name=
"day" type=
"size_t" default=
""/> 
24111       <method name=
"ResetAttr" type=
"" overloaded=
"no"> 
24112         <autodoc>ResetAttr(size_t day)
</autodoc> 
24113         <docstring>Clears any attributes associated with the given day (in the range 
1..
.31).
</docstring> 
24115           <param name=
"day" type=
"size_t" default=
""/> 
24118       <method name=
"HitTest" type=
"PyObject" overloaded=
"no"> 
24119         <autodoc>HitTest(Point pos) -
> (result, date, weekday)
</autodoc> 
24120         <docstring>Returns 
3-tuple with information about the given position on the calendar
 
24121 control.  The first value of the tuple is a result code and determines the
 
24122 validity of the remaining two values.  The result codes are:
 
24124     CAL_HITTEST_NOWHERE:    hit outside of anything
 
24125     CAL_HITTEST_HEADER:     hit on the header, weekday is valid
 
24126     CAL_HITTEST_DAY:        hit on a day in the calendar, date is set.
 
24129           <param name=
"pos" type=
"Point" default=
""/> 
24132       <method name=
"GetMonthControl" type=
"Control" overloaded=
"no"> 
24133         <autodoc>GetMonthControl() -
> Control
</autodoc> 
24134         <docstring>get the currently shown control for month
</docstring> 
24136       <method name=
"GetYearControl" type=
"Control" overloaded=
"no"> 
24137         <autodoc>GetYearControl() -
> Control
</autodoc> 
24138         <docstring>get the currently shown control for year
</docstring> 
24142   <module name=
"grid"> 
24143     <import name=
"windows"/> 
24144     <pythoncode> wx = core 
</pythoncode> 
24145     <class name=
"GridCellRenderer" oldname=
"wxGridCellRenderer" module=
"grid"> 
24146       <method name=
"_setOORInfo" type=
"" overloaded=
"no"> 
24147         <autodoc>_setOORInfo(PyObject _self)
</autodoc> 
24149           <param name=
"_self" type=
"PyObject" default=
""/> 
24152       <method name=
"SetParameters" type=
"" overloaded=
"no"> 
24153         <autodoc>SetParameters(String params)
</autodoc> 
24155           <param name=
"params" type=
"String" default=
""/> 
24158       <method name=
"IncRef" type=
"" overloaded=
"no"> 
24159         <autodoc>IncRef()
</autodoc> 
24161       <method name=
"DecRef" type=
"" overloaded=
"no"> 
24162         <autodoc>DecRef()
</autodoc> 
24164       <method name=
"Draw" type=
"" overloaded=
"no"> 
24165         <autodoc>Draw(Grid grid, GridCellAttr attr, DC dc, Rect rect, int row, 
 
24166     int col, bool isSelected)
</autodoc> 
24168           <param name=
"grid" type=
"wxGrid" default=
""/> 
24169           <param name=
"attr" type=
"wxGridCellAttr" default=
""/> 
24170           <param name=
"dc" type=
"DC" default=
""/> 
24171           <param name=
"rect" type=
"Rect" default=
""/> 
24172           <param name=
"row" type=
"int" default=
""/> 
24173           <param name=
"col" type=
"int" default=
""/> 
24174           <param name=
"isSelected" type=
"bool" default=
""/> 
24177       <method name=
"GetBestSize" type=
"Size" overloaded=
"no"> 
24178         <autodoc>GetBestSize(Grid grid, GridCellAttr attr, DC dc, int row, int col) -
> Size
</autodoc> 
24180           <param name=
"grid" type=
"wxGrid" default=
""/> 
24181           <param name=
"attr" type=
"wxGridCellAttr" default=
""/> 
24182           <param name=
"dc" type=
"DC" default=
""/> 
24183           <param name=
"row" type=
"int" default=
""/> 
24184           <param name=
"col" type=
"int" default=
""/> 
24187       <method name=
"Clone" type=
"GridCellRenderer" overloaded=
"no"> 
24188         <autodoc>Clone() -
> GridCellRenderer
</autodoc> 
24191     <class name=
"PyGridCellRenderer" oldname=
"wxPyGridCellRenderer" module=
"grid"> 
24192       <baseclass name=
"GridCellRenderer"/> 
24193       <constructor name=
"PyGridCellRenderer" overloaded=
"no"> 
24194         <autodoc>__init__() -
> PyGridCellRenderer
</autodoc> 
24196       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
24197         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
24199           <param name=
"self" type=
"PyObject" default=
""/> 
24200           <param name=
"_class" type=
"PyObject" default=
""/> 
24203       <method name=
"base_SetParameters" type=
"" overloaded=
"no"> 
24204         <autodoc>base_SetParameters(String params)
</autodoc> 
24206           <param name=
"params" type=
"String" default=
""/> 
24210     <class name=
"GridCellStringRenderer" oldname=
"wxGridCellStringRenderer" module=
"grid"> 
24211       <baseclass name=
"GridCellRenderer"/> 
24212       <constructor name=
"GridCellStringRenderer" overloaded=
"no"> 
24213         <autodoc>__init__() -
> GridCellStringRenderer
</autodoc> 
24216     <class name=
"GridCellNumberRenderer" oldname=
"wxGridCellNumberRenderer" module=
"grid"> 
24217       <baseclass name=
"GridCellStringRenderer"/> 
24218       <constructor name=
"GridCellNumberRenderer" overloaded=
"no"> 
24219         <autodoc>__init__() -
> GridCellNumberRenderer
</autodoc> 
24222     <class name=
"GridCellFloatRenderer" oldname=
"wxGridCellFloatRenderer" module=
"grid"> 
24223       <baseclass name=
"GridCellStringRenderer"/> 
24224       <constructor name=
"GridCellFloatRenderer" overloaded=
"no"> 
24225         <autodoc>__init__(int width=-
1, int precision=-
1) -
> GridCellFloatRenderer
</autodoc> 
24227           <param name=
"width" type=
"int" default=
"-1"/> 
24228           <param name=
"precision" type=
"int" default=
"-1"/> 
24231       <method name=
"GetWidth" type=
"int" overloaded=
"no"> 
24232         <autodoc>GetWidth() -
> int
</autodoc> 
24234       <method name=
"SetWidth" type=
"" overloaded=
"no"> 
24235         <autodoc>SetWidth(int width)
</autodoc> 
24237           <param name=
"width" type=
"int" default=
""/> 
24240       <method name=
"GetPrecision" type=
"int" overloaded=
"no"> 
24241         <autodoc>GetPrecision() -
> int
</autodoc> 
24243       <method name=
"SetPrecision" type=
"" overloaded=
"no"> 
24244         <autodoc>SetPrecision(int precision)
</autodoc> 
24246           <param name=
"precision" type=
"int" default=
""/> 
24250     <class name=
"GridCellBoolRenderer" oldname=
"wxGridCellBoolRenderer" module=
"grid"> 
24251       <baseclass name=
"GridCellRenderer"/> 
24252       <constructor name=
"GridCellBoolRenderer" overloaded=
"no"> 
24253         <autodoc>__init__() -
> GridCellBoolRenderer
</autodoc> 
24256     <class name=
"GridCellDateTimeRenderer" oldname=
"wxGridCellDateTimeRenderer" module=
"grid"> 
24257       <baseclass name=
"GridCellStringRenderer"/> 
24258       <constructor name=
"GridCellDateTimeRenderer" overloaded=
"no"> 
24259         <autodoc>__init__(String outformat=DateTimeFormatStr, String informat=DateTimeFormatStr) -
> GridCellDateTimeRenderer
</autodoc> 
24261           <param name=
"outformat" type=
"String" default=
"wxPyDateTimeFormatStr"/> 
24262           <param name=
"informat" type=
"String" default=
"wxPyDateTimeFormatStr"/> 
24266     <class name=
"GridCellEnumRenderer" oldname=
"wxGridCellEnumRenderer" module=
"grid"> 
24267       <baseclass name=
"GridCellStringRenderer"/> 
24268       <constructor name=
"GridCellEnumRenderer" overloaded=
"no"> 
24269         <autodoc>__init__(String choices=EmptyString) -
> GridCellEnumRenderer
</autodoc> 
24271           <param name=
"choices" type=
"String" default=
"wxPyEmptyString"/> 
24275     <class name=
"GridCellAutoWrapStringRenderer" oldname=
"wxGridCellAutoWrapStringRenderer" module=
"grid"> 
24276       <baseclass name=
"GridCellStringRenderer"/> 
24277       <constructor name=
"GridCellAutoWrapStringRenderer" overloaded=
"no"> 
24278         <autodoc>__init__() -
> GridCellAutoWrapStringRenderer
</autodoc> 
24281     <class name=
"GridCellEditor" oldname=
"wxGridCellEditor" module=
"grid"> 
24282       <method name=
"_setOORInfo" type=
"" overloaded=
"no"> 
24283         <autodoc>_setOORInfo(PyObject _self)
</autodoc> 
24285           <param name=
"_self" type=
"PyObject" default=
""/> 
24288       <method name=
"IsCreated" type=
"bool" overloaded=
"no"> 
24289         <autodoc>IsCreated() -
> bool
</autodoc> 
24291       <method name=
"GetControl" type=
"Control" overloaded=
"no"> 
24292         <autodoc>GetControl() -
> Control
</autodoc> 
24294       <method name=
"SetControl" type=
"" overloaded=
"no"> 
24295         <autodoc>SetControl(Control control)
</autodoc> 
24297           <param name=
"control" type=
"Control" default=
""/> 
24300       <method name=
"GetCellAttr" type=
"wxGridCellAttr" overloaded=
"no"> 
24301         <autodoc>GetCellAttr() -
> GridCellAttr
</autodoc> 
24303       <method name=
"SetCellAttr" type=
"" overloaded=
"no"> 
24304         <autodoc>SetCellAttr(GridCellAttr attr)
</autodoc> 
24306           <param name=
"attr" type=
"wxGridCellAttr" default=
""/> 
24309       <method name=
"SetParameters" type=
"" overloaded=
"no"> 
24310         <autodoc>SetParameters(String params)
</autodoc> 
24312           <param name=
"params" type=
"String" default=
""/> 
24315       <method name=
"IncRef" type=
"" overloaded=
"no"> 
24316         <autodoc>IncRef()
</autodoc> 
24318       <method name=
"DecRef" type=
"" overloaded=
"no"> 
24319         <autodoc>DecRef()
</autodoc> 
24321       <method name=
"Create" type=
"" overloaded=
"no"> 
24322         <autodoc>Create(Window parent, int id, EvtHandler evtHandler)
</autodoc> 
24324           <param name=
"parent" type=
"Window" default=
""/> 
24325           <param name=
"id" type=
"int" default=
""/> 
24326           <param name=
"evtHandler" type=
"EvtHandler" default=
""/> 
24329       <method name=
"BeginEdit" type=
"" overloaded=
"no"> 
24330         <autodoc>BeginEdit(int row, int col, Grid grid)
</autodoc> 
24332           <param name=
"row" type=
"int" default=
""/> 
24333           <param name=
"col" type=
"int" default=
""/> 
24334           <param name=
"grid" type=
"wxGrid" default=
""/> 
24337       <method name=
"EndEdit" type=
"bool" overloaded=
"no"> 
24338         <autodoc>EndEdit(int row, int col, Grid grid) -
> bool
</autodoc> 
24340           <param name=
"row" type=
"int" default=
""/> 
24341           <param name=
"col" type=
"int" default=
""/> 
24342           <param name=
"grid" type=
"wxGrid" default=
""/> 
24345       <method name=
"Reset" type=
"" overloaded=
"no"> 
24346         <autodoc>Reset()
</autodoc> 
24348       <method name=
"Clone" type=
"GridCellEditor" overloaded=
"no"> 
24349         <autodoc>Clone() -
> GridCellEditor
</autodoc> 
24351       <method name=
"SetSize" type=
"" overloaded=
"no"> 
24352         <autodoc>SetSize(Rect rect)
</autodoc> 
24354           <param name=
"rect" type=
"Rect" default=
""/> 
24357       <method name=
"Show" type=
"" overloaded=
"no"> 
24358         <autodoc>Show(bool show, GridCellAttr attr=None)
</autodoc> 
24360           <param name=
"show" type=
"bool" default=
""/> 
24361           <param name=
"attr" type=
"wxGridCellAttr" default=
"NULL"/> 
24364       <method name=
"PaintBackground" type=
"" overloaded=
"no"> 
24365         <autodoc>PaintBackground(Rect rectCell, GridCellAttr attr)
</autodoc> 
24367           <param name=
"rectCell" type=
"Rect" default=
""/> 
24368           <param name=
"attr" type=
"wxGridCellAttr" default=
""/> 
24371       <method name=
"IsAcceptedKey" type=
"bool" overloaded=
"no"> 
24372         <autodoc>IsAcceptedKey(KeyEvent event) -
> bool
</autodoc> 
24374           <param name=
"event" type=
"KeyEvent" default=
""/> 
24377       <method name=
"StartingKey" type=
"" overloaded=
"no"> 
24378         <autodoc>StartingKey(KeyEvent event)
</autodoc> 
24380           <param name=
"event" type=
"KeyEvent" default=
""/> 
24383       <method name=
"StartingClick" type=
"" overloaded=
"no"> 
24384         <autodoc>StartingClick()
</autodoc> 
24386       <method name=
"HandleReturn" type=
"" overloaded=
"no"> 
24387         <autodoc>HandleReturn(KeyEvent event)
</autodoc> 
24389           <param name=
"event" type=
"KeyEvent" default=
""/> 
24392       <method name=
"Destroy" type=
"" overloaded=
"no"> 
24393         <autodoc>Destroy()
</autodoc> 
24396     <class name=
"PyGridCellEditor" oldname=
"wxPyGridCellEditor" module=
"grid"> 
24397       <baseclass name=
"GridCellEditor"/> 
24398       <constructor name=
"PyGridCellEditor" overloaded=
"no"> 
24399         <autodoc>__init__() -
> PyGridCellEditor
</autodoc> 
24401       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
24402         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
24404           <param name=
"self" type=
"PyObject" default=
""/> 
24405           <param name=
"_class" type=
"PyObject" default=
""/> 
24408       <method name=
"base_SetSize" type=
"" overloaded=
"no"> 
24409         <autodoc>base_SetSize(Rect rect)
</autodoc> 
24411           <param name=
"rect" type=
"Rect" default=
""/> 
24414       <method name=
"base_Show" type=
"" overloaded=
"no"> 
24415         <autodoc>base_Show(bool show, GridCellAttr attr=None)
</autodoc> 
24417           <param name=
"show" type=
"bool" default=
""/> 
24418           <param name=
"attr" type=
"wxGridCellAttr" default=
"NULL"/> 
24421       <method name=
"base_PaintBackground" type=
"" overloaded=
"no"> 
24422         <autodoc>base_PaintBackground(Rect rectCell, GridCellAttr attr)
</autodoc> 
24424           <param name=
"rectCell" type=
"Rect" default=
""/> 
24425           <param name=
"attr" type=
"wxGridCellAttr" default=
""/> 
24428       <method name=
"base_IsAcceptedKey" type=
"bool" overloaded=
"no"> 
24429         <autodoc>base_IsAcceptedKey(KeyEvent event) -
> bool
</autodoc> 
24431           <param name=
"event" type=
"KeyEvent" default=
""/> 
24434       <method name=
"base_StartingKey" type=
"" overloaded=
"no"> 
24435         <autodoc>base_StartingKey(KeyEvent event)
</autodoc> 
24437           <param name=
"event" type=
"KeyEvent" default=
""/> 
24440       <method name=
"base_StartingClick" type=
"" overloaded=
"no"> 
24441         <autodoc>base_StartingClick()
</autodoc> 
24443       <method name=
"base_HandleReturn" type=
"" overloaded=
"no"> 
24444         <autodoc>base_HandleReturn(KeyEvent event)
</autodoc> 
24446           <param name=
"event" type=
"KeyEvent" default=
""/> 
24449       <method name=
"base_Destroy" type=
"" overloaded=
"no"> 
24450         <autodoc>base_Destroy()
</autodoc> 
24452       <method name=
"base_SetParameters" type=
"" overloaded=
"no"> 
24453         <autodoc>base_SetParameters(String params)
</autodoc> 
24455           <param name=
"params" type=
"String" default=
""/> 
24459     <class name=
"GridCellTextEditor" oldname=
"wxGridCellTextEditor" module=
"grid"> 
24460       <baseclass name=
"GridCellEditor"/> 
24461       <constructor name=
"GridCellTextEditor" overloaded=
"no"> 
24462         <autodoc>__init__() -
> GridCellTextEditor
</autodoc> 
24464       <method name=
"GetValue" type=
"String" overloaded=
"no"> 
24465         <autodoc>GetValue() -
> String
</autodoc> 
24468     <class name=
"GridCellNumberEditor" oldname=
"wxGridCellNumberEditor" module=
"grid"> 
24469       <baseclass name=
"GridCellTextEditor"/> 
24470       <constructor name=
"GridCellNumberEditor" overloaded=
"no"> 
24471         <autodoc>__init__(int min=-
1, int max=-
1) -
> GridCellNumberEditor
</autodoc> 
24473           <param name=
"min" type=
"int" default=
"-1"/> 
24474           <param name=
"max" type=
"int" default=
"-1"/> 
24477       <method name=
"GetValue" type=
"String" overloaded=
"no"> 
24478         <autodoc>GetValue() -
> String
</autodoc> 
24481     <class name=
"GridCellFloatEditor" oldname=
"wxGridCellFloatEditor" module=
"grid"> 
24482       <baseclass name=
"GridCellTextEditor"/> 
24483       <constructor name=
"GridCellFloatEditor" overloaded=
"no"> 
24484         <autodoc>__init__() -
> GridCellFloatEditor
</autodoc> 
24486       <method name=
"GetValue" type=
"String" overloaded=
"no"> 
24487         <autodoc>GetValue() -
> String
</autodoc> 
24490     <class name=
"GridCellBoolEditor" oldname=
"wxGridCellBoolEditor" module=
"grid"> 
24491       <baseclass name=
"GridCellEditor"/> 
24492       <constructor name=
"GridCellBoolEditor" overloaded=
"no"> 
24493         <autodoc>__init__() -
> GridCellBoolEditor
</autodoc> 
24495       <method name=
"GetValue" type=
"String" overloaded=
"no"> 
24496         <autodoc>GetValue() -
> String
</autodoc> 
24499     <class name=
"GridCellChoiceEditor" oldname=
"wxGridCellChoiceEditor" module=
"grid"> 
24500       <baseclass name=
"GridCellEditor"/> 
24501       <constructor name=
"GridCellChoiceEditor" overloaded=
"no"> 
24502         <autodoc>__init__(int choices=
0, String choices_array=None, bool allowOthers=False) -
> GridCellChoiceEditor
</autodoc> 
24504           <param name=
"choices" type=
"int" default=
"0"/> 
24505           <param name=
"choices_array" type=
"String" default=
"NULL"/> 
24506           <param name=
"allowOthers" type=
"bool" default=
"False"/> 
24509       <method name=
"GetValue" type=
"String" overloaded=
"no"> 
24510         <autodoc>GetValue() -
> String
</autodoc> 
24513     <class name=
"GridCellEnumEditor" oldname=
"wxGridCellEnumEditor" module=
"grid"> 
24514       <baseclass name=
"GridCellChoiceEditor"/> 
24515       <constructor name=
"GridCellEnumEditor" overloaded=
"no"> 
24516         <autodoc>__init__(String choices=EmptyString) -
> GridCellEnumEditor
</autodoc> 
24518           <param name=
"choices" type=
"String" default=
"wxPyEmptyString"/> 
24521       <method name=
"GetValue" type=
"String" overloaded=
"no"> 
24522         <autodoc>GetValue() -
> String
</autodoc> 
24525     <class name=
"GridCellAutoWrapStringEditor" oldname=
"wxGridCellAutoWrapStringEditor" module=
"grid"> 
24526       <baseclass name=
"GridCellTextEditor"/> 
24527       <constructor name=
"GridCellAutoWrapStringEditor" overloaded=
"no"> 
24528         <autodoc>__init__() -
> GridCellAutoWrapStringEditor
</autodoc> 
24530       <method name=
"GetValue" type=
"String" overloaded=
"no"> 
24531         <autodoc>GetValue() -
> String
</autodoc> 
24534     <class name=
"GridCellAttr" oldname=
"wxGridCellAttr" module=
"grid"> 
24535       <constructor name=
"GridCellAttr" overloaded=
"no"> 
24536         <autodoc>__init__(GridCellAttr attrDefault=None) -
> GridCellAttr
</autodoc> 
24538           <param name=
"attrDefault" type=
"GridCellAttr" default=
"NULL"/> 
24541       <method name=
"_setOORInfo" type=
"" overloaded=
"no"> 
24542         <autodoc>_setOORInfo(PyObject _self)
</autodoc> 
24544           <param name=
"_self" type=
"PyObject" default=
""/> 
24547       <method name=
"Clone" type=
"GridCellAttr" overloaded=
"no"> 
24548         <autodoc>Clone() -
> GridCellAttr
</autodoc> 
24550       <method name=
"MergeWith" type=
"" overloaded=
"no"> 
24551         <autodoc>MergeWith(GridCellAttr mergefrom)
</autodoc> 
24553           <param name=
"mergefrom" type=
"GridCellAttr" default=
""/> 
24556       <method name=
"IncRef" type=
"" overloaded=
"no"> 
24557         <autodoc>IncRef()
</autodoc> 
24559       <method name=
"DecRef" type=
"" overloaded=
"no"> 
24560         <autodoc>DecRef()
</autodoc> 
24562       <method name=
"SetTextColour" type=
"" overloaded=
"no"> 
24563         <autodoc>SetTextColour(Colour colText)
</autodoc> 
24565           <param name=
"colText" type=
"Colour" default=
""/> 
24568       <method name=
"SetBackgroundColour" type=
"" overloaded=
"no"> 
24569         <autodoc>SetBackgroundColour(Colour colBack)
</autodoc> 
24571           <param name=
"colBack" type=
"Colour" default=
""/> 
24574       <method name=
"SetFont" type=
"" overloaded=
"no"> 
24575         <autodoc>SetFont(Font font)
</autodoc> 
24577           <param name=
"font" type=
"Font" default=
""/> 
24580       <method name=
"SetAlignment" type=
"" overloaded=
"no"> 
24581         <autodoc>SetAlignment(int hAlign, int vAlign)
</autodoc> 
24583           <param name=
"hAlign" type=
"int" default=
""/> 
24584           <param name=
"vAlign" type=
"int" default=
""/> 
24587       <method name=
"SetSize" type=
"" overloaded=
"no"> 
24588         <autodoc>SetSize(int num_rows, int num_cols)
</autodoc> 
24590           <param name=
"num_rows" type=
"int" default=
""/> 
24591           <param name=
"num_cols" type=
"int" default=
""/> 
24594       <method name=
"SetOverflow" type=
"" overloaded=
"no"> 
24595         <autodoc>SetOverflow(bool allow=True)
</autodoc> 
24597           <param name=
"allow" type=
"bool" default=
"True"/> 
24600       <method name=
"SetReadOnly" type=
"" overloaded=
"no"> 
24601         <autodoc>SetReadOnly(bool isReadOnly=True)
</autodoc> 
24603           <param name=
"isReadOnly" type=
"bool" default=
"True"/> 
24606       <method name=
"SetRenderer" type=
"" overloaded=
"no"> 
24607         <autodoc>SetRenderer(GridCellRenderer renderer)
</autodoc> 
24609           <param name=
"renderer" type=
"GridCellRenderer" default=
""/> 
24612       <method name=
"SetEditor" type=
"" overloaded=
"no"> 
24613         <autodoc>SetEditor(GridCellEditor editor)
</autodoc> 
24615           <param name=
"editor" type=
"GridCellEditor" default=
""/> 
24618       <method name=
"SetKind" type=
"" overloaded=
"no"> 
24619         <autodoc>SetKind(int kind)
</autodoc> 
24621           <param name=
"kind" type=
"wxGridCellAttr::wxAttrKind" default=
""/> 
24624       <method name=
"HasTextColour" type=
"bool" overloaded=
"no"> 
24625         <autodoc>HasTextColour() -
> bool
</autodoc> 
24627       <method name=
"HasBackgroundColour" type=
"bool" overloaded=
"no"> 
24628         <autodoc>HasBackgroundColour() -
> bool
</autodoc> 
24630       <method name=
"HasFont" type=
"bool" overloaded=
"no"> 
24631         <autodoc>HasFont() -
> bool
</autodoc> 
24633       <method name=
"HasAlignment" type=
"bool" overloaded=
"no"> 
24634         <autodoc>HasAlignment() -
> bool
</autodoc> 
24636       <method name=
"HasRenderer" type=
"bool" overloaded=
"no"> 
24637         <autodoc>HasRenderer() -
> bool
</autodoc> 
24639       <method name=
"HasEditor" type=
"bool" overloaded=
"no"> 
24640         <autodoc>HasEditor() -
> bool
</autodoc> 
24642       <method name=
"HasReadWriteMode" type=
"bool" overloaded=
"no"> 
24643         <autodoc>HasReadWriteMode() -
> bool
</autodoc> 
24645       <method name=
"HasOverflowMode" type=
"bool" overloaded=
"no"> 
24646         <autodoc>HasOverflowMode() -
> bool
</autodoc> 
24648       <method name=
"GetTextColour" type=
"Colour" overloaded=
"no"> 
24649         <autodoc>GetTextColour() -
> Colour
</autodoc> 
24651       <method name=
"GetBackgroundColour" type=
"Colour" overloaded=
"no"> 
24652         <autodoc>GetBackgroundColour() -
> Colour
</autodoc> 
24654       <method name=
"GetFont" type=
"Font" overloaded=
"no"> 
24655         <autodoc>GetFont() -
> Font
</autodoc> 
24657       <method name=
"GetAlignment" type=
"" overloaded=
"no"> 
24658         <autodoc>GetAlignment() -
> (hAlign, vAlign)
</autodoc> 
24660           <param name=
"OUTPUT" type=
"int" default=
""/> 
24661           <param name=
"OUTPUT" type=
"int" default=
""/> 
24664       <method name=
"GetSize" type=
"" overloaded=
"no"> 
24665         <autodoc>GetSize() -
> (num_rows, num_cols)
</autodoc> 
24667           <param name=
"OUTPUT" type=
"int" default=
""/> 
24668           <param name=
"OUTPUT" type=
"int" default=
""/> 
24671       <method name=
"GetOverflow" type=
"bool" overloaded=
"no"> 
24672         <autodoc>GetOverflow() -
> bool
</autodoc> 
24674       <method name=
"GetRenderer" type=
"GridCellRenderer" overloaded=
"no"> 
24675         <autodoc>GetRenderer(Grid grid, int row, int col) -
> GridCellRenderer
</autodoc> 
24677           <param name=
"grid" type=
"wxGrid" default=
""/> 
24678           <param name=
"row" type=
"int" default=
""/> 
24679           <param name=
"col" type=
"int" default=
""/> 
24682       <method name=
"GetEditor" type=
"GridCellEditor" overloaded=
"no"> 
24683         <autodoc>GetEditor(Grid grid, int row, int col) -
> GridCellEditor
</autodoc> 
24685           <param name=
"grid" type=
"wxGrid" default=
""/> 
24686           <param name=
"row" type=
"int" default=
""/> 
24687           <param name=
"col" type=
"int" default=
""/> 
24690       <method name=
"IsReadOnly" type=
"bool" overloaded=
"no"> 
24691         <autodoc>IsReadOnly() -
> bool
</autodoc> 
24693       <method name=
"SetDefAttr" type=
"" overloaded=
"no"> 
24694         <autodoc>SetDefAttr(GridCellAttr defAttr)
</autodoc> 
24696           <param name=
"defAttr" type=
"GridCellAttr" default=
""/> 
24700     <class name=
"GridCellAttrProvider" oldname=
"wxGridCellAttrProvider" module=
"grid"> 
24701       <constructor name=
"GridCellAttrProvider" overloaded=
"no"> 
24702         <autodoc>__init__() -
> GridCellAttrProvider
</autodoc> 
24704       <method name=
"_setOORInfo" type=
"" overloaded=
"no"> 
24705         <autodoc>_setOORInfo(PyObject _self)
</autodoc> 
24707           <param name=
"_self" type=
"PyObject" default=
""/> 
24710       <method name=
"GetAttr" type=
"GridCellAttr" overloaded=
"no"> 
24711         <autodoc>GetAttr(int row, int col, int kind) -
> GridCellAttr
</autodoc> 
24713           <param name=
"row" type=
"int" default=
""/> 
24714           <param name=
"col" type=
"int" default=
""/> 
24715           <param name=
"kind" type=
"wxGridCellAttr::wxAttrKind" default=
""/> 
24718       <method name=
"SetAttr" type=
"" overloaded=
"no"> 
24719         <autodoc>SetAttr(GridCellAttr attr, int row, int col)
</autodoc> 
24721           <param name=
"attr" type=
"GridCellAttr" default=
""/> 
24722           <param name=
"row" type=
"int" default=
""/> 
24723           <param name=
"col" type=
"int" default=
""/> 
24726       <method name=
"SetRowAttr" type=
"" overloaded=
"no"> 
24727         <autodoc>SetRowAttr(GridCellAttr attr, int row)
</autodoc> 
24729           <param name=
"attr" type=
"GridCellAttr" default=
""/> 
24730           <param name=
"row" type=
"int" default=
""/> 
24733       <method name=
"SetColAttr" type=
"" overloaded=
"no"> 
24734         <autodoc>SetColAttr(GridCellAttr attr, int col)
</autodoc> 
24736           <param name=
"attr" type=
"GridCellAttr" default=
""/> 
24737           <param name=
"col" type=
"int" default=
""/> 
24740       <method name=
"UpdateAttrRows" type=
"" overloaded=
"no"> 
24741         <autodoc>UpdateAttrRows(size_t pos, int numRows)
</autodoc> 
24743           <param name=
"pos" type=
"size_t" default=
""/> 
24744           <param name=
"numRows" type=
"int" default=
""/> 
24747       <method name=
"UpdateAttrCols" type=
"" overloaded=
"no"> 
24748         <autodoc>UpdateAttrCols(size_t pos, int numCols)
</autodoc> 
24750           <param name=
"pos" type=
"size_t" default=
""/> 
24751           <param name=
"numCols" type=
"int" default=
""/> 
24755     <class name=
"PyGridCellAttrProvider" oldname=
"wxPyGridCellAttrProvider" module=
"grid"> 
24756       <baseclass name=
"GridCellAttrProvider"/> 
24757       <constructor name=
"PyGridCellAttrProvider" overloaded=
"no"> 
24758         <autodoc>__init__() -
> PyGridCellAttrProvider
</autodoc> 
24760       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
24761         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
24763           <param name=
"self" type=
"PyObject" default=
""/> 
24764           <param name=
"_class" type=
"PyObject" default=
""/> 
24767       <method name=
"base_GetAttr" type=
"GridCellAttr" overloaded=
"no"> 
24768         <autodoc>base_GetAttr(int row, int col, int kind) -
> GridCellAttr
</autodoc> 
24770           <param name=
"row" type=
"int" default=
""/> 
24771           <param name=
"col" type=
"int" default=
""/> 
24772           <param name=
"kind" type=
"wxGridCellAttr::wxAttrKind" default=
""/> 
24775       <method name=
"base_SetAttr" type=
"" overloaded=
"no"> 
24776         <autodoc>base_SetAttr(GridCellAttr attr, int row, int col)
</autodoc> 
24778           <param name=
"attr" type=
"GridCellAttr" default=
""/> 
24779           <param name=
"row" type=
"int" default=
""/> 
24780           <param name=
"col" type=
"int" default=
""/> 
24783       <method name=
"base_SetRowAttr" type=
"" overloaded=
"no"> 
24784         <autodoc>base_SetRowAttr(GridCellAttr attr, int row)
</autodoc> 
24786           <param name=
"attr" type=
"GridCellAttr" default=
""/> 
24787           <param name=
"row" type=
"int" default=
""/> 
24790       <method name=
"base_SetColAttr" type=
"" overloaded=
"no"> 
24791         <autodoc>base_SetColAttr(GridCellAttr attr, int col)
</autodoc> 
24793           <param name=
"attr" type=
"GridCellAttr" default=
""/> 
24794           <param name=
"col" type=
"int" default=
""/> 
24798     <class name=
"GridTableBase" oldname=
"wxGridTableBase" module=
"grid"> 
24799       <baseclass name=
"Object"/> 
24800       <method name=
"_setOORInfo" type=
"" overloaded=
"no"> 
24801         <autodoc>_setOORInfo(PyObject _self)
</autodoc> 
24803           <param name=
"_self" type=
"PyObject" default=
""/> 
24806       <method name=
"SetAttrProvider" type=
"" overloaded=
"no"> 
24807         <autodoc>SetAttrProvider(GridCellAttrProvider attrProvider)
</autodoc> 
24809           <param name=
"attrProvider" type=
"GridCellAttrProvider" default=
""/> 
24812       <method name=
"GetAttrProvider" type=
"GridCellAttrProvider" overloaded=
"no"> 
24813         <autodoc>GetAttrProvider() -
> GridCellAttrProvider
</autodoc> 
24815       <method name=
"SetView" type=
"" overloaded=
"no"> 
24816         <autodoc>SetView(Grid grid)
</autodoc> 
24818           <param name=
"grid" type=
"wxGrid" default=
""/> 
24821       <method name=
"GetView" type=
"wxGrid" overloaded=
"no"> 
24822         <autodoc>GetView() -
> Grid
</autodoc> 
24824       <method name=
"GetNumberRows" type=
"int" overloaded=
"no"> 
24825         <autodoc>GetNumberRows() -
> int
</autodoc> 
24827       <method name=
"GetNumberCols" type=
"int" overloaded=
"no"> 
24828         <autodoc>GetNumberCols() -
> int
</autodoc> 
24830       <method name=
"IsEmptyCell" type=
"bool" overloaded=
"no"> 
24831         <autodoc>IsEmptyCell(int row, int col) -
> bool
</autodoc> 
24833           <param name=
"row" type=
"int" default=
""/> 
24834           <param name=
"col" type=
"int" default=
""/> 
24837       <method name=
"GetValue" type=
"String" overloaded=
"no"> 
24838         <autodoc>GetValue(int row, int col) -
> String
</autodoc> 
24840           <param name=
"row" type=
"int" default=
""/> 
24841           <param name=
"col" type=
"int" default=
""/> 
24844       <method name=
"SetValue" type=
"" overloaded=
"no"> 
24845         <autodoc>SetValue(int row, int col, String value)
</autodoc> 
24847           <param name=
"row" type=
"int" default=
""/> 
24848           <param name=
"col" type=
"int" default=
""/> 
24849           <param name=
"value" type=
"String" default=
""/> 
24852       <method name=
"GetTypeName" type=
"String" overloaded=
"no"> 
24853         <autodoc>GetTypeName(int row, int col) -
> String
</autodoc> 
24855           <param name=
"row" type=
"int" default=
""/> 
24856           <param name=
"col" type=
"int" default=
""/> 
24859       <method name=
"CanGetValueAs" type=
"bool" overloaded=
"no"> 
24860         <autodoc>CanGetValueAs(int row, int col, String typeName) -
> bool
</autodoc> 
24862           <param name=
"row" type=
"int" default=
""/> 
24863           <param name=
"col" type=
"int" default=
""/> 
24864           <param name=
"typeName" type=
"String" default=
""/> 
24867       <method name=
"CanSetValueAs" type=
"bool" overloaded=
"no"> 
24868         <autodoc>CanSetValueAs(int row, int col, String typeName) -
> bool
</autodoc> 
24870           <param name=
"row" type=
"int" default=
""/> 
24871           <param name=
"col" type=
"int" default=
""/> 
24872           <param name=
"typeName" type=
"String" default=
""/> 
24875       <method name=
"GetValueAsLong" type=
"long" overloaded=
"no"> 
24876         <autodoc>GetValueAsLong(int row, int col) -
> long
</autodoc> 
24878           <param name=
"row" type=
"int" default=
""/> 
24879           <param name=
"col" type=
"int" default=
""/> 
24882       <method name=
"GetValueAsDouble" type=
"double" overloaded=
"no"> 
24883         <autodoc>GetValueAsDouble(int row, int col) -
> double
</autodoc> 
24885           <param name=
"row" type=
"int" default=
""/> 
24886           <param name=
"col" type=
"int" default=
""/> 
24889       <method name=
"GetValueAsBool" type=
"bool" overloaded=
"no"> 
24890         <autodoc>GetValueAsBool(int row, int col) -
> bool
</autodoc> 
24892           <param name=
"row" type=
"int" default=
""/> 
24893           <param name=
"col" type=
"int" default=
""/> 
24896       <method name=
"SetValueAsLong" type=
"" overloaded=
"no"> 
24897         <autodoc>SetValueAsLong(int row, int col, long value)
</autodoc> 
24899           <param name=
"row" type=
"int" default=
""/> 
24900           <param name=
"col" type=
"int" default=
""/> 
24901           <param name=
"value" type=
"long" default=
""/> 
24904       <method name=
"SetValueAsDouble" type=
"" overloaded=
"no"> 
24905         <autodoc>SetValueAsDouble(int row, int col, double value)
</autodoc> 
24907           <param name=
"row" type=
"int" default=
""/> 
24908           <param name=
"col" type=
"int" default=
""/> 
24909           <param name=
"value" type=
"double" default=
""/> 
24912       <method name=
"SetValueAsBool" type=
"" overloaded=
"no"> 
24913         <autodoc>SetValueAsBool(int row, int col, bool value)
</autodoc> 
24915           <param name=
"row" type=
"int" default=
""/> 
24916           <param name=
"col" type=
"int" default=
""/> 
24917           <param name=
"value" type=
"bool" default=
""/> 
24920       <method name=
"Clear" type=
"" overloaded=
"no"> 
24921         <autodoc>Clear()
</autodoc> 
24923       <method name=
"InsertRows" type=
"bool" overloaded=
"no"> 
24924         <autodoc>InsertRows(size_t pos=
0, size_t numRows=
1) -
> bool
</autodoc> 
24926           <param name=
"pos" type=
"size_t" default=
"0"/> 
24927           <param name=
"numRows" type=
"size_t" default=
"1"/> 
24930       <method name=
"AppendRows" type=
"bool" overloaded=
"no"> 
24931         <autodoc>AppendRows(size_t numRows=
1) -
> bool
</autodoc> 
24933           <param name=
"numRows" type=
"size_t" default=
"1"/> 
24936       <method name=
"DeleteRows" type=
"bool" overloaded=
"no"> 
24937         <autodoc>DeleteRows(size_t pos=
0, size_t numRows=
1) -
> bool
</autodoc> 
24939           <param name=
"pos" type=
"size_t" default=
"0"/> 
24940           <param name=
"numRows" type=
"size_t" default=
"1"/> 
24943       <method name=
"InsertCols" type=
"bool" overloaded=
"no"> 
24944         <autodoc>InsertCols(size_t pos=
0, size_t numCols=
1) -
> bool
</autodoc> 
24946           <param name=
"pos" type=
"size_t" default=
"0"/> 
24947           <param name=
"numCols" type=
"size_t" default=
"1"/> 
24950       <method name=
"AppendCols" type=
"bool" overloaded=
"no"> 
24951         <autodoc>AppendCols(size_t numCols=
1) -
> bool
</autodoc> 
24953           <param name=
"numCols" type=
"size_t" default=
"1"/> 
24956       <method name=
"DeleteCols" type=
"bool" overloaded=
"no"> 
24957         <autodoc>DeleteCols(size_t pos=
0, size_t numCols=
1) -
> bool
</autodoc> 
24959           <param name=
"pos" type=
"size_t" default=
"0"/> 
24960           <param name=
"numCols" type=
"size_t" default=
"1"/> 
24963       <method name=
"GetRowLabelValue" type=
"String" overloaded=
"no"> 
24964         <autodoc>GetRowLabelValue(int row) -
> String
</autodoc> 
24966           <param name=
"row" type=
"int" default=
""/> 
24969       <method name=
"GetColLabelValue" type=
"String" overloaded=
"no"> 
24970         <autodoc>GetColLabelValue(int col) -
> String
</autodoc> 
24972           <param name=
"col" type=
"int" default=
""/> 
24975       <method name=
"SetRowLabelValue" type=
"" overloaded=
"no"> 
24976         <autodoc>SetRowLabelValue(int row, String value)
</autodoc> 
24978           <param name=
"row" type=
"int" default=
""/> 
24979           <param name=
"value" type=
"String" default=
""/> 
24982       <method name=
"SetColLabelValue" type=
"" overloaded=
"no"> 
24983         <autodoc>SetColLabelValue(int col, String value)
</autodoc> 
24985           <param name=
"col" type=
"int" default=
""/> 
24986           <param name=
"value" type=
"String" default=
""/> 
24989       <method name=
"CanHaveAttributes" type=
"bool" overloaded=
"no"> 
24990         <autodoc>CanHaveAttributes() -
> bool
</autodoc> 
24992       <method name=
"GetAttr" type=
"GridCellAttr" overloaded=
"no"> 
24993         <autodoc>GetAttr(int row, int col, int kind) -
> GridCellAttr
</autodoc> 
24995           <param name=
"row" type=
"int" default=
""/> 
24996           <param name=
"col" type=
"int" default=
""/> 
24997           <param name=
"kind" type=
"wxGridCellAttr::wxAttrKind" default=
""/> 
25000       <method name=
"SetAttr" type=
"" overloaded=
"no"> 
25001         <autodoc>SetAttr(GridCellAttr attr, int row, int col)
</autodoc> 
25003           <param name=
"attr" type=
"GridCellAttr" default=
""/> 
25004           <param name=
"row" type=
"int" default=
""/> 
25005           <param name=
"col" type=
"int" default=
""/> 
25008       <method name=
"SetRowAttr" type=
"" overloaded=
"no"> 
25009         <autodoc>SetRowAttr(GridCellAttr attr, int row)
</autodoc> 
25011           <param name=
"attr" type=
"GridCellAttr" default=
""/> 
25012           <param name=
"row" type=
"int" default=
""/> 
25015       <method name=
"SetColAttr" type=
"" overloaded=
"no"> 
25016         <autodoc>SetColAttr(GridCellAttr attr, int col)
</autodoc> 
25018           <param name=
"attr" type=
"GridCellAttr" default=
""/> 
25019           <param name=
"col" type=
"int" default=
""/> 
25023     <class name=
"PyGridTableBase" oldname=
"wxPyGridTableBase" module=
"grid"> 
25024       <baseclass name=
"GridTableBase"/> 
25025       <constructor name=
"PyGridTableBase" overloaded=
"no"> 
25026         <autodoc>__init__() -
> PyGridTableBase
</autodoc> 
25028       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
25029         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
25031           <param name=
"self" type=
"PyObject" default=
""/> 
25032           <param name=
"_class" type=
"PyObject" default=
""/> 
25035       <method name=
"Destroy" type=
"" overloaded=
"no"> 
25036         <autodoc>Destroy()
</autodoc> 
25037         <docstring>Deletes the C++ object this Python object is a proxy for.
</docstring> 
25039       <method name=
"base_GetTypeName" type=
"String" overloaded=
"no"> 
25040         <autodoc>base_GetTypeName(int row, int col) -
> String
</autodoc> 
25042           <param name=
"row" type=
"int" default=
""/> 
25043           <param name=
"col" type=
"int" default=
""/> 
25046       <method name=
"base_CanGetValueAs" type=
"bool" overloaded=
"no"> 
25047         <autodoc>base_CanGetValueAs(int row, int col, String typeName) -
> bool
</autodoc> 
25049           <param name=
"row" type=
"int" default=
""/> 
25050           <param name=
"col" type=
"int" default=
""/> 
25051           <param name=
"typeName" type=
"String" default=
""/> 
25054       <method name=
"base_CanSetValueAs" type=
"bool" overloaded=
"no"> 
25055         <autodoc>base_CanSetValueAs(int row, int col, String typeName) -
> bool
</autodoc> 
25057           <param name=
"row" type=
"int" default=
""/> 
25058           <param name=
"col" type=
"int" default=
""/> 
25059           <param name=
"typeName" type=
"String" default=
""/> 
25062       <method name=
"base_Clear" type=
"" overloaded=
"no"> 
25063         <autodoc>base_Clear()
</autodoc> 
25065       <method name=
"base_InsertRows" type=
"bool" overloaded=
"no"> 
25066         <autodoc>base_InsertRows(size_t pos=
0, size_t numRows=
1) -
> bool
</autodoc> 
25068           <param name=
"pos" type=
"size_t" default=
"0"/> 
25069           <param name=
"numRows" type=
"size_t" default=
"1"/> 
25072       <method name=
"base_AppendRows" type=
"bool" overloaded=
"no"> 
25073         <autodoc>base_AppendRows(size_t numRows=
1) -
> bool
</autodoc> 
25075           <param name=
"numRows" type=
"size_t" default=
"1"/> 
25078       <method name=
"base_DeleteRows" type=
"bool" overloaded=
"no"> 
25079         <autodoc>base_DeleteRows(size_t pos=
0, size_t numRows=
1) -
> bool
</autodoc> 
25081           <param name=
"pos" type=
"size_t" default=
"0"/> 
25082           <param name=
"numRows" type=
"size_t" default=
"1"/> 
25085       <method name=
"base_InsertCols" type=
"bool" overloaded=
"no"> 
25086         <autodoc>base_InsertCols(size_t pos=
0, size_t numCols=
1) -
> bool
</autodoc> 
25088           <param name=
"pos" type=
"size_t" default=
"0"/> 
25089           <param name=
"numCols" type=
"size_t" default=
"1"/> 
25092       <method name=
"base_AppendCols" type=
"bool" overloaded=
"no"> 
25093         <autodoc>base_AppendCols(size_t numCols=
1) -
> bool
</autodoc> 
25095           <param name=
"numCols" type=
"size_t" default=
"1"/> 
25098       <method name=
"base_DeleteCols" type=
"bool" overloaded=
"no"> 
25099         <autodoc>base_DeleteCols(size_t pos=
0, size_t numCols=
1) -
> bool
</autodoc> 
25101           <param name=
"pos" type=
"size_t" default=
"0"/> 
25102           <param name=
"numCols" type=
"size_t" default=
"1"/> 
25105       <method name=
"base_GetRowLabelValue" type=
"String" overloaded=
"no"> 
25106         <autodoc>base_GetRowLabelValue(int row) -
> String
</autodoc> 
25108           <param name=
"row" type=
"int" default=
""/> 
25111       <method name=
"base_GetColLabelValue" type=
"String" overloaded=
"no"> 
25112         <autodoc>base_GetColLabelValue(int col) -
> String
</autodoc> 
25114           <param name=
"col" type=
"int" default=
""/> 
25117       <method name=
"base_SetRowLabelValue" type=
"" overloaded=
"no"> 
25118         <autodoc>base_SetRowLabelValue(int row, String value)
</autodoc> 
25120           <param name=
"row" type=
"int" default=
""/> 
25121           <param name=
"value" type=
"String" default=
""/> 
25124       <method name=
"base_SetColLabelValue" type=
"" overloaded=
"no"> 
25125         <autodoc>base_SetColLabelValue(int col, String value)
</autodoc> 
25127           <param name=
"col" type=
"int" default=
""/> 
25128           <param name=
"value" type=
"String" default=
""/> 
25131       <method name=
"base_CanHaveAttributes" type=
"bool" overloaded=
"no"> 
25132         <autodoc>base_CanHaveAttributes() -
> bool
</autodoc> 
25134       <method name=
"base_GetAttr" type=
"GridCellAttr" overloaded=
"no"> 
25135         <autodoc>base_GetAttr(int row, int col, int kind) -
> GridCellAttr
</autodoc> 
25137           <param name=
"row" type=
"int" default=
""/> 
25138           <param name=
"col" type=
"int" default=
""/> 
25139           <param name=
"kind" type=
"wxGridCellAttr::wxAttrKind" default=
""/> 
25142       <method name=
"base_SetAttr" type=
"" overloaded=
"no"> 
25143         <autodoc>base_SetAttr(GridCellAttr attr, int row, int col)
</autodoc> 
25145           <param name=
"attr" type=
"GridCellAttr" default=
""/> 
25146           <param name=
"row" type=
"int" default=
""/> 
25147           <param name=
"col" type=
"int" default=
""/> 
25150       <method name=
"base_SetRowAttr" type=
"" overloaded=
"no"> 
25151         <autodoc>base_SetRowAttr(GridCellAttr attr, int row)
</autodoc> 
25153           <param name=
"attr" type=
"GridCellAttr" default=
""/> 
25154           <param name=
"row" type=
"int" default=
""/> 
25157       <method name=
"base_SetColAttr" type=
"" overloaded=
"no"> 
25158         <autodoc>base_SetColAttr(GridCellAttr attr, int col)
</autodoc> 
25160           <param name=
"attr" type=
"GridCellAttr" default=
""/> 
25161           <param name=
"col" type=
"int" default=
""/> 
25165     <class name=
"GridStringTable" oldname=
"wxGridStringTable" module=
"grid"> 
25166       <baseclass name=
"GridTableBase"/> 
25167       <constructor name=
"GridStringTable" overloaded=
"no"> 
25168         <autodoc>__init__(int numRows=
0, int numCols=
0) -
> GridStringTable
</autodoc> 
25170           <param name=
"numRows" type=
"int" default=
"0"/> 
25171           <param name=
"numCols" type=
"int" default=
"0"/> 
25175     <class name=
"GridTableMessage" oldname=
"wxGridTableMessage" module=
"grid"> 
25176       <constructor name=
"GridTableMessage" overloaded=
"no"> 
25177         <autodoc>__init__(GridTableBase table, int id, int comInt1=-
1, int comInt2=-
1) -
> GridTableMessage
</autodoc> 
25179           <param name=
"table" type=
"GridTableBase" default=
""/> 
25180           <param name=
"id" type=
"int" default=
""/> 
25181           <param name=
"comInt1" type=
"int" default=
"-1"/> 
25182           <param name=
"comInt2" type=
"int" default=
"-1"/> 
25185       <destructor name=
"~wxGridTableMessage" overloaded=
"no"> 
25186         <autodoc>__del__()
</autodoc> 
25188       <method name=
"SetTableObject" type=
"" overloaded=
"no"> 
25189         <autodoc>SetTableObject(GridTableBase table)
</autodoc> 
25191           <param name=
"table" type=
"GridTableBase" default=
""/> 
25194       <method name=
"GetTableObject" type=
"GridTableBase" overloaded=
"no"> 
25195         <autodoc>GetTableObject() -
> GridTableBase
</autodoc> 
25197       <method name=
"SetId" type=
"" overloaded=
"no"> 
25198         <autodoc>SetId(int id)
</autodoc> 
25200           <param name=
"id" type=
"int" default=
""/> 
25203       <method name=
"GetId" type=
"int" overloaded=
"no"> 
25204         <autodoc>GetId() -
> int
</autodoc> 
25206       <method name=
"SetCommandInt" type=
"" overloaded=
"no"> 
25207         <autodoc>SetCommandInt(int comInt1)
</autodoc> 
25209           <param name=
"comInt1" type=
"int" default=
""/> 
25212       <method name=
"GetCommandInt" type=
"int" overloaded=
"no"> 
25213         <autodoc>GetCommandInt() -
> int
</autodoc> 
25215       <method name=
"SetCommandInt2" type=
"" overloaded=
"no"> 
25216         <autodoc>SetCommandInt2(int comInt2)
</autodoc> 
25218           <param name=
"comInt2" type=
"int" default=
""/> 
25221       <method name=
"GetCommandInt2" type=
"int" overloaded=
"no"> 
25222         <autodoc>GetCommandInt2() -
> int
</autodoc> 
25225     <class name=
"GridCellCoords" oldname=
"wxGridCellCoords" module=
"grid"> 
25226       <constructor name=
"GridCellCoords" overloaded=
"no"> 
25227         <autodoc>__init__(int r=-
1, int c=-
1) -
> GridCellCoords
</autodoc> 
25229           <param name=
"r" type=
"int" default=
"-1"/> 
25230           <param name=
"c" type=
"int" default=
"-1"/> 
25233       <destructor name=
"~wxGridCellCoords" overloaded=
"no"> 
25234         <autodoc>__del__()
</autodoc> 
25236       <method name=
"GetRow" type=
"int" overloaded=
"no"> 
25237         <autodoc>GetRow() -
> int
</autodoc> 
25239       <method name=
"SetRow" type=
"" overloaded=
"no"> 
25240         <autodoc>SetRow(int n)
</autodoc> 
25242           <param name=
"n" type=
"int" default=
""/> 
25245       <method name=
"GetCol" type=
"int" overloaded=
"no"> 
25246         <autodoc>GetCol() -
> int
</autodoc> 
25248       <method name=
"SetCol" type=
"" overloaded=
"no"> 
25249         <autodoc>SetCol(int n)
</autodoc> 
25251           <param name=
"n" type=
"int" default=
""/> 
25254       <method name=
"Set" type=
"" overloaded=
"no"> 
25255         <autodoc>Set(int row, int col)
</autodoc> 
25257           <param name=
"row" type=
"int" default=
""/> 
25258           <param name=
"col" type=
"int" default=
""/> 
25261       <method name=
"__eq__" type=
"bool" overloaded=
"no"> 
25262         <autodoc>__eq__(GridCellCoords other) -
> bool
</autodoc> 
25264           <param name=
"other" type=
"GridCellCoords" default=
""/> 
25267       <method name=
"__ne__" type=
"bool" overloaded=
"no"> 
25268         <autodoc>__ne__(GridCellCoords other) -
> bool
</autodoc> 
25270           <param name=
"other" type=
"GridCellCoords" default=
""/> 
25273       <method name=
"asTuple" type=
"PyObject" overloaded=
"no"> 
25274         <autodoc>asTuple() -
> PyObject
</autodoc> 
25277     <class name=
"Grid" oldname=
"wxGrid" module=
"grid"> 
25278       <baseclass name=
"ScrolledWindow"/> 
25279       <constructor name=
"Grid" overloaded=
"no"> 
25280         <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
25281     long style=WANTS_CHARS, 
 
25282     String name=PanelNameStr) -
> Grid
</autodoc> 
25284           <param name=
"parent" type=
"Window" default=
""/> 
25285           <param name=
"id" type=
"int" default=
""/> 
25286           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
25287           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
25288           <param name=
"style" type=
"long" default=
"wxWANTS_CHARS"/> 
25289           <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/> 
25292       <method name=
"CreateGrid" type=
"bool" overloaded=
"no"> 
25293         <autodoc>CreateGrid(int numRows, int numCols, WXGRIDSELECTIONMODES selmode=wxGridSelectCells) -
> bool
</autodoc> 
25295           <param name=
"numRows" type=
"int" default=
""/> 
25296           <param name=
"numCols" type=
"int" default=
""/> 
25297           <param name=
"selmode" type=
"WXGRIDSELECTIONMODES" default=
"wxGrid::wxGridSelectCells"/> 
25300       <method name=
"SetSelectionMode" type=
"" overloaded=
"no"> 
25301         <autodoc>SetSelectionMode(WXGRIDSELECTIONMODES selmode)
</autodoc> 
25303           <param name=
"selmode" type=
"WXGRIDSELECTIONMODES" default=
""/> 
25306       <method name=
"GetSelectionMode" type=
"WXGRIDSELECTIONMODES" overloaded=
"no"> 
25307         <autodoc>GetSelectionMode() -
> WXGRIDSELECTIONMODES
</autodoc> 
25309       <method name=
"GetNumberRows" type=
"int" overloaded=
"no"> 
25310         <autodoc>GetNumberRows() -
> int
</autodoc> 
25312       <method name=
"GetNumberCols" type=
"int" overloaded=
"no"> 
25313         <autodoc>GetNumberCols() -
> int
</autodoc> 
25315       <method name=
"ProcessTableMessage" type=
"bool" overloaded=
"no"> 
25316         <autodoc>ProcessTableMessage(GridTableMessage ??) -
> bool
</autodoc> 
25318           <param name=
"" type=
"GridTableMessage" default=
""/> 
25321       <method name=
"GetTable" type=
"GridTableBase" overloaded=
"no"> 
25322         <autodoc>GetTable() -
> GridTableBase
</autodoc> 
25324       <method name=
"SetTable" type=
"bool" overloaded=
"no"> 
25325         <autodoc>SetTable(GridTableBase table, bool takeOwnership=False, WXGRIDSELECTIONMODES selmode=wxGridSelectCells) -
> bool
</autodoc> 
25327           <param name=
"table" type=
"GridTableBase" default=
""/> 
25328           <param name=
"takeOwnership" type=
"bool" default=
"False"/> 
25329           <param name=
"selmode" type=
"WXGRIDSELECTIONMODES" default=
"wxGrid::wxGridSelectCells"/> 
25332       <method name=
"ClearGrid" type=
"" overloaded=
"no"> 
25333         <autodoc>ClearGrid()
</autodoc> 
25335       <method name=
"InsertRows" type=
"bool" overloaded=
"no"> 
25336         <autodoc>InsertRows(int pos=
0, int numRows=
1, bool updateLabels=True) -
> bool
</autodoc> 
25338           <param name=
"pos" type=
"int" default=
"0"/> 
25339           <param name=
"numRows" type=
"int" default=
"1"/> 
25340           <param name=
"updateLabels" type=
"bool" default=
"True"/> 
25343       <method name=
"AppendRows" type=
"bool" overloaded=
"no"> 
25344         <autodoc>AppendRows(int numRows=
1, bool updateLabels=True) -
> bool
</autodoc> 
25346           <param name=
"numRows" type=
"int" default=
"1"/> 
25347           <param name=
"updateLabels" type=
"bool" default=
"True"/> 
25350       <method name=
"DeleteRows" type=
"bool" overloaded=
"no"> 
25351         <autodoc>DeleteRows(int pos=
0, int numRows=
1, bool updateLabels=True) -
> bool
</autodoc> 
25353           <param name=
"pos" type=
"int" default=
"0"/> 
25354           <param name=
"numRows" type=
"int" default=
"1"/> 
25355           <param name=
"updateLabels" type=
"bool" default=
"True"/> 
25358       <method name=
"InsertCols" type=
"bool" overloaded=
"no"> 
25359         <autodoc>InsertCols(int pos=
0, int numCols=
1, bool updateLabels=True) -
> bool
</autodoc> 
25361           <param name=
"pos" type=
"int" default=
"0"/> 
25362           <param name=
"numCols" type=
"int" default=
"1"/> 
25363           <param name=
"updateLabels" type=
"bool" default=
"True"/> 
25366       <method name=
"AppendCols" type=
"bool" overloaded=
"no"> 
25367         <autodoc>AppendCols(int numCols=
1, bool updateLabels=True) -
> bool
</autodoc> 
25369           <param name=
"numCols" type=
"int" default=
"1"/> 
25370           <param name=
"updateLabels" type=
"bool" default=
"True"/> 
25373       <method name=
"DeleteCols" type=
"bool" overloaded=
"no"> 
25374         <autodoc>DeleteCols(int pos=
0, int numCols=
1, bool updateLabels=True) -
> bool
</autodoc> 
25376           <param name=
"pos" type=
"int" default=
"0"/> 
25377           <param name=
"numCols" type=
"int" default=
"1"/> 
25378           <param name=
"updateLabels" type=
"bool" default=
"True"/> 
25381       <method name=
"DrawCellHighlight" type=
"" overloaded=
"no"> 
25382         <autodoc>DrawCellHighlight(DC dc, GridCellAttr attr)
</autodoc> 
25384           <param name=
"dc" type=
"DC" default=
""/> 
25385           <param name=
"attr" type=
"GridCellAttr" default=
""/> 
25388       <method name=
"DrawTextRectangle" type=
"" overloaded=
"no"> 
25389         <autodoc>DrawTextRectangle(DC dc, String ??, Rect ??, int horizontalAlignment=LEFT, 
 
25390     int verticalAlignment=TOP, int textOrientation=HORIZONTAL)
</autodoc> 
25392           <param name=
"dc" type=
"DC" default=
""/> 
25393           <param name=
"" type=
"String" default=
""/> 
25394           <param name=
"" type=
"Rect" default=
""/> 
25395           <param name=
"horizontalAlignment" type=
"int" default=
"wxLEFT"/> 
25396           <param name=
"verticalAlignment" type=
"int" default=
"wxTOP"/> 
25397           <param name=
"textOrientation" type=
"int" default=
"wxHORIZONTAL"/> 
25400       <method name=
"GetTextBoxSize" type=
"" overloaded=
"no"> 
25401         <autodoc>GetTextBoxSize(DC dc, list lines) -
> (width, height)
</autodoc> 
25403           <param name=
"dc" type=
"DC" default=
""/> 
25404           <param name=
"lines" type=
"wxArrayString" default=
""/> 
25405           <param name=
"OUTPUT" type=
"long" default=
""/> 
25406           <param name=
"OUTPUT" type=
"long" default=
""/> 
25409       <method name=
"BeginBatch" type=
"" overloaded=
"no"> 
25410         <autodoc>BeginBatch()
</autodoc> 
25412       <method name=
"EndBatch" type=
"" overloaded=
"no"> 
25413         <autodoc>EndBatch()
</autodoc> 
25415       <method name=
"GetBatchCount" type=
"int" overloaded=
"no"> 
25416         <autodoc>GetBatchCount() -
> int
</autodoc> 
25418       <method name=
"ForceRefresh" type=
"" overloaded=
"no"> 
25419         <autodoc>ForceRefresh()
</autodoc> 
25421       <method name=
"IsEditable" type=
"bool" overloaded=
"no"> 
25422         <autodoc>IsEditable() -
> bool
</autodoc> 
25424       <method name=
"EnableEditing" type=
"" overloaded=
"no"> 
25425         <autodoc>EnableEditing(bool edit)
</autodoc> 
25427           <param name=
"edit" type=
"bool" default=
""/> 
25430       <method name=
"EnableCellEditControl" type=
"" overloaded=
"no"> 
25431         <autodoc>EnableCellEditControl(bool enable=True)
</autodoc> 
25433           <param name=
"enable" type=
"bool" default=
"True"/> 
25436       <method name=
"DisableCellEditControl" type=
"" overloaded=
"no"> 
25437         <autodoc>DisableCellEditControl()
</autodoc> 
25439       <method name=
"CanEnableCellControl" type=
"bool" overloaded=
"no"> 
25440         <autodoc>CanEnableCellControl() -
> bool
</autodoc> 
25442       <method name=
"IsCellEditControlEnabled" type=
"bool" overloaded=
"no"> 
25443         <autodoc>IsCellEditControlEnabled() -
> bool
</autodoc> 
25445       <method name=
"IsCellEditControlShown" type=
"bool" overloaded=
"no"> 
25446         <autodoc>IsCellEditControlShown() -
> bool
</autodoc> 
25448       <method name=
"IsCurrentCellReadOnly" type=
"bool" overloaded=
"no"> 
25449         <autodoc>IsCurrentCellReadOnly() -
> bool
</autodoc> 
25451       <method name=
"ShowCellEditControl" type=
"" overloaded=
"no"> 
25452         <autodoc>ShowCellEditControl()
</autodoc> 
25454       <method name=
"HideCellEditControl" type=
"" overloaded=
"no"> 
25455         <autodoc>HideCellEditControl()
</autodoc> 
25457       <method name=
"SaveEditControlValue" type=
"" overloaded=
"no"> 
25458         <autodoc>SaveEditControlValue()
</autodoc> 
25460       <method name=
"XYToCell" type=
"GridCellCoords" overloaded=
"no"> 
25461         <autodoc>XYToCell(int x, int y) -
> GridCellCoords
</autodoc> 
25463           <param name=
"x" type=
"int" default=
""/> 
25464           <param name=
"y" type=
"int" default=
""/> 
25467       <method name=
"YToRow" type=
"int" overloaded=
"no"> 
25468         <autodoc>YToRow(int y) -
> int
</autodoc> 
25470           <param name=
"y" type=
"int" default=
""/> 
25473       <method name=
"XToCol" type=
"int" overloaded=
"no"> 
25474         <autodoc>XToCol(int x) -
> int
</autodoc> 
25476           <param name=
"x" type=
"int" default=
""/> 
25479       <method name=
"YToEdgeOfRow" type=
"int" overloaded=
"no"> 
25480         <autodoc>YToEdgeOfRow(int y) -
> int
</autodoc> 
25482           <param name=
"y" type=
"int" default=
""/> 
25485       <method name=
"XToEdgeOfCol" type=
"int" overloaded=
"no"> 
25486         <autodoc>XToEdgeOfCol(int x) -
> int
</autodoc> 
25488           <param name=
"x" type=
"int" default=
""/> 
25491       <method name=
"CellToRect" type=
"Rect" overloaded=
"no"> 
25492         <autodoc>CellToRect(int row, int col) -
> Rect
</autodoc> 
25494           <param name=
"row" type=
"int" default=
""/> 
25495           <param name=
"col" type=
"int" default=
""/> 
25498       <method name=
"GetGridCursorRow" type=
"int" overloaded=
"no"> 
25499         <autodoc>GetGridCursorRow() -
> int
</autodoc> 
25501       <method name=
"GetGridCursorCol" type=
"int" overloaded=
"no"> 
25502         <autodoc>GetGridCursorCol() -
> int
</autodoc> 
25504       <method name=
"IsVisible" type=
"bool" overloaded=
"no"> 
25505         <autodoc>IsVisible(int row, int col, bool wholeCellVisible=True) -
> bool
</autodoc> 
25507           <param name=
"row" type=
"int" default=
""/> 
25508           <param name=
"col" type=
"int" default=
""/> 
25509           <param name=
"wholeCellVisible" type=
"bool" default=
"True"/> 
25512       <method name=
"MakeCellVisible" type=
"" overloaded=
"no"> 
25513         <autodoc>MakeCellVisible(int row, int col)
</autodoc> 
25515           <param name=
"row" type=
"int" default=
""/> 
25516           <param name=
"col" type=
"int" default=
""/> 
25519       <method name=
"SetGridCursor" type=
"" overloaded=
"no"> 
25520         <autodoc>SetGridCursor(int row, int col)
</autodoc> 
25522           <param name=
"row" type=
"int" default=
""/> 
25523           <param name=
"col" type=
"int" default=
""/> 
25526       <method name=
"MoveCursorUp" type=
"bool" overloaded=
"no"> 
25527         <autodoc>MoveCursorUp(bool expandSelection) -
> bool
</autodoc> 
25529           <param name=
"expandSelection" type=
"bool" default=
""/> 
25532       <method name=
"MoveCursorDown" type=
"bool" overloaded=
"no"> 
25533         <autodoc>MoveCursorDown(bool expandSelection) -
> bool
</autodoc> 
25535           <param name=
"expandSelection" type=
"bool" default=
""/> 
25538       <method name=
"MoveCursorLeft" type=
"bool" overloaded=
"no"> 
25539         <autodoc>MoveCursorLeft(bool expandSelection) -
> bool
</autodoc> 
25541           <param name=
"expandSelection" type=
"bool" default=
""/> 
25544       <method name=
"MoveCursorRight" type=
"bool" overloaded=
"no"> 
25545         <autodoc>MoveCursorRight(bool expandSelection) -
> bool
</autodoc> 
25547           <param name=
"expandSelection" type=
"bool" default=
""/> 
25550       <method name=
"MovePageDown" type=
"bool" overloaded=
"no"> 
25551         <autodoc>MovePageDown() -
> bool
</autodoc> 
25553       <method name=
"MovePageUp" type=
"bool" overloaded=
"no"> 
25554         <autodoc>MovePageUp() -
> bool
</autodoc> 
25556       <method name=
"MoveCursorUpBlock" type=
"bool" overloaded=
"no"> 
25557         <autodoc>MoveCursorUpBlock(bool expandSelection) -
> bool
</autodoc> 
25559           <param name=
"expandSelection" type=
"bool" default=
""/> 
25562       <method name=
"MoveCursorDownBlock" type=
"bool" overloaded=
"no"> 
25563         <autodoc>MoveCursorDownBlock(bool expandSelection) -
> bool
</autodoc> 
25565           <param name=
"expandSelection" type=
"bool" default=
""/> 
25568       <method name=
"MoveCursorLeftBlock" type=
"bool" overloaded=
"no"> 
25569         <autodoc>MoveCursorLeftBlock(bool expandSelection) -
> bool
</autodoc> 
25571           <param name=
"expandSelection" type=
"bool" default=
""/> 
25574       <method name=
"MoveCursorRightBlock" type=
"bool" overloaded=
"no"> 
25575         <autodoc>MoveCursorRightBlock(bool expandSelection) -
> bool
</autodoc> 
25577           <param name=
"expandSelection" type=
"bool" default=
""/> 
25580       <method name=
"GetDefaultRowLabelSize" type=
"int" overloaded=
"no"> 
25581         <autodoc>GetDefaultRowLabelSize() -
> int
</autodoc> 
25583       <method name=
"GetRowLabelSize" type=
"int" overloaded=
"no"> 
25584         <autodoc>GetRowLabelSize() -
> int
</autodoc> 
25586       <method name=
"GetDefaultColLabelSize" type=
"int" overloaded=
"no"> 
25587         <autodoc>GetDefaultColLabelSize() -
> int
</autodoc> 
25589       <method name=
"GetColLabelSize" type=
"int" overloaded=
"no"> 
25590         <autodoc>GetColLabelSize() -
> int
</autodoc> 
25592       <method name=
"GetLabelBackgroundColour" type=
"Colour" overloaded=
"no"> 
25593         <autodoc>GetLabelBackgroundColour() -
> Colour
</autodoc> 
25595       <method name=
"GetLabelTextColour" type=
"Colour" overloaded=
"no"> 
25596         <autodoc>GetLabelTextColour() -
> Colour
</autodoc> 
25598       <method name=
"GetLabelFont" type=
"Font" overloaded=
"no"> 
25599         <autodoc>GetLabelFont() -
> Font
</autodoc> 
25601       <method name=
"GetRowLabelAlignment" type=
"" overloaded=
"no"> 
25602         <autodoc>GetRowLabelAlignment() -
> (horiz, vert)
</autodoc> 
25604           <param name=
"OUTPUT" type=
"int" default=
""/> 
25605           <param name=
"OUTPUT" type=
"int" default=
""/> 
25608       <method name=
"GetColLabelAlignment" type=
"" overloaded=
"no"> 
25609         <autodoc>GetColLabelAlignment() -
> (horiz, vert)
</autodoc> 
25611           <param name=
"OUTPUT" type=
"int" default=
""/> 
25612           <param name=
"OUTPUT" type=
"int" default=
""/> 
25615       <method name=
"GetColLabelTextOrientation" type=
"int" overloaded=
"no"> 
25616         <autodoc>GetColLabelTextOrientation() -
> int
</autodoc> 
25618       <method name=
"GetRowLabelValue" type=
"String" overloaded=
"no"> 
25619         <autodoc>GetRowLabelValue(int row) -
> String
</autodoc> 
25621           <param name=
"row" type=
"int" default=
""/> 
25624       <method name=
"GetColLabelValue" type=
"String" overloaded=
"no"> 
25625         <autodoc>GetColLabelValue(int col) -
> String
</autodoc> 
25627           <param name=
"col" type=
"int" default=
""/> 
25630       <method name=
"GetGridLineColour" type=
"Colour" overloaded=
"no"> 
25631         <autodoc>GetGridLineColour() -
> Colour
</autodoc> 
25633       <method name=
"GetCellHighlightColour" type=
"Colour" overloaded=
"no"> 
25634         <autodoc>GetCellHighlightColour() -
> Colour
</autodoc> 
25636       <method name=
"GetCellHighlightPenWidth" type=
"int" overloaded=
"no"> 
25637         <autodoc>GetCellHighlightPenWidth() -
> int
</autodoc> 
25639       <method name=
"GetCellHighlightROPenWidth" type=
"int" overloaded=
"no"> 
25640         <autodoc>GetCellHighlightROPenWidth() -
> int
</autodoc> 
25642       <method name=
"SetRowLabelSize" type=
"" overloaded=
"no"> 
25643         <autodoc>SetRowLabelSize(int width)
</autodoc> 
25645           <param name=
"width" type=
"int" default=
""/> 
25648       <method name=
"SetColLabelSize" type=
"" overloaded=
"no"> 
25649         <autodoc>SetColLabelSize(int height)
</autodoc> 
25651           <param name=
"height" type=
"int" default=
""/> 
25654       <method name=
"SetLabelBackgroundColour" type=
"" overloaded=
"no"> 
25655         <autodoc>SetLabelBackgroundColour(Colour ??)
</autodoc> 
25657           <param name=
"" type=
"Colour" default=
""/> 
25660       <method name=
"SetLabelTextColour" type=
"" overloaded=
"no"> 
25661         <autodoc>SetLabelTextColour(Colour ??)
</autodoc> 
25663           <param name=
"" type=
"Colour" default=
""/> 
25666       <method name=
"SetLabelFont" type=
"" overloaded=
"no"> 
25667         <autodoc>SetLabelFont(Font ??)
</autodoc> 
25669           <param name=
"" type=
"Font" default=
""/> 
25672       <method name=
"SetRowLabelAlignment" type=
"" overloaded=
"no"> 
25673         <autodoc>SetRowLabelAlignment(int horiz, int vert)
</autodoc> 
25675           <param name=
"horiz" type=
"int" default=
""/> 
25676           <param name=
"vert" type=
"int" default=
""/> 
25679       <method name=
"SetColLabelAlignment" type=
"" overloaded=
"no"> 
25680         <autodoc>SetColLabelAlignment(int horiz, int vert)
</autodoc> 
25682           <param name=
"horiz" type=
"int" default=
""/> 
25683           <param name=
"vert" type=
"int" default=
""/> 
25686       <method name=
"SetColLabelTextOrientation" type=
"" overloaded=
"no"> 
25687         <autodoc>SetColLabelTextOrientation(int textOrientation)
</autodoc> 
25689           <param name=
"textOrientation" type=
"int" default=
""/> 
25692       <method name=
"SetRowLabelValue" type=
"" overloaded=
"no"> 
25693         <autodoc>SetRowLabelValue(int row, String ??)
</autodoc> 
25695           <param name=
"row" type=
"int" default=
""/> 
25696           <param name=
"" type=
"String" default=
""/> 
25699       <method name=
"SetColLabelValue" type=
"" overloaded=
"no"> 
25700         <autodoc>SetColLabelValue(int col, String ??)
</autodoc> 
25702           <param name=
"col" type=
"int" default=
""/> 
25703           <param name=
"" type=
"String" default=
""/> 
25706       <method name=
"SetGridLineColour" type=
"" overloaded=
"no"> 
25707         <autodoc>SetGridLineColour(Colour ??)
</autodoc> 
25709           <param name=
"" type=
"Colour" default=
""/> 
25712       <method name=
"SetCellHighlightColour" type=
"" overloaded=
"no"> 
25713         <autodoc>SetCellHighlightColour(Colour ??)
</autodoc> 
25715           <param name=
"" type=
"Colour" default=
""/> 
25718       <method name=
"SetCellHighlightPenWidth" type=
"" overloaded=
"no"> 
25719         <autodoc>SetCellHighlightPenWidth(int width)
</autodoc> 
25721           <param name=
"width" type=
"int" default=
""/> 
25724       <method name=
"SetCellHighlightROPenWidth" type=
"" overloaded=
"no"> 
25725         <autodoc>SetCellHighlightROPenWidth(int width)
</autodoc> 
25727           <param name=
"width" type=
"int" default=
""/> 
25730       <method name=
"EnableDragRowSize" type=
"" overloaded=
"no"> 
25731         <autodoc>EnableDragRowSize(bool enable=True)
</autodoc> 
25733           <param name=
"enable" type=
"bool" default=
"True"/> 
25736       <method name=
"DisableDragRowSize" type=
"" overloaded=
"no"> 
25737         <autodoc>DisableDragRowSize()
</autodoc> 
25739       <method name=
"CanDragRowSize" type=
"bool" overloaded=
"no"> 
25740         <autodoc>CanDragRowSize() -
> bool
</autodoc> 
25742       <method name=
"EnableDragColSize" type=
"" overloaded=
"no"> 
25743         <autodoc>EnableDragColSize(bool enable=True)
</autodoc> 
25745           <param name=
"enable" type=
"bool" default=
"True"/> 
25748       <method name=
"DisableDragColSize" type=
"" overloaded=
"no"> 
25749         <autodoc>DisableDragColSize()
</autodoc> 
25751       <method name=
"CanDragColSize" type=
"bool" overloaded=
"no"> 
25752         <autodoc>CanDragColSize() -
> bool
</autodoc> 
25754       <method name=
"EnableDragGridSize" type=
"" overloaded=
"no"> 
25755         <autodoc>EnableDragGridSize(bool enable=True)
</autodoc> 
25757           <param name=
"enable" type=
"bool" default=
"True"/> 
25760       <method name=
"DisableDragGridSize" type=
"" overloaded=
"no"> 
25761         <autodoc>DisableDragGridSize()
</autodoc> 
25763       <method name=
"CanDragGridSize" type=
"bool" overloaded=
"no"> 
25764         <autodoc>CanDragGridSize() -
> bool
</autodoc> 
25766       <method name=
"SetAttr" type=
"" overloaded=
"no"> 
25767         <autodoc>SetAttr(int row, int col, GridCellAttr attr)
</autodoc> 
25769           <param name=
"row" type=
"int" default=
""/> 
25770           <param name=
"col" type=
"int" default=
""/> 
25771           <param name=
"attr" type=
"GridCellAttr" default=
""/> 
25774       <method name=
"SetRowAttr" type=
"" overloaded=
"no"> 
25775         <autodoc>SetRowAttr(int row, GridCellAttr attr)
</autodoc> 
25777           <param name=
"row" type=
"int" default=
""/> 
25778           <param name=
"attr" type=
"GridCellAttr" default=
""/> 
25781       <method name=
"SetColAttr" type=
"" overloaded=
"no"> 
25782         <autodoc>SetColAttr(int col, GridCellAttr attr)
</autodoc> 
25784           <param name=
"col" type=
"int" default=
""/> 
25785           <param name=
"attr" type=
"GridCellAttr" default=
""/> 
25788       <method name=
"SetColFormatBool" type=
"" overloaded=
"no"> 
25789         <autodoc>SetColFormatBool(int col)
</autodoc> 
25791           <param name=
"col" type=
"int" default=
""/> 
25794       <method name=
"SetColFormatNumber" type=
"" overloaded=
"no"> 
25795         <autodoc>SetColFormatNumber(int col)
</autodoc> 
25797           <param name=
"col" type=
"int" default=
""/> 
25800       <method name=
"SetColFormatFloat" type=
"" overloaded=
"no"> 
25801         <autodoc>SetColFormatFloat(int col, int width=-
1, int precision=-
1)
</autodoc> 
25803           <param name=
"col" type=
"int" default=
""/> 
25804           <param name=
"width" type=
"int" default=
"-1"/> 
25805           <param name=
"precision" type=
"int" default=
"-1"/> 
25808       <method name=
"SetColFormatCustom" type=
"" overloaded=
"no"> 
25809         <autodoc>SetColFormatCustom(int col, String typeName)
</autodoc> 
25811           <param name=
"col" type=
"int" default=
""/> 
25812           <param name=
"typeName" type=
"String" default=
""/> 
25815       <method name=
"EnableGridLines" type=
"" overloaded=
"no"> 
25816         <autodoc>EnableGridLines(bool enable=True)
</autodoc> 
25818           <param name=
"enable" type=
"bool" default=
"True"/> 
25821       <method name=
"GridLinesEnabled" type=
"bool" overloaded=
"no"> 
25822         <autodoc>GridLinesEnabled() -
> bool
</autodoc> 
25824       <method name=
"GetDefaultRowSize" type=
"int" overloaded=
"no"> 
25825         <autodoc>GetDefaultRowSize() -
> int
</autodoc> 
25827       <method name=
"GetRowSize" type=
"int" overloaded=
"no"> 
25828         <autodoc>GetRowSize(int row) -
> int
</autodoc> 
25830           <param name=
"row" type=
"int" default=
""/> 
25833       <method name=
"GetDefaultColSize" type=
"int" overloaded=
"no"> 
25834         <autodoc>GetDefaultColSize() -
> int
</autodoc> 
25836       <method name=
"GetColSize" type=
"int" overloaded=
"no"> 
25837         <autodoc>GetColSize(int col) -
> int
</autodoc> 
25839           <param name=
"col" type=
"int" default=
""/> 
25842       <method name=
"GetDefaultCellBackgroundColour" type=
"Colour" overloaded=
"no"> 
25843         <autodoc>GetDefaultCellBackgroundColour() -
> Colour
</autodoc> 
25845       <method name=
"GetCellBackgroundColour" type=
"Colour" overloaded=
"no"> 
25846         <autodoc>GetCellBackgroundColour(int row, int col) -
> Colour
</autodoc> 
25848           <param name=
"row" type=
"int" default=
""/> 
25849           <param name=
"col" type=
"int" default=
""/> 
25852       <method name=
"GetDefaultCellTextColour" type=
"Colour" overloaded=
"no"> 
25853         <autodoc>GetDefaultCellTextColour() -
> Colour
</autodoc> 
25855       <method name=
"GetCellTextColour" type=
"Colour" overloaded=
"no"> 
25856         <autodoc>GetCellTextColour(int row, int col) -
> Colour
</autodoc> 
25858           <param name=
"row" type=
"int" default=
""/> 
25859           <param name=
"col" type=
"int" default=
""/> 
25862       <method name=
"GetDefaultCellFont" type=
"Font" overloaded=
"no"> 
25863         <autodoc>GetDefaultCellFont() -
> Font
</autodoc> 
25865       <method name=
"GetCellFont" type=
"Font" overloaded=
"no"> 
25866         <autodoc>GetCellFont(int row, int col) -
> Font
</autodoc> 
25868           <param name=
"row" type=
"int" default=
""/> 
25869           <param name=
"col" type=
"int" default=
""/> 
25872       <method name=
"GetDefaultCellAlignment" type=
"" overloaded=
"no"> 
25873         <autodoc>GetDefaultCellAlignment() -
> (horiz, vert)
</autodoc> 
25875           <param name=
"OUTPUT" type=
"int" default=
""/> 
25876           <param name=
"OUTPUT" type=
"int" default=
""/> 
25879       <method name=
"GetCellAlignment" type=
"" overloaded=
"no"> 
25880         <autodoc>GetCellAlignment() -
> (horiz, vert)
</autodoc> 
25882           <param name=
"row" type=
"int" default=
""/> 
25883           <param name=
"col" type=
"int" default=
""/> 
25884           <param name=
"OUTPUT" type=
"int" default=
""/> 
25885           <param name=
"OUTPUT" type=
"int" default=
""/> 
25888       <method name=
"GetDefaultCellOverflow" type=
"bool" overloaded=
"no"> 
25889         <autodoc>GetDefaultCellOverflow() -
> bool
</autodoc> 
25891       <method name=
"GetCellOverflow" type=
"bool" overloaded=
"no"> 
25892         <autodoc>GetCellOverflow(int row, int col) -
> bool
</autodoc> 
25894           <param name=
"row" type=
"int" default=
""/> 
25895           <param name=
"col" type=
"int" default=
""/> 
25898       <method name=
"GetCellSize" type=
"" overloaded=
"no"> 
25899         <autodoc>GetCellSize(int row, int col) -
> (num_rows, num_cols)
</autodoc> 
25901           <param name=
"row" type=
"int" default=
""/> 
25902           <param name=
"col" type=
"int" default=
""/> 
25903           <param name=
"OUTPUT" type=
"int" default=
""/> 
25904           <param name=
"OUTPUT" type=
"int" default=
""/> 
25907       <method name=
"SetDefaultRowSize" type=
"" overloaded=
"no"> 
25908         <autodoc>SetDefaultRowSize(int height, bool resizeExistingRows=False)
</autodoc> 
25910           <param name=
"height" type=
"int" default=
""/> 
25911           <param name=
"resizeExistingRows" type=
"bool" default=
"False"/> 
25914       <method name=
"SetRowSize" type=
"" overloaded=
"no"> 
25915         <autodoc>SetRowSize(int row, int height)
</autodoc> 
25917           <param name=
"row" type=
"int" default=
""/> 
25918           <param name=
"height" type=
"int" default=
""/> 
25921       <method name=
"SetDefaultColSize" type=
"" overloaded=
"no"> 
25922         <autodoc>SetDefaultColSize(int width, bool resizeExistingCols=False)
</autodoc> 
25924           <param name=
"width" type=
"int" default=
""/> 
25925           <param name=
"resizeExistingCols" type=
"bool" default=
"False"/> 
25928       <method name=
"SetColSize" type=
"" overloaded=
"no"> 
25929         <autodoc>SetColSize(int col, int width)
</autodoc> 
25931           <param name=
"col" type=
"int" default=
""/> 
25932           <param name=
"width" type=
"int" default=
""/> 
25935       <method name=
"AutoSizeColumn" type=
"" overloaded=
"no"> 
25936         <autodoc>AutoSizeColumn(int col, bool setAsMin=True)
</autodoc> 
25938           <param name=
"col" type=
"int" default=
""/> 
25939           <param name=
"setAsMin" type=
"bool" default=
"True"/> 
25942       <method name=
"AutoSizeRow" type=
"" overloaded=
"no"> 
25943         <autodoc>AutoSizeRow(int row, bool setAsMin=True)
</autodoc> 
25945           <param name=
"row" type=
"int" default=
""/> 
25946           <param name=
"setAsMin" type=
"bool" default=
"True"/> 
25949       <method name=
"AutoSizeColumns" type=
"" overloaded=
"no"> 
25950         <autodoc>AutoSizeColumns(bool setAsMin=True)
</autodoc> 
25952           <param name=
"setAsMin" type=
"bool" default=
"True"/> 
25955       <method name=
"AutoSizeRows" type=
"" overloaded=
"no"> 
25956         <autodoc>AutoSizeRows(bool setAsMin=True)
</autodoc> 
25958           <param name=
"setAsMin" type=
"bool" default=
"True"/> 
25961       <method name=
"AutoSize" type=
"" overloaded=
"no"> 
25962         <autodoc>AutoSize()
</autodoc> 
25964       <method name=
"AutoSizeRowLabelSize" type=
"" overloaded=
"no"> 
25965         <autodoc>AutoSizeRowLabelSize(int row)
</autodoc> 
25967           <param name=
"row" type=
"int" default=
""/> 
25970       <method name=
"AutoSizeColLabelSize" type=
"" overloaded=
"no"> 
25971         <autodoc>AutoSizeColLabelSize(int col)
</autodoc> 
25973           <param name=
"col" type=
"int" default=
""/> 
25976       <method name=
"SetColMinimalWidth" type=
"" overloaded=
"no"> 
25977         <autodoc>SetColMinimalWidth(int col, int width)
</autodoc> 
25979           <param name=
"col" type=
"int" default=
""/> 
25980           <param name=
"width" type=
"int" default=
""/> 
25983       <method name=
"SetRowMinimalHeight" type=
"" overloaded=
"no"> 
25984         <autodoc>SetRowMinimalHeight(int row, int width)
</autodoc> 
25986           <param name=
"row" type=
"int" default=
""/> 
25987           <param name=
"width" type=
"int" default=
""/> 
25990       <method name=
"SetColMinimalAcceptableWidth" type=
"" overloaded=
"no"> 
25991         <autodoc>SetColMinimalAcceptableWidth(int width)
</autodoc> 
25993           <param name=
"width" type=
"int" default=
""/> 
25996       <method name=
"SetRowMinimalAcceptableHeight" type=
"" overloaded=
"no"> 
25997         <autodoc>SetRowMinimalAcceptableHeight(int width)
</autodoc> 
25999           <param name=
"width" type=
"int" default=
""/> 
26002       <method name=
"GetColMinimalAcceptableWidth" type=
"int" overloaded=
"no"> 
26003         <autodoc>GetColMinimalAcceptableWidth() -
> int
</autodoc> 
26005       <method name=
"GetRowMinimalAcceptableHeight" type=
"int" overloaded=
"no"> 
26006         <autodoc>GetRowMinimalAcceptableHeight() -
> int
</autodoc> 
26008       <method name=
"SetDefaultCellBackgroundColour" type=
"" overloaded=
"no"> 
26009         <autodoc>SetDefaultCellBackgroundColour(Colour ??)
</autodoc> 
26011           <param name=
"" type=
"Colour" default=
""/> 
26014       <method name=
"SetCellBackgroundColour" type=
"" overloaded=
"no"> 
26015         <autodoc>SetCellBackgroundColour(int row, int col, Colour ??)
</autodoc> 
26017           <param name=
"row" type=
"int" default=
""/> 
26018           <param name=
"col" type=
"int" default=
""/> 
26019           <param name=
"" type=
"Colour" default=
""/> 
26022       <method name=
"SetDefaultCellTextColour" type=
"" overloaded=
"no"> 
26023         <autodoc>SetDefaultCellTextColour(Colour ??)
</autodoc> 
26025           <param name=
"" type=
"Colour" default=
""/> 
26028       <method name=
"SetCellTextColour" type=
"" overloaded=
"no"> 
26029         <autodoc>SetCellTextColour(int row, int col, Colour ??)
</autodoc> 
26031           <param name=
"row" type=
"int" default=
""/> 
26032           <param name=
"col" type=
"int" default=
""/> 
26033           <param name=
"" type=
"Colour" default=
""/> 
26036       <method name=
"SetDefaultCellFont" type=
"" overloaded=
"no"> 
26037         <autodoc>SetDefaultCellFont(Font ??)
</autodoc> 
26039           <param name=
"" type=
"Font" default=
""/> 
26042       <method name=
"SetCellFont" type=
"" overloaded=
"no"> 
26043         <autodoc>SetCellFont(int row, int col, Font ??)
</autodoc> 
26045           <param name=
"row" type=
"int" default=
""/> 
26046           <param name=
"col" type=
"int" default=
""/> 
26047           <param name=
"" type=
"Font" default=
""/> 
26050       <method name=
"SetDefaultCellAlignment" type=
"" overloaded=
"no"> 
26051         <autodoc>SetDefaultCellAlignment(int horiz, int vert)
</autodoc> 
26053           <param name=
"horiz" type=
"int" default=
""/> 
26054           <param name=
"vert" type=
"int" default=
""/> 
26057       <method name=
"SetCellAlignment" type=
"" overloaded=
"no"> 
26058         <autodoc>SetCellAlignment(int row, int col, int horiz, int vert)
</autodoc> 
26060           <param name=
"row" type=
"int" default=
""/> 
26061           <param name=
"col" type=
"int" default=
""/> 
26062           <param name=
"horiz" type=
"int" default=
""/> 
26063           <param name=
"vert" type=
"int" default=
""/> 
26066       <method name=
"SetDefaultCellOverflow" type=
"" overloaded=
"no"> 
26067         <autodoc>SetDefaultCellOverflow(bool allow)
</autodoc> 
26069           <param name=
"allow" type=
"bool" default=
""/> 
26072       <method name=
"SetCellOverflow" type=
"" overloaded=
"no"> 
26073         <autodoc>SetCellOverflow(int row, int col, bool allow)
</autodoc> 
26075           <param name=
"row" type=
"int" default=
""/> 
26076           <param name=
"col" type=
"int" default=
""/> 
26077           <param name=
"allow" type=
"bool" default=
""/> 
26080       <method name=
"SetCellSize" type=
"" overloaded=
"no"> 
26081         <autodoc>SetCellSize(int row, int col, int num_rows, int num_cols)
</autodoc> 
26083           <param name=
"row" type=
"int" default=
""/> 
26084           <param name=
"col" type=
"int" default=
""/> 
26085           <param name=
"num_rows" type=
"int" default=
""/> 
26086           <param name=
"num_cols" type=
"int" default=
""/> 
26089       <method name=
"SetDefaultRenderer" type=
"" overloaded=
"no"> 
26090         <autodoc>SetDefaultRenderer(GridCellRenderer renderer)
</autodoc> 
26092           <param name=
"renderer" type=
"GridCellRenderer" default=
""/> 
26095       <method name=
"SetCellRenderer" type=
"" overloaded=
"no"> 
26096         <autodoc>SetCellRenderer(int row, int col, GridCellRenderer renderer)
</autodoc> 
26098           <param name=
"row" type=
"int" default=
""/> 
26099           <param name=
"col" type=
"int" default=
""/> 
26100           <param name=
"renderer" type=
"GridCellRenderer" default=
""/> 
26103       <method name=
"GetDefaultRenderer" type=
"GridCellRenderer" overloaded=
"no"> 
26104         <autodoc>GetDefaultRenderer() -
> GridCellRenderer
</autodoc> 
26106       <method name=
"GetCellRenderer" type=
"GridCellRenderer" overloaded=
"no"> 
26107         <autodoc>GetCellRenderer(int row, int col) -
> GridCellRenderer
</autodoc> 
26109           <param name=
"row" type=
"int" default=
""/> 
26110           <param name=
"col" type=
"int" default=
""/> 
26113       <method name=
"SetDefaultEditor" type=
"" overloaded=
"no"> 
26114         <autodoc>SetDefaultEditor(GridCellEditor editor)
</autodoc> 
26116           <param name=
"editor" type=
"GridCellEditor" default=
""/> 
26119       <method name=
"SetCellEditor" type=
"" overloaded=
"no"> 
26120         <autodoc>SetCellEditor(int row, int col, GridCellEditor editor)
</autodoc> 
26122           <param name=
"row" type=
"int" default=
""/> 
26123           <param name=
"col" type=
"int" default=
""/> 
26124           <param name=
"editor" type=
"GridCellEditor" default=
""/> 
26127       <method name=
"GetDefaultEditor" type=
"GridCellEditor" overloaded=
"no"> 
26128         <autodoc>GetDefaultEditor() -
> GridCellEditor
</autodoc> 
26130       <method name=
"GetCellEditor" type=
"GridCellEditor" overloaded=
"no"> 
26131         <autodoc>GetCellEditor(int row, int col) -
> GridCellEditor
</autodoc> 
26133           <param name=
"row" type=
"int" default=
""/> 
26134           <param name=
"col" type=
"int" default=
""/> 
26137       <method name=
"GetCellValue" type=
"String" overloaded=
"no"> 
26138         <autodoc>GetCellValue(int row, int col) -
> String
</autodoc> 
26140           <param name=
"row" type=
"int" default=
""/> 
26141           <param name=
"col" type=
"int" default=
""/> 
26144       <method name=
"SetCellValue" type=
"" overloaded=
"no"> 
26145         <autodoc>SetCellValue(int row, int col, String s)
</autodoc> 
26147           <param name=
"row" type=
"int" default=
""/> 
26148           <param name=
"col" type=
"int" default=
""/> 
26149           <param name=
"s" type=
"String" default=
""/> 
26152       <method name=
"IsReadOnly" type=
"bool" overloaded=
"no"> 
26153         <autodoc>IsReadOnly(int row, int col) -
> bool
</autodoc> 
26155           <param name=
"row" type=
"int" default=
""/> 
26156           <param name=
"col" type=
"int" default=
""/> 
26159       <method name=
"SetReadOnly" type=
"" overloaded=
"no"> 
26160         <autodoc>SetReadOnly(int row, int col, bool isReadOnly=True)
</autodoc> 
26162           <param name=
"row" type=
"int" default=
""/> 
26163           <param name=
"col" type=
"int" default=
""/> 
26164           <param name=
"isReadOnly" type=
"bool" default=
"True"/> 
26167       <method name=
"SelectRow" type=
"" overloaded=
"no"> 
26168         <autodoc>SelectRow(int row, bool addToSelected=False)
</autodoc> 
26170           <param name=
"row" type=
"int" default=
""/> 
26171           <param name=
"addToSelected" type=
"bool" default=
"False"/> 
26174       <method name=
"SelectCol" type=
"" overloaded=
"no"> 
26175         <autodoc>SelectCol(int col, bool addToSelected=False)
</autodoc> 
26177           <param name=
"col" type=
"int" default=
""/> 
26178           <param name=
"addToSelected" type=
"bool" default=
"False"/> 
26181       <method name=
"SelectBlock" type=
"" overloaded=
"no"> 
26182         <autodoc>SelectBlock(int topRow, int leftCol, int bottomRow, int rightCol, 
 
26183     bool addToSelected=False)
</autodoc> 
26185           <param name=
"topRow" type=
"int" default=
""/> 
26186           <param name=
"leftCol" type=
"int" default=
""/> 
26187           <param name=
"bottomRow" type=
"int" default=
""/> 
26188           <param name=
"rightCol" type=
"int" default=
""/> 
26189           <param name=
"addToSelected" type=
"bool" default=
"False"/> 
26192       <method name=
"SelectAll" type=
"" overloaded=
"no"> 
26193         <autodoc>SelectAll()
</autodoc> 
26195       <method name=
"IsSelection" type=
"bool" overloaded=
"no"> 
26196         <autodoc>IsSelection() -
> bool
</autodoc> 
26198       <method name=
"ClearSelection" type=
"" overloaded=
"no"> 
26199         <autodoc>ClearSelection()
</autodoc> 
26201       <method name=
"IsInSelection" type=
"bool" overloaded=
"no"> 
26202         <autodoc>IsInSelection(int row, int col) -
> bool
</autodoc> 
26204           <param name=
"row" type=
"int" default=
""/> 
26205           <param name=
"col" type=
"int" default=
""/> 
26208       <method name=
"GetSelectedCells" type=
"wxGridCellCoordsArray" overloaded=
"no"> 
26209         <autodoc>GetSelectedCells() -
> wxGridCellCoordsArray
</autodoc> 
26211       <method name=
"GetSelectionBlockTopLeft" type=
"wxGridCellCoordsArray" overloaded=
"no"> 
26212         <autodoc>GetSelectionBlockTopLeft() -
> wxGridCellCoordsArray
</autodoc> 
26214       <method name=
"GetSelectionBlockBottomRight" type=
"wxGridCellCoordsArray" overloaded=
"no"> 
26215         <autodoc>GetSelectionBlockBottomRight() -
> wxGridCellCoordsArray
</autodoc> 
26217       <method name=
"GetSelectedRows" type=
"wxArrayInt" overloaded=
"no"> 
26218         <autodoc>GetSelectedRows() -
> wxArrayInt
</autodoc> 
26220       <method name=
"GetSelectedCols" type=
"wxArrayInt" overloaded=
"no"> 
26221         <autodoc>GetSelectedCols() -
> wxArrayInt
</autodoc> 
26223       <method name=
"DeselectRow" type=
"" overloaded=
"no"> 
26224         <autodoc>DeselectRow(int row)
</autodoc> 
26226           <param name=
"row" type=
"int" default=
""/> 
26229       <method name=
"DeselectCol" type=
"" overloaded=
"no"> 
26230         <autodoc>DeselectCol(int col)
</autodoc> 
26232           <param name=
"col" type=
"int" default=
""/> 
26235       <method name=
"DeselectCell" type=
"" overloaded=
"no"> 
26236         <autodoc>DeselectCell(int row, int col)
</autodoc> 
26238           <param name=
"row" type=
"int" default=
""/> 
26239           <param name=
"col" type=
"int" default=
""/> 
26242       <method name=
"BlockToDeviceRect" type=
"Rect" overloaded=
"no"> 
26243         <autodoc>BlockToDeviceRect(GridCellCoords topLeft, GridCellCoords bottomRight) -
> Rect
</autodoc> 
26245           <param name=
"topLeft" type=
"GridCellCoords" default=
""/> 
26246           <param name=
"bottomRight" type=
"GridCellCoords" default=
""/> 
26249       <method name=
"GetSelectionBackground" type=
"Colour" overloaded=
"no"> 
26250         <autodoc>GetSelectionBackground() -
> Colour
</autodoc> 
26252       <method name=
"GetSelectionForeground" type=
"Colour" overloaded=
"no"> 
26253         <autodoc>GetSelectionForeground() -
> Colour
</autodoc> 
26255       <method name=
"SetSelectionBackground" type=
"" overloaded=
"no"> 
26256         <autodoc>SetSelectionBackground(Colour c)
</autodoc> 
26258           <param name=
"c" type=
"Colour" default=
""/> 
26261       <method name=
"SetSelectionForeground" type=
"" overloaded=
"no"> 
26262         <autodoc>SetSelectionForeground(Colour c)
</autodoc> 
26264           <param name=
"c" type=
"Colour" default=
""/> 
26267       <method name=
"RegisterDataType" type=
"" overloaded=
"no"> 
26268         <autodoc>RegisterDataType(String typeName, GridCellRenderer renderer, GridCellEditor editor)
</autodoc> 
26270           <param name=
"typeName" type=
"String" default=
""/> 
26271           <param name=
"renderer" type=
"GridCellRenderer" default=
""/> 
26272           <param name=
"editor" type=
"GridCellEditor" default=
""/> 
26275       <method name=
"GetDefaultEditorForCell" type=
"GridCellEditor" overloaded=
"no"> 
26276         <autodoc>GetDefaultEditorForCell(int row, int col) -
> GridCellEditor
</autodoc> 
26278           <param name=
"row" type=
"int" default=
""/> 
26279           <param name=
"col" type=
"int" default=
""/> 
26282       <method name=
"GetDefaultRendererForCell" type=
"GridCellRenderer" overloaded=
"no"> 
26283         <autodoc>GetDefaultRendererForCell(int row, int col) -
> GridCellRenderer
</autodoc> 
26285           <param name=
"row" type=
"int" default=
""/> 
26286           <param name=
"col" type=
"int" default=
""/> 
26289       <method name=
"GetDefaultEditorForType" type=
"GridCellEditor" overloaded=
"no"> 
26290         <autodoc>GetDefaultEditorForType(String typeName) -
> GridCellEditor
</autodoc> 
26292           <param name=
"typeName" type=
"String" default=
""/> 
26295       <method name=
"GetDefaultRendererForType" type=
"GridCellRenderer" overloaded=
"no"> 
26296         <autodoc>GetDefaultRendererForType(String typeName) -
> GridCellRenderer
</autodoc> 
26298           <param name=
"typeName" type=
"String" default=
""/> 
26301       <method name=
"SetMargins" type=
"" overloaded=
"no"> 
26302         <autodoc>SetMargins(int extraWidth, int extraHeight)
</autodoc> 
26304           <param name=
"extraWidth" type=
"int" default=
""/> 
26305           <param name=
"extraHeight" type=
"int" default=
""/> 
26308       <method name=
"GetGridWindow" type=
"Window" overloaded=
"no"> 
26309         <autodoc>GetGridWindow() -
> Window
</autodoc> 
26311       <method name=
"GetGridRowLabelWindow" type=
"Window" overloaded=
"no"> 
26312         <autodoc>GetGridRowLabelWindow() -
> Window
</autodoc> 
26314       <method name=
"GetGridColLabelWindow" type=
"Window" overloaded=
"no"> 
26315         <autodoc>GetGridColLabelWindow() -
> Window
</autodoc> 
26317       <method name=
"GetGridCornerLabelWindow" type=
"Window" overloaded=
"no"> 
26318         <autodoc>GetGridCornerLabelWindow() -
> Window
</autodoc> 
26321     <class name=
"GridEvent" oldname=
"wxGridEvent" module=
"grid"> 
26322       <baseclass name=
"NotifyEvent"/> 
26323       <constructor name=
"GridEvent" overloaded=
"no"> 
26324         <autodoc>__init__(int id, wxEventType type, Grid obj, int row=-
1, int col=-
1, 
 
26325     int x=-
1, int y=-
1, bool sel=True, bool control=False, 
 
26326     bool shift=False, bool alt=False, 
 
26327     bool meta=False) -
> GridEvent
</autodoc> 
26329           <param name=
"id" type=
"int" default=
""/> 
26330           <param name=
"type" type=
"wxEventType" default=
""/> 
26331           <param name=
"obj" type=
"Grid" default=
""/> 
26332           <param name=
"row" type=
"int" default=
"-1"/> 
26333           <param name=
"col" type=
"int" default=
"-1"/> 
26334           <param name=
"x" type=
"int" default=
"-1"/> 
26335           <param name=
"y" type=
"int" default=
"-1"/> 
26336           <param name=
"sel" type=
"bool" default=
"True"/> 
26337           <param name=
"control" type=
"bool" default=
"False"/> 
26338           <param name=
"shift" type=
"bool" default=
"False"/> 
26339           <param name=
"alt" type=
"bool" default=
"False"/> 
26340           <param name=
"meta" type=
"bool" default=
"False"/> 
26343       <method name=
"GetRow" type=
"int" overloaded=
"no"> 
26344         <autodoc>GetRow() -
> int
</autodoc> 
26346       <method name=
"GetCol" type=
"int" overloaded=
"no"> 
26347         <autodoc>GetCol() -
> int
</autodoc> 
26349       <method name=
"GetPosition" type=
"Point" overloaded=
"no"> 
26350         <autodoc>GetPosition() -
> Point
</autodoc> 
26352       <method name=
"Selecting" type=
"bool" overloaded=
"no"> 
26353         <autodoc>Selecting() -
> bool
</autodoc> 
26355       <method name=
"ControlDown" type=
"bool" overloaded=
"no"> 
26356         <autodoc>ControlDown() -
> bool
</autodoc> 
26358       <method name=
"MetaDown" type=
"bool" overloaded=
"no"> 
26359         <autodoc>MetaDown() -
> bool
</autodoc> 
26361       <method name=
"ShiftDown" type=
"bool" overloaded=
"no"> 
26362         <autodoc>ShiftDown() -
> bool
</autodoc> 
26364       <method name=
"AltDown" type=
"bool" overloaded=
"no"> 
26365         <autodoc>AltDown() -
> bool
</autodoc> 
26368     <class name=
"GridSizeEvent" oldname=
"wxGridSizeEvent" module=
"grid"> 
26369       <baseclass name=
"NotifyEvent"/> 
26370       <constructor name=
"GridSizeEvent" overloaded=
"no"> 
26371         <autodoc>__init__(int id, wxEventType type, Grid obj, int rowOrCol=-
1, 
 
26372     int x=-
1, int y=-
1, bool control=False, bool shift=False, 
 
26373     bool alt=False, bool meta=False) -
> GridSizeEvent
</autodoc> 
26375           <param name=
"id" type=
"int" default=
""/> 
26376           <param name=
"type" type=
"wxEventType" default=
""/> 
26377           <param name=
"obj" type=
"Grid" default=
""/> 
26378           <param name=
"rowOrCol" type=
"int" default=
"-1"/> 
26379           <param name=
"x" type=
"int" default=
"-1"/> 
26380           <param name=
"y" type=
"int" default=
"-1"/> 
26381           <param name=
"control" type=
"bool" default=
"False"/> 
26382           <param name=
"shift" type=
"bool" default=
"False"/> 
26383           <param name=
"alt" type=
"bool" default=
"False"/> 
26384           <param name=
"meta" type=
"bool" default=
"False"/> 
26387       <method name=
"GetRowOrCol" type=
"int" overloaded=
"no"> 
26388         <autodoc>GetRowOrCol() -
> int
</autodoc> 
26390       <method name=
"GetPosition" type=
"Point" overloaded=
"no"> 
26391         <autodoc>GetPosition() -
> Point
</autodoc> 
26393       <method name=
"ControlDown" type=
"bool" overloaded=
"no"> 
26394         <autodoc>ControlDown() -
> bool
</autodoc> 
26396       <method name=
"MetaDown" type=
"bool" overloaded=
"no"> 
26397         <autodoc>MetaDown() -
> bool
</autodoc> 
26399       <method name=
"ShiftDown" type=
"bool" overloaded=
"no"> 
26400         <autodoc>ShiftDown() -
> bool
</autodoc> 
26402       <method name=
"AltDown" type=
"bool" overloaded=
"no"> 
26403         <autodoc>AltDown() -
> bool
</autodoc> 
26406     <class name=
"GridRangeSelectEvent" oldname=
"wxGridRangeSelectEvent" module=
"grid"> 
26407       <baseclass name=
"NotifyEvent"/> 
26408       <constructor name=
"GridRangeSelectEvent" overloaded=
"no"> 
26409         <autodoc>__init__(int id, wxEventType type, Grid obj, GridCellCoords topLeft, 
 
26410     GridCellCoords bottomRight, bool sel=True, 
 
26411     bool control=False, bool shift=False, 
 
26412     bool alt=False, bool meta=False) -
> GridRangeSelectEvent
</autodoc> 
26414           <param name=
"id" type=
"int" default=
""/> 
26415           <param name=
"type" type=
"wxEventType" default=
""/> 
26416           <param name=
"obj" type=
"Grid" default=
""/> 
26417           <param name=
"topLeft" type=
"GridCellCoords" default=
""/> 
26418           <param name=
"bottomRight" type=
"GridCellCoords" default=
""/> 
26419           <param name=
"sel" type=
"bool" default=
"True"/> 
26420           <param name=
"control" type=
"bool" default=
"False"/> 
26421           <param name=
"shift" type=
"bool" default=
"False"/> 
26422           <param name=
"alt" type=
"bool" default=
"False"/> 
26423           <param name=
"meta" type=
"bool" default=
"False"/> 
26426       <method name=
"GetTopLeftCoords" type=
"GridCellCoords" overloaded=
"no"> 
26427         <autodoc>GetTopLeftCoords() -
> GridCellCoords
</autodoc> 
26429       <method name=
"GetBottomRightCoords" type=
"GridCellCoords" overloaded=
"no"> 
26430         <autodoc>GetBottomRightCoords() -
> GridCellCoords
</autodoc> 
26432       <method name=
"GetTopRow" type=
"int" overloaded=
"no"> 
26433         <autodoc>GetTopRow() -
> int
</autodoc> 
26435       <method name=
"GetBottomRow" type=
"int" overloaded=
"no"> 
26436         <autodoc>GetBottomRow() -
> int
</autodoc> 
26438       <method name=
"GetLeftCol" type=
"int" overloaded=
"no"> 
26439         <autodoc>GetLeftCol() -
> int
</autodoc> 
26441       <method name=
"GetRightCol" type=
"int" overloaded=
"no"> 
26442         <autodoc>GetRightCol() -
> int
</autodoc> 
26444       <method name=
"Selecting" type=
"bool" overloaded=
"no"> 
26445         <autodoc>Selecting() -
> bool
</autodoc> 
26447       <method name=
"ControlDown" type=
"bool" overloaded=
"no"> 
26448         <autodoc>ControlDown() -
> bool
</autodoc> 
26450       <method name=
"MetaDown" type=
"bool" overloaded=
"no"> 
26451         <autodoc>MetaDown() -
> bool
</autodoc> 
26453       <method name=
"ShiftDown" type=
"bool" overloaded=
"no"> 
26454         <autodoc>ShiftDown() -
> bool
</autodoc> 
26456       <method name=
"AltDown" type=
"bool" overloaded=
"no"> 
26457         <autodoc>AltDown() -
> bool
</autodoc> 
26460     <class name=
"GridEditorCreatedEvent" oldname=
"wxGridEditorCreatedEvent" module=
"grid"> 
26461       <baseclass name=
"CommandEvent"/> 
26462       <constructor name=
"GridEditorCreatedEvent" overloaded=
"no"> 
26463         <autodoc>__init__(int id, wxEventType type, Object obj, int row, int col, 
 
26464     Control ctrl) -
> GridEditorCreatedEvent
</autodoc> 
26466           <param name=
"id" type=
"int" default=
""/> 
26467           <param name=
"type" type=
"wxEventType" default=
""/> 
26468           <param name=
"obj" type=
"Object" default=
""/> 
26469           <param name=
"row" type=
"int" default=
""/> 
26470           <param name=
"col" type=
"int" default=
""/> 
26471           <param name=
"ctrl" type=
"Control" default=
""/> 
26474       <method name=
"GetRow" type=
"int" overloaded=
"no"> 
26475         <autodoc>GetRow() -
> int
</autodoc> 
26477       <method name=
"GetCol" type=
"int" overloaded=
"no"> 
26478         <autodoc>GetCol() -
> int
</autodoc> 
26480       <method name=
"GetControl" type=
"Control" overloaded=
"no"> 
26481         <autodoc>GetControl() -
> Control
</autodoc> 
26483       <method name=
"SetRow" type=
"" overloaded=
"no"> 
26484         <autodoc>SetRow(int row)
</autodoc> 
26486           <param name=
"row" type=
"int" default=
""/> 
26489       <method name=
"SetCol" type=
"" overloaded=
"no"> 
26490         <autodoc>SetCol(int col)
</autodoc> 
26492           <param name=
"col" type=
"int" default=
""/> 
26495       <method name=
"SetControl" type=
"" overloaded=
"no"> 
26496         <autodoc>SetControl(Control ctrl)
</autodoc> 
26498           <param name=
"ctrl" type=
"Control" default=
""/> 
26503 EVT_GRID_CELL_LEFT_CLICK = wx.PyEventBinder( wxEVT_GRID_CELL_LEFT_CLICK )
 
26504 EVT_GRID_CELL_RIGHT_CLICK = wx.PyEventBinder( wxEVT_GRID_CELL_RIGHT_CLICK )
 
26505 EVT_GRID_CELL_LEFT_DCLICK = wx.PyEventBinder( wxEVT_GRID_CELL_LEFT_DCLICK )
 
26506 EVT_GRID_CELL_RIGHT_DCLICK = wx.PyEventBinder( wxEVT_GRID_CELL_RIGHT_DCLICK )
 
26507 EVT_GRID_LABEL_LEFT_CLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_LEFT_CLICK )
 
26508 EVT_GRID_LABEL_RIGHT_CLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_RIGHT_CLICK )
 
26509 EVT_GRID_LABEL_LEFT_DCLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_LEFT_DCLICK )
 
26510 EVT_GRID_LABEL_RIGHT_DCLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_RIGHT_DCLICK )
 
26511 EVT_GRID_ROW_SIZE = wx.PyEventBinder( wxEVT_GRID_ROW_SIZE )
 
26512 EVT_GRID_COL_SIZE = wx.PyEventBinder( wxEVT_GRID_COL_SIZE )
 
26513 EVT_GRID_RANGE_SELECT = wx.PyEventBinder( wxEVT_GRID_RANGE_SELECT )
 
26514 EVT_GRID_CELL_CHANGE = wx.PyEventBinder( wxEVT_GRID_CELL_CHANGE )
 
26515 EVT_GRID_SELECT_CELL = wx.PyEventBinder( wxEVT_GRID_SELECT_CELL )
 
26516 EVT_GRID_EDITOR_SHOWN = wx.PyEventBinder( wxEVT_GRID_EDITOR_SHOWN )
 
26517 EVT_GRID_EDITOR_HIDDEN = wx.PyEventBinder( wxEVT_GRID_EDITOR_HIDDEN )
 
26518 EVT_GRID_EDITOR_CREATED = wx.PyEventBinder( wxEVT_GRID_EDITOR_CREATED )
 
26521   <module name=
"html"> 
26522     <import name=
"windows"/> 
26523     <pythoncode> wx = core 
</pythoncode> 
26525 #---------------------------------------------------------------------------
 
26527     <class name=
"HtmlLinkInfo" oldname=
"wxHtmlLinkInfo" module=
"html"> 
26528       <baseclass name=
"Object"/> 
26529       <constructor name=
"HtmlLinkInfo" overloaded=
"no"> 
26530         <autodoc>__init__(String href, String target=EmptyString) -
> HtmlLinkInfo
</autodoc> 
26532           <param name=
"href" type=
"String" default=
""/> 
26533           <param name=
"target" type=
"String" default=
"wxPyEmptyString"/> 
26536       <method name=
"GetHref" type=
"String" overloaded=
"no"> 
26537         <autodoc>GetHref() -
> String
</autodoc> 
26539       <method name=
"GetTarget" type=
"String" overloaded=
"no"> 
26540         <autodoc>GetTarget() -
> String
</autodoc> 
26542       <method name=
"GetEvent" type=
"MouseEvent" overloaded=
"no"> 
26543         <autodoc>GetEvent() -
> MouseEvent
</autodoc> 
26545       <method name=
"GetHtmlCell" type=
"wxHtmlCell" overloaded=
"no"> 
26546         <autodoc>GetHtmlCell() -
> HtmlCell
</autodoc> 
26548       <method name=
"SetEvent" type=
"" overloaded=
"no"> 
26549         <autodoc>SetEvent(MouseEvent e)
</autodoc> 
26551           <param name=
"e" type=
"MouseEvent" default=
""/> 
26554       <method name=
"SetHtmlCell" type=
"" overloaded=
"no"> 
26555         <autodoc>SetHtmlCell(HtmlCell e)
</autodoc> 
26557           <param name=
"e" type=
"wxHtmlCell" default=
""/> 
26561     <class name=
"HtmlTag" oldname=
"wxHtmlTag" module=
"html"> 
26562       <baseclass name=
"Object"/> 
26563       <method name=
"GetName" type=
"String" overloaded=
"no"> 
26564         <autodoc>GetName() -
> String
</autodoc> 
26566       <method name=
"HasParam" type=
"bool" overloaded=
"no"> 
26567         <autodoc>HasParam(String par) -
> bool
</autodoc> 
26569           <param name=
"par" type=
"String" default=
""/> 
26572       <method name=
"GetParam" type=
"String" overloaded=
"no"> 
26573         <autodoc>GetParam(String par, int with_commas=False) -
> String
</autodoc> 
26575           <param name=
"par" type=
"String" default=
""/> 
26576           <param name=
"with_commas" type=
"int" default=
"False"/> 
26579       <method name=
"GetAllParams" type=
"String" overloaded=
"no"> 
26580         <autodoc>GetAllParams() -
> String
</autodoc> 
26582       <method name=
"HasEnding" type=
"bool" overloaded=
"no"> 
26583         <autodoc>HasEnding() -
> bool
</autodoc> 
26585       <method name=
"GetBeginPos" type=
"int" overloaded=
"no"> 
26586         <autodoc>GetBeginPos() -
> int
</autodoc> 
26588       <method name=
"GetEndPos1" type=
"int" overloaded=
"no"> 
26589         <autodoc>GetEndPos1() -
> int
</autodoc> 
26591       <method name=
"GetEndPos2" type=
"int" overloaded=
"no"> 
26592         <autodoc>GetEndPos2() -
> int
</autodoc> 
26595     <class name=
"HtmlParser" oldname=
"wxHtmlParser" module=
"html"> 
26596       <baseclass name=
"Object"/> 
26597       <method name=
"SetFS" type=
"" overloaded=
"no"> 
26598         <autodoc>SetFS(FileSystem fs)
</autodoc> 
26600           <param name=
"fs" type=
"FileSystem" default=
""/> 
26603       <method name=
"GetFS" type=
"FileSystem" overloaded=
"no"> 
26604         <autodoc>GetFS() -
> FileSystem
</autodoc> 
26606       <method name=
"Parse" type=
"Object" overloaded=
"no"> 
26607         <autodoc>Parse(String source) -
> Object
</autodoc> 
26609           <param name=
"source" type=
"String" default=
""/> 
26612       <method name=
"InitParser" type=
"" overloaded=
"no"> 
26613         <autodoc>InitParser(String source)
</autodoc> 
26615           <param name=
"source" type=
"String" default=
""/> 
26618       <method name=
"DoneParser" type=
"" overloaded=
"no"> 
26619         <autodoc>DoneParser()
</autodoc> 
26621       <method name=
"DoParsing" type=
"" overloaded=
"no"> 
26622         <autodoc>DoParsing(int begin_pos, int end_pos)
</autodoc> 
26624           <param name=
"begin_pos" type=
"int" default=
""/> 
26625           <param name=
"end_pos" type=
"int" default=
""/> 
26628       <method name=
"StopParsing" type=
"" overloaded=
"no"> 
26629         <autodoc>StopParsing()
</autodoc> 
26631       <method name=
"AddTagHandler" type=
"" overloaded=
"no"> 
26632         <autodoc>AddTagHandler(HtmlTagHandler handler)
</autodoc> 
26634           <param name=
"handler" type=
"wxHtmlTagHandler" default=
""/> 
26637       <method name=
"GetSource" type=
"String" overloaded=
"no"> 
26638         <autodoc>GetSource() -
> String
</autodoc> 
26640       <method name=
"PushTagHandler" type=
"" overloaded=
"no"> 
26641         <autodoc>PushTagHandler(HtmlTagHandler handler, String tags)
</autodoc> 
26643           <param name=
"handler" type=
"wxHtmlTagHandler" default=
""/> 
26644           <param name=
"tags" type=
"String" default=
""/> 
26647       <method name=
"PopTagHandler" type=
"" overloaded=
"no"> 
26648         <autodoc>PopTagHandler()
</autodoc> 
26651     <class name=
"HtmlWinParser" oldname=
"wxHtmlWinParser" module=
"html"> 
26652       <baseclass name=
"HtmlParser"/> 
26653       <constructor name=
"HtmlWinParser" overloaded=
"no"> 
26654         <autodoc>__init__(HtmlWindow wnd=None) -
> HtmlWinParser
</autodoc> 
26656           <param name=
"wnd" type=
"wxPyHtmlWindow" default=
"NULL"/> 
26659       <method name=
"SetDC" type=
"" overloaded=
"no"> 
26660         <autodoc>SetDC(DC dc)
</autodoc> 
26662           <param name=
"dc" type=
"DC" default=
""/> 
26665       <method name=
"GetDC" type=
"DC" overloaded=
"no"> 
26666         <autodoc>GetDC() -
> DC
</autodoc> 
26668       <method name=
"GetCharHeight" type=
"int" overloaded=
"no"> 
26669         <autodoc>GetCharHeight() -
> int
</autodoc> 
26671       <method name=
"GetCharWidth" type=
"int" overloaded=
"no"> 
26672         <autodoc>GetCharWidth() -
> int
</autodoc> 
26674       <method name=
"GetWindow" type=
"wxPyHtmlWindow" overloaded=
"no"> 
26675         <autodoc>GetWindow() -
> HtmlWindow
</autodoc> 
26677       <method name=
"SetFonts" type=
"" overloaded=
"no"> 
26678         <autodoc>SetFonts(String normal_face, String fixed_face, PyObject sizes=None)
</autodoc> 
26680           <param name=
"normal_face" type=
"String" default=
""/> 
26681           <param name=
"fixed_face" type=
"String" default=
""/> 
26682           <param name=
"sizes" type=
"PyObject" default=
"NULL"/> 
26685       <method name=
"GetContainer" type=
"wxHtmlContainerCell" overloaded=
"no"> 
26686         <autodoc>GetContainer() -
> HtmlContainerCell
</autodoc> 
26688       <method name=
"OpenContainer" type=
"wxHtmlContainerCell" overloaded=
"no"> 
26689         <autodoc>OpenContainer() -
> HtmlContainerCell
</autodoc> 
26691       <method name=
"SetContainer" type=
"wxHtmlContainerCell" overloaded=
"no"> 
26692         <autodoc>SetContainer(HtmlContainerCell c) -
> HtmlContainerCell
</autodoc> 
26694           <param name=
"c" type=
"wxHtmlContainerCell" default=
""/> 
26697       <method name=
"CloseContainer" type=
"wxHtmlContainerCell" overloaded=
"no"> 
26698         <autodoc>CloseContainer() -
> HtmlContainerCell
</autodoc> 
26700       <method name=
"GetFontSize" type=
"int" overloaded=
"no"> 
26701         <autodoc>GetFontSize() -
> int
</autodoc> 
26703       <method name=
"SetFontSize" type=
"" overloaded=
"no"> 
26704         <autodoc>SetFontSize(int s)
</autodoc> 
26706           <param name=
"s" type=
"int" default=
""/> 
26709       <method name=
"GetFontBold" type=
"int" overloaded=
"no"> 
26710         <autodoc>GetFontBold() -
> int
</autodoc> 
26712       <method name=
"SetFontBold" type=
"" overloaded=
"no"> 
26713         <autodoc>SetFontBold(int x)
</autodoc> 
26715           <param name=
"x" type=
"int" default=
""/> 
26718       <method name=
"GetFontItalic" type=
"int" overloaded=
"no"> 
26719         <autodoc>GetFontItalic() -
> int
</autodoc> 
26721       <method name=
"SetFontItalic" type=
"" overloaded=
"no"> 
26722         <autodoc>SetFontItalic(int x)
</autodoc> 
26724           <param name=
"x" type=
"int" default=
""/> 
26727       <method name=
"GetFontUnderlined" type=
"int" overloaded=
"no"> 
26728         <autodoc>GetFontUnderlined() -
> int
</autodoc> 
26730       <method name=
"SetFontUnderlined" type=
"" overloaded=
"no"> 
26731         <autodoc>SetFontUnderlined(int x)
</autodoc> 
26733           <param name=
"x" type=
"int" default=
""/> 
26736       <method name=
"GetFontFixed" type=
"int" overloaded=
"no"> 
26737         <autodoc>GetFontFixed() -
> int
</autodoc> 
26739       <method name=
"SetFontFixed" type=
"" overloaded=
"no"> 
26740         <autodoc>SetFontFixed(int x)
</autodoc> 
26742           <param name=
"x" type=
"int" default=
""/> 
26745       <method name=
"GetAlign" type=
"int" overloaded=
"no"> 
26746         <autodoc>GetAlign() -
> int
</autodoc> 
26748       <method name=
"SetAlign" type=
"" overloaded=
"no"> 
26749         <autodoc>SetAlign(int a)
</autodoc> 
26751           <param name=
"a" type=
"int" default=
""/> 
26754       <method name=
"GetLinkColor" type=
"Colour" overloaded=
"no"> 
26755         <autodoc>GetLinkColor() -
> Colour
</autodoc> 
26757       <method name=
"SetLinkColor" type=
"" overloaded=
"no"> 
26758         <autodoc>SetLinkColor(Colour clr)
</autodoc> 
26760           <param name=
"clr" type=
"Colour" default=
""/> 
26763       <method name=
"GetActualColor" type=
"Colour" overloaded=
"no"> 
26764         <autodoc>GetActualColor() -
> Colour
</autodoc> 
26766       <method name=
"SetActualColor" type=
"" overloaded=
"no"> 
26767         <autodoc>SetActualColor(Colour clr)
</autodoc> 
26769           <param name=
"clr" type=
"Colour" default=
""/> 
26772       <method name=
"SetLink" type=
"" overloaded=
"no"> 
26773         <autodoc>SetLink(String link)
</autodoc> 
26775           <param name=
"link" type=
"String" default=
""/> 
26778       <method name=
"CreateCurrentFont" type=
"Font" overloaded=
"no"> 
26779         <autodoc>CreateCurrentFont() -
> Font
</autodoc> 
26781       <method name=
"GetLink" type=
"HtmlLinkInfo" overloaded=
"no"> 
26782         <autodoc>GetLink() -
> HtmlLinkInfo
</autodoc> 
26785     <class name=
"HtmlTagHandler" oldname=
"wxPyHtmlTagHandler" module=
"html"> 
26786       <baseclass name=
"Object"/> 
26787       <constructor name=
"wxPyHtmlTagHandler" overloaded=
"no"> 
26788         <autodoc>__init__() -
> HtmlTagHandler
</autodoc> 
26790       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
26791         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
26793           <param name=
"self" type=
"PyObject" default=
""/> 
26794           <param name=
"_class" type=
"PyObject" default=
""/> 
26797       <method name=
"SetParser" type=
"" overloaded=
"no"> 
26798         <autodoc>SetParser(HtmlParser parser)
</autodoc> 
26800           <param name=
"parser" type=
"HtmlParser" default=
""/> 
26803       <method name=
"GetParser" type=
"HtmlParser" overloaded=
"no"> 
26804         <autodoc>GetParser() -
> HtmlParser
</autodoc> 
26806       <method name=
"ParseInner" type=
"" overloaded=
"no"> 
26807         <autodoc>ParseInner(HtmlTag tag)
</autodoc> 
26809           <param name=
"tag" type=
"HtmlTag" default=
""/> 
26813     <class name=
"HtmlWinTagHandler" oldname=
"wxPyHtmlWinTagHandler" module=
"html"> 
26814       <baseclass name=
"HtmlTagHandler"/> 
26815       <constructor name=
"wxPyHtmlWinTagHandler" overloaded=
"no"> 
26816         <autodoc>__init__() -
> HtmlWinTagHandler
</autodoc> 
26818       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
26819         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
26821           <param name=
"self" type=
"PyObject" default=
""/> 
26822           <param name=
"_class" type=
"PyObject" default=
""/> 
26825       <method name=
"SetParser" type=
"" overloaded=
"no"> 
26826         <autodoc>SetParser(HtmlParser parser)
</autodoc> 
26828           <param name=
"parser" type=
"HtmlParser" default=
""/> 
26831       <method name=
"GetParser" type=
"HtmlWinParser" overloaded=
"no"> 
26832         <autodoc>GetParser() -
> HtmlWinParser
</autodoc> 
26834       <method name=
"ParseInner" type=
"" overloaded=
"no"> 
26835         <autodoc>ParseInner(HtmlTag tag)
</autodoc> 
26837           <param name=
"tag" type=
"HtmlTag" default=
""/> 
26841     <method name=
"HtmlWinParser_AddTagHandler" oldname=
"wxHtmlWinParser_AddTagHandler" type=
"" overloaded=
"no"> 
26842       <autodoc>HtmlWinParser_AddTagHandler(PyObject tagHandlerClass)
</autodoc> 
26844         <param name=
"tagHandlerClass" type=
"PyObject" default=
""/> 
26848 #---------------------------------------------------------------------------
 
26850     <class name=
"HtmlSelection" oldname=
"wxHtmlSelection" module=
"html"> 
26851       <constructor name=
"HtmlSelection" overloaded=
"no"> 
26852         <autodoc>__init__() -
> HtmlSelection
</autodoc> 
26854       <destructor name=
"~wxHtmlSelection" overloaded=
"no"> 
26855         <autodoc>__del__()
</autodoc> 
26857       <method name=
"Set" type=
"" overloaded=
"no"> 
26858         <autodoc>Set(Point fromPos, HtmlCell fromCell, Point toPos, HtmlCell toCell)
</autodoc> 
26860           <param name=
"fromPos" type=
"Point" default=
""/> 
26861           <param name=
"fromCell" type=
"wxHtmlCell" default=
""/> 
26862           <param name=
"toPos" type=
"Point" default=
""/> 
26863           <param name=
"toCell" type=
"wxHtmlCell" default=
""/> 
26866       <method name=
"SetCells" type=
"" overloaded=
"no"> 
26867         <autodoc>SetCells(HtmlCell fromCell, HtmlCell toCell)
</autodoc> 
26869           <param name=
"fromCell" type=
"wxHtmlCell" default=
""/> 
26870           <param name=
"toCell" type=
"wxHtmlCell" default=
""/> 
26873       <method name=
"GetFromCell" type=
"wxHtmlCell" overloaded=
"no"> 
26874         <autodoc>GetFromCell() -
> HtmlCell
</autodoc> 
26876       <method name=
"GetToCell" type=
"wxHtmlCell" overloaded=
"no"> 
26877         <autodoc>GetToCell() -
> HtmlCell
</autodoc> 
26879       <method name=
"GetFromPos" type=
"Point" overloaded=
"no"> 
26880         <autodoc>GetFromPos() -
> Point
</autodoc> 
26882       <method name=
"GetToPos" type=
"Point" overloaded=
"no"> 
26883         <autodoc>GetToPos() -
> Point
</autodoc> 
26885       <method name=
"GetFromPrivPos" type=
"Point" overloaded=
"no"> 
26886         <autodoc>GetFromPrivPos() -
> Point
</autodoc> 
26888       <method name=
"GetToPrivPos" type=
"Point" overloaded=
"no"> 
26889         <autodoc>GetToPrivPos() -
> Point
</autodoc> 
26891       <method name=
"SetFromPrivPos" type=
"" overloaded=
"no"> 
26892         <autodoc>SetFromPrivPos(Point pos)
</autodoc> 
26894           <param name=
"pos" type=
"Point" default=
""/> 
26897       <method name=
"SetToPrivPos" type=
"" overloaded=
"no"> 
26898         <autodoc>SetToPrivPos(Point pos)
</autodoc> 
26900           <param name=
"pos" type=
"Point" default=
""/> 
26903       <method name=
"ClearPrivPos" type=
"" overloaded=
"no"> 
26904         <autodoc>ClearPrivPos()
</autodoc> 
26906       <method name=
"IsEmpty" type=
"bool" overloaded=
"no"> 
26907         <autodoc>IsEmpty() -
> bool
</autodoc> 
26910     <class name=
"HtmlRenderingState" oldname=
"wxHtmlRenderingState" module=
"html"> 
26911       <constructor name=
"HtmlRenderingState" overloaded=
"no"> 
26912         <autodoc>__init__() -
> HtmlRenderingState
</autodoc> 
26914       <destructor name=
"~wxHtmlRenderingState" overloaded=
"no"> 
26915         <autodoc>__del__()
</autodoc> 
26917       <method name=
"SetSelectionState" type=
"" overloaded=
"no"> 
26918         <autodoc>SetSelectionState(int s)
</autodoc> 
26920           <param name=
"s" type=
"wxHtmlSelectionState" default=
""/> 
26923       <method name=
"GetSelectionState" type=
"wxHtmlSelectionState" overloaded=
"no"> 
26924         <autodoc>GetSelectionState() -
> int
</autodoc> 
26926       <method name=
"SetFgColour" type=
"" overloaded=
"no"> 
26927         <autodoc>SetFgColour(Colour c)
</autodoc> 
26929           <param name=
"c" type=
"Colour" default=
""/> 
26932       <method name=
"GetFgColour" type=
"Colour" overloaded=
"no"> 
26933         <autodoc>GetFgColour() -
> Colour
</autodoc> 
26935       <method name=
"SetBgColour" type=
"" overloaded=
"no"> 
26936         <autodoc>SetBgColour(Colour c)
</autodoc> 
26938           <param name=
"c" type=
"Colour" default=
""/> 
26941       <method name=
"GetBgColour" type=
"Colour" overloaded=
"no"> 
26942         <autodoc>GetBgColour() -
> Colour
</autodoc> 
26945     <class name=
"HtmlRenderingStyle" oldname=
"wxHtmlRenderingStyle" module=
"html"> 
26946       <method name=
"GetSelectedTextColour" type=
"Colour" overloaded=
"no"> 
26947         <autodoc>GetSelectedTextColour(Colour clr) -
> Colour
</autodoc> 
26949           <param name=
"clr" type=
"Colour" default=
""/> 
26952       <method name=
"GetSelectedTextBgColour" type=
"Colour" overloaded=
"no"> 
26953         <autodoc>GetSelectedTextBgColour(Colour clr) -
> Colour
</autodoc> 
26955           <param name=
"clr" type=
"Colour" default=
""/> 
26959     <class name=
"DefaultHtmlRenderingStyle" oldname=
"wxDefaultHtmlRenderingStyle" module=
"html"> 
26960       <baseclass name=
"HtmlRenderingStyle"/> 
26961       <method name=
"GetSelectedTextColour" type=
"Colour" overloaded=
"no"> 
26962         <autodoc>GetSelectedTextColour(Colour clr) -
> Colour
</autodoc> 
26964           <param name=
"clr" type=
"Colour" default=
""/> 
26967       <method name=
"GetSelectedTextBgColour" type=
"Colour" overloaded=
"no"> 
26968         <autodoc>GetSelectedTextBgColour(Colour clr) -
> Colour
</autodoc> 
26970           <param name=
"clr" type=
"Colour" default=
""/> 
26974     <class name=
"HtmlRenderingInfo" oldname=
"wxHtmlRenderingInfo" module=
"html"> 
26975       <constructor name=
"HtmlRenderingInfo" overloaded=
"no"> 
26976         <autodoc>__init__() -
> HtmlRenderingInfo
</autodoc> 
26978       <destructor name=
"~wxHtmlRenderingInfo" overloaded=
"no"> 
26979         <autodoc>__del__()
</autodoc> 
26981       <method name=
"SetSelection" type=
"" overloaded=
"no"> 
26982         <autodoc>SetSelection(HtmlSelection s)
</autodoc> 
26984           <param name=
"s" type=
"HtmlSelection" default=
""/> 
26987       <method name=
"GetSelection" type=
"HtmlSelection" overloaded=
"no"> 
26988         <autodoc>GetSelection() -
> HtmlSelection
</autodoc> 
26990       <method name=
"SetStyle" type=
"" overloaded=
"no"> 
26991         <autodoc>SetStyle(HtmlRenderingStyle style)
</autodoc> 
26993           <param name=
"style" type=
"HtmlRenderingStyle" default=
""/> 
26996       <method name=
"GetStyle" type=
"HtmlRenderingStyle" overloaded=
"no"> 
26997         <autodoc>GetStyle() -
> HtmlRenderingStyle
</autodoc> 
26999       <method name=
"GetState" type=
"HtmlRenderingState" overloaded=
"no"> 
27000         <autodoc>GetState() -
> HtmlRenderingState
</autodoc> 
27004 #---------------------------------------------------------------------------
 
27006     <class name=
"HtmlCell" oldname=
"wxHtmlCell" module=
"html"> 
27007       <baseclass name=
"Object"/> 
27008       <constructor name=
"HtmlCell" overloaded=
"no"> 
27009         <autodoc>__init__() -
> HtmlCell
</autodoc> 
27011       <method name=
"GetPosX" type=
"int" overloaded=
"no"> 
27012         <autodoc>GetPosX() -
> int
</autodoc> 
27014       <method name=
"GetPosY" type=
"int" overloaded=
"no"> 
27015         <autodoc>GetPosY() -
> int
</autodoc> 
27017       <method name=
"GetWidth" type=
"int" overloaded=
"no"> 
27018         <autodoc>GetWidth() -
> int
</autodoc> 
27020       <method name=
"GetHeight" type=
"int" overloaded=
"no"> 
27021         <autodoc>GetHeight() -
> int
</autodoc> 
27023       <method name=
"GetDescent" type=
"int" overloaded=
"no"> 
27024         <autodoc>GetDescent() -
> int
</autodoc> 
27026       <method name=
"GetMaxTotalWidth" type=
"int" overloaded=
"no"> 
27027         <autodoc>GetMaxTotalWidth() -
> int
</autodoc> 
27029       <method name=
"GetId" type=
"String" overloaded=
"no"> 
27030         <autodoc>GetId() -
> String
</autodoc> 
27032       <method name=
"SetId" type=
"" overloaded=
"no"> 
27033         <autodoc>SetId(String id)
</autodoc> 
27035           <param name=
"id" type=
"String" default=
""/> 
27038       <method name=
"GetLink" type=
"HtmlLinkInfo" overloaded=
"no"> 
27039         <autodoc>GetLink(int x=
0, int y=
0) -
> HtmlLinkInfo
</autodoc> 
27041           <param name=
"x" type=
"int" default=
"0"/> 
27042           <param name=
"y" type=
"int" default=
"0"/> 
27045       <method name=
"GetNext" type=
"HtmlCell" overloaded=
"no"> 
27046         <autodoc>GetNext() -
> HtmlCell
</autodoc> 
27048       <method name=
"GetParent" type=
"wxHtmlContainerCell" overloaded=
"no"> 
27049         <autodoc>GetParent() -
> HtmlContainerCell
</autodoc> 
27051       <method name=
"GetFirstChild" type=
"HtmlCell" overloaded=
"no"> 
27052         <autodoc>GetFirstChild() -
> HtmlCell
</autodoc> 
27054       <method name=
"GetCursor" type=
"Cursor" overloaded=
"no"> 
27055         <autodoc>GetCursor() -
> Cursor
</autodoc> 
27057       <method name=
"IsFormattingCell" type=
"bool" overloaded=
"no"> 
27058         <autodoc>IsFormattingCell() -
> bool
</autodoc> 
27060       <method name=
"SetLink" type=
"" overloaded=
"no"> 
27061         <autodoc>SetLink(HtmlLinkInfo link)
</autodoc> 
27063           <param name=
"link" type=
"HtmlLinkInfo" default=
""/> 
27066       <method name=
"SetNext" type=
"" overloaded=
"no"> 
27067         <autodoc>SetNext(HtmlCell cell)
</autodoc> 
27069           <param name=
"cell" type=
"HtmlCell" default=
""/> 
27072       <method name=
"SetParent" type=
"" overloaded=
"no"> 
27073         <autodoc>SetParent(HtmlContainerCell p)
</autodoc> 
27075           <param name=
"p" type=
"wxHtmlContainerCell" default=
""/> 
27078       <method name=
"SetPos" type=
"" overloaded=
"no"> 
27079         <autodoc>SetPos(int x, int y)
</autodoc> 
27081           <param name=
"x" type=
"int" default=
""/> 
27082           <param name=
"y" type=
"int" default=
""/> 
27085       <method name=
"Layout" type=
"" overloaded=
"no"> 
27086         <autodoc>Layout(int w)
</autodoc> 
27088           <param name=
"w" type=
"int" default=
""/> 
27091       <method name=
"Draw" type=
"" overloaded=
"no"> 
27092         <autodoc>Draw(DC dc, int x, int y, int view_y1, int view_y2, HtmlRenderingInfo info)
</autodoc> 
27094           <param name=
"dc" type=
"DC" default=
""/> 
27095           <param name=
"x" type=
"int" default=
""/> 
27096           <param name=
"y" type=
"int" default=
""/> 
27097           <param name=
"view_y1" type=
"int" default=
""/> 
27098           <param name=
"view_y2" type=
"int" default=
""/> 
27099           <param name=
"info" type=
"HtmlRenderingInfo" default=
""/> 
27102       <method name=
"DrawInvisible" type=
"" overloaded=
"no"> 
27103         <autodoc>DrawInvisible(DC dc, int x, int y, HtmlRenderingInfo info)
</autodoc> 
27105           <param name=
"dc" type=
"DC" default=
""/> 
27106           <param name=
"x" type=
"int" default=
""/> 
27107           <param name=
"y" type=
"int" default=
""/> 
27108           <param name=
"info" type=
"HtmlRenderingInfo" default=
""/> 
27111       <method name=
"Find" type=
"HtmlCell" overloaded=
"no"> 
27112         <autodoc>Find(int condition, void param) -
> HtmlCell
</autodoc> 
27114           <param name=
"condition" type=
"int" default=
""/> 
27115           <param name=
"param" type=
"" default=
""/> 
27118       <method name=
"AdjustPagebreak" type=
"bool" overloaded=
"no"> 
27119         <autodoc>AdjustPagebreak(int INOUT) -
> bool
</autodoc> 
27121           <param name=
"INOUT" type=
"int" default=
""/> 
27124       <method name=
"SetCanLiveOnPagebreak" type=
"" overloaded=
"no"> 
27125         <autodoc>SetCanLiveOnPagebreak(bool can)
</autodoc> 
27127           <param name=
"can" type=
"bool" default=
""/> 
27130       <method name=
"IsLinebreakAllowed" type=
"bool" overloaded=
"no"> 
27131         <autodoc>IsLinebreakAllowed() -
> bool
</autodoc> 
27133       <method name=
"IsTerminalCell" type=
"bool" overloaded=
"no"> 
27134         <autodoc>IsTerminalCell() -
> bool
</autodoc> 
27136       <method name=
"FindCellByPos" type=
"HtmlCell" overloaded=
"no"> 
27137         <autodoc>FindCellByPos(int x, int y, unsigned int flags=HTML_FIND_EXACT) -
> HtmlCell
</autodoc> 
27139           <param name=
"x" type=
"int" default=
""/> 
27140           <param name=
"y" type=
"int" default=
""/> 
27141           <param name=
"flags" type=
"unsigned int" default=
"wxHTML_FIND_EXACT"/> 
27144       <method name=
"GetAbsPos" type=
"Point" overloaded=
"no"> 
27145         <autodoc>GetAbsPos() -
> Point
</autodoc> 
27147       <method name=
"GetFirstTerminal" type=
"HtmlCell" overloaded=
"no"> 
27148         <autodoc>GetFirstTerminal() -
> HtmlCell
</autodoc> 
27150       <method name=
"GetLastTerminal" type=
"HtmlCell" overloaded=
"no"> 
27151         <autodoc>GetLastTerminal() -
> HtmlCell
</autodoc> 
27153       <method name=
"GetDepth" type=
"unsigned int" overloaded=
"no"> 
27154         <autodoc>GetDepth() -
> unsigned int
</autodoc> 
27156       <method name=
"IsBefore" type=
"bool" overloaded=
"no"> 
27157         <autodoc>IsBefore(HtmlCell cell) -
> bool
</autodoc> 
27159           <param name=
"cell" type=
"HtmlCell" default=
""/> 
27162       <method name=
"ConvertToText" type=
"String" overloaded=
"no"> 
27163         <autodoc>ConvertToText(HtmlSelection sel) -
> String
</autodoc> 
27165           <param name=
"sel" type=
"HtmlSelection" default=
""/> 
27169     <class name=
"HtmlWordCell" oldname=
"wxHtmlWordCell" module=
"html"> 
27170       <baseclass name=
"HtmlCell"/> 
27171       <constructor name=
"HtmlWordCell" overloaded=
"no"> 
27172         <autodoc>__init__(String word, DC dc) -
> HtmlWordCell
</autodoc> 
27174           <param name=
"word" type=
"String" default=
""/> 
27175           <param name=
"dc" type=
"DC" default=
""/> 
27179     <class name=
"HtmlContainerCell" oldname=
"wxHtmlContainerCell" module=
"html"> 
27180       <baseclass name=
"HtmlCell"/> 
27181       <constructor name=
"HtmlContainerCell" overloaded=
"no"> 
27182         <autodoc>__init__(HtmlContainerCell parent) -
> HtmlContainerCell
</autodoc> 
27184           <param name=
"parent" type=
"HtmlContainerCell" default=
""/> 
27187       <method name=
"InsertCell" type=
"" overloaded=
"no"> 
27188         <autodoc>InsertCell(HtmlCell cell)
</autodoc> 
27190           <param name=
"cell" type=
"HtmlCell" default=
""/> 
27193       <method name=
"SetAlignHor" type=
"" overloaded=
"no"> 
27194         <autodoc>SetAlignHor(int al)
</autodoc> 
27196           <param name=
"al" type=
"int" default=
""/> 
27199       <method name=
"GetAlignHor" type=
"int" overloaded=
"no"> 
27200         <autodoc>GetAlignHor() -
> int
</autodoc> 
27202       <method name=
"SetAlignVer" type=
"" overloaded=
"no"> 
27203         <autodoc>SetAlignVer(int al)
</autodoc> 
27205           <param name=
"al" type=
"int" default=
""/> 
27208       <method name=
"GetAlignVer" type=
"int" overloaded=
"no"> 
27209         <autodoc>GetAlignVer() -
> int
</autodoc> 
27211       <method name=
"SetIndent" type=
"" overloaded=
"no"> 
27212         <autodoc>SetIndent(int i, int what, int units=HTML_UNITS_PIXELS)
</autodoc> 
27214           <param name=
"i" type=
"int" default=
""/> 
27215           <param name=
"what" type=
"int" default=
""/> 
27216           <param name=
"units" type=
"int" default=
"wxHTML_UNITS_PIXELS"/> 
27219       <method name=
"GetIndent" type=
"int" overloaded=
"no"> 
27220         <autodoc>GetIndent(int ind) -
> int
</autodoc> 
27222           <param name=
"ind" type=
"int" default=
""/> 
27225       <method name=
"GetIndentUnits" type=
"int" overloaded=
"no"> 
27226         <autodoc>GetIndentUnits(int ind) -
> int
</autodoc> 
27228           <param name=
"ind" type=
"int" default=
""/> 
27231       <method name=
"SetAlign" type=
"" overloaded=
"no"> 
27232         <autodoc>SetAlign(HtmlTag tag)
</autodoc> 
27234           <param name=
"tag" type=
"HtmlTag" default=
""/> 
27237       <method name=
"SetWidthFloat" type=
"" overloaded=
"no"> 
27238         <autodoc>SetWidthFloat(int w, int units)
</autodoc> 
27240           <param name=
"w" type=
"int" default=
""/> 
27241           <param name=
"units" type=
"int" default=
""/> 
27244       <method name=
"SetWidthFloatFromTag" type=
"" overloaded=
"no"> 
27245         <autodoc>SetWidthFloatFromTag(HtmlTag tag)
</autodoc> 
27247           <param name=
"tag" type=
"HtmlTag" default=
""/> 
27250       <method name=
"SetMinHeight" type=
"" overloaded=
"no"> 
27251         <autodoc>SetMinHeight(int h, int align=HTML_ALIGN_TOP)
</autodoc> 
27253           <param name=
"h" type=
"int" default=
""/> 
27254           <param name=
"align" type=
"int" default=
"wxHTML_ALIGN_TOP"/> 
27257       <method name=
"SetBackgroundColour" type=
"" overloaded=
"no"> 
27258         <autodoc>SetBackgroundColour(Colour clr)
</autodoc> 
27260           <param name=
"clr" type=
"Colour" default=
""/> 
27263       <method name=
"GetBackgroundColour" type=
"Colour" overloaded=
"no"> 
27264         <autodoc>GetBackgroundColour() -
> Colour
</autodoc> 
27266       <method name=
"SetBorder" type=
"" overloaded=
"no"> 
27267         <autodoc>SetBorder(Colour clr1, Colour clr2)
</autodoc> 
27269           <param name=
"clr1" type=
"Colour" default=
""/> 
27270           <param name=
"clr2" type=
"Colour" default=
""/> 
27273       <method name=
"GetFirstChild" type=
"HtmlCell" overloaded=
"no"> 
27274         <autodoc>GetFirstChild() -
> HtmlCell
</autodoc> 
27277     <class name=
"HtmlColourCell" oldname=
"wxHtmlColourCell" module=
"html"> 
27278       <baseclass name=
"HtmlCell"/> 
27279       <constructor name=
"HtmlColourCell" overloaded=
"no"> 
27280         <autodoc>__init__(Colour clr, int flags=HTML_CLR_FOREGROUND) -
> HtmlColourCell
</autodoc> 
27282           <param name=
"clr" type=
"Colour" default=
""/> 
27283           <param name=
"flags" type=
"int" default=
"wxHTML_CLR_FOREGROUND"/> 
27287     <class name=
"HtmlFontCell" oldname=
"wxHtmlFontCell" module=
"html"> 
27288       <baseclass name=
"HtmlCell"/> 
27289       <constructor name=
"HtmlFontCell" overloaded=
"no"> 
27290         <autodoc>__init__(Font font) -
> HtmlFontCell
</autodoc> 
27292           <param name=
"font" type=
"Font" default=
""/> 
27296     <class name=
"HtmlWidgetCell" oldname=
"wxHtmlWidgetCell" module=
"html"> 
27297       <baseclass name=
"HtmlCell"/> 
27298       <constructor name=
"HtmlWidgetCell" overloaded=
"no"> 
27299         <autodoc>__init__(Window wnd, int w=
0) -
> HtmlWidgetCell
</autodoc> 
27301           <param name=
"wnd" type=
"Window" default=
""/> 
27302           <param name=
"w" type=
"int" default=
"0"/> 
27307 #---------------------------------------------------------------------------
 
27309     <class name=
"HtmlFilter" oldname=
"wxPyHtmlFilter" module=
"html"> 
27310       <baseclass name=
"Object"/> 
27311       <constructor name=
"wxPyHtmlFilter" overloaded=
"no"> 
27312         <autodoc>__init__() -
> HtmlFilter
</autodoc> 
27314       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
27315         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
27317           <param name=
"self" type=
"PyObject" default=
""/> 
27318           <param name=
"_class" type=
"PyObject" default=
""/> 
27323 #---------------------------------------------------------------------------
 
27325     <class name=
"HtmlWindow" oldname=
"wxPyHtmlWindow" module=
"html"> 
27326       <baseclass name=
"ScrolledWindow"/> 
27327       <constructor name=
"wxPyHtmlWindow" overloaded=
"no"> 
27328         <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
27329     Size size=DefaultSize, int style=HW_DEFAULT_STYLE, 
 
27330     String name=HtmlWindowNameStr) -
> HtmlWindow
</autodoc> 
27332           <param name=
"parent" type=
"Window" default=
""/> 
27333           <param name=
"id" type=
"int" default=
"-1"/> 
27334           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
27335           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
27336           <param name=
"style" type=
"int" default=
"wxHW_DEFAULT_STYLE"/> 
27337           <param name=
"name" type=
"String" default=
"wxPyHtmlWindowNameStr"/> 
27340       <constructor name=
"PreHtmlWindow" overloaded=
"no"> 
27341         <autodoc>PreHtmlWindow() -
> HtmlWindow
</autodoc> 
27343       <method name=
"Create" type=
"bool" overloaded=
"no"> 
27344         <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
27345     Size size=DefaultSize, int style=HW_SCROLLBAR_AUTO, 
 
27346     String name=HtmlWindowNameStr) -
> bool
</autodoc> 
27348           <param name=
"parent" type=
"Window" default=
""/> 
27349           <param name=
"id" type=
"int" default=
"-1"/> 
27350           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
27351           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
27352           <param name=
"style" type=
"int" default=
"wxHW_SCROLLBAR_AUTO"/> 
27353           <param name=
"name" type=
"String" default=
"wxPyHtmlWindowNameStr"/> 
27356       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
27357         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
27359           <param name=
"self" type=
"PyObject" default=
""/> 
27360           <param name=
"_class" type=
"PyObject" default=
""/> 
27363       <method name=
"SetPage" type=
"bool" overloaded=
"no"> 
27364         <autodoc>SetPage(String source) -
> bool
</autodoc> 
27366           <param name=
"source" type=
"String" default=
""/> 
27369       <method name=
"LoadPage" type=
"bool" overloaded=
"no"> 
27370         <autodoc>LoadPage(String location) -
> bool
</autodoc> 
27372           <param name=
"location" type=
"String" default=
""/> 
27375       <method name=
"LoadFile" type=
"bool" overloaded=
"no"> 
27376         <autodoc>LoadFile(String filename) -
> bool
</autodoc> 
27378           <param name=
"filename" type=
"String" default=
""/> 
27381       <method name=
"AppendToPage" type=
"bool" overloaded=
"no"> 
27382         <autodoc>AppendToPage(String source) -
> bool
</autodoc> 
27384           <param name=
"source" type=
"String" default=
""/> 
27387       <method name=
"GetOpenedPage" type=
"String" overloaded=
"no"> 
27388         <autodoc>GetOpenedPage() -
> String
</autodoc> 
27390       <method name=
"GetOpenedAnchor" type=
"String" overloaded=
"no"> 
27391         <autodoc>GetOpenedAnchor() -
> String
</autodoc> 
27393       <method name=
"GetOpenedPageTitle" type=
"String" overloaded=
"no"> 
27394         <autodoc>GetOpenedPageTitle() -
> String
</autodoc> 
27396       <method name=
"SetRelatedFrame" type=
"" overloaded=
"no"> 
27397         <autodoc>SetRelatedFrame(Frame frame, String format)
</autodoc> 
27399           <param name=
"frame" type=
"Frame" default=
""/> 
27400           <param name=
"format" type=
"String" default=
""/> 
27403       <method name=
"GetRelatedFrame" type=
"Frame" overloaded=
"no"> 
27404         <autodoc>GetRelatedFrame() -
> Frame
</autodoc> 
27406       <method name=
"SetRelatedStatusBar" type=
"" overloaded=
"no"> 
27407         <autodoc>SetRelatedStatusBar(int bar)
</autodoc> 
27409           <param name=
"bar" type=
"int" default=
""/> 
27412       <method name=
"SetFonts" type=
"" overloaded=
"no"> 
27413         <autodoc>SetFonts(String normal_face, String fixed_face, PyObject sizes=None)
</autodoc> 
27415           <param name=
"normal_face" type=
"String" default=
""/> 
27416           <param name=
"fixed_face" type=
"String" default=
""/> 
27417           <param name=
"sizes" type=
"PyObject" default=
"NULL"/> 
27420       <method name=
"SetTitle" type=
"" overloaded=
"no"> 
27421         <autodoc>SetTitle(String title)
</autodoc> 
27423           <param name=
"title" type=
"String" default=
""/> 
27426       <method name=
"SetBorders" type=
"" overloaded=
"no"> 
27427         <autodoc>SetBorders(int b)
</autodoc> 
27429           <param name=
"b" type=
"int" default=
""/> 
27432       <method name=
"ReadCustomization" type=
"" overloaded=
"no"> 
27433         <autodoc>ReadCustomization(ConfigBase cfg, String path=EmptyString)
</autodoc> 
27435           <param name=
"cfg" type=
"ConfigBase" default=
""/> 
27436           <param name=
"path" type=
"String" default=
"wxPyEmptyString"/> 
27439       <method name=
"WriteCustomization" type=
"" overloaded=
"no"> 
27440         <autodoc>WriteCustomization(ConfigBase cfg, String path=EmptyString)
</autodoc> 
27442           <param name=
"cfg" type=
"ConfigBase" default=
""/> 
27443           <param name=
"path" type=
"String" default=
"wxPyEmptyString"/> 
27446       <method name=
"HistoryBack" type=
"bool" overloaded=
"no"> 
27447         <autodoc>HistoryBack() -
> bool
</autodoc> 
27449       <method name=
"HistoryForward" type=
"bool" overloaded=
"no"> 
27450         <autodoc>HistoryForward() -
> bool
</autodoc> 
27452       <method name=
"HistoryCanBack" type=
"bool" overloaded=
"no"> 
27453         <autodoc>HistoryCanBack() -
> bool
</autodoc> 
27455       <method name=
"HistoryCanForward" type=
"bool" overloaded=
"no"> 
27456         <autodoc>HistoryCanForward() -
> bool
</autodoc> 
27458       <method name=
"HistoryClear" type=
"" overloaded=
"no"> 
27459         <autodoc>HistoryClear()
</autodoc> 
27461       <method name=
"GetInternalRepresentation" type=
"HtmlContainerCell" overloaded=
"no"> 
27462         <autodoc>GetInternalRepresentation() -
> HtmlContainerCell
</autodoc> 
27464       <method name=
"GetParser" type=
"HtmlWinParser" overloaded=
"no"> 
27465         <autodoc>GetParser() -
> HtmlWinParser
</autodoc> 
27467       <method name=
"ScrollToAnchor" type=
"bool" overloaded=
"no"> 
27468         <autodoc>ScrollToAnchor(String anchor) -
> bool
</autodoc> 
27470           <param name=
"anchor" type=
"String" default=
""/> 
27473       <method name=
"HasAnchor" type=
"bool" overloaded=
"no"> 
27474         <autodoc>HasAnchor(String anchor) -
> bool
</autodoc> 
27476           <param name=
"anchor" type=
"String" default=
""/> 
27479       <staticmethod name=
"AddFilter" type=
"" overloaded=
"no"> 
27480         <autodoc>AddFilter(HtmlFilter filter)
</autodoc> 
27482           <param name=
"filter" type=
"HtmlFilter" default=
""/> 
27485       <method name=
"SelectWord" type=
"" overloaded=
"no"> 
27486         <autodoc>SelectWord(Point pos)
</autodoc> 
27488           <param name=
"pos" type=
"Point" default=
""/> 
27491       <method name=
"SelectLine" type=
"" overloaded=
"no"> 
27492         <autodoc>SelectLine(Point pos)
</autodoc> 
27494           <param name=
"pos" type=
"Point" default=
""/> 
27497       <method name=
"SelectAll" type=
"" overloaded=
"no"> 
27498         <autodoc>SelectAll()
</autodoc> 
27500       <method name=
"base_OnLinkClicked" type=
"" overloaded=
"no"> 
27501         <autodoc>base_OnLinkClicked(HtmlLinkInfo link)
</autodoc> 
27503           <param name=
"link" type=
"HtmlLinkInfo" default=
""/> 
27506       <method name=
"base_OnSetTitle" type=
"" overloaded=
"no"> 
27507         <autodoc>base_OnSetTitle(String title)
</autodoc> 
27509           <param name=
"title" type=
"String" default=
""/> 
27512       <method name=
"base_OnCellMouseHover" type=
"" overloaded=
"no"> 
27513         <autodoc>base_OnCellMouseHover(HtmlCell cell, int x, int y)
</autodoc> 
27515           <param name=
"cell" type=
"HtmlCell" default=
""/> 
27516           <param name=
"x" type=
"int" default=
""/> 
27517           <param name=
"y" type=
"int" default=
""/> 
27520       <method name=
"base_OnCellClicked" type=
"" overloaded=
"no"> 
27521         <autodoc>base_OnCellClicked(HtmlCell cell, int x, int y, MouseEvent event)
</autodoc> 
27523           <param name=
"cell" type=
"HtmlCell" default=
""/> 
27524           <param name=
"x" type=
"int" default=
""/> 
27525           <param name=
"y" type=
"int" default=
""/> 
27526           <param name=
"event" type=
"MouseEvent" default=
""/> 
27531 #---------------------------------------------------------------------------
 
27533     <class name=
"HtmlDCRenderer" oldname=
"wxHtmlDCRenderer" module=
"html"> 
27534       <baseclass name=
"Object"/> 
27535       <constructor name=
"HtmlDCRenderer" overloaded=
"no"> 
27536         <autodoc>__init__() -
> HtmlDCRenderer
</autodoc> 
27538       <destructor name=
"~wxHtmlDCRenderer" overloaded=
"no"> 
27539         <autodoc>__del__()
</autodoc> 
27541       <method name=
"SetDC" type=
"" overloaded=
"no"> 
27542         <autodoc>SetDC(DC dc, int maxwidth)
</autodoc> 
27544           <param name=
"dc" type=
"DC" default=
""/> 
27545           <param name=
"maxwidth" type=
"int" default=
""/> 
27548       <method name=
"SetSize" type=
"" overloaded=
"no"> 
27549         <autodoc>SetSize(int width, int height)
</autodoc> 
27551           <param name=
"width" type=
"int" default=
""/> 
27552           <param name=
"height" type=
"int" default=
""/> 
27555       <method name=
"SetHtmlText" type=
"" overloaded=
"no"> 
27556         <autodoc>SetHtmlText(String html, String basepath=EmptyString, bool isdir=True)
</autodoc> 
27558           <param name=
"html" type=
"String" default=
""/> 
27559           <param name=
"basepath" type=
"String" default=
"wxPyEmptyString"/> 
27560           <param name=
"isdir" type=
"bool" default=
"True"/> 
27563       <method name=
"SetFonts" type=
"" overloaded=
"no"> 
27564         <autodoc>SetFonts(String normal_face, String fixed_face, PyObject sizes=None)
</autodoc> 
27566           <param name=
"normal_face" type=
"String" default=
""/> 
27567           <param name=
"fixed_face" type=
"String" default=
""/> 
27568           <param name=
"sizes" type=
"PyObject" default=
"NULL"/> 
27571       <method name=
"Render" type=
"int" overloaded=
"no"> 
27572         <autodoc>Render(int x, int y, int from=
0, int dont_render=False, int to=INT_MAX, 
 
27573     int choices=None, int LCOUNT=
0) -
> int
</autodoc> 
27575           <param name=
"x" type=
"int" default=
""/> 
27576           <param name=
"y" type=
"int" default=
""/> 
27577           <param name=
"from" type=
"int" default=
"0"/> 
27578           <param name=
"dont_render" type=
"int" default=
"False"/> 
27579           <param name=
"to" type=
"int" default=
"INT_MAX"/> 
27580           <param name=
"choices" type=
"int" default=
"NULL"/> 
27581           <param name=
"LCOUNT" type=
"int" default=
"0"/> 
27584       <method name=
"GetTotalHeight" type=
"int" overloaded=
"no"> 
27585         <autodoc>GetTotalHeight() -
> int
</autodoc> 
27588     <class name=
"HtmlPrintout" oldname=
"wxHtmlPrintout" module=
"html"> 
27589       <baseclass name=
"Printout"/> 
27590       <constructor name=
"HtmlPrintout" overloaded=
"no"> 
27591         <autodoc>__init__(String title=HtmlPrintoutTitleStr) -
> HtmlPrintout
</autodoc> 
27593           <param name=
"title" type=
"String" default=
"wxPyHtmlPrintoutTitleStr"/> 
27596       <method name=
"SetHtmlText" type=
"" overloaded=
"no"> 
27597         <autodoc>SetHtmlText(String html, String basepath=EmptyString, bool isdir=True)
</autodoc> 
27599           <param name=
"html" type=
"String" default=
""/> 
27600           <param name=
"basepath" type=
"String" default=
"wxPyEmptyString"/> 
27601           <param name=
"isdir" type=
"bool" default=
"True"/> 
27604       <method name=
"SetHtmlFile" type=
"" overloaded=
"no"> 
27605         <autodoc>SetHtmlFile(String htmlfile)
</autodoc> 
27607           <param name=
"htmlfile" type=
"String" default=
""/> 
27610       <method name=
"SetHeader" type=
"" overloaded=
"no"> 
27611         <autodoc>SetHeader(String header, int pg=PAGE_ALL)
</autodoc> 
27613           <param name=
"header" type=
"String" default=
""/> 
27614           <param name=
"pg" type=
"int" default=
"wxPAGE_ALL"/> 
27617       <method name=
"SetFooter" type=
"" overloaded=
"no"> 
27618         <autodoc>SetFooter(String footer, int pg=PAGE_ALL)
</autodoc> 
27620           <param name=
"footer" type=
"String" default=
""/> 
27621           <param name=
"pg" type=
"int" default=
"wxPAGE_ALL"/> 
27624       <method name=
"SetFonts" type=
"" overloaded=
"no"> 
27625         <autodoc>SetFonts(String normal_face, String fixed_face, PyObject sizes=None)
</autodoc> 
27627           <param name=
"normal_face" type=
"String" default=
""/> 
27628           <param name=
"fixed_face" type=
"String" default=
""/> 
27629           <param name=
"sizes" type=
"PyObject" default=
"NULL"/> 
27632       <method name=
"SetMargins" type=
"" overloaded=
"no"> 
27633         <autodoc>SetMargins(float top=
25.2, float bottom=
25.2, float left=
25.2, 
 
27634     float right=
25.2, float spaces=
5)
</autodoc> 
27636           <param name=
"top" type=
"float" default=
"25.2"/> 
27637           <param name=
"bottom" type=
"float" default=
"25.2"/> 
27638           <param name=
"left" type=
"float" default=
"25.2"/> 
27639           <param name=
"right" type=
"float" default=
"25.2"/> 
27640           <param name=
"spaces" type=
"float" default=
"5"/> 
27643       <staticmethod name=
"AddFilter" type=
"" overloaded=
"no"> 
27644         <autodoc>AddFilter(wxHtmlFilter filter)
</autodoc> 
27646           <param name=
"filter" type=
"wxHtmlFilter" default=
""/> 
27649       <staticmethod name=
"CleanUpStatics" type=
"" overloaded=
"no"> 
27650         <autodoc>CleanUpStatics()
</autodoc> 
27653     <class name=
"HtmlEasyPrinting" oldname=
"wxHtmlEasyPrinting" module=
"html"> 
27654       <baseclass name=
"Object"/> 
27655       <constructor name=
"HtmlEasyPrinting" overloaded=
"no"> 
27656         <autodoc>__init__(String name=HtmlPrintingTitleStr, Window parentWindow=None) -
> HtmlEasyPrinting
</autodoc> 
27658           <param name=
"name" type=
"String" default=
"wxPyHtmlPrintingTitleStr"/> 
27659           <param name=
"parentWindow" type=
"Window" default=
"NULL"/> 
27662       <destructor name=
"~wxHtmlEasyPrinting" overloaded=
"no"> 
27663         <autodoc>__del__()
</autodoc> 
27665       <method name=
"PreviewFile" type=
"" overloaded=
"no"> 
27666         <autodoc>PreviewFile(String htmlfile)
</autodoc> 
27668           <param name=
"htmlfile" type=
"String" default=
""/> 
27671       <method name=
"PreviewText" type=
"" overloaded=
"no"> 
27672         <autodoc>PreviewText(String htmltext, String basepath=EmptyString)
</autodoc> 
27674           <param name=
"htmltext" type=
"String" default=
""/> 
27675           <param name=
"basepath" type=
"String" default=
"wxPyEmptyString"/> 
27678       <method name=
"PrintFile" type=
"" overloaded=
"no"> 
27679         <autodoc>PrintFile(String htmlfile)
</autodoc> 
27681           <param name=
"htmlfile" type=
"String" default=
""/> 
27684       <method name=
"PrintText" type=
"" overloaded=
"no"> 
27685         <autodoc>PrintText(String htmltext, String basepath=EmptyString)
</autodoc> 
27687           <param name=
"htmltext" type=
"String" default=
""/> 
27688           <param name=
"basepath" type=
"String" default=
"wxPyEmptyString"/> 
27691       <method name=
"PrinterSetup" type=
"" overloaded=
"no"> 
27692         <autodoc>PrinterSetup()
</autodoc> 
27694       <method name=
"PageSetup" type=
"" overloaded=
"no"> 
27695         <autodoc>PageSetup()
</autodoc> 
27697       <method name=
"SetHeader" type=
"" overloaded=
"no"> 
27698         <autodoc>SetHeader(String header, int pg=PAGE_ALL)
</autodoc> 
27700           <param name=
"header" type=
"String" default=
""/> 
27701           <param name=
"pg" type=
"int" default=
"wxPAGE_ALL"/> 
27704       <method name=
"SetFooter" type=
"" overloaded=
"no"> 
27705         <autodoc>SetFooter(String footer, int pg=PAGE_ALL)
</autodoc> 
27707           <param name=
"footer" type=
"String" default=
""/> 
27708           <param name=
"pg" type=
"int" default=
"wxPAGE_ALL"/> 
27711       <method name=
"SetFonts" type=
"" overloaded=
"no"> 
27712         <autodoc>SetFonts(String normal_face, String fixed_face, PyObject sizes=None)
</autodoc> 
27714           <param name=
"normal_face" type=
"String" default=
""/> 
27715           <param name=
"fixed_face" type=
"String" default=
""/> 
27716           <param name=
"sizes" type=
"PyObject" default=
"NULL"/> 
27719       <method name=
"GetPrintData" type=
"PrintData" overloaded=
"no"> 
27720         <autodoc>GetPrintData() -
> PrintData
</autodoc> 
27722       <method name=
"GetPageSetupData" type=
"PageSetupDialogData" overloaded=
"no"> 
27723         <autodoc>GetPageSetupData() -
> PageSetupDialogData
</autodoc> 
27727 #---------------------------------------------------------------------------
 
27729     <class name=
"HtmlBookRecord" oldname=
"wxHtmlBookRecord" module=
"html"> 
27730       <constructor name=
"HtmlBookRecord" overloaded=
"no"> 
27731         <autodoc>__init__(String bookfile, String basepath, String title, String start) -
> HtmlBookRecord
</autodoc> 
27733           <param name=
"bookfile" type=
"String" default=
""/> 
27734           <param name=
"basepath" type=
"String" default=
""/> 
27735           <param name=
"title" type=
"String" default=
""/> 
27736           <param name=
"start" type=
"String" default=
""/> 
27739       <method name=
"GetBookFile" type=
"String" overloaded=
"no"> 
27740         <autodoc>GetBookFile() -
> String
</autodoc> 
27742       <method name=
"GetTitle" type=
"String" overloaded=
"no"> 
27743         <autodoc>GetTitle() -
> String
</autodoc> 
27745       <method name=
"GetStart" type=
"String" overloaded=
"no"> 
27746         <autodoc>GetStart() -
> String
</autodoc> 
27748       <method name=
"GetBasePath" type=
"String" overloaded=
"no"> 
27749         <autodoc>GetBasePath() -
> String
</autodoc> 
27751       <method name=
"SetContentsRange" type=
"" overloaded=
"no"> 
27752         <autodoc>SetContentsRange(int start, int end)
</autodoc> 
27754           <param name=
"start" type=
"int" default=
""/> 
27755           <param name=
"end" type=
"int" default=
""/> 
27758       <method name=
"GetContentsStart" type=
"int" overloaded=
"no"> 
27759         <autodoc>GetContentsStart() -
> int
</autodoc> 
27761       <method name=
"GetContentsEnd" type=
"int" overloaded=
"no"> 
27762         <autodoc>GetContentsEnd() -
> int
</autodoc> 
27764       <method name=
"SetTitle" type=
"" overloaded=
"no"> 
27765         <autodoc>SetTitle(String title)
</autodoc> 
27767           <param name=
"title" type=
"String" default=
""/> 
27770       <method name=
"SetBasePath" type=
"" overloaded=
"no"> 
27771         <autodoc>SetBasePath(String path)
</autodoc> 
27773           <param name=
"path" type=
"String" default=
""/> 
27776       <method name=
"SetStart" type=
"" overloaded=
"no"> 
27777         <autodoc>SetStart(String start)
</autodoc> 
27779           <param name=
"start" type=
"String" default=
""/> 
27782       <method name=
"GetFullPath" type=
"String" overloaded=
"no"> 
27783         <autodoc>GetFullPath(String page) -
> String
</autodoc> 
27785           <param name=
"page" type=
"String" default=
""/> 
27789     <class name=
"HtmlContentsItem" oldname=
"wxHtmlContentsItem" module=
"html"> 
27790       <method name=
"GetLevel" type=
"int" overloaded=
"no"> 
27791         <autodoc>GetLevel() -
> int
</autodoc> 
27793       <method name=
"GetID" type=
"int" overloaded=
"no"> 
27794         <autodoc>GetID() -
> int
</autodoc> 
27796       <method name=
"GetName" type=
"String" overloaded=
"no"> 
27797         <autodoc>GetName() -
> String
</autodoc> 
27799       <method name=
"GetPage" type=
"String" overloaded=
"no"> 
27800         <autodoc>GetPage() -
> String
</autodoc> 
27802       <method name=
"GetBook" type=
"HtmlBookRecord" overloaded=
"no"> 
27803         <autodoc>GetBook() -
> HtmlBookRecord
</autodoc> 
27806     <class name=
"HtmlSearchStatus" oldname=
"wxHtmlSearchStatus" module=
"html"> 
27807       <method name=
"Search" type=
"bool" overloaded=
"no"> 
27808         <autodoc>Search() -
> bool
</autodoc> 
27810       <method name=
"IsActive" type=
"bool" overloaded=
"no"> 
27811         <autodoc>IsActive() -
> bool
</autodoc> 
27813       <method name=
"GetCurIndex" type=
"int" overloaded=
"no"> 
27814         <autodoc>GetCurIndex() -
> int
</autodoc> 
27816       <method name=
"GetMaxIndex" type=
"int" overloaded=
"no"> 
27817         <autodoc>GetMaxIndex() -
> int
</autodoc> 
27819       <method name=
"GetName" type=
"String" overloaded=
"no"> 
27820         <autodoc>GetName() -
> String
</autodoc> 
27822       <method name=
"GetContentsItem" type=
"HtmlContentsItem" overloaded=
"no"> 
27823         <autodoc>GetContentsItem() -
> HtmlContentsItem
</autodoc> 
27826     <class name=
"HtmlHelpData" oldname=
"wxHtmlHelpData" module=
"html"> 
27827       <constructor name=
"HtmlHelpData" overloaded=
"no"> 
27828         <autodoc>__init__() -
> HtmlHelpData
</autodoc> 
27830       <destructor name=
"~wxHtmlHelpData" overloaded=
"no"> 
27831         <autodoc>__del__()
</autodoc> 
27833       <method name=
"SetTempDir" type=
"" overloaded=
"no"> 
27834         <autodoc>SetTempDir(String path)
</autodoc> 
27836           <param name=
"path" type=
"String" default=
""/> 
27839       <method name=
"AddBook" type=
"bool" overloaded=
"no"> 
27840         <autodoc>AddBook(String book) -
> bool
</autodoc> 
27842           <param name=
"book" type=
"String" default=
""/> 
27845       <method name=
"FindPageByName" type=
"String" overloaded=
"no"> 
27846         <autodoc>FindPageByName(String page) -
> String
</autodoc> 
27848           <param name=
"page" type=
"String" default=
""/> 
27851       <method name=
"FindPageById" type=
"String" overloaded=
"no"> 
27852         <autodoc>FindPageById(int id) -
> String
</autodoc> 
27854           <param name=
"id" type=
"int" default=
""/> 
27857       <method name=
"GetBookRecArray" type=
"wxHtmlBookRecArray" overloaded=
"no"> 
27858         <autodoc>GetBookRecArray() -
> wxHtmlBookRecArray
</autodoc> 
27860       <method name=
"GetContents" type=
"HtmlContentsItem" overloaded=
"no"> 
27861         <autodoc>GetContents() -
> HtmlContentsItem
</autodoc> 
27863       <method name=
"GetContentsCnt" type=
"int" overloaded=
"no"> 
27864         <autodoc>GetContentsCnt() -
> int
</autodoc> 
27866       <method name=
"GetIndex" type=
"HtmlContentsItem" overloaded=
"no"> 
27867         <autodoc>GetIndex() -
> HtmlContentsItem
</autodoc> 
27869       <method name=
"GetIndexCnt" type=
"int" overloaded=
"no"> 
27870         <autodoc>GetIndexCnt() -
> int
</autodoc> 
27873     <class name=
"HtmlHelpFrame" oldname=
"wxHtmlHelpFrame" module=
"html"> 
27874       <baseclass name=
"Frame"/> 
27875       <constructor name=
"HtmlHelpFrame" overloaded=
"no"> 
27876         <autodoc>__init__(Window parent, int ??, String title=EmptyString, int style=HF_DEFAULTSTYLE, 
 
27877     HtmlHelpData data=None) -
> HtmlHelpFrame
</autodoc> 
27879           <param name=
"parent" type=
"Window" default=
""/> 
27880           <param name=
"" type=
"int" default=
""/> 
27881           <param name=
"title" type=
"String" default=
"wxPyEmptyString"/> 
27882           <param name=
"style" type=
"int" default=
"wxHF_DEFAULTSTYLE"/> 
27883           <param name=
"data" type=
"HtmlHelpData" default=
"NULL"/> 
27886       <method name=
"GetData" type=
"HtmlHelpData" overloaded=
"no"> 
27887         <autodoc>GetData() -
> HtmlHelpData
</autodoc> 
27889       <method name=
"SetTitleFormat" type=
"" overloaded=
"no"> 
27890         <autodoc>SetTitleFormat(String format)
</autodoc> 
27892           <param name=
"format" type=
"String" default=
""/> 
27895       <method name=
"Display" type=
"" overloaded=
"no"> 
27896         <autodoc>Display(String x)
</autodoc> 
27898           <param name=
"x" type=
"String" default=
""/> 
27901       <method name=
"DisplayID" type=
"" overloaded=
"no"> 
27902         <autodoc>DisplayID(int id)
</autodoc> 
27904           <param name=
"id" type=
"int" default=
""/> 
27907       <method name=
"DisplayContents" type=
"" overloaded=
"no"> 
27908         <autodoc>DisplayContents()
</autodoc> 
27910       <method name=
"DisplayIndex" type=
"" overloaded=
"no"> 
27911         <autodoc>DisplayIndex()
</autodoc> 
27913       <method name=
"KeywordSearch" type=
"bool" overloaded=
"no"> 
27914         <autodoc>KeywordSearch(String keyword) -
> bool
</autodoc> 
27916           <param name=
"keyword" type=
"String" default=
""/> 
27919       <method name=
"UseConfig" type=
"" overloaded=
"no"> 
27920         <autodoc>UseConfig(ConfigBase config, String rootpath=EmptyString)
</autodoc> 
27922           <param name=
"config" type=
"ConfigBase" default=
""/> 
27923           <param name=
"rootpath" type=
"String" default=
"wxPyEmptyString"/> 
27926       <method name=
"ReadCustomization" type=
"" overloaded=
"no"> 
27927         <autodoc>ReadCustomization(ConfigBase cfg, String path=EmptyString)
</autodoc> 
27929           <param name=
"cfg" type=
"ConfigBase" default=
""/> 
27930           <param name=
"path" type=
"String" default=
"wxPyEmptyString"/> 
27933       <method name=
"WriteCustomization" type=
"" overloaded=
"no"> 
27934         <autodoc>WriteCustomization(ConfigBase cfg, String path=EmptyString)
</autodoc> 
27936           <param name=
"cfg" type=
"ConfigBase" default=
""/> 
27937           <param name=
"path" type=
"String" default=
"wxPyEmptyString"/> 
27941     <class name=
"HtmlHelpController" oldname=
"wxHtmlHelpController" module=
"html"> 
27942       <baseclass name=
"EvtHandler"/> 
27943       <constructor name=
"HtmlHelpController" overloaded=
"no"> 
27944         <autodoc>__init__(int style=HF_DEFAULTSTYLE) -
> HtmlHelpController
</autodoc> 
27946           <param name=
"style" type=
"int" default=
"wxHF_DEFAULTSTYLE"/> 
27949       <destructor name=
"~wxHtmlHelpController" overloaded=
"no"> 
27950         <autodoc>__del__()
</autodoc> 
27952       <method name=
"SetTitleFormat" type=
"" overloaded=
"no"> 
27953         <autodoc>SetTitleFormat(String format)
</autodoc> 
27955           <param name=
"format" type=
"String" default=
""/> 
27958       <method name=
"SetTempDir" type=
"" overloaded=
"no"> 
27959         <autodoc>SetTempDir(String path)
</autodoc> 
27961           <param name=
"path" type=
"String" default=
""/> 
27964       <method name=
"AddBook" type=
"bool" overloaded=
"no"> 
27965         <autodoc>AddBook(String book, int show_wait_msg=False) -
> bool
</autodoc> 
27967           <param name=
"book" type=
"String" default=
""/> 
27968           <param name=
"show_wait_msg" type=
"int" default=
"False"/> 
27971       <method name=
"Display" type=
"" overloaded=
"no"> 
27972         <autodoc>Display(String x)
</autodoc> 
27974           <param name=
"x" type=
"String" default=
""/> 
27977       <method name=
"DisplayID" type=
"" overloaded=
"no"> 
27978         <autodoc>DisplayID(int id)
</autodoc> 
27980           <param name=
"id" type=
"int" default=
""/> 
27983       <method name=
"DisplayContents" type=
"" overloaded=
"no"> 
27984         <autodoc>DisplayContents()
</autodoc> 
27986       <method name=
"DisplayIndex" type=
"" overloaded=
"no"> 
27987         <autodoc>DisplayIndex()
</autodoc> 
27989       <method name=
"KeywordSearch" type=
"bool" overloaded=
"no"> 
27990         <autodoc>KeywordSearch(String keyword) -
> bool
</autodoc> 
27992           <param name=
"keyword" type=
"String" default=
""/> 
27995       <method name=
"UseConfig" type=
"" overloaded=
"no"> 
27996         <autodoc>UseConfig(ConfigBase config, String rootpath=EmptyString)
</autodoc> 
27998           <param name=
"config" type=
"ConfigBase" default=
""/> 
27999           <param name=
"rootpath" type=
"String" default=
"wxPyEmptyString"/> 
28002       <method name=
"ReadCustomization" type=
"" overloaded=
"no"> 
28003         <autodoc>ReadCustomization(ConfigBase cfg, String path=EmptyString)
</autodoc> 
28005           <param name=
"cfg" type=
"ConfigBase" default=
""/> 
28006           <param name=
"path" type=
"String" default=
"wxPyEmptyString"/> 
28009       <method name=
"WriteCustomization" type=
"" overloaded=
"no"> 
28010         <autodoc>WriteCustomization(ConfigBase cfg, String path=EmptyString)
</autodoc> 
28012           <param name=
"cfg" type=
"ConfigBase" default=
""/> 
28013           <param name=
"path" type=
"String" default=
"wxPyEmptyString"/> 
28016       <method name=
"GetFrame" type=
"HtmlHelpFrame" overloaded=
"no"> 
28017         <autodoc>GetFrame() -
> HtmlHelpFrame
</autodoc> 
28021   <module name=
"wizard"> 
28022     <import name=
"windows"/> 
28023     <pythoncode> wx = core 
</pythoncode> 
28025 EVT_WIZARD_PAGE_CHANGED  = wx.PyEventBinder( wxEVT_WIZARD_PAGE_CHANGED, 
1)
 
28026 EVT_WIZARD_PAGE_CHANGING = wx.PyEventBinder( wxEVT_WIZARD_PAGE_CHANGING, 
1)
 
28027 EVT_WIZARD_CANCEL        = wx.PyEventBinder( wxEVT_WIZARD_CANCEL, 
1)
 
28028 EVT_WIZARD_HELP          = wx.PyEventBinder( wxEVT_WIZARD_HELP, 
1)
 
28029 EVT_WIZARD_FINISHED      = wx.PyEventBinder( wxEVT_WIZARD_FINISHED, 
1)
 
28031     <class name=
"WizardEvent" oldname=
"wxWizardEvent" module=
"wizard"> 
28032       <baseclass name=
"NotifyEvent"/> 
28033       <constructor name=
"WizardEvent" overloaded=
"no"> 
28034         <autodoc>__init__(wxEventType type=wxEVT_NULL, int id=-
1, bool direction=True, 
 
28035     WizardPage page=None) -
> WizardEvent
</autodoc> 
28037           <param name=
"type" type=
"wxEventType" default=
"wxEVT_NULL"/> 
28038           <param name=
"id" type=
"int" default=
"-1"/> 
28039           <param name=
"direction" type=
"bool" default=
"True"/> 
28040           <param name=
"page" type=
"wxWizardPage" default=
"NULL"/> 
28043       <method name=
"GetDirection" type=
"bool" overloaded=
"no"> 
28044         <autodoc>GetDirection() -
> bool
</autodoc> 
28046       <method name=
"GetPage" type=
"wxWizardPage" overloaded=
"no"> 
28047         <autodoc>GetPage() -
> WizardPage
</autodoc> 
28050     <class name=
"WizardPage" oldname=
"wxWizardPage" module=
"wizard"> 
28051       <baseclass name=
"Panel"/> 
28052       <method name=
"Create" type=
"bool" overloaded=
"no"> 
28053         <autodoc>Create(Wizard parent, Bitmap bitmap=wxNullBitmap, String resource=EmptyString) -
> bool
</autodoc> 
28055           <param name=
"parent" type=
"wxWizard" default=
""/> 
28056           <param name=
"bitmap" type=
"Bitmap" default=
"wxNullBitmap"/> 
28057           <param name=
"resource" type=
"String" default=
"wxPyEmptyString"/> 
28060       <method name=
"GetPrev" type=
"WizardPage" overloaded=
"no"> 
28061         <autodoc>GetPrev() -
> WizardPage
</autodoc> 
28063       <method name=
"GetNext" type=
"WizardPage" overloaded=
"no"> 
28064         <autodoc>GetNext() -
> WizardPage
</autodoc> 
28066       <method name=
"GetBitmap" type=
"Bitmap" overloaded=
"no"> 
28067         <autodoc>GetBitmap() -
> Bitmap
</autodoc> 
28070     <class name=
"PyWizardPage" oldname=
"wxPyWizardPage" module=
"wizard"> 
28071       <baseclass name=
"WizardPage"/> 
28072       <constructor name=
"PyWizardPage" overloaded=
"no"> 
28073         <autodoc>__init__(Wizard parent, Bitmap bitmap=
&wxNullBitmap, String resource=
&wxPyEmptyString) -
> PyWizardPage
</autodoc> 
28075           <param name=
"parent" type=
"wxWizard" default=
""/> 
28076           <param name=
"bitmap" type=
"Bitmap" default=
"&wxNullBitmap"/> 
28077           <param name=
"resource" type=
"String" default=
"&wxPyEmptyString"/> 
28080       <constructor name=
"PrePyWizardPage" overloaded=
"no"> 
28081         <autodoc>PrePyWizardPage() -
> PyWizardPage
</autodoc> 
28083       <method name=
"Create" type=
"bool" overloaded=
"no"> 
28084         <autodoc>Create(Wizard parent, Bitmap bitmap=wxNullBitmap, String resource=EmptyString) -
> bool
</autodoc> 
28086           <param name=
"parent" type=
"wxWizard" default=
""/> 
28087           <param name=
"bitmap" type=
"Bitmap" default=
"wxNullBitmap"/> 
28088           <param name=
"resource" type=
"String" default=
"wxPyEmptyString"/> 
28091       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
28092         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
28094           <param name=
"self" type=
"PyObject" default=
""/> 
28095           <param name=
"_class" type=
"PyObject" default=
""/> 
28098       <method name=
"base_DoMoveWindow" type=
"" overloaded=
"no"> 
28099         <autodoc>base_DoMoveWindow(int x, int y, int width, int height)
</autodoc> 
28101           <param name=
"x" type=
"int" default=
""/> 
28102           <param name=
"y" type=
"int" default=
""/> 
28103           <param name=
"width" type=
"int" default=
""/> 
28104           <param name=
"height" type=
"int" default=
""/> 
28107       <method name=
"base_DoSetSize" type=
"" overloaded=
"no"> 
28108         <autodoc>base_DoSetSize(int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)
</autodoc> 
28110           <param name=
"x" type=
"int" default=
""/> 
28111           <param name=
"y" type=
"int" default=
""/> 
28112           <param name=
"width" type=
"int" default=
""/> 
28113           <param name=
"height" type=
"int" default=
""/> 
28114           <param name=
"sizeFlags" type=
"int" default=
"wxSIZE_AUTO"/> 
28117       <method name=
"base_DoSetClientSize" type=
"" overloaded=
"no"> 
28118         <autodoc>base_DoSetClientSize(int width, int height)
</autodoc> 
28120           <param name=
"width" type=
"int" default=
""/> 
28121           <param name=
"height" type=
"int" default=
""/> 
28124       <method name=
"base_DoSetVirtualSize" type=
"" overloaded=
"no"> 
28125         <autodoc>base_DoSetVirtualSize(int x, int y)
</autodoc> 
28127           <param name=
"x" type=
"int" default=
""/> 
28128           <param name=
"y" type=
"int" default=
""/> 
28131       <method name=
"base_DoGetSize" type=
"" overloaded=
"no"> 
28132         <autodoc>base_DoGetSize() -
> (width, height)
</autodoc> 
28134           <param name=
"OUTPUT" type=
"int" default=
""/> 
28135           <param name=
"OUTPUT" type=
"int" default=
""/> 
28138       <method name=
"base_DoGetClientSize" type=
"" overloaded=
"no"> 
28139         <autodoc>base_DoGetClientSize() -
> (width, height)
</autodoc> 
28141           <param name=
"OUTPUT" type=
"int" default=
""/> 
28142           <param name=
"OUTPUT" type=
"int" default=
""/> 
28145       <method name=
"base_DoGetPosition" type=
"" overloaded=
"no"> 
28146         <autodoc>base_DoGetPosition() -
> (x,y)
</autodoc> 
28148           <param name=
"OUTPUT" type=
"int" default=
""/> 
28149           <param name=
"OUTPUT" type=
"int" default=
""/> 
28152       <method name=
"base_DoGetVirtualSize" type=
"Size" overloaded=
"no"> 
28153         <autodoc>base_DoGetVirtualSize() -
> Size
</autodoc> 
28155       <method name=
"base_DoGetBestSize" type=
"Size" overloaded=
"no"> 
28156         <autodoc>base_DoGetBestSize() -
> Size
</autodoc> 
28158       <method name=
"base_InitDialog" type=
"" overloaded=
"no"> 
28159         <autodoc>base_InitDialog()
</autodoc> 
28161       <method name=
"base_TransferDataToWindow" type=
"bool" overloaded=
"no"> 
28162         <autodoc>base_TransferDataToWindow() -
> bool
</autodoc> 
28164       <method name=
"base_TransferDataFromWindow" type=
"bool" overloaded=
"no"> 
28165         <autodoc>base_TransferDataFromWindow() -
> bool
</autodoc> 
28167       <method name=
"base_Validate" type=
"bool" overloaded=
"no"> 
28168         <autodoc>base_Validate() -
> bool
</autodoc> 
28170       <method name=
"base_AcceptsFocus" type=
"bool" overloaded=
"no"> 
28171         <autodoc>base_AcceptsFocus() -
> bool
</autodoc> 
28173       <method name=
"base_AcceptsFocusFromKeyboard" type=
"bool" overloaded=
"no"> 
28174         <autodoc>base_AcceptsFocusFromKeyboard() -
> bool
</autodoc> 
28176       <method name=
"base_GetMaxSize" type=
"Size" overloaded=
"no"> 
28177         <autodoc>base_GetMaxSize() -
> Size
</autodoc> 
28179       <method name=
"base_AddChild" type=
"" overloaded=
"no"> 
28180         <autodoc>base_AddChild(Window child)
</autodoc> 
28182           <param name=
"child" type=
"Window" default=
""/> 
28185       <method name=
"base_RemoveChild" type=
"" overloaded=
"no"> 
28186         <autodoc>base_RemoveChild(Window child)
</autodoc> 
28188           <param name=
"child" type=
"Window" default=
""/> 
28192     <class name=
"WizardPageSimple" oldname=
"wxWizardPageSimple" module=
"wizard"> 
28193       <baseclass name=
"WizardPage"/> 
28194       <constructor name=
"WizardPageSimple" overloaded=
"no"> 
28195         <autodoc>__init__(Wizard parent, WizardPage prev=None, WizardPage next=None, 
 
28196     Bitmap bitmap=wxNullBitmap, wxChar resource=None) -
> WizardPageSimple
</autodoc> 
28198           <param name=
"parent" type=
"wxWizard" default=
""/> 
28199           <param name=
"prev" type=
"WizardPage" default=
"NULL"/> 
28200           <param name=
"next" type=
"WizardPage" default=
"NULL"/> 
28201           <param name=
"bitmap" type=
"Bitmap" default=
"wxNullBitmap"/> 
28202           <param name=
"resource" type=
"wxChar" default=
"NULL"/> 
28205       <constructor name=
"PreWizardPageSimple" overloaded=
"no"> 
28206         <autodoc>PreWizardPageSimple() -
> WizardPageSimple
</autodoc> 
28208       <method name=
"Create" type=
"bool" overloaded=
"no"> 
28209         <autodoc>Create(Wizard parent=None, WizardPage prev=None, WizardPage next=None, 
 
28210     Bitmap bitmap=wxNullBitmap, wxChar resource=None) -
> bool
</autodoc> 
28212           <param name=
"parent" type=
"wxWizard" default=
"NULL"/> 
28213           <param name=
"prev" type=
"WizardPage" default=
"NULL"/> 
28214           <param name=
"next" type=
"WizardPage" default=
"NULL"/> 
28215           <param name=
"bitmap" type=
"Bitmap" default=
"wxNullBitmap"/> 
28216           <param name=
"resource" type=
"wxChar" default=
"NULL"/> 
28219       <method name=
"SetPrev" type=
"" overloaded=
"no"> 
28220         <autodoc>SetPrev(WizardPage prev)
</autodoc> 
28222           <param name=
"prev" type=
"WizardPage" default=
""/> 
28225       <method name=
"SetNext" type=
"" overloaded=
"no"> 
28226         <autodoc>SetNext(WizardPage next)
</autodoc> 
28228           <param name=
"next" type=
"WizardPage" default=
""/> 
28231       <staticmethod name=
"Chain" type=
"" overloaded=
"no"> 
28232         <autodoc>Chain(WizardPageSimple first, WizardPageSimple second)
</autodoc> 
28234           <param name=
"first" type=
"WizardPageSimple" default=
""/> 
28235           <param name=
"second" type=
"WizardPageSimple" default=
""/> 
28239     <class name=
"Wizard" oldname=
"wxWizard" module=
"wizard"> 
28240       <baseclass name=
"Dialog"/> 
28241       <constructor name=
"Wizard" overloaded=
"no"> 
28242         <autodoc>__init__(Window parent, int id=-
1, String title=EmptyString, 
 
28243     Bitmap bitmap=wxNullBitmap, Point pos=DefaultPosition, 
 
28244     long style=DEFAULT_DIALOG_STYLE) -
> Wizard
</autodoc> 
28246           <param name=
"parent" type=
"Window" default=
""/> 
28247           <param name=
"id" type=
"int" default=
"-1"/> 
28248           <param name=
"title" type=
"String" default=
"wxPyEmptyString"/> 
28249           <param name=
"bitmap" type=
"Bitmap" default=
"wxNullBitmap"/> 
28250           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
28251           <param name=
"style" type=
"long" default=
"wxDEFAULT_DIALOG_STYLE"/> 
28254       <constructor name=
"PreWizard" overloaded=
"no"> 
28255         <autodoc>PreWizard() -
> Wizard
</autodoc> 
28257       <method name=
"Create" type=
"bool" overloaded=
"no"> 
28258         <autodoc>Create(Window parent, int id=-
1, String title=EmptyString, 
 
28259     Bitmap bitmap=wxNullBitmap, Point pos=DefaultPosition) -
> bool
</autodoc> 
28261           <param name=
"parent" type=
"Window" default=
""/> 
28262           <param name=
"id" type=
"int" default=
"-1"/> 
28263           <param name=
"title" type=
"String" default=
"wxPyEmptyString"/> 
28264           <param name=
"bitmap" type=
"Bitmap" default=
"wxNullBitmap"/> 
28265           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
28268       <method name=
"Init" type=
"" overloaded=
"no"> 
28269         <autodoc>Init()
</autodoc> 
28271       <method name=
"RunWizard" type=
"bool" overloaded=
"no"> 
28272         <autodoc>RunWizard(WizardPage firstPage) -
> bool
</autodoc> 
28274           <param name=
"firstPage" type=
"WizardPage" default=
""/> 
28277       <method name=
"GetCurrentPage" type=
"WizardPage" overloaded=
"no"> 
28278         <autodoc>GetCurrentPage() -
> WizardPage
</autodoc> 
28280       <method name=
"SetPageSize" type=
"" overloaded=
"no"> 
28281         <autodoc>SetPageSize(Size size)
</autodoc> 
28283           <param name=
"size" type=
"Size" default=
""/> 
28286       <method name=
"GetPageSize" type=
"Size" overloaded=
"no"> 
28287         <autodoc>GetPageSize() -
> Size
</autodoc> 
28289       <method name=
"FitToPage" type=
"" overloaded=
"no"> 
28290         <autodoc>FitToPage(WizardPage firstPage)
</autodoc> 
28292           <param name=
"firstPage" type=
"WizardPage" default=
""/> 
28295       <method name=
"GetPageAreaSizer" type=
"Sizer" overloaded=
"no"> 
28296         <autodoc>GetPageAreaSizer() -
> Sizer
</autodoc> 
28298       <method name=
"SetBorder" type=
"" overloaded=
"no"> 
28299         <autodoc>SetBorder(int border)
</autodoc> 
28301           <param name=
"border" type=
"int" default=
""/> 
28304       <method name=
"IsRunning" type=
"bool" overloaded=
"no"> 
28305         <autodoc>IsRunning() -
> bool
</autodoc> 
28307       <method name=
"ShowPage" type=
"bool" overloaded=
"no"> 
28308         <autodoc>ShowPage(WizardPage page, bool goingForward=True) -
> bool
</autodoc> 
28310           <param name=
"page" type=
"WizardPage" default=
""/> 
28311           <param name=
"goingForward" type=
"bool" default=
"True"/> 
28314       <method name=
"HasNextPage" type=
"bool" overloaded=
"no"> 
28315         <autodoc>HasNextPage(WizardPage page) -
> bool
</autodoc> 
28317           <param name=
"page" type=
"WizardPage" default=
""/> 
28320       <method name=
"HasPrevPage" type=
"bool" overloaded=
"no"> 
28321         <autodoc>HasPrevPage(WizardPage page) -
> bool
</autodoc> 
28323           <param name=
"page" type=
"WizardPage" default=
""/> 
28328   <module name=
"glcanvas"> 
28329     <import name=
"core"/> 
28330     <pythoncode> wx = core 
</pythoncode> 
28331     <class name=
"GLContext" oldname=
"wxGLContext" module=
"glcanvas"> 
28332       <baseclass name=
"Object"/> 
28333       <constructor name=
"GLContext" overloaded=
"no"> 
28334         <autodoc>__init__(bool isRGB, GLCanvas win, wxPalette palette=wxNullPalette, 
 
28335     GLContext other=None) -
> GLContext
</autodoc> 
28337           <param name=
"isRGB" type=
"bool" default=
""/> 
28338           <param name=
"win" type=
"wxGLCanvas" default=
""/> 
28339           <param name=
"palette" type=
"Palette" default=
"wxNullPalette"/> 
28340           <param name=
"other" type=
"GLContext" default=
"NULL"/> 
28343       <destructor name=
"~wxGLContext" overloaded=
"no"> 
28344         <autodoc>__del__()
</autodoc> 
28346       <method name=
"SetCurrent" type=
"" overloaded=
"no"> 
28347         <autodoc>SetCurrent()
</autodoc> 
28349       <method name=
"SetColour" type=
"" overloaded=
"no"> 
28350         <autodoc>SetColour(String colour)
</autodoc> 
28352           <param name=
"colour" type=
"String" default=
""/> 
28355       <method name=
"SwapBuffers" type=
"" overloaded=
"no"> 
28356         <autodoc>SwapBuffers()
</autodoc> 
28358       <method name=
"SetupPixelFormat" type=
"" overloaded=
"no"> 
28359         <autodoc>SetupPixelFormat()
</autodoc> 
28361       <method name=
"SetupPalette" type=
"" overloaded=
"no"> 
28362         <autodoc>SetupPalette(wxPalette palette)
</autodoc> 
28364           <param name=
"palette" type=
"Palette" default=
""/> 
28367       <method name=
"CreateDefaultPalette" type=
"Palette" overloaded=
"no"> 
28368         <autodoc>CreateDefaultPalette() -
> wxPalette
</autodoc> 
28370       <method name=
"GetPalette" type=
"Palette" overloaded=
"no"> 
28371         <autodoc>GetPalette() -
> wxPalette
</autodoc> 
28373       <method name=
"GetWindow" type=
"Window" overloaded=
"no"> 
28374         <autodoc>GetWindow() -
> Window
</autodoc> 
28377     <class name=
"GLCanvas" oldname=
"wxGLCanvas" module=
"glcanvas"> 
28378       <baseclass name=
"Window"/> 
28379       <constructor name=
"GLCanvas" overloaded=
"no"> 
28380         <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
28381     Size size=DefaultSize, long style=
0, String name=GLCanvasNameStr, 
 
28382     int attribList=None, wxPalette palette=wxNullPalette) -
> GLCanvas
</autodoc> 
28384           <param name=
"parent" type=
"Window" default=
""/> 
28385           <param name=
"id" type=
"int" default=
"-1"/> 
28386           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
28387           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
28388           <param name=
"style" type=
"long" default=
"0"/> 
28389           <param name=
"name" type=
"String" default=
"wxPyGLCanvasNameStr"/> 
28390           <param name=
"attribList" type=
"int" default=
"NULL"/> 
28391           <param name=
"palette" type=
"Palette" default=
"wxNullPalette"/> 
28394       <constructor name=
"GLCanvasWithContext" overloaded=
"no"> 
28395         <autodoc>GLCanvasWithContext(Window parent, GLContext shared=None, int id=-
1, Point pos=DefaultPosition, 
 
28396     Size size=DefaultSize, 
 
28397     long style=
0, String name=GLCanvasNameStr, 
 
28398     int attribList=None, wxPalette palette=wxNullPalette) -
> GLCanvas
</autodoc> 
28400           <param name=
"parent" type=
"Window" default=
""/> 
28401           <param name=
"shared" type=
"GLContext" default=
"NULL"/> 
28402           <param name=
"id" type=
"int" default=
"-1"/> 
28403           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
28404           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
28405           <param name=
"style" type=
"long" default=
"0"/> 
28406           <param name=
"name" type=
"String" default=
"wxPyGLCanvasNameStr"/> 
28407           <param name=
"attribList" type=
"int" default=
"NULL"/> 
28408           <param name=
"palette" type=
"Palette" default=
"wxNullPalette"/> 
28411       <method name=
"SetCurrent" type=
"" overloaded=
"no"> 
28412         <autodoc>SetCurrent()
</autodoc> 
28414       <method name=
"SetColour" type=
"" overloaded=
"no"> 
28415         <autodoc>SetColour(String colour)
</autodoc> 
28417           <param name=
"colour" type=
"String" default=
""/> 
28420       <method name=
"SwapBuffers" type=
"" overloaded=
"no"> 
28421         <autodoc>SwapBuffers()
</autodoc> 
28423       <method name=
"GetContext" type=
"GLContext" overloaded=
"no"> 
28424         <autodoc>GetContext() -
> GLContext
</autodoc> 
28428   <module name=
"ogl"> 
28429     <import name=
"windows"/> 
28430     <pythoncode> wx = core 
</pythoncode> 
28432 #---------------------------------------------------------------------------
 
28434     <class name=
"ShapeRegion" oldname=
"wxShapeRegion" module=
"ogl"> 
28435       <baseclass name=
"Object"/> 
28436       <constructor name=
"ShapeRegion" overloaded=
"no"> 
28437         <autodoc>__init__() -
> ShapeRegion
</autodoc> 
28439       <method name=
"SetText" type=
"" overloaded=
"no"> 
28440         <autodoc>SetText(String s)
</autodoc> 
28442           <param name=
"s" type=
"String" default=
""/> 
28445       <method name=
"SetFont" type=
"" overloaded=
"no"> 
28446         <autodoc>SetFont(Font f)
</autodoc> 
28448           <param name=
"f" type=
"Font" default=
""/> 
28451       <method name=
"SetMinSize" type=
"" overloaded=
"no"> 
28452         <autodoc>SetMinSize(double w, double h)
</autodoc> 
28454           <param name=
"w" type=
"double" default=
""/> 
28455           <param name=
"h" type=
"double" default=
""/> 
28458       <method name=
"SetSize" type=
"" overloaded=
"no"> 
28459         <autodoc>SetSize(double w, double h)
</autodoc> 
28461           <param name=
"w" type=
"double" default=
""/> 
28462           <param name=
"h" type=
"double" default=
""/> 
28465       <method name=
"SetPosition" type=
"" overloaded=
"no"> 
28466         <autodoc>SetPosition(double x, double y)
</autodoc> 
28468           <param name=
"x" type=
"double" default=
""/> 
28469           <param name=
"y" type=
"double" default=
""/> 
28472       <method name=
"SetProportions" type=
"" overloaded=
"no"> 
28473         <autodoc>SetProportions(double x, double y)
</autodoc> 
28475           <param name=
"x" type=
"double" default=
""/> 
28476           <param name=
"y" type=
"double" default=
""/> 
28479       <method name=
"SetFormatMode" type=
"" overloaded=
"no"> 
28480         <autodoc>SetFormatMode(int mode)
</autodoc> 
28482           <param name=
"mode" type=
"int" default=
""/> 
28485       <method name=
"SetName" type=
"" overloaded=
"no"> 
28486         <autodoc>SetName(String s)
</autodoc> 
28488           <param name=
"s" type=
"String" default=
""/> 
28491       <method name=
"SetColour" type=
"" overloaded=
"no"> 
28492         <autodoc>SetColour(String col)
</autodoc> 
28494           <param name=
"col" type=
"String" default=
""/> 
28497       <method name=
"GetText" type=
"String" overloaded=
"no"> 
28498         <autodoc>GetText() -
> String
</autodoc> 
28500       <method name=
"GetFont" type=
"Font" overloaded=
"no"> 
28501         <autodoc>GetFont() -
> Font
</autodoc> 
28503       <method name=
"GetMinSize" type=
"" overloaded=
"no"> 
28504         <autodoc>GetMinSize(double OUTPUT, double OUTPUT)
</autodoc> 
28506           <param name=
"OUTPUT" type=
"double" default=
""/> 
28507           <param name=
"OUTPUT" type=
"double" default=
""/> 
28510       <method name=
"GetProportion" type=
"" overloaded=
"no"> 
28511         <autodoc>GetProportion(double OUTPUT, double OUTPUT)
</autodoc> 
28513           <param name=
"OUTPUT" type=
"double" default=
""/> 
28514           <param name=
"OUTPUT" type=
"double" default=
""/> 
28517       <method name=
"GetSize" type=
"" overloaded=
"no"> 
28518         <autodoc>GetSize(double OUTPUT, double OUTPUT)
</autodoc> 
28520           <param name=
"OUTPUT" type=
"double" default=
""/> 
28521           <param name=
"OUTPUT" type=
"double" default=
""/> 
28524       <method name=
"GetPosition" type=
"" overloaded=
"no"> 
28525         <autodoc>GetPosition(double OUTPUT, double OUTPUT)
</autodoc> 
28527           <param name=
"OUTPUT" type=
"double" default=
""/> 
28528           <param name=
"OUTPUT" type=
"double" default=
""/> 
28531       <method name=
"GetFormatMode" type=
"int" overloaded=
"no"> 
28532         <autodoc>GetFormatMode() -
> int
</autodoc> 
28534       <method name=
"GetName" type=
"String" overloaded=
"no"> 
28535         <autodoc>GetName() -
> String
</autodoc> 
28537       <method name=
"GetColour" type=
"String" overloaded=
"no"> 
28538         <autodoc>GetColour() -
> String
</autodoc> 
28540       <method name=
"GetActualColourObject" type=
"Colour" overloaded=
"no"> 
28541         <autodoc>GetActualColourObject() -
> Colour
</autodoc> 
28543       <method name=
"GetFormattedText" type=
"wxList" overloaded=
"no"> 
28544         <autodoc>GetFormattedText() -
> wxList
</autodoc> 
28546       <method name=
"GetPenColour" type=
"String" overloaded=
"no"> 
28547         <autodoc>GetPenColour() -
> String
</autodoc> 
28549       <method name=
"GetPenStyle" type=
"int" overloaded=
"no"> 
28550         <autodoc>GetPenStyle() -
> int
</autodoc> 
28552       <method name=
"SetPenStyle" type=
"" overloaded=
"no"> 
28553         <autodoc>SetPenStyle(int style)
</autodoc> 
28555           <param name=
"style" type=
"int" default=
""/> 
28558       <method name=
"SetPenColour" type=
"" overloaded=
"no"> 
28559         <autodoc>SetPenColour(String col)
</autodoc> 
28561           <param name=
"col" type=
"String" default=
""/> 
28564       <method name=
"GetActualPen" type=
"Pen" overloaded=
"no"> 
28565         <autodoc>GetActualPen() -
> wxPen
</autodoc> 
28567       <method name=
"GetWidth" type=
"double" overloaded=
"no"> 
28568         <autodoc>GetWidth() -
> double
</autodoc> 
28570       <method name=
"GetHeight" type=
"double" overloaded=
"no"> 
28571         <autodoc>GetHeight() -
> double
</autodoc> 
28573       <method name=
"ClearText" type=
"" overloaded=
"no"> 
28574         <autodoc>ClearText()
</autodoc> 
28577     <class name=
"AttachmentPoint" oldname=
"wxAttachmentPoint" module=
"ogl"> 
28578       <baseclass name=
"Object"/> 
28579       <constructor name=
"AttachmentPoint" overloaded=
"no"> 
28580         <autodoc>__init__(int id=
0, double x=
0.0, double y=
0.0) -
> AttachmentPoint
</autodoc> 
28582           <param name=
"id" type=
"int" default=
"0"/> 
28583           <param name=
"x" type=
"double" default=
"0.0"/> 
28584           <param name=
"y" type=
"double" default=
"0.0"/> 
28587       <property name=
"m_id" type=
"int" readonly=
"no"/> 
28588       <property name=
"m_x" type=
"double" readonly=
"no"/> 
28589       <property name=
"m_y" type=
"double" readonly=
"no"/> 
28591     <class name=
"PyShapeEvtHandler" oldname=
"wxPyShapeEvtHandler" module=
"ogl"> 
28592       <baseclass name=
"Object"/> 
28593       <constructor name=
"PyShapeEvtHandler" overloaded=
"no"> 
28594         <autodoc>__init__(PyShapeEvtHandler prev=None, PyShape shape=None) -
> PyShapeEvtHandler
</autodoc> 
28596           <param name=
"prev" type=
"PyShapeEvtHandler" default=
"NULL"/> 
28597           <param name=
"shape" type=
"wxPyShape" default=
"NULL"/> 
28600       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
28601         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
28603           <param name=
"self" type=
"PyObject" default=
""/> 
28604           <param name=
"_class" type=
"PyObject" default=
""/> 
28607       <method name=
"_setOORInfo" type=
"" overloaded=
"no"> 
28608         <autodoc>_setOORInfo(PyObject _self)
</autodoc> 
28610           <param name=
"_self" type=
"PyObject" default=
""/> 
28613       <method name=
"SetShape" type=
"" overloaded=
"no"> 
28614         <autodoc>SetShape(PyShape sh)
</autodoc> 
28616           <param name=
"sh" type=
"wxPyShape" default=
""/> 
28619       <method name=
"GetShape" type=
"wxPyShape" overloaded=
"no"> 
28620         <autodoc>GetShape() -
> PyShape
</autodoc> 
28622       <method name=
"SetPreviousHandler" type=
"" overloaded=
"no"> 
28623         <autodoc>SetPreviousHandler(PyShapeEvtHandler handler)
</autodoc> 
28625           <param name=
"handler" type=
"PyShapeEvtHandler" default=
""/> 
28628       <method name=
"GetPreviousHandler" type=
"PyShapeEvtHandler" overloaded=
"no"> 
28629         <autodoc>GetPreviousHandler() -
> PyShapeEvtHandler
</autodoc> 
28631       <method name=
"CreateNewCopy" type=
"PyShapeEvtHandler" overloaded=
"no"> 
28632         <autodoc>CreateNewCopy() -
> PyShapeEvtHandler
</autodoc> 
28634       <method name=
"base_OnDelete" type=
"" overloaded=
"no"> 
28635         <autodoc>base_OnDelete()
</autodoc> 
28637       <method name=
"base_OnDraw" type=
"" overloaded=
"no"> 
28638         <autodoc>base_OnDraw(DC dc)
</autodoc> 
28640           <param name=
"dc" type=
"DC" default=
""/> 
28643       <method name=
"base_OnDrawContents" type=
"" overloaded=
"no"> 
28644         <autodoc>base_OnDrawContents(DC dc)
</autodoc> 
28646           <param name=
"dc" type=
"DC" default=
""/> 
28649       <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no"> 
28650         <autodoc>base_OnDrawBranches(DC dc, bool erase=False)
</autodoc> 
28652           <param name=
"dc" type=
"DC" default=
""/> 
28653           <param name=
"erase" type=
"bool" default=
"False"/> 
28656       <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no"> 
28657         <autodoc>base_OnMoveLinks(DC dc)
</autodoc> 
28659           <param name=
"dc" type=
"DC" default=
""/> 
28662       <method name=
"base_OnErase" type=
"" overloaded=
"no"> 
28663         <autodoc>base_OnErase(DC dc)
</autodoc> 
28665           <param name=
"dc" type=
"DC" default=
""/> 
28668       <method name=
"base_OnEraseContents" type=
"" overloaded=
"no"> 
28669         <autodoc>base_OnEraseContents(DC dc)
</autodoc> 
28671           <param name=
"dc" type=
"DC" default=
""/> 
28674       <method name=
"base_OnHighlight" type=
"" overloaded=
"no"> 
28675         <autodoc>base_OnHighlight(DC dc)
</autodoc> 
28677           <param name=
"dc" type=
"DC" default=
""/> 
28680       <method name=
"base_OnLeftClick" type=
"" overloaded=
"no"> 
28681         <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28683           <param name=
"x" type=
"double" default=
""/> 
28684           <param name=
"y" type=
"double" default=
""/> 
28685           <param name=
"keys" type=
"int" default=
"0"/> 
28686           <param name=
"attachment" type=
"int" default=
"0"/> 
28689       <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no"> 
28690         <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28692           <param name=
"x" type=
"double" default=
""/> 
28693           <param name=
"y" type=
"double" default=
""/> 
28694           <param name=
"keys" type=
"int" default=
"0"/> 
28695           <param name=
"attachment" type=
"int" default=
"0"/> 
28698       <method name=
"base_OnRightClick" type=
"" overloaded=
"no"> 
28699         <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28701           <param name=
"x" type=
"double" default=
""/> 
28702           <param name=
"y" type=
"double" default=
""/> 
28703           <param name=
"keys" type=
"int" default=
"0"/> 
28704           <param name=
"attachment" type=
"int" default=
"0"/> 
28707       <method name=
"base_OnSize" type=
"" overloaded=
"no"> 
28708         <autodoc>base_OnSize(double x, double y)
</autodoc> 
28710           <param name=
"x" type=
"double" default=
""/> 
28711           <param name=
"y" type=
"double" default=
""/> 
28714       <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no"> 
28715         <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y, 
 
28716     bool display=True) -
> bool
</autodoc> 
28718           <param name=
"dc" type=
"DC" default=
""/> 
28719           <param name=
"x" type=
"double" default=
""/> 
28720           <param name=
"y" type=
"double" default=
""/> 
28721           <param name=
"old_x" type=
"double" default=
""/> 
28722           <param name=
"old_y" type=
"double" default=
""/> 
28723           <param name=
"display" type=
"bool" default=
"True"/> 
28726       <method name=
"base_OnMovePost" type=
"" overloaded=
"no"> 
28727         <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y, 
 
28728     bool display=True)
</autodoc> 
28730           <param name=
"dc" type=
"DC" default=
""/> 
28731           <param name=
"x" type=
"double" default=
""/> 
28732           <param name=
"y" type=
"double" default=
""/> 
28733           <param name=
"old_x" type=
"double" default=
""/> 
28734           <param name=
"old_y" type=
"double" default=
""/> 
28735           <param name=
"display" type=
"bool" default=
"True"/> 
28738       <method name=
"base_OnDragLeft" type=
"" overloaded=
"no"> 
28739         <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28741           <param name=
"draw" type=
"bool" default=
""/> 
28742           <param name=
"x" type=
"double" default=
""/> 
28743           <param name=
"y" type=
"double" default=
""/> 
28744           <param name=
"keys" type=
"int" default=
"0"/> 
28745           <param name=
"attachment" type=
"int" default=
"0"/> 
28748       <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no"> 
28749         <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28751           <param name=
"x" type=
"double" default=
""/> 
28752           <param name=
"y" type=
"double" default=
""/> 
28753           <param name=
"keys" type=
"int" default=
"0"/> 
28754           <param name=
"attachment" type=
"int" default=
"0"/> 
28757       <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no"> 
28758         <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28760           <param name=
"x" type=
"double" default=
""/> 
28761           <param name=
"y" type=
"double" default=
""/> 
28762           <param name=
"keys" type=
"int" default=
"0"/> 
28763           <param name=
"attachment" type=
"int" default=
"0"/> 
28766       <method name=
"base_OnDragRight" type=
"" overloaded=
"no"> 
28767         <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28769           <param name=
"draw" type=
"bool" default=
""/> 
28770           <param name=
"x" type=
"double" default=
""/> 
28771           <param name=
"y" type=
"double" default=
""/> 
28772           <param name=
"keys" type=
"int" default=
"0"/> 
28773           <param name=
"attachment" type=
"int" default=
"0"/> 
28776       <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no"> 
28777         <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28779           <param name=
"x" type=
"double" default=
""/> 
28780           <param name=
"y" type=
"double" default=
""/> 
28781           <param name=
"keys" type=
"int" default=
"0"/> 
28782           <param name=
"attachment" type=
"int" default=
"0"/> 
28785       <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no"> 
28786         <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
28788           <param name=
"x" type=
"double" default=
""/> 
28789           <param name=
"y" type=
"double" default=
""/> 
28790           <param name=
"keys" type=
"int" default=
"0"/> 
28791           <param name=
"attachment" type=
"int" default=
"0"/> 
28794       <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no"> 
28795         <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc> 
28797           <param name=
"dc" type=
"DC" default=
""/> 
28798           <param name=
"x" type=
"double" default=
""/> 
28799           <param name=
"y" type=
"double" default=
""/> 
28800           <param name=
"w" type=
"double" default=
""/> 
28801           <param name=
"h" type=
"double" default=
""/> 
28804       <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no"> 
28805         <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc> 
28807           <param name=
"dc" type=
"DC" default=
""/> 
28810       <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no"> 
28811         <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc> 
28813           <param name=
"dc" type=
"DC" default=
""/> 
28816       <method name=
"base_OnMoveLink" type=
"" overloaded=
"no"> 
28817         <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc> 
28819           <param name=
"dc" type=
"DC" default=
""/> 
28820           <param name=
"moveControlPoints" type=
"bool" default=
"True"/> 
28823       <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no"> 
28824         <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0, 
 
28825     int attachment=
0)
</autodoc> 
28827           <param name=
"pt" type=
"wxPyControlPoint" default=
""/> 
28828           <param name=
"draw" type=
"bool" default=
""/> 
28829           <param name=
"x" type=
"double" default=
""/> 
28830           <param name=
"y" type=
"double" default=
""/> 
28831           <param name=
"keys" type=
"int" default=
"0"/> 
28832           <param name=
"attachment" type=
"int" default=
"0"/> 
28835       <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no"> 
28836         <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
28837     int attachment=
0)
</autodoc> 
28839           <param name=
"pt" type=
"wxPyControlPoint" default=
""/> 
28840           <param name=
"x" type=
"double" default=
""/> 
28841           <param name=
"y" type=
"double" default=
""/> 
28842           <param name=
"keys" type=
"int" default=
"0"/> 
28843           <param name=
"attachment" type=
"int" default=
"0"/> 
28846       <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no"> 
28847         <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
28848     int attachment=
0)
</autodoc> 
28850           <param name=
"pt" type=
"wxPyControlPoint" default=
""/> 
28851           <param name=
"x" type=
"double" default=
""/> 
28852           <param name=
"y" type=
"double" default=
""/> 
28853           <param name=
"keys" type=
"int" default=
"0"/> 
28854           <param name=
"attachment" type=
"int" default=
"0"/> 
28857       <method name=
"base_OnBeginSize" type=
"" overloaded=
"no"> 
28858         <autodoc>base_OnBeginSize(double w, double h)
</autodoc> 
28860           <param name=
"w" type=
"double" default=
""/> 
28861           <param name=
"h" type=
"double" default=
""/> 
28864       <method name=
"base_OnEndSize" type=
"" overloaded=
"no"> 
28865         <autodoc>base_OnEndSize(double w, double h)
</autodoc> 
28867           <param name=
"w" type=
"double" default=
""/> 
28868           <param name=
"h" type=
"double" default=
""/> 
28872     <class name=
"PyShape" oldname=
"wxPyShape" module=
"ogl"> 
28873       <baseclass name=
"PyShapeEvtHandler"/> 
28874       <constructor name=
"PyShape" overloaded=
"no"> 
28875         <autodoc>__init__(PyShapeCanvas can=None) -
> PyShape
</autodoc> 
28877           <param name=
"can" type=
"wxPyShapeCanvas" default=
"NULL"/> 
28880       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
28881         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
28883           <param name=
"self" type=
"PyObject" default=
""/> 
28884           <param name=
"_class" type=
"PyObject" default=
""/> 
28887       <method name=
"GetBoundingBoxMax" type=
"" overloaded=
"no"> 
28888         <autodoc>GetBoundingBoxMax(double OUTPUT, double OUTPUT)
</autodoc> 
28890           <param name=
"OUTPUT" type=
"double" default=
""/> 
28891           <param name=
"OUTPUT" type=
"double" default=
""/> 
28894       <method name=
"GetBoundingBoxMin" type=
"" overloaded=
"no"> 
28895         <autodoc>GetBoundingBoxMin(double OUTPUT, double OUTPUT)
</autodoc> 
28897           <param name=
"OUTPUT" type=
"double" default=
""/> 
28898           <param name=
"OUTPUT" type=
"double" default=
""/> 
28901       <method name=
"GetPerimeterPoint" type=
"bool" overloaded=
"no"> 
28902         <autodoc>GetPerimeterPoint(double x1, double y1, double x2, double y2, double OUTPUT, 
 
28903     double OUTPUT) -
> bool
</autodoc> 
28905           <param name=
"x1" type=
"double" default=
""/> 
28906           <param name=
"y1" type=
"double" default=
""/> 
28907           <param name=
"x2" type=
"double" default=
""/> 
28908           <param name=
"y2" type=
"double" default=
""/> 
28909           <param name=
"OUTPUT" type=
"double" default=
""/> 
28910           <param name=
"OUTPUT" type=
"double" default=
""/> 
28913       <method name=
"GetCanvas" type=
"wxPyShapeCanvas" overloaded=
"no"> 
28914         <autodoc>GetCanvas() -
> PyShapeCanvas
</autodoc> 
28916       <method name=
"SetCanvas" type=
"" overloaded=
"no"> 
28917         <autodoc>SetCanvas(PyShapeCanvas the_canvas)
</autodoc> 
28919           <param name=
"the_canvas" type=
"wxPyShapeCanvas" default=
""/> 
28922       <method name=
"AddToCanvas" type=
"" overloaded=
"no"> 
28923         <autodoc>AddToCanvas(PyShapeCanvas the_canvas, PyShape addAfter=None)
</autodoc> 
28925           <param name=
"the_canvas" type=
"wxPyShapeCanvas" default=
""/> 
28926           <param name=
"addAfter" type=
"PyShape" default=
"NULL"/> 
28929       <method name=
"InsertInCanvas" type=
"" overloaded=
"no"> 
28930         <autodoc>InsertInCanvas(PyShapeCanvas the_canvas)
</autodoc> 
28932           <param name=
"the_canvas" type=
"wxPyShapeCanvas" default=
""/> 
28935       <method name=
"RemoveFromCanvas" type=
"" overloaded=
"no"> 
28936         <autodoc>RemoveFromCanvas(PyShapeCanvas the_canvas)
</autodoc> 
28938           <param name=
"the_canvas" type=
"wxPyShapeCanvas" default=
""/> 
28941       <method name=
"GetX" type=
"double" overloaded=
"no"> 
28942         <autodoc>GetX() -
> double
</autodoc> 
28944       <method name=
"GetY" type=
"double" overloaded=
"no"> 
28945         <autodoc>GetY() -
> double
</autodoc> 
28947       <method name=
"SetX" type=
"" overloaded=
"no"> 
28948         <autodoc>SetX(double x)
</autodoc> 
28950           <param name=
"x" type=
"double" default=
""/> 
28953       <method name=
"SetY" type=
"" overloaded=
"no"> 
28954         <autodoc>SetY(double y)
</autodoc> 
28956           <param name=
"y" type=
"double" default=
""/> 
28959       <method name=
"GetParent" type=
"PyShape" overloaded=
"no"> 
28960         <autodoc>GetParent() -
> PyShape
</autodoc> 
28962       <method name=
"SetParent" type=
"" overloaded=
"no"> 
28963         <autodoc>SetParent(PyShape p)
</autodoc> 
28965           <param name=
"p" type=
"PyShape" default=
""/> 
28968       <method name=
"GetTopAncestor" type=
"PyShape" overloaded=
"no"> 
28969         <autodoc>GetTopAncestor() -
> PyShape
</autodoc> 
28971       <method name=
"GetChildren" type=
"PyObject" overloaded=
"no"> 
28972         <autodoc>GetChildren() -
> PyObject
</autodoc> 
28974       <method name=
"Unlink" type=
"" overloaded=
"no"> 
28975         <autodoc>Unlink()
</autodoc> 
28977       <method name=
"SetDrawHandles" type=
"" overloaded=
"no"> 
28978         <autodoc>SetDrawHandles(bool drawH)
</autodoc> 
28980           <param name=
"drawH" type=
"bool" default=
""/> 
28983       <method name=
"GetDrawHandles" type=
"bool" overloaded=
"no"> 
28984         <autodoc>GetDrawHandles() -
> bool
</autodoc> 
28986       <method name=
"MakeControlPoints" type=
"" overloaded=
"no"> 
28987         <autodoc>MakeControlPoints()
</autodoc> 
28989       <method name=
"DeleteControlPoints" type=
"" overloaded=
"no"> 
28990         <autodoc>DeleteControlPoints(DC dc=None)
</autodoc> 
28992           <param name=
"dc" type=
"DC" default=
"NULL"/> 
28995       <method name=
"ResetControlPoints" type=
"" overloaded=
"no"> 
28996         <autodoc>ResetControlPoints()
</autodoc> 
28998       <method name=
"GetEventHandler" type=
"PyShapeEvtHandler" overloaded=
"no"> 
28999         <autodoc>GetEventHandler() -
> PyShapeEvtHandler
</autodoc> 
29001       <method name=
"SetEventHandler" type=
"" overloaded=
"no"> 
29002         <autodoc>SetEventHandler(PyShapeEvtHandler handler)
</autodoc> 
29004           <param name=
"handler" type=
"PyShapeEvtHandler" default=
""/> 
29007       <method name=
"MakeMandatoryControlPoints" type=
"" overloaded=
"no"> 
29008         <autodoc>MakeMandatoryControlPoints()
</autodoc> 
29010       <method name=
"ResetMandatoryControlPoints" type=
"" overloaded=
"no"> 
29011         <autodoc>ResetMandatoryControlPoints()
</autodoc> 
29013       <method name=
"Recompute" type=
"bool" overloaded=
"no"> 
29014         <autodoc>Recompute() -
> bool
</autodoc> 
29016       <method name=
"CalculateSize" type=
"" overloaded=
"no"> 
29017         <autodoc>CalculateSize()
</autodoc> 
29019       <method name=
"Select" type=
"" overloaded=
"no"> 
29020         <autodoc>Select(bool select=True, DC dc=None)
</autodoc> 
29022           <param name=
"select" type=
"bool" default=
"True"/> 
29023           <param name=
"dc" type=
"DC" default=
"NULL"/> 
29026       <method name=
"SetHighlight" type=
"" overloaded=
"no"> 
29027         <autodoc>SetHighlight(bool hi=True, bool recurse=False)
</autodoc> 
29029           <param name=
"hi" type=
"bool" default=
"True"/> 
29030           <param name=
"recurse" type=
"bool" default=
"False"/> 
29033       <method name=
"IsHighlighted" type=
"bool" overloaded=
"no"> 
29034         <autodoc>IsHighlighted() -
> bool
</autodoc> 
29036       <method name=
"Selected" type=
"bool" overloaded=
"no"> 
29037         <autodoc>Selected() -
> bool
</autodoc> 
29039       <method name=
"AncestorSelected" type=
"bool" overloaded=
"no"> 
29040         <autodoc>AncestorSelected() -
> bool
</autodoc> 
29042       <method name=
"SetSensitivityFilter" type=
"" overloaded=
"no"> 
29043         <autodoc>SetSensitivityFilter(int sens=OP_ALL, bool recursive=False)
</autodoc> 
29045           <param name=
"sens" type=
"int" default=
"OP_ALL"/> 
29046           <param name=
"recursive" type=
"bool" default=
"False"/> 
29049       <method name=
"GetSensitivityFilter" type=
"int" overloaded=
"no"> 
29050         <autodoc>GetSensitivityFilter() -
> int
</autodoc> 
29052       <method name=
"SetDraggable" type=
"" overloaded=
"no"> 
29053         <autodoc>SetDraggable(bool drag, bool recursive=False)
</autodoc> 
29055           <param name=
"drag" type=
"bool" default=
""/> 
29056           <param name=
"recursive" type=
"bool" default=
"False"/> 
29059       <method name=
"SetFixedSize" type=
"" overloaded=
"no"> 
29060         <autodoc>SetFixedSize(bool x, bool y)
</autodoc> 
29062           <param name=
"x" type=
"bool" default=
""/> 
29063           <param name=
"y" type=
"bool" default=
""/> 
29066       <method name=
"GetFixedSize" type=
"" overloaded=
"no"> 
29067         <autodoc>GetFixedSize(bool OUTPUT, bool OUTPUT)
</autodoc> 
29069           <param name=
"OUTPUT" type=
"bool" default=
""/> 
29070           <param name=
"OUTPUT" type=
"bool" default=
""/> 
29073       <method name=
"GetFixedWidth" type=
"bool" overloaded=
"no"> 
29074         <autodoc>GetFixedWidth() -
> bool
</autodoc> 
29076       <method name=
"GetFixedHeight" type=
"bool" overloaded=
"no"> 
29077         <autodoc>GetFixedHeight() -
> bool
</autodoc> 
29079       <method name=
"SetSpaceAttachments" type=
"" overloaded=
"no"> 
29080         <autodoc>SetSpaceAttachments(bool sp)
</autodoc> 
29082           <param name=
"sp" type=
"bool" default=
""/> 
29085       <method name=
"GetSpaceAttachments" type=
"bool" overloaded=
"no"> 
29086         <autodoc>GetSpaceAttachments() -
> bool
</autodoc> 
29088       <method name=
"SetShadowMode" type=
"" overloaded=
"no"> 
29089         <autodoc>SetShadowMode(int mode, bool redraw=False)
</autodoc> 
29091           <param name=
"mode" type=
"int" default=
""/> 
29092           <param name=
"redraw" type=
"bool" default=
"False"/> 
29095       <method name=
"GetShadowMode" type=
"int" overloaded=
"no"> 
29096         <autodoc>GetShadowMode() -
> int
</autodoc> 
29098       <method name=
"HitTest" type=
"bool" overloaded=
"no"> 
29099         <autodoc>HitTest(double x, double y, int OUTPUT, double OUTPUT) -
> bool
</autodoc> 
29101           <param name=
"x" type=
"double" default=
""/> 
29102           <param name=
"y" type=
"double" default=
""/> 
29103           <param name=
"OUTPUT" type=
"int" default=
""/> 
29104           <param name=
"OUTPUT" type=
"double" default=
""/> 
29107       <method name=
"SetCentreResize" type=
"" overloaded=
"no"> 
29108         <autodoc>SetCentreResize(bool cr)
</autodoc> 
29110           <param name=
"cr" type=
"bool" default=
""/> 
29113       <method name=
"GetCentreResize" type=
"bool" overloaded=
"no"> 
29114         <autodoc>GetCentreResize() -
> bool
</autodoc> 
29116       <method name=
"SetMaintainAspectRatio" type=
"" overloaded=
"no"> 
29117         <autodoc>SetMaintainAspectRatio(bool ar)
</autodoc> 
29119           <param name=
"ar" type=
"bool" default=
""/> 
29122       <method name=
"GetMaintainAspectRatio" type=
"bool" overloaded=
"no"> 
29123         <autodoc>GetMaintainAspectRatio() -
> bool
</autodoc> 
29125       <method name=
"GetLines" type=
"PyObject" overloaded=
"no"> 
29126         <autodoc>GetLines() -
> PyObject
</autodoc> 
29128       <method name=
"SetDisableLabel" type=
"" overloaded=
"no"> 
29129         <autodoc>SetDisableLabel(bool flag)
</autodoc> 
29131           <param name=
"flag" type=
"bool" default=
""/> 
29134       <method name=
"GetDisableLabel" type=
"bool" overloaded=
"no"> 
29135         <autodoc>GetDisableLabel() -
> bool
</autodoc> 
29137       <method name=
"SetAttachmentMode" type=
"" overloaded=
"no"> 
29138         <autodoc>SetAttachmentMode(int mode)
</autodoc> 
29140           <param name=
"mode" type=
"int" default=
""/> 
29143       <method name=
"GetAttachmentMode" type=
"int" overloaded=
"no"> 
29144         <autodoc>GetAttachmentMode() -
> int
</autodoc> 
29146       <method name=
"SetId" type=
"" overloaded=
"no"> 
29147         <autodoc>SetId(long i)
</autodoc> 
29149           <param name=
"i" type=
"long" default=
""/> 
29152       <method name=
"GetId" type=
"long" overloaded=
"no"> 
29153         <autodoc>GetId() -
> long
</autodoc> 
29155       <method name=
"SetPen" type=
"" overloaded=
"no"> 
29156         <autodoc>SetPen(wxPen pen)
</autodoc> 
29158           <param name=
"pen" type=
"Pen" default=
""/> 
29161       <method name=
"SetBrush" type=
"" overloaded=
"no"> 
29162         <autodoc>SetBrush(wxBrush brush)
</autodoc> 
29164           <param name=
"brush" type=
"Brush" default=
""/> 
29167       <method name=
"Show" type=
"" overloaded=
"no"> 
29168         <autodoc>Show(bool show)
</autodoc> 
29170           <param name=
"show" type=
"bool" default=
""/> 
29173       <method name=
"IsShown" type=
"bool" overloaded=
"no"> 
29174         <autodoc>IsShown() -
> bool
</autodoc> 
29176       <method name=
"Move" type=
"" overloaded=
"no"> 
29177         <autodoc>Move(DC dc, double x1, double y1, bool display=True)
</autodoc> 
29179           <param name=
"dc" type=
"DC" default=
""/> 
29180           <param name=
"x1" type=
"double" default=
""/> 
29181           <param name=
"y1" type=
"double" default=
""/> 
29182           <param name=
"display" type=
"bool" default=
"True"/> 
29185       <method name=
"Erase" type=
"" overloaded=
"no"> 
29186         <autodoc>Erase(DC dc)
</autodoc> 
29188           <param name=
"dc" type=
"DC" default=
""/> 
29191       <method name=
"EraseContents" type=
"" overloaded=
"no"> 
29192         <autodoc>EraseContents(DC dc)
</autodoc> 
29194           <param name=
"dc" type=
"DC" default=
""/> 
29197       <method name=
"Draw" type=
"" overloaded=
"no"> 
29198         <autodoc>Draw(DC dc)
</autodoc> 
29200           <param name=
"dc" type=
"DC" default=
""/> 
29203       <method name=
"Flash" type=
"" overloaded=
"no"> 
29204         <autodoc>Flash()
</autodoc> 
29206       <method name=
"MoveLinks" type=
"" overloaded=
"no"> 
29207         <autodoc>MoveLinks(DC dc)
</autodoc> 
29209           <param name=
"dc" type=
"DC" default=
""/> 
29212       <method name=
"DrawContents" type=
"" overloaded=
"no"> 
29213         <autodoc>DrawContents(DC dc)
</autodoc> 
29215           <param name=
"dc" type=
"DC" default=
""/> 
29218       <method name=
"SetSize" type=
"" overloaded=
"no"> 
29219         <autodoc>SetSize(double x, double y, bool recursive=True)
</autodoc> 
29221           <param name=
"x" type=
"double" default=
""/> 
29222           <param name=
"y" type=
"double" default=
""/> 
29223           <param name=
"recursive" type=
"bool" default=
"True"/> 
29226       <method name=
"SetAttachmentSize" type=
"" overloaded=
"no"> 
29227         <autodoc>SetAttachmentSize(double x, double y)
</autodoc> 
29229           <param name=
"x" type=
"double" default=
""/> 
29230           <param name=
"y" type=
"double" default=
""/> 
29233       <method name=
"Attach" type=
"" overloaded=
"no"> 
29234         <autodoc>Attach(PyShapeCanvas can)
</autodoc> 
29236           <param name=
"can" type=
"wxPyShapeCanvas" default=
""/> 
29239       <method name=
"Detach" type=
"" overloaded=
"no"> 
29240         <autodoc>Detach()
</autodoc> 
29242       <method name=
"Constrain" type=
"bool" overloaded=
"no"> 
29243         <autodoc>Constrain() -
> bool
</autodoc> 
29245       <method name=
"AddLine" type=
"" overloaded=
"no"> 
29246         <autodoc>AddLine(PyLineShape line, PyShape other, int attachFrom=
0, 
 
29247     int attachTo=
0, int positionFrom=-
1, int positionTo=-
1)
</autodoc> 
29249           <param name=
"line" type=
"wxPyLineShape" default=
""/> 
29250           <param name=
"other" type=
"PyShape" default=
""/> 
29251           <param name=
"attachFrom" type=
"int" default=
"0"/> 
29252           <param name=
"attachTo" type=
"int" default=
"0"/> 
29253           <param name=
"positionFrom" type=
"int" default=
"-1"/> 
29254           <param name=
"positionTo" type=
"int" default=
"-1"/> 
29257       <method name=
"GetLinePosition" type=
"int" overloaded=
"no"> 
29258         <autodoc>GetLinePosition(PyLineShape line) -
> int
</autodoc> 
29260           <param name=
"line" type=
"wxPyLineShape" default=
""/> 
29263       <method name=
"AddText" type=
"" overloaded=
"no"> 
29264         <autodoc>AddText(String string)
</autodoc> 
29266           <param name=
"string" type=
"String" default=
""/> 
29269       <method name=
"GetPen" type=
"Pen" overloaded=
"no"> 
29270         <autodoc>GetPen() -
> wxPen
</autodoc> 
29272       <method name=
"GetBrush" type=
"Brush" overloaded=
"no"> 
29273         <autodoc>GetBrush() -
> wxBrush
</autodoc> 
29275       <method name=
"SetDefaultRegionSize" type=
"" overloaded=
"no"> 
29276         <autodoc>SetDefaultRegionSize()
</autodoc> 
29278       <method name=
"FormatText" type=
"" overloaded=
"no"> 
29279         <autodoc>FormatText(DC dc, String s, int regionId=
0)
</autodoc> 
29281           <param name=
"dc" type=
"DC" default=
""/> 
29282           <param name=
"s" type=
"String" default=
""/> 
29283           <param name=
"regionId" type=
"int" default=
"0"/> 
29286       <method name=
"SetFormatMode" type=
"" overloaded=
"no"> 
29287         <autodoc>SetFormatMode(int mode, int regionId=
0)
</autodoc> 
29289           <param name=
"mode" type=
"int" default=
""/> 
29290           <param name=
"regionId" type=
"int" default=
"0"/> 
29293       <method name=
"GetFormatMode" type=
"int" overloaded=
"no"> 
29294         <autodoc>GetFormatMode(int regionId=
0) -
> int
</autodoc> 
29296           <param name=
"regionId" type=
"int" default=
"0"/> 
29299       <method name=
"SetFont" type=
"" overloaded=
"no"> 
29300         <autodoc>SetFont(Font font, int regionId=
0)
</autodoc> 
29302           <param name=
"font" type=
"Font" default=
""/> 
29303           <param name=
"regionId" type=
"int" default=
"0"/> 
29306       <method name=
"GetFont" type=
"Font" overloaded=
"no"> 
29307         <autodoc>GetFont(int regionId=
0) -
> Font
</autodoc> 
29309           <param name=
"regionId" type=
"int" default=
"0"/> 
29312       <method name=
"SetTextColour" type=
"" overloaded=
"no"> 
29313         <autodoc>SetTextColour(String colour, int regionId=
0)
</autodoc> 
29315           <param name=
"colour" type=
"String" default=
""/> 
29316           <param name=
"regionId" type=
"int" default=
"0"/> 
29319       <method name=
"GetTextColour" type=
"String" overloaded=
"no"> 
29320         <autodoc>GetTextColour(int regionId=
0) -
> String
</autodoc> 
29322           <param name=
"regionId" type=
"int" default=
"0"/> 
29325       <method name=
"GetNumberOfTextRegions" type=
"int" overloaded=
"no"> 
29326         <autodoc>GetNumberOfTextRegions() -
> int
</autodoc> 
29328       <method name=
"SetRegionName" type=
"" overloaded=
"no"> 
29329         <autodoc>SetRegionName(String name, int regionId=
0)
</autodoc> 
29331           <param name=
"name" type=
"String" default=
""/> 
29332           <param name=
"regionId" type=
"int" default=
"0"/> 
29335       <method name=
"GetRegionName" type=
"String" overloaded=
"no"> 
29336         <autodoc>GetRegionName(int regionId) -
> String
</autodoc> 
29338           <param name=
"regionId" type=
"int" default=
""/> 
29341       <method name=
"GetRegionId" type=
"int" overloaded=
"no"> 
29342         <autodoc>GetRegionId(String name) -
> int
</autodoc> 
29344           <param name=
"name" type=
"String" default=
""/> 
29347       <method name=
"NameRegions" type=
"" overloaded=
"no"> 
29348         <autodoc>NameRegions(String parentName=EmptyString)
</autodoc> 
29350           <param name=
"parentName" type=
"String" default=
"wxPyEmptyString"/> 
29353       <method name=
"GetRegions" type=
"PyObject" overloaded=
"no"> 
29354         <autodoc>GetRegions() -
> PyObject
</autodoc> 
29356       <method name=
"AddRegion" type=
"" overloaded=
"no"> 
29357         <autodoc>AddRegion(ShapeRegion region)
</autodoc> 
29359           <param name=
"region" type=
"ShapeRegion" default=
""/> 
29362       <method name=
"ClearRegions" type=
"" overloaded=
"no"> 
29363         <autodoc>ClearRegions()
</autodoc> 
29365       <method name=
"AssignNewIds" type=
"" overloaded=
"no"> 
29366         <autodoc>AssignNewIds()
</autodoc> 
29368       <method name=
"FindRegion" type=
"PyShape" overloaded=
"no"> 
29369         <autodoc>FindRegion(String regionName, int OUTPUT) -
> PyShape
</autodoc> 
29371           <param name=
"regionName" type=
"String" default=
""/> 
29372           <param name=
"OUTPUT" type=
"int" default=
""/> 
29375       <method name=
"FindRegionNames" type=
"" overloaded=
"no"> 
29376         <autodoc>FindRegionNames(wxStringList list)
</autodoc> 
29378           <param name=
"list" type=
"wxStringList" default=
""/> 
29381       <method name=
"ClearText" type=
"" overloaded=
"no"> 
29382         <autodoc>ClearText(int regionId=
0)
</autodoc> 
29384           <param name=
"regionId" type=
"int" default=
"0"/> 
29387       <method name=
"RemoveLine" type=
"" overloaded=
"no"> 
29388         <autodoc>RemoveLine(PyLineShape line)
</autodoc> 
29390           <param name=
"line" type=
"wxPyLineShape" default=
""/> 
29393       <method name=
"GetAttachmentPosition" type=
"bool" overloaded=
"no"> 
29394         <autodoc>GetAttachmentPosition(int attachment, double OUTPUT, double OUTPUT, int nth=
0, 
 
29395     int no_arcs=
1, PyLineShape line=None) -
> bool
</autodoc> 
29397           <param name=
"attachment" type=
"int" default=
""/> 
29398           <param name=
"OUTPUT" type=
"double" default=
""/> 
29399           <param name=
"OUTPUT" type=
"double" default=
""/> 
29400           <param name=
"nth" type=
"int" default=
"0"/> 
29401           <param name=
"no_arcs" type=
"int" default=
"1"/> 
29402           <param name=
"line" type=
"wxPyLineShape" default=
"NULL"/> 
29405       <method name=
"GetNumberOfAttachments" type=
"int" overloaded=
"no"> 
29406         <autodoc>GetNumberOfAttachments() -
> int
</autodoc> 
29408       <method name=
"AttachmentIsValid" type=
"bool" overloaded=
"no"> 
29409         <autodoc>AttachmentIsValid(int attachment) -
> bool
</autodoc> 
29411           <param name=
"attachment" type=
"int" default=
""/> 
29414       <method name=
"GetAttachments" type=
"PyObject" overloaded=
"no"> 
29415         <autodoc>GetAttachments() -
> PyObject
</autodoc> 
29417       <method name=
"GetAttachmentPositionEdge" type=
"bool" overloaded=
"no"> 
29418         <autodoc>GetAttachmentPositionEdge(int attachment, double OUTPUT, double OUTPUT, int nth=
0, 
 
29419     int no_arcs=
1, PyLineShape line=None) -
> bool
</autodoc> 
29421           <param name=
"attachment" type=
"int" default=
""/> 
29422           <param name=
"OUTPUT" type=
"double" default=
""/> 
29423           <param name=
"OUTPUT" type=
"double" default=
""/> 
29424           <param name=
"nth" type=
"int" default=
"0"/> 
29425           <param name=
"no_arcs" type=
"int" default=
"1"/> 
29426           <param name=
"line" type=
"wxPyLineShape" default=
"NULL"/> 
29429       <method name=
"CalcSimpleAttachment" type=
"RealPoint" overloaded=
"no"> 
29430         <autodoc>CalcSimpleAttachment(RealPoint pt1, RealPoint pt2, int nth, int noArcs, 
 
29431     PyLineShape line) -
> RealPoint
</autodoc> 
29433           <param name=
"pt1" type=
"RealPoint" default=
""/> 
29434           <param name=
"pt2" type=
"RealPoint" default=
""/> 
29435           <param name=
"nth" type=
"int" default=
""/> 
29436           <param name=
"noArcs" type=
"int" default=
""/> 
29437           <param name=
"line" type=
"wxPyLineShape" default=
""/> 
29440       <method name=
"AttachmentSortTest" type=
"bool" overloaded=
"no"> 
29441         <autodoc>AttachmentSortTest(int attachmentPoint, RealPoint pt1, RealPoint pt2) -
> bool
</autodoc> 
29443           <param name=
"attachmentPoint" type=
"int" default=
""/> 
29444           <param name=
"pt1" type=
"RealPoint" default=
""/> 
29445           <param name=
"pt2" type=
"RealPoint" default=
""/> 
29448       <method name=
"EraseLinks" type=
"" overloaded=
"no"> 
29449         <autodoc>EraseLinks(DC dc, int attachment=-
1, bool recurse=False)
</autodoc> 
29451           <param name=
"dc" type=
"DC" default=
""/> 
29452           <param name=
"attachment" type=
"int" default=
"-1"/> 
29453           <param name=
"recurse" type=
"bool" default=
"False"/> 
29456       <method name=
"DrawLinks" type=
"" overloaded=
"no"> 
29457         <autodoc>DrawLinks(DC dc, int attachment=-
1, bool recurse=False)
</autodoc> 
29459           <param name=
"dc" type=
"DC" default=
""/> 
29460           <param name=
"attachment" type=
"int" default=
"-1"/> 
29461           <param name=
"recurse" type=
"bool" default=
"False"/> 
29464       <method name=
"MoveLineToNewAttachment" type=
"bool" overloaded=
"no"> 
29465         <autodoc>MoveLineToNewAttachment(DC dc, PyLineShape to_move, double x, double y) -
> bool
</autodoc> 
29467           <param name=
"dc" type=
"DC" default=
""/> 
29468           <param name=
"to_move" type=
"wxPyLineShape" default=
""/> 
29469           <param name=
"x" type=
"double" default=
""/> 
29470           <param name=
"y" type=
"double" default=
""/> 
29473       <method name=
"ApplyAttachmentOrdering" type=
"" overloaded=
"no"> 
29474         <autodoc>ApplyAttachmentOrdering(PyObject linesToSort)
</autodoc> 
29476           <param name=
"linesToSort" type=
"PyObject" default=
""/> 
29479       <method name=
"GetBranchingAttachmentRoot" type=
"RealPoint" overloaded=
"no"> 
29480         <autodoc>GetBranchingAttachmentRoot(int attachment) -
> RealPoint
</autodoc> 
29482           <param name=
"attachment" type=
"int" default=
""/> 
29485       <method name=
"GetBranchingAttachmentInfo" type=
"bool" overloaded=
"no"> 
29486         <autodoc>GetBranchingAttachmentInfo(int attachment, RealPoint root, RealPoint neck, RealPoint shoulder1, 
 
29487     RealPoint shoulder2) -
> bool
</autodoc> 
29489           <param name=
"attachment" type=
"int" default=
""/> 
29490           <param name=
"root" type=
"RealPoint" default=
""/> 
29491           <param name=
"neck" type=
"RealPoint" default=
""/> 
29492           <param name=
"shoulder1" type=
"RealPoint" default=
""/> 
29493           <param name=
"shoulder2" type=
"RealPoint" default=
""/> 
29496       <method name=
"GetBranchingAttachmentPoint" type=
"bool" overloaded=
"no"> 
29497         <autodoc>GetBranchingAttachmentPoint(int attachment, int n, RealPoint attachmentPoint, RealPoint stemPoint) -
> bool
</autodoc> 
29499           <param name=
"attachment" type=
"int" default=
""/> 
29500           <param name=
"n" type=
"int" default=
""/> 
29501           <param name=
"attachmentPoint" type=
"RealPoint" default=
""/> 
29502           <param name=
"stemPoint" type=
"RealPoint" default=
""/> 
29505       <method name=
"GetAttachmentLineCount" type=
"int" overloaded=
"no"> 
29506         <autodoc>GetAttachmentLineCount(int attachment) -
> int
</autodoc> 
29508           <param name=
"attachment" type=
"int" default=
""/> 
29511       <method name=
"SetBranchNeckLength" type=
"" overloaded=
"no"> 
29512         <autodoc>SetBranchNeckLength(int len)
</autodoc> 
29514           <param name=
"len" type=
"int" default=
""/> 
29517       <method name=
"GetBranchNeckLength" type=
"int" overloaded=
"no"> 
29518         <autodoc>GetBranchNeckLength() -
> int
</autodoc> 
29520       <method name=
"SetBranchStemLength" type=
"" overloaded=
"no"> 
29521         <autodoc>SetBranchStemLength(int len)
</autodoc> 
29523           <param name=
"len" type=
"int" default=
""/> 
29526       <method name=
"GetBranchStemLength" type=
"int" overloaded=
"no"> 
29527         <autodoc>GetBranchStemLength() -
> int
</autodoc> 
29529       <method name=
"SetBranchSpacing" type=
"" overloaded=
"no"> 
29530         <autodoc>SetBranchSpacing(int len)
</autodoc> 
29532           <param name=
"len" type=
"int" default=
""/> 
29535       <method name=
"GetBranchSpacing" type=
"int" overloaded=
"no"> 
29536         <autodoc>GetBranchSpacing() -
> int
</autodoc> 
29538       <method name=
"SetBranchStyle" type=
"" overloaded=
"no"> 
29539         <autodoc>SetBranchStyle(long style)
</autodoc> 
29541           <param name=
"style" type=
"long" default=
""/> 
29544       <method name=
"GetBranchStyle" type=
"long" overloaded=
"no"> 
29545         <autodoc>GetBranchStyle() -
> long
</autodoc> 
29547       <method name=
"PhysicalToLogicalAttachment" type=
"int" overloaded=
"no"> 
29548         <autodoc>PhysicalToLogicalAttachment(int physicalAttachment) -
> int
</autodoc> 
29550           <param name=
"physicalAttachment" type=
"int" default=
""/> 
29553       <method name=
"LogicalToPhysicalAttachment" type=
"int" overloaded=
"no"> 
29554         <autodoc>LogicalToPhysicalAttachment(int logicalAttachment) -
> int
</autodoc> 
29556           <param name=
"logicalAttachment" type=
"int" default=
""/> 
29559       <method name=
"Draggable" type=
"bool" overloaded=
"no"> 
29560         <autodoc>Draggable() -
> bool
</autodoc> 
29562       <method name=
"HasDescendant" type=
"bool" overloaded=
"no"> 
29563         <autodoc>HasDescendant(PyShape image) -
> bool
</autodoc> 
29565           <param name=
"image" type=
"PyShape" default=
""/> 
29568       <method name=
"CreateNewCopy" type=
"PyShape" overloaded=
"no"> 
29569         <autodoc>CreateNewCopy(bool resetMapping=True, bool recompute=True) -
> PyShape
</autodoc> 
29571           <param name=
"resetMapping" type=
"bool" default=
"True"/> 
29572           <param name=
"recompute" type=
"bool" default=
"True"/> 
29575       <method name=
"Copy" type=
"" overloaded=
"no"> 
29576         <autodoc>Copy(PyShape copy)
</autodoc> 
29578           <param name=
"copy" type=
"PyShape" default=
""/> 
29581       <method name=
"CopyWithHandler" type=
"" overloaded=
"no"> 
29582         <autodoc>CopyWithHandler(PyShape copy)
</autodoc> 
29584           <param name=
"copy" type=
"PyShape" default=
""/> 
29587       <method name=
"Rotate" type=
"" overloaded=
"no"> 
29588         <autodoc>Rotate(double x, double y, double theta)
</autodoc> 
29590           <param name=
"x" type=
"double" default=
""/> 
29591           <param name=
"y" type=
"double" default=
""/> 
29592           <param name=
"theta" type=
"double" default=
""/> 
29595       <method name=
"GetRotation" type=
"double" overloaded=
"no"> 
29596         <autodoc>GetRotation() -
> double
</autodoc> 
29598       <method name=
"SetRotation" type=
"" overloaded=
"no"> 
29599         <autodoc>SetRotation(double rotation)
</autodoc> 
29601           <param name=
"rotation" type=
"double" default=
""/> 
29604       <method name=
"ClearAttachments" type=
"" overloaded=
"no"> 
29605         <autodoc>ClearAttachments()
</autodoc> 
29607       <method name=
"Recentre" type=
"" overloaded=
"no"> 
29608         <autodoc>Recentre(DC dc)
</autodoc> 
29610           <param name=
"dc" type=
"DC" default=
""/> 
29613       <method name=
"ClearPointList" type=
"" overloaded=
"no"> 
29614         <autodoc>ClearPointList(wxList list)
</autodoc> 
29616           <param name=
"list" type=
"wxList" default=
""/> 
29619       <method name=
"GetBackgroundPen" type=
"Pen" overloaded=
"no"> 
29620         <autodoc>GetBackgroundPen() -
> wxPen
</autodoc> 
29622       <method name=
"GetBackgroundBrush" type=
"Brush" overloaded=
"no"> 
29623         <autodoc>GetBackgroundBrush() -
> wxBrush
</autodoc> 
29625       <method name=
"base_OnDelete" type=
"" overloaded=
"no"> 
29626         <autodoc>base_OnDelete()
</autodoc> 
29628       <method name=
"base_OnDraw" type=
"" overloaded=
"no"> 
29629         <autodoc>base_OnDraw(DC dc)
</autodoc> 
29631           <param name=
"dc" type=
"DC" default=
""/> 
29634       <method name=
"base_OnDrawContents" type=
"" overloaded=
"no"> 
29635         <autodoc>base_OnDrawContents(DC dc)
</autodoc> 
29637           <param name=
"dc" type=
"DC" default=
""/> 
29640       <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no"> 
29641         <autodoc>base_OnDrawBranches(DC dc, bool erase=False)
</autodoc> 
29643           <param name=
"dc" type=
"DC" default=
""/> 
29644           <param name=
"erase" type=
"bool" default=
"False"/> 
29647       <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no"> 
29648         <autodoc>base_OnMoveLinks(DC dc)
</autodoc> 
29650           <param name=
"dc" type=
"DC" default=
""/> 
29653       <method name=
"base_OnErase" type=
"" overloaded=
"no"> 
29654         <autodoc>base_OnErase(DC dc)
</autodoc> 
29656           <param name=
"dc" type=
"DC" default=
""/> 
29659       <method name=
"base_OnEraseContents" type=
"" overloaded=
"no"> 
29660         <autodoc>base_OnEraseContents(DC dc)
</autodoc> 
29662           <param name=
"dc" type=
"DC" default=
""/> 
29665       <method name=
"base_OnHighlight" type=
"" overloaded=
"no"> 
29666         <autodoc>base_OnHighlight(DC dc)
</autodoc> 
29668           <param name=
"dc" type=
"DC" default=
""/> 
29671       <method name=
"base_OnLeftClick" type=
"" overloaded=
"no"> 
29672         <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29674           <param name=
"x" type=
"double" default=
""/> 
29675           <param name=
"y" type=
"double" default=
""/> 
29676           <param name=
"keys" type=
"int" default=
"0"/> 
29677           <param name=
"attachment" type=
"int" default=
"0"/> 
29680       <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no"> 
29681         <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29683           <param name=
"x" type=
"double" default=
""/> 
29684           <param name=
"y" type=
"double" default=
""/> 
29685           <param name=
"keys" type=
"int" default=
"0"/> 
29686           <param name=
"attachment" type=
"int" default=
"0"/> 
29689       <method name=
"base_OnRightClick" type=
"" overloaded=
"no"> 
29690         <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29692           <param name=
"x" type=
"double" default=
""/> 
29693           <param name=
"y" type=
"double" default=
""/> 
29694           <param name=
"keys" type=
"int" default=
"0"/> 
29695           <param name=
"attachment" type=
"int" default=
"0"/> 
29698       <method name=
"base_OnSize" type=
"" overloaded=
"no"> 
29699         <autodoc>base_OnSize(double x, double y)
</autodoc> 
29701           <param name=
"x" type=
"double" default=
""/> 
29702           <param name=
"y" type=
"double" default=
""/> 
29705       <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no"> 
29706         <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y, 
 
29707     bool display=True) -
> bool
</autodoc> 
29709           <param name=
"dc" type=
"DC" default=
""/> 
29710           <param name=
"x" type=
"double" default=
""/> 
29711           <param name=
"y" type=
"double" default=
""/> 
29712           <param name=
"old_x" type=
"double" default=
""/> 
29713           <param name=
"old_y" type=
"double" default=
""/> 
29714           <param name=
"display" type=
"bool" default=
"True"/> 
29717       <method name=
"base_OnMovePost" type=
"" overloaded=
"no"> 
29718         <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y, 
 
29719     bool display=True)
</autodoc> 
29721           <param name=
"dc" type=
"DC" default=
""/> 
29722           <param name=
"x" type=
"double" default=
""/> 
29723           <param name=
"y" type=
"double" default=
""/> 
29724           <param name=
"old_x" type=
"double" default=
""/> 
29725           <param name=
"old_y" type=
"double" default=
""/> 
29726           <param name=
"display" type=
"bool" default=
"True"/> 
29729       <method name=
"base_OnDragLeft" type=
"" overloaded=
"no"> 
29730         <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29732           <param name=
"draw" type=
"bool" default=
""/> 
29733           <param name=
"x" type=
"double" default=
""/> 
29734           <param name=
"y" type=
"double" default=
""/> 
29735           <param name=
"keys" type=
"int" default=
"0"/> 
29736           <param name=
"attachment" type=
"int" default=
"0"/> 
29739       <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no"> 
29740         <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29742           <param name=
"x" type=
"double" default=
""/> 
29743           <param name=
"y" type=
"double" default=
""/> 
29744           <param name=
"keys" type=
"int" default=
"0"/> 
29745           <param name=
"attachment" type=
"int" default=
"0"/> 
29748       <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no"> 
29749         <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29751           <param name=
"x" type=
"double" default=
""/> 
29752           <param name=
"y" type=
"double" default=
""/> 
29753           <param name=
"keys" type=
"int" default=
"0"/> 
29754           <param name=
"attachment" type=
"int" default=
"0"/> 
29757       <method name=
"base_OnDragRight" type=
"" overloaded=
"no"> 
29758         <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29760           <param name=
"draw" type=
"bool" default=
""/> 
29761           <param name=
"x" type=
"double" default=
""/> 
29762           <param name=
"y" type=
"double" default=
""/> 
29763           <param name=
"keys" type=
"int" default=
"0"/> 
29764           <param name=
"attachment" type=
"int" default=
"0"/> 
29767       <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no"> 
29768         <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29770           <param name=
"x" type=
"double" default=
""/> 
29771           <param name=
"y" type=
"double" default=
""/> 
29772           <param name=
"keys" type=
"int" default=
"0"/> 
29773           <param name=
"attachment" type=
"int" default=
"0"/> 
29776       <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no"> 
29777         <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
29779           <param name=
"x" type=
"double" default=
""/> 
29780           <param name=
"y" type=
"double" default=
""/> 
29781           <param name=
"keys" type=
"int" default=
"0"/> 
29782           <param name=
"attachment" type=
"int" default=
"0"/> 
29785       <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no"> 
29786         <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc> 
29788           <param name=
"dc" type=
"DC" default=
""/> 
29789           <param name=
"x" type=
"double" default=
""/> 
29790           <param name=
"y" type=
"double" default=
""/> 
29791           <param name=
"w" type=
"double" default=
""/> 
29792           <param name=
"h" type=
"double" default=
""/> 
29795       <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no"> 
29796         <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc> 
29798           <param name=
"dc" type=
"DC" default=
""/> 
29801       <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no"> 
29802         <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc> 
29804           <param name=
"dc" type=
"DC" default=
""/> 
29807       <method name=
"base_OnMoveLink" type=
"" overloaded=
"no"> 
29808         <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc> 
29810           <param name=
"dc" type=
"DC" default=
""/> 
29811           <param name=
"moveControlPoints" type=
"bool" default=
"True"/> 
29814       <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no"> 
29815         <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0, 
 
29816     int attachment=
0)
</autodoc> 
29818           <param name=
"pt" type=
"wxPyControlPoint" default=
""/> 
29819           <param name=
"draw" type=
"bool" default=
""/> 
29820           <param name=
"x" type=
"double" default=
""/> 
29821           <param name=
"y" type=
"double" default=
""/> 
29822           <param name=
"keys" type=
"int" default=
"0"/> 
29823           <param name=
"attachment" type=
"int" default=
"0"/> 
29826       <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no"> 
29827         <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
29828     int attachment=
0)
</autodoc> 
29830           <param name=
"pt" type=
"wxPyControlPoint" default=
""/> 
29831           <param name=
"x" type=
"double" default=
""/> 
29832           <param name=
"y" type=
"double" default=
""/> 
29833           <param name=
"keys" type=
"int" default=
"0"/> 
29834           <param name=
"attachment" type=
"int" default=
"0"/> 
29837       <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no"> 
29838         <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
29839     int attachment=
0)
</autodoc> 
29841           <param name=
"pt" type=
"wxPyControlPoint" default=
""/> 
29842           <param name=
"x" type=
"double" default=
""/> 
29843           <param name=
"y" type=
"double" default=
""/> 
29844           <param name=
"keys" type=
"int" default=
"0"/> 
29845           <param name=
"attachment" type=
"int" default=
"0"/> 
29848       <method name=
"base_OnBeginSize" type=
"" overloaded=
"no"> 
29849         <autodoc>base_OnBeginSize(double w, double h)
</autodoc> 
29851           <param name=
"w" type=
"double" default=
""/> 
29852           <param name=
"h" type=
"double" default=
""/> 
29855       <method name=
"base_OnEndSize" type=
"" overloaded=
"no"> 
29856         <autodoc>base_OnEndSize(double w, double h)
</autodoc> 
29858           <param name=
"w" type=
"double" default=
""/> 
29859           <param name=
"h" type=
"double" default=
""/> 
29863     <class name=
"PseudoMetaFile" oldname=
"wxPseudoMetaFile" module=
"ogl"> 
29864       <baseclass name=
"Object"/> 
29865       <constructor name=
"PseudoMetaFile" overloaded=
"no"> 
29866         <autodoc>__init__() -
> PseudoMetaFile
</autodoc> 
29868       <destructor name=
"~wxPseudoMetaFile" overloaded=
"no"> 
29869         <autodoc>__del__()
</autodoc> 
29871       <method name=
"Draw" type=
"" overloaded=
"no"> 
29872         <autodoc>Draw(DC dc, double xoffset, double yoffset)
</autodoc> 
29874           <param name=
"dc" type=
"DC" default=
""/> 
29875           <param name=
"xoffset" type=
"double" default=
""/> 
29876           <param name=
"yoffset" type=
"double" default=
""/> 
29879       <method name=
"Clear" type=
"" overloaded=
"no"> 
29880         <autodoc>Clear()
</autodoc> 
29882       <method name=
"Copy" type=
"" overloaded=
"no"> 
29883         <autodoc>Copy(PseudoMetaFile copy)
</autodoc> 
29885           <param name=
"copy" type=
"PseudoMetaFile" default=
""/> 
29888       <method name=
"Scale" type=
"" overloaded=
"no"> 
29889         <autodoc>Scale(double sx, double sy)
</autodoc> 
29891           <param name=
"sx" type=
"double" default=
""/> 
29892           <param name=
"sy" type=
"double" default=
""/> 
29895       <method name=
"ScaleTo" type=
"" overloaded=
"no"> 
29896         <autodoc>ScaleTo(double w, double h)
</autodoc> 
29898           <param name=
"w" type=
"double" default=
""/> 
29899           <param name=
"h" type=
"double" default=
""/> 
29902       <method name=
"Translate" type=
"" overloaded=
"no"> 
29903         <autodoc>Translate(double x, double y)
</autodoc> 
29905           <param name=
"x" type=
"double" default=
""/> 
29906           <param name=
"y" type=
"double" default=
""/> 
29909       <method name=
"Rotate" type=
"" overloaded=
"no"> 
29910         <autodoc>Rotate(double x, double y, double theta)
</autodoc> 
29912           <param name=
"x" type=
"double" default=
""/> 
29913           <param name=
"y" type=
"double" default=
""/> 
29914           <param name=
"theta" type=
"double" default=
""/> 
29917       <method name=
"LoadFromMetaFile" type=
"bool" overloaded=
"no"> 
29918         <autodoc>LoadFromMetaFile(String filename, double width, double height) -
> bool
</autodoc> 
29920           <param name=
"filename" type=
"String" default=
""/> 
29921           <param name=
"width" type=
"double" default=
""/> 
29922           <param name=
"height" type=
"double" default=
""/> 
29925       <method name=
"GetBounds" type=
"" overloaded=
"no"> 
29926         <autodoc>GetBounds(double minX, double minY, double maxX, double maxY)
</autodoc> 
29928           <param name=
"minX" type=
"double" default=
""/> 
29929           <param name=
"minY" type=
"double" default=
""/> 
29930           <param name=
"maxX" type=
"double" default=
""/> 
29931           <param name=
"maxY" type=
"double" default=
""/> 
29934       <method name=
"CalculateSize" type=
"" overloaded=
"no"> 
29935         <autodoc>CalculateSize(PyDrawnShape shape)
</autodoc> 
29937           <param name=
"shape" type=
"wxPyDrawnShape" default=
""/> 
29940       <method name=
"SetRotateable" type=
"" overloaded=
"no"> 
29941         <autodoc>SetRotateable(bool rot)
</autodoc> 
29943           <param name=
"rot" type=
"bool" default=
""/> 
29946       <method name=
"GetRotateable" type=
"bool" overloaded=
"no"> 
29947         <autodoc>GetRotateable() -
> bool
</autodoc> 
29949       <method name=
"SetSize" type=
"" overloaded=
"no"> 
29950         <autodoc>SetSize(double w, double h)
</autodoc> 
29952           <param name=
"w" type=
"double" default=
""/> 
29953           <param name=
"h" type=
"double" default=
""/> 
29956       <method name=
"SetFillBrush" type=
"" overloaded=
"no"> 
29957         <autodoc>SetFillBrush(wxBrush brush)
</autodoc> 
29959           <param name=
"brush" type=
"Brush" default=
""/> 
29962       <method name=
"GetFillBrush" type=
"Brush" overloaded=
"no"> 
29963         <autodoc>GetFillBrush() -
> wxBrush
</autodoc> 
29965       <method name=
"SetOutlinePen" type=
"" overloaded=
"no"> 
29966         <autodoc>SetOutlinePen(wxPen pen)
</autodoc> 
29968           <param name=
"pen" type=
"Pen" default=
""/> 
29971       <method name=
"GetOutlinePen" type=
"Pen" overloaded=
"no"> 
29972         <autodoc>GetOutlinePen() -
> wxPen
</autodoc> 
29974       <method name=
"SetOutlineOp" type=
"" overloaded=
"no"> 
29975         <autodoc>SetOutlineOp(int op)
</autodoc> 
29977           <param name=
"op" type=
"int" default=
""/> 
29980       <method name=
"GetOutlineOp" type=
"int" overloaded=
"no"> 
29981         <autodoc>GetOutlineOp() -
> int
</autodoc> 
29983       <method name=
"IsValid" type=
"bool" overloaded=
"no"> 
29984         <autodoc>IsValid() -
> bool
</autodoc> 
29986       <method name=
"DrawLine" type=
"" overloaded=
"no"> 
29987         <autodoc>DrawLine(Point pt1, Point pt2)
</autodoc> 
29989           <param name=
"pt1" type=
"Point" default=
""/> 
29990           <param name=
"pt2" type=
"Point" default=
""/> 
29993       <method name=
"DrawRectangle" type=
"" overloaded=
"no"> 
29994         <autodoc>DrawRectangle(Rect rect)
</autodoc> 
29996           <param name=
"rect" type=
"Rect" default=
""/> 
29999       <method name=
"DrawRoundedRectangle" type=
"" overloaded=
"no"> 
30000         <autodoc>DrawRoundedRectangle(Rect rect, double radius)
</autodoc> 
30002           <param name=
"rect" type=
"Rect" default=
""/> 
30003           <param name=
"radius" type=
"double" default=
""/> 
30006       <method name=
"DrawArc" type=
"" overloaded=
"no"> 
30007         <autodoc>DrawArc(Point centrePt, Point startPt, Point endPt)
</autodoc> 
30009           <param name=
"centrePt" type=
"Point" default=
""/> 
30010           <param name=
"startPt" type=
"Point" default=
""/> 
30011           <param name=
"endPt" type=
"Point" default=
""/> 
30014       <method name=
"DrawEllipticArc" type=
"" overloaded=
"no"> 
30015         <autodoc>DrawEllipticArc(Rect rect, double startAngle, double endAngle)
</autodoc> 
30017           <param name=
"rect" type=
"Rect" default=
""/> 
30018           <param name=
"startAngle" type=
"double" default=
""/> 
30019           <param name=
"endAngle" type=
"double" default=
""/> 
30022       <method name=
"DrawEllipse" type=
"" overloaded=
"no"> 
30023         <autodoc>DrawEllipse(Rect rect)
</autodoc> 
30025           <param name=
"rect" type=
"Rect" default=
""/> 
30028       <method name=
"DrawPoint" type=
"" overloaded=
"no"> 
30029         <autodoc>DrawPoint(Point pt)
</autodoc> 
30031           <param name=
"pt" type=
"Point" default=
""/> 
30034       <method name=
"DrawText" type=
"" overloaded=
"no"> 
30035         <autodoc>DrawText(String text, Point pt)
</autodoc> 
30037           <param name=
"text" type=
"String" default=
""/> 
30038           <param name=
"pt" type=
"Point" default=
""/> 
30041       <method name=
"DrawLines" type=
"" overloaded=
"no"> 
30042         <autodoc>DrawLines(int PCOUNT, Point points)
</autodoc> 
30044           <param name=
"PCOUNT" type=
"int" default=
""/> 
30045           <param name=
"points" type=
"Point" default=
""/> 
30048       <method name=
"DrawPolygon" type=
"" overloaded=
"no"> 
30049         <autodoc>DrawPolygon(int PCOUNT, Point points, int flags=
0)
</autodoc> 
30051           <param name=
"PCOUNT" type=
"int" default=
""/> 
30052           <param name=
"points" type=
"Point" default=
""/> 
30053           <param name=
"flags" type=
"int" default=
"0"/> 
30056       <method name=
"DrawSpline" type=
"" overloaded=
"no"> 
30057         <autodoc>DrawSpline(int PCOUNT, Point points)
</autodoc> 
30059           <param name=
"PCOUNT" type=
"int" default=
""/> 
30060           <param name=
"points" type=
"Point" default=
""/> 
30063       <method name=
"SetClippingRect" type=
"" overloaded=
"no"> 
30064         <autodoc>SetClippingRect(Rect rect)
</autodoc> 
30066           <param name=
"rect" type=
"Rect" default=
""/> 
30069       <method name=
"DestroyClippingRect" type=
"" overloaded=
"no"> 
30070         <autodoc>DestroyClippingRect()
</autodoc> 
30072       <method name=
"SetPen" type=
"" overloaded=
"no"> 
30073         <autodoc>SetPen(wxPen pen, bool isOutline=FALSE)
</autodoc> 
30075           <param name=
"pen" type=
"Pen" default=
""/> 
30076           <param name=
"isOutline" type=
"bool" default=
"FALSE"/> 
30079       <method name=
"SetBrush" type=
"" overloaded=
"no"> 
30080         <autodoc>SetBrush(wxBrush brush, bool isFill=FALSE)
</autodoc> 
30082           <param name=
"brush" type=
"Brush" default=
""/> 
30083           <param name=
"isFill" type=
"bool" default=
"FALSE"/> 
30086       <method name=
"SetFont" type=
"" overloaded=
"no"> 
30087         <autodoc>SetFont(Font font)
</autodoc> 
30089           <param name=
"font" type=
"Font" default=
""/> 
30092       <method name=
"SetTextColour" type=
"" overloaded=
"no"> 
30093         <autodoc>SetTextColour(Colour colour)
</autodoc> 
30095           <param name=
"colour" type=
"Colour" default=
""/> 
30098       <method name=
"SetBackgroundColour" type=
"" overloaded=
"no"> 
30099         <autodoc>SetBackgroundColour(Colour colour)
</autodoc> 
30101           <param name=
"colour" type=
"Colour" default=
""/> 
30104       <method name=
"SetBackgroundMode" type=
"" overloaded=
"no"> 
30105         <autodoc>SetBackgroundMode(int mode)
</autodoc> 
30107           <param name=
"mode" type=
"int" default=
""/> 
30111     <class name=
"PyRectangleShape" oldname=
"wxPyRectangleShape" module=
"ogl"> 
30112       <baseclass name=
"PyShape"/> 
30113       <constructor name=
"PyRectangleShape" overloaded=
"no"> 
30114         <autodoc>__init__(double width=
0.0, double height=
0.0) -
> PyRectangleShape
</autodoc> 
30116           <param name=
"width" type=
"double" default=
"0.0"/> 
30117           <param name=
"height" type=
"double" default=
"0.0"/> 
30120       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
30121         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
30123           <param name=
"self" type=
"PyObject" default=
""/> 
30124           <param name=
"_class" type=
"PyObject" default=
""/> 
30127       <method name=
"SetCornerRadius" type=
"" overloaded=
"no"> 
30128         <autodoc>SetCornerRadius(double radius)
</autodoc> 
30130           <param name=
"radius" type=
"double" default=
""/> 
30133       <method name=
"GetCornerRadius" type=
"double" overloaded=
"no"> 
30134         <autodoc>GetCornerRadius() -
> double
</autodoc> 
30136       <method name=
"base_OnDelete" type=
"" overloaded=
"no"> 
30137         <autodoc>base_OnDelete()
</autodoc> 
30139       <method name=
"base_OnDraw" type=
"" overloaded=
"no"> 
30140         <autodoc>base_OnDraw(DC dc)
</autodoc> 
30142           <param name=
"dc" type=
"DC" default=
""/> 
30145       <method name=
"base_OnDrawContents" type=
"" overloaded=
"no"> 
30146         <autodoc>base_OnDrawContents(DC dc)
</autodoc> 
30148           <param name=
"dc" type=
"DC" default=
""/> 
30151       <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no"> 
30152         <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc> 
30154           <param name=
"dc" type=
"DC" default=
""/> 
30155           <param name=
"erase" type=
"bool" default=
"FALSE"/> 
30158       <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no"> 
30159         <autodoc>base_OnMoveLinks(DC dc)
</autodoc> 
30161           <param name=
"dc" type=
"DC" default=
""/> 
30164       <method name=
"base_OnErase" type=
"" overloaded=
"no"> 
30165         <autodoc>base_OnErase(DC dc)
</autodoc> 
30167           <param name=
"dc" type=
"DC" default=
""/> 
30170       <method name=
"base_OnEraseContents" type=
"" overloaded=
"no"> 
30171         <autodoc>base_OnEraseContents(DC dc)
</autodoc> 
30173           <param name=
"dc" type=
"DC" default=
""/> 
30176       <method name=
"base_OnHighlight" type=
"" overloaded=
"no"> 
30177         <autodoc>base_OnHighlight(DC dc)
</autodoc> 
30179           <param name=
"dc" type=
"DC" default=
""/> 
30182       <method name=
"base_OnLeftClick" type=
"" overloaded=
"no"> 
30183         <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30185           <param name=
"x" type=
"double" default=
""/> 
30186           <param name=
"y" type=
"double" default=
""/> 
30187           <param name=
"keys" type=
"int" default=
"0"/> 
30188           <param name=
"attachment" type=
"int" default=
"0"/> 
30191       <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no"> 
30192         <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30194           <param name=
"x" type=
"double" default=
""/> 
30195           <param name=
"y" type=
"double" default=
""/> 
30196           <param name=
"keys" type=
"int" default=
"0"/> 
30197           <param name=
"attachment" type=
"int" default=
"0"/> 
30200       <method name=
"base_OnRightClick" type=
"" overloaded=
"no"> 
30201         <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30203           <param name=
"x" type=
"double" default=
""/> 
30204           <param name=
"y" type=
"double" default=
""/> 
30205           <param name=
"keys" type=
"int" default=
"0"/> 
30206           <param name=
"attachment" type=
"int" default=
"0"/> 
30209       <method name=
"base_OnSize" type=
"" overloaded=
"no"> 
30210         <autodoc>base_OnSize(double x, double y)
</autodoc> 
30212           <param name=
"x" type=
"double" default=
""/> 
30213           <param name=
"y" type=
"double" default=
""/> 
30216       <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no"> 
30217         <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y, 
 
30218     bool display=True) -
> bool
</autodoc> 
30220           <param name=
"dc" type=
"DC" default=
""/> 
30221           <param name=
"x" type=
"double" default=
""/> 
30222           <param name=
"y" type=
"double" default=
""/> 
30223           <param name=
"old_x" type=
"double" default=
""/> 
30224           <param name=
"old_y" type=
"double" default=
""/> 
30225           <param name=
"display" type=
"bool" default=
"True"/> 
30228       <method name=
"base_OnMovePost" type=
"" overloaded=
"no"> 
30229         <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y, 
 
30230     bool display=True)
</autodoc> 
30232           <param name=
"dc" type=
"DC" default=
""/> 
30233           <param name=
"x" type=
"double" default=
""/> 
30234           <param name=
"y" type=
"double" default=
""/> 
30235           <param name=
"old_x" type=
"double" default=
""/> 
30236           <param name=
"old_y" type=
"double" default=
""/> 
30237           <param name=
"display" type=
"bool" default=
"True"/> 
30240       <method name=
"base_OnDragLeft" type=
"" overloaded=
"no"> 
30241         <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30243           <param name=
"draw" type=
"bool" default=
""/> 
30244           <param name=
"x" type=
"double" default=
""/> 
30245           <param name=
"y" type=
"double" default=
""/> 
30246           <param name=
"keys" type=
"int" default=
"0"/> 
30247           <param name=
"attachment" type=
"int" default=
"0"/> 
30250       <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no"> 
30251         <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30253           <param name=
"x" type=
"double" default=
""/> 
30254           <param name=
"y" type=
"double" default=
""/> 
30255           <param name=
"keys" type=
"int" default=
"0"/> 
30256           <param name=
"attachment" type=
"int" default=
"0"/> 
30259       <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no"> 
30260         <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30262           <param name=
"x" type=
"double" default=
""/> 
30263           <param name=
"y" type=
"double" default=
""/> 
30264           <param name=
"keys" type=
"int" default=
"0"/> 
30265           <param name=
"attachment" type=
"int" default=
"0"/> 
30268       <method name=
"base_OnDragRight" type=
"" overloaded=
"no"> 
30269         <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30271           <param name=
"draw" type=
"bool" default=
""/> 
30272           <param name=
"x" type=
"double" default=
""/> 
30273           <param name=
"y" type=
"double" default=
""/> 
30274           <param name=
"keys" type=
"int" default=
"0"/> 
30275           <param name=
"attachment" type=
"int" default=
"0"/> 
30278       <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no"> 
30279         <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30281           <param name=
"x" type=
"double" default=
""/> 
30282           <param name=
"y" type=
"double" default=
""/> 
30283           <param name=
"keys" type=
"int" default=
"0"/> 
30284           <param name=
"attachment" type=
"int" default=
"0"/> 
30287       <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no"> 
30288         <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30290           <param name=
"x" type=
"double" default=
""/> 
30291           <param name=
"y" type=
"double" default=
""/> 
30292           <param name=
"keys" type=
"int" default=
"0"/> 
30293           <param name=
"attachment" type=
"int" default=
"0"/> 
30296       <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no"> 
30297         <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc> 
30299           <param name=
"dc" type=
"DC" default=
""/> 
30300           <param name=
"x" type=
"double" default=
""/> 
30301           <param name=
"y" type=
"double" default=
""/> 
30302           <param name=
"w" type=
"double" default=
""/> 
30303           <param name=
"h" type=
"double" default=
""/> 
30306       <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no"> 
30307         <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc> 
30309           <param name=
"dc" type=
"DC" default=
""/> 
30312       <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no"> 
30313         <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc> 
30315           <param name=
"dc" type=
"DC" default=
""/> 
30318       <method name=
"base_OnMoveLink" type=
"" overloaded=
"no"> 
30319         <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc> 
30321           <param name=
"dc" type=
"DC" default=
""/> 
30322           <param name=
"moveControlPoints" type=
"bool" default=
"True"/> 
30325       <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no"> 
30326         <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0, 
 
30327     int attachment=
0)
</autodoc> 
30329           <param name=
"pt" type=
"wxPyControlPoint" default=
""/> 
30330           <param name=
"draw" type=
"bool" default=
""/> 
30331           <param name=
"x" type=
"double" default=
""/> 
30332           <param name=
"y" type=
"double" default=
""/> 
30333           <param name=
"keys" type=
"int" default=
"0"/> 
30334           <param name=
"attachment" type=
"int" default=
"0"/> 
30337       <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no"> 
30338         <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
30339     int attachment=
0)
</autodoc> 
30341           <param name=
"pt" type=
"wxPyControlPoint" default=
""/> 
30342           <param name=
"x" type=
"double" default=
""/> 
30343           <param name=
"y" type=
"double" default=
""/> 
30344           <param name=
"keys" type=
"int" default=
"0"/> 
30345           <param name=
"attachment" type=
"int" default=
"0"/> 
30348       <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no"> 
30349         <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
30350     int attachment=
0)
</autodoc> 
30352           <param name=
"pt" type=
"wxPyControlPoint" default=
""/> 
30353           <param name=
"x" type=
"double" default=
""/> 
30354           <param name=
"y" type=
"double" default=
""/> 
30355           <param name=
"keys" type=
"int" default=
"0"/> 
30356           <param name=
"attachment" type=
"int" default=
"0"/> 
30359       <method name=
"base_OnBeginSize" type=
"" overloaded=
"no"> 
30360         <autodoc>base_OnBeginSize(double w, double h)
</autodoc> 
30362           <param name=
"w" type=
"double" default=
""/> 
30363           <param name=
"h" type=
"double" default=
""/> 
30366       <method name=
"base_OnEndSize" type=
"" overloaded=
"no"> 
30367         <autodoc>base_OnEndSize(double w, double h)
</autodoc> 
30369           <param name=
"w" type=
"double" default=
""/> 
30370           <param name=
"h" type=
"double" default=
""/> 
30374     <class name=
"PyControlPoint" oldname=
"wxPyControlPoint" module=
"ogl"> 
30375       <baseclass name=
"PyRectangleShape"/> 
30376       <constructor name=
"PyControlPoint" overloaded=
"no"> 
30377         <autodoc>__init__(PyShapeCanvas the_canvas=None, PyShape object=None, 
 
30378     double size=
0.0, double the_xoffset=
0.0, double the_yoffset=
0.0, 
 
30379     int the_type=
0) -
> PyControlPoint
</autodoc> 
30381           <param name=
"the_canvas" type=
"wxPyShapeCanvas" default=
"NULL"/> 
30382           <param name=
"object" type=
"PyShape" default=
"NULL"/> 
30383           <param name=
"size" type=
"double" default=
"0.0"/> 
30384           <param name=
"the_xoffset" type=
"double" default=
"0.0"/> 
30385           <param name=
"the_yoffset" type=
"double" default=
"0.0"/> 
30386           <param name=
"the_type" type=
"int" default=
"0"/> 
30389       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
30390         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
30392           <param name=
"self" type=
"PyObject" default=
""/> 
30393           <param name=
"_class" type=
"PyObject" default=
""/> 
30396       <method name=
"SetCornerRadius" type=
"" overloaded=
"no"> 
30397         <autodoc>SetCornerRadius(double radius)
</autodoc> 
30399           <param name=
"radius" type=
"double" default=
""/> 
30402       <method name=
"base_OnDelete" type=
"" overloaded=
"no"> 
30403         <autodoc>base_OnDelete()
</autodoc> 
30405       <method name=
"base_OnDraw" type=
"" overloaded=
"no"> 
30406         <autodoc>base_OnDraw(DC dc)
</autodoc> 
30408           <param name=
"dc" type=
"DC" default=
""/> 
30411       <method name=
"base_OnDrawContents" type=
"" overloaded=
"no"> 
30412         <autodoc>base_OnDrawContents(DC dc)
</autodoc> 
30414           <param name=
"dc" type=
"DC" default=
""/> 
30417       <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no"> 
30418         <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc> 
30420           <param name=
"dc" type=
"DC" default=
""/> 
30421           <param name=
"erase" type=
"bool" default=
"FALSE"/> 
30424       <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no"> 
30425         <autodoc>base_OnMoveLinks(DC dc)
</autodoc> 
30427           <param name=
"dc" type=
"DC" default=
""/> 
30430       <method name=
"base_OnErase" type=
"" overloaded=
"no"> 
30431         <autodoc>base_OnErase(DC dc)
</autodoc> 
30433           <param name=
"dc" type=
"DC" default=
""/> 
30436       <method name=
"base_OnEraseContents" type=
"" overloaded=
"no"> 
30437         <autodoc>base_OnEraseContents(DC dc)
</autodoc> 
30439           <param name=
"dc" type=
"DC" default=
""/> 
30442       <method name=
"base_OnHighlight" type=
"" overloaded=
"no"> 
30443         <autodoc>base_OnHighlight(DC dc)
</autodoc> 
30445           <param name=
"dc" type=
"DC" default=
""/> 
30448       <method name=
"base_OnLeftClick" type=
"" overloaded=
"no"> 
30449         <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30451           <param name=
"x" type=
"double" default=
""/> 
30452           <param name=
"y" type=
"double" default=
""/> 
30453           <param name=
"keys" type=
"int" default=
"0"/> 
30454           <param name=
"attachment" type=
"int" default=
"0"/> 
30457       <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no"> 
30458         <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30460           <param name=
"x" type=
"double" default=
""/> 
30461           <param name=
"y" type=
"double" default=
""/> 
30462           <param name=
"keys" type=
"int" default=
"0"/> 
30463           <param name=
"attachment" type=
"int" default=
"0"/> 
30466       <method name=
"base_OnRightClick" type=
"" overloaded=
"no"> 
30467         <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30469           <param name=
"x" type=
"double" default=
""/> 
30470           <param name=
"y" type=
"double" default=
""/> 
30471           <param name=
"keys" type=
"int" default=
"0"/> 
30472           <param name=
"attachment" type=
"int" default=
"0"/> 
30475       <method name=
"base_OnSize" type=
"" overloaded=
"no"> 
30476         <autodoc>base_OnSize(double x, double y)
</autodoc> 
30478           <param name=
"x" type=
"double" default=
""/> 
30479           <param name=
"y" type=
"double" default=
""/> 
30482       <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no"> 
30483         <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y, 
 
30484     bool display=True) -
> bool
</autodoc> 
30486           <param name=
"dc" type=
"DC" default=
""/> 
30487           <param name=
"x" type=
"double" default=
""/> 
30488           <param name=
"y" type=
"double" default=
""/> 
30489           <param name=
"old_x" type=
"double" default=
""/> 
30490           <param name=
"old_y" type=
"double" default=
""/> 
30491           <param name=
"display" type=
"bool" default=
"True"/> 
30494       <method name=
"base_OnMovePost" type=
"" overloaded=
"no"> 
30495         <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y, 
 
30496     bool display=True)
</autodoc> 
30498           <param name=
"dc" type=
"DC" default=
""/> 
30499           <param name=
"x" type=
"double" default=
""/> 
30500           <param name=
"y" type=
"double" default=
""/> 
30501           <param name=
"old_x" type=
"double" default=
""/> 
30502           <param name=
"old_y" type=
"double" default=
""/> 
30503           <param name=
"display" type=
"bool" default=
"True"/> 
30506       <method name=
"base_OnDragLeft" type=
"" overloaded=
"no"> 
30507         <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30509           <param name=
"draw" type=
"bool" default=
""/> 
30510           <param name=
"x" type=
"double" default=
""/> 
30511           <param name=
"y" type=
"double" default=
""/> 
30512           <param name=
"keys" type=
"int" default=
"0"/> 
30513           <param name=
"attachment" type=
"int" default=
"0"/> 
30516       <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no"> 
30517         <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30519           <param name=
"x" type=
"double" default=
""/> 
30520           <param name=
"y" type=
"double" default=
""/> 
30521           <param name=
"keys" type=
"int" default=
"0"/> 
30522           <param name=
"attachment" type=
"int" default=
"0"/> 
30525       <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no"> 
30526         <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30528           <param name=
"x" type=
"double" default=
""/> 
30529           <param name=
"y" type=
"double" default=
""/> 
30530           <param name=
"keys" type=
"int" default=
"0"/> 
30531           <param name=
"attachment" type=
"int" default=
"0"/> 
30534       <method name=
"base_OnDragRight" type=
"" overloaded=
"no"> 
30535         <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30537           <param name=
"draw" type=
"bool" default=
""/> 
30538           <param name=
"x" type=
"double" default=
""/> 
30539           <param name=
"y" type=
"double" default=
""/> 
30540           <param name=
"keys" type=
"int" default=
"0"/> 
30541           <param name=
"attachment" type=
"int" default=
"0"/> 
30544       <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no"> 
30545         <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30547           <param name=
"x" type=
"double" default=
""/> 
30548           <param name=
"y" type=
"double" default=
""/> 
30549           <param name=
"keys" type=
"int" default=
"0"/> 
30550           <param name=
"attachment" type=
"int" default=
"0"/> 
30553       <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no"> 
30554         <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30556           <param name=
"x" type=
"double" default=
""/> 
30557           <param name=
"y" type=
"double" default=
""/> 
30558           <param name=
"keys" type=
"int" default=
"0"/> 
30559           <param name=
"attachment" type=
"int" default=
"0"/> 
30562       <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no"> 
30563         <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc> 
30565           <param name=
"dc" type=
"DC" default=
""/> 
30566           <param name=
"x" type=
"double" default=
""/> 
30567           <param name=
"y" type=
"double" default=
""/> 
30568           <param name=
"w" type=
"double" default=
""/> 
30569           <param name=
"h" type=
"double" default=
""/> 
30572       <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no"> 
30573         <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc> 
30575           <param name=
"dc" type=
"DC" default=
""/> 
30578       <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no"> 
30579         <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc> 
30581           <param name=
"dc" type=
"DC" default=
""/> 
30584       <method name=
"base_OnMoveLink" type=
"" overloaded=
"no"> 
30585         <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc> 
30587           <param name=
"dc" type=
"DC" default=
""/> 
30588           <param name=
"moveControlPoints" type=
"bool" default=
"True"/> 
30591       <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no"> 
30592         <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0, 
 
30593     int attachment=
0)
</autodoc> 
30595           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
30596           <param name=
"draw" type=
"bool" default=
""/> 
30597           <param name=
"x" type=
"double" default=
""/> 
30598           <param name=
"y" type=
"double" default=
""/> 
30599           <param name=
"keys" type=
"int" default=
"0"/> 
30600           <param name=
"attachment" type=
"int" default=
"0"/> 
30603       <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no"> 
30604         <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
30605     int attachment=
0)
</autodoc> 
30607           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
30608           <param name=
"x" type=
"double" default=
""/> 
30609           <param name=
"y" type=
"double" default=
""/> 
30610           <param name=
"keys" type=
"int" default=
"0"/> 
30611           <param name=
"attachment" type=
"int" default=
"0"/> 
30614       <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no"> 
30615         <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
30616     int attachment=
0)
</autodoc> 
30618           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
30619           <param name=
"x" type=
"double" default=
""/> 
30620           <param name=
"y" type=
"double" default=
""/> 
30621           <param name=
"keys" type=
"int" default=
"0"/> 
30622           <param name=
"attachment" type=
"int" default=
"0"/> 
30625       <method name=
"base_OnBeginSize" type=
"" overloaded=
"no"> 
30626         <autodoc>base_OnBeginSize(double w, double h)
</autodoc> 
30628           <param name=
"w" type=
"double" default=
""/> 
30629           <param name=
"h" type=
"double" default=
""/> 
30632       <method name=
"base_OnEndSize" type=
"" overloaded=
"no"> 
30633         <autodoc>base_OnEndSize(double w, double h)
</autodoc> 
30635           <param name=
"w" type=
"double" default=
""/> 
30636           <param name=
"h" type=
"double" default=
""/> 
30640     <class name=
"PyBitmapShape" oldname=
"wxPyBitmapShape" module=
"ogl"> 
30641       <baseclass name=
"PyRectangleShape"/> 
30642       <constructor name=
"PyBitmapShape" overloaded=
"no"> 
30643         <autodoc>__init__() -
> PyBitmapShape
</autodoc> 
30645       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
30646         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
30648           <param name=
"self" type=
"PyObject" default=
""/> 
30649           <param name=
"_class" type=
"PyObject" default=
""/> 
30652       <method name=
"GetBitmap" type=
"Bitmap" overloaded=
"no"> 
30653         <autodoc>GetBitmap() -
> Bitmap
</autodoc> 
30655       <method name=
"GetFilename" type=
"String" overloaded=
"no"> 
30656         <autodoc>GetFilename() -
> String
</autodoc> 
30658       <method name=
"SetBitmap" type=
"" overloaded=
"no"> 
30659         <autodoc>SetBitmap(Bitmap bitmap)
</autodoc> 
30661           <param name=
"bitmap" type=
"Bitmap" default=
""/> 
30664       <method name=
"SetFilename" type=
"" overloaded=
"no"> 
30665         <autodoc>SetFilename(String filename)
</autodoc> 
30667           <param name=
"filename" type=
"String" default=
""/> 
30670       <method name=
"base_OnDelete" type=
"" overloaded=
"no"> 
30671         <autodoc>base_OnDelete()
</autodoc> 
30673       <method name=
"base_OnDraw" type=
"" overloaded=
"no"> 
30674         <autodoc>base_OnDraw(DC dc)
</autodoc> 
30676           <param name=
"dc" type=
"DC" default=
""/> 
30679       <method name=
"base_OnDrawContents" type=
"" overloaded=
"no"> 
30680         <autodoc>base_OnDrawContents(DC dc)
</autodoc> 
30682           <param name=
"dc" type=
"DC" default=
""/> 
30685       <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no"> 
30686         <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc> 
30688           <param name=
"dc" type=
"DC" default=
""/> 
30689           <param name=
"erase" type=
"bool" default=
"FALSE"/> 
30692       <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no"> 
30693         <autodoc>base_OnMoveLinks(DC dc)
</autodoc> 
30695           <param name=
"dc" type=
"DC" default=
""/> 
30698       <method name=
"base_OnErase" type=
"" overloaded=
"no"> 
30699         <autodoc>base_OnErase(DC dc)
</autodoc> 
30701           <param name=
"dc" type=
"DC" default=
""/> 
30704       <method name=
"base_OnEraseContents" type=
"" overloaded=
"no"> 
30705         <autodoc>base_OnEraseContents(DC dc)
</autodoc> 
30707           <param name=
"dc" type=
"DC" default=
""/> 
30710       <method name=
"base_OnHighlight" type=
"" overloaded=
"no"> 
30711         <autodoc>base_OnHighlight(DC dc)
</autodoc> 
30713           <param name=
"dc" type=
"DC" default=
""/> 
30716       <method name=
"base_OnLeftClick" type=
"" overloaded=
"no"> 
30717         <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30719           <param name=
"x" type=
"double" default=
""/> 
30720           <param name=
"y" type=
"double" default=
""/> 
30721           <param name=
"keys" type=
"int" default=
"0"/> 
30722           <param name=
"attachment" type=
"int" default=
"0"/> 
30725       <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no"> 
30726         <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30728           <param name=
"x" type=
"double" default=
""/> 
30729           <param name=
"y" type=
"double" default=
""/> 
30730           <param name=
"keys" type=
"int" default=
"0"/> 
30731           <param name=
"attachment" type=
"int" default=
"0"/> 
30734       <method name=
"base_OnRightClick" type=
"" overloaded=
"no"> 
30735         <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30737           <param name=
"x" type=
"double" default=
""/> 
30738           <param name=
"y" type=
"double" default=
""/> 
30739           <param name=
"keys" type=
"int" default=
"0"/> 
30740           <param name=
"attachment" type=
"int" default=
"0"/> 
30743       <method name=
"base_OnSize" type=
"" overloaded=
"no"> 
30744         <autodoc>base_OnSize(double x, double y)
</autodoc> 
30746           <param name=
"x" type=
"double" default=
""/> 
30747           <param name=
"y" type=
"double" default=
""/> 
30750       <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no"> 
30751         <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y, 
 
30752     bool display=True) -
> bool
</autodoc> 
30754           <param name=
"dc" type=
"DC" default=
""/> 
30755           <param name=
"x" type=
"double" default=
""/> 
30756           <param name=
"y" type=
"double" default=
""/> 
30757           <param name=
"old_x" type=
"double" default=
""/> 
30758           <param name=
"old_y" type=
"double" default=
""/> 
30759           <param name=
"display" type=
"bool" default=
"True"/> 
30762       <method name=
"base_OnMovePost" type=
"" overloaded=
"no"> 
30763         <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y, 
 
30764     bool display=True)
</autodoc> 
30766           <param name=
"dc" type=
"DC" default=
""/> 
30767           <param name=
"x" type=
"double" default=
""/> 
30768           <param name=
"y" type=
"double" default=
""/> 
30769           <param name=
"old_x" type=
"double" default=
""/> 
30770           <param name=
"old_y" type=
"double" default=
""/> 
30771           <param name=
"display" type=
"bool" default=
"True"/> 
30774       <method name=
"base_OnDragLeft" type=
"" overloaded=
"no"> 
30775         <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30777           <param name=
"draw" type=
"bool" default=
""/> 
30778           <param name=
"x" type=
"double" default=
""/> 
30779           <param name=
"y" type=
"double" default=
""/> 
30780           <param name=
"keys" type=
"int" default=
"0"/> 
30781           <param name=
"attachment" type=
"int" default=
"0"/> 
30784       <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no"> 
30785         <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30787           <param name=
"x" type=
"double" default=
""/> 
30788           <param name=
"y" type=
"double" default=
""/> 
30789           <param name=
"keys" type=
"int" default=
"0"/> 
30790           <param name=
"attachment" type=
"int" default=
"0"/> 
30793       <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no"> 
30794         <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30796           <param name=
"x" type=
"double" default=
""/> 
30797           <param name=
"y" type=
"double" default=
""/> 
30798           <param name=
"keys" type=
"int" default=
"0"/> 
30799           <param name=
"attachment" type=
"int" default=
"0"/> 
30802       <method name=
"base_OnDragRight" type=
"" overloaded=
"no"> 
30803         <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30805           <param name=
"draw" type=
"bool" default=
""/> 
30806           <param name=
"x" type=
"double" default=
""/> 
30807           <param name=
"y" type=
"double" default=
""/> 
30808           <param name=
"keys" type=
"int" default=
"0"/> 
30809           <param name=
"attachment" type=
"int" default=
"0"/> 
30812       <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no"> 
30813         <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30815           <param name=
"x" type=
"double" default=
""/> 
30816           <param name=
"y" type=
"double" default=
""/> 
30817           <param name=
"keys" type=
"int" default=
"0"/> 
30818           <param name=
"attachment" type=
"int" default=
"0"/> 
30821       <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no"> 
30822         <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
30824           <param name=
"x" type=
"double" default=
""/> 
30825           <param name=
"y" type=
"double" default=
""/> 
30826           <param name=
"keys" type=
"int" default=
"0"/> 
30827           <param name=
"attachment" type=
"int" default=
"0"/> 
30830       <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no"> 
30831         <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc> 
30833           <param name=
"dc" type=
"DC" default=
""/> 
30834           <param name=
"x" type=
"double" default=
""/> 
30835           <param name=
"y" type=
"double" default=
""/> 
30836           <param name=
"w" type=
"double" default=
""/> 
30837           <param name=
"h" type=
"double" default=
""/> 
30840       <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no"> 
30841         <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc> 
30843           <param name=
"dc" type=
"DC" default=
""/> 
30846       <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no"> 
30847         <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc> 
30849           <param name=
"dc" type=
"DC" default=
""/> 
30852       <method name=
"base_OnMoveLink" type=
"" overloaded=
"no"> 
30853         <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc> 
30855           <param name=
"dc" type=
"DC" default=
""/> 
30856           <param name=
"moveControlPoints" type=
"bool" default=
"True"/> 
30859       <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no"> 
30860         <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0, 
 
30861     int attachment=
0)
</autodoc> 
30863           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
30864           <param name=
"draw" type=
"bool" default=
""/> 
30865           <param name=
"x" type=
"double" default=
""/> 
30866           <param name=
"y" type=
"double" default=
""/> 
30867           <param name=
"keys" type=
"int" default=
"0"/> 
30868           <param name=
"attachment" type=
"int" default=
"0"/> 
30871       <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no"> 
30872         <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
30873     int attachment=
0)
</autodoc> 
30875           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
30876           <param name=
"x" type=
"double" default=
""/> 
30877           <param name=
"y" type=
"double" default=
""/> 
30878           <param name=
"keys" type=
"int" default=
"0"/> 
30879           <param name=
"attachment" type=
"int" default=
"0"/> 
30882       <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no"> 
30883         <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
30884     int attachment=
0)
</autodoc> 
30886           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
30887           <param name=
"x" type=
"double" default=
""/> 
30888           <param name=
"y" type=
"double" default=
""/> 
30889           <param name=
"keys" type=
"int" default=
"0"/> 
30890           <param name=
"attachment" type=
"int" default=
"0"/> 
30893       <method name=
"base_OnBeginSize" type=
"" overloaded=
"no"> 
30894         <autodoc>base_OnBeginSize(double w, double h)
</autodoc> 
30896           <param name=
"w" type=
"double" default=
""/> 
30897           <param name=
"h" type=
"double" default=
""/> 
30900       <method name=
"base_OnEndSize" type=
"" overloaded=
"no"> 
30901         <autodoc>base_OnEndSize(double w, double h)
</autodoc> 
30903           <param name=
"w" type=
"double" default=
""/> 
30904           <param name=
"h" type=
"double" default=
""/> 
30908     <class name=
"PyDrawnShape" oldname=
"wxPyDrawnShape" module=
"ogl"> 
30909       <baseclass name=
"PyRectangleShape"/> 
30910       <constructor name=
"PyDrawnShape" overloaded=
"no"> 
30911         <autodoc>__init__() -
> PyDrawnShape
</autodoc> 
30913       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
30914         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
30916           <param name=
"self" type=
"PyObject" default=
""/> 
30917           <param name=
"_class" type=
"PyObject" default=
""/> 
30920       <method name=
"CalculateSize" type=
"" overloaded=
"no"> 
30921         <autodoc>CalculateSize()
</autodoc> 
30923       <method name=
"DestroyClippingRect" type=
"" overloaded=
"no"> 
30924         <autodoc>DestroyClippingRect()
</autodoc> 
30926       <method name=
"DrawArc" type=
"" overloaded=
"no"> 
30927         <autodoc>DrawArc(Point centrePoint, Point startPoint, Point endPoint)
</autodoc> 
30929           <param name=
"centrePoint" type=
"Point" default=
""/> 
30930           <param name=
"startPoint" type=
"Point" default=
""/> 
30931           <param name=
"endPoint" type=
"Point" default=
""/> 
30934       <method name=
"DrawAtAngle" type=
"" overloaded=
"no"> 
30935         <autodoc>DrawAtAngle(int angle)
</autodoc> 
30937           <param name=
"angle" type=
"int" default=
""/> 
30940       <method name=
"DrawEllipticArc" type=
"" overloaded=
"no"> 
30941         <autodoc>DrawEllipticArc(Rect rect, double startAngle, double endAngle)
</autodoc> 
30943           <param name=
"rect" type=
"Rect" default=
""/> 
30944           <param name=
"startAngle" type=
"double" default=
""/> 
30945           <param name=
"endAngle" type=
"double" default=
""/> 
30948       <method name=
"DrawLine" type=
"" overloaded=
"no"> 
30949         <autodoc>DrawLine(Point point1, Point point2)
</autodoc> 
30951           <param name=
"point1" type=
"Point" default=
""/> 
30952           <param name=
"point2" type=
"Point" default=
""/> 
30955       <method name=
"DrawLines" type=
"" overloaded=
"no"> 
30956         <autodoc>DrawLines(int PCOUNT, Point points)
</autodoc> 
30958           <param name=
"PCOUNT" type=
"int" default=
""/> 
30959           <param name=
"points" type=
"Point" default=
""/> 
30962       <method name=
"DrawPoint" type=
"" overloaded=
"no"> 
30963         <autodoc>DrawPoint(Point point)
</autodoc> 
30965           <param name=
"point" type=
"Point" default=
""/> 
30968       <method name=
"DrawPolygon" type=
"" overloaded=
"no"> 
30969         <autodoc>DrawPolygon(int PCOUNT, Point points, int flags=
0)
</autodoc> 
30971           <param name=
"PCOUNT" type=
"int" default=
""/> 
30972           <param name=
"points" type=
"Point" default=
""/> 
30973           <param name=
"flags" type=
"int" default=
"0"/> 
30976       <method name=
"DrawRectangle" type=
"" overloaded=
"no"> 
30977         <autodoc>DrawRectangle(Rect rect)
</autodoc> 
30979           <param name=
"rect" type=
"Rect" default=
""/> 
30982       <method name=
"DrawRoundedRectangle" type=
"" overloaded=
"no"> 
30983         <autodoc>DrawRoundedRectangle(Rect rect, double radius)
</autodoc> 
30985           <param name=
"rect" type=
"Rect" default=
""/> 
30986           <param name=
"radius" type=
"double" default=
""/> 
30989       <method name=
"DrawSpline" type=
"" overloaded=
"no"> 
30990         <autodoc>DrawSpline(int PCOUNT, Point points)
</autodoc> 
30992           <param name=
"PCOUNT" type=
"int" default=
""/> 
30993           <param name=
"points" type=
"Point" default=
""/> 
30996       <method name=
"DrawText" type=
"" overloaded=
"no"> 
30997         <autodoc>DrawText(String text, Point point)
</autodoc> 
30999           <param name=
"text" type=
"String" default=
""/> 
31000           <param name=
"point" type=
"Point" default=
""/> 
31003       <method name=
"GetAngle" type=
"int" overloaded=
"no"> 
31004         <autodoc>GetAngle() -
> int
</autodoc> 
31006       <method name=
"GetMetaFile" type=
"PseudoMetaFile" overloaded=
"no"> 
31007         <autodoc>GetMetaFile() -
> PseudoMetaFile
</autodoc> 
31009       <method name=
"GetRotation" type=
"double" overloaded=
"no"> 
31010         <autodoc>GetRotation() -
> double
</autodoc> 
31012       <method name=
"LoadFromMetaFile" type=
"bool" overloaded=
"no"> 
31013         <autodoc>LoadFromMetaFile(String filename) -
> bool
</autodoc> 
31015           <param name=
"filename" type=
"String" default=
""/> 
31018       <method name=
"Rotate" type=
"" overloaded=
"no"> 
31019         <autodoc>Rotate(double x, double y, double theta)
</autodoc> 
31021           <param name=
"x" type=
"double" default=
""/> 
31022           <param name=
"y" type=
"double" default=
""/> 
31023           <param name=
"theta" type=
"double" default=
""/> 
31026       <method name=
"SetClippingRect" type=
"" overloaded=
"no"> 
31027         <autodoc>SetClippingRect(Rect rect)
</autodoc> 
31029           <param name=
"rect" type=
"Rect" default=
""/> 
31032       <method name=
"SetDrawnBackgroundColour" type=
"" overloaded=
"no"> 
31033         <autodoc>SetDrawnBackgroundColour(Colour colour)
</autodoc> 
31035           <param name=
"colour" type=
"Colour" default=
""/> 
31038       <method name=
"SetDrawnBackgroundMode" type=
"" overloaded=
"no"> 
31039         <autodoc>SetDrawnBackgroundMode(int mode)
</autodoc> 
31041           <param name=
"mode" type=
"int" default=
""/> 
31044       <method name=
"SetDrawnBrush" type=
"" overloaded=
"no"> 
31045         <autodoc>SetDrawnBrush(wxBrush pen, bool isOutline=FALSE)
</autodoc> 
31047           <param name=
"pen" type=
"Brush" default=
""/> 
31048           <param name=
"isOutline" type=
"bool" default=
"FALSE"/> 
31051       <method name=
"SetDrawnFont" type=
"" overloaded=
"no"> 
31052         <autodoc>SetDrawnFont(Font font)
</autodoc> 
31054           <param name=
"font" type=
"Font" default=
""/> 
31057       <method name=
"SetDrawnPen" type=
"" overloaded=
"no"> 
31058         <autodoc>SetDrawnPen(wxPen pen, bool isOutline=FALSE)
</autodoc> 
31060           <param name=
"pen" type=
"Pen" default=
""/> 
31061           <param name=
"isOutline" type=
"bool" default=
"FALSE"/> 
31064       <method name=
"SetDrawnTextColour" type=
"" overloaded=
"no"> 
31065         <autodoc>SetDrawnTextColour(Colour colour)
</autodoc> 
31067           <param name=
"colour" type=
"Colour" default=
""/> 
31070       <method name=
"Scale" type=
"" overloaded=
"no"> 
31071         <autodoc>Scale(double sx, double sy)
</autodoc> 
31073           <param name=
"sx" type=
"double" default=
""/> 
31074           <param name=
"sy" type=
"double" default=
""/> 
31077       <method name=
"SetSaveToFile" type=
"" overloaded=
"no"> 
31078         <autodoc>SetSaveToFile(bool save)
</autodoc> 
31080           <param name=
"save" type=
"bool" default=
""/> 
31083       <method name=
"Translate" type=
"" overloaded=
"no"> 
31084         <autodoc>Translate(double x, double y)
</autodoc> 
31086           <param name=
"x" type=
"double" default=
""/> 
31087           <param name=
"y" type=
"double" default=
""/> 
31090       <method name=
"base_OnDelete" type=
"" overloaded=
"no"> 
31091         <autodoc>base_OnDelete()
</autodoc> 
31093       <method name=
"base_OnDraw" type=
"" overloaded=
"no"> 
31094         <autodoc>base_OnDraw(DC dc)
</autodoc> 
31096           <param name=
"dc" type=
"DC" default=
""/> 
31099       <method name=
"base_OnDrawContents" type=
"" overloaded=
"no"> 
31100         <autodoc>base_OnDrawContents(DC dc)
</autodoc> 
31102           <param name=
"dc" type=
"DC" default=
""/> 
31105       <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no"> 
31106         <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc> 
31108           <param name=
"dc" type=
"DC" default=
""/> 
31109           <param name=
"erase" type=
"bool" default=
"FALSE"/> 
31112       <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no"> 
31113         <autodoc>base_OnMoveLinks(DC dc)
</autodoc> 
31115           <param name=
"dc" type=
"DC" default=
""/> 
31118       <method name=
"base_OnErase" type=
"" overloaded=
"no"> 
31119         <autodoc>base_OnErase(DC dc)
</autodoc> 
31121           <param name=
"dc" type=
"DC" default=
""/> 
31124       <method name=
"base_OnEraseContents" type=
"" overloaded=
"no"> 
31125         <autodoc>base_OnEraseContents(DC dc)
</autodoc> 
31127           <param name=
"dc" type=
"DC" default=
""/> 
31130       <method name=
"base_OnHighlight" type=
"" overloaded=
"no"> 
31131         <autodoc>base_OnHighlight(DC dc)
</autodoc> 
31133           <param name=
"dc" type=
"DC" default=
""/> 
31136       <method name=
"base_OnLeftClick" type=
"" overloaded=
"no"> 
31137         <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31139           <param name=
"x" type=
"double" default=
""/> 
31140           <param name=
"y" type=
"double" default=
""/> 
31141           <param name=
"keys" type=
"int" default=
"0"/> 
31142           <param name=
"attachment" type=
"int" default=
"0"/> 
31145       <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no"> 
31146         <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31148           <param name=
"x" type=
"double" default=
""/> 
31149           <param name=
"y" type=
"double" default=
""/> 
31150           <param name=
"keys" type=
"int" default=
"0"/> 
31151           <param name=
"attachment" type=
"int" default=
"0"/> 
31154       <method name=
"base_OnRightClick" type=
"" overloaded=
"no"> 
31155         <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31157           <param name=
"x" type=
"double" default=
""/> 
31158           <param name=
"y" type=
"double" default=
""/> 
31159           <param name=
"keys" type=
"int" default=
"0"/> 
31160           <param name=
"attachment" type=
"int" default=
"0"/> 
31163       <method name=
"base_OnSize" type=
"" overloaded=
"no"> 
31164         <autodoc>base_OnSize(double x, double y)
</autodoc> 
31166           <param name=
"x" type=
"double" default=
""/> 
31167           <param name=
"y" type=
"double" default=
""/> 
31170       <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no"> 
31171         <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y, 
 
31172     bool display=True) -
> bool
</autodoc> 
31174           <param name=
"dc" type=
"DC" default=
""/> 
31175           <param name=
"x" type=
"double" default=
""/> 
31176           <param name=
"y" type=
"double" default=
""/> 
31177           <param name=
"old_x" type=
"double" default=
""/> 
31178           <param name=
"old_y" type=
"double" default=
""/> 
31179           <param name=
"display" type=
"bool" default=
"True"/> 
31182       <method name=
"base_OnMovePost" type=
"" overloaded=
"no"> 
31183         <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y, 
 
31184     bool display=True)
</autodoc> 
31186           <param name=
"dc" type=
"DC" default=
""/> 
31187           <param name=
"x" type=
"double" default=
""/> 
31188           <param name=
"y" type=
"double" default=
""/> 
31189           <param name=
"old_x" type=
"double" default=
""/> 
31190           <param name=
"old_y" type=
"double" default=
""/> 
31191           <param name=
"display" type=
"bool" default=
"True"/> 
31194       <method name=
"base_OnDragLeft" type=
"" overloaded=
"no"> 
31195         <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31197           <param name=
"draw" type=
"bool" default=
""/> 
31198           <param name=
"x" type=
"double" default=
""/> 
31199           <param name=
"y" type=
"double" default=
""/> 
31200           <param name=
"keys" type=
"int" default=
"0"/> 
31201           <param name=
"attachment" type=
"int" default=
"0"/> 
31204       <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no"> 
31205         <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31207           <param name=
"x" type=
"double" default=
""/> 
31208           <param name=
"y" type=
"double" default=
""/> 
31209           <param name=
"keys" type=
"int" default=
"0"/> 
31210           <param name=
"attachment" type=
"int" default=
"0"/> 
31213       <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no"> 
31214         <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31216           <param name=
"x" type=
"double" default=
""/> 
31217           <param name=
"y" type=
"double" default=
""/> 
31218           <param name=
"keys" type=
"int" default=
"0"/> 
31219           <param name=
"attachment" type=
"int" default=
"0"/> 
31222       <method name=
"base_OnDragRight" type=
"" overloaded=
"no"> 
31223         <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31225           <param name=
"draw" type=
"bool" default=
""/> 
31226           <param name=
"x" type=
"double" default=
""/> 
31227           <param name=
"y" type=
"double" default=
""/> 
31228           <param name=
"keys" type=
"int" default=
"0"/> 
31229           <param name=
"attachment" type=
"int" default=
"0"/> 
31232       <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no"> 
31233         <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31235           <param name=
"x" type=
"double" default=
""/> 
31236           <param name=
"y" type=
"double" default=
""/> 
31237           <param name=
"keys" type=
"int" default=
"0"/> 
31238           <param name=
"attachment" type=
"int" default=
"0"/> 
31241       <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no"> 
31242         <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31244           <param name=
"x" type=
"double" default=
""/> 
31245           <param name=
"y" type=
"double" default=
""/> 
31246           <param name=
"keys" type=
"int" default=
"0"/> 
31247           <param name=
"attachment" type=
"int" default=
"0"/> 
31250       <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no"> 
31251         <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc> 
31253           <param name=
"dc" type=
"DC" default=
""/> 
31254           <param name=
"x" type=
"double" default=
""/> 
31255           <param name=
"y" type=
"double" default=
""/> 
31256           <param name=
"w" type=
"double" default=
""/> 
31257           <param name=
"h" type=
"double" default=
""/> 
31260       <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no"> 
31261         <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc> 
31263           <param name=
"dc" type=
"DC" default=
""/> 
31266       <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no"> 
31267         <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc> 
31269           <param name=
"dc" type=
"DC" default=
""/> 
31272       <method name=
"base_OnMoveLink" type=
"" overloaded=
"no"> 
31273         <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc> 
31275           <param name=
"dc" type=
"DC" default=
""/> 
31276           <param name=
"moveControlPoints" type=
"bool" default=
"True"/> 
31279       <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no"> 
31280         <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0, 
 
31281     int attachment=
0)
</autodoc> 
31283           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
31284           <param name=
"draw" type=
"bool" default=
""/> 
31285           <param name=
"x" type=
"double" default=
""/> 
31286           <param name=
"y" type=
"double" default=
""/> 
31287           <param name=
"keys" type=
"int" default=
"0"/> 
31288           <param name=
"attachment" type=
"int" default=
"0"/> 
31291       <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no"> 
31292         <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
31293     int attachment=
0)
</autodoc> 
31295           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
31296           <param name=
"x" type=
"double" default=
""/> 
31297           <param name=
"y" type=
"double" default=
""/> 
31298           <param name=
"keys" type=
"int" default=
"0"/> 
31299           <param name=
"attachment" type=
"int" default=
"0"/> 
31302       <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no"> 
31303         <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
31304     int attachment=
0)
</autodoc> 
31306           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
31307           <param name=
"x" type=
"double" default=
""/> 
31308           <param name=
"y" type=
"double" default=
""/> 
31309           <param name=
"keys" type=
"int" default=
"0"/> 
31310           <param name=
"attachment" type=
"int" default=
"0"/> 
31313       <method name=
"base_OnBeginSize" type=
"" overloaded=
"no"> 
31314         <autodoc>base_OnBeginSize(double w, double h)
</autodoc> 
31316           <param name=
"w" type=
"double" default=
""/> 
31317           <param name=
"h" type=
"double" default=
""/> 
31320       <method name=
"base_OnEndSize" type=
"" overloaded=
"no"> 
31321         <autodoc>base_OnEndSize(double w, double h)
</autodoc> 
31323           <param name=
"w" type=
"double" default=
""/> 
31324           <param name=
"h" type=
"double" default=
""/> 
31328     <class name=
"OGLConstraint" oldname=
"wxOGLConstraint" module=
"ogl"> 
31329       <baseclass name=
"Object"/> 
31330       <constructor name=
"OGLConstraint" overloaded=
"no"> 
31331         <autodoc>__init__(int type, PyShape constraining, PyObject constrained) -
> OGLConstraint
</autodoc> 
31333           <param name=
"type" type=
"int" default=
""/> 
31334           <param name=
"constraining" type=
"PyShape" default=
""/> 
31335           <param name=
"constrained" type=
"PyObject" default=
""/> 
31338       <method name=
"Evaluate" type=
"bool" overloaded=
"no"> 
31339         <autodoc>Evaluate() -
> bool
</autodoc> 
31341       <method name=
"SetSpacing" type=
"" overloaded=
"no"> 
31342         <autodoc>SetSpacing(double x, double y)
</autodoc> 
31344           <param name=
"x" type=
"double" default=
""/> 
31345           <param name=
"y" type=
"double" default=
""/> 
31348       <method name=
"Equals" type=
"bool" overloaded=
"no"> 
31349         <autodoc>Equals(double a, double b) -
> bool
</autodoc> 
31351           <param name=
"a" type=
"double" default=
""/> 
31352           <param name=
"b" type=
"double" default=
""/> 
31356     <class name=
"PyCompositeShape" oldname=
"wxPyCompositeShape" module=
"ogl"> 
31357       <baseclass name=
"PyRectangleShape"/> 
31358       <constructor name=
"PyCompositeShape" overloaded=
"no"> 
31359         <autodoc>__init__() -
> PyCompositeShape
</autodoc> 
31361       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
31362         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
31364           <param name=
"self" type=
"PyObject" default=
""/> 
31365           <param name=
"_class" type=
"PyObject" default=
""/> 
31368       <method name=
"AddChild" type=
"" overloaded=
"no"> 
31369         <autodoc>AddChild(PyShape child, PyShape addAfter=None)
</autodoc> 
31371           <param name=
"child" type=
"PyShape" default=
""/> 
31372           <param name=
"addAfter" type=
"PyShape" default=
"NULL"/> 
31375       <method name=
"AddConstraint" type=
"OGLConstraint" overloaded=
"no"> 
31376         <autodoc>AddConstraint(OGLConstraint constraint) -
> OGLConstraint
</autodoc> 
31378           <param name=
"constraint" type=
"OGLConstraint" default=
""/> 
31381       <method name=
"AddConstrainedShapes" type=
"OGLConstraint" overloaded=
"no"> 
31382         <autodoc>AddConstrainedShapes(int type, PyShape constraining, PyObject constrained) -
> OGLConstraint
</autodoc> 
31384           <param name=
"type" type=
"int" default=
""/> 
31385           <param name=
"constraining" type=
"PyShape" default=
""/> 
31386           <param name=
"constrained" type=
"PyObject" default=
""/> 
31389       <method name=
"AddSimpleConstraint" type=
"OGLConstraint" overloaded=
"no"> 
31390         <autodoc>AddSimpleConstraint(int type, PyShape constraining, PyShape constrained) -
> OGLConstraint
</autodoc> 
31392           <param name=
"type" type=
"int" default=
""/> 
31393           <param name=
"constraining" type=
"PyShape" default=
""/> 
31394           <param name=
"constrained" type=
"PyShape" default=
""/> 
31397       <method name=
"CalculateSize" type=
"" overloaded=
"no"> 
31398         <autodoc>CalculateSize()
</autodoc> 
31400       <method name=
"ContainsDivision" type=
"bool" overloaded=
"no"> 
31401         <autodoc>ContainsDivision(PyDivisionShape division) -
> bool
</autodoc> 
31403           <param name=
"division" type=
"wxPyDivisionShape" default=
""/> 
31406       <method name=
"DeleteConstraint" type=
"" overloaded=
"no"> 
31407         <autodoc>DeleteConstraint(OGLConstraint constraint)
</autodoc> 
31409           <param name=
"constraint" type=
"OGLConstraint" default=
""/> 
31412       <method name=
"DeleteConstraintsInvolvingChild" type=
"" overloaded=
"no"> 
31413         <autodoc>DeleteConstraintsInvolvingChild(PyShape child)
</autodoc> 
31415           <param name=
"child" type=
"PyShape" default=
""/> 
31418       <method name=
"FindContainerImage" type=
"PyShape" overloaded=
"no"> 
31419         <autodoc>FindContainerImage() -
> PyShape
</autodoc> 
31421       <method name=
"GetConstraints" type=
"PyObject" overloaded=
"no"> 
31422         <autodoc>GetConstraints() -
> PyObject
</autodoc> 
31424       <method name=
"GetDivisions" type=
"PyObject" overloaded=
"no"> 
31425         <autodoc>GetDivisions() -
> PyObject
</autodoc> 
31427       <method name=
"MakeContainer" type=
"" overloaded=
"no"> 
31428         <autodoc>MakeContainer()
</autodoc> 
31430       <method name=
"Recompute" type=
"bool" overloaded=
"no"> 
31431         <autodoc>Recompute() -
> bool
</autodoc> 
31433       <method name=
"RemoveChild" type=
"" overloaded=
"no"> 
31434         <autodoc>RemoveChild(PyShape child)
</autodoc> 
31436           <param name=
"child" type=
"PyShape" default=
""/> 
31439       <method name=
"base_OnDelete" type=
"" overloaded=
"no"> 
31440         <autodoc>base_OnDelete()
</autodoc> 
31442       <method name=
"base_OnDraw" type=
"" overloaded=
"no"> 
31443         <autodoc>base_OnDraw(DC dc)
</autodoc> 
31445           <param name=
"dc" type=
"DC" default=
""/> 
31448       <method name=
"base_OnDrawContents" type=
"" overloaded=
"no"> 
31449         <autodoc>base_OnDrawContents(DC dc)
</autodoc> 
31451           <param name=
"dc" type=
"DC" default=
""/> 
31454       <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no"> 
31455         <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc> 
31457           <param name=
"dc" type=
"DC" default=
""/> 
31458           <param name=
"erase" type=
"bool" default=
"FALSE"/> 
31461       <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no"> 
31462         <autodoc>base_OnMoveLinks(DC dc)
</autodoc> 
31464           <param name=
"dc" type=
"DC" default=
""/> 
31467       <method name=
"base_OnErase" type=
"" overloaded=
"no"> 
31468         <autodoc>base_OnErase(DC dc)
</autodoc> 
31470           <param name=
"dc" type=
"DC" default=
""/> 
31473       <method name=
"base_OnEraseContents" type=
"" overloaded=
"no"> 
31474         <autodoc>base_OnEraseContents(DC dc)
</autodoc> 
31476           <param name=
"dc" type=
"DC" default=
""/> 
31479       <method name=
"base_OnHighlight" type=
"" overloaded=
"no"> 
31480         <autodoc>base_OnHighlight(DC dc)
</autodoc> 
31482           <param name=
"dc" type=
"DC" default=
""/> 
31485       <method name=
"base_OnLeftClick" type=
"" overloaded=
"no"> 
31486         <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31488           <param name=
"x" type=
"double" default=
""/> 
31489           <param name=
"y" type=
"double" default=
""/> 
31490           <param name=
"keys" type=
"int" default=
"0"/> 
31491           <param name=
"attachment" type=
"int" default=
"0"/> 
31494       <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no"> 
31495         <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31497           <param name=
"x" type=
"double" default=
""/> 
31498           <param name=
"y" type=
"double" default=
""/> 
31499           <param name=
"keys" type=
"int" default=
"0"/> 
31500           <param name=
"attachment" type=
"int" default=
"0"/> 
31503       <method name=
"base_OnRightClick" type=
"" overloaded=
"no"> 
31504         <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31506           <param name=
"x" type=
"double" default=
""/> 
31507           <param name=
"y" type=
"double" default=
""/> 
31508           <param name=
"keys" type=
"int" default=
"0"/> 
31509           <param name=
"attachment" type=
"int" default=
"0"/> 
31512       <method name=
"base_OnSize" type=
"" overloaded=
"no"> 
31513         <autodoc>base_OnSize(double x, double y)
</autodoc> 
31515           <param name=
"x" type=
"double" default=
""/> 
31516           <param name=
"y" type=
"double" default=
""/> 
31519       <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no"> 
31520         <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y, 
 
31521     bool display=True) -
> bool
</autodoc> 
31523           <param name=
"dc" type=
"DC" default=
""/> 
31524           <param name=
"x" type=
"double" default=
""/> 
31525           <param name=
"y" type=
"double" default=
""/> 
31526           <param name=
"old_x" type=
"double" default=
""/> 
31527           <param name=
"old_y" type=
"double" default=
""/> 
31528           <param name=
"display" type=
"bool" default=
"True"/> 
31531       <method name=
"base_OnMovePost" type=
"" overloaded=
"no"> 
31532         <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y, 
 
31533     bool display=True)
</autodoc> 
31535           <param name=
"dc" type=
"DC" default=
""/> 
31536           <param name=
"x" type=
"double" default=
""/> 
31537           <param name=
"y" type=
"double" default=
""/> 
31538           <param name=
"old_x" type=
"double" default=
""/> 
31539           <param name=
"old_y" type=
"double" default=
""/> 
31540           <param name=
"display" type=
"bool" default=
"True"/> 
31543       <method name=
"base_OnDragLeft" type=
"" overloaded=
"no"> 
31544         <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31546           <param name=
"draw" type=
"bool" default=
""/> 
31547           <param name=
"x" type=
"double" default=
""/> 
31548           <param name=
"y" type=
"double" default=
""/> 
31549           <param name=
"keys" type=
"int" default=
"0"/> 
31550           <param name=
"attachment" type=
"int" default=
"0"/> 
31553       <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no"> 
31554         <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31556           <param name=
"x" type=
"double" default=
""/> 
31557           <param name=
"y" type=
"double" default=
""/> 
31558           <param name=
"keys" type=
"int" default=
"0"/> 
31559           <param name=
"attachment" type=
"int" default=
"0"/> 
31562       <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no"> 
31563         <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31565           <param name=
"x" type=
"double" default=
""/> 
31566           <param name=
"y" type=
"double" default=
""/> 
31567           <param name=
"keys" type=
"int" default=
"0"/> 
31568           <param name=
"attachment" type=
"int" default=
"0"/> 
31571       <method name=
"base_OnDragRight" type=
"" overloaded=
"no"> 
31572         <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31574           <param name=
"draw" type=
"bool" default=
""/> 
31575           <param name=
"x" type=
"double" default=
""/> 
31576           <param name=
"y" type=
"double" default=
""/> 
31577           <param name=
"keys" type=
"int" default=
"0"/> 
31578           <param name=
"attachment" type=
"int" default=
"0"/> 
31581       <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no"> 
31582         <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31584           <param name=
"x" type=
"double" default=
""/> 
31585           <param name=
"y" type=
"double" default=
""/> 
31586           <param name=
"keys" type=
"int" default=
"0"/> 
31587           <param name=
"attachment" type=
"int" default=
"0"/> 
31590       <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no"> 
31591         <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31593           <param name=
"x" type=
"double" default=
""/> 
31594           <param name=
"y" type=
"double" default=
""/> 
31595           <param name=
"keys" type=
"int" default=
"0"/> 
31596           <param name=
"attachment" type=
"int" default=
"0"/> 
31599       <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no"> 
31600         <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc> 
31602           <param name=
"dc" type=
"DC" default=
""/> 
31603           <param name=
"x" type=
"double" default=
""/> 
31604           <param name=
"y" type=
"double" default=
""/> 
31605           <param name=
"w" type=
"double" default=
""/> 
31606           <param name=
"h" type=
"double" default=
""/> 
31609       <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no"> 
31610         <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc> 
31612           <param name=
"dc" type=
"DC" default=
""/> 
31615       <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no"> 
31616         <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc> 
31618           <param name=
"dc" type=
"DC" default=
""/> 
31621       <method name=
"base_OnMoveLink" type=
"" overloaded=
"no"> 
31622         <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc> 
31624           <param name=
"dc" type=
"DC" default=
""/> 
31625           <param name=
"moveControlPoints" type=
"bool" default=
"True"/> 
31628       <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no"> 
31629         <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0, 
 
31630     int attachment=
0)
</autodoc> 
31632           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
31633           <param name=
"draw" type=
"bool" default=
""/> 
31634           <param name=
"x" type=
"double" default=
""/> 
31635           <param name=
"y" type=
"double" default=
""/> 
31636           <param name=
"keys" type=
"int" default=
"0"/> 
31637           <param name=
"attachment" type=
"int" default=
"0"/> 
31640       <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no"> 
31641         <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
31642     int attachment=
0)
</autodoc> 
31644           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
31645           <param name=
"x" type=
"double" default=
""/> 
31646           <param name=
"y" type=
"double" default=
""/> 
31647           <param name=
"keys" type=
"int" default=
"0"/> 
31648           <param name=
"attachment" type=
"int" default=
"0"/> 
31651       <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no"> 
31652         <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
31653     int attachment=
0)
</autodoc> 
31655           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
31656           <param name=
"x" type=
"double" default=
""/> 
31657           <param name=
"y" type=
"double" default=
""/> 
31658           <param name=
"keys" type=
"int" default=
"0"/> 
31659           <param name=
"attachment" type=
"int" default=
"0"/> 
31662       <method name=
"base_OnBeginSize" type=
"" overloaded=
"no"> 
31663         <autodoc>base_OnBeginSize(double w, double h)
</autodoc> 
31665           <param name=
"w" type=
"double" default=
""/> 
31666           <param name=
"h" type=
"double" default=
""/> 
31669       <method name=
"base_OnEndSize" type=
"" overloaded=
"no"> 
31670         <autodoc>base_OnEndSize(double w, double h)
</autodoc> 
31672           <param name=
"w" type=
"double" default=
""/> 
31673           <param name=
"h" type=
"double" default=
""/> 
31677     <class name=
"PyDividedShape" oldname=
"wxPyDividedShape" module=
"ogl"> 
31678       <baseclass name=
"PyRectangleShape"/> 
31679       <constructor name=
"PyDividedShape" overloaded=
"no"> 
31680         <autodoc>__init__(double width=
0.0, double height=
0.0) -
> PyDividedShape
</autodoc> 
31682           <param name=
"width" type=
"double" default=
"0.0"/> 
31683           <param name=
"height" type=
"double" default=
"0.0"/> 
31686       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
31687         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
31689           <param name=
"self" type=
"PyObject" default=
""/> 
31690           <param name=
"_class" type=
"PyObject" default=
""/> 
31693       <method name=
"EditRegions" type=
"" overloaded=
"no"> 
31694         <autodoc>EditRegions()
</autodoc> 
31696       <method name=
"SetRegionSizes" type=
"" overloaded=
"no"> 
31697         <autodoc>SetRegionSizes()
</autodoc> 
31699       <method name=
"base_OnDelete" type=
"" overloaded=
"no"> 
31700         <autodoc>base_OnDelete()
</autodoc> 
31702       <method name=
"base_OnDraw" type=
"" overloaded=
"no"> 
31703         <autodoc>base_OnDraw(DC dc)
</autodoc> 
31705           <param name=
"dc" type=
"DC" default=
""/> 
31708       <method name=
"base_OnDrawContents" type=
"" overloaded=
"no"> 
31709         <autodoc>base_OnDrawContents(DC dc)
</autodoc> 
31711           <param name=
"dc" type=
"DC" default=
""/> 
31714       <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no"> 
31715         <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc> 
31717           <param name=
"dc" type=
"DC" default=
""/> 
31718           <param name=
"erase" type=
"bool" default=
"FALSE"/> 
31721       <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no"> 
31722         <autodoc>base_OnMoveLinks(DC dc)
</autodoc> 
31724           <param name=
"dc" type=
"DC" default=
""/> 
31727       <method name=
"base_OnErase" type=
"" overloaded=
"no"> 
31728         <autodoc>base_OnErase(DC dc)
</autodoc> 
31730           <param name=
"dc" type=
"DC" default=
""/> 
31733       <method name=
"base_OnEraseContents" type=
"" overloaded=
"no"> 
31734         <autodoc>base_OnEraseContents(DC dc)
</autodoc> 
31736           <param name=
"dc" type=
"DC" default=
""/> 
31739       <method name=
"base_OnHighlight" type=
"" overloaded=
"no"> 
31740         <autodoc>base_OnHighlight(DC dc)
</autodoc> 
31742           <param name=
"dc" type=
"DC" default=
""/> 
31745       <method name=
"base_OnLeftClick" type=
"" overloaded=
"no"> 
31746         <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31748           <param name=
"x" type=
"double" default=
""/> 
31749           <param name=
"y" type=
"double" default=
""/> 
31750           <param name=
"keys" type=
"int" default=
"0"/> 
31751           <param name=
"attachment" type=
"int" default=
"0"/> 
31754       <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no"> 
31755         <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31757           <param name=
"x" type=
"double" default=
""/> 
31758           <param name=
"y" type=
"double" default=
""/> 
31759           <param name=
"keys" type=
"int" default=
"0"/> 
31760           <param name=
"attachment" type=
"int" default=
"0"/> 
31763       <method name=
"base_OnRightClick" type=
"" overloaded=
"no"> 
31764         <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31766           <param name=
"x" type=
"double" default=
""/> 
31767           <param name=
"y" type=
"double" default=
""/> 
31768           <param name=
"keys" type=
"int" default=
"0"/> 
31769           <param name=
"attachment" type=
"int" default=
"0"/> 
31772       <method name=
"base_OnSize" type=
"" overloaded=
"no"> 
31773         <autodoc>base_OnSize(double x, double y)
</autodoc> 
31775           <param name=
"x" type=
"double" default=
""/> 
31776           <param name=
"y" type=
"double" default=
""/> 
31779       <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no"> 
31780         <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y, 
 
31781     bool display=True) -
> bool
</autodoc> 
31783           <param name=
"dc" type=
"DC" default=
""/> 
31784           <param name=
"x" type=
"double" default=
""/> 
31785           <param name=
"y" type=
"double" default=
""/> 
31786           <param name=
"old_x" type=
"double" default=
""/> 
31787           <param name=
"old_y" type=
"double" default=
""/> 
31788           <param name=
"display" type=
"bool" default=
"True"/> 
31791       <method name=
"base_OnMovePost" type=
"" overloaded=
"no"> 
31792         <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y, 
 
31793     bool display=True)
</autodoc> 
31795           <param name=
"dc" type=
"DC" default=
""/> 
31796           <param name=
"x" type=
"double" default=
""/> 
31797           <param name=
"y" type=
"double" default=
""/> 
31798           <param name=
"old_x" type=
"double" default=
""/> 
31799           <param name=
"old_y" type=
"double" default=
""/> 
31800           <param name=
"display" type=
"bool" default=
"True"/> 
31803       <method name=
"base_OnDragLeft" type=
"" overloaded=
"no"> 
31804         <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31806           <param name=
"draw" type=
"bool" default=
""/> 
31807           <param name=
"x" type=
"double" default=
""/> 
31808           <param name=
"y" type=
"double" default=
""/> 
31809           <param name=
"keys" type=
"int" default=
"0"/> 
31810           <param name=
"attachment" type=
"int" default=
"0"/> 
31813       <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no"> 
31814         <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31816           <param name=
"x" type=
"double" default=
""/> 
31817           <param name=
"y" type=
"double" default=
""/> 
31818           <param name=
"keys" type=
"int" default=
"0"/> 
31819           <param name=
"attachment" type=
"int" default=
"0"/> 
31822       <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no"> 
31823         <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31825           <param name=
"x" type=
"double" default=
""/> 
31826           <param name=
"y" type=
"double" default=
""/> 
31827           <param name=
"keys" type=
"int" default=
"0"/> 
31828           <param name=
"attachment" type=
"int" default=
"0"/> 
31831       <method name=
"base_OnDragRight" type=
"" overloaded=
"no"> 
31832         <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31834           <param name=
"draw" type=
"bool" default=
""/> 
31835           <param name=
"x" type=
"double" default=
""/> 
31836           <param name=
"y" type=
"double" default=
""/> 
31837           <param name=
"keys" type=
"int" default=
"0"/> 
31838           <param name=
"attachment" type=
"int" default=
"0"/> 
31841       <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no"> 
31842         <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31844           <param name=
"x" type=
"double" default=
""/> 
31845           <param name=
"y" type=
"double" default=
""/> 
31846           <param name=
"keys" type=
"int" default=
"0"/> 
31847           <param name=
"attachment" type=
"int" default=
"0"/> 
31850       <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no"> 
31851         <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
31853           <param name=
"x" type=
"double" default=
""/> 
31854           <param name=
"y" type=
"double" default=
""/> 
31855           <param name=
"keys" type=
"int" default=
"0"/> 
31856           <param name=
"attachment" type=
"int" default=
"0"/> 
31859       <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no"> 
31860         <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc> 
31862           <param name=
"dc" type=
"DC" default=
""/> 
31863           <param name=
"x" type=
"double" default=
""/> 
31864           <param name=
"y" type=
"double" default=
""/> 
31865           <param name=
"w" type=
"double" default=
""/> 
31866           <param name=
"h" type=
"double" default=
""/> 
31869       <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no"> 
31870         <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc> 
31872           <param name=
"dc" type=
"DC" default=
""/> 
31875       <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no"> 
31876         <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc> 
31878           <param name=
"dc" type=
"DC" default=
""/> 
31881       <method name=
"base_OnMoveLink" type=
"" overloaded=
"no"> 
31882         <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc> 
31884           <param name=
"dc" type=
"DC" default=
""/> 
31885           <param name=
"moveControlPoints" type=
"bool" default=
"True"/> 
31888       <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no"> 
31889         <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0, 
 
31890     int attachment=
0)
</autodoc> 
31892           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
31893           <param name=
"draw" type=
"bool" default=
""/> 
31894           <param name=
"x" type=
"double" default=
""/> 
31895           <param name=
"y" type=
"double" default=
""/> 
31896           <param name=
"keys" type=
"int" default=
"0"/> 
31897           <param name=
"attachment" type=
"int" default=
"0"/> 
31900       <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no"> 
31901         <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
31902     int attachment=
0)
</autodoc> 
31904           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
31905           <param name=
"x" type=
"double" default=
""/> 
31906           <param name=
"y" type=
"double" default=
""/> 
31907           <param name=
"keys" type=
"int" default=
"0"/> 
31908           <param name=
"attachment" type=
"int" default=
"0"/> 
31911       <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no"> 
31912         <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
31913     int attachment=
0)
</autodoc> 
31915           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
31916           <param name=
"x" type=
"double" default=
""/> 
31917           <param name=
"y" type=
"double" default=
""/> 
31918           <param name=
"keys" type=
"int" default=
"0"/> 
31919           <param name=
"attachment" type=
"int" default=
"0"/> 
31922       <method name=
"base_OnBeginSize" type=
"" overloaded=
"no"> 
31923         <autodoc>base_OnBeginSize(double w, double h)
</autodoc> 
31925           <param name=
"w" type=
"double" default=
""/> 
31926           <param name=
"h" type=
"double" default=
""/> 
31929       <method name=
"base_OnEndSize" type=
"" overloaded=
"no"> 
31930         <autodoc>base_OnEndSize(double w, double h)
</autodoc> 
31932           <param name=
"w" type=
"double" default=
""/> 
31933           <param name=
"h" type=
"double" default=
""/> 
31937     <class name=
"PyDivisionShape" oldname=
"wxPyDivisionShape" module=
"ogl"> 
31938       <baseclass name=
"PyCompositeShape"/> 
31939       <constructor name=
"PyDivisionShape" overloaded=
"no"> 
31940         <autodoc>__init__() -
> PyDivisionShape
</autodoc> 
31942       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
31943         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
31945           <param name=
"self" type=
"PyObject" default=
""/> 
31946           <param name=
"_class" type=
"PyObject" default=
""/> 
31949       <method name=
"AdjustBottom" type=
"" overloaded=
"no"> 
31950         <autodoc>AdjustBottom(double bottom, bool test)
</autodoc> 
31952           <param name=
"bottom" type=
"double" default=
""/> 
31953           <param name=
"test" type=
"bool" default=
""/> 
31956       <method name=
"AdjustLeft" type=
"" overloaded=
"no"> 
31957         <autodoc>AdjustLeft(double left, bool test)
</autodoc> 
31959           <param name=
"left" type=
"double" default=
""/> 
31960           <param name=
"test" type=
"bool" default=
""/> 
31963       <method name=
"AdjustRight" type=
"" overloaded=
"no"> 
31964         <autodoc>AdjustRight(double right, bool test)
</autodoc> 
31966           <param name=
"right" type=
"double" default=
""/> 
31967           <param name=
"test" type=
"bool" default=
""/> 
31970       <method name=
"AdjustTop" type=
"" overloaded=
"no"> 
31971         <autodoc>AdjustTop(double top, bool test)
</autodoc> 
31973           <param name=
"top" type=
"double" default=
""/> 
31974           <param name=
"test" type=
"bool" default=
""/> 
31977       <method name=
"Divide" type=
"" overloaded=
"no"> 
31978         <autodoc>Divide(int direction)
</autodoc> 
31980           <param name=
"direction" type=
"int" default=
""/> 
31983       <method name=
"EditEdge" type=
"" overloaded=
"no"> 
31984         <autodoc>EditEdge(int side)
</autodoc> 
31986           <param name=
"side" type=
"int" default=
""/> 
31989       <method name=
"GetBottomSide" type=
"PyDivisionShape" overloaded=
"no"> 
31990         <autodoc>GetBottomSide() -
> PyDivisionShape
</autodoc> 
31992       <method name=
"GetHandleSide" type=
"int" overloaded=
"no"> 
31993         <autodoc>GetHandleSide() -
> int
</autodoc> 
31995       <method name=
"GetLeftSide" type=
"PyDivisionShape" overloaded=
"no"> 
31996         <autodoc>GetLeftSide() -
> PyDivisionShape
</autodoc> 
31998       <method name=
"GetLeftSideColour" type=
"String" overloaded=
"no"> 
31999         <autodoc>GetLeftSideColour() -
> String
</autodoc> 
32001       <method name=
"GetLeftSidePen" type=
"Pen" overloaded=
"no"> 
32002         <autodoc>GetLeftSidePen() -
> wxPen
</autodoc> 
32004       <method name=
"GetRightSide" type=
"PyDivisionShape" overloaded=
"no"> 
32005         <autodoc>GetRightSide() -
> PyDivisionShape
</autodoc> 
32007       <method name=
"GetTopSide" type=
"PyDivisionShape" overloaded=
"no"> 
32008         <autodoc>GetTopSide() -
> PyDivisionShape
</autodoc> 
32010       <method name=
"GetTopSidePen" type=
"Pen" overloaded=
"no"> 
32011         <autodoc>GetTopSidePen() -
> wxPen
</autodoc> 
32013       <method name=
"ResizeAdjoining" type=
"" overloaded=
"no"> 
32014         <autodoc>ResizeAdjoining(int side, double newPos, bool test)
</autodoc> 
32016           <param name=
"side" type=
"int" default=
""/> 
32017           <param name=
"newPos" type=
"double" default=
""/> 
32018           <param name=
"test" type=
"bool" default=
""/> 
32021       <method name=
"PopupMenu" type=
"" overloaded=
"no"> 
32022         <autodoc>PopupMenu(double x, double y)
</autodoc> 
32024           <param name=
"x" type=
"double" default=
""/> 
32025           <param name=
"y" type=
"double" default=
""/> 
32028       <method name=
"SetBottomSide" type=
"" overloaded=
"no"> 
32029         <autodoc>SetBottomSide(PyDivisionShape shape)
</autodoc> 
32031           <param name=
"shape" type=
"PyDivisionShape" default=
""/> 
32034       <method name=
"SetHandleSide" type=
"" overloaded=
"no"> 
32035         <autodoc>SetHandleSide(int side)
</autodoc> 
32037           <param name=
"side" type=
"int" default=
""/> 
32040       <method name=
"SetLeftSide" type=
"" overloaded=
"no"> 
32041         <autodoc>SetLeftSide(PyDivisionShape shape)
</autodoc> 
32043           <param name=
"shape" type=
"PyDivisionShape" default=
""/> 
32046       <method name=
"SetLeftSideColour" type=
"" overloaded=
"no"> 
32047         <autodoc>SetLeftSideColour(String colour)
</autodoc> 
32049           <param name=
"colour" type=
"String" default=
""/> 
32052       <method name=
"SetLeftSidePen" type=
"" overloaded=
"no"> 
32053         <autodoc>SetLeftSidePen(wxPen pen)
</autodoc> 
32055           <param name=
"pen" type=
"Pen" default=
""/> 
32058       <method name=
"SetRightSide" type=
"" overloaded=
"no"> 
32059         <autodoc>SetRightSide(PyDivisionShape shape)
</autodoc> 
32061           <param name=
"shape" type=
"PyDivisionShape" default=
""/> 
32064       <method name=
"SetTopSide" type=
"" overloaded=
"no"> 
32065         <autodoc>SetTopSide(PyDivisionShape shape)
</autodoc> 
32067           <param name=
"shape" type=
"PyDivisionShape" default=
""/> 
32070       <method name=
"SetTopSideColour" type=
"" overloaded=
"no"> 
32071         <autodoc>SetTopSideColour(String colour)
</autodoc> 
32073           <param name=
"colour" type=
"String" default=
""/> 
32076       <method name=
"SetTopSidePen" type=
"" overloaded=
"no"> 
32077         <autodoc>SetTopSidePen(wxPen pen)
</autodoc> 
32079           <param name=
"pen" type=
"Pen" default=
""/> 
32082       <method name=
"base_OnDelete" type=
"" overloaded=
"no"> 
32083         <autodoc>base_OnDelete()
</autodoc> 
32085       <method name=
"base_OnDraw" type=
"" overloaded=
"no"> 
32086         <autodoc>base_OnDraw(DC dc)
</autodoc> 
32088           <param name=
"dc" type=
"DC" default=
""/> 
32091       <method name=
"base_OnDrawContents" type=
"" overloaded=
"no"> 
32092         <autodoc>base_OnDrawContents(DC dc)
</autodoc> 
32094           <param name=
"dc" type=
"DC" default=
""/> 
32097       <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no"> 
32098         <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc> 
32100           <param name=
"dc" type=
"DC" default=
""/> 
32101           <param name=
"erase" type=
"bool" default=
"FALSE"/> 
32104       <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no"> 
32105         <autodoc>base_OnMoveLinks(DC dc)
</autodoc> 
32107           <param name=
"dc" type=
"DC" default=
""/> 
32110       <method name=
"base_OnErase" type=
"" overloaded=
"no"> 
32111         <autodoc>base_OnErase(DC dc)
</autodoc> 
32113           <param name=
"dc" type=
"DC" default=
""/> 
32116       <method name=
"base_OnEraseContents" type=
"" overloaded=
"no"> 
32117         <autodoc>base_OnEraseContents(DC dc)
</autodoc> 
32119           <param name=
"dc" type=
"DC" default=
""/> 
32122       <method name=
"base_OnHighlight" type=
"" overloaded=
"no"> 
32123         <autodoc>base_OnHighlight(DC dc)
</autodoc> 
32125           <param name=
"dc" type=
"DC" default=
""/> 
32128       <method name=
"base_OnLeftClick" type=
"" overloaded=
"no"> 
32129         <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
32131           <param name=
"x" type=
"double" default=
""/> 
32132           <param name=
"y" type=
"double" default=
""/> 
32133           <param name=
"keys" type=
"int" default=
"0"/> 
32134           <param name=
"attachment" type=
"int" default=
"0"/> 
32137       <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no"> 
32138         <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
32140           <param name=
"x" type=
"double" default=
""/> 
32141           <param name=
"y" type=
"double" default=
""/> 
32142           <param name=
"keys" type=
"int" default=
"0"/> 
32143           <param name=
"attachment" type=
"int" default=
"0"/> 
32146       <method name=
"base_OnRightClick" type=
"" overloaded=
"no"> 
32147         <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
32149           <param name=
"x" type=
"double" default=
""/> 
32150           <param name=
"y" type=
"double" default=
""/> 
32151           <param name=
"keys" type=
"int" default=
"0"/> 
32152           <param name=
"attachment" type=
"int" default=
"0"/> 
32155       <method name=
"base_OnSize" type=
"" overloaded=
"no"> 
32156         <autodoc>base_OnSize(double x, double y)
</autodoc> 
32158           <param name=
"x" type=
"double" default=
""/> 
32159           <param name=
"y" type=
"double" default=
""/> 
32162       <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no"> 
32163         <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y, 
 
32164     bool display=True) -
> bool
</autodoc> 
32166           <param name=
"dc" type=
"DC" default=
""/> 
32167           <param name=
"x" type=
"double" default=
""/> 
32168           <param name=
"y" type=
"double" default=
""/> 
32169           <param name=
"old_x" type=
"double" default=
""/> 
32170           <param name=
"old_y" type=
"double" default=
""/> 
32171           <param name=
"display" type=
"bool" default=
"True"/> 
32174       <method name=
"base_OnMovePost" type=
"" overloaded=
"no"> 
32175         <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y, 
 
32176     bool display=True)
</autodoc> 
32178           <param name=
"dc" type=
"DC" default=
""/> 
32179           <param name=
"x" type=
"double" default=
""/> 
32180           <param name=
"y" type=
"double" default=
""/> 
32181           <param name=
"old_x" type=
"double" default=
""/> 
32182           <param name=
"old_y" type=
"double" default=
""/> 
32183           <param name=
"display" type=
"bool" default=
"True"/> 
32186       <method name=
"base_OnDragLeft" type=
"" overloaded=
"no"> 
32187         <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
32189           <param name=
"draw" type=
"bool" default=
""/> 
32190           <param name=
"x" type=
"double" default=
""/> 
32191           <param name=
"y" type=
"double" default=
""/> 
32192           <param name=
"keys" type=
"int" default=
"0"/> 
32193           <param name=
"attachment" type=
"int" default=
"0"/> 
32196       <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no"> 
32197         <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
32199           <param name=
"x" type=
"double" default=
""/> 
32200           <param name=
"y" type=
"double" default=
""/> 
32201           <param name=
"keys" type=
"int" default=
"0"/> 
32202           <param name=
"attachment" type=
"int" default=
"0"/> 
32205       <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no"> 
32206         <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
32208           <param name=
"x" type=
"double" default=
""/> 
32209           <param name=
"y" type=
"double" default=
""/> 
32210           <param name=
"keys" type=
"int" default=
"0"/> 
32211           <param name=
"attachment" type=
"int" default=
"0"/> 
32214       <method name=
"base_OnDragRight" type=
"" overloaded=
"no"> 
32215         <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
32217           <param name=
"draw" type=
"bool" default=
""/> 
32218           <param name=
"x" type=
"double" default=
""/> 
32219           <param name=
"y" type=
"double" default=
""/> 
32220           <param name=
"keys" type=
"int" default=
"0"/> 
32221           <param name=
"attachment" type=
"int" default=
"0"/> 
32224       <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no"> 
32225         <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
32227           <param name=
"x" type=
"double" default=
""/> 
32228           <param name=
"y" type=
"double" default=
""/> 
32229           <param name=
"keys" type=
"int" default=
"0"/> 
32230           <param name=
"attachment" type=
"int" default=
"0"/> 
32233       <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no"> 
32234         <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
32236           <param name=
"x" type=
"double" default=
""/> 
32237           <param name=
"y" type=
"double" default=
""/> 
32238           <param name=
"keys" type=
"int" default=
"0"/> 
32239           <param name=
"attachment" type=
"int" default=
"0"/> 
32242       <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no"> 
32243         <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc> 
32245           <param name=
"dc" type=
"DC" default=
""/> 
32246           <param name=
"x" type=
"double" default=
""/> 
32247           <param name=
"y" type=
"double" default=
""/> 
32248           <param name=
"w" type=
"double" default=
""/> 
32249           <param name=
"h" type=
"double" default=
""/> 
32252       <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no"> 
32253         <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc> 
32255           <param name=
"dc" type=
"DC" default=
""/> 
32258       <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no"> 
32259         <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc> 
32261           <param name=
"dc" type=
"DC" default=
""/> 
32264       <method name=
"base_OnMoveLink" type=
"" overloaded=
"no"> 
32265         <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc> 
32267           <param name=
"dc" type=
"DC" default=
""/> 
32268           <param name=
"moveControlPoints" type=
"bool" default=
"True"/> 
32271       <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no"> 
32272         <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0, 
 
32273     int attachment=
0)
</autodoc> 
32275           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
32276           <param name=
"draw" type=
"bool" default=
""/> 
32277           <param name=
"x" type=
"double" default=
""/> 
32278           <param name=
"y" type=
"double" default=
""/> 
32279           <param name=
"keys" type=
"int" default=
"0"/> 
32280           <param name=
"attachment" type=
"int" default=
"0"/> 
32283       <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no"> 
32284         <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
32285     int attachment=
0)
</autodoc> 
32287           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
32288           <param name=
"x" type=
"double" default=
""/> 
32289           <param name=
"y" type=
"double" default=
""/> 
32290           <param name=
"keys" type=
"int" default=
"0"/> 
32291           <param name=
"attachment" type=
"int" default=
"0"/> 
32294       <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no"> 
32295         <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
32296     int attachment=
0)
</autodoc> 
32298           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
32299           <param name=
"x" type=
"double" default=
""/> 
32300           <param name=
"y" type=
"double" default=
""/> 
32301           <param name=
"keys" type=
"int" default=
"0"/> 
32302           <param name=
"attachment" type=
"int" default=
"0"/> 
32305       <method name=
"base_OnBeginSize" type=
"" overloaded=
"no"> 
32306         <autodoc>base_OnBeginSize(double w, double h)
</autodoc> 
32308           <param name=
"w" type=
"double" default=
""/> 
32309           <param name=
"h" type=
"double" default=
""/> 
32312       <method name=
"base_OnEndSize" type=
"" overloaded=
"no"> 
32313         <autodoc>base_OnEndSize(double w, double h)
</autodoc> 
32315           <param name=
"w" type=
"double" default=
""/> 
32316           <param name=
"h" type=
"double" default=
""/> 
32320     <class name=
"PyEllipseShape" oldname=
"wxPyEllipseShape" module=
"ogl"> 
32321       <baseclass name=
"PyShape"/> 
32322       <constructor name=
"PyEllipseShape" overloaded=
"no"> 
32323         <autodoc>__init__(double width=
0.0, double height=
0.0) -
> PyEllipseShape
</autodoc> 
32325           <param name=
"width" type=
"double" default=
"0.0"/> 
32326           <param name=
"height" type=
"double" default=
"0.0"/> 
32329       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
32330         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
32332           <param name=
"self" type=
"PyObject" default=
""/> 
32333           <param name=
"_class" type=
"PyObject" default=
""/> 
32336       <method name=
"base_OnDraw" type=
"" overloaded=
"no"> 
32337         <autodoc>base_OnDraw(DC dc)
</autodoc> 
32339           <param name=
"dc" type=
"DC" default=
""/> 
32342       <method name=
"base_OnDrawContents" type=
"" overloaded=
"no"> 
32343         <autodoc>base_OnDrawContents(DC dc)
</autodoc> 
32345           <param name=
"dc" type=
"DC" default=
""/> 
32348       <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no"> 
32349         <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc> 
32351           <param name=
"dc" type=
"DC" default=
""/> 
32352           <param name=
"erase" type=
"bool" default=
"FALSE"/> 
32355       <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no"> 
32356         <autodoc>base_OnMoveLinks(DC dc)
</autodoc> 
32358           <param name=
"dc" type=
"DC" default=
""/> 
32361       <method name=
"base_OnErase" type=
"" overloaded=
"no"> 
32362         <autodoc>base_OnErase(DC dc)
</autodoc> 
32364           <param name=
"dc" type=
"DC" default=
""/> 
32367       <method name=
"base_OnEraseContents" type=
"" overloaded=
"no"> 
32368         <autodoc>base_OnEraseContents(DC dc)
</autodoc> 
32370           <param name=
"dc" type=
"DC" default=
""/> 
32373       <method name=
"base_OnHighlight" type=
"" overloaded=
"no"> 
32374         <autodoc>base_OnHighlight(DC dc)
</autodoc> 
32376           <param name=
"dc" type=
"DC" default=
""/> 
32379       <method name=
"base_OnLeftClick" type=
"" overloaded=
"no"> 
32380         <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
32382           <param name=
"x" type=
"double" default=
""/> 
32383           <param name=
"y" type=
"double" default=
""/> 
32384           <param name=
"keys" type=
"int" default=
"0"/> 
32385           <param name=
"attachment" type=
"int" default=
"0"/> 
32388       <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no"> 
32389         <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
32391           <param name=
"x" type=
"double" default=
""/> 
32392           <param name=
"y" type=
"double" default=
""/> 
32393           <param name=
"keys" type=
"int" default=
"0"/> 
32394           <param name=
"attachment" type=
"int" default=
"0"/> 
32397       <method name=
"base_OnRightClick" type=
"" overloaded=
"no"> 
32398         <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
32400           <param name=
"x" type=
"double" default=
""/> 
32401           <param name=
"y" type=
"double" default=
""/> 
32402           <param name=
"keys" type=
"int" default=
"0"/> 
32403           <param name=
"attachment" type=
"int" default=
"0"/> 
32406       <method name=
"base_OnSize" type=
"" overloaded=
"no"> 
32407         <autodoc>base_OnSize(double x, double y)
</autodoc> 
32409           <param name=
"x" type=
"double" default=
""/> 
32410           <param name=
"y" type=
"double" default=
""/> 
32413       <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no"> 
32414         <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y, 
 
32415     bool display=True) -
> bool
</autodoc> 
32417           <param name=
"dc" type=
"DC" default=
""/> 
32418           <param name=
"x" type=
"double" default=
""/> 
32419           <param name=
"y" type=
"double" default=
""/> 
32420           <param name=
"old_x" type=
"double" default=
""/> 
32421           <param name=
"old_y" type=
"double" default=
""/> 
32422           <param name=
"display" type=
"bool" default=
"True"/> 
32425       <method name=
"base_OnMovePost" type=
"" overloaded=
"no"> 
32426         <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y, 
 
32427     bool display=True)
</autodoc> 
32429           <param name=
"dc" type=
"DC" default=
""/> 
32430           <param name=
"x" type=
"double" default=
""/> 
32431           <param name=
"y" type=
"double" default=
""/> 
32432           <param name=
"old_x" type=
"double" default=
""/> 
32433           <param name=
"old_y" type=
"double" default=
""/> 
32434           <param name=
"display" type=
"bool" default=
"True"/> 
32437       <method name=
"base_OnDragLeft" type=
"" overloaded=
"no"> 
32438         <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
32440           <param name=
"draw" type=
"bool" default=
""/> 
32441           <param name=
"x" type=
"double" default=
""/> 
32442           <param name=
"y" type=
"double" default=
""/> 
32443           <param name=
"keys" type=
"int" default=
"0"/> 
32444           <param name=
"attachment" type=
"int" default=
"0"/> 
32447       <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no"> 
32448         <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
32450           <param name=
"x" type=
"double" default=
""/> 
32451           <param name=
"y" type=
"double" default=
""/> 
32452           <param name=
"keys" type=
"int" default=
"0"/> 
32453           <param name=
"attachment" type=
"int" default=
"0"/> 
32456       <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no"> 
32457         <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
32459           <param name=
"x" type=
"double" default=
""/> 
32460           <param name=
"y" type=
"double" default=
""/> 
32461           <param name=
"keys" type=
"int" default=
"0"/> 
32462           <param name=
"attachment" type=
"int" default=
"0"/> 
32465       <method name=
"base_OnDragRight" type=
"" overloaded=
"no"> 
32466         <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
32468           <param name=
"draw" type=
"bool" default=
""/> 
32469           <param name=
"x" type=
"double" default=
""/> 
32470           <param name=
"y" type=
"double" default=
""/> 
32471           <param name=
"keys" type=
"int" default=
"0"/> 
32472           <param name=
"attachment" type=
"int" default=
"0"/> 
32475       <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no"> 
32476         <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
32478           <param name=
"x" type=
"double" default=
""/> 
32479           <param name=
"y" type=
"double" default=
""/> 
32480           <param name=
"keys" type=
"int" default=
"0"/> 
32481           <param name=
"attachment" type=
"int" default=
"0"/> 
32484       <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no"> 
32485         <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
32487           <param name=
"x" type=
"double" default=
""/> 
32488           <param name=
"y" type=
"double" default=
""/> 
32489           <param name=
"keys" type=
"int" default=
"0"/> 
32490           <param name=
"attachment" type=
"int" default=
"0"/> 
32493       <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no"> 
32494         <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc> 
32496           <param name=
"dc" type=
"DC" default=
""/> 
32497           <param name=
"x" type=
"double" default=
""/> 
32498           <param name=
"y" type=
"double" default=
""/> 
32499           <param name=
"w" type=
"double" default=
""/> 
32500           <param name=
"h" type=
"double" default=
""/> 
32503       <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no"> 
32504         <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc> 
32506           <param name=
"dc" type=
"DC" default=
""/> 
32509       <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no"> 
32510         <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc> 
32512           <param name=
"dc" type=
"DC" default=
""/> 
32515       <method name=
"base_OnMoveLink" type=
"" overloaded=
"no"> 
32516         <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc> 
32518           <param name=
"dc" type=
"DC" default=
""/> 
32519           <param name=
"moveControlPoints" type=
"bool" default=
"True"/> 
32522       <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no"> 
32523         <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0, 
 
32524     int attachment=
0)
</autodoc> 
32526           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
32527           <param name=
"draw" type=
"bool" default=
""/> 
32528           <param name=
"x" type=
"double" default=
""/> 
32529           <param name=
"y" type=
"double" default=
""/> 
32530           <param name=
"keys" type=
"int" default=
"0"/> 
32531           <param name=
"attachment" type=
"int" default=
"0"/> 
32534       <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no"> 
32535         <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
32536     int attachment=
0)
</autodoc> 
32538           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
32539           <param name=
"x" type=
"double" default=
""/> 
32540           <param name=
"y" type=
"double" default=
""/> 
32541           <param name=
"keys" type=
"int" default=
"0"/> 
32542           <param name=
"attachment" type=
"int" default=
"0"/> 
32545       <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no"> 
32546         <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
32547     int attachment=
0)
</autodoc> 
32549           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
32550           <param name=
"x" type=
"double" default=
""/> 
32551           <param name=
"y" type=
"double" default=
""/> 
32552           <param name=
"keys" type=
"int" default=
"0"/> 
32553           <param name=
"attachment" type=
"int" default=
"0"/> 
32556       <method name=
"base_OnBeginSize" type=
"" overloaded=
"no"> 
32557         <autodoc>base_OnBeginSize(double w, double h)
</autodoc> 
32559           <param name=
"w" type=
"double" default=
""/> 
32560           <param name=
"h" type=
"double" default=
""/> 
32563       <method name=
"base_OnEndSize" type=
"" overloaded=
"no"> 
32564         <autodoc>base_OnEndSize(double w, double h)
</autodoc> 
32566           <param name=
"w" type=
"double" default=
""/> 
32567           <param name=
"h" type=
"double" default=
""/> 
32571     <class name=
"PyCircleShape" oldname=
"wxPyCircleShape" module=
"ogl"> 
32572       <baseclass name=
"PyEllipseShape"/> 
32573       <constructor name=
"PyCircleShape" overloaded=
"no"> 
32574         <autodoc>__init__(double width=
0.0) -
> PyCircleShape
</autodoc> 
32576           <param name=
"width" type=
"double" default=
"0.0"/> 
32579       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
32580         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
32582           <param name=
"self" type=
"PyObject" default=
""/> 
32583           <param name=
"_class" type=
"PyObject" default=
""/> 
32586       <method name=
"base_OnDraw" type=
"" overloaded=
"no"> 
32587         <autodoc>base_OnDraw(DC dc)
</autodoc> 
32589           <param name=
"dc" type=
"DC" default=
""/> 
32592       <method name=
"base_OnDrawContents" type=
"" overloaded=
"no"> 
32593         <autodoc>base_OnDrawContents(DC dc)
</autodoc> 
32595           <param name=
"dc" type=
"DC" default=
""/> 
32598       <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no"> 
32599         <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc> 
32601           <param name=
"dc" type=
"DC" default=
""/> 
32602           <param name=
"erase" type=
"bool" default=
"FALSE"/> 
32605       <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no"> 
32606         <autodoc>base_OnMoveLinks(DC dc)
</autodoc> 
32608           <param name=
"dc" type=
"DC" default=
""/> 
32611       <method name=
"base_OnErase" type=
"" overloaded=
"no"> 
32612         <autodoc>base_OnErase(DC dc)
</autodoc> 
32614           <param name=
"dc" type=
"DC" default=
""/> 
32617       <method name=
"base_OnEraseContents" type=
"" overloaded=
"no"> 
32618         <autodoc>base_OnEraseContents(DC dc)
</autodoc> 
32620           <param name=
"dc" type=
"DC" default=
""/> 
32623       <method name=
"base_OnHighlight" type=
"" overloaded=
"no"> 
32624         <autodoc>base_OnHighlight(DC dc)
</autodoc> 
32626           <param name=
"dc" type=
"DC" default=
""/> 
32629       <method name=
"base_OnLeftClick" type=
"" overloaded=
"no"> 
32630         <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
32632           <param name=
"x" type=
"double" default=
""/> 
32633           <param name=
"y" type=
"double" default=
""/> 
32634           <param name=
"keys" type=
"int" default=
"0"/> 
32635           <param name=
"attachment" type=
"int" default=
"0"/> 
32638       <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no"> 
32639         <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
32641           <param name=
"x" type=
"double" default=
""/> 
32642           <param name=
"y" type=
"double" default=
""/> 
32643           <param name=
"keys" type=
"int" default=
"0"/> 
32644           <param name=
"attachment" type=
"int" default=
"0"/> 
32647       <method name=
"base_OnRightClick" type=
"" overloaded=
"no"> 
32648         <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
32650           <param name=
"x" type=
"double" default=
""/> 
32651           <param name=
"y" type=
"double" default=
""/> 
32652           <param name=
"keys" type=
"int" default=
"0"/> 
32653           <param name=
"attachment" type=
"int" default=
"0"/> 
32656       <method name=
"base_OnSize" type=
"" overloaded=
"no"> 
32657         <autodoc>base_OnSize(double x, double y)
</autodoc> 
32659           <param name=
"x" type=
"double" default=
""/> 
32660           <param name=
"y" type=
"double" default=
""/> 
32663       <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no"> 
32664         <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y, 
 
32665     bool display=True) -
> bool
</autodoc> 
32667           <param name=
"dc" type=
"DC" default=
""/> 
32668           <param name=
"x" type=
"double" default=
""/> 
32669           <param name=
"y" type=
"double" default=
""/> 
32670           <param name=
"old_x" type=
"double" default=
""/> 
32671           <param name=
"old_y" type=
"double" default=
""/> 
32672           <param name=
"display" type=
"bool" default=
"True"/> 
32675       <method name=
"base_OnMovePost" type=
"" overloaded=
"no"> 
32676         <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y, 
 
32677     bool display=True)
</autodoc> 
32679           <param name=
"dc" type=
"DC" default=
""/> 
32680           <param name=
"x" type=
"double" default=
""/> 
32681           <param name=
"y" type=
"double" default=
""/> 
32682           <param name=
"old_x" type=
"double" default=
""/> 
32683           <param name=
"old_y" type=
"double" default=
""/> 
32684           <param name=
"display" type=
"bool" default=
"True"/> 
32687       <method name=
"base_OnDragLeft" type=
"" overloaded=
"no"> 
32688         <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
32690           <param name=
"draw" type=
"bool" default=
""/> 
32691           <param name=
"x" type=
"double" default=
""/> 
32692           <param name=
"y" type=
"double" default=
""/> 
32693           <param name=
"keys" type=
"int" default=
"0"/> 
32694           <param name=
"attachment" type=
"int" default=
"0"/> 
32697       <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no"> 
32698         <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
32700           <param name=
"x" type=
"double" default=
""/> 
32701           <param name=
"y" type=
"double" default=
""/> 
32702           <param name=
"keys" type=
"int" default=
"0"/> 
32703           <param name=
"attachment" type=
"int" default=
"0"/> 
32706       <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no"> 
32707         <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
32709           <param name=
"x" type=
"double" default=
""/> 
32710           <param name=
"y" type=
"double" default=
""/> 
32711           <param name=
"keys" type=
"int" default=
"0"/> 
32712           <param name=
"attachment" type=
"int" default=
"0"/> 
32715       <method name=
"base_OnDragRight" type=
"" overloaded=
"no"> 
32716         <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
32718           <param name=
"draw" type=
"bool" default=
""/> 
32719           <param name=
"x" type=
"double" default=
""/> 
32720           <param name=
"y" type=
"double" default=
""/> 
32721           <param name=
"keys" type=
"int" default=
"0"/> 
32722           <param name=
"attachment" type=
"int" default=
"0"/> 
32725       <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no"> 
32726         <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
32728           <param name=
"x" type=
"double" default=
""/> 
32729           <param name=
"y" type=
"double" default=
""/> 
32730           <param name=
"keys" type=
"int" default=
"0"/> 
32731           <param name=
"attachment" type=
"int" default=
"0"/> 
32734       <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no"> 
32735         <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
32737           <param name=
"x" type=
"double" default=
""/> 
32738           <param name=
"y" type=
"double" default=
""/> 
32739           <param name=
"keys" type=
"int" default=
"0"/> 
32740           <param name=
"attachment" type=
"int" default=
"0"/> 
32743       <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no"> 
32744         <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc> 
32746           <param name=
"dc" type=
"DC" default=
""/> 
32747           <param name=
"x" type=
"double" default=
""/> 
32748           <param name=
"y" type=
"double" default=
""/> 
32749           <param name=
"w" type=
"double" default=
""/> 
32750           <param name=
"h" type=
"double" default=
""/> 
32753       <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no"> 
32754         <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc> 
32756           <param name=
"dc" type=
"DC" default=
""/> 
32759       <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no"> 
32760         <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc> 
32762           <param name=
"dc" type=
"DC" default=
""/> 
32765       <method name=
"base_OnMoveLink" type=
"" overloaded=
"no"> 
32766         <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc> 
32768           <param name=
"dc" type=
"DC" default=
""/> 
32769           <param name=
"moveControlPoints" type=
"bool" default=
"True"/> 
32772       <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no"> 
32773         <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0, 
 
32774     int attachment=
0)
</autodoc> 
32776           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
32777           <param name=
"draw" type=
"bool" default=
""/> 
32778           <param name=
"x" type=
"double" default=
""/> 
32779           <param name=
"y" type=
"double" default=
""/> 
32780           <param name=
"keys" type=
"int" default=
"0"/> 
32781           <param name=
"attachment" type=
"int" default=
"0"/> 
32784       <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no"> 
32785         <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
32786     int attachment=
0)
</autodoc> 
32788           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
32789           <param name=
"x" type=
"double" default=
""/> 
32790           <param name=
"y" type=
"double" default=
""/> 
32791           <param name=
"keys" type=
"int" default=
"0"/> 
32792           <param name=
"attachment" type=
"int" default=
"0"/> 
32795       <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no"> 
32796         <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
32797     int attachment=
0)
</autodoc> 
32799           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
32800           <param name=
"x" type=
"double" default=
""/> 
32801           <param name=
"y" type=
"double" default=
""/> 
32802           <param name=
"keys" type=
"int" default=
"0"/> 
32803           <param name=
"attachment" type=
"int" default=
"0"/> 
32806       <method name=
"base_OnBeginSize" type=
"" overloaded=
"no"> 
32807         <autodoc>base_OnBeginSize(double w, double h)
</autodoc> 
32809           <param name=
"w" type=
"double" default=
""/> 
32810           <param name=
"h" type=
"double" default=
""/> 
32813       <method name=
"base_OnEndSize" type=
"" overloaded=
"no"> 
32814         <autodoc>base_OnEndSize(double w, double h)
</autodoc> 
32816           <param name=
"w" type=
"double" default=
""/> 
32817           <param name=
"h" type=
"double" default=
""/> 
32821     <class name=
"ArrowHead" oldname=
"wxArrowHead" module=
"ogl"> 
32822       <baseclass name=
"Object"/> 
32823       <constructor name=
"ArrowHead" overloaded=
"no"> 
32824         <autodoc>__init__(int type=
0, int end=
0, double size=
0.0, double dist=
0.0, 
 
32825     String name=EmptyString, PseudoMetaFile mf=None, 
 
32826     long arrowId=-
1) -
> ArrowHead
</autodoc> 
32828           <param name=
"type" type=
"int" default=
"0"/> 
32829           <param name=
"end" type=
"int" default=
"0"/> 
32830           <param name=
"size" type=
"double" default=
"0.0"/> 
32831           <param name=
"dist" type=
"double" default=
"0.0"/> 
32832           <param name=
"name" type=
"String" default=
"wxPyEmptyString"/> 
32833           <param name=
"mf" type=
"PseudoMetaFile" default=
"NULL"/> 
32834           <param name=
"arrowId" type=
"long" default=
"-1"/> 
32837       <destructor name=
"~wxArrowHead" overloaded=
"no"> 
32838         <autodoc>__del__()
</autodoc> 
32840       <method name=
"_GetType" type=
"int" overloaded=
"no"> 
32841         <autodoc>_GetType() -
> int
</autodoc> 
32843       <method name=
"GetPosition" type=
"int" overloaded=
"no"> 
32844         <autodoc>GetPosition() -
> int
</autodoc> 
32846       <method name=
"SetPosition" type=
"" overloaded=
"no"> 
32847         <autodoc>SetPosition(int pos)
</autodoc> 
32849           <param name=
"pos" type=
"int" default=
""/> 
32852       <method name=
"GetXOffset" type=
"double" overloaded=
"no"> 
32853         <autodoc>GetXOffset() -
> double
</autodoc> 
32855       <method name=
"GetYOffset" type=
"double" overloaded=
"no"> 
32856         <autodoc>GetYOffset() -
> double
</autodoc> 
32858       <method name=
"GetSpacing" type=
"double" overloaded=
"no"> 
32859         <autodoc>GetSpacing() -
> double
</autodoc> 
32861       <method name=
"GetSize" type=
"double" overloaded=
"no"> 
32862         <autodoc>GetSize() -
> double
</autodoc> 
32864       <method name=
"GetName" type=
"String" overloaded=
"no"> 
32865         <autodoc>GetName() -
> String
</autodoc> 
32867       <method name=
"SetXOffset" type=
"" overloaded=
"no"> 
32868         <autodoc>SetXOffset(double x)
</autodoc> 
32870           <param name=
"x" type=
"double" default=
""/> 
32873       <method name=
"SetYOffset" type=
"" overloaded=
"no"> 
32874         <autodoc>SetYOffset(double y)
</autodoc> 
32876           <param name=
"y" type=
"double" default=
""/> 
32879       <method name=
"GetMetaFile" type=
"PseudoMetaFile" overloaded=
"no"> 
32880         <autodoc>GetMetaFile() -
> PseudoMetaFile
</autodoc> 
32882       <method name=
"GetId" type=
"long" overloaded=
"no"> 
32883         <autodoc>GetId() -
> long
</autodoc> 
32885       <method name=
"GetArrowEnd" type=
"int" overloaded=
"no"> 
32886         <autodoc>GetArrowEnd() -
> int
</autodoc> 
32888       <method name=
"GetArrowSize" type=
"double" overloaded=
"no"> 
32889         <autodoc>GetArrowSize() -
> double
</autodoc> 
32891       <method name=
"SetSize" type=
"" overloaded=
"no"> 
32892         <autodoc>SetSize(double size)
</autodoc> 
32894           <param name=
"size" type=
"double" default=
""/> 
32897       <method name=
"SetSpacing" type=
"" overloaded=
"no"> 
32898         <autodoc>SetSpacing(double sp)
</autodoc> 
32900           <param name=
"sp" type=
"double" default=
""/> 
32904     <class name=
"PyLineShape" oldname=
"wxPyLineShape" module=
"ogl"> 
32905       <baseclass name=
"PyShape"/> 
32906       <constructor name=
"PyLineShape" overloaded=
"no"> 
32907         <autodoc>__init__() -
> PyLineShape
</autodoc> 
32909       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
32910         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
32912           <param name=
"self" type=
"PyObject" default=
""/> 
32913           <param name=
"_class" type=
"PyObject" default=
""/> 
32916       <method name=
"AddArrow" type=
"" overloaded=
"no"> 
32917         <autodoc>AddArrow(int type, int end=ARROW_POSITION_END, double arrowSize=
10.0, 
 
32918     double xOffset=
0.0, String name=EmptyString, 
 
32919     PseudoMetaFile mf=None, long arrowId=-
1)
</autodoc> 
32921           <param name=
"type" type=
"int" default=
""/> 
32922           <param name=
"end" type=
"int" default=
"ARROW_POSITION_END"/> 
32923           <param name=
"arrowSize" type=
"double" default=
"10.0"/> 
32924           <param name=
"xOffset" type=
"double" default=
"0.0"/> 
32925           <param name=
"name" type=
"String" default=
"wxPyEmptyString"/> 
32926           <param name=
"mf" type=
"PseudoMetaFile" default=
"NULL"/> 
32927           <param name=
"arrowId" type=
"long" default=
"-1"/> 
32930       <method name=
"AddArrowOrdered" type=
"" overloaded=
"no"> 
32931         <autodoc>AddArrowOrdered(ArrowHead arrow, PyObject referenceList, int end)
</autodoc> 
32933           <param name=
"arrow" type=
"ArrowHead" default=
""/> 
32934           <param name=
"referenceList" type=
"PyObject" default=
""/> 
32935           <param name=
"end" type=
"int" default=
""/> 
32938       <method name=
"ClearArrow" type=
"bool" overloaded=
"no"> 
32939         <autodoc>ClearArrow(String name) -
> bool
</autodoc> 
32941           <param name=
"name" type=
"String" default=
""/> 
32944       <method name=
"ClearArrowsAtPosition" type=
"" overloaded=
"no"> 
32945         <autodoc>ClearArrowsAtPosition(int position=-
1)
</autodoc> 
32947           <param name=
"position" type=
"int" default=
"-1"/> 
32950       <method name=
"DrawArrow" type=
"" overloaded=
"no"> 
32951         <autodoc>DrawArrow(DC dc, ArrowHead arrow, double xOffset, bool proportionalOffset)
</autodoc> 
32953           <param name=
"dc" type=
"DC" default=
""/> 
32954           <param name=
"arrow" type=
"ArrowHead" default=
""/> 
32955           <param name=
"xOffset" type=
"double" default=
""/> 
32956           <param name=
"proportionalOffset" type=
"bool" default=
""/> 
32959       <method name=
"DeleteArrowHeadId" type=
"bool" overloaded=
"no"> 
32960         <autodoc>DeleteArrowHeadId(long arrowId) -
> bool
</autodoc> 
32962           <param name=
"arrowId" type=
"long" default=
""/> 
32965       <method name=
"DeleteArrowHead" type=
"bool" overloaded=
"no"> 
32966         <autodoc>DeleteArrowHead(int position, String name) -
> bool
</autodoc> 
32968           <param name=
"position" type=
"int" default=
""/> 
32969           <param name=
"name" type=
"String" default=
""/> 
32972       <method name=
"DeleteLineControlPoint" type=
"bool" overloaded=
"no"> 
32973         <autodoc>DeleteLineControlPoint() -
> bool
</autodoc> 
32975       <method name=
"DrawArrows" type=
"" overloaded=
"no"> 
32976         <autodoc>DrawArrows(DC dc)
</autodoc> 
32978           <param name=
"dc" type=
"DC" default=
""/> 
32981       <method name=
"DrawRegion" type=
"" overloaded=
"no"> 
32982         <autodoc>DrawRegion(DC dc, ShapeRegion region, double x, double y)
</autodoc> 
32984           <param name=
"dc" type=
"DC" default=
""/> 
32985           <param name=
"region" type=
"ShapeRegion" default=
""/> 
32986           <param name=
"x" type=
"double" default=
""/> 
32987           <param name=
"y" type=
"double" default=
""/> 
32990       <method name=
"EraseRegion" type=
"" overloaded=
"no"> 
32991         <autodoc>EraseRegion(DC dc, ShapeRegion region, double x, double y)
</autodoc> 
32993           <param name=
"dc" type=
"DC" default=
""/> 
32994           <param name=
"region" type=
"ShapeRegion" default=
""/> 
32995           <param name=
"x" type=
"double" default=
""/> 
32996           <param name=
"y" type=
"double" default=
""/> 
32999       <method name=
"FindArrowHeadId" type=
"ArrowHead" overloaded=
"no"> 
33000         <autodoc>FindArrowHeadId(long arrowId) -
> ArrowHead
</autodoc> 
33002           <param name=
"arrowId" type=
"long" default=
""/> 
33005       <method name=
"FindArrowHead" type=
"ArrowHead" overloaded=
"no"> 
33006         <autodoc>FindArrowHead(int position, String name) -
> ArrowHead
</autodoc> 
33008           <param name=
"position" type=
"int" default=
""/> 
33009           <param name=
"name" type=
"String" default=
""/> 
33012       <method name=
"FindLineEndPoints" type=
"" overloaded=
"no"> 
33013         <autodoc>FindLineEndPoints(double OUTPUT, double OUTPUT, double OUTPUT, double OUTPUT)
</autodoc> 
33015           <param name=
"OUTPUT" type=
"double" default=
""/> 
33016           <param name=
"OUTPUT" type=
"double" default=
""/> 
33017           <param name=
"OUTPUT" type=
"double" default=
""/> 
33018           <param name=
"OUTPUT" type=
"double" default=
""/> 
33021       <method name=
"FindLinePosition" type=
"int" overloaded=
"no"> 
33022         <autodoc>FindLinePosition(double x, double y) -
> int
</autodoc> 
33024           <param name=
"x" type=
"double" default=
""/> 
33025           <param name=
"y" type=
"double" default=
""/> 
33028       <method name=
"FindMinimumWidth" type=
"double" overloaded=
"no"> 
33029         <autodoc>FindMinimumWidth() -
> double
</autodoc> 
33031       <method name=
"FindNth" type=
"" overloaded=
"no"> 
33032         <autodoc>FindNth(PyShape image, int OUTPUT, int OUTPUT, bool incoming)
</autodoc> 
33034           <param name=
"image" type=
"PyShape" default=
""/> 
33035           <param name=
"OUTPUT" type=
"int" default=
""/> 
33036           <param name=
"OUTPUT" type=
"int" default=
""/> 
33037           <param name=
"incoming" type=
"bool" default=
""/> 
33040       <method name=
"GetAttachmentFrom" type=
"int" overloaded=
"no"> 
33041         <autodoc>GetAttachmentFrom() -
> int
</autodoc> 
33043       <method name=
"GetAttachmentTo" type=
"int" overloaded=
"no"> 
33044         <autodoc>GetAttachmentTo() -
> int
</autodoc> 
33046       <method name=
"GetEnds" type=
"" overloaded=
"no"> 
33047         <autodoc>GetEnds(double OUTPUT, double OUTPUT, double OUTPUT, double OUTPUT)
</autodoc> 
33049           <param name=
"OUTPUT" type=
"double" default=
""/> 
33050           <param name=
"OUTPUT" type=
"double" default=
""/> 
33051           <param name=
"OUTPUT" type=
"double" default=
""/> 
33052           <param name=
"OUTPUT" type=
"double" default=
""/> 
33055       <method name=
"GetFrom" type=
"PyShape" overloaded=
"no"> 
33056         <autodoc>GetFrom() -
> PyShape
</autodoc> 
33058       <method name=
"GetLabelPosition" type=
"" overloaded=
"no"> 
33059         <autodoc>GetLabelPosition(int position, double OUTPUT, double OUTPUT)
</autodoc> 
33061           <param name=
"position" type=
"int" default=
""/> 
33062           <param name=
"OUTPUT" type=
"double" default=
""/> 
33063           <param name=
"OUTPUT" type=
"double" default=
""/> 
33066       <method name=
"GetNextControlPoint" type=
"RealPoint" overloaded=
"no"> 
33067         <autodoc>GetNextControlPoint(PyShape shape) -
> RealPoint
</autodoc> 
33069           <param name=
"shape" type=
"PyShape" default=
""/> 
33072       <method name=
"GetTo" type=
"PyShape" overloaded=
"no"> 
33073         <autodoc>GetTo() -
> PyShape
</autodoc> 
33075       <method name=
"Initialise" type=
"" overloaded=
"no"> 
33076         <autodoc>Initialise()
</autodoc> 
33078       <method name=
"InsertLineControlPoint" type=
"" overloaded=
"no"> 
33079         <autodoc>InsertLineControlPoint(DC dc)
</autodoc> 
33081           <param name=
"dc" type=
"DC" default=
""/> 
33084       <method name=
"IsEnd" type=
"bool" overloaded=
"no"> 
33085         <autodoc>IsEnd(PyShape shape) -
> bool
</autodoc> 
33087           <param name=
"shape" type=
"PyShape" default=
""/> 
33090       <method name=
"IsSpline" type=
"bool" overloaded=
"no"> 
33091         <autodoc>IsSpline() -
> bool
</autodoc> 
33093       <method name=
"MakeLineControlPoints" type=
"" overloaded=
"no"> 
33094         <autodoc>MakeLineControlPoints(int n)
</autodoc> 
33096           <param name=
"n" type=
"int" default=
""/> 
33099       <method name=
"GetLineControlPoints" type=
"PyObject" overloaded=
"no"> 
33100         <autodoc>GetLineControlPoints() -
> PyObject
</autodoc> 
33102       <method name=
"SetAttachmentFrom" type=
"" overloaded=
"no"> 
33103         <autodoc>SetAttachmentFrom(int fromAttach)
</autodoc> 
33105           <param name=
"fromAttach" type=
"int" default=
""/> 
33108       <method name=
"SetAttachments" type=
"" overloaded=
"no"> 
33109         <autodoc>SetAttachments(int fromAttach, int toAttach)
</autodoc> 
33111           <param name=
"fromAttach" type=
"int" default=
""/> 
33112           <param name=
"toAttach" type=
"int" default=
""/> 
33115       <method name=
"SetAttachmentTo" type=
"" overloaded=
"no"> 
33116         <autodoc>SetAttachmentTo(int toAttach)
</autodoc> 
33118           <param name=
"toAttach" type=
"int" default=
""/> 
33121       <method name=
"SetEnds" type=
"" overloaded=
"no"> 
33122         <autodoc>SetEnds(double x1, double y1, double x2, double y2)
</autodoc> 
33124           <param name=
"x1" type=
"double" default=
""/> 
33125           <param name=
"y1" type=
"double" default=
""/> 
33126           <param name=
"x2" type=
"double" default=
""/> 
33127           <param name=
"y2" type=
"double" default=
""/> 
33130       <method name=
"SetFrom" type=
"" overloaded=
"no"> 
33131         <autodoc>SetFrom(PyShape object)
</autodoc> 
33133           <param name=
"object" type=
"PyShape" default=
""/> 
33136       <method name=
"SetIgnoreOffsets" type=
"" overloaded=
"no"> 
33137         <autodoc>SetIgnoreOffsets(bool ignore)
</autodoc> 
33139           <param name=
"ignore" type=
"bool" default=
""/> 
33142       <method name=
"SetSpline" type=
"" overloaded=
"no"> 
33143         <autodoc>SetSpline(bool spline)
</autodoc> 
33145           <param name=
"spline" type=
"bool" default=
""/> 
33148       <method name=
"SetTo" type=
"" overloaded=
"no"> 
33149         <autodoc>SetTo(PyShape object)
</autodoc> 
33151           <param name=
"object" type=
"PyShape" default=
""/> 
33154       <method name=
"Straighten" type=
"" overloaded=
"no"> 
33155         <autodoc>Straighten(DC dc=None)
</autodoc> 
33157           <param name=
"dc" type=
"DC" default=
"NULL"/> 
33160       <method name=
"Unlink" type=
"" overloaded=
"no"> 
33161         <autodoc>Unlink()
</autodoc> 
33163       <method name=
"SetAlignmentOrientation" type=
"" overloaded=
"no"> 
33164         <autodoc>SetAlignmentOrientation(bool isEnd, bool isHoriz)
</autodoc> 
33166           <param name=
"isEnd" type=
"bool" default=
""/> 
33167           <param name=
"isHoriz" type=
"bool" default=
""/> 
33170       <method name=
"SetAlignmentType" type=
"" overloaded=
"no"> 
33171         <autodoc>SetAlignmentType(bool isEnd, int alignType)
</autodoc> 
33173           <param name=
"isEnd" type=
"bool" default=
""/> 
33174           <param name=
"alignType" type=
"int" default=
""/> 
33177       <method name=
"GetAlignmentOrientation" type=
"bool" overloaded=
"no"> 
33178         <autodoc>GetAlignmentOrientation(bool isEnd) -
> bool
</autodoc> 
33180           <param name=
"isEnd" type=
"bool" default=
""/> 
33183       <method name=
"GetAlignmentType" type=
"int" overloaded=
"no"> 
33184         <autodoc>GetAlignmentType(bool isEnd) -
> int
</autodoc> 
33186           <param name=
"isEnd" type=
"bool" default=
""/> 
33189       <method name=
"GetAlignmentStart" type=
"int" overloaded=
"no"> 
33190         <autodoc>GetAlignmentStart() -
> int
</autodoc> 
33192       <method name=
"GetAlignmentEnd" type=
"int" overloaded=
"no"> 
33193         <autodoc>GetAlignmentEnd() -
> int
</autodoc> 
33195       <method name=
"base_OnDraw" type=
"" overloaded=
"no"> 
33196         <autodoc>base_OnDraw(DC dc)
</autodoc> 
33198           <param name=
"dc" type=
"DC" default=
""/> 
33201       <method name=
"base_OnDrawContents" type=
"" overloaded=
"no"> 
33202         <autodoc>base_OnDrawContents(DC dc)
</autodoc> 
33204           <param name=
"dc" type=
"DC" default=
""/> 
33207       <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no"> 
33208         <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc> 
33210           <param name=
"dc" type=
"DC" default=
""/> 
33211           <param name=
"erase" type=
"bool" default=
"FALSE"/> 
33214       <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no"> 
33215         <autodoc>base_OnMoveLinks(DC dc)
</autodoc> 
33217           <param name=
"dc" type=
"DC" default=
""/> 
33220       <method name=
"base_OnErase" type=
"" overloaded=
"no"> 
33221         <autodoc>base_OnErase(DC dc)
</autodoc> 
33223           <param name=
"dc" type=
"DC" default=
""/> 
33226       <method name=
"base_OnEraseContents" type=
"" overloaded=
"no"> 
33227         <autodoc>base_OnEraseContents(DC dc)
</autodoc> 
33229           <param name=
"dc" type=
"DC" default=
""/> 
33232       <method name=
"base_OnHighlight" type=
"" overloaded=
"no"> 
33233         <autodoc>base_OnHighlight(DC dc)
</autodoc> 
33235           <param name=
"dc" type=
"DC" default=
""/> 
33238       <method name=
"base_OnLeftClick" type=
"" overloaded=
"no"> 
33239         <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
33241           <param name=
"x" type=
"double" default=
""/> 
33242           <param name=
"y" type=
"double" default=
""/> 
33243           <param name=
"keys" type=
"int" default=
"0"/> 
33244           <param name=
"attachment" type=
"int" default=
"0"/> 
33247       <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no"> 
33248         <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
33250           <param name=
"x" type=
"double" default=
""/> 
33251           <param name=
"y" type=
"double" default=
""/> 
33252           <param name=
"keys" type=
"int" default=
"0"/> 
33253           <param name=
"attachment" type=
"int" default=
"0"/> 
33256       <method name=
"base_OnRightClick" type=
"" overloaded=
"no"> 
33257         <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
33259           <param name=
"x" type=
"double" default=
""/> 
33260           <param name=
"y" type=
"double" default=
""/> 
33261           <param name=
"keys" type=
"int" default=
"0"/> 
33262           <param name=
"attachment" type=
"int" default=
"0"/> 
33265       <method name=
"base_OnSize" type=
"" overloaded=
"no"> 
33266         <autodoc>base_OnSize(double x, double y)
</autodoc> 
33268           <param name=
"x" type=
"double" default=
""/> 
33269           <param name=
"y" type=
"double" default=
""/> 
33272       <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no"> 
33273         <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y, 
 
33274     bool display=True) -
> bool
</autodoc> 
33276           <param name=
"dc" type=
"DC" default=
""/> 
33277           <param name=
"x" type=
"double" default=
""/> 
33278           <param name=
"y" type=
"double" default=
""/> 
33279           <param name=
"old_x" type=
"double" default=
""/> 
33280           <param name=
"old_y" type=
"double" default=
""/> 
33281           <param name=
"display" type=
"bool" default=
"True"/> 
33284       <method name=
"base_OnMovePost" type=
"" overloaded=
"no"> 
33285         <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y, 
 
33286     bool display=True)
</autodoc> 
33288           <param name=
"dc" type=
"DC" default=
""/> 
33289           <param name=
"x" type=
"double" default=
""/> 
33290           <param name=
"y" type=
"double" default=
""/> 
33291           <param name=
"old_x" type=
"double" default=
""/> 
33292           <param name=
"old_y" type=
"double" default=
""/> 
33293           <param name=
"display" type=
"bool" default=
"True"/> 
33296       <method name=
"base_OnDragLeft" type=
"" overloaded=
"no"> 
33297         <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
33299           <param name=
"draw" type=
"bool" default=
""/> 
33300           <param name=
"x" type=
"double" default=
""/> 
33301           <param name=
"y" type=
"double" default=
""/> 
33302           <param name=
"keys" type=
"int" default=
"0"/> 
33303           <param name=
"attachment" type=
"int" default=
"0"/> 
33306       <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no"> 
33307         <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
33309           <param name=
"x" type=
"double" default=
""/> 
33310           <param name=
"y" type=
"double" default=
""/> 
33311           <param name=
"keys" type=
"int" default=
"0"/> 
33312           <param name=
"attachment" type=
"int" default=
"0"/> 
33315       <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no"> 
33316         <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
33318           <param name=
"x" type=
"double" default=
""/> 
33319           <param name=
"y" type=
"double" default=
""/> 
33320           <param name=
"keys" type=
"int" default=
"0"/> 
33321           <param name=
"attachment" type=
"int" default=
"0"/> 
33324       <method name=
"base_OnDragRight" type=
"" overloaded=
"no"> 
33325         <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
33327           <param name=
"draw" type=
"bool" default=
""/> 
33328           <param name=
"x" type=
"double" default=
""/> 
33329           <param name=
"y" type=
"double" default=
""/> 
33330           <param name=
"keys" type=
"int" default=
"0"/> 
33331           <param name=
"attachment" type=
"int" default=
"0"/> 
33334       <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no"> 
33335         <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
33337           <param name=
"x" type=
"double" default=
""/> 
33338           <param name=
"y" type=
"double" default=
""/> 
33339           <param name=
"keys" type=
"int" default=
"0"/> 
33340           <param name=
"attachment" type=
"int" default=
"0"/> 
33343       <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no"> 
33344         <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
33346           <param name=
"x" type=
"double" default=
""/> 
33347           <param name=
"y" type=
"double" default=
""/> 
33348           <param name=
"keys" type=
"int" default=
"0"/> 
33349           <param name=
"attachment" type=
"int" default=
"0"/> 
33352       <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no"> 
33353         <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc> 
33355           <param name=
"dc" type=
"DC" default=
""/> 
33356           <param name=
"x" type=
"double" default=
""/> 
33357           <param name=
"y" type=
"double" default=
""/> 
33358           <param name=
"w" type=
"double" default=
""/> 
33359           <param name=
"h" type=
"double" default=
""/> 
33362       <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no"> 
33363         <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc> 
33365           <param name=
"dc" type=
"DC" default=
""/> 
33368       <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no"> 
33369         <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc> 
33371           <param name=
"dc" type=
"DC" default=
""/> 
33374       <method name=
"base_OnMoveLink" type=
"" overloaded=
"no"> 
33375         <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc> 
33377           <param name=
"dc" type=
"DC" default=
""/> 
33378           <param name=
"moveControlPoints" type=
"bool" default=
"True"/> 
33381       <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no"> 
33382         <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0, 
 
33383     int attachment=
0)
</autodoc> 
33385           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
33386           <param name=
"draw" type=
"bool" default=
""/> 
33387           <param name=
"x" type=
"double" default=
""/> 
33388           <param name=
"y" type=
"double" default=
""/> 
33389           <param name=
"keys" type=
"int" default=
"0"/> 
33390           <param name=
"attachment" type=
"int" default=
"0"/> 
33393       <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no"> 
33394         <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
33395     int attachment=
0)
</autodoc> 
33397           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
33398           <param name=
"x" type=
"double" default=
""/> 
33399           <param name=
"y" type=
"double" default=
""/> 
33400           <param name=
"keys" type=
"int" default=
"0"/> 
33401           <param name=
"attachment" type=
"int" default=
"0"/> 
33404       <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no"> 
33405         <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
33406     int attachment=
0)
</autodoc> 
33408           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
33409           <param name=
"x" type=
"double" default=
""/> 
33410           <param name=
"y" type=
"double" default=
""/> 
33411           <param name=
"keys" type=
"int" default=
"0"/> 
33412           <param name=
"attachment" type=
"int" default=
"0"/> 
33415       <method name=
"base_OnBeginSize" type=
"" overloaded=
"no"> 
33416         <autodoc>base_OnBeginSize(double w, double h)
</autodoc> 
33418           <param name=
"w" type=
"double" default=
""/> 
33419           <param name=
"h" type=
"double" default=
""/> 
33422       <method name=
"base_OnEndSize" type=
"" overloaded=
"no"> 
33423         <autodoc>base_OnEndSize(double w, double h)
</autodoc> 
33425           <param name=
"w" type=
"double" default=
""/> 
33426           <param name=
"h" type=
"double" default=
""/> 
33430     <class name=
"PyPolygonShape" oldname=
"wxPyPolygonShape" module=
"ogl"> 
33431       <baseclass name=
"PyShape"/> 
33432       <constructor name=
"PyPolygonShape" overloaded=
"no"> 
33433         <autodoc>__init__() -
> PyPolygonShape
</autodoc> 
33435       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
33436         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
33438           <param name=
"self" type=
"PyObject" default=
""/> 
33439           <param name=
"_class" type=
"PyObject" default=
""/> 
33442       <method name=
"Create" type=
"PyObject" overloaded=
"no"> 
33443         <autodoc>Create(PyObject points) -
> PyObject
</autodoc> 
33445           <param name=
"points" type=
"PyObject" default=
""/> 
33448       <method name=
"AddPolygonPoint" type=
"" overloaded=
"no"> 
33449         <autodoc>AddPolygonPoint(int pos=
0)
</autodoc> 
33451           <param name=
"pos" type=
"int" default=
"0"/> 
33454       <method name=
"CalculatePolygonCentre" type=
"" overloaded=
"no"> 
33455         <autodoc>CalculatePolygonCentre()
</autodoc> 
33457       <method name=
"DeletePolygonPoint" type=
"" overloaded=
"no"> 
33458         <autodoc>DeletePolygonPoint(int pos=
0)
</autodoc> 
33460           <param name=
"pos" type=
"int" default=
"0"/> 
33463       <method name=
"GetPoints" type=
"PyObject" overloaded=
"no"> 
33464         <autodoc>GetPoints() -
> PyObject
</autodoc> 
33466       <method name=
"GetOriginalPoints" type=
"PyObject" overloaded=
"no"> 
33467         <autodoc>GetOriginalPoints() -
> PyObject
</autodoc> 
33469       <method name=
"GetOriginalWidth" type=
"double" overloaded=
"no"> 
33470         <autodoc>GetOriginalWidth() -
> double
</autodoc> 
33472       <method name=
"GetOriginalHeight" type=
"double" overloaded=
"no"> 
33473         <autodoc>GetOriginalHeight() -
> double
</autodoc> 
33475       <method name=
"SetOriginalWidth" type=
"" overloaded=
"no"> 
33476         <autodoc>SetOriginalWidth(double w)
</autodoc> 
33478           <param name=
"w" type=
"double" default=
""/> 
33481       <method name=
"SetOriginalHeight" type=
"" overloaded=
"no"> 
33482         <autodoc>SetOriginalHeight(double h)
</autodoc> 
33484           <param name=
"h" type=
"double" default=
""/> 
33487       <method name=
"UpdateOriginalPoints" type=
"" overloaded=
"no"> 
33488         <autodoc>UpdateOriginalPoints()
</autodoc> 
33490       <method name=
"base_OnDraw" type=
"" overloaded=
"no"> 
33491         <autodoc>base_OnDraw(DC dc)
</autodoc> 
33493           <param name=
"dc" type=
"DC" default=
""/> 
33496       <method name=
"base_OnDrawContents" type=
"" overloaded=
"no"> 
33497         <autodoc>base_OnDrawContents(DC dc)
</autodoc> 
33499           <param name=
"dc" type=
"DC" default=
""/> 
33502       <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no"> 
33503         <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc> 
33505           <param name=
"dc" type=
"DC" default=
""/> 
33506           <param name=
"erase" type=
"bool" default=
"FALSE"/> 
33509       <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no"> 
33510         <autodoc>base_OnMoveLinks(DC dc)
</autodoc> 
33512           <param name=
"dc" type=
"DC" default=
""/> 
33515       <method name=
"base_OnErase" type=
"" overloaded=
"no"> 
33516         <autodoc>base_OnErase(DC dc)
</autodoc> 
33518           <param name=
"dc" type=
"DC" default=
""/> 
33521       <method name=
"base_OnEraseContents" type=
"" overloaded=
"no"> 
33522         <autodoc>base_OnEraseContents(DC dc)
</autodoc> 
33524           <param name=
"dc" type=
"DC" default=
""/> 
33527       <method name=
"base_OnHighlight" type=
"" overloaded=
"no"> 
33528         <autodoc>base_OnHighlight(DC dc)
</autodoc> 
33530           <param name=
"dc" type=
"DC" default=
""/> 
33533       <method name=
"base_OnLeftClick" type=
"" overloaded=
"no"> 
33534         <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
33536           <param name=
"x" type=
"double" default=
""/> 
33537           <param name=
"y" type=
"double" default=
""/> 
33538           <param name=
"keys" type=
"int" default=
"0"/> 
33539           <param name=
"attachment" type=
"int" default=
"0"/> 
33542       <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no"> 
33543         <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
33545           <param name=
"x" type=
"double" default=
""/> 
33546           <param name=
"y" type=
"double" default=
""/> 
33547           <param name=
"keys" type=
"int" default=
"0"/> 
33548           <param name=
"attachment" type=
"int" default=
"0"/> 
33551       <method name=
"base_OnRightClick" type=
"" overloaded=
"no"> 
33552         <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
33554           <param name=
"x" type=
"double" default=
""/> 
33555           <param name=
"y" type=
"double" default=
""/> 
33556           <param name=
"keys" type=
"int" default=
"0"/> 
33557           <param name=
"attachment" type=
"int" default=
"0"/> 
33560       <method name=
"base_OnSize" type=
"" overloaded=
"no"> 
33561         <autodoc>base_OnSize(double x, double y)
</autodoc> 
33563           <param name=
"x" type=
"double" default=
""/> 
33564           <param name=
"y" type=
"double" default=
""/> 
33567       <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no"> 
33568         <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y, 
 
33569     bool display=True) -
> bool
</autodoc> 
33571           <param name=
"dc" type=
"DC" default=
""/> 
33572           <param name=
"x" type=
"double" default=
""/> 
33573           <param name=
"y" type=
"double" default=
""/> 
33574           <param name=
"old_x" type=
"double" default=
""/> 
33575           <param name=
"old_y" type=
"double" default=
""/> 
33576           <param name=
"display" type=
"bool" default=
"True"/> 
33579       <method name=
"base_OnMovePost" type=
"" overloaded=
"no"> 
33580         <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y, 
 
33581     bool display=True)
</autodoc> 
33583           <param name=
"dc" type=
"DC" default=
""/> 
33584           <param name=
"x" type=
"double" default=
""/> 
33585           <param name=
"y" type=
"double" default=
""/> 
33586           <param name=
"old_x" type=
"double" default=
""/> 
33587           <param name=
"old_y" type=
"double" default=
""/> 
33588           <param name=
"display" type=
"bool" default=
"True"/> 
33591       <method name=
"base_OnDragLeft" type=
"" overloaded=
"no"> 
33592         <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
33594           <param name=
"draw" type=
"bool" default=
""/> 
33595           <param name=
"x" type=
"double" default=
""/> 
33596           <param name=
"y" type=
"double" default=
""/> 
33597           <param name=
"keys" type=
"int" default=
"0"/> 
33598           <param name=
"attachment" type=
"int" default=
"0"/> 
33601       <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no"> 
33602         <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
33604           <param name=
"x" type=
"double" default=
""/> 
33605           <param name=
"y" type=
"double" default=
""/> 
33606           <param name=
"keys" type=
"int" default=
"0"/> 
33607           <param name=
"attachment" type=
"int" default=
"0"/> 
33610       <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no"> 
33611         <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
33613           <param name=
"x" type=
"double" default=
""/> 
33614           <param name=
"y" type=
"double" default=
""/> 
33615           <param name=
"keys" type=
"int" default=
"0"/> 
33616           <param name=
"attachment" type=
"int" default=
"0"/> 
33619       <method name=
"base_OnDragRight" type=
"" overloaded=
"no"> 
33620         <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
33622           <param name=
"draw" type=
"bool" default=
""/> 
33623           <param name=
"x" type=
"double" default=
""/> 
33624           <param name=
"y" type=
"double" default=
""/> 
33625           <param name=
"keys" type=
"int" default=
"0"/> 
33626           <param name=
"attachment" type=
"int" default=
"0"/> 
33629       <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no"> 
33630         <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
33632           <param name=
"x" type=
"double" default=
""/> 
33633           <param name=
"y" type=
"double" default=
""/> 
33634           <param name=
"keys" type=
"int" default=
"0"/> 
33635           <param name=
"attachment" type=
"int" default=
"0"/> 
33638       <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no"> 
33639         <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
33641           <param name=
"x" type=
"double" default=
""/> 
33642           <param name=
"y" type=
"double" default=
""/> 
33643           <param name=
"keys" type=
"int" default=
"0"/> 
33644           <param name=
"attachment" type=
"int" default=
"0"/> 
33647       <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no"> 
33648         <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc> 
33650           <param name=
"dc" type=
"DC" default=
""/> 
33651           <param name=
"x" type=
"double" default=
""/> 
33652           <param name=
"y" type=
"double" default=
""/> 
33653           <param name=
"w" type=
"double" default=
""/> 
33654           <param name=
"h" type=
"double" default=
""/> 
33657       <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no"> 
33658         <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc> 
33660           <param name=
"dc" type=
"DC" default=
""/> 
33663       <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no"> 
33664         <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc> 
33666           <param name=
"dc" type=
"DC" default=
""/> 
33669       <method name=
"base_OnMoveLink" type=
"" overloaded=
"no"> 
33670         <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc> 
33672           <param name=
"dc" type=
"DC" default=
""/> 
33673           <param name=
"moveControlPoints" type=
"bool" default=
"True"/> 
33676       <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no"> 
33677         <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0, 
 
33678     int attachment=
0)
</autodoc> 
33680           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
33681           <param name=
"draw" type=
"bool" default=
""/> 
33682           <param name=
"x" type=
"double" default=
""/> 
33683           <param name=
"y" type=
"double" default=
""/> 
33684           <param name=
"keys" type=
"int" default=
"0"/> 
33685           <param name=
"attachment" type=
"int" default=
"0"/> 
33688       <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no"> 
33689         <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
33690     int attachment=
0)
</autodoc> 
33692           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
33693           <param name=
"x" type=
"double" default=
""/> 
33694           <param name=
"y" type=
"double" default=
""/> 
33695           <param name=
"keys" type=
"int" default=
"0"/> 
33696           <param name=
"attachment" type=
"int" default=
"0"/> 
33699       <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no"> 
33700         <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
33701     int attachment=
0)
</autodoc> 
33703           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
33704           <param name=
"x" type=
"double" default=
""/> 
33705           <param name=
"y" type=
"double" default=
""/> 
33706           <param name=
"keys" type=
"int" default=
"0"/> 
33707           <param name=
"attachment" type=
"int" default=
"0"/> 
33710       <method name=
"base_OnBeginSize" type=
"" overloaded=
"no"> 
33711         <autodoc>base_OnBeginSize(double w, double h)
</autodoc> 
33713           <param name=
"w" type=
"double" default=
""/> 
33714           <param name=
"h" type=
"double" default=
""/> 
33717       <method name=
"base_OnEndSize" type=
"" overloaded=
"no"> 
33718         <autodoc>base_OnEndSize(double w, double h)
</autodoc> 
33720           <param name=
"w" type=
"double" default=
""/> 
33721           <param name=
"h" type=
"double" default=
""/> 
33725     <class name=
"PyTextShape" oldname=
"wxPyTextShape" module=
"ogl"> 
33726       <baseclass name=
"PyRectangleShape"/> 
33727       <constructor name=
"PyTextShape" overloaded=
"no"> 
33728         <autodoc>__init__(double width=
0.0, double height=
0.0) -
> PyTextShape
</autodoc> 
33730           <param name=
"width" type=
"double" default=
"0.0"/> 
33731           <param name=
"height" type=
"double" default=
"0.0"/> 
33734       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
33735         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
33737           <param name=
"self" type=
"PyObject" default=
""/> 
33738           <param name=
"_class" type=
"PyObject" default=
""/> 
33741       <method name=
"base_OnDelete" type=
"" overloaded=
"no"> 
33742         <autodoc>base_OnDelete()
</autodoc> 
33744       <method name=
"base_OnDraw" type=
"" overloaded=
"no"> 
33745         <autodoc>base_OnDraw(DC dc)
</autodoc> 
33747           <param name=
"dc" type=
"DC" default=
""/> 
33750       <method name=
"base_OnDrawContents" type=
"" overloaded=
"no"> 
33751         <autodoc>base_OnDrawContents(DC dc)
</autodoc> 
33753           <param name=
"dc" type=
"DC" default=
""/> 
33756       <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no"> 
33757         <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc> 
33759           <param name=
"dc" type=
"DC" default=
""/> 
33760           <param name=
"erase" type=
"bool" default=
"FALSE"/> 
33763       <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no"> 
33764         <autodoc>base_OnMoveLinks(DC dc)
</autodoc> 
33766           <param name=
"dc" type=
"DC" default=
""/> 
33769       <method name=
"base_OnErase" type=
"" overloaded=
"no"> 
33770         <autodoc>base_OnErase(DC dc)
</autodoc> 
33772           <param name=
"dc" type=
"DC" default=
""/> 
33775       <method name=
"base_OnEraseContents" type=
"" overloaded=
"no"> 
33776         <autodoc>base_OnEraseContents(DC dc)
</autodoc> 
33778           <param name=
"dc" type=
"DC" default=
""/> 
33781       <method name=
"base_OnHighlight" type=
"" overloaded=
"no"> 
33782         <autodoc>base_OnHighlight(DC dc)
</autodoc> 
33784           <param name=
"dc" type=
"DC" default=
""/> 
33787       <method name=
"base_OnLeftClick" type=
"" overloaded=
"no"> 
33788         <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
33790           <param name=
"x" type=
"double" default=
""/> 
33791           <param name=
"y" type=
"double" default=
""/> 
33792           <param name=
"keys" type=
"int" default=
"0"/> 
33793           <param name=
"attachment" type=
"int" default=
"0"/> 
33796       <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no"> 
33797         <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
33799           <param name=
"x" type=
"double" default=
""/> 
33800           <param name=
"y" type=
"double" default=
""/> 
33801           <param name=
"keys" type=
"int" default=
"0"/> 
33802           <param name=
"attachment" type=
"int" default=
"0"/> 
33805       <method name=
"base_OnRightClick" type=
"" overloaded=
"no"> 
33806         <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
33808           <param name=
"x" type=
"double" default=
""/> 
33809           <param name=
"y" type=
"double" default=
""/> 
33810           <param name=
"keys" type=
"int" default=
"0"/> 
33811           <param name=
"attachment" type=
"int" default=
"0"/> 
33814       <method name=
"base_OnSize" type=
"" overloaded=
"no"> 
33815         <autodoc>base_OnSize(double x, double y)
</autodoc> 
33817           <param name=
"x" type=
"double" default=
""/> 
33818           <param name=
"y" type=
"double" default=
""/> 
33821       <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no"> 
33822         <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y, 
 
33823     bool display=True) -
> bool
</autodoc> 
33825           <param name=
"dc" type=
"DC" default=
""/> 
33826           <param name=
"x" type=
"double" default=
""/> 
33827           <param name=
"y" type=
"double" default=
""/> 
33828           <param name=
"old_x" type=
"double" default=
""/> 
33829           <param name=
"old_y" type=
"double" default=
""/> 
33830           <param name=
"display" type=
"bool" default=
"True"/> 
33833       <method name=
"base_OnMovePost" type=
"" overloaded=
"no"> 
33834         <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y, 
 
33835     bool display=True)
</autodoc> 
33837           <param name=
"dc" type=
"DC" default=
""/> 
33838           <param name=
"x" type=
"double" default=
""/> 
33839           <param name=
"y" type=
"double" default=
""/> 
33840           <param name=
"old_x" type=
"double" default=
""/> 
33841           <param name=
"old_y" type=
"double" default=
""/> 
33842           <param name=
"display" type=
"bool" default=
"True"/> 
33845       <method name=
"base_OnDragLeft" type=
"" overloaded=
"no"> 
33846         <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
33848           <param name=
"draw" type=
"bool" default=
""/> 
33849           <param name=
"x" type=
"double" default=
""/> 
33850           <param name=
"y" type=
"double" default=
""/> 
33851           <param name=
"keys" type=
"int" default=
"0"/> 
33852           <param name=
"attachment" type=
"int" default=
"0"/> 
33855       <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no"> 
33856         <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
33858           <param name=
"x" type=
"double" default=
""/> 
33859           <param name=
"y" type=
"double" default=
""/> 
33860           <param name=
"keys" type=
"int" default=
"0"/> 
33861           <param name=
"attachment" type=
"int" default=
"0"/> 
33864       <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no"> 
33865         <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
33867           <param name=
"x" type=
"double" default=
""/> 
33868           <param name=
"y" type=
"double" default=
""/> 
33869           <param name=
"keys" type=
"int" default=
"0"/> 
33870           <param name=
"attachment" type=
"int" default=
"0"/> 
33873       <method name=
"base_OnDragRight" type=
"" overloaded=
"no"> 
33874         <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
33876           <param name=
"draw" type=
"bool" default=
""/> 
33877           <param name=
"x" type=
"double" default=
""/> 
33878           <param name=
"y" type=
"double" default=
""/> 
33879           <param name=
"keys" type=
"int" default=
"0"/> 
33880           <param name=
"attachment" type=
"int" default=
"0"/> 
33883       <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no"> 
33884         <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
33886           <param name=
"x" type=
"double" default=
""/> 
33887           <param name=
"y" type=
"double" default=
""/> 
33888           <param name=
"keys" type=
"int" default=
"0"/> 
33889           <param name=
"attachment" type=
"int" default=
"0"/> 
33892       <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no"> 
33893         <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc> 
33895           <param name=
"x" type=
"double" default=
""/> 
33896           <param name=
"y" type=
"double" default=
""/> 
33897           <param name=
"keys" type=
"int" default=
"0"/> 
33898           <param name=
"attachment" type=
"int" default=
"0"/> 
33901       <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no"> 
33902         <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc> 
33904           <param name=
"dc" type=
"DC" default=
""/> 
33905           <param name=
"x" type=
"double" default=
""/> 
33906           <param name=
"y" type=
"double" default=
""/> 
33907           <param name=
"w" type=
"double" default=
""/> 
33908           <param name=
"h" type=
"double" default=
""/> 
33911       <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no"> 
33912         <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc> 
33914           <param name=
"dc" type=
"DC" default=
""/> 
33917       <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no"> 
33918         <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc> 
33920           <param name=
"dc" type=
"DC" default=
""/> 
33923       <method name=
"base_OnMoveLink" type=
"" overloaded=
"no"> 
33924         <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc> 
33926           <param name=
"dc" type=
"DC" default=
""/> 
33927           <param name=
"moveControlPoints" type=
"bool" default=
"True"/> 
33930       <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no"> 
33931         <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0, 
 
33932     int attachment=
0)
</autodoc> 
33934           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
33935           <param name=
"draw" type=
"bool" default=
""/> 
33936           <param name=
"x" type=
"double" default=
""/> 
33937           <param name=
"y" type=
"double" default=
""/> 
33938           <param name=
"keys" type=
"int" default=
"0"/> 
33939           <param name=
"attachment" type=
"int" default=
"0"/> 
33942       <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no"> 
33943         <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
33944     int attachment=
0)
</autodoc> 
33946           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
33947           <param name=
"x" type=
"double" default=
""/> 
33948           <param name=
"y" type=
"double" default=
""/> 
33949           <param name=
"keys" type=
"int" default=
"0"/> 
33950           <param name=
"attachment" type=
"int" default=
"0"/> 
33953       <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no"> 
33954         <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0, 
 
33955     int attachment=
0)
</autodoc> 
33957           <param name=
"pt" type=
"PyControlPoint" default=
""/> 
33958           <param name=
"x" type=
"double" default=
""/> 
33959           <param name=
"y" type=
"double" default=
""/> 
33960           <param name=
"keys" type=
"int" default=
"0"/> 
33961           <param name=
"attachment" type=
"int" default=
"0"/> 
33964       <method name=
"base_OnBeginSize" type=
"" overloaded=
"no"> 
33965         <autodoc>base_OnBeginSize(double w, double h)
</autodoc> 
33967           <param name=
"w" type=
"double" default=
""/> 
33968           <param name=
"h" type=
"double" default=
""/> 
33971       <method name=
"base_OnEndSize" type=
"" overloaded=
"no"> 
33972         <autodoc>base_OnEndSize(double w, double h)
</autodoc> 
33974           <param name=
"w" type=
"double" default=
""/> 
33975           <param name=
"h" type=
"double" default=
""/> 
33979     <class name=
"Diagram" oldname=
"wxDiagram" module=
"ogl"> 
33980       <baseclass name=
"Object"/> 
33981       <constructor name=
"Diagram" overloaded=
"no"> 
33982         <autodoc>__init__() -
> Diagram
</autodoc> 
33984       <method name=
"AddShape" type=
"" overloaded=
"no"> 
33985         <autodoc>AddShape(PyShape shape, PyShape addAfter=None)
</autodoc> 
33987           <param name=
"shape" type=
"PyShape" default=
""/> 
33988           <param name=
"addAfter" type=
"PyShape" default=
"NULL"/> 
33991       <method name=
"Clear" type=
"" overloaded=
"no"> 
33992         <autodoc>Clear(DC dc)
</autodoc> 
33994           <param name=
"dc" type=
"DC" default=
""/> 
33997       <method name=
"DeleteAllShapes" type=
"" overloaded=
"no"> 
33998         <autodoc>DeleteAllShapes()
</autodoc> 
34000       <method name=
"DrawOutline" type=
"" overloaded=
"no"> 
34001         <autodoc>DrawOutline(DC dc, double x1, double y1, double x2, double y2)
</autodoc> 
34003           <param name=
"dc" type=
"DC" default=
""/> 
34004           <param name=
"x1" type=
"double" default=
""/> 
34005           <param name=
"y1" type=
"double" default=
""/> 
34006           <param name=
"x2" type=
"double" default=
""/> 
34007           <param name=
"y2" type=
"double" default=
""/> 
34010       <method name=
"FindShape" type=
"PyShape" overloaded=
"no"> 
34011         <autodoc>FindShape(long id) -
> PyShape
</autodoc> 
34013           <param name=
"id" type=
"long" default=
""/> 
34016       <method name=
"GetCanvas" type=
"wxPyShapeCanvas" overloaded=
"no"> 
34017         <autodoc>GetCanvas() -
> PyShapeCanvas
</autodoc> 
34019       <method name=
"GetCount" type=
"int" overloaded=
"no"> 
34020         <autodoc>GetCount() -
> int
</autodoc> 
34022       <method name=
"GetGridSpacing" type=
"double" overloaded=
"no"> 
34023         <autodoc>GetGridSpacing() -
> double
</autodoc> 
34025       <method name=
"GetMouseTolerance" type=
"int" overloaded=
"no"> 
34026         <autodoc>GetMouseTolerance() -
> int
</autodoc> 
34028       <method name=
"GetShapeList" type=
"PyObject" overloaded=
"no"> 
34029         <autodoc>GetShapeList() -
> PyObject
</autodoc> 
34031       <method name=
"GetQuickEditMode" type=
"bool" overloaded=
"no"> 
34032         <autodoc>GetQuickEditMode() -
> bool
</autodoc> 
34034       <method name=
"GetSnapToGrid" type=
"bool" overloaded=
"no"> 
34035         <autodoc>GetSnapToGrid() -
> bool
</autodoc> 
34037       <method name=
"InsertShape" type=
"" overloaded=
"no"> 
34038         <autodoc>InsertShape(PyShape shape)
</autodoc> 
34040           <param name=
"shape" type=
"PyShape" default=
""/> 
34043       <method name=
"RecentreAll" type=
"" overloaded=
"no"> 
34044         <autodoc>RecentreAll(DC dc)
</autodoc> 
34046           <param name=
"dc" type=
"DC" default=
""/> 
34049       <method name=
"Redraw" type=
"" overloaded=
"no"> 
34050         <autodoc>Redraw(DC dc)
</autodoc> 
34052           <param name=
"dc" type=
"DC" default=
""/> 
34055       <method name=
"RemoveAllShapes" type=
"" overloaded=
"no"> 
34056         <autodoc>RemoveAllShapes()
</autodoc> 
34058       <method name=
"RemoveShape" type=
"" overloaded=
"no"> 
34059         <autodoc>RemoveShape(PyShape shape)
</autodoc> 
34061           <param name=
"shape" type=
"PyShape" default=
""/> 
34064       <method name=
"SetCanvas" type=
"" overloaded=
"no"> 
34065         <autodoc>SetCanvas(PyShapeCanvas canvas)
</autodoc> 
34067           <param name=
"canvas" type=
"wxPyShapeCanvas" default=
""/> 
34070       <method name=
"SetGridSpacing" type=
"" overloaded=
"no"> 
34071         <autodoc>SetGridSpacing(double spacing)
</autodoc> 
34073           <param name=
"spacing" type=
"double" default=
""/> 
34076       <method name=
"SetMouseTolerance" type=
"" overloaded=
"no"> 
34077         <autodoc>SetMouseTolerance(int tolerance)
</autodoc> 
34079           <param name=
"tolerance" type=
"int" default=
""/> 
34082       <method name=
"SetQuickEditMode" type=
"" overloaded=
"no"> 
34083         <autodoc>SetQuickEditMode(bool mode)
</autodoc> 
34085           <param name=
"mode" type=
"bool" default=
""/> 
34088       <method name=
"SetSnapToGrid" type=
"" overloaded=
"no"> 
34089         <autodoc>SetSnapToGrid(bool snap)
</autodoc> 
34091           <param name=
"snap" type=
"bool" default=
""/> 
34094       <method name=
"ShowAll" type=
"" overloaded=
"no"> 
34095         <autodoc>ShowAll(bool show)
</autodoc> 
34097           <param name=
"show" type=
"bool" default=
""/> 
34100       <method name=
"Snap" type=
"" overloaded=
"no"> 
34101         <autodoc>Snap(double INOUT, double INOUT)
</autodoc> 
34103           <param name=
"INOUT" type=
"double" default=
""/> 
34104           <param name=
"INOUT" type=
"double" default=
""/> 
34108     <class name=
"PyShapeCanvas" oldname=
"wxPyShapeCanvas" module=
"ogl"> 
34109       <baseclass name=
"ScrolledWindow"/> 
34110       <constructor name=
"PyShapeCanvas" overloaded=
"no"> 
34111         <autodoc>__init__(Window parent=None, int id=-
1, Point pos=DefaultPosition, 
 
34112     Size size=DefaultSize, long style=BORDER, 
 
34113     String name=wxPyShapeCanvasNameStr) -
> PyShapeCanvas
</autodoc> 
34115           <param name=
"parent" type=
"Window" default=
"NULL"/> 
34116           <param name=
"id" type=
"int" default=
"-1"/> 
34117           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
34118           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
34119           <param name=
"style" type=
"long" default=
"wxBORDER"/> 
34120           <param name=
"name" type=
"String" default=
"wxPyShapeCanvasNameStr"/> 
34123       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
34124         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
34126           <param name=
"self" type=
"PyObject" default=
""/> 
34127           <param name=
"_class" type=
"PyObject" default=
""/> 
34130       <method name=
"AddShape" type=
"" overloaded=
"no"> 
34131         <autodoc>AddShape(PyShape shape, PyShape addAfter=None)
</autodoc> 
34133           <param name=
"shape" type=
"PyShape" default=
""/> 
34134           <param name=
"addAfter" type=
"PyShape" default=
"NULL"/> 
34137       <method name=
"FindShape" type=
"PyShape" overloaded=
"no"> 
34138         <autodoc>FindShape(double x1, double y, int OUTPUT, wxClassInfo info=None, 
 
34139     PyShape notImage=None) -
> PyShape
</autodoc> 
34141           <param name=
"x1" type=
"double" default=
""/> 
34142           <param name=
"y" type=
"double" default=
""/> 
34143           <param name=
"OUTPUT" type=
"int" default=
""/> 
34144           <param name=
"info" type=
"wxClassInfo" default=
"NULL"/> 
34145           <param name=
"notImage" type=
"PyShape" default=
"NULL"/> 
34148       <method name=
"FindFirstSensitiveShape" type=
"PyShape" overloaded=
"no"> 
34149         <autodoc>FindFirstSensitiveShape(double x1, double y, int OUTPUT, int op) -
> PyShape
</autodoc> 
34151           <param name=
"x1" type=
"double" default=
""/> 
34152           <param name=
"y" type=
"double" default=
""/> 
34153           <param name=
"OUTPUT" type=
"int" default=
""/> 
34154           <param name=
"op" type=
"int" default=
""/> 
34157       <method name=
"GetDiagram" type=
"Diagram" overloaded=
"no"> 
34158         <autodoc>GetDiagram() -
> Diagram
</autodoc> 
34160       <method name=
"GetQuickEditMode" type=
"bool" overloaded=
"no"> 
34161         <autodoc>GetQuickEditMode() -
> bool
</autodoc> 
34163       <method name=
"InsertShape" type=
"" overloaded=
"no"> 
34164         <autodoc>InsertShape(PyShape shape)
</autodoc> 
34166           <param name=
"shape" type=
"PyShape" default=
""/> 
34169       <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no"> 
34170         <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0)
</autodoc> 
34172           <param name=
"x" type=
"double" default=
""/> 
34173           <param name=
"y" type=
"double" default=
""/> 
34174           <param name=
"keys" type=
"int" default=
"0"/> 
34177       <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no"> 
34178         <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0)
</autodoc> 
34180           <param name=
"x" type=
"double" default=
""/> 
34181           <param name=
"y" type=
"double" default=
""/> 
34182           <param name=
"keys" type=
"int" default=
"0"/> 
34185       <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no"> 
34186         <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0)
</autodoc> 
34188           <param name=
"x" type=
"double" default=
""/> 
34189           <param name=
"y" type=
"double" default=
""/> 
34190           <param name=
"keys" type=
"int" default=
"0"/> 
34193       <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no"> 
34194         <autodoc>base_OnEndDragRight(double x, double y, int keys=
0)
</autodoc> 
34196           <param name=
"x" type=
"double" default=
""/> 
34197           <param name=
"y" type=
"double" default=
""/> 
34198           <param name=
"keys" type=
"int" default=
"0"/> 
34201       <method name=
"base_OnDragLeft" type=
"" overloaded=
"no"> 
34202         <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0)
</autodoc> 
34204           <param name=
"draw" type=
"bool" default=
""/> 
34205           <param name=
"x" type=
"double" default=
""/> 
34206           <param name=
"y" type=
"double" default=
""/> 
34207           <param name=
"keys" type=
"int" default=
"0"/> 
34210       <method name=
"base_OnDragRight" type=
"" overloaded=
"no"> 
34211         <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0)
</autodoc> 
34213           <param name=
"draw" type=
"bool" default=
""/> 
34214           <param name=
"x" type=
"double" default=
""/> 
34215           <param name=
"y" type=
"double" default=
""/> 
34216           <param name=
"keys" type=
"int" default=
"0"/> 
34219       <method name=
"base_OnLeftClick" type=
"" overloaded=
"no"> 
34220         <autodoc>base_OnLeftClick(double x, double y, int keys=
0)
</autodoc> 
34222           <param name=
"x" type=
"double" default=
""/> 
34223           <param name=
"y" type=
"double" default=
""/> 
34224           <param name=
"keys" type=
"int" default=
"0"/> 
34227       <method name=
"base_OnRightClick" type=
"" overloaded=
"no"> 
34228         <autodoc>base_OnRightClick(double x, double y, int keys=
0)
</autodoc> 
34230           <param name=
"x" type=
"double" default=
""/> 
34231           <param name=
"y" type=
"double" default=
""/> 
34232           <param name=
"keys" type=
"int" default=
"0"/> 
34235       <method name=
"Redraw" type=
"" overloaded=
"no"> 
34236         <autodoc>Redraw(DC dc)
</autodoc> 
34238           <param name=
"dc" type=
"DC" default=
""/> 
34241       <method name=
"RemoveShape" type=
"" overloaded=
"no"> 
34242         <autodoc>RemoveShape(PyShape shape)
</autodoc> 
34244           <param name=
"shape" type=
"PyShape" default=
""/> 
34247       <method name=
"SetDiagram" type=
"" overloaded=
"no"> 
34248         <autodoc>SetDiagram(Diagram diagram)
</autodoc> 
34250           <param name=
"diagram" type=
"Diagram" default=
""/> 
34253       <method name=
"Snap" type=
"" overloaded=
"no"> 
34254         <autodoc>Snap(double INOUT, double INOUT)
</autodoc> 
34256           <param name=
"INOUT" type=
"double" default=
""/> 
34257           <param name=
"INOUT" type=
"double" default=
""/> 
34263 ShapeCanvas =       PyShapeCanvas
 
34264 ShapeEvtHandler =   PyShapeEvtHandler
 
34266 RectangleShape =    PyRectangleShape
 
34267 BitmapShape =       PyBitmapShape
 
34268 DrawnShape =        PyDrawnShape
 
34269 CompositeShape =    PyCompositeShape
 
34270 DividedShape =      PyDividedShape
 
34271 DivisionShape =     PyDivisionShape
 
34272 EllipseShape =      PyEllipseShape
 
34273 CircleShape =       PyCircleShape
 
34274 LineShape =         PyLineShape
 
34275 PolygonShape =      PyPolygonShape
 
34276 TextShape =         PyTextShape
 
34277 ControlPoint =      PyControlPoint
 
34279     <method name=
"OGLInitialize" oldname=
"wxOGLInitialize" type=
"" overloaded=
"no"> 
34280       <autodoc>OGLInitialize()
</autodoc> 
34282     <method name=
"OGLCleanUp" oldname=
"wxOGLCleanUp" type=
"" overloaded=
"no"> 
34283       <autodoc>OGLCleanUp()
</autodoc> 
34286   <module name=
"stc"> 
34287     <import name=
"core"/> 
34288     <import name=
"misc"/> 
34289     <pythoncode> wx = core 
</pythoncode> 
34290     <class name=
"StyledTextCtrl" oldname=
"wxStyledTextCtrl" module=
"stc"> 
34291       <baseclass name=
"Control"/> 
34292       <constructor name=
"StyledTextCtrl" overloaded=
"no"> 
34293         <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
34294     long style=
0, String name=STCNameStr) -
> StyledTextCtrl
</autodoc> 
34296           <param name=
"parent" type=
"Window" default=
""/> 
34297           <param name=
"id" type=
"int" default=
""/> 
34298           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
34299           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
34300           <param name=
"style" type=
"long" default=
"0"/> 
34301           <param name=
"name" type=
"String" default=
"wxPySTCNameStr"/> 
34304       <constructor name=
"PreStyledTextCtrl" overloaded=
"no"> 
34305         <autodoc>PreStyledTextCtrl() -
> StyledTextCtrl
</autodoc> 
34307       <method name=
"Create" type=
"" overloaded=
"no"> 
34308         <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
34309     long style=
0, String name=wxSTCNameStr)
</autodoc> 
34311           <param name=
"parent" type=
"Window" default=
""/> 
34312           <param name=
"id" type=
"int" default=
""/> 
34313           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
34314           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
34315           <param name=
"style" type=
"long" default=
"0"/> 
34316           <param name=
"name" type=
"String" default=
"wxSTCNameStr"/> 
34319       <method name=
"AddText" type=
"" overloaded=
"no"> 
34320         <autodoc>AddText(String text)
</autodoc> 
34322           <param name=
"text" type=
"String" default=
""/> 
34325       <method name=
"AddStyledText" type=
"" overloaded=
"no"> 
34326         <autodoc>AddStyledText(wxMemoryBuffer data)
</autodoc> 
34328           <param name=
"data" type=
"wxMemoryBuffer" default=
""/> 
34331       <method name=
"InsertText" type=
"" overloaded=
"no"> 
34332         <autodoc>InsertText(int pos, String text)
</autodoc> 
34334           <param name=
"pos" type=
"int" default=
""/> 
34335           <param name=
"text" type=
"String" default=
""/> 
34338       <method name=
"ClearAll" type=
"" overloaded=
"no"> 
34339         <autodoc>ClearAll()
</autodoc> 
34341       <method name=
"ClearDocumentStyle" type=
"" overloaded=
"no"> 
34342         <autodoc>ClearDocumentStyle()
</autodoc> 
34344       <method name=
"GetLength" type=
"int" overloaded=
"no"> 
34345         <autodoc>GetLength() -
> int
</autodoc> 
34347       <method name=
"GetCharAt" type=
"int" overloaded=
"no"> 
34348         <autodoc>GetCharAt(int pos) -
> int
</autodoc> 
34350           <param name=
"pos" type=
"int" default=
""/> 
34353       <method name=
"GetCurrentPos" type=
"int" overloaded=
"no"> 
34354         <autodoc>GetCurrentPos() -
> int
</autodoc> 
34356       <method name=
"GetAnchor" type=
"int" overloaded=
"no"> 
34357         <autodoc>GetAnchor() -
> int
</autodoc> 
34359       <method name=
"GetStyleAt" type=
"int" overloaded=
"no"> 
34360         <autodoc>GetStyleAt(int pos) -
> int
</autodoc> 
34362           <param name=
"pos" type=
"int" default=
""/> 
34365       <method name=
"Redo" type=
"" overloaded=
"no"> 
34366         <autodoc>Redo()
</autodoc> 
34368       <method name=
"SetUndoCollection" type=
"" overloaded=
"no"> 
34369         <autodoc>SetUndoCollection(bool collectUndo)
</autodoc> 
34371           <param name=
"collectUndo" type=
"bool" default=
""/> 
34374       <method name=
"SelectAll" type=
"" overloaded=
"no"> 
34375         <autodoc>SelectAll()
</autodoc> 
34377       <method name=
"SetSavePoint" type=
"" overloaded=
"no"> 
34378         <autodoc>SetSavePoint()
</autodoc> 
34380       <method name=
"GetStyledText" type=
"wxMemoryBuffer" overloaded=
"no"> 
34381         <autodoc>GetStyledText(int startPos, int endPos) -
> wxMemoryBuffer
</autodoc> 
34383           <param name=
"startPos" type=
"int" default=
""/> 
34384           <param name=
"endPos" type=
"int" default=
""/> 
34387       <method name=
"CanRedo" type=
"bool" overloaded=
"no"> 
34388         <autodoc>CanRedo() -
> bool
</autodoc> 
34390       <method name=
"MarkerLineFromHandle" type=
"int" overloaded=
"no"> 
34391         <autodoc>MarkerLineFromHandle(int handle) -
> int
</autodoc> 
34393           <param name=
"handle" type=
"int" default=
""/> 
34396       <method name=
"MarkerDeleteHandle" type=
"" overloaded=
"no"> 
34397         <autodoc>MarkerDeleteHandle(int handle)
</autodoc> 
34399           <param name=
"handle" type=
"int" default=
""/> 
34402       <method name=
"GetUndoCollection" type=
"bool" overloaded=
"no"> 
34403         <autodoc>GetUndoCollection() -
> bool
</autodoc> 
34405       <method name=
"GetViewWhiteSpace" type=
"int" overloaded=
"no"> 
34406         <autodoc>GetViewWhiteSpace() -
> int
</autodoc> 
34408       <method name=
"SetViewWhiteSpace" type=
"" overloaded=
"no"> 
34409         <autodoc>SetViewWhiteSpace(int viewWS)
</autodoc> 
34411           <param name=
"viewWS" type=
"int" default=
""/> 
34414       <method name=
"PositionFromPoint" type=
"int" overloaded=
"no"> 
34415         <autodoc>PositionFromPoint(Point pt) -
> int
</autodoc> 
34417           <param name=
"pt" type=
"Point" default=
""/> 
34420       <method name=
"PositionFromPointClose" type=
"int" overloaded=
"no"> 
34421         <autodoc>PositionFromPointClose(int x, int y) -
> int
</autodoc> 
34423           <param name=
"x" type=
"int" default=
""/> 
34424           <param name=
"y" type=
"int" default=
""/> 
34427       <method name=
"GotoLine" type=
"" overloaded=
"no"> 
34428         <autodoc>GotoLine(int line)
</autodoc> 
34430           <param name=
"line" type=
"int" default=
""/> 
34433       <method name=
"GotoPos" type=
"" overloaded=
"no"> 
34434         <autodoc>GotoPos(int pos)
</autodoc> 
34436           <param name=
"pos" type=
"int" default=
""/> 
34439       <method name=
"SetAnchor" type=
"" overloaded=
"no"> 
34440         <autodoc>SetAnchor(int posAnchor)
</autodoc> 
34442           <param name=
"posAnchor" type=
"int" default=
""/> 
34445       <method name=
"GetCurLine" type=
"String" overloaded=
"no"> 
34446         <autodoc>GetCurLine(int OUTPUT) -
> String
</autodoc> 
34448           <param name=
"OUTPUT" type=
"int" default=
""/> 
34451       <method name=
"GetEndStyled" type=
"int" overloaded=
"no"> 
34452         <autodoc>GetEndStyled() -
> int
</autodoc> 
34454       <method name=
"ConvertEOLs" type=
"" overloaded=
"no"> 
34455         <autodoc>ConvertEOLs(int eolMode)
</autodoc> 
34457           <param name=
"eolMode" type=
"int" default=
""/> 
34460       <method name=
"GetEOLMode" type=
"int" overloaded=
"no"> 
34461         <autodoc>GetEOLMode() -
> int
</autodoc> 
34463       <method name=
"SetEOLMode" type=
"" overloaded=
"no"> 
34464         <autodoc>SetEOLMode(int eolMode)
</autodoc> 
34466           <param name=
"eolMode" type=
"int" default=
""/> 
34469       <method name=
"StartStyling" type=
"" overloaded=
"no"> 
34470         <autodoc>StartStyling(int pos, int mask)
</autodoc> 
34472           <param name=
"pos" type=
"int" default=
""/> 
34473           <param name=
"mask" type=
"int" default=
""/> 
34476       <method name=
"SetStyling" type=
"" overloaded=
"no"> 
34477         <autodoc>SetStyling(int length, int style)
</autodoc> 
34479           <param name=
"length" type=
"int" default=
""/> 
34480           <param name=
"style" type=
"int" default=
""/> 
34483       <method name=
"GetBufferedDraw" type=
"bool" overloaded=
"no"> 
34484         <autodoc>GetBufferedDraw() -
> bool
</autodoc> 
34486       <method name=
"SetBufferedDraw" type=
"" overloaded=
"no"> 
34487         <autodoc>SetBufferedDraw(bool buffered)
</autodoc> 
34489           <param name=
"buffered" type=
"bool" default=
""/> 
34492       <method name=
"SetTabWidth" type=
"" overloaded=
"no"> 
34493         <autodoc>SetTabWidth(int tabWidth)
</autodoc> 
34495           <param name=
"tabWidth" type=
"int" default=
""/> 
34498       <method name=
"GetTabWidth" type=
"int" overloaded=
"no"> 
34499         <autodoc>GetTabWidth() -
> int
</autodoc> 
34501       <method name=
"SetCodePage" type=
"" overloaded=
"no"> 
34502         <autodoc>SetCodePage(int codePage)
</autodoc> 
34504           <param name=
"codePage" type=
"int" default=
""/> 
34507       <method name=
"MarkerDefine" type=
"" overloaded=
"no"> 
34508         <autodoc>MarkerDefine(int markerNumber, int markerSymbol, Colour foreground=wxNullColour, 
 
34509     Colour background=wxNullColour)
</autodoc> 
34511           <param name=
"markerNumber" type=
"int" default=
""/> 
34512           <param name=
"markerSymbol" type=
"int" default=
""/> 
34513           <param name=
"foreground" type=
"Colour" default=
"wxNullColour"/> 
34514           <param name=
"background" type=
"Colour" default=
"wxNullColour"/> 
34517       <method name=
"MarkerSetForeground" type=
"" overloaded=
"no"> 
34518         <autodoc>MarkerSetForeground(int markerNumber, Colour fore)
</autodoc> 
34520           <param name=
"markerNumber" type=
"int" default=
""/> 
34521           <param name=
"fore" type=
"Colour" default=
""/> 
34524       <method name=
"MarkerSetBackground" type=
"" overloaded=
"no"> 
34525         <autodoc>MarkerSetBackground(int markerNumber, Colour back)
</autodoc> 
34527           <param name=
"markerNumber" type=
"int" default=
""/> 
34528           <param name=
"back" type=
"Colour" default=
""/> 
34531       <method name=
"MarkerAdd" type=
"int" overloaded=
"no"> 
34532         <autodoc>MarkerAdd(int line, int markerNumber) -
> int
</autodoc> 
34534           <param name=
"line" type=
"int" default=
""/> 
34535           <param name=
"markerNumber" type=
"int" default=
""/> 
34538       <method name=
"MarkerDelete" type=
"" overloaded=
"no"> 
34539         <autodoc>MarkerDelete(int line, int markerNumber)
</autodoc> 
34541           <param name=
"line" type=
"int" default=
""/> 
34542           <param name=
"markerNumber" type=
"int" default=
""/> 
34545       <method name=
"MarkerDeleteAll" type=
"" overloaded=
"no"> 
34546         <autodoc>MarkerDeleteAll(int markerNumber)
</autodoc> 
34548           <param name=
"markerNumber" type=
"int" default=
""/> 
34551       <method name=
"MarkerGet" type=
"int" overloaded=
"no"> 
34552         <autodoc>MarkerGet(int line) -
> int
</autodoc> 
34554           <param name=
"line" type=
"int" default=
""/> 
34557       <method name=
"MarkerNext" type=
"int" overloaded=
"no"> 
34558         <autodoc>MarkerNext(int lineStart, int markerMask) -
> int
</autodoc> 
34560           <param name=
"lineStart" type=
"int" default=
""/> 
34561           <param name=
"markerMask" type=
"int" default=
""/> 
34564       <method name=
"MarkerPrevious" type=
"int" overloaded=
"no"> 
34565         <autodoc>MarkerPrevious(int lineStart, int markerMask) -
> int
</autodoc> 
34567           <param name=
"lineStart" type=
"int" default=
""/> 
34568           <param name=
"markerMask" type=
"int" default=
""/> 
34571       <method name=
"MarkerDefineBitmap" type=
"" overloaded=
"no"> 
34572         <autodoc>MarkerDefineBitmap(int markerNumber, Bitmap bmp)
</autodoc> 
34574           <param name=
"markerNumber" type=
"int" default=
""/> 
34575           <param name=
"bmp" type=
"Bitmap" default=
""/> 
34578       <method name=
"SetMarginType" type=
"" overloaded=
"no"> 
34579         <autodoc>SetMarginType(int margin, int marginType)
</autodoc> 
34581           <param name=
"margin" type=
"int" default=
""/> 
34582           <param name=
"marginType" type=
"int" default=
""/> 
34585       <method name=
"GetMarginType" type=
"int" overloaded=
"no"> 
34586         <autodoc>GetMarginType(int margin) -
> int
</autodoc> 
34588           <param name=
"margin" type=
"int" default=
""/> 
34591       <method name=
"SetMarginWidth" type=
"" overloaded=
"no"> 
34592         <autodoc>SetMarginWidth(int margin, int pixelWidth)
</autodoc> 
34594           <param name=
"margin" type=
"int" default=
""/> 
34595           <param name=
"pixelWidth" type=
"int" default=
""/> 
34598       <method name=
"GetMarginWidth" type=
"int" overloaded=
"no"> 
34599         <autodoc>GetMarginWidth(int margin) -
> int
</autodoc> 
34601           <param name=
"margin" type=
"int" default=
""/> 
34604       <method name=
"SetMarginMask" type=
"" overloaded=
"no"> 
34605         <autodoc>SetMarginMask(int margin, int mask)
</autodoc> 
34607           <param name=
"margin" type=
"int" default=
""/> 
34608           <param name=
"mask" type=
"int" default=
""/> 
34611       <method name=
"GetMarginMask" type=
"int" overloaded=
"no"> 
34612         <autodoc>GetMarginMask(int margin) -
> int
</autodoc> 
34614           <param name=
"margin" type=
"int" default=
""/> 
34617       <method name=
"SetMarginSensitive" type=
"" overloaded=
"no"> 
34618         <autodoc>SetMarginSensitive(int margin, bool sensitive)
</autodoc> 
34620           <param name=
"margin" type=
"int" default=
""/> 
34621           <param name=
"sensitive" type=
"bool" default=
""/> 
34624       <method name=
"GetMarginSensitive" type=
"bool" overloaded=
"no"> 
34625         <autodoc>GetMarginSensitive(int margin) -
> bool
</autodoc> 
34627           <param name=
"margin" type=
"int" default=
""/> 
34630       <method name=
"StyleClearAll" type=
"" overloaded=
"no"> 
34631         <autodoc>StyleClearAll()
</autodoc> 
34633       <method name=
"StyleSetForeground" type=
"" overloaded=
"no"> 
34634         <autodoc>StyleSetForeground(int style, Colour fore)
</autodoc> 
34636           <param name=
"style" type=
"int" default=
""/> 
34637           <param name=
"fore" type=
"Colour" default=
""/> 
34640       <method name=
"StyleSetBackground" type=
"" overloaded=
"no"> 
34641         <autodoc>StyleSetBackground(int style, Colour back)
</autodoc> 
34643           <param name=
"style" type=
"int" default=
""/> 
34644           <param name=
"back" type=
"Colour" default=
""/> 
34647       <method name=
"StyleSetBold" type=
"" overloaded=
"no"> 
34648         <autodoc>StyleSetBold(int style, bool bold)
</autodoc> 
34650           <param name=
"style" type=
"int" default=
""/> 
34651           <param name=
"bold" type=
"bool" default=
""/> 
34654       <method name=
"StyleSetItalic" type=
"" overloaded=
"no"> 
34655         <autodoc>StyleSetItalic(int style, bool italic)
</autodoc> 
34657           <param name=
"style" type=
"int" default=
""/> 
34658           <param name=
"italic" type=
"bool" default=
""/> 
34661       <method name=
"StyleSetSize" type=
"" overloaded=
"no"> 
34662         <autodoc>StyleSetSize(int style, int sizePoints)
</autodoc> 
34664           <param name=
"style" type=
"int" default=
""/> 
34665           <param name=
"sizePoints" type=
"int" default=
""/> 
34668       <method name=
"StyleSetFaceName" type=
"" overloaded=
"no"> 
34669         <autodoc>StyleSetFaceName(int style, String fontName)
</autodoc> 
34671           <param name=
"style" type=
"int" default=
""/> 
34672           <param name=
"fontName" type=
"String" default=
""/> 
34675       <method name=
"StyleSetEOLFilled" type=
"" overloaded=
"no"> 
34676         <autodoc>StyleSetEOLFilled(int style, bool filled)
</autodoc> 
34678           <param name=
"style" type=
"int" default=
""/> 
34679           <param name=
"filled" type=
"bool" default=
""/> 
34682       <method name=
"StyleResetDefault" type=
"" overloaded=
"no"> 
34683         <autodoc>StyleResetDefault()
</autodoc> 
34685       <method name=
"StyleSetUnderline" type=
"" overloaded=
"no"> 
34686         <autodoc>StyleSetUnderline(int style, bool underline)
</autodoc> 
34688           <param name=
"style" type=
"int" default=
""/> 
34689           <param name=
"underline" type=
"bool" default=
""/> 
34692       <method name=
"StyleSetCase" type=
"" overloaded=
"no"> 
34693         <autodoc>StyleSetCase(int style, int caseForce)
</autodoc> 
34695           <param name=
"style" type=
"int" default=
""/> 
34696           <param name=
"caseForce" type=
"int" default=
""/> 
34699       <method name=
"StyleSetCharacterSet" type=
"" overloaded=
"no"> 
34700         <autodoc>StyleSetCharacterSet(int style, int characterSet)
</autodoc> 
34702           <param name=
"style" type=
"int" default=
""/> 
34703           <param name=
"characterSet" type=
"int" default=
""/> 
34706       <method name=
"StyleSetHotSpot" type=
"" overloaded=
"no"> 
34707         <autodoc>StyleSetHotSpot(int style, bool hotspot)
</autodoc> 
34709           <param name=
"style" type=
"int" default=
""/> 
34710           <param name=
"hotspot" type=
"bool" default=
""/> 
34713       <method name=
"SetSelForeground" type=
"" overloaded=
"no"> 
34714         <autodoc>SetSelForeground(bool useSetting, Colour fore)
</autodoc> 
34716           <param name=
"useSetting" type=
"bool" default=
""/> 
34717           <param name=
"fore" type=
"Colour" default=
""/> 
34720       <method name=
"SetSelBackground" type=
"" overloaded=
"no"> 
34721         <autodoc>SetSelBackground(bool useSetting, Colour back)
</autodoc> 
34723           <param name=
"useSetting" type=
"bool" default=
""/> 
34724           <param name=
"back" type=
"Colour" default=
""/> 
34727       <method name=
"SetCaretForeground" type=
"" overloaded=
"no"> 
34728         <autodoc>SetCaretForeground(Colour fore)
</autodoc> 
34730           <param name=
"fore" type=
"Colour" default=
""/> 
34733       <method name=
"CmdKeyAssign" type=
"" overloaded=
"no"> 
34734         <autodoc>CmdKeyAssign(int key, int modifiers, int cmd)
</autodoc> 
34736           <param name=
"key" type=
"int" default=
""/> 
34737           <param name=
"modifiers" type=
"int" default=
""/> 
34738           <param name=
"cmd" type=
"int" default=
""/> 
34741       <method name=
"CmdKeyClear" type=
"" overloaded=
"no"> 
34742         <autodoc>CmdKeyClear(int key, int modifiers)
</autodoc> 
34744           <param name=
"key" type=
"int" default=
""/> 
34745           <param name=
"modifiers" type=
"int" default=
""/> 
34748       <method name=
"CmdKeyClearAll" type=
"" overloaded=
"no"> 
34749         <autodoc>CmdKeyClearAll()
</autodoc> 
34751       <method name=
"SetStyleBytes" type=
"" overloaded=
"no"> 
34752         <autodoc>SetStyleBytes(int length, char styleBytes)
</autodoc> 
34754           <param name=
"length" type=
"int" default=
""/> 
34755           <param name=
"styleBytes" type=
"char" default=
""/> 
34758       <method name=
"StyleSetVisible" type=
"" overloaded=
"no"> 
34759         <autodoc>StyleSetVisible(int style, bool visible)
</autodoc> 
34761           <param name=
"style" type=
"int" default=
""/> 
34762           <param name=
"visible" type=
"bool" default=
""/> 
34765       <method name=
"GetCaretPeriod" type=
"int" overloaded=
"no"> 
34766         <autodoc>GetCaretPeriod() -
> int
</autodoc> 
34768       <method name=
"SetCaretPeriod" type=
"" overloaded=
"no"> 
34769         <autodoc>SetCaretPeriod(int periodMilliseconds)
</autodoc> 
34771           <param name=
"periodMilliseconds" type=
"int" default=
""/> 
34774       <method name=
"SetWordChars" type=
"" overloaded=
"no"> 
34775         <autodoc>SetWordChars(String characters)
</autodoc> 
34777           <param name=
"characters" type=
"String" default=
""/> 
34780       <method name=
"BeginUndoAction" type=
"" overloaded=
"no"> 
34781         <autodoc>BeginUndoAction()
</autodoc> 
34783       <method name=
"EndUndoAction" type=
"" overloaded=
"no"> 
34784         <autodoc>EndUndoAction()
</autodoc> 
34786       <method name=
"IndicatorSetStyle" type=
"" overloaded=
"no"> 
34787         <autodoc>IndicatorSetStyle(int indic, int style)
</autodoc> 
34789           <param name=
"indic" type=
"int" default=
""/> 
34790           <param name=
"style" type=
"int" default=
""/> 
34793       <method name=
"IndicatorGetStyle" type=
"int" overloaded=
"no"> 
34794         <autodoc>IndicatorGetStyle(int indic) -
> int
</autodoc> 
34796           <param name=
"indic" type=
"int" default=
""/> 
34799       <method name=
"IndicatorSetForeground" type=
"" overloaded=
"no"> 
34800         <autodoc>IndicatorSetForeground(int indic, Colour fore)
</autodoc> 
34802           <param name=
"indic" type=
"int" default=
""/> 
34803           <param name=
"fore" type=
"Colour" default=
""/> 
34806       <method name=
"IndicatorGetForeground" type=
"Colour" overloaded=
"no"> 
34807         <autodoc>IndicatorGetForeground(int indic) -
> Colour
</autodoc> 
34809           <param name=
"indic" type=
"int" default=
""/> 
34812       <method name=
"SetWhitespaceForeground" type=
"" overloaded=
"no"> 
34813         <autodoc>SetWhitespaceForeground(bool useSetting, Colour fore)
</autodoc> 
34815           <param name=
"useSetting" type=
"bool" default=
""/> 
34816           <param name=
"fore" type=
"Colour" default=
""/> 
34819       <method name=
"SetWhitespaceBackground" type=
"" overloaded=
"no"> 
34820         <autodoc>SetWhitespaceBackground(bool useSetting, Colour back)
</autodoc> 
34822           <param name=
"useSetting" type=
"bool" default=
""/> 
34823           <param name=
"back" type=
"Colour" default=
""/> 
34826       <method name=
"SetStyleBits" type=
"" overloaded=
"no"> 
34827         <autodoc>SetStyleBits(int bits)
</autodoc> 
34829           <param name=
"bits" type=
"int" default=
""/> 
34832       <method name=
"GetStyleBits" type=
"int" overloaded=
"no"> 
34833         <autodoc>GetStyleBits() -
> int
</autodoc> 
34835       <method name=
"SetLineState" type=
"" overloaded=
"no"> 
34836         <autodoc>SetLineState(int line, int state)
</autodoc> 
34838           <param name=
"line" type=
"int" default=
""/> 
34839           <param name=
"state" type=
"int" default=
""/> 
34842       <method name=
"GetLineState" type=
"int" overloaded=
"no"> 
34843         <autodoc>GetLineState(int line) -
> int
</autodoc> 
34845           <param name=
"line" type=
"int" default=
""/> 
34848       <method name=
"GetMaxLineState" type=
"int" overloaded=
"no"> 
34849         <autodoc>GetMaxLineState() -
> int
</autodoc> 
34851       <method name=
"GetCaretLineVisible" type=
"bool" overloaded=
"no"> 
34852         <autodoc>GetCaretLineVisible() -
> bool
</autodoc> 
34854       <method name=
"SetCaretLineVisible" type=
"" overloaded=
"no"> 
34855         <autodoc>SetCaretLineVisible(bool show)
</autodoc> 
34857           <param name=
"show" type=
"bool" default=
""/> 
34860       <method name=
"GetCaretLineBack" type=
"Colour" overloaded=
"no"> 
34861         <autodoc>GetCaretLineBack() -
> Colour
</autodoc> 
34863       <method name=
"SetCaretLineBack" type=
"" overloaded=
"no"> 
34864         <autodoc>SetCaretLineBack(Colour back)
</autodoc> 
34866           <param name=
"back" type=
"Colour" default=
""/> 
34869       <method name=
"StyleSetChangeable" type=
"" overloaded=
"no"> 
34870         <autodoc>StyleSetChangeable(int style, bool changeable)
</autodoc> 
34872           <param name=
"style" type=
"int" default=
""/> 
34873           <param name=
"changeable" type=
"bool" default=
""/> 
34876       <method name=
"AutoCompShow" type=
"" overloaded=
"no"> 
34877         <autodoc>AutoCompShow(int lenEntered, String itemList)
</autodoc> 
34879           <param name=
"lenEntered" type=
"int" default=
""/> 
34880           <param name=
"itemList" type=
"String" default=
""/> 
34883       <method name=
"AutoCompCancel" type=
"" overloaded=
"no"> 
34884         <autodoc>AutoCompCancel()
</autodoc> 
34886       <method name=
"AutoCompActive" type=
"bool" overloaded=
"no"> 
34887         <autodoc>AutoCompActive() -
> bool
</autodoc> 
34889       <method name=
"AutoCompPosStart" type=
"int" overloaded=
"no"> 
34890         <autodoc>AutoCompPosStart() -
> int
</autodoc> 
34892       <method name=
"AutoCompComplete" type=
"" overloaded=
"no"> 
34893         <autodoc>AutoCompComplete()
</autodoc> 
34895       <method name=
"AutoCompStops" type=
"" overloaded=
"no"> 
34896         <autodoc>AutoCompStops(String characterSet)
</autodoc> 
34898           <param name=
"characterSet" type=
"String" default=
""/> 
34901       <method name=
"AutoCompSetSeparator" type=
"" overloaded=
"no"> 
34902         <autodoc>AutoCompSetSeparator(int separatorCharacter)
</autodoc> 
34904           <param name=
"separatorCharacter" type=
"int" default=
""/> 
34907       <method name=
"AutoCompGetSeparator" type=
"int" overloaded=
"no"> 
34908         <autodoc>AutoCompGetSeparator() -
> int
</autodoc> 
34910       <method name=
"AutoCompSelect" type=
"" overloaded=
"no"> 
34911         <autodoc>AutoCompSelect(String text)
</autodoc> 
34913           <param name=
"text" type=
"String" default=
""/> 
34916       <method name=
"AutoCompSetCancelAtStart" type=
"" overloaded=
"no"> 
34917         <autodoc>AutoCompSetCancelAtStart(bool cancel)
</autodoc> 
34919           <param name=
"cancel" type=
"bool" default=
""/> 
34922       <method name=
"AutoCompGetCancelAtStart" type=
"bool" overloaded=
"no"> 
34923         <autodoc>AutoCompGetCancelAtStart() -
> bool
</autodoc> 
34925       <method name=
"AutoCompSetFillUps" type=
"" overloaded=
"no"> 
34926         <autodoc>AutoCompSetFillUps(String characterSet)
</autodoc> 
34928           <param name=
"characterSet" type=
"String" default=
""/> 
34931       <method name=
"AutoCompSetChooseSingle" type=
"" overloaded=
"no"> 
34932         <autodoc>AutoCompSetChooseSingle(bool chooseSingle)
</autodoc> 
34934           <param name=
"chooseSingle" type=
"bool" default=
""/> 
34937       <method name=
"AutoCompGetChooseSingle" type=
"bool" overloaded=
"no"> 
34938         <autodoc>AutoCompGetChooseSingle() -
> bool
</autodoc> 
34940       <method name=
"AutoCompSetIgnoreCase" type=
"" overloaded=
"no"> 
34941         <autodoc>AutoCompSetIgnoreCase(bool ignoreCase)
</autodoc> 
34943           <param name=
"ignoreCase" type=
"bool" default=
""/> 
34946       <method name=
"AutoCompGetIgnoreCase" type=
"bool" overloaded=
"no"> 
34947         <autodoc>AutoCompGetIgnoreCase() -
> bool
</autodoc> 
34949       <method name=
"UserListShow" type=
"" overloaded=
"no"> 
34950         <autodoc>UserListShow(int listType, String itemList)
</autodoc> 
34952           <param name=
"listType" type=
"int" default=
""/> 
34953           <param name=
"itemList" type=
"String" default=
""/> 
34956       <method name=
"AutoCompSetAutoHide" type=
"" overloaded=
"no"> 
34957         <autodoc>AutoCompSetAutoHide(bool autoHide)
</autodoc> 
34959           <param name=
"autoHide" type=
"bool" default=
""/> 
34962       <method name=
"AutoCompGetAutoHide" type=
"bool" overloaded=
"no"> 
34963         <autodoc>AutoCompGetAutoHide() -
> bool
</autodoc> 
34965       <method name=
"AutoCompSetDropRestOfWord" type=
"" overloaded=
"no"> 
34966         <autodoc>AutoCompSetDropRestOfWord(bool dropRestOfWord)
</autodoc> 
34968           <param name=
"dropRestOfWord" type=
"bool" default=
""/> 
34971       <method name=
"AutoCompGetDropRestOfWord" type=
"bool" overloaded=
"no"> 
34972         <autodoc>AutoCompGetDropRestOfWord() -
> bool
</autodoc> 
34974       <method name=
"RegisterImage" type=
"" overloaded=
"no"> 
34975         <autodoc>RegisterImage(int type, Bitmap bmp)
</autodoc> 
34977           <param name=
"type" type=
"int" default=
""/> 
34978           <param name=
"bmp" type=
"Bitmap" default=
""/> 
34981       <method name=
"ClearRegisteredImages" type=
"" overloaded=
"no"> 
34982         <autodoc>ClearRegisteredImages()
</autodoc> 
34984       <method name=
"AutoCompGetTypeSeparator" type=
"int" overloaded=
"no"> 
34985         <autodoc>AutoCompGetTypeSeparator() -
> int
</autodoc> 
34987       <method name=
"AutoCompSetTypeSeparator" type=
"" overloaded=
"no"> 
34988         <autodoc>AutoCompSetTypeSeparator(int separatorCharacter)
</autodoc> 
34990           <param name=
"separatorCharacter" type=
"int" default=
""/> 
34993       <method name=
"SetIndent" type=
"" overloaded=
"no"> 
34994         <autodoc>SetIndent(int indentSize)
</autodoc> 
34996           <param name=
"indentSize" type=
"int" default=
""/> 
34999       <method name=
"GetIndent" type=
"int" overloaded=
"no"> 
35000         <autodoc>GetIndent() -
> int
</autodoc> 
35002       <method name=
"SetUseTabs" type=
"" overloaded=
"no"> 
35003         <autodoc>SetUseTabs(bool useTabs)
</autodoc> 
35005           <param name=
"useTabs" type=
"bool" default=
""/> 
35008       <method name=
"GetUseTabs" type=
"bool" overloaded=
"no"> 
35009         <autodoc>GetUseTabs() -
> bool
</autodoc> 
35011       <method name=
"SetLineIndentation" type=
"" overloaded=
"no"> 
35012         <autodoc>SetLineIndentation(int line, int indentSize)
</autodoc> 
35014           <param name=
"line" type=
"int" default=
""/> 
35015           <param name=
"indentSize" type=
"int" default=
""/> 
35018       <method name=
"GetLineIndentation" type=
"int" overloaded=
"no"> 
35019         <autodoc>GetLineIndentation(int line) -
> int
</autodoc> 
35021           <param name=
"line" type=
"int" default=
""/> 
35024       <method name=
"GetLineIndentPosition" type=
"int" overloaded=
"no"> 
35025         <autodoc>GetLineIndentPosition(int line) -
> int
</autodoc> 
35027           <param name=
"line" type=
"int" default=
""/> 
35030       <method name=
"GetColumn" type=
"int" overloaded=
"no"> 
35031         <autodoc>GetColumn(int pos) -
> int
</autodoc> 
35033           <param name=
"pos" type=
"int" default=
""/> 
35036       <method name=
"SetUseHorizontalScrollBar" type=
"" overloaded=
"no"> 
35037         <autodoc>SetUseHorizontalScrollBar(bool show)
</autodoc> 
35039           <param name=
"show" type=
"bool" default=
""/> 
35042       <method name=
"GetUseHorizontalScrollBar" type=
"bool" overloaded=
"no"> 
35043         <autodoc>GetUseHorizontalScrollBar() -
> bool
</autodoc> 
35045       <method name=
"SetIndentationGuides" type=
"" overloaded=
"no"> 
35046         <autodoc>SetIndentationGuides(bool show)
</autodoc> 
35048           <param name=
"show" type=
"bool" default=
""/> 
35051       <method name=
"GetIndentationGuides" type=
"bool" overloaded=
"no"> 
35052         <autodoc>GetIndentationGuides() -
> bool
</autodoc> 
35054       <method name=
"SetHighlightGuide" type=
"" overloaded=
"no"> 
35055         <autodoc>SetHighlightGuide(int column)
</autodoc> 
35057           <param name=
"column" type=
"int" default=
""/> 
35060       <method name=
"GetHighlightGuide" type=
"int" overloaded=
"no"> 
35061         <autodoc>GetHighlightGuide() -
> int
</autodoc> 
35063       <method name=
"GetLineEndPosition" type=
"int" overloaded=
"no"> 
35064         <autodoc>GetLineEndPosition(int line) -
> int
</autodoc> 
35066           <param name=
"line" type=
"int" default=
""/> 
35069       <method name=
"GetCodePage" type=
"int" overloaded=
"no"> 
35070         <autodoc>GetCodePage() -
> int
</autodoc> 
35072       <method name=
"GetCaretForeground" type=
"Colour" overloaded=
"no"> 
35073         <autodoc>GetCaretForeground() -
> Colour
</autodoc> 
35075       <method name=
"GetReadOnly" type=
"bool" overloaded=
"no"> 
35076         <autodoc>GetReadOnly() -
> bool
</autodoc> 
35078       <method name=
"SetCurrentPos" type=
"" overloaded=
"no"> 
35079         <autodoc>SetCurrentPos(int pos)
</autodoc> 
35081           <param name=
"pos" type=
"int" default=
""/> 
35084       <method name=
"SetSelectionStart" type=
"" overloaded=
"no"> 
35085         <autodoc>SetSelectionStart(int pos)
</autodoc> 
35087           <param name=
"pos" type=
"int" default=
""/> 
35090       <method name=
"GetSelectionStart" type=
"int" overloaded=
"no"> 
35091         <autodoc>GetSelectionStart() -
> int
</autodoc> 
35093       <method name=
"SetSelectionEnd" type=
"" overloaded=
"no"> 
35094         <autodoc>SetSelectionEnd(int pos)
</autodoc> 
35096           <param name=
"pos" type=
"int" default=
""/> 
35099       <method name=
"GetSelectionEnd" type=
"int" overloaded=
"no"> 
35100         <autodoc>GetSelectionEnd() -
> int
</autodoc> 
35102       <method name=
"SetPrintMagnification" type=
"" overloaded=
"no"> 
35103         <autodoc>SetPrintMagnification(int magnification)
</autodoc> 
35105           <param name=
"magnification" type=
"int" default=
""/> 
35108       <method name=
"GetPrintMagnification" type=
"int" overloaded=
"no"> 
35109         <autodoc>GetPrintMagnification() -
> int
</autodoc> 
35111       <method name=
"SetPrintColourMode" type=
"" overloaded=
"no"> 
35112         <autodoc>SetPrintColourMode(int mode)
</autodoc> 
35114           <param name=
"mode" type=
"int" default=
""/> 
35117       <method name=
"GetPrintColourMode" type=
"int" overloaded=
"no"> 
35118         <autodoc>GetPrintColourMode() -
> int
</autodoc> 
35120       <method name=
"FindText" type=
"int" overloaded=
"no"> 
35121         <autodoc>FindText(int minPos, int maxPos, String text, int flags=
0) -
> int
</autodoc> 
35123           <param name=
"minPos" type=
"int" default=
""/> 
35124           <param name=
"maxPos" type=
"int" default=
""/> 
35125           <param name=
"text" type=
"String" default=
""/> 
35126           <param name=
"flags" type=
"int" default=
"0"/> 
35129       <method name=
"FormatRange" type=
"int" overloaded=
"no"> 
35130         <autodoc>FormatRange(bool doDraw, int startPos, int endPos, DC draw, DC target, 
 
35131     Rect renderRect, Rect pageRect) -
> int
</autodoc> 
35133           <param name=
"doDraw" type=
"bool" default=
""/> 
35134           <param name=
"startPos" type=
"int" default=
""/> 
35135           <param name=
"endPos" type=
"int" default=
""/> 
35136           <param name=
"draw" type=
"DC" default=
""/> 
35137           <param name=
"target" type=
"DC" default=
""/> 
35138           <param name=
"renderRect" type=
"Rect" default=
""/> 
35139           <param name=
"pageRect" type=
"Rect" default=
""/> 
35142       <method name=
"GetFirstVisibleLine" type=
"int" overloaded=
"no"> 
35143         <autodoc>GetFirstVisibleLine() -
> int
</autodoc> 
35145       <method name=
"GetLine" type=
"String" overloaded=
"no"> 
35146         <autodoc>GetLine(int line) -
> String
</autodoc> 
35148           <param name=
"line" type=
"int" default=
""/> 
35151       <method name=
"GetLineCount" type=
"int" overloaded=
"no"> 
35152         <autodoc>GetLineCount() -
> int
</autodoc> 
35154       <method name=
"SetMarginLeft" type=
"" overloaded=
"no"> 
35155         <autodoc>SetMarginLeft(int pixelWidth)
</autodoc> 
35157           <param name=
"pixelWidth" type=
"int" default=
""/> 
35160       <method name=
"GetMarginLeft" type=
"int" overloaded=
"no"> 
35161         <autodoc>GetMarginLeft() -
> int
</autodoc> 
35163       <method name=
"SetMarginRight" type=
"" overloaded=
"no"> 
35164         <autodoc>SetMarginRight(int pixelWidth)
</autodoc> 
35166           <param name=
"pixelWidth" type=
"int" default=
""/> 
35169       <method name=
"GetMarginRight" type=
"int" overloaded=
"no"> 
35170         <autodoc>GetMarginRight() -
> int
</autodoc> 
35172       <method name=
"GetModify" type=
"bool" overloaded=
"no"> 
35173         <autodoc>GetModify() -
> bool
</autodoc> 
35175       <method name=
"SetSelection" type=
"" overloaded=
"no"> 
35176         <autodoc>SetSelection(int start, int end)
</autodoc> 
35178           <param name=
"start" type=
"int" default=
""/> 
35179           <param name=
"end" type=
"int" default=
""/> 
35182       <method name=
"GetSelectedText" type=
"String" overloaded=
"no"> 
35183         <autodoc>GetSelectedText() -
> String
</autodoc> 
35185       <method name=
"GetTextRange" type=
"String" overloaded=
"no"> 
35186         <autodoc>GetTextRange(int startPos, int endPos) -
> String
</autodoc> 
35188           <param name=
"startPos" type=
"int" default=
""/> 
35189           <param name=
"endPos" type=
"int" default=
""/> 
35192       <method name=
"HideSelection" type=
"" overloaded=
"no"> 
35193         <autodoc>HideSelection(bool normal)
</autodoc> 
35195           <param name=
"normal" type=
"bool" default=
""/> 
35198       <method name=
"LineFromPosition" type=
"int" overloaded=
"no"> 
35199         <autodoc>LineFromPosition(int pos) -
> int
</autodoc> 
35201           <param name=
"pos" type=
"int" default=
""/> 
35204       <method name=
"PositionFromLine" type=
"int" overloaded=
"no"> 
35205         <autodoc>PositionFromLine(int line) -
> int
</autodoc> 
35207           <param name=
"line" type=
"int" default=
""/> 
35210       <method name=
"LineScroll" type=
"" overloaded=
"no"> 
35211         <autodoc>LineScroll(int columns, int lines)
</autodoc> 
35213           <param name=
"columns" type=
"int" default=
""/> 
35214           <param name=
"lines" type=
"int" default=
""/> 
35217       <method name=
"EnsureCaretVisible" type=
"" overloaded=
"no"> 
35218         <autodoc>EnsureCaretVisible()
</autodoc> 
35220       <method name=
"ReplaceSelection" type=
"" overloaded=
"no"> 
35221         <autodoc>ReplaceSelection(String text)
</autodoc> 
35223           <param name=
"text" type=
"String" default=
""/> 
35226       <method name=
"SetReadOnly" type=
"" overloaded=
"no"> 
35227         <autodoc>SetReadOnly(bool readOnly)
</autodoc> 
35229           <param name=
"readOnly" type=
"bool" default=
""/> 
35232       <method name=
"CanPaste" type=
"bool" overloaded=
"no"> 
35233         <autodoc>CanPaste() -
> bool
</autodoc> 
35235       <method name=
"CanUndo" type=
"bool" overloaded=
"no"> 
35236         <autodoc>CanUndo() -
> bool
</autodoc> 
35238       <method name=
"EmptyUndoBuffer" type=
"" overloaded=
"no"> 
35239         <autodoc>EmptyUndoBuffer()
</autodoc> 
35241       <method name=
"Undo" type=
"" overloaded=
"no"> 
35242         <autodoc>Undo()
</autodoc> 
35244       <method name=
"Cut" type=
"" overloaded=
"no"> 
35245         <autodoc>Cut()
</autodoc> 
35247       <method name=
"Copy" type=
"" overloaded=
"no"> 
35248         <autodoc>Copy()
</autodoc> 
35250       <method name=
"Paste" type=
"" overloaded=
"no"> 
35251         <autodoc>Paste()
</autodoc> 
35253       <method name=
"Clear" type=
"" overloaded=
"no"> 
35254         <autodoc>Clear()
</autodoc> 
35256       <method name=
"SetText" type=
"" overloaded=
"no"> 
35257         <autodoc>SetText(String text)
</autodoc> 
35259           <param name=
"text" type=
"String" default=
""/> 
35262       <method name=
"GetText" type=
"String" overloaded=
"no"> 
35263         <autodoc>GetText() -
> String
</autodoc> 
35265       <method name=
"GetTextLength" type=
"int" overloaded=
"no"> 
35266         <autodoc>GetTextLength() -
> int
</autodoc> 
35268       <method name=
"SetOvertype" type=
"" overloaded=
"no"> 
35269         <autodoc>SetOvertype(bool overtype)
</autodoc> 
35271           <param name=
"overtype" type=
"bool" default=
""/> 
35274       <method name=
"GetOvertype" type=
"bool" overloaded=
"no"> 
35275         <autodoc>GetOvertype() -
> bool
</autodoc> 
35277       <method name=
"SetCaretWidth" type=
"" overloaded=
"no"> 
35278         <autodoc>SetCaretWidth(int pixelWidth)
</autodoc> 
35280           <param name=
"pixelWidth" type=
"int" default=
""/> 
35283       <method name=
"GetCaretWidth" type=
"int" overloaded=
"no"> 
35284         <autodoc>GetCaretWidth() -
> int
</autodoc> 
35286       <method name=
"SetTargetStart" type=
"" overloaded=
"no"> 
35287         <autodoc>SetTargetStart(int pos)
</autodoc> 
35289           <param name=
"pos" type=
"int" default=
""/> 
35292       <method name=
"GetTargetStart" type=
"int" overloaded=
"no"> 
35293         <autodoc>GetTargetStart() -
> int
</autodoc> 
35295       <method name=
"SetTargetEnd" type=
"" overloaded=
"no"> 
35296         <autodoc>SetTargetEnd(int pos)
</autodoc> 
35298           <param name=
"pos" type=
"int" default=
""/> 
35301       <method name=
"GetTargetEnd" type=
"int" overloaded=
"no"> 
35302         <autodoc>GetTargetEnd() -
> int
</autodoc> 
35304       <method name=
"ReplaceTarget" type=
"int" overloaded=
"no"> 
35305         <autodoc>ReplaceTarget(String text) -
> int
</autodoc> 
35307           <param name=
"text" type=
"String" default=
""/> 
35310       <method name=
"ReplaceTargetRE" type=
"int" overloaded=
"no"> 
35311         <autodoc>ReplaceTargetRE(String text) -
> int
</autodoc> 
35313           <param name=
"text" type=
"String" default=
""/> 
35316       <method name=
"SearchInTarget" type=
"int" overloaded=
"no"> 
35317         <autodoc>SearchInTarget(String text) -
> int
</autodoc> 
35319           <param name=
"text" type=
"String" default=
""/> 
35322       <method name=
"SetSearchFlags" type=
"" overloaded=
"no"> 
35323         <autodoc>SetSearchFlags(int flags)
</autodoc> 
35325           <param name=
"flags" type=
"int" default=
""/> 
35328       <method name=
"GetSearchFlags" type=
"int" overloaded=
"no"> 
35329         <autodoc>GetSearchFlags() -
> int
</autodoc> 
35331       <method name=
"CallTipShow" type=
"" overloaded=
"no"> 
35332         <autodoc>CallTipShow(int pos, String definition)
</autodoc> 
35334           <param name=
"pos" type=
"int" default=
""/> 
35335           <param name=
"definition" type=
"String" default=
""/> 
35338       <method name=
"CallTipCancel" type=
"" overloaded=
"no"> 
35339         <autodoc>CallTipCancel()
</autodoc> 
35341       <method name=
"CallTipActive" type=
"bool" overloaded=
"no"> 
35342         <autodoc>CallTipActive() -
> bool
</autodoc> 
35344       <method name=
"CallTipPosAtStart" type=
"int" overloaded=
"no"> 
35345         <autodoc>CallTipPosAtStart() -
> int
</autodoc> 
35347       <method name=
"CallTipSetHighlight" type=
"" overloaded=
"no"> 
35348         <autodoc>CallTipSetHighlight(int start, int end)
</autodoc> 
35350           <param name=
"start" type=
"int" default=
""/> 
35351           <param name=
"end" type=
"int" default=
""/> 
35354       <method name=
"CallTipSetBackground" type=
"" overloaded=
"no"> 
35355         <autodoc>CallTipSetBackground(Colour back)
</autodoc> 
35357           <param name=
"back" type=
"Colour" default=
""/> 
35360       <method name=
"CallTipSetForeground" type=
"" overloaded=
"no"> 
35361         <autodoc>CallTipSetForeground(Colour fore)
</autodoc> 
35363           <param name=
"fore" type=
"Colour" default=
""/> 
35366       <method name=
"CallTipSetForegroundHighlight" type=
"" overloaded=
"no"> 
35367         <autodoc>CallTipSetForegroundHighlight(Colour fore)
</autodoc> 
35369           <param name=
"fore" type=
"Colour" default=
""/> 
35372       <method name=
"VisibleFromDocLine" type=
"int" overloaded=
"no"> 
35373         <autodoc>VisibleFromDocLine(int line) -
> int
</autodoc> 
35375           <param name=
"line" type=
"int" default=
""/> 
35378       <method name=
"DocLineFromVisible" type=
"int" overloaded=
"no"> 
35379         <autodoc>DocLineFromVisible(int lineDisplay) -
> int
</autodoc> 
35381           <param name=
"lineDisplay" type=
"int" default=
""/> 
35384       <method name=
"SetFoldLevel" type=
"" overloaded=
"no"> 
35385         <autodoc>SetFoldLevel(int line, int level)
</autodoc> 
35387           <param name=
"line" type=
"int" default=
""/> 
35388           <param name=
"level" type=
"int" default=
""/> 
35391       <method name=
"GetFoldLevel" type=
"int" overloaded=
"no"> 
35392         <autodoc>GetFoldLevel(int line) -
> int
</autodoc> 
35394           <param name=
"line" type=
"int" default=
""/> 
35397       <method name=
"GetLastChild" type=
"int" overloaded=
"no"> 
35398         <autodoc>GetLastChild(int line, int level) -
> int
</autodoc> 
35400           <param name=
"line" type=
"int" default=
""/> 
35401           <param name=
"level" type=
"int" default=
""/> 
35404       <method name=
"GetFoldParent" type=
"int" overloaded=
"no"> 
35405         <autodoc>GetFoldParent(int line) -
> int
</autodoc> 
35407           <param name=
"line" type=
"int" default=
""/> 
35410       <method name=
"ShowLines" type=
"" overloaded=
"no"> 
35411         <autodoc>ShowLines(int lineStart, int lineEnd)
</autodoc> 
35413           <param name=
"lineStart" type=
"int" default=
""/> 
35414           <param name=
"lineEnd" type=
"int" default=
""/> 
35417       <method name=
"HideLines" type=
"" overloaded=
"no"> 
35418         <autodoc>HideLines(int lineStart, int lineEnd)
</autodoc> 
35420           <param name=
"lineStart" type=
"int" default=
""/> 
35421           <param name=
"lineEnd" type=
"int" default=
""/> 
35424       <method name=
"GetLineVisible" type=
"bool" overloaded=
"no"> 
35425         <autodoc>GetLineVisible(int line) -
> bool
</autodoc> 
35427           <param name=
"line" type=
"int" default=
""/> 
35430       <method name=
"SetFoldExpanded" type=
"" overloaded=
"no"> 
35431         <autodoc>SetFoldExpanded(int line, bool expanded)
</autodoc> 
35433           <param name=
"line" type=
"int" default=
""/> 
35434           <param name=
"expanded" type=
"bool" default=
""/> 
35437       <method name=
"GetFoldExpanded" type=
"bool" overloaded=
"no"> 
35438         <autodoc>GetFoldExpanded(int line) -
> bool
</autodoc> 
35440           <param name=
"line" type=
"int" default=
""/> 
35443       <method name=
"ToggleFold" type=
"" overloaded=
"no"> 
35444         <autodoc>ToggleFold(int line)
</autodoc> 
35446           <param name=
"line" type=
"int" default=
""/> 
35449       <method name=
"EnsureVisible" type=
"" overloaded=
"no"> 
35450         <autodoc>EnsureVisible(int line)
</autodoc> 
35452           <param name=
"line" type=
"int" default=
""/> 
35455       <method name=
"SetFoldFlags" type=
"" overloaded=
"no"> 
35456         <autodoc>SetFoldFlags(int flags)
</autodoc> 
35458           <param name=
"flags" type=
"int" default=
""/> 
35461       <method name=
"EnsureVisibleEnforcePolicy" type=
"" overloaded=
"no"> 
35462         <autodoc>EnsureVisibleEnforcePolicy(int line)
</autodoc> 
35464           <param name=
"line" type=
"int" default=
""/> 
35467       <method name=
"SetTabIndents" type=
"" overloaded=
"no"> 
35468         <autodoc>SetTabIndents(bool tabIndents)
</autodoc> 
35470           <param name=
"tabIndents" type=
"bool" default=
""/> 
35473       <method name=
"GetTabIndents" type=
"bool" overloaded=
"no"> 
35474         <autodoc>GetTabIndents() -
> bool
</autodoc> 
35476       <method name=
"SetBackSpaceUnIndents" type=
"" overloaded=
"no"> 
35477         <autodoc>SetBackSpaceUnIndents(bool bsUnIndents)
</autodoc> 
35479           <param name=
"bsUnIndents" type=
"bool" default=
""/> 
35482       <method name=
"GetBackSpaceUnIndents" type=
"bool" overloaded=
"no"> 
35483         <autodoc>GetBackSpaceUnIndents() -
> bool
</autodoc> 
35485       <method name=
"SetMouseDwellTime" type=
"" overloaded=
"no"> 
35486         <autodoc>SetMouseDwellTime(int periodMilliseconds)
</autodoc> 
35488           <param name=
"periodMilliseconds" type=
"int" default=
""/> 
35491       <method name=
"GetMouseDwellTime" type=
"int" overloaded=
"no"> 
35492         <autodoc>GetMouseDwellTime() -
> int
</autodoc> 
35494       <method name=
"WordStartPosition" type=
"int" overloaded=
"no"> 
35495         <autodoc>WordStartPosition(int pos, bool onlyWordCharacters) -
> int
</autodoc> 
35497           <param name=
"pos" type=
"int" default=
""/> 
35498           <param name=
"onlyWordCharacters" type=
"bool" default=
""/> 
35501       <method name=
"WordEndPosition" type=
"int" overloaded=
"no"> 
35502         <autodoc>WordEndPosition(int pos, bool onlyWordCharacters) -
> int
</autodoc> 
35504           <param name=
"pos" type=
"int" default=
""/> 
35505           <param name=
"onlyWordCharacters" type=
"bool" default=
""/> 
35508       <method name=
"SetWrapMode" type=
"" overloaded=
"no"> 
35509         <autodoc>SetWrapMode(int mode)
</autodoc> 
35511           <param name=
"mode" type=
"int" default=
""/> 
35514       <method name=
"GetWrapMode" type=
"int" overloaded=
"no"> 
35515         <autodoc>GetWrapMode() -
> int
</autodoc> 
35517       <method name=
"SetLayoutCache" type=
"" overloaded=
"no"> 
35518         <autodoc>SetLayoutCache(int mode)
</autodoc> 
35520           <param name=
"mode" type=
"int" default=
""/> 
35523       <method name=
"GetLayoutCache" type=
"int" overloaded=
"no"> 
35524         <autodoc>GetLayoutCache() -
> int
</autodoc> 
35526       <method name=
"SetScrollWidth" type=
"" overloaded=
"no"> 
35527         <autodoc>SetScrollWidth(int pixelWidth)
</autodoc> 
35529           <param name=
"pixelWidth" type=
"int" default=
""/> 
35532       <method name=
"GetScrollWidth" type=
"int" overloaded=
"no"> 
35533         <autodoc>GetScrollWidth() -
> int
</autodoc> 
35535       <method name=
"TextWidth" type=
"int" overloaded=
"no"> 
35536         <autodoc>TextWidth(int style, String text) -
> int
</autodoc> 
35538           <param name=
"style" type=
"int" default=
""/> 
35539           <param name=
"text" type=
"String" default=
""/> 
35542       <method name=
"SetEndAtLastLine" type=
"" overloaded=
"no"> 
35543         <autodoc>SetEndAtLastLine(bool endAtLastLine)
</autodoc> 
35545           <param name=
"endAtLastLine" type=
"bool" default=
""/> 
35548       <method name=
"GetEndAtLastLine" type=
"int" overloaded=
"no"> 
35549         <autodoc>GetEndAtLastLine() -
> int
</autodoc> 
35551       <method name=
"TextHeight" type=
"int" overloaded=
"no"> 
35552         <autodoc>TextHeight(int line) -
> int
</autodoc> 
35554           <param name=
"line" type=
"int" default=
""/> 
35557       <method name=
"SetUseVerticalScrollBar" type=
"" overloaded=
"no"> 
35558         <autodoc>SetUseVerticalScrollBar(bool show)
</autodoc> 
35560           <param name=
"show" type=
"bool" default=
""/> 
35563       <method name=
"GetUseVerticalScrollBar" type=
"bool" overloaded=
"no"> 
35564         <autodoc>GetUseVerticalScrollBar() -
> bool
</autodoc> 
35566       <method name=
"AppendText" type=
"" overloaded=
"no"> 
35567         <autodoc>AppendText(int length, String text)
</autodoc> 
35569           <param name=
"length" type=
"int" default=
""/> 
35570           <param name=
"text" type=
"String" default=
""/> 
35573       <method name=
"GetTwoPhaseDraw" type=
"bool" overloaded=
"no"> 
35574         <autodoc>GetTwoPhaseDraw() -
> bool
</autodoc> 
35576       <method name=
"SetTwoPhaseDraw" type=
"" overloaded=
"no"> 
35577         <autodoc>SetTwoPhaseDraw(bool twoPhase)
</autodoc> 
35579           <param name=
"twoPhase" type=
"bool" default=
""/> 
35582       <method name=
"TargetFromSelection" type=
"" overloaded=
"no"> 
35583         <autodoc>TargetFromSelection()
</autodoc> 
35585       <method name=
"LinesJoin" type=
"" overloaded=
"no"> 
35586         <autodoc>LinesJoin()
</autodoc> 
35588       <method name=
"LinesSplit" type=
"" overloaded=
"no"> 
35589         <autodoc>LinesSplit(int pixelWidth)
</autodoc> 
35591           <param name=
"pixelWidth" type=
"int" default=
""/> 
35594       <method name=
"SetFoldMarginColour" type=
"" overloaded=
"no"> 
35595         <autodoc>SetFoldMarginColour(bool useSetting, Colour back)
</autodoc> 
35597           <param name=
"useSetting" type=
"bool" default=
""/> 
35598           <param name=
"back" type=
"Colour" default=
""/> 
35601       <method name=
"SetFoldMarginHiColour" type=
"" overloaded=
"no"> 
35602         <autodoc>SetFoldMarginHiColour(bool useSetting, Colour fore)
</autodoc> 
35604           <param name=
"useSetting" type=
"bool" default=
""/> 
35605           <param name=
"fore" type=
"Colour" default=
""/> 
35608       <method name=
"LineDown" type=
"" overloaded=
"no"> 
35609         <autodoc>LineDown()
</autodoc> 
35610         <docstring>This is just a wrapper for ScrollLines(
1).
</docstring> 
35612       <method name=
"LineDownExtend" type=
"" overloaded=
"no"> 
35613         <autodoc>LineDownExtend()
</autodoc> 
35615       <method name=
"LineUp" type=
"" overloaded=
"no"> 
35616         <autodoc>LineUp()
</autodoc> 
35617         <docstring>This is just a wrapper for ScrollLines(-
1).
</docstring> 
35619       <method name=
"LineUpExtend" type=
"" overloaded=
"no"> 
35620         <autodoc>LineUpExtend()
</autodoc> 
35622       <method name=
"CharLeft" type=
"" overloaded=
"no"> 
35623         <autodoc>CharLeft()
</autodoc> 
35625       <method name=
"CharLeftExtend" type=
"" overloaded=
"no"> 
35626         <autodoc>CharLeftExtend()
</autodoc> 
35628       <method name=
"CharRight" type=
"" overloaded=
"no"> 
35629         <autodoc>CharRight()
</autodoc> 
35631       <method name=
"CharRightExtend" type=
"" overloaded=
"no"> 
35632         <autodoc>CharRightExtend()
</autodoc> 
35634       <method name=
"WordLeft" type=
"" overloaded=
"no"> 
35635         <autodoc>WordLeft()
</autodoc> 
35637       <method name=
"WordLeftExtend" type=
"" overloaded=
"no"> 
35638         <autodoc>WordLeftExtend()
</autodoc> 
35640       <method name=
"WordRight" type=
"" overloaded=
"no"> 
35641         <autodoc>WordRight()
</autodoc> 
35643       <method name=
"WordRightExtend" type=
"" overloaded=
"no"> 
35644         <autodoc>WordRightExtend()
</autodoc> 
35646       <method name=
"Home" type=
"" overloaded=
"no"> 
35647         <autodoc>Home()
</autodoc> 
35649       <method name=
"HomeExtend" type=
"" overloaded=
"no"> 
35650         <autodoc>HomeExtend()
</autodoc> 
35652       <method name=
"LineEnd" type=
"" overloaded=
"no"> 
35653         <autodoc>LineEnd()
</autodoc> 
35655       <method name=
"LineEndExtend" type=
"" overloaded=
"no"> 
35656         <autodoc>LineEndExtend()
</autodoc> 
35658       <method name=
"DocumentStart" type=
"" overloaded=
"no"> 
35659         <autodoc>DocumentStart()
</autodoc> 
35661       <method name=
"DocumentStartExtend" type=
"" overloaded=
"no"> 
35662         <autodoc>DocumentStartExtend()
</autodoc> 
35664       <method name=
"DocumentEnd" type=
"" overloaded=
"no"> 
35665         <autodoc>DocumentEnd()
</autodoc> 
35667       <method name=
"DocumentEndExtend" type=
"" overloaded=
"no"> 
35668         <autodoc>DocumentEndExtend()
</autodoc> 
35670       <method name=
"PageUp" type=
"" overloaded=
"no"> 
35671         <autodoc>PageUp()
</autodoc> 
35672         <docstring>This is just a wrapper for ScrollPages(-
1).
</docstring> 
35674       <method name=
"PageUpExtend" type=
"" overloaded=
"no"> 
35675         <autodoc>PageUpExtend()
</autodoc> 
35677       <method name=
"PageDown" type=
"" overloaded=
"no"> 
35678         <autodoc>PageDown()
</autodoc> 
35679         <docstring>This is just a wrapper for ScrollPages(
1).
</docstring> 
35681       <method name=
"PageDownExtend" type=
"" overloaded=
"no"> 
35682         <autodoc>PageDownExtend()
</autodoc> 
35684       <method name=
"EditToggleOvertype" type=
"" overloaded=
"no"> 
35685         <autodoc>EditToggleOvertype()
</autodoc> 
35687       <method name=
"Cancel" type=
"" overloaded=
"no"> 
35688         <autodoc>Cancel()
</autodoc> 
35690       <method name=
"DeleteBack" type=
"" overloaded=
"no"> 
35691         <autodoc>DeleteBack()
</autodoc> 
35693       <method name=
"Tab" type=
"" overloaded=
"no"> 
35694         <autodoc>Tab()
</autodoc> 
35696       <method name=
"BackTab" type=
"" overloaded=
"no"> 
35697         <autodoc>BackTab()
</autodoc> 
35699       <method name=
"NewLine" type=
"" overloaded=
"no"> 
35700         <autodoc>NewLine()
</autodoc> 
35702       <method name=
"FormFeed" type=
"" overloaded=
"no"> 
35703         <autodoc>FormFeed()
</autodoc> 
35705       <method name=
"VCHome" type=
"" overloaded=
"no"> 
35706         <autodoc>VCHome()
</autodoc> 
35708       <method name=
"VCHomeExtend" type=
"" overloaded=
"no"> 
35709         <autodoc>VCHomeExtend()
</autodoc> 
35711       <method name=
"ZoomIn" type=
"" overloaded=
"no"> 
35712         <autodoc>ZoomIn()
</autodoc> 
35714       <method name=
"ZoomOut" type=
"" overloaded=
"no"> 
35715         <autodoc>ZoomOut()
</autodoc> 
35717       <method name=
"DelWordLeft" type=
"" overloaded=
"no"> 
35718         <autodoc>DelWordLeft()
</autodoc> 
35720       <method name=
"DelWordRight" type=
"" overloaded=
"no"> 
35721         <autodoc>DelWordRight()
</autodoc> 
35723       <method name=
"LineCut" type=
"" overloaded=
"no"> 
35724         <autodoc>LineCut()
</autodoc> 
35726       <method name=
"LineDelete" type=
"" overloaded=
"no"> 
35727         <autodoc>LineDelete()
</autodoc> 
35729       <method name=
"LineTranspose" type=
"" overloaded=
"no"> 
35730         <autodoc>LineTranspose()
</autodoc> 
35732       <method name=
"LineDuplicate" type=
"" overloaded=
"no"> 
35733         <autodoc>LineDuplicate()
</autodoc> 
35735       <method name=
"LowerCase" type=
"" overloaded=
"no"> 
35736         <autodoc>LowerCase()
</autodoc> 
35738       <method name=
"UpperCase" type=
"" overloaded=
"no"> 
35739         <autodoc>UpperCase()
</autodoc> 
35741       <method name=
"LineScrollDown" type=
"" overloaded=
"no"> 
35742         <autodoc>LineScrollDown()
</autodoc> 
35744       <method name=
"LineScrollUp" type=
"" overloaded=
"no"> 
35745         <autodoc>LineScrollUp()
</autodoc> 
35747       <method name=
"DeleteBackNotLine" type=
"" overloaded=
"no"> 
35748         <autodoc>DeleteBackNotLine()
</autodoc> 
35750       <method name=
"HomeDisplay" type=
"" overloaded=
"no"> 
35751         <autodoc>HomeDisplay()
</autodoc> 
35753       <method name=
"HomeDisplayExtend" type=
"" overloaded=
"no"> 
35754         <autodoc>HomeDisplayExtend()
</autodoc> 
35756       <method name=
"LineEndDisplay" type=
"" overloaded=
"no"> 
35757         <autodoc>LineEndDisplay()
</autodoc> 
35759       <method name=
"LineEndDisplayExtend" type=
"" overloaded=
"no"> 
35760         <autodoc>LineEndDisplayExtend()
</autodoc> 
35762       <method name=
"HomeWrap" type=
"" overloaded=
"no"> 
35763         <autodoc>HomeWrap()
</autodoc> 
35765       <method name=
"HomeWrapExtend" type=
"" overloaded=
"no"> 
35766         <autodoc>HomeWrapExtend()
</autodoc> 
35768       <method name=
"LineEndWrap" type=
"" overloaded=
"no"> 
35769         <autodoc>LineEndWrap()
</autodoc> 
35771       <method name=
"LineEndWrapExtend" type=
"" overloaded=
"no"> 
35772         <autodoc>LineEndWrapExtend()
</autodoc> 
35774       <method name=
"VCHomeWrap" type=
"" overloaded=
"no"> 
35775         <autodoc>VCHomeWrap()
</autodoc> 
35777       <method name=
"VCHomeWrapExtend" type=
"" overloaded=
"no"> 
35778         <autodoc>VCHomeWrapExtend()
</autodoc> 
35780       <method name=
"LineCopy" type=
"" overloaded=
"no"> 
35781         <autodoc>LineCopy()
</autodoc> 
35783       <method name=
"MoveCaretInsideView" type=
"" overloaded=
"no"> 
35784         <autodoc>MoveCaretInsideView()
</autodoc> 
35786       <method name=
"LineLength" type=
"int" overloaded=
"no"> 
35787         <autodoc>LineLength(int line) -
> int
</autodoc> 
35789           <param name=
"line" type=
"int" default=
""/> 
35792       <method name=
"BraceHighlight" type=
"" overloaded=
"no"> 
35793         <autodoc>BraceHighlight(int pos1, int pos2)
</autodoc> 
35795           <param name=
"pos1" type=
"int" default=
""/> 
35796           <param name=
"pos2" type=
"int" default=
""/> 
35799       <method name=
"BraceBadLight" type=
"" overloaded=
"no"> 
35800         <autodoc>BraceBadLight(int pos)
</autodoc> 
35802           <param name=
"pos" type=
"int" default=
""/> 
35805       <method name=
"BraceMatch" type=
"int" overloaded=
"no"> 
35806         <autodoc>BraceMatch(int pos) -
> int
</autodoc> 
35808           <param name=
"pos" type=
"int" default=
""/> 
35811       <method name=
"GetViewEOL" type=
"bool" overloaded=
"no"> 
35812         <autodoc>GetViewEOL() -
> bool
</autodoc> 
35814       <method name=
"SetViewEOL" type=
"" overloaded=
"no"> 
35815         <autodoc>SetViewEOL(bool visible)
</autodoc> 
35817           <param name=
"visible" type=
"bool" default=
""/> 
35820       <method name=
"GetDocPointer" type=
"" overloaded=
"no"> 
35821         <autodoc>GetDocPointer() -
> void
</autodoc> 
35823       <method name=
"SetDocPointer" type=
"" overloaded=
"no"> 
35824         <autodoc>SetDocPointer(void docPointer)
</autodoc> 
35826           <param name=
"docPointer" type=
"" default=
""/> 
35829       <method name=
"SetModEventMask" type=
"" overloaded=
"no"> 
35830         <autodoc>SetModEventMask(int mask)
</autodoc> 
35832           <param name=
"mask" type=
"int" default=
""/> 
35835       <method name=
"GetEdgeColumn" type=
"int" overloaded=
"no"> 
35836         <autodoc>GetEdgeColumn() -
> int
</autodoc> 
35838       <method name=
"SetEdgeColumn" type=
"" overloaded=
"no"> 
35839         <autodoc>SetEdgeColumn(int column)
</autodoc> 
35841           <param name=
"column" type=
"int" default=
""/> 
35844       <method name=
"GetEdgeMode" type=
"int" overloaded=
"no"> 
35845         <autodoc>GetEdgeMode() -
> int
</autodoc> 
35847       <method name=
"SetEdgeMode" type=
"" overloaded=
"no"> 
35848         <autodoc>SetEdgeMode(int mode)
</autodoc> 
35850           <param name=
"mode" type=
"int" default=
""/> 
35853       <method name=
"GetEdgeColour" type=
"Colour" overloaded=
"no"> 
35854         <autodoc>GetEdgeColour() -
> Colour
</autodoc> 
35856       <method name=
"SetEdgeColour" type=
"" overloaded=
"no"> 
35857         <autodoc>SetEdgeColour(Colour edgeColour)
</autodoc> 
35859           <param name=
"edgeColour" type=
"Colour" default=
""/> 
35862       <method name=
"SearchAnchor" type=
"" overloaded=
"no"> 
35863         <autodoc>SearchAnchor()
</autodoc> 
35865       <method name=
"SearchNext" type=
"int" overloaded=
"no"> 
35866         <autodoc>SearchNext(int flags, String text) -
> int
</autodoc> 
35868           <param name=
"flags" type=
"int" default=
""/> 
35869           <param name=
"text" type=
"String" default=
""/> 
35872       <method name=
"SearchPrev" type=
"int" overloaded=
"no"> 
35873         <autodoc>SearchPrev(int flags, String text) -
> int
</autodoc> 
35875           <param name=
"flags" type=
"int" default=
""/> 
35876           <param name=
"text" type=
"String" default=
""/> 
35879       <method name=
"LinesOnScreen" type=
"int" overloaded=
"no"> 
35880         <autodoc>LinesOnScreen() -
> int
</autodoc> 
35882       <method name=
"UsePopUp" type=
"" overloaded=
"no"> 
35883         <autodoc>UsePopUp(bool allowPopUp)
</autodoc> 
35885           <param name=
"allowPopUp" type=
"bool" default=
""/> 
35888       <method name=
"SelectionIsRectangle" type=
"bool" overloaded=
"no"> 
35889         <autodoc>SelectionIsRectangle() -
> bool
</autodoc> 
35891       <method name=
"SetZoom" type=
"" overloaded=
"no"> 
35892         <autodoc>SetZoom(int zoom)
</autodoc> 
35894           <param name=
"zoom" type=
"int" default=
""/> 
35897       <method name=
"GetZoom" type=
"int" overloaded=
"no"> 
35898         <autodoc>GetZoom() -
> int
</autodoc> 
35900       <method name=
"CreateDocument" type=
"" overloaded=
"no"> 
35901         <autodoc>CreateDocument() -
> void
</autodoc> 
35903       <method name=
"AddRefDocument" type=
"" overloaded=
"no"> 
35904         <autodoc>AddRefDocument(void docPointer)
</autodoc> 
35906           <param name=
"docPointer" type=
"" default=
""/> 
35909       <method name=
"ReleaseDocument" type=
"" overloaded=
"no"> 
35910         <autodoc>ReleaseDocument(void docPointer)
</autodoc> 
35912           <param name=
"docPointer" type=
"" default=
""/> 
35915       <method name=
"GetModEventMask" type=
"int" overloaded=
"no"> 
35916         <autodoc>GetModEventMask() -
> int
</autodoc> 
35918       <method name=
"SetSTCFocus" type=
"" overloaded=
"no"> 
35919         <autodoc>SetSTCFocus(bool focus)
</autodoc> 
35921           <param name=
"focus" type=
"bool" default=
""/> 
35924       <method name=
"GetSTCFocus" type=
"bool" overloaded=
"no"> 
35925         <autodoc>GetSTCFocus() -
> bool
</autodoc> 
35927       <method name=
"SetStatus" type=
"" overloaded=
"no"> 
35928         <autodoc>SetStatus(int statusCode)
</autodoc> 
35930           <param name=
"statusCode" type=
"int" default=
""/> 
35933       <method name=
"GetStatus" type=
"int" overloaded=
"no"> 
35934         <autodoc>GetStatus() -
> int
</autodoc> 
35936       <method name=
"SetMouseDownCaptures" type=
"" overloaded=
"no"> 
35937         <autodoc>SetMouseDownCaptures(bool captures)
</autodoc> 
35939           <param name=
"captures" type=
"bool" default=
""/> 
35942       <method name=
"GetMouseDownCaptures" type=
"bool" overloaded=
"no"> 
35943         <autodoc>GetMouseDownCaptures() -
> bool
</autodoc> 
35945       <method name=
"SetSTCCursor" type=
"" overloaded=
"no"> 
35946         <autodoc>SetSTCCursor(int cursorType)
</autodoc> 
35948           <param name=
"cursorType" type=
"int" default=
""/> 
35951       <method name=
"GetSTCCursor" type=
"int" overloaded=
"no"> 
35952         <autodoc>GetSTCCursor() -
> int
</autodoc> 
35954       <method name=
"SetControlCharSymbol" type=
"" overloaded=
"no"> 
35955         <autodoc>SetControlCharSymbol(int symbol)
</autodoc> 
35957           <param name=
"symbol" type=
"int" default=
""/> 
35960       <method name=
"GetControlCharSymbol" type=
"int" overloaded=
"no"> 
35961         <autodoc>GetControlCharSymbol() -
> int
</autodoc> 
35963       <method name=
"WordPartLeft" type=
"" overloaded=
"no"> 
35964         <autodoc>WordPartLeft()
</autodoc> 
35966       <method name=
"WordPartLeftExtend" type=
"" overloaded=
"no"> 
35967         <autodoc>WordPartLeftExtend()
</autodoc> 
35969       <method name=
"WordPartRight" type=
"" overloaded=
"no"> 
35970         <autodoc>WordPartRight()
</autodoc> 
35972       <method name=
"WordPartRightExtend" type=
"" overloaded=
"no"> 
35973         <autodoc>WordPartRightExtend()
</autodoc> 
35975       <method name=
"SetVisiblePolicy" type=
"" overloaded=
"no"> 
35976         <autodoc>SetVisiblePolicy(int visiblePolicy, int visibleSlop)
</autodoc> 
35978           <param name=
"visiblePolicy" type=
"int" default=
""/> 
35979           <param name=
"visibleSlop" type=
"int" default=
""/> 
35982       <method name=
"DelLineLeft" type=
"" overloaded=
"no"> 
35983         <autodoc>DelLineLeft()
</autodoc> 
35985       <method name=
"DelLineRight" type=
"" overloaded=
"no"> 
35986         <autodoc>DelLineRight()
</autodoc> 
35988       <method name=
"SetXOffset" type=
"" overloaded=
"no"> 
35989         <autodoc>SetXOffset(int newOffset)
</autodoc> 
35991           <param name=
"newOffset" type=
"int" default=
""/> 
35994       <method name=
"GetXOffset" type=
"int" overloaded=
"no"> 
35995         <autodoc>GetXOffset() -
> int
</autodoc> 
35997       <method name=
"ChooseCaretX" type=
"" overloaded=
"no"> 
35998         <autodoc>ChooseCaretX()
</autodoc> 
36000       <method name=
"SetXCaretPolicy" type=
"" overloaded=
"no"> 
36001         <autodoc>SetXCaretPolicy(int caretPolicy, int caretSlop)
</autodoc> 
36003           <param name=
"caretPolicy" type=
"int" default=
""/> 
36004           <param name=
"caretSlop" type=
"int" default=
""/> 
36007       <method name=
"SetYCaretPolicy" type=
"" overloaded=
"no"> 
36008         <autodoc>SetYCaretPolicy(int caretPolicy, int caretSlop)
</autodoc> 
36010           <param name=
"caretPolicy" type=
"int" default=
""/> 
36011           <param name=
"caretSlop" type=
"int" default=
""/> 
36014       <method name=
"SetPrintWrapMode" type=
"" overloaded=
"no"> 
36015         <autodoc>SetPrintWrapMode(int mode)
</autodoc> 
36017           <param name=
"mode" type=
"int" default=
""/> 
36020       <method name=
"GetPrintWrapMode" type=
"int" overloaded=
"no"> 
36021         <autodoc>GetPrintWrapMode() -
> int
</autodoc> 
36023       <method name=
"SetHotspotActiveForeground" type=
"" overloaded=
"no"> 
36024         <autodoc>SetHotspotActiveForeground(bool useSetting, Colour fore)
</autodoc> 
36026           <param name=
"useSetting" type=
"bool" default=
""/> 
36027           <param name=
"fore" type=
"Colour" default=
""/> 
36030       <method name=
"SetHotspotActiveBackground" type=
"" overloaded=
"no"> 
36031         <autodoc>SetHotspotActiveBackground(bool useSetting, Colour back)
</autodoc> 
36033           <param name=
"useSetting" type=
"bool" default=
""/> 
36034           <param name=
"back" type=
"Colour" default=
""/> 
36037       <method name=
"SetHotspotActiveUnderline" type=
"" overloaded=
"no"> 
36038         <autodoc>SetHotspotActiveUnderline(bool underline)
</autodoc> 
36040           <param name=
"underline" type=
"bool" default=
""/> 
36043       <method name=
"SetHotspotSingleLine" type=
"" overloaded=
"no"> 
36044         <autodoc>SetHotspotSingleLine(bool singleLine)
</autodoc> 
36046           <param name=
"singleLine" type=
"bool" default=
""/> 
36049       <method name=
"ParaDown" type=
"" overloaded=
"no"> 
36050         <autodoc>ParaDown()
</autodoc> 
36052       <method name=
"ParaDownExtend" type=
"" overloaded=
"no"> 
36053         <autodoc>ParaDownExtend()
</autodoc> 
36055       <method name=
"ParaUp" type=
"" overloaded=
"no"> 
36056         <autodoc>ParaUp()
</autodoc> 
36058       <method name=
"ParaUpExtend" type=
"" overloaded=
"no"> 
36059         <autodoc>ParaUpExtend()
</autodoc> 
36061       <method name=
"PositionBefore" type=
"int" overloaded=
"no"> 
36062         <autodoc>PositionBefore(int pos) -
> int
</autodoc> 
36064           <param name=
"pos" type=
"int" default=
""/> 
36067       <method name=
"PositionAfter" type=
"int" overloaded=
"no"> 
36068         <autodoc>PositionAfter(int pos) -
> int
</autodoc> 
36070           <param name=
"pos" type=
"int" default=
""/> 
36073       <method name=
"CopyRange" type=
"" overloaded=
"no"> 
36074         <autodoc>CopyRange(int start, int end)
</autodoc> 
36076           <param name=
"start" type=
"int" default=
""/> 
36077           <param name=
"end" type=
"int" default=
""/> 
36080       <method name=
"CopyText" type=
"" overloaded=
"no"> 
36081         <autodoc>CopyText(int length, String text)
</autodoc> 
36083           <param name=
"length" type=
"int" default=
""/> 
36084           <param name=
"text" type=
"String" default=
""/> 
36087       <method name=
"SetSelectionMode" type=
"" overloaded=
"no"> 
36088         <autodoc>SetSelectionMode(int mode)
</autodoc> 
36090           <param name=
"mode" type=
"int" default=
""/> 
36093       <method name=
"GetSelectionMode" type=
"int" overloaded=
"no"> 
36094         <autodoc>GetSelectionMode() -
> int
</autodoc> 
36096       <method name=
"GetLineSelStartPosition" type=
"int" overloaded=
"no"> 
36097         <autodoc>GetLineSelStartPosition(int line) -
> int
</autodoc> 
36099           <param name=
"line" type=
"int" default=
""/> 
36102       <method name=
"GetLineSelEndPosition" type=
"int" overloaded=
"no"> 
36103         <autodoc>GetLineSelEndPosition(int line) -
> int
</autodoc> 
36105           <param name=
"line" type=
"int" default=
""/> 
36108       <method name=
"LineDownRectExtend" type=
"" overloaded=
"no"> 
36109         <autodoc>LineDownRectExtend()
</autodoc> 
36111       <method name=
"LineUpRectExtend" type=
"" overloaded=
"no"> 
36112         <autodoc>LineUpRectExtend()
</autodoc> 
36114       <method name=
"CharLeftRectExtend" type=
"" overloaded=
"no"> 
36115         <autodoc>CharLeftRectExtend()
</autodoc> 
36117       <method name=
"CharRightRectExtend" type=
"" overloaded=
"no"> 
36118         <autodoc>CharRightRectExtend()
</autodoc> 
36120       <method name=
"HomeRectExtend" type=
"" overloaded=
"no"> 
36121         <autodoc>HomeRectExtend()
</autodoc> 
36123       <method name=
"VCHomeRectExtend" type=
"" overloaded=
"no"> 
36124         <autodoc>VCHomeRectExtend()
</autodoc> 
36126       <method name=
"LineEndRectExtend" type=
"" overloaded=
"no"> 
36127         <autodoc>LineEndRectExtend()
</autodoc> 
36129       <method name=
"PageUpRectExtend" type=
"" overloaded=
"no"> 
36130         <autodoc>PageUpRectExtend()
</autodoc> 
36132       <method name=
"PageDownRectExtend" type=
"" overloaded=
"no"> 
36133         <autodoc>PageDownRectExtend()
</autodoc> 
36135       <method name=
"StutteredPageUp" type=
"" overloaded=
"no"> 
36136         <autodoc>StutteredPageUp()
</autodoc> 
36138       <method name=
"StutteredPageUpExtend" type=
"" overloaded=
"no"> 
36139         <autodoc>StutteredPageUpExtend()
</autodoc> 
36141       <method name=
"StutteredPageDown" type=
"" overloaded=
"no"> 
36142         <autodoc>StutteredPageDown()
</autodoc> 
36144       <method name=
"StutteredPageDownExtend" type=
"" overloaded=
"no"> 
36145         <autodoc>StutteredPageDownExtend()
</autodoc> 
36147       <method name=
"WordLeftEnd" type=
"" overloaded=
"no"> 
36148         <autodoc>WordLeftEnd()
</autodoc> 
36150       <method name=
"WordLeftEndExtend" type=
"" overloaded=
"no"> 
36151         <autodoc>WordLeftEndExtend()
</autodoc> 
36153       <method name=
"WordRightEnd" type=
"" overloaded=
"no"> 
36154         <autodoc>WordRightEnd()
</autodoc> 
36156       <method name=
"WordRightEndExtend" type=
"" overloaded=
"no"> 
36157         <autodoc>WordRightEndExtend()
</autodoc> 
36159       <method name=
"SetWhitespaceChars" type=
"" overloaded=
"no"> 
36160         <autodoc>SetWhitespaceChars(String characters)
</autodoc> 
36162           <param name=
"characters" type=
"String" default=
""/> 
36165       <method name=
"SetCharsDefault" type=
"" overloaded=
"no"> 
36166         <autodoc>SetCharsDefault()
</autodoc> 
36168       <method name=
"AutoCompGetCurrent" type=
"int" overloaded=
"no"> 
36169         <autodoc>AutoCompGetCurrent() -
> int
</autodoc> 
36171       <method name=
"StartRecord" type=
"" overloaded=
"no"> 
36172         <autodoc>StartRecord()
</autodoc> 
36174       <method name=
"StopRecord" type=
"" overloaded=
"no"> 
36175         <autodoc>StopRecord()
</autodoc> 
36177       <method name=
"SetLexer" type=
"" overloaded=
"no"> 
36178         <autodoc>SetLexer(int lexer)
</autodoc> 
36180           <param name=
"lexer" type=
"int" default=
""/> 
36183       <method name=
"GetLexer" type=
"int" overloaded=
"no"> 
36184         <autodoc>GetLexer() -
> int
</autodoc> 
36186       <method name=
"Colourise" type=
"" overloaded=
"no"> 
36187         <autodoc>Colourise(int start, int end)
</autodoc> 
36189           <param name=
"start" type=
"int" default=
""/> 
36190           <param name=
"end" type=
"int" default=
""/> 
36193       <method name=
"SetProperty" type=
"" overloaded=
"no"> 
36194         <autodoc>SetProperty(String key, String value)
</autodoc> 
36196           <param name=
"key" type=
"String" default=
""/> 
36197           <param name=
"value" type=
"String" default=
""/> 
36200       <method name=
"SetKeyWords" type=
"" overloaded=
"no"> 
36201         <autodoc>SetKeyWords(int keywordSet, String keyWords)
</autodoc> 
36203           <param name=
"keywordSet" type=
"int" default=
""/> 
36204           <param name=
"keyWords" type=
"String" default=
""/> 
36207       <method name=
"SetLexerLanguage" type=
"" overloaded=
"no"> 
36208         <autodoc>SetLexerLanguage(String language)
</autodoc> 
36210           <param name=
"language" type=
"String" default=
""/> 
36213       <method name=
"GetCurrentLine" type=
"int" overloaded=
"no"> 
36214         <autodoc>GetCurrentLine() -
> int
</autodoc> 
36216       <method name=
"StyleSetSpec" type=
"" overloaded=
"no"> 
36217         <autodoc>StyleSetSpec(int styleNum, String spec)
</autodoc> 
36219           <param name=
"styleNum" type=
"int" default=
""/> 
36220           <param name=
"spec" type=
"String" default=
""/> 
36223       <method name=
"StyleSetFont" type=
"" overloaded=
"no"> 
36224         <autodoc>StyleSetFont(int styleNum, Font font)
</autodoc> 
36226           <param name=
"styleNum" type=
"int" default=
""/> 
36227           <param name=
"font" type=
"Font" default=
""/> 
36230       <method name=
"StyleSetFontAttr" type=
"" overloaded=
"no"> 
36231         <autodoc>StyleSetFontAttr(int styleNum, int size, String faceName, bool bold, 
 
36232     bool italic, bool underline)
</autodoc> 
36234           <param name=
"styleNum" type=
"int" default=
""/> 
36235           <param name=
"size" type=
"int" default=
""/> 
36236           <param name=
"faceName" type=
"String" default=
""/> 
36237           <param name=
"bold" type=
"bool" default=
""/> 
36238           <param name=
"italic" type=
"bool" default=
""/> 
36239           <param name=
"underline" type=
"bool" default=
""/> 
36242       <method name=
"CmdKeyExecute" type=
"" overloaded=
"no"> 
36243         <autodoc>CmdKeyExecute(int cmd)
</autodoc> 
36245           <param name=
"cmd" type=
"int" default=
""/> 
36248       <method name=
"SetMargins" type=
"" overloaded=
"no"> 
36249         <autodoc>SetMargins(int left, int right)
</autodoc> 
36251           <param name=
"left" type=
"int" default=
""/> 
36252           <param name=
"right" type=
"int" default=
""/> 
36255       <method name=
"GetSelection" type=
"" overloaded=
"no"> 
36256         <autodoc>GetSelection(int OUTPUT, int OUTPUT)
</autodoc> 
36258           <param name=
"OUTPUT" type=
"int" default=
""/> 
36259           <param name=
"OUTPUT" type=
"int" default=
""/> 
36262       <method name=
"PointFromPosition" type=
"Point" overloaded=
"no"> 
36263         <autodoc>PointFromPosition(int pos) -
> Point
</autodoc> 
36265           <param name=
"pos" type=
"int" default=
""/> 
36268       <method name=
"ScrollToLine" type=
"" overloaded=
"no"> 
36269         <autodoc>ScrollToLine(int line)
</autodoc> 
36271           <param name=
"line" type=
"int" default=
""/> 
36274       <method name=
"ScrollToColumn" type=
"" overloaded=
"no"> 
36275         <autodoc>ScrollToColumn(int column)
</autodoc> 
36277           <param name=
"column" type=
"int" default=
""/> 
36280       <method name=
"SendMsg" type=
"long" overloaded=
"no"> 
36281         <autodoc>SendMsg(int msg, long wp=
0, long lp=
0) -
> long
</autodoc> 
36283           <param name=
"msg" type=
"int" default=
""/> 
36284           <param name=
"wp" type=
"long" default=
"0"/> 
36285           <param name=
"lp" type=
"long" default=
"0"/> 
36288       <method name=
"SetVScrollBar" type=
"" overloaded=
"no"> 
36289         <autodoc>SetVScrollBar(wxScrollBar bar)
</autodoc> 
36291           <param name=
"bar" type=
"ScrollBar" default=
""/> 
36294       <method name=
"SetHScrollBar" type=
"" overloaded=
"no"> 
36295         <autodoc>SetHScrollBar(wxScrollBar bar)
</autodoc> 
36297           <param name=
"bar" type=
"ScrollBar" default=
""/> 
36300       <method name=
"GetLastKeydownProcessed" type=
"bool" overloaded=
"no"> 
36301         <autodoc>GetLastKeydownProcessed() -
> bool
</autodoc> 
36303       <method name=
"SetLastKeydownProcessed" type=
"" overloaded=
"no"> 
36304         <autodoc>SetLastKeydownProcessed(bool val)
</autodoc> 
36306           <param name=
"val" type=
"bool" default=
""/> 
36309       <method name=
"SaveFile" type=
"bool" overloaded=
"no"> 
36310         <autodoc>SaveFile(String filename) -
> bool
</autodoc> 
36312           <param name=
"filename" type=
"String" default=
""/> 
36315       <method name=
"LoadFile" type=
"bool" overloaded=
"no"> 
36316         <autodoc>LoadFile(String filename) -
> bool
</autodoc> 
36318           <param name=
"filename" type=
"String" default=
""/> 
36321       <method name=
"DoDragOver" type=
"wxDragResult" overloaded=
"no"> 
36322         <autodoc>DoDragOver(int x, int y, int def) -
> int
</autodoc> 
36324           <param name=
"x" type=
"int" default=
""/> 
36325           <param name=
"y" type=
"int" default=
""/> 
36326           <param name=
"def" type=
"wxDragResult" default=
""/> 
36329       <method name=
"DoDropText" type=
"bool" overloaded=
"no"> 
36330         <autodoc>DoDropText(long x, long y, String data) -
> bool
</autodoc> 
36332           <param name=
"x" type=
"long" default=
""/> 
36333           <param name=
"y" type=
"long" default=
""/> 
36334           <param name=
"data" type=
"String" default=
""/> 
36337       <method name=
"SetUseAntiAliasing" type=
"" overloaded=
"no"> 
36338         <autodoc>SetUseAntiAliasing(bool useAA)
</autodoc> 
36340           <param name=
"useAA" type=
"bool" default=
""/> 
36343       <method name=
"GetUseAntiAliasing" type=
"bool" overloaded=
"no"> 
36344         <autodoc>GetUseAntiAliasing() -
> bool
</autodoc> 
36347     <class name=
"StyledTextEvent" oldname=
"wxStyledTextEvent" module=
"stc"> 
36348       <baseclass name=
"CommandEvent"/> 
36349       <constructor name=
"StyledTextEvent" overloaded=
"no"> 
36350         <autodoc>__init__(wxEventType commandType=
0, int id=
0) -
> StyledTextEvent
</autodoc> 
36352           <param name=
"commandType" type=
"wxEventType" default=
"0"/> 
36353           <param name=
"id" type=
"int" default=
"0"/> 
36356       <destructor name=
"~wxStyledTextEvent" overloaded=
"no"> 
36357         <autodoc>__del__()
</autodoc> 
36359       <method name=
"SetPosition" type=
"" overloaded=
"no"> 
36360         <autodoc>SetPosition(int pos)
</autodoc> 
36362           <param name=
"pos" type=
"int" default=
""/> 
36365       <method name=
"SetKey" type=
"" overloaded=
"no"> 
36366         <autodoc>SetKey(int k)
</autodoc> 
36368           <param name=
"k" type=
"int" default=
""/> 
36371       <method name=
"SetModifiers" type=
"" overloaded=
"no"> 
36372         <autodoc>SetModifiers(int m)
</autodoc> 
36374           <param name=
"m" type=
"int" default=
""/> 
36377       <method name=
"SetModificationType" type=
"" overloaded=
"no"> 
36378         <autodoc>SetModificationType(int t)
</autodoc> 
36380           <param name=
"t" type=
"int" default=
""/> 
36383       <method name=
"SetText" type=
"" overloaded=
"no"> 
36384         <autodoc>SetText(String t)
</autodoc> 
36386           <param name=
"t" type=
"String" default=
""/> 
36389       <method name=
"SetLength" type=
"" overloaded=
"no"> 
36390         <autodoc>SetLength(int len)
</autodoc> 
36392           <param name=
"len" type=
"int" default=
""/> 
36395       <method name=
"SetLinesAdded" type=
"" overloaded=
"no"> 
36396         <autodoc>SetLinesAdded(int num)
</autodoc> 
36398           <param name=
"num" type=
"int" default=
""/> 
36401       <method name=
"SetLine" type=
"" overloaded=
"no"> 
36402         <autodoc>SetLine(int val)
</autodoc> 
36404           <param name=
"val" type=
"int" default=
""/> 
36407       <method name=
"SetFoldLevelNow" type=
"" overloaded=
"no"> 
36408         <autodoc>SetFoldLevelNow(int val)
</autodoc> 
36410           <param name=
"val" type=
"int" default=
""/> 
36413       <method name=
"SetFoldLevelPrev" type=
"" overloaded=
"no"> 
36414         <autodoc>SetFoldLevelPrev(int val)
</autodoc> 
36416           <param name=
"val" type=
"int" default=
""/> 
36419       <method name=
"SetMargin" type=
"" overloaded=
"no"> 
36420         <autodoc>SetMargin(int val)
</autodoc> 
36422           <param name=
"val" type=
"int" default=
""/> 
36425       <method name=
"SetMessage" type=
"" overloaded=
"no"> 
36426         <autodoc>SetMessage(int val)
</autodoc> 
36428           <param name=
"val" type=
"int" default=
""/> 
36431       <method name=
"SetWParam" type=
"" overloaded=
"no"> 
36432         <autodoc>SetWParam(int val)
</autodoc> 
36434           <param name=
"val" type=
"int" default=
""/> 
36437       <method name=
"SetLParam" type=
"" overloaded=
"no"> 
36438         <autodoc>SetLParam(int val)
</autodoc> 
36440           <param name=
"val" type=
"int" default=
""/> 
36443       <method name=
"SetListType" type=
"" overloaded=
"no"> 
36444         <autodoc>SetListType(int val)
</autodoc> 
36446           <param name=
"val" type=
"int" default=
""/> 
36449       <method name=
"SetX" type=
"" overloaded=
"no"> 
36450         <autodoc>SetX(int val)
</autodoc> 
36452           <param name=
"val" type=
"int" default=
""/> 
36455       <method name=
"SetY" type=
"" overloaded=
"no"> 
36456         <autodoc>SetY(int val)
</autodoc> 
36458           <param name=
"val" type=
"int" default=
""/> 
36461       <method name=
"SetDragText" type=
"" overloaded=
"no"> 
36462         <autodoc>SetDragText(String val)
</autodoc> 
36464           <param name=
"val" type=
"String" default=
""/> 
36467       <method name=
"SetDragAllowMove" type=
"" overloaded=
"no"> 
36468         <autodoc>SetDragAllowMove(bool val)
</autodoc> 
36470           <param name=
"val" type=
"bool" default=
""/> 
36473       <method name=
"SetDragResult" type=
"" overloaded=
"no"> 
36474         <autodoc>SetDragResult(int val)
</autodoc> 
36476           <param name=
"val" type=
"wxDragResult" default=
""/> 
36479       <method name=
"GetPosition" type=
"int" overloaded=
"no"> 
36480         <autodoc>GetPosition() -
> int
</autodoc> 
36482       <method name=
"GetKey" type=
"int" overloaded=
"no"> 
36483         <autodoc>GetKey() -
> int
</autodoc> 
36485       <method name=
"GetModifiers" type=
"int" overloaded=
"no"> 
36486         <autodoc>GetModifiers() -
> int
</autodoc> 
36488       <method name=
"GetModificationType" type=
"int" overloaded=
"no"> 
36489         <autodoc>GetModificationType() -
> int
</autodoc> 
36491       <method name=
"GetText" type=
"String" overloaded=
"no"> 
36492         <autodoc>GetText() -
> String
</autodoc> 
36494       <method name=
"GetLength" type=
"int" overloaded=
"no"> 
36495         <autodoc>GetLength() -
> int
</autodoc> 
36497       <method name=
"GetLinesAdded" type=
"int" overloaded=
"no"> 
36498         <autodoc>GetLinesAdded() -
> int
</autodoc> 
36500       <method name=
"GetLine" type=
"int" overloaded=
"no"> 
36501         <autodoc>GetLine() -
> int
</autodoc> 
36503       <method name=
"GetFoldLevelNow" type=
"int" overloaded=
"no"> 
36504         <autodoc>GetFoldLevelNow() -
> int
</autodoc> 
36506       <method name=
"GetFoldLevelPrev" type=
"int" overloaded=
"no"> 
36507         <autodoc>GetFoldLevelPrev() -
> int
</autodoc> 
36509       <method name=
"GetMargin" type=
"int" overloaded=
"no"> 
36510         <autodoc>GetMargin() -
> int
</autodoc> 
36512       <method name=
"GetMessage" type=
"int" overloaded=
"no"> 
36513         <autodoc>GetMessage() -
> int
</autodoc> 
36515       <method name=
"GetWParam" type=
"int" overloaded=
"no"> 
36516         <autodoc>GetWParam() -
> int
</autodoc> 
36518       <method name=
"GetLParam" type=
"int" overloaded=
"no"> 
36519         <autodoc>GetLParam() -
> int
</autodoc> 
36521       <method name=
"GetListType" type=
"int" overloaded=
"no"> 
36522         <autodoc>GetListType() -
> int
</autodoc> 
36524       <method name=
"GetX" type=
"int" overloaded=
"no"> 
36525         <autodoc>GetX() -
> int
</autodoc> 
36527       <method name=
"GetY" type=
"int" overloaded=
"no"> 
36528         <autodoc>GetY() -
> int
</autodoc> 
36530       <method name=
"GetDragText" type=
"String" overloaded=
"no"> 
36531         <autodoc>GetDragText() -
> String
</autodoc> 
36533       <method name=
"GetDragAllowMove" type=
"bool" overloaded=
"no"> 
36534         <autodoc>GetDragAllowMove() -
> bool
</autodoc> 
36536       <method name=
"GetDragResult" type=
"wxDragResult" overloaded=
"no"> 
36537         <autodoc>GetDragResult() -
> int
</autodoc> 
36539       <method name=
"GetShift" type=
"bool" overloaded=
"no"> 
36540         <autodoc>GetShift() -
> bool
</autodoc> 
36542       <method name=
"GetControl" type=
"bool" overloaded=
"no"> 
36543         <autodoc>GetControl() -
> bool
</autodoc> 
36545       <method name=
"GetAlt" type=
"bool" overloaded=
"no"> 
36546         <autodoc>GetAlt() -
> bool
</autodoc> 
36548       <method name=
"Clone" type=
"Event" overloaded=
"no"> 
36549         <autodoc>Clone() -
> Event
</autodoc> 
36553 EVT_STC_CHANGE = wx.PyEventBinder( wxEVT_STC_CHANGE, 
1 )
 
36554 EVT_STC_STYLENEEDED = wx.PyEventBinder( wxEVT_STC_STYLENEEDED, 
1 )
 
36555 EVT_STC_CHARADDED = wx.PyEventBinder( wxEVT_STC_CHARADDED, 
1 )
 
36556 EVT_STC_SAVEPOINTREACHED = wx.PyEventBinder( wxEVT_STC_SAVEPOINTREACHED, 
1 )
 
36557 EVT_STC_SAVEPOINTLEFT = wx.PyEventBinder( wxEVT_STC_SAVEPOINTLEFT, 
1 )
 
36558 EVT_STC_ROMODIFYATTEMPT = wx.PyEventBinder( wxEVT_STC_ROMODIFYATTEMPT, 
1 )
 
36559 EVT_STC_KEY = wx.PyEventBinder( wxEVT_STC_KEY, 
1 )
 
36560 EVT_STC_DOUBLECLICK = wx.PyEventBinder( wxEVT_STC_DOUBLECLICK, 
1 )
 
36561 EVT_STC_UPDATEUI = wx.PyEventBinder( wxEVT_STC_UPDATEUI, 
1 )
 
36562 EVT_STC_MODIFIED = wx.PyEventBinder( wxEVT_STC_MODIFIED, 
1 )
 
36563 EVT_STC_MACRORECORD = wx.PyEventBinder( wxEVT_STC_MACRORECORD, 
1 )
 
36564 EVT_STC_MARGINCLICK = wx.PyEventBinder( wxEVT_STC_MARGINCLICK, 
1 )
 
36565 EVT_STC_NEEDSHOWN = wx.PyEventBinder( wxEVT_STC_NEEDSHOWN, 
1 )
 
36566 EVT_STC_POSCHANGED = wx.PyEventBinder( wxEVT_STC_POSCHANGED, 
1 )
 
36567 EVT_STC_PAINTED = wx.PyEventBinder( wxEVT_STC_PAINTED, 
1 )
 
36568 EVT_STC_USERLISTSELECTION = wx.PyEventBinder( wxEVT_STC_USERLISTSELECTION, 
1 )
 
36569 EVT_STC_URIDROPPED = wx.PyEventBinder( wxEVT_STC_URIDROPPED, 
1 )
 
36570 EVT_STC_DWELLSTART = wx.PyEventBinder( wxEVT_STC_DWELLSTART, 
1 )
 
36571 EVT_STC_DWELLEND = wx.PyEventBinder( wxEVT_STC_DWELLEND, 
1 )
 
36572 EVT_STC_START_DRAG = wx.PyEventBinder( wxEVT_STC_START_DRAG, 
1 )
 
36573 EVT_STC_DRAG_OVER = wx.PyEventBinder( wxEVT_STC_DRAG_OVER, 
1 )
 
36574 EVT_STC_DO_DROP = wx.PyEventBinder( wxEVT_STC_DO_DROP, 
1 )
 
36575 EVT_STC_ZOOM = wx.PyEventBinder( wxEVT_STC_ZOOM, 
1 )
 
36576 EVT_STC_HOTSPOT_CLICK = wx.PyEventBinder( wxEVT_STC_HOTSPOT_CLICK, 
1 )
 
36577 EVT_STC_HOTSPOT_DCLICK = wx.PyEventBinder( wxEVT_STC_HOTSPOT_DCLICK, 
1 )
 
36578 EVT_STC_CALLTIP_CLICK = wx.PyEventBinder( wxEVT_STC_CALLTIP_CLICK, 
1 )
 
36581   <module name=
"xrc"> 
36582     <import name=
"core"/> 
36583     <pythoncode> wx = core 
</pythoncode> 
36585 #---------------------------------------------------------------------------
 
36587     <class name=
"XmlResource" oldname=
"wxXmlResource" module=
"xrc"> 
36588       <baseclass name=
"Object"/> 
36589       <constructor name=
"XmlResource" overloaded=
"no"> 
36590         <autodoc>__init__(String filemask, int flags=XRC_USE_LOCALE) -
> XmlResource
</autodoc> 
36592           <param name=
"filemask" type=
"String" default=
""/> 
36593           <param name=
"flags" type=
"int" default=
"wxXRC_USE_LOCALE"/> 
36596       <constructor name=
"EmptyXmlResource" overloaded=
"no"> 
36597         <autodoc>EmptyXmlResource(int flags=XRC_USE_LOCALE) -
> XmlResource
</autodoc> 
36599           <param name=
"flags" type=
"int" default=
"wxXRC_USE_LOCALE"/> 
36602       <destructor name=
"~wxXmlResource" overloaded=
"no"> 
36603         <autodoc>__del__()
</autodoc> 
36605       <method name=
"Load" type=
"bool" overloaded=
"no"> 
36606         <autodoc>Load(String filemask) -
> bool
</autodoc> 
36608           <param name=
"filemask" type=
"String" default=
""/> 
36611       <method name=
"LoadFromString" type=
"bool" overloaded=
"no"> 
36612         <autodoc>LoadFromString(String data) -
> bool
</autodoc> 
36614           <param name=
"data" type=
"String" default=
""/> 
36617       <method name=
"InitAllHandlers" type=
"" overloaded=
"no"> 
36618         <autodoc>InitAllHandlers()
</autodoc> 
36620       <method name=
"AddHandler" type=
"" overloaded=
"no"> 
36621         <autodoc>AddHandler(XmlResourceHandler handler)
</autodoc> 
36623           <param name=
"handler" type=
"wxPyXmlResourceHandler" default=
""/> 
36626       <method name=
"InsertHandler" type=
"" overloaded=
"no"> 
36627         <autodoc>InsertHandler(XmlResourceHandler handler)
</autodoc> 
36629           <param name=
"handler" type=
"wxPyXmlResourceHandler" default=
""/> 
36632       <method name=
"ClearHandlers" type=
"" overloaded=
"no"> 
36633         <autodoc>ClearHandlers()
</autodoc> 
36635       <staticmethod name=
"AddSubclassFactory" type=
"" overloaded=
"no"> 
36636         <autodoc>AddSubclassFactory(XmlSubclassFactory factory)
</autodoc> 
36638           <param name=
"factory" type=
"wxPyXmlSubclassFactory" default=
""/> 
36641       <method name=
"LoadMenu" type=
"Menu" overloaded=
"no"> 
36642         <autodoc>LoadMenu(String name) -
> Menu
</autodoc> 
36644           <param name=
"name" type=
"String" default=
""/> 
36647       <method name=
"LoadMenuBar" type=
"MenuBar" overloaded=
"no"> 
36648         <autodoc>LoadMenuBar(String name) -
> MenuBar
</autodoc> 
36650           <param name=
"name" type=
"String" default=
""/> 
36653       <method name=
"LoadMenuBarOnFrame" type=
"MenuBar" overloaded=
"no"> 
36654         <autodoc>LoadMenuBarOnFrame(Window parent, String name) -
> MenuBar
</autodoc> 
36656           <param name=
"parent" type=
"Window" default=
""/> 
36657           <param name=
"name" type=
"String" default=
""/> 
36660       <method name=
"LoadToolBar" type=
"ToolBar" overloaded=
"no"> 
36661         <autodoc>LoadToolBar(Window parent, String name) -
> wxToolBar
</autodoc> 
36663           <param name=
"parent" type=
"Window" default=
""/> 
36664           <param name=
"name" type=
"String" default=
""/> 
36667       <method name=
"LoadDialog" type=
"Dialog" overloaded=
"no"> 
36668         <autodoc>LoadDialog(Window parent, String name) -
> wxDialog
</autodoc> 
36670           <param name=
"parent" type=
"Window" default=
""/> 
36671           <param name=
"name" type=
"String" default=
""/> 
36674       <method name=
"LoadOnDialog" type=
"bool" overloaded=
"no"> 
36675         <autodoc>LoadOnDialog(wxDialog dlg, Window parent, String name) -
> bool
</autodoc> 
36677           <param name=
"dlg" type=
"Dialog" default=
""/> 
36678           <param name=
"parent" type=
"Window" default=
""/> 
36679           <param name=
"name" type=
"String" default=
""/> 
36682       <method name=
"LoadPanel" type=
"Panel" overloaded=
"no"> 
36683         <autodoc>LoadPanel(Window parent, String name) -
> wxPanel
</autodoc> 
36685           <param name=
"parent" type=
"Window" default=
""/> 
36686           <param name=
"name" type=
"String" default=
""/> 
36689       <method name=
"LoadOnPanel" type=
"bool" overloaded=
"no"> 
36690         <autodoc>LoadOnPanel(wxPanel panel, Window parent, String name) -
> bool
</autodoc> 
36692           <param name=
"panel" type=
"Panel" default=
""/> 
36693           <param name=
"parent" type=
"Window" default=
""/> 
36694           <param name=
"name" type=
"String" default=
""/> 
36697       <method name=
"LoadFrame" type=
"Frame" overloaded=
"no"> 
36698         <autodoc>LoadFrame(Window parent, String name) -
> wxFrame
</autodoc> 
36700           <param name=
"parent" type=
"Window" default=
""/> 
36701           <param name=
"name" type=
"String" default=
""/> 
36704       <method name=
"LoadOnFrame" type=
"bool" overloaded=
"no"> 
36705         <autodoc>LoadOnFrame(wxFrame frame, Window parent, String name) -
> bool
</autodoc> 
36707           <param name=
"frame" type=
"Frame" default=
""/> 
36708           <param name=
"parent" type=
"Window" default=
""/> 
36709           <param name=
"name" type=
"String" default=
""/> 
36712       <method name=
"LoadObject" type=
"Object" overloaded=
"no"> 
36713         <autodoc>LoadObject(Window parent, String name, String classname) -
> Object
</autodoc> 
36715           <param name=
"parent" type=
"Window" default=
""/> 
36716           <param name=
"name" type=
"String" default=
""/> 
36717           <param name=
"classname" type=
"String" default=
""/> 
36720       <method name=
"LoadOnObject" type=
"bool" overloaded=
"no"> 
36721         <autodoc>LoadOnObject(Object instance, Window parent, String name, String classname) -
> bool
</autodoc> 
36723           <param name=
"instance" type=
"Object" default=
""/> 
36724           <param name=
"parent" type=
"Window" default=
""/> 
36725           <param name=
"name" type=
"String" default=
""/> 
36726           <param name=
"classname" type=
"String" default=
""/> 
36729       <method name=
"LoadBitmap" type=
"Bitmap" overloaded=
"no"> 
36730         <autodoc>LoadBitmap(String name) -
> Bitmap
</autodoc> 
36732           <param name=
"name" type=
"String" default=
""/> 
36735       <method name=
"LoadIcon" type=
"Icon" overloaded=
"no"> 
36736         <autodoc>LoadIcon(String name) -
> Icon
</autodoc> 
36738           <param name=
"name" type=
"String" default=
""/> 
36741       <method name=
"AttachUnknownControl" type=
"bool" overloaded=
"no"> 
36742         <autodoc>AttachUnknownControl(String name, Window control, Window parent=None) -
> bool
</autodoc> 
36744           <param name=
"name" type=
"String" default=
""/> 
36745           <param name=
"control" type=
"Window" default=
""/> 
36746           <param name=
"parent" type=
"Window" default=
"NULL"/> 
36749       <staticmethod name=
"GetXRCID" type=
"int" overloaded=
"no"> 
36750         <autodoc>GetXRCID(String str_id) -
> int
</autodoc> 
36752           <param name=
"str_id" type=
"String" default=
""/> 
36755       <method name=
"GetVersion" type=
"long" overloaded=
"no"> 
36756         <autodoc>GetVersion() -
> long
</autodoc> 
36758       <method name=
"CompareVersion" type=
"int" overloaded=
"no"> 
36759         <autodoc>CompareVersion(int major, int minor, int release, int revision) -
> int
</autodoc> 
36761           <param name=
"major" type=
"int" default=
""/> 
36762           <param name=
"minor" type=
"int" default=
""/> 
36763           <param name=
"release" type=
"int" default=
""/> 
36764           <param name=
"revision" type=
"int" default=
""/> 
36767       <staticmethod name=
"Get" type=
"XmlResource" overloaded=
"no"> 
36768         <autodoc>Get() -
> XmlResource
</autodoc> 
36770       <staticmethod name=
"Set" type=
"XmlResource" overloaded=
"no"> 
36771         <autodoc>Set(XmlResource res) -
> XmlResource
</autodoc> 
36773           <param name=
"res" type=
"XmlResource" default=
""/> 
36776       <method name=
"GetFlags" type=
"int" overloaded=
"no"> 
36777         <autodoc>GetFlags() -
> int
</autodoc> 
36779       <method name=
"SetFlags" type=
"" overloaded=
"no"> 
36780         <autodoc>SetFlags(int flags)
</autodoc> 
36782           <param name=
"flags" type=
"int" default=
""/> 
36788     return XmlResource_GetXRCID(str_id)
 
36790 def XRCCTRL(window, str_id, *ignoreargs):
 
36791     return window.FindWindowById(XRCID(str_id))
 
36794 #---------------------------------------------------------------------------
 
36796     <class name=
"XmlSubclassFactory" oldname=
"wxPyXmlSubclassFactory" module=
"xrc"> 
36797       <constructor name=
"wxPyXmlSubclassFactory" overloaded=
"no"> 
36798         <autodoc>__init__() -
> XmlSubclassFactory
</autodoc> 
36800       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
36801         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
36803           <param name=
"self" type=
"PyObject" default=
""/> 
36804           <param name=
"_class" type=
"PyObject" default=
""/> 
36809 #---------------------------------------------------------------------------
 
36811     <class name=
"XmlProperty" oldname=
"wxXmlProperty" module=
"xrc"> 
36812       <constructor name=
"XmlProperty" overloaded=
"no"> 
36813         <autodoc>__init__(String name=EmptyString, String value=EmptyString, 
 
36814     XmlProperty next=None) -
> XmlProperty
</autodoc> 
36816           <param name=
"name" type=
"String" default=
"wxPyEmptyString"/> 
36817           <param name=
"value" type=
"String" default=
"wxPyEmptyString"/> 
36818           <param name=
"next" type=
"XmlProperty" default=
"NULL"/> 
36821       <method name=
"GetName" type=
"String" overloaded=
"no"> 
36822         <autodoc>GetName() -
> String
</autodoc> 
36824       <method name=
"GetValue" type=
"String" overloaded=
"no"> 
36825         <autodoc>GetValue() -
> String
</autodoc> 
36827       <method name=
"GetNext" type=
"XmlProperty" overloaded=
"no"> 
36828         <autodoc>GetNext() -
> XmlProperty
</autodoc> 
36830       <method name=
"SetName" type=
"" overloaded=
"no"> 
36831         <autodoc>SetName(String name)
</autodoc> 
36833           <param name=
"name" type=
"String" default=
""/> 
36836       <method name=
"SetValue" type=
"" overloaded=
"no"> 
36837         <autodoc>SetValue(String value)
</autodoc> 
36839           <param name=
"value" type=
"String" default=
""/> 
36842       <method name=
"SetNext" type=
"" overloaded=
"no"> 
36843         <autodoc>SetNext(XmlProperty next)
</autodoc> 
36845           <param name=
"next" type=
"XmlProperty" default=
""/> 
36849     <class name=
"XmlNode" oldname=
"wxXmlNode" module=
"xrc"> 
36850       <constructor name=
"XmlNode" overloaded=
"no"> 
36851         <autodoc>__init__(XmlNode parent=None, int type=
0, String name=EmptyString, 
 
36852     String content=EmptyString, XmlProperty props=None, 
 
36853     XmlNode next=None) -
> XmlNode
</autodoc> 
36855           <param name=
"parent" type=
"XmlNode" default=
"NULL"/> 
36856           <param name=
"type" type=
"wxXmlNodeType" default=
"0"/> 
36857           <param name=
"name" type=
"String" default=
"wxPyEmptyString"/> 
36858           <param name=
"content" type=
"String" default=
"wxPyEmptyString"/> 
36859           <param name=
"props" type=
"XmlProperty" default=
"NULL"/> 
36860           <param name=
"next" type=
"XmlNode" default=
"NULL"/> 
36863       <constructor name=
"XmlNodeEasy" overloaded=
"no"> 
36864         <autodoc>XmlNodeEasy(int type, String name, String content=EmptyString) -
> XmlNode
</autodoc> 
36866           <param name=
"type" type=
"wxXmlNodeType" default=
""/> 
36867           <param name=
"name" type=
"String" default=
""/> 
36868           <param name=
"content" type=
"String" default=
"wxPyEmptyString"/> 
36871       <destructor name=
"~wxXmlNode" overloaded=
"no"> 
36872         <autodoc>__del__()
</autodoc> 
36874       <method name=
"AddChild" type=
"" overloaded=
"no"> 
36875         <autodoc>AddChild(XmlNode child)
</autodoc> 
36877           <param name=
"child" type=
"XmlNode" default=
""/> 
36880       <method name=
"InsertChild" type=
"" overloaded=
"no"> 
36881         <autodoc>InsertChild(XmlNode child, XmlNode before_node)
</autodoc> 
36883           <param name=
"child" type=
"XmlNode" default=
""/> 
36884           <param name=
"before_node" type=
"XmlNode" default=
""/> 
36887       <method name=
"RemoveChild" type=
"bool" overloaded=
"no"> 
36888         <autodoc>RemoveChild(XmlNode child) -
> bool
</autodoc> 
36890           <param name=
"child" type=
"XmlNode" default=
""/> 
36893       <method name=
"AddProperty" type=
"" overloaded=
"no"> 
36894         <autodoc>AddProperty(XmlProperty prop)
</autodoc> 
36896           <param name=
"prop" type=
"XmlProperty" default=
""/> 
36899       <method name=
"AddPropertyName" type=
"" overloaded=
"no"> 
36900         <autodoc>AddPropertyName(String name, String value)
</autodoc> 
36902           <param name=
"name" type=
"String" default=
""/> 
36903           <param name=
"value" type=
"String" default=
""/> 
36906       <method name=
"DeleteProperty" type=
"bool" overloaded=
"no"> 
36907         <autodoc>DeleteProperty(String name) -
> bool
</autodoc> 
36909           <param name=
"name" type=
"String" default=
""/> 
36912       <method name=
"GetType" type=
"wxXmlNodeType" overloaded=
"no"> 
36913         <autodoc>GetType() -
> int
</autodoc> 
36915       <method name=
"GetName" type=
"String" overloaded=
"no"> 
36916         <autodoc>GetName() -
> String
</autodoc> 
36918       <method name=
"GetContent" type=
"String" overloaded=
"no"> 
36919         <autodoc>GetContent() -
> String
</autodoc> 
36921       <method name=
"GetParent" type=
"XmlNode" overloaded=
"no"> 
36922         <autodoc>GetParent() -
> XmlNode
</autodoc> 
36924       <method name=
"GetNext" type=
"XmlNode" overloaded=
"no"> 
36925         <autodoc>GetNext() -
> XmlNode
</autodoc> 
36927       <method name=
"GetChildren" type=
"XmlNode" overloaded=
"no"> 
36928         <autodoc>GetChildren() -
> XmlNode
</autodoc> 
36930       <method name=
"GetProperties" type=
"XmlProperty" overloaded=
"no"> 
36931         <autodoc>GetProperties() -
> XmlProperty
</autodoc> 
36933       <method name=
"GetPropVal" type=
"String" overloaded=
"no"> 
36934         <autodoc>GetPropVal(String propName, String defaultVal) -
> String
</autodoc> 
36936           <param name=
"propName" type=
"String" default=
""/> 
36937           <param name=
"defaultVal" type=
"String" default=
""/> 
36940       <method name=
"HasProp" type=
"bool" overloaded=
"no"> 
36941         <autodoc>HasProp(String propName) -
> bool
</autodoc> 
36943           <param name=
"propName" type=
"String" default=
""/> 
36946       <method name=
"SetType" type=
"" overloaded=
"no"> 
36947         <autodoc>SetType(int type)
</autodoc> 
36949           <param name=
"type" type=
"wxXmlNodeType" default=
""/> 
36952       <method name=
"SetName" type=
"" overloaded=
"no"> 
36953         <autodoc>SetName(String name)
</autodoc> 
36955           <param name=
"name" type=
"String" default=
""/> 
36958       <method name=
"SetContent" type=
"" overloaded=
"no"> 
36959         <autodoc>SetContent(String con)
</autodoc> 
36961           <param name=
"con" type=
"String" default=
""/> 
36964       <method name=
"SetParent" type=
"" overloaded=
"no"> 
36965         <autodoc>SetParent(XmlNode parent)
</autodoc> 
36967           <param name=
"parent" type=
"XmlNode" default=
""/> 
36970       <method name=
"SetNext" type=
"" overloaded=
"no"> 
36971         <autodoc>SetNext(XmlNode next)
</autodoc> 
36973           <param name=
"next" type=
"XmlNode" default=
""/> 
36976       <method name=
"SetChildren" type=
"" overloaded=
"no"> 
36977         <autodoc>SetChildren(XmlNode child)
</autodoc> 
36979           <param name=
"child" type=
"XmlNode" default=
""/> 
36982       <method name=
"SetProperties" type=
"" overloaded=
"no"> 
36983         <autodoc>SetProperties(XmlProperty prop)
</autodoc> 
36985           <param name=
"prop" type=
"XmlProperty" default=
""/> 
36989     <class name=
"XmlDocument" oldname=
"wxXmlDocument" module=
"xrc"> 
36990       <baseclass name=
"Object"/> 
36991       <constructor name=
"XmlDocument" overloaded=
"no"> 
36992         <autodoc>__init__(String filename, String encoding=UTF8String) -
> XmlDocument
</autodoc> 
36994           <param name=
"filename" type=
"String" default=
""/> 
36995           <param name=
"encoding" type=
"String" default=
"wxPyUTF8String"/> 
36998       <constructor name=
"XmlDocumentFromStream" overloaded=
"no"> 
36999         <autodoc>XmlDocumentFromStream(InputStream stream, String encoding=UTF8String) -
> XmlDocument
</autodoc> 
37001           <param name=
"stream" type=
"wxInputStream" default=
""/> 
37002           <param name=
"encoding" type=
"String" default=
"wxPyUTF8String"/> 
37005       <constructor name=
"EmptyXmlDocument" overloaded=
"no"> 
37006         <autodoc>EmptyXmlDocument() -
> XmlDocument
</autodoc> 
37008       <destructor name=
"~wxXmlDocument" overloaded=
"no"> 
37009         <autodoc>__del__()
</autodoc> 
37011       <method name=
"Load" type=
"bool" overloaded=
"no"> 
37012         <autodoc>Load(String filename, String encoding=UTF8String) -
> bool
</autodoc> 
37014           <param name=
"filename" type=
"String" default=
""/> 
37015           <param name=
"encoding" type=
"String" default=
"wxPyUTF8String"/> 
37018       <method name=
"LoadFromStream" type=
"bool" overloaded=
"no"> 
37019         <autodoc>LoadFromStream(InputStream stream, String encoding=UTF8String) -
> bool
</autodoc> 
37021           <param name=
"stream" type=
"wxInputStream" default=
""/> 
37022           <param name=
"encoding" type=
"String" default=
"wxPyUTF8String"/> 
37025       <method name=
"Save" type=
"bool" overloaded=
"no"> 
37026         <autodoc>Save(String filename) -
> bool
</autodoc> 
37028           <param name=
"filename" type=
"String" default=
""/> 
37031       <method name=
"SaveToStream" type=
"bool" overloaded=
"no"> 
37032         <autodoc>SaveToStream(OutputStream stream) -
> bool
</autodoc> 
37034           <param name=
"stream" type=
"OutputStream" default=
""/> 
37037       <method name=
"IsOk" type=
"bool" overloaded=
"no"> 
37038         <autodoc>IsOk() -
> bool
</autodoc> 
37040       <method name=
"GetRoot" type=
"XmlNode" overloaded=
"no"> 
37041         <autodoc>GetRoot() -
> XmlNode
</autodoc> 
37043       <method name=
"GetVersion" type=
"String" overloaded=
"no"> 
37044         <autodoc>GetVersion() -
> String
</autodoc> 
37046       <method name=
"GetFileEncoding" type=
"String" overloaded=
"no"> 
37047         <autodoc>GetFileEncoding() -
> String
</autodoc> 
37049       <method name=
"SetRoot" type=
"" overloaded=
"no"> 
37050         <autodoc>SetRoot(XmlNode node)
</autodoc> 
37052           <param name=
"node" type=
"XmlNode" default=
""/> 
37055       <method name=
"SetVersion" type=
"" overloaded=
"no"> 
37056         <autodoc>SetVersion(String version)
</autodoc> 
37058           <param name=
"version" type=
"String" default=
""/> 
37061       <method name=
"SetFileEncoding" type=
"" overloaded=
"no"> 
37062         <autodoc>SetFileEncoding(String encoding)
</autodoc> 
37064           <param name=
"encoding" type=
"String" default=
""/> 
37069 #---------------------------------------------------------------------------
 
37071     <class name=
"XmlResourceHandler" oldname=
"wxPyXmlResourceHandler" module=
"xrc"> 
37072       <baseclass name=
"Object"/> 
37073       <constructor name=
"wxPyXmlResourceHandler" overloaded=
"no"> 
37074         <autodoc>__init__() -
> XmlResourceHandler
</autodoc> 
37076       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
37077         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
37079           <param name=
"self" type=
"PyObject" default=
""/> 
37080           <param name=
"_class" type=
"PyObject" default=
""/> 
37083       <method name=
"CreateResource" type=
"Object" overloaded=
"no"> 
37084         <autodoc>CreateResource(XmlNode node, Object parent, Object instance) -
> Object
</autodoc> 
37086           <param name=
"node" type=
"XmlNode" default=
""/> 
37087           <param name=
"parent" type=
"Object" default=
""/> 
37088           <param name=
"instance" type=
"Object" default=
""/> 
37091       <method name=
"SetParentResource" type=
"" overloaded=
"no"> 
37092         <autodoc>SetParentResource(XmlResource res)
</autodoc> 
37094           <param name=
"res" type=
"XmlResource" default=
""/> 
37097       <method name=
"GetResource" type=
"XmlResource" overloaded=
"no"> 
37098         <autodoc>GetResource() -
> XmlResource
</autodoc> 
37100       <method name=
"GetNode" type=
"XmlNode" overloaded=
"no"> 
37101         <autodoc>GetNode() -
> XmlNode
</autodoc> 
37103       <method name=
"GetClass" type=
"String" overloaded=
"no"> 
37104         <autodoc>GetClass() -
> String
</autodoc> 
37106       <method name=
"GetParent" type=
"Object" overloaded=
"no"> 
37107         <autodoc>GetParent() -
> Object
</autodoc> 
37109       <method name=
"GetInstance" type=
"Object" overloaded=
"no"> 
37110         <autodoc>GetInstance() -
> Object
</autodoc> 
37112       <method name=
"GetParentAsWindow" type=
"Window" overloaded=
"no"> 
37113         <autodoc>GetParentAsWindow() -
> Window
</autodoc> 
37115       <method name=
"GetInstanceAsWindow" type=
"Window" overloaded=
"no"> 
37116         <autodoc>GetInstanceAsWindow() -
> Window
</autodoc> 
37118       <method name=
"IsOfClass" type=
"bool" overloaded=
"no"> 
37119         <autodoc>IsOfClass(XmlNode node, String classname) -
> bool
</autodoc> 
37121           <param name=
"node" type=
"XmlNode" default=
""/> 
37122           <param name=
"classname" type=
"String" default=
""/> 
37125       <method name=
"GetNodeContent" type=
"String" overloaded=
"no"> 
37126         <autodoc>GetNodeContent(XmlNode node) -
> String
</autodoc> 
37128           <param name=
"node" type=
"XmlNode" default=
""/> 
37131       <method name=
"HasParam" type=
"bool" overloaded=
"no"> 
37132         <autodoc>HasParam(String param) -
> bool
</autodoc> 
37134           <param name=
"param" type=
"String" default=
""/> 
37137       <method name=
"GetParamNode" type=
"XmlNode" overloaded=
"no"> 
37138         <autodoc>GetParamNode(String param) -
> XmlNode
</autodoc> 
37140           <param name=
"param" type=
"String" default=
""/> 
37143       <method name=
"GetParamValue" type=
"String" overloaded=
"no"> 
37144         <autodoc>GetParamValue(String param) -
> String
</autodoc> 
37146           <param name=
"param" type=
"String" default=
""/> 
37149       <method name=
"AddStyle" type=
"" overloaded=
"no"> 
37150         <autodoc>AddStyle(String name, int value)
</autodoc> 
37152           <param name=
"name" type=
"String" default=
""/> 
37153           <param name=
"value" type=
"int" default=
""/> 
37156       <method name=
"AddWindowStyles" type=
"" overloaded=
"no"> 
37157         <autodoc>AddWindowStyles()
</autodoc> 
37159       <method name=
"GetStyle" type=
"int" overloaded=
"no"> 
37160         <autodoc>GetStyle(String param=StyleString, int defaults=
0) -
> int
</autodoc> 
37162           <param name=
"param" type=
"String" default=
"wxPyStyleString"/> 
37163           <param name=
"defaults" type=
"int" default=
"0"/> 
37166       <method name=
"GetText" type=
"String" overloaded=
"no"> 
37167         <autodoc>GetText(String param, bool translate=True) -
> String
</autodoc> 
37169           <param name=
"param" type=
"String" default=
""/> 
37170           <param name=
"translate" type=
"bool" default=
"True"/> 
37173       <method name=
"GetID" type=
"int" overloaded=
"no"> 
37174         <autodoc>GetID() -
> int
</autodoc> 
37176       <method name=
"GetName" type=
"String" overloaded=
"no"> 
37177         <autodoc>GetName() -
> String
</autodoc> 
37179       <method name=
"GetBool" type=
"bool" overloaded=
"no"> 
37180         <autodoc>GetBool(String param, bool defaultv=False) -
> bool
</autodoc> 
37182           <param name=
"param" type=
"String" default=
""/> 
37183           <param name=
"defaultv" type=
"bool" default=
"False"/> 
37186       <method name=
"GetLong" type=
"long" overloaded=
"no"> 
37187         <autodoc>GetLong(String param, long defaultv=
0) -
> long
</autodoc> 
37189           <param name=
"param" type=
"String" default=
""/> 
37190           <param name=
"defaultv" type=
"long" default=
"0"/> 
37193       <method name=
"GetColour" type=
"Colour" overloaded=
"no"> 
37194         <autodoc>GetColour(String param) -
> Colour
</autodoc> 
37196           <param name=
"param" type=
"String" default=
""/> 
37199       <method name=
"GetSize" type=
"Size" overloaded=
"no"> 
37200         <autodoc>GetSize(String param=SizeString) -
> Size
</autodoc> 
37202           <param name=
"param" type=
"String" default=
"wxPySizeString"/> 
37205       <method name=
"GetPosition" type=
"Point" overloaded=
"no"> 
37206         <autodoc>GetPosition(String param=PosString) -
> Point
</autodoc> 
37208           <param name=
"param" type=
"String" default=
"wxPyPosString"/> 
37211       <method name=
"GetDimension" type=
"int" overloaded=
"no"> 
37212         <autodoc>GetDimension(String param, int defaultv=
0) -
> int
</autodoc> 
37214           <param name=
"param" type=
"String" default=
""/> 
37215           <param name=
"defaultv" type=
"int" default=
"0"/> 
37218       <method name=
"GetBitmap" type=
"Bitmap" overloaded=
"no"> 
37219         <autodoc>GetBitmap(String param=BitmapString, wxArtClient defaultArtClient=wxART_OTHER, 
 
37220     Size size=DefaultSize) -
> Bitmap
</autodoc> 
37222           <param name=
"param" type=
"String" default=
"wxPyBitmapString"/> 
37223           <param name=
"defaultArtClient" type=
"wxArtClient" default=
"wxART_OTHER"/> 
37224           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
37227       <method name=
"GetIcon" type=
"Icon" overloaded=
"no"> 
37228         <autodoc>GetIcon(String param=IconString, wxArtClient defaultArtClient=wxART_OTHER, 
 
37229     Size size=DefaultSize) -
> Icon
</autodoc> 
37231           <param name=
"param" type=
"String" default=
"wxPyIconString"/> 
37232           <param name=
"defaultArtClient" type=
"wxArtClient" default=
"wxART_OTHER"/> 
37233           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
37236       <method name=
"GetFont" type=
"Font" overloaded=
"no"> 
37237         <autodoc>GetFont(String param=FontString) -
> Font
</autodoc> 
37239           <param name=
"param" type=
"String" default=
"wxPyFontString"/> 
37242       <method name=
"SetupWindow" type=
"" overloaded=
"no"> 
37243         <autodoc>SetupWindow(Window wnd)
</autodoc> 
37245           <param name=
"wnd" type=
"Window" default=
""/> 
37248       <method name=
"CreateChildren" type=
"" overloaded=
"no"> 
37249         <autodoc>CreateChildren(Object parent, bool this_hnd_only=False)
</autodoc> 
37251           <param name=
"parent" type=
"Object" default=
""/> 
37252           <param name=
"this_hnd_only" type=
"bool" default=
"False"/> 
37255       <method name=
"CreateChildrenPrivately" type=
"" overloaded=
"no"> 
37256         <autodoc>CreateChildrenPrivately(Object parent, XmlNode rootnode=None)
</autodoc> 
37258           <param name=
"parent" type=
"Object" default=
""/> 
37259           <param name=
"rootnode" type=
"XmlNode" default=
"NULL"/> 
37262       <method name=
"CreateResFromNode" type=
"Object" overloaded=
"no"> 
37263         <autodoc>CreateResFromNode(XmlNode node, Object parent, Object instance=None) -
> Object
</autodoc> 
37265           <param name=
"node" type=
"XmlNode" default=
""/> 
37266           <param name=
"parent" type=
"Object" default=
""/> 
37267           <param name=
"instance" type=
"Object" default=
"NULL"/> 
37270       <method name=
"GetCurFileSystem" type=
"FileSystem" overloaded=
"no"> 
37271         <autodoc>GetCurFileSystem() -
> FileSystem
</autodoc> 
37274     <pythoncode>#----------------------------------------------------------------------------
 
37275 # The global was removed  in favor of static accessor functions.  This is for
 
37276 # backwards compatibility:
 
37278 TheXmlResource = XmlResource_Get()
 
37281 #----------------------------------------------------------------------------
 
37282 #  Create a factory for handling the subclass property of the object tag.
 
37285 def _my_import(name):
 
37286     mod = __import__(name)
 
37287     components = name.split('.')
 
37288     for comp in components[
1:]:
 
37289         mod = getattr(mod, comp)
 
37293 class XmlSubclassFactory_Python(XmlSubclassFactory):
 
37294     def __init__(self):
 
37295         XmlSubclassFactory.__init__(self)
 
37297     def Create(self, className):
 
37298         assert className.find('.') != -
1, "Module name must be specified!"
 
37299         mname = className[:className.rfind('.')]
 
37300         cname = className[className.rfind('.')+
1:]
 
37301         module = _my_import(mname)
 
37302         klass = getattr(module, cname)
 
37307 XmlResource_AddSubclassFactory(XmlSubclassFactory_Python())
 
37309 #----------------------------------------------------------------------------
 
37312   <module name=
"gizmos"> 
37313     <import name=
"windows"/> 
37314     <import name=
"controls"/> 
37315     <pythoncode> wx = core 
</pythoncode> 
37316     <class name=
"DynamicSashSplitEvent" oldname=
"wxDynamicSashSplitEvent" module=
"gizmos"> 
37317       <baseclass name=
"CommandEvent"/> 
37318       <constructor name=
"DynamicSashSplitEvent" overloaded=
"no"> 
37319         <autodoc>__init__(Object target) -
> DynamicSashSplitEvent
</autodoc> 
37321           <param name=
"target" type=
"Object" default=
""/> 
37325     <class name=
"DynamicSashUnifyEvent" oldname=
"wxDynamicSashUnifyEvent" module=
"gizmos"> 
37326       <baseclass name=
"CommandEvent"/> 
37327       <constructor name=
"DynamicSashUnifyEvent" overloaded=
"no"> 
37328         <autodoc>__init__(Object target) -
> DynamicSashUnifyEvent
</autodoc> 
37330           <param name=
"target" type=
"Object" default=
""/> 
37334     <class name=
"DynamicSashWindow" oldname=
"wxDynamicSashWindow" module=
"gizmos"> 
37335       <baseclass name=
"Window"/> 
37336       <constructor name=
"DynamicSashWindow" overloaded=
"no"> 
37337         <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
37338     long style=wxCLIP_CHILDREN|wxDS_MANAGE_SCROLLBARS|wxDS_DRAG_CORNER, 
 
37339     String name=DynamicSashNameStr) -
> DynamicSashWindow
</autodoc> 
37341           <param name=
"parent" type=
"Window" default=
""/> 
37342           <param name=
"id" type=
"int" default=
""/> 
37343           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
37344           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
37345           <param name=
"style" type=
"long" default=
"wxCLIP_CHILDREN|wxDS_MANAGE_SCROLLBARS|wxDS_DRAG_CORNER"/> 
37346           <param name=
"name" type=
"String" default=
"wxPyDynamicSashNameStr"/> 
37349       <constructor name=
"PreDynamicSashWindow" overloaded=
"no"> 
37350         <autodoc>PreDynamicSashWindow() -
> DynamicSashWindow
</autodoc> 
37352       <method name=
"Create" type=
"bool" overloaded=
"no"> 
37353         <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
37354     long style=wxCLIP_CHILDREN|wxDS_MANAGE_SCROLLBARS|wxDS_DRAG_CORNER, 
 
37355     String name=DynamicSashNameStr) -
> bool
</autodoc> 
37357           <param name=
"parent" type=
"Window" default=
""/> 
37358           <param name=
"id" type=
"int" default=
""/> 
37359           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
37360           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
37361           <param name=
"style" type=
"long" default=
"wxCLIP_CHILDREN|wxDS_MANAGE_SCROLLBARS|wxDS_DRAG_CORNER"/> 
37362           <param name=
"name" type=
"String" default=
"wxPyDynamicSashNameStr"/> 
37365       <method name=
"GetHScrollBar" type=
"ScrollBar" overloaded=
"no"> 
37366         <autodoc>GetHScrollBar(Window child) -
> ScrollBar
</autodoc> 
37368           <param name=
"child" type=
"Window" default=
""/> 
37371       <method name=
"GetVScrollBar" type=
"ScrollBar" overloaded=
"no"> 
37372         <autodoc>GetVScrollBar(Window child) -
> ScrollBar
</autodoc> 
37374           <param name=
"child" type=
"Window" default=
""/> 
37379 EVT_DYNAMIC_SASH_SPLIT = wx.PyEventBinder( wxEVT_DYNAMIC_SASH_SPLIT, 
1 )
 
37380 EVT_DYNAMIC_SASH_UNIFY = wx.PyEventBinder( wxEVT_DYNAMIC_SASH_UNIFY, 
1 )
 
37382     <class name=
"EditableListBox" oldname=
"wxEditableListBox" module=
"gizmos"> 
37383       <baseclass name=
"Panel"/> 
37384       <constructor name=
"EditableListBox" overloaded=
"no"> 
37385         <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition, 
 
37386     Size size=DefaultSize, long style=wxEL_ALLOW_NEW|wxEL_ALLOW_EDIT|wxEL_ALLOW_DELETE, 
 
37387     String name=EditableListBoxNameStr) -
> EditableListBox
</autodoc> 
37389           <param name=
"parent" type=
"Window" default=
""/> 
37390           <param name=
"id" type=
"int" default=
""/> 
37391           <param name=
"label" type=
"String" default=
""/> 
37392           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
37393           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
37394           <param name=
"style" type=
"long" default=
"wxEL_ALLOW_NEW|wxEL_ALLOW_EDIT|wxEL_ALLOW_DELETE"/> 
37395           <param name=
"name" type=
"String" default=
"wxPyEditableListBoxNameStr"/> 
37398       <method name=
"SetStrings" type=
"" overloaded=
"no"> 
37399         <autodoc>SetStrings(wxArrayString strings)
</autodoc> 
37401           <param name=
"strings" type=
"wxArrayString" default=
""/> 
37404       <method name=
"GetStrings" type=
"PyObject" overloaded=
"no"> 
37405         <autodoc>GetStrings() -
> PyObject
</autodoc> 
37407       <method name=
"GetListCtrl" type=
"wxListCtrl" overloaded=
"no"> 
37408         <autodoc>GetListCtrl() -
> wxListCtrl
</autodoc> 
37410       <method name=
"GetDelButton" type=
"BitmapButton" overloaded=
"no"> 
37411         <autodoc>GetDelButton() -
> BitmapButton
</autodoc> 
37413       <method name=
"GetNewButton" type=
"BitmapButton" overloaded=
"no"> 
37414         <autodoc>GetNewButton() -
> BitmapButton
</autodoc> 
37416       <method name=
"GetUpButton" type=
"BitmapButton" overloaded=
"no"> 
37417         <autodoc>GetUpButton() -
> BitmapButton
</autodoc> 
37419       <method name=
"GetDownButton" type=
"BitmapButton" overloaded=
"no"> 
37420         <autodoc>GetDownButton() -
> BitmapButton
</autodoc> 
37422       <method name=
"GetEditButton" type=
"BitmapButton" overloaded=
"no"> 
37423         <autodoc>GetEditButton() -
> BitmapButton
</autodoc> 
37426     <class name=
"RemotelyScrolledTreeCtrl" oldname=
"wxRemotelyScrolledTreeCtrl" module=
"gizmos"> 
37427       <baseclass name=
"TreeCtrl"/> 
37428       <constructor name=
"RemotelyScrolledTreeCtrl" overloaded=
"no"> 
37429         <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 
37430     long style=TR_HAS_BUTTONS) -
> RemotelyScrolledTreeCtrl
</autodoc> 
37432           <param name=
"parent" type=
"Window" default=
""/> 
37433           <param name=
"id" type=
"int" default=
""/> 
37434           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
37435           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
37436           <param name=
"style" type=
"long" default=
"wxTR_HAS_BUTTONS"/> 
37439       <method name=
"HideVScrollbar" type=
"" overloaded=
"no"> 
37440         <autodoc>HideVScrollbar()
</autodoc> 
37442       <method name=
"AdjustRemoteScrollbars" type=
"" overloaded=
"no"> 
37443         <autodoc>AdjustRemoteScrollbars()
</autodoc> 
37445       <method name=
"GetScrolledWindow" type=
"ScrolledWindow" overloaded=
"no"> 
37446         <autodoc>GetScrolledWindow() -
> ScrolledWindow
</autodoc> 
37448       <method name=
"ScrollToLine" type=
"" overloaded=
"no"> 
37449         <autodoc>ScrollToLine(int posHoriz, int posVert)
</autodoc> 
37451           <param name=
"posHoriz" type=
"int" default=
""/> 
37452           <param name=
"posVert" type=
"int" default=
""/> 
37455       <method name=
"SetCompanionWindow" type=
"" overloaded=
"no"> 
37456         <autodoc>SetCompanionWindow(Window companion)
</autodoc> 
37458           <param name=
"companion" type=
"Window" default=
""/> 
37461       <method name=
"GetCompanionWindow" type=
"Window" overloaded=
"no"> 
37462         <autodoc>GetCompanionWindow() -
> Window
</autodoc> 
37465     <class name=
"TreeCompanionWindow" oldname=
"wxPyTreeCompanionWindow" module=
"gizmos"> 
37466       <baseclass name=
"Window"/> 
37467       <constructor name=
"wxPyTreeCompanionWindow" overloaded=
"no"> 
37468         <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
37469     Size size=DefaultSize, long style=
0) -
> TreeCompanionWindow
</autodoc> 
37471           <param name=
"parent" type=
"Window" default=
""/> 
37472           <param name=
"id" type=
"int" default=
"-1"/> 
37473           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
37474           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
37475           <param name=
"style" type=
"long" default=
"0"/> 
37478       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
37479         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
37481           <param name=
"self" type=
"PyObject" default=
""/> 
37482           <param name=
"_class" type=
"PyObject" default=
""/> 
37485       <method name=
"GetTreeCtrl" type=
"RemotelyScrolledTreeCtrl" overloaded=
"no"> 
37486         <autodoc>GetTreeCtrl() -
> RemotelyScrolledTreeCtrl
</autodoc> 
37488       <method name=
"SetTreeCtrl" type=
"" overloaded=
"no"> 
37489         <autodoc>SetTreeCtrl(RemotelyScrolledTreeCtrl treeCtrl)
</autodoc> 
37491           <param name=
"treeCtrl" type=
"RemotelyScrolledTreeCtrl" default=
""/> 
37495     <class name=
"ThinSplitterWindow" oldname=
"wxThinSplitterWindow" module=
"gizmos"> 
37496       <baseclass name=
"SplitterWindow"/> 
37497       <constructor name=
"ThinSplitterWindow" overloaded=
"no"> 
37498         <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
37499     Size size=DefaultSize, long style=wxSP_3D|wxCLIP_CHILDREN) -
> ThinSplitterWindow
</autodoc> 
37501           <param name=
"parent" type=
"Window" default=
""/> 
37502           <param name=
"id" type=
"int" default=
"-1"/> 
37503           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
37504           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
37505           <param name=
"style" type=
"long" default=
"wxSP_3D|wxCLIP_CHILDREN"/> 
37509     <class name=
"SplitterScrolledWindow" oldname=
"wxSplitterScrolledWindow" module=
"gizmos"> 
37510       <baseclass name=
"ScrolledWindow"/> 
37511       <constructor name=
"SplitterScrolledWindow" overloaded=
"no"> 
37512         <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
37513     Size size=DefaultSize, long style=
0) -
> SplitterScrolledWindow
</autodoc> 
37515           <param name=
"parent" type=
"Window" default=
""/> 
37516           <param name=
"id" type=
"int" default=
"-1"/> 
37517           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
37518           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
37519           <param name=
"style" type=
"long" default=
"0"/> 
37523     <class name=
"LEDNumberCtrl" oldname=
"wxLEDNumberCtrl" module=
"gizmos"> 
37524       <baseclass name=
"Control"/> 
37525       <constructor name=
"LEDNumberCtrl" overloaded=
"no"> 
37526         <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
37527     Size size=DefaultSize, long style=wxLED_ALIGN_LEFT|wxLED_DRAW_FADED) -
> LEDNumberCtrl
</autodoc> 
37529           <param name=
"parent" type=
"Window" default=
""/> 
37530           <param name=
"id" type=
"int" default=
"-1"/> 
37531           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
37532           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
37533           <param name=
"style" type=
"long" default=
"wxLED_ALIGN_LEFT|wxLED_DRAW_FADED"/> 
37536       <constructor name=
"PreLEDNumberCtrl" overloaded=
"no"> 
37537         <autodoc>PreLEDNumberCtrl() -
> LEDNumberCtrl
</autodoc> 
37539       <method name=
"Create" type=
"bool" overloaded=
"no"> 
37540         <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
37541     Size size=DefaultSize, long style=wxLED_ALIGN_LEFT|wxLED_DRAW_FADED) -
> bool
</autodoc> 
37543           <param name=
"parent" type=
"Window" default=
""/> 
37544           <param name=
"id" type=
"int" default=
"-1"/> 
37545           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
37546           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
37547           <param name=
"style" type=
"long" default=
"wxLED_ALIGN_LEFT|wxLED_DRAW_FADED"/> 
37550       <method name=
"GetAlignment" type=
"wxLEDValueAlign" overloaded=
"no"> 
37551         <autodoc>GetAlignment() -
> int
</autodoc> 
37553       <method name=
"GetDrawFaded" type=
"bool" overloaded=
"no"> 
37554         <autodoc>GetDrawFaded() -
> bool
</autodoc> 
37556       <method name=
"GetValue" type=
"String" overloaded=
"no"> 
37557         <autodoc>GetValue() -
> String
</autodoc> 
37559       <method name=
"SetAlignment" type=
"" overloaded=
"no"> 
37560         <autodoc>SetAlignment(int Alignment, bool Redraw=true)
</autodoc> 
37562           <param name=
"Alignment" type=
"wxLEDValueAlign" default=
""/> 
37563           <param name=
"Redraw" type=
"bool" default=
"true"/> 
37566       <method name=
"SetDrawFaded" type=
"" overloaded=
"no"> 
37567         <autodoc>SetDrawFaded(bool DrawFaded, bool Redraw=true)
</autodoc> 
37569           <param name=
"DrawFaded" type=
"bool" default=
""/> 
37570           <param name=
"Redraw" type=
"bool" default=
"true"/> 
37573       <method name=
"SetValue" type=
"" overloaded=
"no"> 
37574         <autodoc>SetValue(String Value, bool Redraw=true)
</autodoc> 
37576           <param name=
"Value" type=
"String" default=
""/> 
37577           <param name=
"Redraw" type=
"bool" default=
"true"/> 
37581     <class name=
"TreeListColumnInfo" oldname=
"wxTreeListColumnInfo" module=
"gizmos"> 
37582       <baseclass name=
"Object"/> 
37583       <constructor name=
"TreeListColumnInfo" overloaded=
"no"> 
37584         <autodoc>__init__(String text=EmptyString, int image=-
1, size_t width=
100, 
 
37585     int alignment=TL_ALIGN_LEFT) -
> TreeListColumnInfo
</autodoc> 
37587           <param name=
"text" type=
"String" default=
"wxPyEmptyString"/> 
37588           <param name=
"image" type=
"int" default=
"-1"/> 
37589           <param name=
"width" type=
"size_t" default=
"100"/> 
37590           <param name=
"alignment" type=
"wxTreeListColumnAlign" default=
"wxTL_ALIGN_LEFT"/> 
37593       <method name=
"GetAlignment" type=
"wxTreeListColumnAlign" overloaded=
"no"> 
37594         <autodoc>GetAlignment() -
> int
</autodoc> 
37596       <method name=
"GetText" type=
"String" overloaded=
"no"> 
37597         <autodoc>GetText() -
> String
</autodoc> 
37599       <method name=
"GetImage" type=
"int" overloaded=
"no"> 
37600         <autodoc>GetImage() -
> int
</autodoc> 
37602       <method name=
"GetSelectedImage" type=
"int" overloaded=
"no"> 
37603         <autodoc>GetSelectedImage() -
> int
</autodoc> 
37605       <method name=
"GetWidth" type=
"size_t" overloaded=
"no"> 
37606         <autodoc>GetWidth() -
> size_t
</autodoc> 
37608       <method name=
"SetAlignment" type=
"" overloaded=
"no"> 
37609         <autodoc>SetAlignment(int alignment)
</autodoc> 
37611           <param name=
"alignment" type=
"wxTreeListColumnAlign" default=
""/> 
37614       <method name=
"SetText" type=
"" overloaded=
"no"> 
37615         <autodoc>SetText(String text)
</autodoc> 
37617           <param name=
"text" type=
"String" default=
""/> 
37620       <method name=
"SetImage" type=
"" overloaded=
"no"> 
37621         <autodoc>SetImage(int image)
</autodoc> 
37623           <param name=
"image" type=
"int" default=
""/> 
37626       <method name=
"SetSelectedImage" type=
"" overloaded=
"no"> 
37627         <autodoc>SetSelectedImage(int image)
</autodoc> 
37629           <param name=
"image" type=
"int" default=
""/> 
37632       <method name=
"SetWidth" type=
"" overloaded=
"no"> 
37633         <autodoc>SetWidth(size_t with)
</autodoc> 
37635           <param name=
"with" type=
"size_t" default=
""/> 
37639     <class name=
"TreeListCtrl" oldname=
"wxPyTreeListCtrl" module=
"gizmos"> 
37640       <baseclass name=
"Control"/> 
37641       <constructor name=
"wxPyTreeListCtrl" overloaded=
"no"> 
37642         <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
37643     Size size=DefaultSize, long style=TR_DEFAULT_STYLE, 
 
37644     Validator validator=DefaultValidator, 
 
37645     String name=TreeListCtrlNameStr) -
> TreeListCtrl
</autodoc> 
37647           <param name=
"parent" type=
"Window" default=
""/> 
37648           <param name=
"id" type=
"int" default=
"-1"/> 
37649           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
37650           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
37651           <param name=
"style" type=
"long" default=
"wxTR_DEFAULT_STYLE"/> 
37652           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
37653           <param name=
"name" type=
"String" default=
"wxPyTreeListCtrlNameStr"/> 
37656       <constructor name=
"PreTreeListCtrl" overloaded=
"no"> 
37657         <autodoc>PreTreeListCtrl() -
> TreeListCtrl
</autodoc> 
37659       <method name=
"Create" type=
"bool" overloaded=
"no"> 
37660         <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition, 
 
37661     Size size=DefaultSize, long style=TR_DEFAULT_STYLE, 
 
37662     Validator validator=DefaultValidator, 
 
37663     String name=TreeListCtrlNameStr) -
> bool
</autodoc> 
37664         <docstring>Do the 
2nd phase and create the GUI control.
</docstring> 
37666           <param name=
"parent" type=
"Window" default=
""/> 
37667           <param name=
"id" type=
"int" default=
"-1"/> 
37668           <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/> 
37669           <param name=
"size" type=
"Size" default=
"wxDefaultSize"/> 
37670           <param name=
"style" type=
"long" default=
"wxTR_DEFAULT_STYLE"/> 
37671           <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/> 
37672           <param name=
"name" type=
"String" default=
"wxPyTreeListCtrlNameStr"/> 
37675       <method name=
"_setCallbackInfo" type=
"" overloaded=
"no"> 
37676         <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc> 
37678           <param name=
"self" type=
"PyObject" default=
""/> 
37679           <param name=
"_class" type=
"PyObject" default=
""/> 
37682       <method name=
"GetCount" type=
"size_t" overloaded=
"no"> 
37683         <autodoc>GetCount() -
> size_t
</autodoc> 
37685       <method name=
"GetIndent" type=
"unsigned int" overloaded=
"no"> 
37686         <autodoc>GetIndent() -
> unsigned int
</autodoc> 
37688       <method name=
"SetIndent" type=
"" overloaded=
"no"> 
37689         <autodoc>SetIndent(unsigned int indent)
</autodoc> 
37691           <param name=
"indent" type=
"unsigned int" default=
""/> 
37694       <method name=
"GetSpacing" type=
"unsigned int" overloaded=
"no"> 
37695         <autodoc>GetSpacing() -
> unsigned int
</autodoc> 
37697       <method name=
"SetSpacing" type=
"" overloaded=
"no"> 
37698         <autodoc>SetSpacing(unsigned int spacing)
</autodoc> 
37700           <param name=
"spacing" type=
"unsigned int" default=
""/> 
37703       <method name=
"GetLineSpacing" type=
"unsigned int" overloaded=
"no"> 
37704         <autodoc>GetLineSpacing() -
> unsigned int
</autodoc> 
37706       <method name=
"SetLineSpacing" type=
"" overloaded=
"no"> 
37707         <autodoc>SetLineSpacing(unsigned int spacing)
</autodoc> 
37709           <param name=
"spacing" type=
"unsigned int" default=
""/> 
37712       <method name=
"GetImageList" type=
"ImageList" overloaded=
"no"> 
37713         <autodoc>GetImageList() -
> ImageList
</autodoc> 
37715       <method name=
"GetStateImageList" type=
"ImageList" overloaded=
"no"> 
37716         <autodoc>GetStateImageList() -
> ImageList
</autodoc> 
37718       <method name=
"GetButtonsImageList" type=
"ImageList" overloaded=
"no"> 
37719         <autodoc>GetButtonsImageList() -
> ImageList
</autodoc> 
37721       <method name=
"SetImageList" type=
"" overloaded=
"no"> 
37722         <autodoc>SetImageList(ImageList imageList)
</autodoc> 
37724           <param name=
"imageList" type=
"ImageList" default=
""/> 
37727       <method name=
"SetStateImageList" type=
"" overloaded=
"no"> 
37728         <autodoc>SetStateImageList(ImageList imageList)
</autodoc> 
37730           <param name=
"imageList" type=
"ImageList" default=
""/> 
37733       <method name=
"SetButtonsImageList" type=
"" overloaded=
"no"> 
37734         <autodoc>SetButtonsImageList(ImageList imageList)
</autodoc> 
37736           <param name=
"imageList" type=
"ImageList" default=
""/> 
37739       <method name=
"AssignImageList" type=
"" overloaded=
"no"> 
37740         <autodoc>AssignImageList(ImageList imageList)
</autodoc> 
37742           <param name=
"imageList" type=
"ImageList" default=
""/> 
37745       <method name=
"AssignStateImageList" type=
"" overloaded=
"no"> 
37746         <autodoc>AssignStateImageList(ImageList imageList)
</autodoc> 
37748           <param name=
"imageList" type=
"ImageList" default=
""/> 
37751       <method name=
"AssignButtonsImageList" type=
"" overloaded=
"no"> 
37752         <autodoc>AssignButtonsImageList(ImageList imageList)
</autodoc> 
37754           <param name=
"imageList" type=
"ImageList" default=
""/> 
37757       <method name=
"AddColumn" type=
"" overloaded=
"no"> 
37758         <autodoc>AddColumn(String text)
</autodoc> 
37760           <param name=
"text" type=
"String" default=
""/> 
37763       <method name=
"AddColumnInfo" type=
"" overloaded=
"no"> 
37764         <autodoc>AddColumnInfo(TreeListColumnInfo col)
</autodoc> 
37766           <param name=
"col" type=
"TreeListColumnInfo" default=
""/> 
37769       <method name=
"InsertColumn" type=
"" overloaded=
"no"> 
37770         <autodoc>InsertColumn(size_t before, String text)
</autodoc> 
37772           <param name=
"before" type=
"size_t" default=
""/> 
37773           <param name=
"text" type=
"String" default=
""/> 
37776       <method name=
"InsertColumnInfo" type=
"" overloaded=
"no"> 
37777         <autodoc>InsertColumnInfo(size_t before, TreeListColumnInfo col)
</autodoc> 
37779           <param name=
"before" type=
"size_t" default=
""/> 
37780           <param name=
"col" type=
"TreeListColumnInfo" default=
""/> 
37783       <method name=
"RemoveColumn" type=
"" overloaded=
"no"> 
37784         <autodoc>RemoveColumn(size_t column)
</autodoc> 
37786           <param name=
"column" type=
"size_t" default=
""/> 
37789       <method name=
"GetColumnCount" type=
"size_t" overloaded=
"no"> 
37790         <autodoc>GetColumnCount() -
> size_t
</autodoc> 
37792       <method name=
"SetColumnWidth" type=
"" overloaded=
"no"> 
37793         <autodoc>SetColumnWidth(size_t column, size_t width)
</autodoc> 
37795           <param name=
"column" type=
"size_t" default=
""/> 
37796           <param name=
"width" type=
"size_t" default=
""/> 
37799       <method name=
"GetColumnWidth" type=
"int" overloaded=
"no"> 
37800         <autodoc>GetColumnWidth(size_t column) -
> int
</autodoc> 
37802           <param name=
"column" type=
"size_t" default=
""/> 
37805       <method name=
"SetMainColumn" type=
"" overloaded=
"no"> 
37806         <autodoc>SetMainColumn(size_t column)
</autodoc> 
37808           <param name=
"column" type=
"size_t" default=
""/> 
37811       <method name=
"GetMainColumn" type=
"size_t" overloaded=
"no"> 
37812         <autodoc>GetMainColumn() -
> size_t
</autodoc> 
37814       <method name=
"SetColumnText" type=
"" overloaded=
"no"> 
37815         <autodoc>SetColumnText(size_t column, String text)
</autodoc> 
37817           <param name=
"column" type=
"size_t" default=
""/> 
37818           <param name=
"text" type=
"String" default=
""/> 
37821       <method name=
"GetColumnText" type=
"String" overloaded=
"no"> 
37822         <autodoc>GetColumnText(size_t column) -
> String
</autodoc> 
37824           <param name=
"column" type=
"size_t" default=
""/> 
37827       <method name=
"SetColumn" type=
"" overloaded=
"no"> 
37828         <autodoc>SetColumn(size_t column, TreeListColumnInfo info)
</autodoc> 
37830           <param name=
"column" type=
"size_t" default=
""/> 
37831           <param name=
"info" type=
"TreeListColumnInfo" default=
""/> 
37834       <method name=
"GetColumn" type=
"TreeListColumnInfo" overloaded=
"no"> 
37835         <autodoc>GetColumn(size_t column) -
> TreeListColumnInfo
</autodoc> 
37837           <param name=
"column" type=
"size_t" default=
""/> 
37840       <method name=
"SetColumnAlignment" type=
"" overloaded=
"no"> 
37841         <autodoc>SetColumnAlignment(size_t column, int align)
</autodoc> 
37843           <param name=
"column" type=
"size_t" default=
""/> 
37844           <param name=
"align" type=
"wxTreeListColumnAlign" default=
""/> 
37847       <method name=
"GetColumnAlignment" type=
"wxTreeListColumnAlign" overloaded=
"no"> 
37848         <autodoc>GetColumnAlignment(size_t column) -
> int
</autodoc> 
37850           <param name=
"column" type=
"size_t" default=
""/> 
37853       <method name=
"SetColumnImage" type=
"" overloaded=
"no"> 
37854         <autodoc>SetColumnImage(size_t column, int image)
</autodoc> 
37856           <param name=
"column" type=
"size_t" default=
""/> 
37857           <param name=
"image" type=
"int" default=
""/> 
37860       <method name=
"GetColumnImage" type=
"int" overloaded=
"no"> 
37861         <autodoc>GetColumnImage(size_t column) -
> int
</autodoc> 
37863           <param name=
"column" type=
"size_t" default=
""/> 
37866       <method name=
"GetItemText" type=
"String" overloaded=
"no"> 
37867         <autodoc>GetItemText(TreeItemId item, int column=-
1) -
> String
</autodoc> 
37869           <param name=
"item" type=
"TreeItemId" default=
""/> 
37870           <param name=
"column" type=
"int" default=
"-1"/> 
37873       <method name=
"GetItemImage" type=
"int" overloaded=
"no"> 
37874         <autodoc>GetItemImage(TreeItemId item, int column=-
1, int which=TreeItemIcon_Normal) -
> int
</autodoc> 
37876           <param name=
"item" type=
"TreeItemId" default=
""/> 
37877           <param name=
"column" type=
"int" default=
"-1"/> 
37878           <param name=
"which" type=
"wxTreeItemIcon" default=
"wxTreeItemIcon_Normal"/> 
37881       <method name=
"SetItemText" type=
"" overloaded=
"no"> 
37882         <autodoc>SetItemText(TreeItemId item, String text, int column=-
1)
</autodoc> 
37884           <param name=
"item" type=
"TreeItemId" default=
""/> 
37885           <param name=
"text" type=
"String" default=
""/> 
37886           <param name=
"column" type=
"int" default=
"-1"/> 
37889       <method name=
"SetItemImage" type=
"" overloaded=
"no"> 
37890         <autodoc>SetItemImage(TreeItemId item, int image, int column=-
1, int which=TreeItemIcon_Normal)
</autodoc> 
37892           <param name=
"item" type=
"TreeItemId" default=
""/> 
37893           <param name=
"image" type=
"int" default=
""/> 
37894           <param name=
"column" type=
"int" default=
"-1"/> 
37895           <param name=
"which" type=
"wxTreeItemIcon" default=
"wxTreeItemIcon_Normal"/> 
37898       <method name=
"GetItemData" type=
"TreeItemData" overloaded=
"no"> 
37899         <autodoc>GetItemData(TreeItemId item) -
> TreeItemData
</autodoc> 
37901           <param name=
"item" type=
"TreeItemId" default=
""/> 
37904       <method name=
"SetItemData" type=
"" overloaded=
"no"> 
37905         <autodoc>SetItemData(TreeItemId item, TreeItemData data)
</autodoc> 
37907           <param name=
"item" type=
"TreeItemId" default=
""/> 
37908           <param name=
"data" type=
"TreeItemData" default=
""/> 
37911       <method name=
"GetItemPyData" type=
"PyObject" overloaded=
"no"> 
37912         <autodoc>GetItemPyData(TreeItemId item) -
> PyObject
</autodoc> 
37914           <param name=
"item" type=
"TreeItemId" default=
""/> 
37917       <method name=
"SetItemPyData" type=
"" overloaded=
"no"> 
37918         <autodoc>SetItemPyData(TreeItemId item, PyObject obj)
</autodoc> 
37920           <param name=
"item" type=
"TreeItemId" default=
""/> 
37921           <param name=
"obj" type=
"PyObject" default=
""/> 
37924       <method name=
"SetItemHasChildren" type=
"" overloaded=
"no"> 
37925         <autodoc>SetItemHasChildren(TreeItemId item, bool has=True)
</autodoc> 
37927           <param name=
"item" type=
"TreeItemId" default=
""/> 
37928           <param name=
"has" type=
"bool" default=
"True"/> 
37931       <method name=
"SetItemBold" type=
"" overloaded=
"no"> 
37932         <autodoc>SetItemBold(TreeItemId item, bool bold=True)
</autodoc> 
37934           <param name=
"item" type=
"TreeItemId" default=
""/> 
37935           <param name=
"bold" type=
"bool" default=
"True"/> 
37938       <method name=
"SetItemTextColour" type=
"" overloaded=
"no"> 
37939         <autodoc>SetItemTextColour(TreeItemId item, Colour col)
</autodoc> 
37941           <param name=
"item" type=
"TreeItemId" default=
""/> 
37942           <param name=
"col" type=
"Colour" default=
""/> 
37945       <method name=
"SetItemBackgroundColour" type=
"" overloaded=
"no"> 
37946         <autodoc>SetItemBackgroundColour(TreeItemId item, Colour col)
</autodoc> 
37948           <param name=
"item" type=
"TreeItemId" default=
""/> 
37949           <param name=
"col" type=
"Colour" default=
""/> 
37952       <method name=
"SetItemFont" type=
"" overloaded=
"no"> 
37953         <autodoc>SetItemFont(TreeItemId item, Font font)
</autodoc> 
37955           <param name=
"item" type=
"TreeItemId" default=
""/> 
37956           <param name=
"font" type=
"Font" default=
""/> 
37959       <method name=
"GetItemBold" type=
"bool" overloaded=
"no"> 
37960         <autodoc>GetItemBold(TreeItemId item) -
> bool
</autodoc> 
37962           <param name=
"item" type=
"TreeItemId" default=
""/> 
37965       <method name=
"GetItemTextColour" type=
"Colour" overloaded=
"no"> 
37966         <autodoc>GetItemTextColour(TreeItemId item) -
> Colour
</autodoc> 
37968           <param name=
"item" type=
"TreeItemId" default=
""/> 
37971       <method name=
"GetItemBackgroundColour" type=
"Colour" overloaded=
"no"> 
37972         <autodoc>GetItemBackgroundColour(TreeItemId item) -
> Colour
</autodoc> 
37974           <param name=
"item" type=
"TreeItemId" default=
""/> 
37977       <method name=
"GetItemFont" type=
"Font" overloaded=
"no"> 
37978         <autodoc>GetItemFont(TreeItemId item) -
> Font
</autodoc> 
37980           <param name=
"item" type=
"TreeItemId" default=
""/> 
37983       <method name=
"IsVisible" type=
"bool" overloaded=
"no"> 
37984         <autodoc>IsVisible(TreeItemId item) -
> bool
</autodoc> 
37986           <param name=
"item" type=
"TreeItemId" default=
""/> 
37989       <method name=
"ItemHasChildren" type=
"bool" overloaded=
"no"> 
37990         <autodoc>ItemHasChildren(TreeItemId item) -
> bool
</autodoc> 
37992           <param name=
"item" type=
"TreeItemId" default=
""/> 
37995       <method name=
"IsExpanded" type=
"bool" overloaded=
"no"> 
37996         <autodoc>IsExpanded(TreeItemId item) -
> bool
</autodoc> 
37998           <param name=
"item" type=
"TreeItemId" default=
""/> 
38001       <method name=
"IsSelected" type=
"bool" overloaded=
"no"> 
38002         <autodoc>IsSelected(TreeItemId item) -
> bool
</autodoc> 
38004           <param name=
"item" type=
"TreeItemId" default=
""/> 
38007       <method name=
"IsBold" type=
"bool" overloaded=
"no"> 
38008         <autodoc>IsBold(TreeItemId item) -
> bool
</autodoc> 
38010           <param name=
"item" type=
"TreeItemId" default=
""/> 
38013       <method name=
"GetChildrenCount" type=
"size_t" overloaded=
"no"> 
38014         <autodoc>GetChildrenCount(TreeItemId item, bool recursively=True) -
> size_t
</autodoc> 
38016           <param name=
"item" type=
"TreeItemId" default=
""/> 
38017           <param name=
"recursively" type=
"bool" default=
"True"/> 
38020       <method name=
"GetRootItem" type=
"TreeItemId" overloaded=
"no"> 
38021         <autodoc>GetRootItem() -
> TreeItemId
</autodoc> 
38023       <method name=
"GetSelection" type=
"TreeItemId" overloaded=
"no"> 
38024         <autodoc>GetSelection() -
> TreeItemId
</autodoc> 
38026       <method name=
"GetSelections" type=
"PyObject" overloaded=
"no"> 
38027         <autodoc>GetSelections() -
> PyObject
</autodoc> 
38029       <method name=
"GetItemParent" type=
"TreeItemId" overloaded=
"no"> 
38030         <autodoc>GetItemParent(TreeItemId item) -
> TreeItemId
</autodoc> 
38032           <param name=
"item" type=
"TreeItemId" default=
""/> 
38035       <method name=
"GetFirstChild" type=
"PyObject" overloaded=
"no"> 
38036         <autodoc>GetFirstChild(TreeItemId item) -
> PyObject
</autodoc> 
38038           <param name=
"item" type=
"TreeItemId" default=
""/> 
38041       <method name=
"GetNextChild" type=
"PyObject" overloaded=
"no"> 
38042         <autodoc>GetNextChild(TreeItemId item, long cookie) -
> PyObject
</autodoc> 
38044           <param name=
"item" type=
"TreeItemId" default=
""/> 
38045           <param name=
"cookie" type=
"long" default=
""/> 
38048       <method name=
"GetLastChild" type=
"TreeItemId" overloaded=
"no"> 
38049         <autodoc>GetLastChild(TreeItemId item) -
> TreeItemId
</autodoc> 
38051           <param name=
"item" type=
"TreeItemId" default=
""/> 
38054       <method name=
"GetNextSibling" type=
"TreeItemId" overloaded=
"no"> 
38055         <autodoc>GetNextSibling(TreeItemId item) -
> TreeItemId
</autodoc> 
38057           <param name=
"item" type=
"TreeItemId" default=
""/> 
38060       <method name=
"GetPrevSibling" type=
"TreeItemId" overloaded=
"no"> 
38061         <autodoc>GetPrevSibling(TreeItemId item) -
> TreeItemId
</autodoc> 
38063           <param name=
"item" type=
"TreeItemId" default=
""/> 
38066       <method name=
"GetFirstVisibleItem" type=
"TreeItemId" overloaded=
"no"> 
38067         <autodoc>GetFirstVisibleItem() -
> TreeItemId
</autodoc> 
38069       <method name=
"GetNextVisible" type=
"TreeItemId" overloaded=
"no"> 
38070         <autodoc>GetNextVisible(TreeItemId item) -
> TreeItemId
</autodoc> 
38072           <param name=
"item" type=
"TreeItemId" default=
""/> 
38075       <method name=
"GetPrevVisible" type=
"TreeItemId" overloaded=
"no"> 
38076         <autodoc>GetPrevVisible(TreeItemId item) -
> TreeItemId
</autodoc> 
38078           <param name=
"item" type=
"TreeItemId" default=
""/> 
38081       <method name=
"GetNext" type=
"TreeItemId" overloaded=
"no"> 
38082         <autodoc>GetNext(TreeItemId item) -
> TreeItemId
</autodoc> 
38084           <param name=
"item" type=
"TreeItemId" default=
""/> 
38087       <method name=
"AddRoot" type=
"TreeItemId" overloaded=
"no"> 
38088         <autodoc>AddRoot(String text, int image=-
1, int selectedImage=-
1, TreeItemData data=None) -
> TreeItemId
</autodoc> 
38090           <param name=
"text" type=
"String" default=
""/> 
38091           <param name=
"image" type=
"int" default=
"-1"/> 
38092           <param name=
"selectedImage" type=
"int" default=
"-1"/> 
38093           <param name=
"data" type=
"TreeItemData" default=
"NULL"/> 
38096       <method name=
"PrependItem" type=
"TreeItemId" overloaded=
"no"> 
38097         <autodoc>PrependItem(TreeItemId parent, String text, int image=-
1, int selectedImage=-
1, 
 
38098     TreeItemData data=None) -
> TreeItemId
</autodoc> 
38100           <param name=
"parent" type=
"TreeItemId" default=
""/> 
38101           <param name=
"text" type=
"String" default=
""/> 
38102           <param name=
"image" type=
"int" default=
"-1"/> 
38103           <param name=
"selectedImage" type=
"int" default=
"-1"/> 
38104           <param name=
"data" type=
"TreeItemData" default=
"NULL"/> 
38107       <method name=
"InsertItem" type=
"TreeItemId" overloaded=
"no"> 
38108         <autodoc>InsertItem(TreeItemId parent, TreeItemId idPrevious, String text, 
 
38109     int image=-
1, int selectedImage=-
1, TreeItemData data=None) -
> TreeItemId
</autodoc> 
38111           <param name=
"parent" type=
"TreeItemId" default=
""/> 
38112           <param name=
"idPrevious" type=
"TreeItemId" default=
""/> 
38113           <param name=
"text" type=
"String" default=
""/> 
38114           <param name=
"image" type=
"int" default=
"-1"/> 
38115           <param name=
"selectedImage" type=
"int" default=
"-1"/> 
38116           <param name=
"data" type=
"TreeItemData" default=
"NULL"/> 
38119       <method name=
"InsertItemBefore" type=
"TreeItemId" overloaded=
"no"> 
38120         <autodoc>InsertItemBefore(TreeItemId parent, size_t index, String text, int image=-
1, 
 
38121     int selectedImage=-
1, TreeItemData data=None) -
> TreeItemId
</autodoc> 
38123           <param name=
"parent" type=
"TreeItemId" default=
""/> 
38124           <param name=
"index" type=
"size_t" default=
""/> 
38125           <param name=
"text" type=
"String" default=
""/> 
38126           <param name=
"image" type=
"int" default=
"-1"/> 
38127           <param name=
"selectedImage" type=
"int" default=
"-1"/> 
38128           <param name=
"data" type=
"TreeItemData" default=
"NULL"/> 
38131       <method name=
"AppendItem" type=
"TreeItemId" overloaded=
"no"> 
38132         <autodoc>AppendItem(TreeItemId parent, String text, int image=-
1, int selectedImage=-
1, 
 
38133     TreeItemData data=None) -
> TreeItemId
</autodoc> 
38135           <param name=
"parent" type=
"TreeItemId" default=
""/> 
38136           <param name=
"text" type=
"String" default=
""/> 
38137           <param name=
"image" type=
"int" default=
"-1"/> 
38138           <param name=
"selectedImage" type=
"int" default=
"-1"/> 
38139           <param name=
"data" type=
"TreeItemData" default=
"NULL"/> 
38142       <method name=
"Delete" type=
"" overloaded=
"no"> 
38143         <autodoc>Delete(TreeItemId item)
</autodoc> 
38145           <param name=
"item" type=
"TreeItemId" default=
""/> 
38148       <method name=
"DeleteChildren" type=
"" overloaded=
"no"> 
38149         <autodoc>DeleteChildren(TreeItemId item)
</autodoc> 
38151           <param name=
"item" type=
"TreeItemId" default=
""/> 
38154       <method name=
"DeleteAllItems" type=
"" overloaded=
"no"> 
38155         <autodoc>DeleteAllItems()
</autodoc> 
38157       <method name=
"Expand" type=
"" overloaded=
"no"> 
38158         <autodoc>Expand(TreeItemId item)
</autodoc> 
38160           <param name=
"item" type=
"TreeItemId" default=
""/> 
38163       <method name=
"ExpandAll" type=
"" overloaded=
"no"> 
38164         <autodoc>ExpandAll(TreeItemId item)
</autodoc> 
38166           <param name=
"item" type=
"TreeItemId" default=
""/> 
38169       <method name=
"Collapse" type=
"" overloaded=
"no"> 
38170         <autodoc>Collapse(TreeItemId item)
</autodoc> 
38172           <param name=
"item" type=
"TreeItemId" default=
""/> 
38175       <method name=
"CollapseAndReset" type=
"" overloaded=
"no"> 
38176         <autodoc>CollapseAndReset(TreeItemId item)
</autodoc> 
38178           <param name=
"item" type=
"TreeItemId" default=
""/> 
38181       <method name=
"Toggle" type=
"" overloaded=
"no"> 
38182         <autodoc>Toggle(TreeItemId item)
</autodoc> 
38184           <param name=
"item" type=
"TreeItemId" default=
""/> 
38187       <method name=
"Unselect" type=
"" overloaded=
"no"> 
38188         <autodoc>Unselect()
</autodoc> 
38190       <method name=
"UnselectAll" type=
"" overloaded=
"no"> 
38191         <autodoc>UnselectAll()
</autodoc> 
38193       <method name=
"SelectItem" type=
"" overloaded=
"no"> 
38194         <autodoc>SelectItem(TreeItemId item, bool unselect_others=True, bool extended_select=False)
</autodoc> 
38196           <param name=
"item" type=
"TreeItemId" default=
""/> 
38197           <param name=
"unselect_others" type=
"bool" default=
"True"/> 
38198           <param name=
"extended_select" type=
"bool" default=
"False"/> 
38201       <method name=
"EnsureVisible" type=
"" overloaded=
"no"> 
38202         <autodoc>EnsureVisible(TreeItemId item)
</autodoc> 
38204           <param name=
"item" type=
"TreeItemId" default=
""/> 
38207       <method name=
"ScrollTo" type=
"" overloaded=
"no"> 
38208         <autodoc>ScrollTo(TreeItemId item)
</autodoc> 
38210           <param name=
"item" type=
"TreeItemId" default=
""/> 
38213       <method name=
"HitTest" type=
"TreeItemId" overloaded=
"no"> 
38214         <autodoc>HitTest(Point point, int OUTPUT, int OUTPUT) -
> TreeItemId
</autodoc> 
38216           <param name=
"point" type=
"Point" default=
""/> 
38217           <param name=
"OUTPUT" type=
"int" default=
""/> 
38218           <param name=
"OUTPUT" type=
"int" default=
""/> 
38221       <method name=
"GetBoundingRect" type=
"PyObject" overloaded=
"no"> 
38222         <autodoc>GetBoundingRect(TreeItemId item, bool textOnly=False) -
> PyObject
</autodoc> 
38224           <param name=
"item" type=
"TreeItemId" default=
""/> 
38225           <param name=
"textOnly" type=
"bool" default=
"False"/> 
38228       <method name=
"EditLabel" type=
"" overloaded=
"no"> 
38229         <autodoc>EditLabel(TreeItemId item)
</autodoc> 
38231           <param name=
"item" type=
"TreeItemId" default=
""/> 
38234       <method name=
"Edit" type=
"" overloaded=
"no"> 
38235         <autodoc>Edit(TreeItemId item)
</autodoc> 
38237           <param name=
"item" type=
"TreeItemId" default=
""/> 
38240       <method name=
"SortChildren" type=
"" overloaded=
"no"> 
38241         <autodoc>SortChildren(TreeItemId item)
</autodoc> 
38243           <param name=
"item" type=
"TreeItemId" default=
""/> 
38246       <method name=
"GetItemSelectedImage" type=
"int" overloaded=
"no"> 
38247         <autodoc>GetItemSelectedImage(TreeItemId item) -
> int
</autodoc> 
38249           <param name=
"item" type=
"TreeItemId" default=
""/> 
38252       <method name=
"SetItemSelectedImage" type=
"" overloaded=
"no"> 
38253         <autodoc>SetItemSelectedImage(TreeItemId item, int image)
</autodoc> 
38255           <param name=
"item" type=
"TreeItemId" default=
""/> 
38256           <param name=
"image" type=
"int" default=
""/> 
38259       <method name=
"GetHeaderWindow" type=
"Window" overloaded=
"no"> 
38260         <autodoc>GetHeaderWindow() -
> Window
</autodoc> 
38262       <method name=
"GetMainWindow" type=
"Window" overloaded=
"no"> 
38263         <autodoc>GetMainWindow() -
> Window
</autodoc> 
38267 </wxPython-metadata>