X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0dd25e819c43606f2e9075a37fb01f8d25e8b5cc..83448d71476c44b449f09395cda06fa72b19a50e:/wxPython/docs/xml/wxPython-metadata.xml
diff --git a/wxPython/docs/xml/wxPython-metadata.xml b/wxPython/docs/xml/wxPython-metadata.xml
index 6e45e88ab9..0c7460d458 100644
--- a/wxPython/docs/xml/wxPython-metadata.xml
+++ b/wxPython/docs/xml/wxPython-metadata.xml
@@ -17,11 +17,11 @@ wx = _sys.modules[__name__]
The base class for most wx objects, although in wxPython not
much functionality is needed nor exposed.
-
+
GetClassName() -> String
Returns the class name of the C++ object using wxRTTI.
-
+
Destroy()
Deletes the C++ object this Python object is a proxy for.
@@ -54,47 +54,47 @@ instead.
__eq__(Size sz) -> bool
Test for equality of wx.Size objects.
-
+
__ne__(Size sz) -> bool
Test for inequality.
-
+
-
+
__add__(Size sz) -> Size
Add sz's proprties to this and return the result.
-
+
-
+
__sub__(Size sz) -> Size
Subtract sz's properties from this and return the result.
-
+
-
+
IncTo(Size sz)
Increments this object so that both of its dimensions are not less
than the corresponding dimensions of the size.
-
+
-
+
DecTo(Size sz)
Decrements this object so that both of its dimensions are not greater
than the corresponding dimensions of the size.
-
+
-
+
Set(int w, int h)
Set both width and height.
@@ -102,13 +102,13 @@ than the corresponding dimensions of the size.
-
+
SetWidth(int w)
-
+
SetHeight(int h)
@@ -149,31 +149,31 @@ accept a (x,y) tuple.
__eq__(RealPoint pt) -> bool
Test for equality of wx.RealPoint objects.
-
+
__ne__(RealPoint pt) -> bool
Test for inequality of wx.RealPoint objects.
-
+
-
+
__add__(RealPoint pt) -> RealPoint
Add pt's proprties to this and return the result.
-
+
-
+
__sub__(RealPoint pt) -> RealPoint
Subtract pt's proprties from this and return the result
-
+
-
+
Set(double x, double y)
Set both the x and y properties
@@ -210,45 +210,45 @@ properties. Most places in wxPython that expect a wx.Point can also accept a
__eq__(Point pt) -> bool
Test for equality of wx.Point objects.
-
+
__ne__(Point pt) -> bool
Test for inequality of wx.Point objects.
-
+
-
+
__add__(Point pt) -> Point
Add pt's proprties to this and return the result.
-
+
-
+
__sub__(Point pt) -> Point
Subtract pt's proprties from this and return the result
-
+
-
+
__iadd__(Point pt) -> Point
Add pt to this object.
-
+
-
+
__isub__(Point pt) -> Point
Subtract pt from this object.
-
+
-
+
Set(long x, long y)
Set both the x and y properties
@@ -282,16 +282,16 @@ accept a (x,y,width,height) tuple.
RectPP(Point topLeft, Point bottomRight) -> Rect
Create a new Rect object from Points representing two corners.
-
-
+
+
RectPS(Point pos, Size size) -> Rect
Create a new Rect from a position and size.
-
-
+
+
@@ -300,7 +300,7 @@ accept a (x,y,width,height) tuple.
GetX() -> int
-
+
SetX(int x)
@@ -309,7 +309,7 @@ accept a (x,y,width,height) tuple.
GetY() -> int
-
+
SetY(int y)
@@ -318,7 +318,7 @@ accept a (x,y,width,height) tuple.
GetWidth() -> int
-
+
SetWidth(int w)
@@ -327,46 +327,46 @@ accept a (x,y,width,height) tuple.
GetHeight() -> int
-
+
SetHeight(int h)
-
+
GetPosition() -> Point
-
+
SetPosition(Point p)
-
+
-
+
GetSize() -> Size
-
+
SetSize(Size s)
-
+
-
+
GetTopLeft() -> Point
-
+
SetTopLeft(Point p)
-
+
-
+
GetBottomRight() -> Point
-
+
SetBottomRight(Point p)
-
+
@@ -381,31 +381,31 @@ accept a (x,y,width,height) tuple.
GetRight() -> int
-
+
SetLeft(int left)
-
+
SetRight(int right)
-
+
SetTop(int top)
-
+
SetBottom(int bottom)
-
+
Inflate(int dx, int dy) -> Rect
Increase the rectangle size by dx in x direction and dy in y direction. Both
(or one of) parameters may be negative to decrease the rectangle size.
@@ -414,7 +414,7 @@ accept a (x,y,width,height) tuple.
-
+
Deflate(int dx, int dy) -> Rect
Decrease the rectangle size by dx in x direction and dy in y direction. Both
(or one of) parameters may be negative to increase the rectngle size. This
@@ -424,7 +424,7 @@ method is the opposite of Inflate.
-
+
OffsetXY(int dx, int dy)
Moves the rectangle by the specified offset. If dx is positive, the rectangle
is moved to the right, if dy is positive, it is moved to the bottom, otherwise
@@ -434,46 +434,46 @@ it is moved to the left or top respectively.
-
+
Offset(Point pt)
Same as OffsetXY but uses dx,dy from Point
-
+
-
+
Intersect(Rect rect) -> Rect
Return the intersectsion of this rectangle and rect.
-
+
-
+
__add__(Rect rect) -> Rect
Add the properties of rect to this rectangle and return the result.
-
+
-
+
__iadd__(Rect rect) -> Rect
Add the properties of rect to this rectangle, updating this rectangle.
-
+
__eq__(Rect rect) -> bool
Test for equality.
-
+
__ne__(Rect rect) -> bool
Test for inequality.
-
+
@@ -488,21 +488,21 @@ it is moved to the left or top respectively.
Inside(Point pt) -> bool
Return True if the point is (not strcitly) inside the rect.
-
+
Intersects(Rect rect) -> bool
Returns True if the rectangles have a non empty intersection.
-
+
-
+
Set(int x=0, int y=0, int width=0, int height=0)
Set all rectangle properties.
@@ -521,8 +521,8 @@ it is moved to the left or top respectively.
IntersectRect(Rect r1, Rect r2) -> Rect
Calculate and return the intersection of r1 and r2.
-
-
+
+
@@ -542,30 +542,30 @@ it is moved to the left or top respectively.
Point2DCopy(Point2D pt) -> Point2D
Create a w.Point2D object.
-
+
Point2DFromPoint(Point pt) -> Point2D
Create a w.Point2D object.
-
+
-
+
GetFloor() -> (x,y)
Convert to integer
-
-
+
+
-
+
GetRounded() -> (x,y)
Convert to integer
-
-
+
+
@@ -574,13 +574,13 @@ it is moved to the left or top respectively.
GetVectorAngle() -> double
-
+
SetVectorLength(double length)
-
+
SetVectorAngle(double degrees)
@@ -589,72 +589,72 @@ it is moved to the left or top respectively.
GetDistance(Point2D pt) -> double
-
+
GetDistanceSquare(Point2D pt) -> double
-
+
GetDotProduct(Point2D vec) -> double
-
+
GetCrossProduct(Point2D vec) -> double
-
+
-
+
__neg__() -> Point2D
the reflection of this point
-
+
__iadd__(Point2D pt) -> Point2D
-
+
-
+
__isub__(Point2D pt) -> Point2D
-
+
-
+
__imul__(Point2D pt) -> Point2D
-
+
-
+
__idiv__(Point2D pt) -> Point2D
-
+
__eq__(Point2D pt) -> bool
Test for equality
-
+
__ne__(Point2D pt) -> bool
Test for inequality
-
+
-
+
Set(double x=0, double y=0)
@@ -673,13 +673,13 @@ it is moved to the left or top respectively.
__init__(PyObject p) -> InputStream
-
+
-
+
close()
-
+
flush()
@@ -703,7 +703,7 @@ it is moved to the left or top respectively.
-
+
seek(int offset, int whence=0)
@@ -746,10 +746,10 @@ it is moved to the left or top respectively.
-
+
write(PyObject obj)
-
+
@@ -757,15 +757,15 @@ it is moved to the left or top respectively.
#---------------------------------------------------------------------------
-
+
__init__(InputStream stream, String loc, String mimetype, String anchor,
DateTime modif) -> FSFile
-
-
-
-
+
+
+
+
@@ -775,13 +775,13 @@ it is moved to the left or top respectively.
GetStream() -> InputStream
-
+
GetMimeType() -> String
-
+
GetLocation() -> String
-
+
GetAnchor() -> String
@@ -790,196 +790,196 @@ it is moved to the left or top respectively.
-
+
__init__() -> FileSystemHandler
-
+
_setCallbackInfo(PyObject self, PyObject _class)
-
-
+
+
CanOpen(String location) -> bool
-
+
-
+
OpenFile(FileSystem fs, String location) -> FSFile
-
-
+
+
-
+
FindFirst(String spec, int flags=0) -> String
-
+
-
+
FindNext() -> String
-
+
GetProtocol(String location) -> String
-
+
-
+
GetLeftLocation(String location) -> String
-
+
-
+
GetAnchor(String location) -> String
-
+
-
+
GetRightLocation(String location) -> String
-
+
-
+
GetMimeTypeFromExt(String location) -> String
-
+
-
+
__init__() -> FileSystem
__del__()
-
+
ChangePathTo(String location, bool is_dir=False)
-
+
-
+
GetPath() -> String
-
+
OpenFile(String location) -> FSFile
-
+
-
+
FindFirst(String spec, int flags=0) -> String
-
+
-
+
FindNext() -> String
-
+
FileSystem.AddHandler(CPPFileSystemHandler handler)
-
+
-
+
FileSystem.CleanUpHandlers()
-
+
FileSystem.FileNameToURL(String filename) -> String
-
+
-
+
FileSystem_URLToFileName(String url) -> String
-
+
-
+
__init__() -> InternetFSHandler
CanOpen(String location) -> bool
-
+
-
+
OpenFile(FileSystem fs, String location) -> FSFile
-
-
+
+
-
+
__init__() -> ZipFSHandler
CanOpen(String location) -> bool
-
+
-
+
OpenFile(FileSystem fs, String location) -> FSFile
-
-
+
+
-
+
FindFirst(String spec, int flags=0) -> String
-
+
-
+
FindNext() -> String
-
+
__wxMemoryFSHandler_AddFile_wxImage(String filename, Image image, long type)
-
-
+
+
-
+
__wxMemoryFSHandler_AddFile_wxBitmap(String filename, Bitmap bitmap, long type)
-
-
+
+
-
+
__wxMemoryFSHandler_AddFile_Data(String filename, PyObject data)
-
-
+
+
@@ -993,37 +993,37 @@ def MemoryFSHandler_AddFile(filename, a, b=''):
else: raise TypeError, 'wx.Image, wx.Bitmap or string expected'
-
+
__init__() -> MemoryFSHandler
-
+
MemoryFSHandler.RemoveFile(String filename)
-
+
CanOpen(String location) -> bool
-
+
-
+
OpenFile(FileSystem fs, String location) -> FSFile
-
-
+
+
-
+
FindFirst(String spec, int flags=0) -> String
-
+
-
+
FindNext() -> String
@@ -1031,47 +1031,47 @@ def MemoryFSHandler_AddFile(filename, a, b=''):
#---------------------------------------------------------------------------
-
-
+
+
GetName() -> String
-
+
GetExtension() -> String
GetType() -> long
-
+
GetMimeType() -> String
CanRead(String name) -> bool
-
+
-
+
SetName(String name)
-
+
-
+
SetExtension(String extension)
-
+
-
+
SetType(long type)
-
+
SetMimeType(String mimetype)
-
+
@@ -1094,9 +1094,9 @@ def MemoryFSHandler_AddFile(filename, a, b=''):
startR, startG, startB. Returns a tuple consisting of a success flag and rgb
values.
-
-
-
+
+
+
@@ -1104,11 +1104,11 @@ values.
-
+
__init__(String name, long type=BITMAP_TYPE_ANY, int index=-1) -> Image
-
+
@@ -1116,15 +1116,15 @@ values.
ImageFromMime(String name, String mimetype, int index=-1) -> Image
-
-
+
+
ImageFromStream(InputStream stream, long type=BITMAP_TYPE_ANY, int index=-1) -> Image
-
+
@@ -1132,8 +1132,8 @@ values.
ImageFromStreamMime(InputStream stream, String mimetype, int index=-1) -> Image
-
-
+
+
@@ -1148,7 +1148,7 @@ values.
ImageFromBitmap(Bitmap bitmap) -> Image
-
+
@@ -1156,45 +1156,45 @@ values.
-
+
__del__()
-
+
Create(int width, int height)
-
+
Destroy()
Deletes the C++ object this Python object is a proxy for.
-
+
Scale(int width, int height) -> Image
-
+
ShrinkBy(int xFactor, int yFactor) -> Image
-
+
Rescale(int width, int height) -> Image
-
+
SetRGB(int x, int y, unsigned char r, unsigned char g, unsigned char b)
@@ -1225,7 +1225,7 @@ values.
-
+
SetAlpha(int x, int y, unsigned char alpha)
@@ -1249,9 +1249,9 @@ values.
startR, startG, startB. Returns a tuple consisting of a success flag and rgb
values.
-
-
-
+
+
+
@@ -1260,7 +1260,7 @@ values.
SetMaskFromImage(Image mask, byte mr, byte mg, byte mb) -> bool
-
+
@@ -1269,20 +1269,20 @@ values.
Image.CanRead(String name) -> bool
-
+
Image.GetImageCount(String name, long type=BITMAP_TYPE_ANY) -> int
-
+
LoadFile(String name, long type=BITMAP_TYPE_ANY, int index=-1) -> bool
-
+
@@ -1290,35 +1290,35 @@ values.
LoadMimeFile(String name, String mimetype, int index=-1) -> bool
-
-
+
+
SaveFile(String name, int type) -> bool
-
+
SaveMimeFile(String name, String mimetype) -> bool
-
-
+
+
Image.CanReadStream(InputStream stream) -> bool
-
+
LoadStream(InputStream stream, long type=BITMAP_TYPE_ANY, int index=-1) -> bool
-
+
@@ -1326,8 +1326,8 @@ values.
LoadMimeStream(InputStream stream, String mimetype, int index=-1) -> bool
-
-
+
+
@@ -1340,19 +1340,19 @@ values.
GetHeight() -> int
-
+
GetSubImage(Rect rect) -> Image
-
+
-
+
Copy() -> Image
-
+
Paste(Image image, int x, int y)
-
+
@@ -1360,40 +1360,40 @@ values.
GetData() -> PyObject
-
+
SetData(PyObject data)
-
+
GetDataBuffer() -> PyObject
-
+
SetDataBuffer(PyObject data)
-
+
GetAlphaData() -> PyObject
-
+
SetAlphaData(PyObject data)
-
+
GetAlphaBuffer() -> PyObject
-
+
SetAlphaBuffer(PyObject data)
-
+
-
+
SetMaskColour(unsigned char r, unsigned char g, unsigned char b)
@@ -1410,7 +1410,7 @@ values.
GetMaskBlue() -> unsigned char
-
+
SetMask(bool mask=True)
@@ -1419,29 +1419,29 @@ values.
HasMask() -> bool
-
+
Rotate(double angle, Point centre_of_rotation, bool interpolating=True,
Point offset_after_rotation=None) -> Image
-
+
-
+
-
+
Rotate90(bool clockwise=True) -> Image
-
+
Mirror(bool horizontally=True) -> Image
-
+
Replace(unsigned char r1, unsigned char g1, unsigned char b1,
unsigned char r2, unsigned char g2, unsigned char b2)
@@ -1453,7 +1453,7 @@ values.
-
+
ConvertToMono(unsigned char r, unsigned char g, unsigned char b) -> Image
@@ -1461,36 +1461,36 @@ values.
-
+
SetOption(String name, String value)
-
-
+
+
-
+
SetOptionInt(String name, int value)
-
+
-
+
GetOption(String name) -> String
-
+
GetOptionInt(String name) -> int
-
+
HasOption(String name) -> bool
-
+
@@ -1502,28 +1502,28 @@ values.
ComputeHistogram(ImageHistogram h) -> unsigned long
-
+
-
+
Image.AddHandler(ImageHandler handler)
-
+
-
+
Image.InsertHandler(ImageHandler handler)
-
+
Image.RemoveHandler(String name) -> bool
-
+
-
+
Image.GetImageExtWildcard() -> String
@@ -1538,71 +1538,71 @@ values.
-
+
InitAllImageHandlers()
-
+
__init__() -> BMPHandler
-
+
__init__() -> ICOHandler
-
+
__init__() -> CURHandler
-
+
__init__() -> ANIHandler
-
+
__init__() -> PNGHandler
-
+
__init__() -> GIFHandler
-
+
__init__() -> PCXHandler
-
+
__init__() -> JPEGHandler
-
+
__init__() -> PNMHandler
-
+
__init__() -> XPMHandler
-
+
__init__() -> TIFFHandler
@@ -1611,32 +1611,32 @@ values.
#---------------------------------------------------------------------------
-
+
__init__() -> EvtHandler
-
+
GetNextHandler() -> EvtHandler
-
+
GetPreviousHandler() -> EvtHandler
-
+
SetNextHandler(EvtHandler handler)
-
+
-
+
SetPreviousHandler(EvtHandler handler)
-
+
GetEvtHandlerEnabled() -> bool
-
+
SetEvtHandlerEnabled(bool enabled)
@@ -1645,25 +1645,25 @@ values.
ProcessEvent(Event event) -> bool
-
+
-
+
AddPendingEvent(Event event)
-
+
-
+
ProcessPendingEvents()
-
+
Connect(int id, int lastId, int eventType, PyObject func)
-
+
@@ -1674,10 +1674,10 @@ values.
-
+
_setOORInfo(PyObject _self)
-
+
@@ -1886,10 +1886,6 @@ EVT_COMMAND_SCROLL_THUMBTRACK = wx.PyEventBinder( wxEVT_SCROLL_THUMBTRACK, 1)
EVT_COMMAND_SCROLL_THUMBRELEASE = wx.PyEventBinder( wxEVT_SCROLL_THUMBRELEASE, 1)
EVT_COMMAND_SCROLL_ENDSCROLL = wx.PyEventBinder( wxEVT_SCROLL_ENDSCROLL, 1)
-EVT_SPIN_UP = wx.PyEventBinder( wxEVT_SCROLL_LINEUP, 1)
-EVT_SPIN_DOWN = wx.PyEventBinder( wxEVT_SCROLL_LINEDOWN, 1)
-EVT_SPIN = wx.PyEventBinder( wxEVT_SCROLL_THUMBTRACK, 1)
-
EVT_BUTTON = wx.PyEventBinder( wxEVT_COMMAND_BUTTON_CLICKED, 1)
EVT_CHECKBOX = wx.PyEventBinder( wxEVT_COMMAND_CHECKBOX_CLICKED, 1)
EVT_CHOICE = wx.PyEventBinder( wxEVT_COMMAND_CHOICE_SELECTED, 1)
@@ -1933,11 +1929,11 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
#---------------------------------------------------------------------------
-
+
__del__()
-
+
SetEventType(wxEventType typ)
@@ -1946,19 +1942,19 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
GetEventType() -> wxEventType
-
+
GetEventObject() -> Object
-
+
SetEventObject(Object obj)
-
+
GetTimestamp() -> long
-
+
SetTimestamp(long ts=0)
@@ -1967,7 +1963,7 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
GetId() -> int
-
+
SetId(int Id)
@@ -1976,7 +1972,7 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
IsCommandEvent() -> bool
-
+
Skip(bool skip=True)
@@ -1991,13 +1987,13 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
StopPropagation() -> int
-
+
ResumePropagation(int propagationLevel)
-
+
Clone() -> Event
@@ -2008,7 +2004,7 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
__init__(Event event) -> PropagationDisabler
-
+
@@ -2019,7 +2015,7 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
__init__(Event event) -> PropagateOnce
-
+
@@ -2030,7 +2026,7 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
#---------------------------------------------------------------------------
-
+
__init__(wxEventType commandType=wxEVT_NULL, int winid=0) -> CommandEvent
@@ -2041,13 +2037,13 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
GetSelection() -> int
-
+
SetString(String s)
-
+
-
+
GetString() -> String
@@ -2056,7 +2052,7 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
IsSelection() -> bool
-
+
SetExtraLong(long extraLong)
@@ -2065,7 +2061,7 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
GetExtraLong() -> long
-
+
SetInt(int i)
@@ -2074,7 +2070,7 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
GetInt() -> long
-
+
Clone() -> Event
@@ -2082,7 +2078,7 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
#---------------------------------------------------------------------------
-
+
__init__(wxEventType commandType=wxEVT_NULL, int winid=0) -> NotifyEvent
@@ -2090,10 +2086,10 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
-
+
Veto()
-
+
Allow()
@@ -2104,7 +2100,7 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
#---------------------------------------------------------------------------
-
+
__init__(wxEventType commandType=wxEVT_NULL, int winid=0, int pos=0,
int orient=0) -> ScrollEvent
@@ -2121,13 +2117,13 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
GetPosition() -> int
-
+
SetOrientation(int orient)
-
+
SetPosition(int pos)
@@ -2138,7 +2134,7 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
#---------------------------------------------------------------------------
-
+
__init__(wxEventType commandType=wxEVT_NULL, int pos=0, int orient=0) -> ScrollWinEvent
@@ -2153,13 +2149,13 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
GetPosition() -> int
-
+
SetOrientation(int orient)
-
+
SetPosition(int pos)
@@ -2170,7 +2166,7 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
#---------------------------------------------------------------------------
-
+
__init__(wxEventType mouseType=wxEVT_NULL) -> MouseEvent
@@ -2273,22 +2269,22 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
Leaving() -> bool
-
+
GetPosition() -> Point
Returns the position of the mouse in window coordinates when the event happened.
-
+
GetPositionTuple() -> (x,y)
Returns the position of the mouse in window coordinates when the event happened.
-
-
+
+
-
+
GetLogicalPosition(DC dc) -> Point
-
+
@@ -2326,7 +2322,7 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
#---------------------------------------------------------------------------
-
+
__init__(int x=0, int y=0) -> SetCursorEvent
@@ -2340,13 +2336,13 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
GetY() -> int
-
+
SetCursor(Cursor cursor)
-
+
-
+
GetCursor() -> Cursor
@@ -2357,7 +2353,7 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
#---------------------------------------------------------------------------
-
+
__init__(wxEventType keyType=wxEVT_NULL) -> KeyEvent
@@ -2391,16 +2387,16 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
GetRawKeyFlags() -> unsigned int
-
+
GetPosition() -> Point
Find the position of the event.
-
+
GetPositionTuple() -> (x,y)
Find the position of the event.
-
-
+
+
@@ -2424,73 +2420,73 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
#---------------------------------------------------------------------------
-
+
__init__(Size sz=DefaultSize, int winid=0) -> SizeEvent
-
+
-
+
GetSize() -> Size
-
+
GetRect() -> Rect
-
+
SetRect(Rect rect)
-
+
-
+
SetSize(Size size)
-
+
-
-
+
+
#---------------------------------------------------------------------------
-
+
__init__(Point pos=DefaultPosition, int winid=0) -> MoveEvent
-
+
-
+
GetPosition() -> Point
-
+
GetRect() -> Rect
-
+
SetRect(Rect rect)
-
+
-
+
SetPosition(Point pos)
-
+
-
-
+
+
#---------------------------------------------------------------------------
-
+
__init__(int Id=0) -> PaintEvent
@@ -2499,7 +2495,7 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
-
+
__init__(int winid=0) -> NcPaintEvent
@@ -2511,12 +2507,12 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
#---------------------------------------------------------------------------
-
+
__init__(int Id=0, DC dc=(wxDC *) NULL) -> EraseEvent
-
+
@@ -2527,7 +2523,7 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
#---------------------------------------------------------------------------
-
+
__init__(wxEventType type=wxEVT_NULL, int winid=0) -> FocusEvent
@@ -2538,10 +2534,10 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
GetWindow() -> Window
-
+
SetWindow(Window win)
-
+
@@ -2549,11 +2545,11 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
#---------------------------------------------------------------------------
-
+
__init__(Window win=None) -> ChildFocusEvent
-
+
@@ -2564,7 +2560,7 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
#---------------------------------------------------------------------------
-
+
__init__(wxEventType type=wxEVT_NULL, bool active=True, int Id=0) -> ActivateEvent
@@ -2581,7 +2577,7 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
#---------------------------------------------------------------------------
-
+
__init__(int Id=0) -> InitDialogEvent
@@ -2593,13 +2589,13 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
#---------------------------------------------------------------------------
-
+
__init__(wxEventType type=wxEVT_NULL, int winid=0, Menu menu=None) -> MenuEvent
-
+
@@ -2616,7 +2612,7 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
#---------------------------------------------------------------------------
-
+
__init__(wxEventType type=wxEVT_NULL, int winid=0) -> CloseEvent
@@ -2624,7 +2620,7 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
-
+
SetLoggingOff(bool logOff)
@@ -2633,13 +2629,13 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
GetLoggingOff() -> bool
-
+
Veto(bool veto=True)
-
+
SetCanVeto(bool canVeto)
@@ -2656,7 +2652,7 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
#---------------------------------------------------------------------------
-
+
__init__(int winid=0, bool show=False) -> ShowEvent
@@ -2664,7 +2660,7 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
-
+
SetShow(bool show)
@@ -2678,7 +2674,7 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
#---------------------------------------------------------------------------
-
+
__init__(int id=0, bool iconized=True) -> IconizeEvent
@@ -2694,7 +2690,7 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
#---------------------------------------------------------------------------
-
+
__init__(int id=0) -> MaximizeEvent
@@ -2706,8 +2702,8 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
#---------------------------------------------------------------------------
-
-
+
+
GetPosition() -> Point
@@ -2721,7 +2717,7 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
#---------------------------------------------------------------------------
-
+
__init__(int commandId=0) -> UpdateUIEvent
@@ -2734,7 +2730,7 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
GetEnabled() -> bool
-
+
GetText() -> String
@@ -2746,25 +2742,25 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
GetSetEnabled() -> bool
-
+
Check(bool check)
-
+
Enable(bool enable)
-
+
SetText(String text)
-
+
-
+
UpdateUIEvent.SetUpdateInterval(long updateInterval)
@@ -2776,13 +2772,13 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
UpdateUIEvent.CanUpdate(Window win) -> bool
-
+
-
+
UpdateUIEvent.ResetUpdateTime()
-
+
UpdateUIEvent.SetMode(int mode)
@@ -2796,7 +2792,7 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
#---------------------------------------------------------------------------
-
+
__init__() -> SysColourChangedEvent
@@ -2805,12 +2801,12 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
#---------------------------------------------------------------------------
-
+
__init__(int winid=0, Window gainedCapture=None) -> MouseCaptureChangedEvent
-
+
@@ -2821,7 +2817,7 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
#---------------------------------------------------------------------------
-
+
__init__() -> DisplayChangedEvent
@@ -2830,17 +2826,17 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
#---------------------------------------------------------------------------
-
+
__init__(int id=0) -> PaletteChangedEvent
-
+
SetChangedWindow(Window win)
-
+
@@ -2851,14 +2847,14 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
#---------------------------------------------------------------------------
-
+
__init__(int winid=0) -> QueryNewPaletteEvent
-
+
SetPaletteRealized(bool realized)
@@ -2872,14 +2868,14 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
#---------------------------------------------------------------------------
-
+
__init__() -> NavigationKeyEvent
GetDirection() -> bool
-
+
SetDirection(bool bForward)
@@ -2888,7 +2884,7 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
IsWindowChange() -> bool
-
+
SetWindowChange(bool bIs)
@@ -2897,10 +2893,10 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
GetCurrentFocus() -> Window
-
+
SetCurrentFocus(Window win)
-
+
@@ -2908,11 +2904,11 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
#---------------------------------------------------------------------------
-
+
__init__(Window win=None) -> WindowCreateEvent
-
+
@@ -2920,11 +2916,11 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
-
+
__init__(Window win=None) -> WindowDestroyEvent
-
+
@@ -2935,22 +2931,22 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
#---------------------------------------------------------------------------
-
+
__init__(wxEventType type=wxEVT_NULL, int winid=0, Point pt=DefaultPosition) -> ContextMenuEvent
-
+
-
+
GetPosition() -> Point
-
+
SetPosition(Point pos)
-
+
@@ -2958,11 +2954,11 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
#---------------------------------------------------------------------------
-
+
__init__() -> IdleEvent
-
+
RequestMore(bool needMore=True)
@@ -2971,7 +2967,7 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
MoreRequested() -> bool
-
+
IdleEvent.SetMode(int mode)
@@ -2983,7 +2979,7 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
IdleEvent.CanSend(Window win) -> bool
-
+
@@ -2991,7 +2987,7 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
#---------------------------------------------------------------------------
-
+
__init__(int winid=0, wxEventType commandType=wxEVT_NULL) -> PyEvent
@@ -3002,10 +2998,10 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
__del__()
-
+
SetSelf(PyObject self)
-
+
@@ -3013,7 +3009,7 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
-
+
__init__(wxEventType commandType=wxEVT_NULL, int id=0) -> PyCommandEvent
@@ -3024,10 +3020,10 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
__del__()
-
+
SetSelf(PyObject self)
-
+
@@ -3038,54 +3034,54 @@ EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
#---------------------------------------------------------------------------
-
+
__init__() -> PyApp
__del__()
-
+
_setCallbackInfo(PyObject self, PyObject _class)
-
-
+
+
-
+
GetAppName() -> String
Get the application name.
-
+
SetAppName(String name)
Set the application name. This value may be used automatically
by wx.Config and such.
-
+
-
+
GetClassName() -> String
Get the application's class name.
-
+
SetClassName(String name)
Set the application's class name. This value may be used for X-resources if
applicable for the platform
-
+
-
+
GetVendorName() -> String
Get the application's vendor name.
-
+
SetVendorName(String name)
Set the application's vendor name. This value may be used automatically
by wx.Config and such.
-
+
@@ -3096,7 +3092,7 @@ simply by overriding CreateTraits() and returning his own traits object) or
which is GUI/console dependent as then wx.AppTraits allows us to abstract the
differences behind the common facade
-
+
ProcessPendingEvents()
Process all events in the Pending Events list -- it is necessary to call this
function to process posted events. This happens during each event loop
@@ -3117,7 +3113,7 @@ WARNING: This function is dangerous as it can lead to unexpected
-
+
WakeUpIdle()
Make sure that idle events are sent again
@@ -3125,11 +3121,11 @@ WARNING: This function is dangerous as it can lead to unexpected
MainLoop() -> int
Execute the main GUI loop, the function returns when the loop ends.
-
+
Exit()
Exit the main loop thus terminating the application.
-
+
ExitMainLoop()
Exit the main GUI loop during the next iteration (i.e. it does not
stop the program immediately!)
@@ -3154,19 +3150,19 @@ needed, False if not.
Send idle event to window and all subwindows. Returns True if more idle time
is requested.
-
-
+
+
IsActive() -> bool
Return True if our app has focus.
-
+
SetTopWindow(Window win)
Set the "main" top level window
-
+
@@ -3175,7 +3171,7 @@ is requested.
SetTopWindow(), will return just some top level window and, if there not any,
will return None)
-
+
SetExitOnFrameDelete(bool flag)
Control the exit behaviour: by default, the program will exit the main loop
(and so, usually, terminate) when the last top-level program window is
@@ -3191,7 +3187,7 @@ from somewhere.
GetExitOnFrameDelete() -> bool
Get the current exit behaviour setting.
-
+
SetUseBestVisual(bool flag)
Set whether the app should try to use the best available visual on systems
where more than one is available, (Sun, SGI, XFree86 4, etc.)
@@ -3203,7 +3199,7 @@ where more than one is available, (Sun, SGI, XFree86 4, etc.)
GetUseBestVisual() -> bool
Get current UseBestVisual setting.
-
+
SetPrintMode(int mode)
@@ -3212,7 +3208,7 @@ where more than one is available, (Sun, SGI, XFree86 4, etc.)
GetPrintMode() -> int
-
+
SetAssertMode(int mode)
Set the OnAssert behaviour for debug and hybrid builds. The following flags
may be or'd together:
@@ -3242,40 +3238,40 @@ may be or'd together:
PyApp.GetMacExitMenuItemId() -> long
-
+
PyApp.GetMacHelpMenuTitleName() -> String
-
+
PyApp.SetMacSupportPCMenuShortcuts(bool val)
-
+
PyApp.SetMacAboutMenuItemId(long val)
-
+
PyApp.SetMacPreferencesMenuItemId(long val)
-
+
PyApp.SetMacExitMenuItemId(long val)
-
+
PyApp.SetMacHelpMenuTitleName(String val)
-
+
-
+
_BootstrapApp()
For internal use only
@@ -3288,7 +3284,7 @@ wasn't found at all. Raises an exception on non-Windows platforms.
#---------------------------------------------------------------------------
-
+
Exit()
Force an exit of the application. Convenience for wx.GetApp().Exit()
@@ -3309,27 +3305,27 @@ implementation of some limited user interaction.
Returns the result of the call to wx.Yield.
-
+
-
+
WakeUpIdle()
Cause the message queue to become empty again, so idle events will be sent.
-
+
PostEvent(EvtHandler dest, Event event)
Send an event to a window or other wx.EvtHandler to be processed later.
-
-
+
+
-
+
App_CleanUp()
For internal use only, it is used to cleanup after wxWindows when Python shuts down.
-
+
GetApp() -> PyApp
Return a reference to the current wx.App object.
@@ -3358,6 +3354,7 @@ class PyOnDemandOutputWindow:
style=wx.DEFAULT_FRAME_STYLE | wx.NO_FULL_REPAINT_ON_RESIZE)
self.text = wx.TextCtrl(self.frame, -1, "",
style = wx.TE_MULTILINE | wx.TE_READONLY)
+ self.text.AppendText(st)
self.frame.SetSize((450, 300))
self.frame.Show(True)
EVT_CLOSE(self.frame, self.OnCloseWindow)
@@ -3557,25 +3554,25 @@ _sys.__wxPythonCleanup = __wxPyCleanup()
-
+
__del__()
-
+
Set(int flags, int keyCode, int cmd, MenuItem item=None)
-
+
-
+
SetMenuItem(MenuItem item)
-
+
@@ -3592,14 +3589,14 @@ _sys.__wxPythonCleanup = __wxPyCleanup()
-
+
__init__(entries) -> AcceleratorTable
Construct an AcceleratorTable from a list of AcceleratorEntry items or
3-tuples (flags, keyCode, cmdID)
-
+
@@ -3609,27 +3606,27 @@ _sys.__wxPythonCleanup = __wxPyCleanup()
Ok() -> bool
-
+
GetAccelFromString(String label) -> AcceleratorEntry
-
+
#---------------------------------------------------------------------------
-
+
__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
long style=0, String name=PanelNameStr) -> Window
-
-
-
-
+
+
+
+
-
+
@@ -3639,12 +3636,12 @@ _sys.__wxPythonCleanup = __wxPyCleanup()
Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
long style=0, String name=PanelNameStr) -> bool
-
-
-
-
+
+
+
+
-
+
@@ -3663,34 +3660,34 @@ _sys.__wxPythonCleanup = __wxPyCleanup()
IsBeingDeleted() -> bool
-
+
SetTitle(String title)
-
+
-
+
GetTitle() -> String
-
+
SetLabel(String label)
-
+
-
+
GetLabel() -> String
-
+
SetName(String name)
-
+
-
+
GetName() -> String
-
+
SetId(int winid)
@@ -3714,13 +3711,13 @@ _sys.__wxPythonCleanup = __wxPyCleanup()
-
+
SetSize(Size size)
-
+
-
+
SetDimensions(int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)
@@ -3730,28 +3727,28 @@ _sys.__wxPythonCleanup = __wxPyCleanup()
-
+
SetRect(Rect rect, int sizeFlags=SIZE_AUTO)
-
+
-
+
SetSizeWH(int width, int height)
-
+
Move(Point pt, int flags=SIZE_USE_EXISTING)
-
+
-
+
MoveXY(int x, int y, int flags=SIZE_USE_EXISTING)
@@ -3759,118 +3756,118 @@ _sys.__wxPythonCleanup = __wxPyCleanup()
-
+
Raise()
-
+
Lower()
-
+
SetClientSize(Size size)
-
+
-
+
SetClientSizeWH(int width, int height)
-
+
SetClientRect(Rect rect)
-
+
-
+
GetPosition() -> Point
Get the window's position.
-
+
GetPositionTuple() -> (x,y)
Get the window's position.
-
-
+
+
-
+
GetSize() -> Size
Get the window size.
-
+
GetSizeTuple() -> (width, height)
Get the window size.
-
-
+
+
-
+
GetRect() -> Rect
-
+
GetClientSize() -> Size
Get the window's client size.
-
+
GetClientSizeTuple() -> (width, height)
Get the window's client size.
-
-
+
+
-
+
GetClientAreaOrigin() -> Point
-
+
GetClientRect() -> Rect
-
+
GetBestSize() -> Size
Get the size best suited for the window (in fact, minimal acceptable size
using which it will still look "nice")
-
+
GetBestSizeTuple() -> (width, height)
Get the size best suited for the window (in fact, minimal acceptable size
using which it will still look "nice")
-
-
+
+
-
+
GetAdjustedBestSize() -> Size
-
+
Center(int direction=BOTH)
-
+
CenterOnScreen(int dir=BOTH)
-
+
CenterOnParent(int dir=BOTH)
-
+
Fit()
-
+
FitInside()
-
+
SetSizeHints(int minW, int minH, int maxW=-1, int maxH=-1, int incW=-1,
int incH=-1)
@@ -3882,7 +3879,7 @@ using which it will still look "nice")
-
+
SetVirtualSizeHints(int minW, int minH, int maxW=-1, int maxH=-1)
@@ -3903,19 +3900,19 @@ using which it will still look "nice")
GetMaxHeight() -> int
-
+
GetMaxSize() -> Size
-
+
SetVirtualSize(Size size)
Set the the virtual size of a window. For most windows this is just the
client area of the window, but for some like scrolled windows it is more or
less independent of the screen window size.
-
+
-
+
SetVirtualSizeWH(int w, int h)
Set the the virtual size of a window. For most windows this is just the
client area of the window, but for some like scrolled windows it is more or
@@ -3925,23 +3922,23 @@ less independent of the screen window size.
-
+
GetVirtualSize() -> Size
Get the the virtual size of the window. For most windows this is just
the client area of the window, but for some like scrolled windows it is
more or less independent of the screen window size.
-
+
GetVirtualSizeTuple() -> (width, height)
Get the the virtual size of the window. For most windows this is just
the client area of the window, but for some like scrolled windows it is
more or less independent of the screen window size.
-
-
+
+
-
+
GetBestVirtualSize() -> Size
@@ -3968,7 +3965,7 @@ more or less independent of the screen window size.
IsEnabled() -> bool
-
+
SetWindowStyleFlag(long style)
@@ -3977,7 +3974,7 @@ more or less independent of the screen window size.
GetWindowStyleFlag() -> long
-
+
SetWindowStyle(long style)
@@ -3995,7 +3992,7 @@ more or less independent of the screen window size.
IsRetained() -> bool
-
+
SetExtraStyle(long exStyle)
@@ -4004,13 +4001,13 @@ more or less independent of the screen window size.
GetExtraStyle() -> long
-
+
MakeModal(bool modal=True)
-
+
SetThemeEnabled(bool enableTheme)
@@ -4022,13 +4019,13 @@ more or less independent of the screen window size.
ShouldInheritColours() -> bool
-
+
SetFocus()
-
+
SetFocusFromKbd()
-
+
Window.FindFocus() -> Window
@@ -4037,28 +4034,28 @@ more or less independent of the screen window size.
AcceptsFocusFromKeyboard() -> bool
-
+
GetDefaultItem() -> Window
-
+
SetDefaultItem(Window child) -> Window
-
+
-
+
SetTmpDefaultItem(Window win)
-
+
GetChildren() -> PyObject
-
+
GetParent() -> Window
-
+
GetGrandParent() -> Window
@@ -4067,49 +4064,49 @@ more or less independent of the screen window size.
Reparent(Window newParent) -> bool
-
+
-
+
AddChild(Window child)
-
+
-
+
RemoveChild(Window child)
-
+
-
+
FindWindowById(long winid) -> Window
-
+
FindWindowByName(String name) -> Window
-
+
-
+
GetEventHandler() -> EvtHandler
-
+
SetEventHandler(EvtHandler handler)
-
+
-
+
PushEventHandler(EvtHandler handler)
-
+
-
+
PopEventHandler(bool deleteHandler=False) -> EvtHandler
@@ -4118,25 +4115,25 @@ more or less independent of the screen window size.
RemoveEventHandler(EvtHandler handler) -> bool
-
+
-
+
SetValidator(Validator validator)
-
+
GetValidator() -> Validator
-
+
SetAcceleratorTable(AcceleratorTable accel)
-
+
-
+
GetAcceleratorTable() -> AcceleratorTable
@@ -4153,96 +4150,96 @@ more or less independent of the screen window size.
-
+
ConvertDialogPointToPixels(Point pt) -> Point
-
+
-
+
ConvertDialogSizeToPixels(Size sz) -> Size
-
+
-
+
DLG_PNT(Point pt) -> Point
-
+
-
+
DLG_SZE(Size sz) -> Size
-
+
-
+
ConvertPixelPointToDialog(Point pt) -> Point
-
+
-
+
ConvertPixelSizeToDialog(Size sz) -> Size
-
+
-
+
WarpPointer(int x, int y)
-
+
CaptureMouse()
-
+
ReleaseMouse()
-
+
Window.GetCapture() -> Window
HasCapture() -> bool
-
+
Refresh(bool eraseBackground=True, Rect rect=None)
-
+
-
+
RefreshRect(Rect rect)
-
+
-
+
Update()
-
+
ClearBackground()
-
+
Freeze()
-
+
Thaw()
-
+
PrepareDC(DC dc)
-
+
GetUpdateRegion() -> Region
-
+
GetUpdateClientRect() -> Rect
@@ -4257,25 +4254,25 @@ more or less independent of the screen window size.
IsExposedPoint(Point pt) -> bool
-
+
isExposedRect(Rect rect) -> bool
-
+
SetBackgroundColour(Colour colour) -> bool
-
+
SetForegroundColour(Colour colour) -> bool
-
+
@@ -4287,7 +4284,7 @@ more or less independent of the screen window size.
SetCursor(Cursor cursor) -> bool
-
+
@@ -4296,16 +4293,16 @@ more or less independent of the screen window size.
SetFont(Font font) -> bool
-
+
GetFont() -> Font
-
+
SetCaret(Caret caret)
-
+
@@ -4317,52 +4314,52 @@ more or less independent of the screen window size.
GetCharWidth() -> int
-
+
GetTextExtent(String string) -> (width, height)
Get the width and height of the text using the current font.
-
-
-
+
+
+
-
+
GetFullTextExtent(String string, Font font=None) ->
(width, height, descent, externalLeading)
Get the width, height, decent and leading of the text using the current or specified font.
-
-
-
-
-
-
+
+
+
+
+
+
-
+
ClientToScreenXY(int x, int y)
-
-
+
+
-
+
ScreenToClientXY(int x, int y)
-
-
+
+
-
+
ClientToScreen(Point pt) -> Point
-
+
-
+
ScreenToClient(Point pt) -> Point
-
+
@@ -4375,7 +4372,7 @@ more or less independent of the screen window size.
HitTest(Point pt) -> int
-
+
@@ -4387,7 +4384,7 @@ more or less independent of the screen window size.
GetBorder() -> int
-
+
UpdateWindowUI(long flags=UPDATE_UI_NONE)
@@ -4396,7 +4393,7 @@ more or less independent of the screen window size.
PopupMenuXY(Menu menu, int x, int y) -> bool
-
+
@@ -4404,8 +4401,8 @@ more or less independent of the screen window size.
PopupMenu(Menu menu, Point pos) -> bool
-
-
+
+
@@ -4417,7 +4414,7 @@ more or less independent of the screen window size.
-
+
SetScrollbar(int orient, int pos, int thumbvisible, int range, bool refresh=True)
@@ -4427,7 +4424,7 @@ more or less independent of the screen window size.
-
+
SetScrollPos(int orient, int pos, bool refresh=True)
@@ -4453,12 +4450,12 @@ more or less independent of the screen window size.
-
+
ScrollWindow(int dx, int dy, Rect rect=None)
-
+
@@ -4485,55 +4482,55 @@ more or less independent of the screen window size.
PageDown() -> bool
-
+
SetHelpText(String text)
-
+
-
+
SetHelpTextForId(String text)
-
+
-
+
GetHelpText() -> String
-
+
SetToolTipString(String tip)
-
+
-
+
SetToolTip(ToolTip tip)
-
+
GetToolTip() -> ToolTip
-
+
SetDropTarget(PyDropTarget dropTarget)
-
+
GetDropTarget() -> PyDropTarget
-
+
SetConstraints(LayoutConstraints constraints)
-
+
GetConstraints() -> LayoutConstraints
-
+
SetAutoLayout(bool autoLayout)
@@ -4545,27 +4542,27 @@ more or less independent of the screen window size.
Layout() -> bool
-
+
SetSizer(Sizer sizer, bool deleteOld=True)
-
+
-
+
SetSizerAndFit(Sizer sizer, bool deleteOld=True)
-
+
GetSizer() -> Sizer
-
+
SetContainingSizer(Sizer sizer)
-
+
@@ -4585,28 +4582,28 @@ def DLG_SZE(win, size_width, height=None):
else:
return win.ConvertDialogSizeToPixels(wx.Size(size_width, height))
-
+
FindWindowById(long id, Window parent=None) -> Window
-
+
-
+
FindWindowByName(String name, Window parent=None) -> Window
-
-
+
+
-
+
FindWindowByLabel(String label, Window parent=None) -> Window
-
-
+
+
-
+
Window_FromHWND(unsigned long hWnd) -> Window
@@ -4616,17 +4613,17 @@ def DLG_SZE(win, size_width, height=None):
#---------------------------------------------------------------------------
-
+
__init__() -> Validator
-
+
Clone() -> Validator
Validate(Window parent) -> bool
-
+
@@ -4635,19 +4632,19 @@ def DLG_SZE(win, size_width, height=None):
TransferFromWindow() -> bool
-
+
GetWindow() -> Window
-
+
SetWindow(Window window)
-
+
Validator.IsSilent() -> bool
-
+
Validator.SetBellOnError(int doIt=True)
@@ -4655,15 +4652,15 @@ def DLG_SZE(win, size_width, height=None):
-
+
__init__() -> PyValidator
-
+
_setCallbackInfo(PyObject self, PyObject _class, int incref=True)
-
-
+
+
@@ -4672,153 +4669,153 @@ def DLG_SZE(win, size_width, height=None):
#---------------------------------------------------------------------------
-
+
__init__(String title=EmptyString, long style=0) -> Menu
-
+
-
+
Append(int id, String text, String help=EmptyString, int kind=ITEM_NORMAL)
-
-
+
+
-
+
AppendSeparator()
-
+
AppendCheckItem(int id, String text, String help=EmptyString)
-
-
+
+
-
+
AppendRadioItem(int id, String text, String help=EmptyString)
-
-
+
+
-
+
AppendMenu(int id, String text, Menu submenu, String help=EmptyString)
-
-
-
+
+
+
-
+
AppendItem(MenuItem item)
-
+
-
+
Break()
InsertItem(size_t pos, MenuItem item) -> bool
-
+
-
+
Insert(size_t pos, int id, String text, String help=EmptyString,
int kind=ITEM_NORMAL)
-
-
+
+
-
+
InsertSeparator(size_t pos)
-
+
InsertCheckItem(size_t pos, int id, String text, String help=EmptyString)
-
-
+
+
-
+
InsertRadioItem(size_t pos, int id, String text, String help=EmptyString)
-
-
+
+
-
+
InsertMenu(size_t pos, int id, String text, Menu submenu, String help=EmptyString)
-
-
-
+
+
+
-
+
PrependItem(MenuItem item)
-
+
-
+
Prepend(int id, String text, String help=EmptyString, int kind=ITEM_NORMAL)
-
-
+
+
-
+
PrependSeparator()
-
+
PrependCheckItem(int id, String text, String help=EmptyString)
-
-
+
+
-
+
PrependRadioItem(int id, String text, String help=EmptyString)
-
-
+
+
-
+
PrependMenu(int id, String text, Menu submenu, String help=EmptyString)
-
-
-
+
+
+
@@ -4830,7 +4827,7 @@ def DLG_SZE(win, size_width, height=None):
RemoveItem(MenuItem item) -> MenuItem
-
+
@@ -4842,10 +4839,10 @@ def DLG_SZE(win, size_width, height=None):
DeleteItem(MenuItem item) -> bool
-
+
-
+
Destroy()
Deletes the C++ object this Python object is a proxy for.
@@ -4860,7 +4857,7 @@ def DLG_SZE(win, size_width, height=None):
DestroyItem(MenuItem item) -> bool
Deletes the C++ object this Python object is a proxy for.
-
+
@@ -4872,7 +4869,7 @@ def DLG_SZE(win, size_width, height=None):
FindItem(String item) -> int
-
+
@@ -4887,7 +4884,7 @@ def DLG_SZE(win, size_width, height=None):
-
+
Enable(int id, bool enable)
@@ -4900,7 +4897,7 @@ def DLG_SZE(win, size_width, height=None):
-
+
Check(int id, bool check)
@@ -4913,90 +4910,90 @@ def DLG_SZE(win, size_width, height=None):
-
+
SetLabel(int id, String label)
-
+
-
+
GetLabel(int id) -> String
-
+
SetHelpString(int id, String helpString)
-
+
-
+
GetHelpString(int id) -> String
-
+
SetTitle(String title)
-
+
-
+
GetTitle() -> String
-
+
SetEventHandler(EvtHandler handler)
-
+
-
+
GetEventHandler() -> EvtHandler
-
+
SetInvokingWindow(Window win)
-
+
-
+
GetInvokingWindow() -> Window
GetStyle() -> long
-
+
UpdateUI(EvtHandler source=None)
-
+
GetMenuBar() -> MenuBar
-
+
Attach(wxMenuBarBase menubar)
-
+
-
+
Detach()
IsAttached() -> bool
-
+
SetParent(Menu parent)
-
+
-
+
GetParent() -> Menu
@@ -5004,7 +5001,7 @@ def DLG_SZE(win, size_width, height=None):
#---------------------------------------------------------------------------
-
+
__init__(long style=0) -> MenuBar
@@ -5014,42 +5011,42 @@ def DLG_SZE(win, size_width, height=None):
Append(Menu menu, String title) -> bool
-
-
+
+
Insert(size_t pos, Menu menu, String title) -> bool
-
-
+
+
GetMenuCount() -> size_t
-
+
GetMenu(size_t pos) -> Menu
-
+
Replace(size_t pos, Menu menu, String title) -> Menu
-
-
+
+
-
+
Remove(size_t pos) -> Menu
-
+
EnableTop(size_t pos, bool enable)
@@ -5062,14 +5059,14 @@ def DLG_SZE(win, size_width, height=None):
-
+
SetLabelTop(size_t pos, String label)
-
+
-
+
GetLabelTop(size_t pos) -> String
@@ -5078,8 +5075,8 @@ def DLG_SZE(win, size_width, height=None):
FindMenuItem(String menu, String item) -> int
-
-
+
+
@@ -5091,17 +5088,17 @@ def DLG_SZE(win, size_width, height=None):
FindMenu(String title) -> int
-
+
-
+
Enable(int id, bool enable)
-
+
Check(int id, bool check)
@@ -5120,27 +5117,27 @@ def DLG_SZE(win, size_width, height=None):
-
+
SetLabel(int id, String label)
-
+
-
+
GetLabel(int id) -> String
-
+
SetHelpString(int id, String helpString)
-
+
-
+
GetHelpString(int id) -> String
@@ -5152,13 +5149,13 @@ def DLG_SZE(win, size_width, height=None):
IsAttached() -> bool
-
+
Attach(wxFrame frame)
-
+
-
+
Detach()
@@ -5166,30 +5163,30 @@ def DLG_SZE(win, size_width, height=None):
#---------------------------------------------------------------------------
-
+
__init__(Menu parentMenu=None, int id=ID_SEPARATOR, String text=EmptyString,
String help=EmptyString, int kind=ITEM_NORMAL,
Menu subMenu=None) -> MenuItem
-
+
-
-
+
+
-
+
-
+
GetMenu() -> Menu
-
+
SetMenu(Menu menu)
-
+
-
+
SetId(int id)
@@ -5201,28 +5198,28 @@ def DLG_SZE(win, size_width, height=None):
IsSeparator() -> bool
-
+
SetText(String str)
-
+
-
+
GetLabel() -> String
-
+
GetText() -> String
-
+
MenuItem.GetLabelFromText(String text) -> String
-
+
GetKind() -> int
-
+
SetCheckable(bool checkable)
@@ -5234,16 +5231,16 @@ def DLG_SZE(win, size_width, height=None):
IsSubMenu() -> bool
-
+
SetSubMenu(Menu menu)
-
+
-
+
GetSubMenu() -> Menu
-
+
Enable(bool enable=True)
@@ -5252,7 +5249,7 @@ def DLG_SZE(win, size_width, height=None):
IsEnabled() -> bool
-
+
Check(bool check=True)
@@ -5261,37 +5258,37 @@ def DLG_SZE(win, size_width, height=None):
IsChecked() -> bool
-
+
Toggle()
-
+
SetHelp(String str)
-
+
-
+
GetHelp() -> String
-
+
GetAccel() -> AcceleratorEntry
-
+
SetAccel(AcceleratorEntry accel)
-
+
MenuItem.GetDefaultMarginWidth() -> int
-
+
SetBitmap(Bitmap bitmap)
-
+
-
+
GetBitmap() -> Bitmap
@@ -5299,19 +5296,19 @@ def DLG_SZE(win, size_width, height=None):
#---------------------------------------------------------------------------
-
+
__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
long style=0, Validator validator=DefaultValidator,
String name=ControlNameStr) -> Control
-
+
-
-
+
+
-
-
+
+
@@ -5322,28 +5319,28 @@ def DLG_SZE(win, size_width, height=None):
long style=0, Validator validator=DefaultValidator,
String name=ControlNameStr) -> bool
-
+
-
-
+
+
-
-
+
+
-
+
Command(CommandEvent event)
-
+
-
+
GetLabel() -> String
-
+
SetLabel(String label)
-
+
@@ -5354,28 +5351,28 @@ def DLG_SZE(win, size_width, height=None):
Append(String item, PyObject clientData=None) -> int
-
-
+
+
-
+
AppendItems(wxArrayString strings)
-
+
Insert(String item, int pos, PyObject clientData=None) -> int
-
+
-
+
-
+
Clear()
-
+
Delete(int n)
@@ -5387,7 +5384,7 @@ def DLG_SZE(win, size_width, height=None):
IsEmpty() -> bool
-
+
GetString(int n) -> String
@@ -5396,20 +5393,20 @@ def DLG_SZE(win, size_width, height=None):
GetStrings() -> wxArrayString
-
+
SetString(int n, String s)
-
+
FindString(String s) -> int
-
+
-
+
Select(int n)
@@ -5418,7 +5415,7 @@ def DLG_SZE(win, size_width, height=None):
GetSelection() -> int
-
+
GetStringSelection() -> String
@@ -5427,11 +5424,11 @@ def DLG_SZE(win, size_width, height=None):
-
+
SetClientData(int n, PyObject clientData)
-
+
@@ -5439,14 +5436,14 @@ def DLG_SZE(win, size_width, height=None):
#---------------------------------------------------------------------------
-
-
+
+
#---------------------------------------------------------------------------
-
+
__init__() -> SizerItem
@@ -5459,74 +5456,74 @@ def DLG_SZE(win, size_width, height=None):
-
+
SizerItemWindow(Window window, int proportion, int flag, int border,
Object userData) -> SizerItem
-
+
-
+
SizerItemSizer(Sizer sizer, int proportion, int flag, int border,
Object userData) -> SizerItem
-
+
-
+
-
+
DeleteWindows()
-
+
DetachSizer()
-
+
GetSize() -> Size
-
+
CalcMin() -> Size
-
+
SetDimension(Point pos, Size size)
-
-
+
+
-
+
GetMinSize() -> Size
-
+
SetInitSize(int x, int y)
-
+
SetRatioWH(int width, int height)
-
+
SetRatioSize(Size size)
-
+
-
+
SetRatio(float ratio)
@@ -5544,7 +5541,7 @@ def DLG_SZE(win, size_width, height=None):
IsSpacer() -> bool
-
+
SetProportion(int proportion)
@@ -5553,7 +5550,7 @@ def DLG_SZE(win, size_width, height=None):
GetProportion() -> int
-
+
SetFlag(int flag)
@@ -5562,7 +5559,7 @@ def DLG_SZE(win, size_width, height=None):
GetFlag() -> int
-
+
SetBorder(int border)
@@ -5571,34 +5568,34 @@ def DLG_SZE(win, size_width, height=None):
GetBorder() -> int
-
+
GetWindow() -> Window
-
+
SetWindow(Window window)
-
+
GetSizer() -> Sizer
-
+
SetSizer(Sizer sizer)
-
+
-
+
GetSpacer() -> Size
-
+
SetSpacer(Size size)
-
+
-
+
Show(bool show)
@@ -5607,7 +5604,7 @@ def DLG_SZE(win, size_width, height=None):
IsShown() -> bool
-
+
GetPosition() -> Point
@@ -5615,80 +5612,80 @@ def DLG_SZE(win, size_width, height=None):
-
-
+
+
_setOORInfo(PyObject _self)
-
+
-
+
Add(PyObject item, int proportion=0, int flag=0, int border=0,
PyObject userData=None)
-
+
-
+
-
+
Insert(int before, PyObject item, int proportion=0, int flag=0,
int border=0, PyObject userData=None)
-
+
-
+
-
+
Prepend(PyObject item, int proportion=0, int flag=0, int border=0,
PyObject userData=None)
-
+
-
+
Remove(PyObject item) -> bool
-
+
-
+
_SetItemMinSize(PyObject item, Size size)
-
-
+
+
-
+
AddItem(SizerItem item)
-
+
-
+
InsertItem(size_t index, SizerItem item)
-
+
-
+
PrependItem(SizerItem item)
-
+
-
+
SetDimension(int x, int y, int width, int height)
@@ -5697,86 +5694,86 @@ def DLG_SZE(win, size_width, height=None):
-
+
SetMinSize(Size size)
-
+
-
+
GetSize() -> Size
-
+
GetPosition() -> Point
-
+
GetMinSize() -> Size
-
+
RecalcSizes()
-
+
CalcMin() -> Size
-
+
Layout()
-
+
Fit(Window window) -> Size
-
+
-
+
FitInside(Window window)
-
+
-
+
SetSizeHints(Window window)
-
+
-
+
SetVirtualSizeHints(Window window)
-
+
-
+
Clear(bool delete_windows=False)
-
+
DeleteWindows()
GetChildren() -> PyObject
-
+
Show(PyObject item, bool show=True)
-
+
-
+
Hide(PyObject item)
-
+
IsShown(PyObject item) -> bool
-
+
-
+
ShowItems(bool show)
@@ -5784,15 +5781,15 @@ def DLG_SZE(win, size_width, height=None):
-
+
__init__() -> PySizer
-
+
_setCallbackInfo(PyObject self, PyObject _class)
-
-
+
+
@@ -5800,7 +5797,7 @@ def DLG_SZE(win, size_width, height=None):
#---------------------------------------------------------------------------
-
+
__init__(int orient=HORIZONTAL) -> BoxSizer
@@ -5810,16 +5807,16 @@ def DLG_SZE(win, size_width, height=None):
GetOrientation() -> int
-
+
SetOrientation(int orient)
-
+
RecalcSizes()
-
+
CalcMin() -> Size
@@ -5827,21 +5824,21 @@ def DLG_SZE(win, size_width, height=None):
#---------------------------------------------------------------------------
-
+
__init__(wxStaticBox box, int orient=HORIZONTAL) -> StaticBoxSizer
-
+
GetStaticBox() -> wxStaticBox
-
+
RecalcSizes()
-
+
CalcMin() -> Size
@@ -5849,7 +5846,7 @@ def DLG_SZE(win, size_width, height=None):
#---------------------------------------------------------------------------
-
+
__init__(int rows=1, int cols=0, int vgap=0, int hgap=0) -> GridSizer
@@ -5859,31 +5856,31 @@ def DLG_SZE(win, size_width, height=None):
-
+
RecalcSizes()
-
+
CalcMin() -> Size
-
+
SetCols(int cols)
-
+
SetRows(int rows)
-
+
SetVGap(int gap)
-
+
SetHGap(int gap)
@@ -5906,7 +5903,7 @@ def DLG_SZE(win, size_width, height=None):
#---------------------------------------------------------------------------
-
+
__init__(int rows=1, int cols=0, int vgap=0, int hgap=0) -> FlexGridSizer
@@ -5916,39 +5913,39 @@ def DLG_SZE(win, size_width, height=None):
-
+
RecalcSizes()
-
+
CalcMin() -> Size
-
+
AddGrowableRow(size_t idx, int proportion=0)
-
+
RemoveGrowableRow(size_t idx)
-
+
AddGrowableCol(size_t idx, int proportion=0)
-
+
RemoveGrowableCol(size_t idx)
-
+
SetFlexibleDirection(int direction)
@@ -5957,7 +5954,7 @@ def DLG_SZE(win, size_width, height=None):
GetFlexibleDirection() -> int
-
+
SetNonFlexibleGrowMode(int mode)
@@ -5966,10 +5963,10 @@ def DLG_SZE(win, size_width, height=None):
GetNonFlexibleGrowMode() -> int
-
+
GetRowHeights() -> wxArrayInt
-
+
GetColWidths() -> wxArrayInt
@@ -5990,13 +5987,13 @@ def DLG_SZE(win, size_width, height=None):
GetCol() -> int
-
+
SetRow(int row)
-
+
SetCol(int col)
@@ -6005,16 +6002,16 @@ def DLG_SZE(win, size_width, height=None):
__eq__(GBPosition p) -> bool
-
+
__ne__(GBPosition p) -> bool
-
+
-
+
Set(int row=0, int col=0)
@@ -6039,13 +6036,13 @@ def DLG_SZE(win, size_width, height=None):
GetColspan() -> int
-
+
SetRowspan(int rowspan)
-
+
SetColspan(int colspan)
@@ -6054,16 +6051,16 @@ def DLG_SZE(win, size_width, height=None):
__eq__(GBSpan o) -> bool
-
+
__ne__(GBSpan o) -> bool
-
+
-
+
Set(int rowspan=1, int colspan=1)
@@ -6075,7 +6072,7 @@ def DLG_SZE(win, size_width, height=None):
-
+
__init__() -> GBSizerItem
@@ -6083,24 +6080,24 @@ def DLG_SZE(win, size_width, height=None):
GBSizerItemWindow(Window window, GBPosition pos, GBSpan span, int flag,
int border, Object userData) -> GBSizerItem
-
-
-
+
+
+
-
+
GBSizerItemSizer(Sizer sizer, GBPosition pos, GBSpan span, int flag,
int border, Object userData) -> GBSizerItem
-
-
-
+
+
+
-
+
@@ -6109,63 +6106,63 @@ def DLG_SZE(win, size_width, height=None):
-
-
+
+
-
+
-
+
GetPos() -> GBPosition
-
+
GetSpan() -> GBSpan
SetPos(GBPosition pos) -> bool
-
+
SetSpan(GBSpan span) -> bool
-
+
-
+
Intersects(GBSizerItem other) -> bool
Intersects(GBPosition pos, GBSpan span) -> bool
-
-
+
+
-
+
GetEndPos(int row, int col)
-
-
+
+
GetGBSizer() -> GridBagSizer
-
+
SetGBSizer(GridBagSizer sizer)
-
+
-
+
__init__(int vgap=0, int hgap=0) -> GridBagSizer
@@ -6177,40 +6174,40 @@ Intersects(GBPosition pos, GBSpan span) -> bool
Add(PyObject item, GBPosition pos, GBSpan span=DefaultSpan,
int flag=0, int border=0, PyObject userData=None) -> bool
-
-
-
+
+
+
-
+
AddItem(GBSizerItem item) -> bool
-
+
-
+
GetEmptyCellSize() -> Size
-
+
SetEmptyCellSize(Size sz)
-
+
-
+
-
+
-
+
-
+
-
+
GetItemPosition(Window window) -> GBPosition
GetItemPosition(Sizer sizer) -> GBPosition
GetItemPosition(size_t index) -> GBPosition
@@ -6220,14 +6217,14 @@ GetItemPosition(size_t index) -> GBPosition
-
-
+
+
-
-
+
+
@@ -6236,20 +6233,20 @@ SetItemPosition(Sizer sizer, GBPosition pos) -> bool
SetItemPosition(size_t index, GBPosition pos) -> bool
-
+
-
+
-
+
-
+
-
+
-
+
GetItemSpan(Window window) -> GBSpan
GetItemSpan(Sizer sizer) -> GBSpan
GetItemSpan(size_t index) -> GBSpan
@@ -6259,14 +6256,14 @@ GetItemSpan(size_t index) -> GBSpan
-
-
+
+
-
-
+
+
@@ -6275,58 +6272,58 @@ SetItemSpan(Sizer sizer, GBSpan span) -> bool
SetItemSpan(size_t index, GBSpan span) -> bool
-
+
-
+
-
+
-
+
FindItem(Window window) -> GBSizerItem
FindItem(Sizer sizer) -> GBSizerItem
-
+
-
+
FindItemAtPosition(GBPosition pos) -> GBSizerItem
-
+
-
+
FindItemAtPoint(Point pt) -> GBSizerItem
-
+
-
+
FindItemWithData(Object userData) -> GBSizerItem
-
+
-
+
RecalcSizes()
-
+
CalcMin() -> Size
-
-
+
+
CheckForIntersection(GBSizerItem item, GBSizerItem excludeItem=None) -> bool
CheckForIntersection(GBPosition pos, GBSpan span, GBSizerItem excludeItem=None) -> bool
-
-
-
+
+
+
@@ -6334,86 +6331,86 @@ CheckForIntersection(GBPosition pos, GBSpan span, GBSizerItem excludeItem=None)
#---------------------------------------------------------------------------
-
-
+
+
Set(int rel, Window otherW, int otherE, int val=0, int marg=wxLAYOUT_DEFAULT_MARGIN)
-
+
-
+
LeftOf(Window sibling, int marg=0)
-
+
-
+
RightOf(Window sibling, int marg=0)
-
+
-
+
Above(Window sibling, int marg=0)
-
+
-
+
Below(Window sibling, int marg=0)
-
+
-
+
SameAs(Window otherW, int edge, int marg=0)
-
+
-
+
PercentOf(Window otherW, int wh, int per)
-
+
-
+
Absolute(int val)
-
+
Unconstrained()
-
+
AsIs()
-
+
GetOtherWindow() -> Window
GetMyEdge() -> int
-
+
SetEdge(int which)
-
+
SetValue(int v)
@@ -6422,7 +6419,7 @@ CheckForIntersection(GBPosition pos, GBSpan span, GBSizerItem excludeItem=None)
GetMargin() -> int
-
+
SetMargin(int m)
@@ -6440,7 +6437,7 @@ CheckForIntersection(GBPosition pos, GBSpan span, GBSizerItem excludeItem=None)
GetDone() -> bool
-
+
SetDone(bool d)
@@ -6449,7 +6446,7 @@ CheckForIntersection(GBPosition pos, GBSpan span, GBSizerItem excludeItem=None)
GetRelationship() -> int
-
+
SetRelationship(int r)
@@ -6458,43 +6455,43 @@ CheckForIntersection(GBPosition pos, GBSpan span, GBSizerItem excludeItem=None)
ResetIfWin(Window otherW) -> bool
-
+
SatisfyConstraint(LayoutConstraints constraints, Window win) -> bool
-
-
+
+
GetEdge(int which, Window thisWin, Window other) -> int
-
-
+
+
-
+
__init__() -> LayoutConstraints
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
SatisfyConstraints(Window win) -> (areSatisfied, noChanges)
-
-
+
+
@@ -6735,7 +6732,7 @@ _core._wxPyFixStockObjects()
#---------------------------------------------------------------------------
-
+
__init__() -> GDIObject
@@ -6745,7 +6742,7 @@ _core._wxPyFixStockObjects()
GetVisible() -> bool
-
+
SetVisible(bool visible)
@@ -6759,7 +6756,7 @@ _core._wxPyFixStockObjects()
#---------------------------------------------------------------------------
-
+
__init__(unsigned char red=0, unsigned char green=0, unsigned char blue=0) -> Colour
@@ -6771,7 +6768,7 @@ _core._wxPyFixStockObjects()
NamedColour(String colorName) -> Colour
-
+
@@ -6795,7 +6792,7 @@ _core._wxPyFixStockObjects()
Ok() -> bool
-
+
Set(unsigned char red, unsigned char green, unsigned char blue)
@@ -6803,7 +6800,7 @@ _core._wxPyFixStockObjects()
-
+
SetRGB(unsigned long colRGB)
@@ -6812,19 +6809,19 @@ _core._wxPyFixStockObjects()
__eq__(Colour colour) -> bool
-
+
__ne__(Colour colour) -> bool
-
+
-
+
InitFromName(String colourName)
-
+
@@ -6832,14 +6829,14 @@ _core._wxPyFixStockObjects()
-
+
__init__(int n, unsigned char red, unsigned char green, unsigned char blue) -> Palette
-
-
-
+
+
+
@@ -6857,9 +6854,9 @@ _core._wxPyFixStockObjects()
GetRGB(int pixel) -> (R,G,B)
-
-
-
+
+
+
@@ -6870,11 +6867,11 @@ _core._wxPyFixStockObjects()
#---------------------------------------------------------------------------
-
+
__init__(Colour colour, int width=1, int style=SOLID) -> Pen
-
+
@@ -6885,7 +6882,7 @@ _core._wxPyFixStockObjects()
GetCap() -> int
-
+
GetColour() -> Colour
@@ -6900,41 +6897,41 @@ _core._wxPyFixStockObjects()
Ok() -> bool
-
+
SetCap(int cap_style)
-
+
SetColour(Colour colour)
-
+
-
+
SetJoin(int join_style)
-
+
SetStyle(int style)
-
+
SetWidth(int width)
-
+
SetDashes(int dashes, wxDash dashes_array)
-
+
@@ -6945,11 +6942,11 @@ _core._wxPyFixStockObjects()
-
+
__init__(Colour colour, int width=1, int style=SOLID) -> PyPen
-
+
@@ -6957,11 +6954,11 @@ _core._wxPyFixStockObjects()
__del__()
-
+
SetDashes(int dashes, wxDash dashes_array)
-
+
@@ -6972,37 +6969,37 @@ _core._wxPyFixStockObjects()
A brush is a drawing tool for filling in areas. It is used for painting the
background of rectangles, ellipses, etc. It has a colour and a style.
-
+
__init__(Colour colour, int style=SOLID) -> Brush
Constructs a brush from a colour object and style.
-
+
__del__()
-
+
SetColour(Colour col)
-
+
-
+
SetStyle(int style)
-
+
SetStipple(Bitmap stipple)
-
+
-
+
GetColour() -> Colour
@@ -7016,12 +7013,12 @@ background of rectangles, ellipses, etc. It has a colour and a style.
-
+
__init__(String name, int type=BITMAP_TYPE_ANY) -> Bitmap
Loads a bitmap from a file.
-
+
@@ -7040,7 +7037,7 @@ the current screen or visual. Some platforms only support 1 for monochrome and
BitmapFromIcon(Icon icon) -> Bitmap
Create a new bitmap from an Icon object.
-
+
@@ -7050,7 +7047,7 @@ an image as you cannot draw an image directly on a window. The resulting
bitmap will use the provided colour depth (or that of the current system if
depth is -1) which entails that a colour reduction has to take place.
-
+
@@ -7058,7 +7055,7 @@ depth is -1) which entails that a colour reduction has to take place.BitmapFromXPMData(PyObject listOfStrings) -> Bitmap
Construct a Bitmap from a list of strings formatted as XPM data.
-
+
@@ -7068,7 +7065,7 @@ monochrome bitmaps (depth 1) in portable programs: in this case the bits
parameter should contain an XBM image. For other bit depths, the behaviour is
platform dependent.
-
+
@@ -7093,7 +7090,7 @@ platform dependent.
Gets the colour depth of the bitmap. A value of 1 indicates a
monochrome bitmap.
-
+
ConvertToImage() -> Image
Creates a platform-independent image from a platform-dependent bitmap. This
preserves mask information so that bitmaps and images can be converted back
@@ -7104,66 +7101,66 @@ and forth without loss in that respect.
Gets the associated mask (if any) which may have been loaded from a file
or explpicitly set for the bitmap.
-
+
SetMask(Mask mask)
Sets the mask for this bitmap.
-
+
-
+
SetMaskColour(Colour colour)
Create a Mask based on a specified colour in the Bitmap.
-
+
-
+
GetSubBitmap(Rect rect) -> Bitmap
Returns a sub bitmap of the current one as long as the rect belongs entirely
to the bitmap. This function preserves bit depth and mask information.
-
+
SaveFile(String name, int type, Palette palette=(wxPalette *) NULL) -> bool
Saves a bitmap in the named file.
-
+
-
+
LoadFile(String name, int type) -> bool
Loads a bitmap from a file
-
+
CopyFromIcon(Icon icon) -> bool
-
+
-
+
SetHeight(int height)
Set the height property (does not affect the bitmap data).
-
+
SetWidth(int width)
Set the width property (does not affect the bitmap data).
-
+
SetDepth(int depth)
Set the depth property (does not affect the bitmap data).
@@ -7176,12 +7173,12 @@ to the bitmap. This function preserves bit depth and mask information.
-
+
__init__(Bitmap bitmap) -> Mask
Constructs a mask from a monochrome bitmap.
-
+
@@ -7189,18 +7186,18 @@ masked area will not be drawn.
Constructs a mask from a bitmap and a colour in that bitmap that indicates the
background.
-
-
+
+
-
+
- __init__(String name, long flags, int desiredWidth=-1, int desiredHeight=-1) -> Icon
+ __init__(String name, int type, int desiredWidth=-1, int desiredHeight=-1) -> Icon
-
-
+
+
@@ -7211,29 +7208,29 @@ background.
IconFromLocation(IconLocation loc) -> Icon
-
+
IconFromBitmap(Bitmap bmp) -> Icon
-
+
IconFromXPMData(PyObject listOfStrings) -> Icon
-
+
__del__()
- LoadFile(String name, long flags) -> bool
+ LoadFile(String name, int type) -> bool
-
-
+
+
@@ -7248,28 +7245,28 @@ background.
GetDepth() -> int
-
+
SetWidth(int w)
-
+
SetHeight(int h)
-
+
SetDepth(int d)
-
+
CopyFromBitmap(Bitmap bmp)
-
+
@@ -7277,7 +7274,7 @@ background.
__init__(String filename=&wxPyEmptyString, int num=0) -> IconLocation
-
+
@@ -7287,16 +7284,16 @@ background.
IsOk() -> bool
-
+
SetFileName(String filename)
-
+
-
+
GetFileName() -> String
-
+
SetIndex(int num)
@@ -7313,45 +7310,45 @@ background.
IconBundleFromFile(String file, long type) -> IconBundle
-
+
IconBundleFromIcon(Icon icon) -> IconBundle
-
+
__del__()
-
+
AddIcon(Icon icon)
-
+
-
+
AddIconFromFile(String file, long type)
-
+
-
+
GetIcon(Size size) -> Icon
-
+
-
+
__init__(String cursorName, long flags, int hotSpotX=0, int hotSpotY=0) -> Cursor
-
+
@@ -7366,19 +7363,19 @@ background.
CursorFromImage(Image image) -> Cursor
-
+
CursorFromBits(PyObject bits, int width, int height, int hotSpotX=-1,
int hotSpotY=-1, PyObject maskBits=0) -> Cursor
-
+
-
+
@@ -7392,7 +7389,7 @@ background.
#---------------------------------------------------------------------------
-
+
__init__(int x=0, int y=0, int width=0, int height=0) -> Region
@@ -7405,8 +7402,8 @@ background.
RegionFromBitmap(Bitmap bmp, Colour transColour=NullColour, int tolerance=0) -> Region
-
-
+
+
@@ -7414,14 +7411,14 @@ background.
RegionFromPoints(int points, Point points_array, int fillStyle=WINDING_RULE) -> Region
-
+
__del__()
-
+
Clear()
@@ -7441,13 +7438,13 @@ background.
ContainsPoint(Point pt) -> int
-
+
ContainsRect(Rect rect) -> int
-
+
@@ -7459,7 +7456,7 @@ background.
-
+
GetBox() -> Rect
@@ -7474,13 +7471,13 @@ background.
IntersectRect(Rect rect) -> bool
-
+
IntersectRegion(Region region) -> bool
-
+
@@ -7498,13 +7495,13 @@ background.
UnionRect(Rect rect) -> bool
-
+
UnionRegion(Region region) -> bool
-
+
@@ -7519,13 +7516,13 @@ background.
SubtractRect(Rect rect) -> bool
-
+
SubtractRegion(Region region) -> bool
-
+
@@ -7540,33 +7537,33 @@ background.
XorRect(Rect rect) -> bool
-
+
XorRegion(Region region) -> bool
-
+
-
+
ConvertToBitmap() -> Bitmap
UnionBitmap(Bitmap bmp, Colour transColour=NullColour, int tolerance=0) -> bool
-
-
+
+
-
+
__init__(Region region) -> RegionIterator
-
+
@@ -7590,16 +7587,16 @@ background.
GetHeight() -> int
-
+
GetRect() -> Rect
HaveRects() -> bool
-
+
Reset()
-
+
Next()
@@ -7619,13 +7616,13 @@ background.
__del__()
-
+
Init()
-
+
InitFromFont(Font font)
-
+
@@ -7640,7 +7637,7 @@ background.
GetUnderlined() -> bool
-
+
GetFaceName() -> String
@@ -7649,43 +7646,43 @@ background.
GetEncoding() -> int
-
+
SetPointSize(int pointsize)
-
+
SetStyle(int style)
-
+
SetWeight(int weight)
-
+
SetUnderlined(bool underlined)
-
+
SetFaceName(String facename)
-
+
-
+
SetFamily(int family)
-
+
SetEncoding(int encoding)
@@ -7694,22 +7691,22 @@ background.
FromString(String s) -> bool
-
+
-
+
ToString() -> String
-
+
__str__() -> String
FromUserString(String s) -> bool
-
+
-
+
ToUserString() -> String
@@ -7720,19 +7717,19 @@ background.
__del__()
-
+
FromString(String s) -> bool
-
+
-
+
ToString() -> String
-
+
GetNativeFontEncoding(int encoding) -> NativeEncodingInfo
@@ -7741,7 +7738,7 @@ background.
TestFontEncoding(NativeEncodingInfo info) -> bool
-
+
@@ -7754,19 +7751,19 @@ background.
__del__()
-
+
FontMapper.Get() -> FontMapper
-
+
FontMapper.Set(FontMapper mapper) -> FontMapper
-
+
CharsetToEncoding(String charset, bool interactive=True) -> int
-
+
@@ -7779,38 +7776,38 @@ background.
-
+
FontMapper.GetEncodingName(int encoding) -> String
-
+
FontMapper.GetEncodingDescription(int encoding) -> String
-
+
SetConfig(ConfigBase config)
-
+
-
+
SetConfigPath(String prefix)
-
+
-
+
FontMapper.GetDefaultConfigPath() -> String
GetAltForEncoding(int encoding, String facename=EmptyString, bool interactive=True) -> PyObject
-
+
@@ -7818,19 +7815,19 @@ background.
IsEncodingAvailable(int encoding, String facename=EmptyString) -> bool
-
+
-
+
SetDialogParent(Window parent)
-
+
-
+
SetDialogTitle(String title)
-
+
@@ -7838,7 +7835,7 @@ background.
#---------------------------------------------------------------------------
-
+
__init__(int pointSize, int family, int style, int weight, bool underline=False,
String face=EmptyString,
@@ -7849,20 +7846,20 @@ background.
-
+
FontFromNativeInfo(NativeFontInfo info) -> Font
-
+
FontFromNativeInfoString(String info) -> Font
-
+
@@ -7872,7 +7869,7 @@ background.
-
+
@@ -7885,13 +7882,13 @@ background.
__eq__(Font font) -> bool
-
+
__ne__(Font font) -> bool
-
+
@@ -7909,94 +7906,94 @@ background.
GetUnderlined() -> bool
-
+
GetFaceName() -> String
GetEncoding() -> int
-
+
GetNativeFontInfo() -> NativeFontInfo
IsFixedWidth() -> bool
-
+
GetNativeFontInfoDesc() -> String
-
+
GetNativeFontInfoUserDesc() -> String
-
+
SetPointSize(int pointSize)
-
+
SetFamily(int family)
-
+
SetStyle(int style)
-
+
SetWeight(int weight)
-
+
SetFaceName(String faceName)
-
+
-
+
SetUnderlined(bool underlined)
-
+
SetEncoding(int encoding)
-
+
SetNativeFontInfo(NativeFontInfo info)
-
+
-
+
SetNativeFontInfoFromString(String info)
-
+
-
+
SetNativeFontInfoUserDesc(String info)
-
+
-
+
GetFamilyString() -> String
-
+
GetStyleString() -> String
-
+
GetWeightString() -> String
-
+
SetNoAntiAliasing(bool no=True)
@@ -8008,7 +8005,7 @@ background.
Font.GetDefaultEncoding() -> int
-
+
Font.SetDefaultEncoding(int encoding)
@@ -8025,11 +8022,11 @@ background.
__del__()
-
+
_setCallbackInfo(PyObject self, PyObject _class, bool incref)
-
-
+
+
@@ -8043,7 +8040,7 @@ background.
EnumerateEncodings(String facename=EmptyString) -> bool
-
+
@@ -8058,8 +8055,8 @@ background.
-
-
+
+
@@ -8077,9 +8074,9 @@ background.
bool bLoadDefault=True,
bool bConvertEncoding=False) -> bool
-
-
-
+
+
+
@@ -8097,91 +8094,91 @@ background.
Locale.GetSystemEncoding() -> int
-
+
Locale.GetSystemEncodingName() -> String
IsOk() -> bool
-
+
GetLocale() -> String
GetLanguage() -> int
-
+
GetSysName() -> String
-
+
GetCanonicalName() -> String
-
+
Locale.AddCatalogLookupPathPrefix(String prefix)
-
+
AddCatalog(String szDomain) -> bool
-
+
IsLoaded(String szDomain) -> bool
-
+
-
+
Locale.GetLanguageInfo(int lang) -> LanguageInfo
-
+
Locale.GetLanguageName(int lang) -> String
-
+
Locale.FindLanguageInfo(String locale) -> LanguageInfo
-
+
-
+
Locale.AddLanguage(LanguageInfo info)
-
+
-
+
GetString(String szOrigString, String szDomain=EmptyString) -> String
-
-
+
+
-
+
GetName() -> String
-
+
GetLocale() -> Locale
-
+
-
+
-
+
GetTranslation(String sz) -> String
GetTranslation(String sz1, String sz2, size_t n) -> String
-
-
+
+
@@ -8189,7 +8186,7 @@ GetTranslation(String sz1, String sz2, size_t n) -> String
#---------------------------------------------------------------------------
-
+
__init__() -> EncodingConverter
@@ -8204,10 +8201,10 @@ GetTranslation(String sz1, String sz2, size_t n) -> String
-
+
Convert(String input) -> String
-
+
@@ -8255,14 +8252,14 @@ if wx.Platform == "__WXMSW__":
#---------------------------------------------------------------------------
-
+
__del__()
-
+
BeginDrawing()
-
+
EndDrawing()
@@ -8270,32 +8267,32 @@ if wx.Platform == "__WXMSW__":
-
+
FloodFill(Point pt, Colour col, int style=FLOOD_SURFACE) -> bool
-
-
+
+
-
+
GetPixelXY(int x, int y) -> Colour
-
+
GetPixel(Point pt) -> Colour
-
+
-
+
DrawLineXY(int x1, int y1, int x2, int y2)
@@ -8304,27 +8301,27 @@ if wx.Platform == "__WXMSW__":
-
+
DrawLine(Point pt1, Point pt2)
-
-
+
+
-
+
CrossHairXY(int x, int y)
-
+
CrossHair(Point pt)
-
+
-
+
DrawArcXY(int x1, int y1, int x2, int y2, int xc, int yc)
@@ -8335,15 +8332,15 @@ if wx.Platform == "__WXMSW__":
-
+
DrawArc(Point pt1, Point pt2, Point centre)
-
-
-
+
+
+
-
+
DrawCheckMarkXY(int x, int y, int width, int height)
@@ -8352,13 +8349,13 @@ if wx.Platform == "__WXMSW__":
-
+
DrawCheckMark(Rect rect)
-
+
-
+
DrawEllipticArcXY(int x, int y, int w, int h, double sa, double ea)
@@ -8369,29 +8366,29 @@ if wx.Platform == "__WXMSW__":
-
+
DrawEllipticArc(Point pt, Size sz, double sa, double ea)
-
-
+
+
-
+
DrawPointXY(int x, int y)
-
+
DrawPoint(Point pt)
-
+
-
+
DrawRectangleXY(int x, int y, int width, int height)
@@ -8400,20 +8397,20 @@ if wx.Platform == "__WXMSW__":
-
+
DrawRectangle(Point pt, Size sz)
-
-
+
+
-
+
DrawRectangleRect(Rect rect)
-
+
-
+
DrawRoundedRectangleXY(int x, int y, int width, int height, double radius)
@@ -8423,22 +8420,22 @@ if wx.Platform == "__WXMSW__":
-
+
DrawRoundedRectangle(Point pt, Size sz, double radius)
-
-
+
+
-
+
DrawRoundedRectangleRect(Rect r, double radius)
-
+
-
+
DrawCircleXY(int x, int y, int radius)
@@ -8446,14 +8443,14 @@ if wx.Platform == "__WXMSW__":
-
+
DrawCircle(Point pt, int radius)
-
+
-
+
DrawEllipseXY(int x, int y, int width, int height)
@@ -8462,80 +8459,80 @@ if wx.Platform == "__WXMSW__":
-
+
DrawEllipse(Point pt, Size sz)
-
-
+
+
-
+
DrawEllipseRect(Rect rect)
-
+
-
+
DrawIconXY(Icon icon, int x, int y)
-
+
-
+
DrawIcon(Icon icon, Point pt)
-
-
+
+
-
+
DrawBitmapXY(Bitmap bmp, int x, int y, bool useMask=False)
-
+
-
+
DrawBitmap(Bitmap bmp, Point pt, bool useMask=False)
-
-
+
+
-
+
DrawTextXY(String text, int x, int y)
-
+
-
+
DrawText(String text, Point pt)
-
-
+
+
-
+
DrawRotatedTextXY(String text, int x, int y, double angle)
-
+
-
+
DrawRotatedText(String text, Point pt, double angle)
-
-
+
+
@@ -8548,7 +8545,7 @@ if wx.Platform == "__WXMSW__":
-
+
@@ -8561,118 +8558,118 @@ if wx.Platform == "__WXMSW__":
Blit(Point destPt, Size sz, DC source, Point srcPt, int rop=COPY,
bool useMask=False, Point srcPtMask=DefaultPosition) -> bool
-
-
-
-
+
+
+
+
-
+
-
+
DrawLines(int points, Point points_array, int xoffset=0, int yoffset=0)
-
+
-
+
DrawPolygon(int points, Point points_array, int xoffset=0, int yoffset=0,
int fillStyle=ODDEVEN_RULE)
-
+
-
+
DrawLabel(String text, Rect rect, int alignment=wxALIGN_LEFT|wxALIGN_TOP,
int indexAccel=-1)
-
-
+
+
-
+
DrawImageLabel(String text, Bitmap image, Rect rect, int alignment=wxALIGN_LEFT|wxALIGN_TOP,
int indexAccel=-1) -> Rect
-
-
-
+
+
+
-
+
DrawSpline(int points, Point points_array)
-
+
-
+
Clear()
StartDoc(String message) -> bool
-
+
-
+
EndDoc()
-
+
StartPage()
-
+
EndPage()
-
+
SetFont(Font font)
-
+
-
+
SetPen(Pen pen)
-
+
-
+
SetBrush(Brush brush)
-
+
-
+
SetBackground(Brush brush)
-
+
-
+
SetBackgroundMode(int mode)
-
+
SetPalette(Palette palette)
-
+
-
+
SetClippingRegionXY(int x, int y, int width, int height)
@@ -8681,38 +8678,38 @@ if wx.Platform == "__WXMSW__":
-
+
SetClippingRegion(Point pt, Size sz)
-
-
+
+
-
+
SetClippingRect(Rect rect)
-
+
-
+
SetClippingRegionAsRegion(Region region)
-
+
-
+
DestroyClippingRegion()
-
+
GetClippingBox() -> (x, y, width, height)
-
-
-
-
+
+
+
+
-
+
GetClippingRect() -> Rect
@@ -8721,65 +8718,65 @@ if wx.Platform == "__WXMSW__":
GetCharWidth() -> int
-
+
GetTextExtent(wxString string) -> (width, height)
Get the width and height of the text using the current font.
Only works for single line strings.
-
-
-
+
+
+
-
+
GetFullTextExtent(wxString string, Font font=None) ->
(width, height, descent, externalLeading)
Get the width, height, decent and leading of the text using the current or specified font.
Only works for single line strings.
-
-
-
-
-
-
+
+
+
+
+
+
-
+
GetMultiLineTextExtent(wxString string, Font font=None) ->
(width, height, descent, externalLeading)
Get the width, height, decent and leading of the text using the current or specified font.
Works for single as well as multi-line strings.
-
-
-
-
-
+
+
+
+
+
-
+
GetSize() -> Size
Get the DC size in device units.
-
+
GetSizeTuple() -> (width, height)
Get the DC size in device units.
-
-
+
+
-
+
GetSizeMM() -> Size
Get the DC size in milimeters.
-
+
GetSizeMMTuple() -> (width, height)
Get the DC size in milimeters.
-
-
+
+
@@ -8839,7 +8836,7 @@ Works for single as well as multi-line strings.
GetDepth() -> int
-
+
GetPPI() -> Size
@@ -8848,108 +8845,108 @@ Works for single as well as multi-line strings.
GetBackgroundMode() -> int
-
+
GetBackground() -> Brush
-
+
GetBrush() -> Brush
-
+
GetFont() -> Font
-
+
GetPen() -> Pen
-
+
GetTextBackground() -> Colour
-
+
GetTextForeground() -> Colour
-
+
SetTextForeground(Colour colour)
-
+
-
+
SetTextBackground(Colour colour)
-
+
GetMapMode() -> int
-
+
SetMapMode(int mode)
-
+
GetUserScale() -> (xScale, yScale)
-
-
+
+
-
+
SetUserScale(double x, double y)
-
+
GetLogicalScale() -> (xScale, yScale)
-
-
+
+
-
+
SetLogicalScale(double x, double y)
-
+
GetLogicalOrigin() -> Point
-
+
GetLogicalOriginTuple() -> (x,y)
-
-
+
+
-
+
SetLogicalOrigin(int x, int y)
-
+
GetDeviceOrigin() -> Point
-
+
GetDeviceOriginTuple() -> (x,y)
-
-
+
+
-
+
SetDeviceOrigin(int x, int y)
-
+
SetAxisOrientation(bool xLeftRight, bool yBottomUp)
@@ -8959,13 +8956,13 @@ Works for single as well as multi-line strings.
GetLogicalFunction() -> int
-
+
SetLogicalFunction(int function)
-
+
SetOptimization(bool opt)
@@ -8974,14 +8971,14 @@ Works for single as well as multi-line strings.
GetOptimization() -> bool
-
+
CalcBoundingBox(int x, int y)
-
+
ResetBoundingBox()
@@ -8996,63 +8993,63 @@ Works for single as well as multi-line strings.
MaxY() -> int
-
+
GetBoundingBox() -> (x1,y1, x2,y2)
-
-
-
-
+
+
+
+
_DrawPointList(PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -> PyObject
-
-
-
+
+
+
_DrawLineList(PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -> PyObject
-
-
-
+
+
+
_DrawRectangleList(PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -> PyObject
-
-
-
+
+
+
_DrawEllipseList(PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -> PyObject
-
-
-
+
+
+
_DrawPolygonList(PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -> PyObject
-
-
-
+
+
+
_DrawTextList(PyObject textList, PyObject pyPoints, PyObject foregroundList,
PyObject backgroundList) -> PyObject
-
-
-
-
+
+
+
+
@@ -9060,20 +9057,20 @@ Works for single as well as multi-line strings.
#---------------------------------------------------------------------------
-
+
__init__() -> MemoryDC
MemoryDCFromDC(DC oldDC) -> MemoryDC
-
+
-
+
SelectObject(Bitmap bitmap)
-
+
@@ -9081,32 +9078,32 @@ Works for single as well as multi-line strings.
#---------------------------------------------------------------------------
-
+
__init__(DC dc, Bitmap buffer) -> BufferedDC
-
-
+
+
BufferedDCInternalBuffer(DC dc, Size area) -> BufferedDC
-
-
+
+
-
+
UnMask()
-
+
__init__(Window window, Bitmap buffer=NullBitmap) -> BufferedPaintDC
-
-
+
+
@@ -9114,20 +9111,20 @@ Works for single as well as multi-line strings.
#---------------------------------------------------------------------------
-
+
__init__() -> ScreenDC
StartDrawingOnTopWin(Window window) -> bool
-
+
StartDrawingOnTop(Rect rect=None) -> bool
-
+
@@ -9138,11 +9135,11 @@ Works for single as well as multi-line strings.
#---------------------------------------------------------------------------
-
+
__init__(Window win) -> ClientDC
-
+
@@ -9150,11 +9147,11 @@ Works for single as well as multi-line strings.
#---------------------------------------------------------------------------
-
+
__init__(Window win) -> PaintDC
-
+
@@ -9162,11 +9159,11 @@ Works for single as well as multi-line strings.
#---------------------------------------------------------------------------
-
+
__init__(Window win) -> WindowDC
-
+
@@ -9174,11 +9171,11 @@ Works for single as well as multi-line strings.
#---------------------------------------------------------------------------
-
+
__init__(DC dc, bool mirror) -> MirrorDC
-
+
@@ -9187,23 +9184,23 @@ Works for single as well as multi-line strings.
#---------------------------------------------------------------------------
-
+
__init__(wxPrintData printData) -> PostScriptDC
-
+
GetPrintData() -> wxPrintData
-
+
SetPrintData(wxPrintData data)
-
+
-
+
PostScriptDC.SetResolution(int ppi)
@@ -9217,41 +9214,293 @@ Works for single as well as multi-line strings.
#---------------------------------------------------------------------------
-
+
__init__(String filename=EmptyString) -> MetaFile
-
+
-
+
__init__(String filename=EmptyString, int width=0, int height=0,
String description=EmptyString) -> MetaFileDC
-
+
-
+
-
+
__init__(wxPrintData printData) -> PrinterDC
-
+
+ class DC_old(DC):
+ """DC class that has methods with 2.4 compatible parameters."""
+ FloodFill = DC.FloodFillXY
+ GetPixel = DC.GetPixelXY
+ DrawLine = DC.DrawLineXY
+ CrossHair = DC.CrossHairXY
+ DrawArc = DC.DrawArcXY
+ DrawCheckMark = DC.DrawCheckMarkXY
+ DrawEllipticArc = DC.DrawEllipticArcXY
+ DrawPoint = DC.DrawPointXY
+ DrawRectangle = DC.DrawRectangleXY
+ DrawRoundedRectangle = DC.DrawRoundedRectangleXY
+ DrawCircle = DC.DrawCircleXY
+ DrawEllipse = DC.DrawEllipseXY
+ DrawIcon = DC.DrawIconXY
+ DrawBitmap = DC.DrawBitmapXY
+ DrawText = DC.DrawTextXY
+ DrawRotatedText = DC.DrawRotatedTextXY
+ Blit = DC.BlitXY
+
+
+ class MemoryDC_old(MemoryDC):
+ """DC class that has methods with 2.4 compatible parameters."""
+ FloodFill = MemoryDC.FloodFillXY
+ GetPixel = MemoryDC.GetPixelXY
+ DrawLine = MemoryDC.DrawLineXY
+ CrossHair = MemoryDC.CrossHairXY
+ DrawArc = MemoryDC.DrawArcXY
+ DrawCheckMark = MemoryDC.DrawCheckMarkXY
+ DrawEllipticArc = MemoryDC.DrawEllipticArcXY
+ DrawPoint = MemoryDC.DrawPointXY
+ DrawRectangle = MemoryDC.DrawRectangleXY
+ DrawRoundedRectangle = MemoryDC.DrawRoundedRectangleXY
+ DrawCircle = MemoryDC.DrawCircleXY
+ DrawEllipse = MemoryDC.DrawEllipseXY
+ DrawIcon = MemoryDC.DrawIconXY
+ DrawBitmap = MemoryDC.DrawBitmapXY
+ DrawText = MemoryDC.DrawTextXY
+ DrawRotatedText = MemoryDC.DrawRotatedTextXY
+ Blit = MemoryDC.BlitXY
+
+
+ class BufferedDC_old(BufferedDC):
+ """DC class that has methods with 2.4 compatible parameters."""
+ FloodFill = BufferedDC.FloodFillXY
+ GetPixel = BufferedDC.GetPixelXY
+ DrawLine = BufferedDC.DrawLineXY
+ CrossHair = BufferedDC.CrossHairXY
+ DrawArc = BufferedDC.DrawArcXY
+ DrawCheckMark = BufferedDC.DrawCheckMarkXY
+ DrawEllipticArc = BufferedDC.DrawEllipticArcXY
+ DrawPoint = BufferedDC.DrawPointXY
+ DrawRectangle = BufferedDC.DrawRectangleXY
+ DrawRoundedRectangle = BufferedDC.DrawRoundedRectangleXY
+ DrawCircle = BufferedDC.DrawCircleXY
+ DrawEllipse = BufferedDC.DrawEllipseXY
+ DrawIcon = BufferedDC.DrawIconXY
+ DrawBitmap = BufferedDC.DrawBitmapXY
+ DrawText = BufferedDC.DrawTextXY
+ DrawRotatedText = BufferedDC.DrawRotatedTextXY
+ Blit = BufferedDC.BlitXY
+
+
+ class BufferedPaintDC_old(BufferedPaintDC):
+ """DC class that has methods with 2.4 compatible parameters."""
+ FloodFill = BufferedPaintDC.FloodFillXY
+ GetPixel = BufferedPaintDC.GetPixelXY
+ DrawLine = BufferedPaintDC.DrawLineXY
+ CrossHair = BufferedPaintDC.CrossHairXY
+ DrawArc = BufferedPaintDC.DrawArcXY
+ DrawCheckMark = BufferedPaintDC.DrawCheckMarkXY
+ DrawEllipticArc = BufferedPaintDC.DrawEllipticArcXY
+ DrawPoint = BufferedPaintDC.DrawPointXY
+ DrawRectangle = BufferedPaintDC.DrawRectangleXY
+ DrawRoundedRectangle = BufferedPaintDC.DrawRoundedRectangleXY
+ DrawCircle = BufferedPaintDC.DrawCircleXY
+ DrawEllipse = BufferedPaintDC.DrawEllipseXY
+ DrawIcon = BufferedPaintDC.DrawIconXY
+ DrawBitmap = BufferedPaintDC.DrawBitmapXY
+ DrawText = BufferedPaintDC.DrawTextXY
+ DrawRotatedText = BufferedPaintDC.DrawRotatedTextXY
+ Blit = BufferedPaintDC.BlitXY
+
+
+ class ScreenDC_old(ScreenDC):
+ """DC class that has methods with 2.4 compatible parameters."""
+ FloodFill = ScreenDC.FloodFillXY
+ GetPixel = ScreenDC.GetPixelXY
+ DrawLine = ScreenDC.DrawLineXY
+ CrossHair = ScreenDC.CrossHairXY
+ DrawArc = ScreenDC.DrawArcXY
+ DrawCheckMark = ScreenDC.DrawCheckMarkXY
+ DrawEllipticArc = ScreenDC.DrawEllipticArcXY
+ DrawPoint = ScreenDC.DrawPointXY
+ DrawRectangle = ScreenDC.DrawRectangleXY
+ DrawRoundedRectangle = ScreenDC.DrawRoundedRectangleXY
+ DrawCircle = ScreenDC.DrawCircleXY
+ DrawEllipse = ScreenDC.DrawEllipseXY
+ DrawIcon = ScreenDC.DrawIconXY
+ DrawBitmap = ScreenDC.DrawBitmapXY
+ DrawText = ScreenDC.DrawTextXY
+ DrawRotatedText = ScreenDC.DrawRotatedTextXY
+ Blit = ScreenDC.BlitXY
+
+
+ class ClientDC_old(ClientDC):
+ """DC class that has methods with 2.4 compatible parameters."""
+ FloodFill = ClientDC.FloodFillXY
+ GetPixel = ClientDC.GetPixelXY
+ DrawLine = ClientDC.DrawLineXY
+ CrossHair = ClientDC.CrossHairXY
+ DrawArc = ClientDC.DrawArcXY
+ DrawCheckMark = ClientDC.DrawCheckMarkXY
+ DrawEllipticArc = ClientDC.DrawEllipticArcXY
+ DrawPoint = ClientDC.DrawPointXY
+ DrawRectangle = ClientDC.DrawRectangleXY
+ DrawRoundedRectangle = ClientDC.DrawRoundedRectangleXY
+ DrawCircle = ClientDC.DrawCircleXY
+ DrawEllipse = ClientDC.DrawEllipseXY
+ DrawIcon = ClientDC.DrawIconXY
+ DrawBitmap = ClientDC.DrawBitmapXY
+ DrawText = ClientDC.DrawTextXY
+ DrawRotatedText = ClientDC.DrawRotatedTextXY
+ Blit = ClientDC.BlitXY
+
+
+ class PaintDC_old(PaintDC):
+ """DC class that has methods with 2.4 compatible parameters."""
+ FloodFill = PaintDC.FloodFillXY
+ GetPixel = PaintDC.GetPixelXY
+ DrawLine = PaintDC.DrawLineXY
+ CrossHair = PaintDC.CrossHairXY
+ DrawArc = PaintDC.DrawArcXY
+ DrawCheckMark = PaintDC.DrawCheckMarkXY
+ DrawEllipticArc = PaintDC.DrawEllipticArcXY
+ DrawPoint = PaintDC.DrawPointXY
+ DrawRectangle = PaintDC.DrawRectangleXY
+ DrawRoundedRectangle = PaintDC.DrawRoundedRectangleXY
+ DrawCircle = PaintDC.DrawCircleXY
+ DrawEllipse = PaintDC.DrawEllipseXY
+ DrawIcon = PaintDC.DrawIconXY
+ DrawBitmap = PaintDC.DrawBitmapXY
+ DrawText = PaintDC.DrawTextXY
+ DrawRotatedText = PaintDC.DrawRotatedTextXY
+ Blit = PaintDC.BlitXY
+
+
+ class WindowDC_old(WindowDC):
+ """DC class that has methods with 2.4 compatible parameters."""
+ FloodFill = WindowDC.FloodFillXY
+ GetPixel = WindowDC.GetPixelXY
+ DrawLine = WindowDC.DrawLineXY
+ CrossHair = WindowDC.CrossHairXY
+ DrawArc = WindowDC.DrawArcXY
+ DrawCheckMark = WindowDC.DrawCheckMarkXY
+ DrawEllipticArc = WindowDC.DrawEllipticArcXY
+ DrawPoint = WindowDC.DrawPointXY
+ DrawRectangle = WindowDC.DrawRectangleXY
+ DrawRoundedRectangle = WindowDC.DrawRoundedRectangleXY
+ DrawCircle = WindowDC.DrawCircleXY
+ DrawEllipse = WindowDC.DrawEllipseXY
+ DrawIcon = WindowDC.DrawIconXY
+ DrawBitmap = WindowDC.DrawBitmapXY
+ DrawText = WindowDC.DrawTextXY
+ DrawRotatedText = WindowDC.DrawRotatedTextXY
+ Blit = WindowDC.BlitXY
+
+
+ class MirrorDC_old(MirrorDC):
+ """DC class that has methods with 2.4 compatible parameters."""
+ FloodFill = MirrorDC.FloodFillXY
+ GetPixel = MirrorDC.GetPixelXY
+ DrawLine = MirrorDC.DrawLineXY
+ CrossHair = MirrorDC.CrossHairXY
+ DrawArc = MirrorDC.DrawArcXY
+ DrawCheckMark = MirrorDC.DrawCheckMarkXY
+ DrawEllipticArc = MirrorDC.DrawEllipticArcXY
+ DrawPoint = MirrorDC.DrawPointXY
+ DrawRectangle = MirrorDC.DrawRectangleXY
+ DrawRoundedRectangle = MirrorDC.DrawRoundedRectangleXY
+ DrawCircle = MirrorDC.DrawCircleXY
+ DrawEllipse = MirrorDC.DrawEllipseXY
+ DrawIcon = MirrorDC.DrawIconXY
+ DrawBitmap = MirrorDC.DrawBitmapXY
+ DrawText = MirrorDC.DrawTextXY
+ DrawRotatedText = MirrorDC.DrawRotatedTextXY
+ Blit = MirrorDC.BlitXY
+
+
+ class PostScriptDC_old(PostScriptDC):
+ """DC class that has methods with 2.4 compatible parameters."""
+ FloodFill = PostScriptDC.FloodFillXY
+ GetPixel = PostScriptDC.GetPixelXY
+ DrawLine = PostScriptDC.DrawLineXY
+ CrossHair = PostScriptDC.CrossHairXY
+ DrawArc = PostScriptDC.DrawArcXY
+ DrawCheckMark = PostScriptDC.DrawCheckMarkXY
+ DrawEllipticArc = PostScriptDC.DrawEllipticArcXY
+ DrawPoint = PostScriptDC.DrawPointXY
+ DrawRectangle = PostScriptDC.DrawRectangleXY
+ DrawRoundedRectangle = PostScriptDC.DrawRoundedRectangleXY
+ DrawCircle = PostScriptDC.DrawCircleXY
+ DrawEllipse = PostScriptDC.DrawEllipseXY
+ DrawIcon = PostScriptDC.DrawIconXY
+ DrawBitmap = PostScriptDC.DrawBitmapXY
+ DrawText = PostScriptDC.DrawTextXY
+ DrawRotatedText = PostScriptDC.DrawRotatedTextXY
+ Blit = PostScriptDC.BlitXY
+
+
+ class MetaFileDC_old(MetaFileDC):
+ """DC class that has methods with 2.4 compatible parameters."""
+ FloodFill = MetaFileDC.FloodFillXY
+ GetPixel = MetaFileDC.GetPixelXY
+ DrawLine = MetaFileDC.DrawLineXY
+ CrossHair = MetaFileDC.CrossHairXY
+ DrawArc = MetaFileDC.DrawArcXY
+ DrawCheckMark = MetaFileDC.DrawCheckMarkXY
+ DrawEllipticArc = MetaFileDC.DrawEllipticArcXY
+ DrawPoint = MetaFileDC.DrawPointXY
+ DrawRectangle = MetaFileDC.DrawRectangleXY
+ DrawRoundedRectangle = MetaFileDC.DrawRoundedRectangleXY
+ DrawCircle = MetaFileDC.DrawCircleXY
+ DrawEllipse = MetaFileDC.DrawEllipseXY
+ DrawIcon = MetaFileDC.DrawIconXY
+ DrawBitmap = MetaFileDC.DrawBitmapXY
+ DrawText = MetaFileDC.DrawTextXY
+ DrawRotatedText = MetaFileDC.DrawRotatedTextXY
+ Blit = MetaFileDC.BlitXY
+
+
+ class PrinterDC_old(PrinterDC):
+ """DC class that has methods with 2.4 compatible parameters."""
+ FloodFill = PrinterDC.FloodFillXY
+ GetPixel = PrinterDC.GetPixelXY
+ DrawLine = PrinterDC.DrawLineXY
+ CrossHair = PrinterDC.CrossHairXY
+ DrawArc = PrinterDC.DrawArcXY
+ DrawCheckMark = PrinterDC.DrawCheckMarkXY
+ DrawEllipticArc = PrinterDC.DrawEllipticArcXY
+ DrawPoint = PrinterDC.DrawPointXY
+ DrawRectangle = PrinterDC.DrawRectangleXY
+ DrawRoundedRectangle = PrinterDC.DrawRoundedRectangleXY
+ DrawCircle = PrinterDC.DrawCircleXY
+ DrawEllipse = PrinterDC.DrawEllipseXY
+ DrawIcon = PrinterDC.DrawIconXY
+ DrawBitmap = PrinterDC.DrawBitmapXY
+ DrawText = PrinterDC.DrawTextXY
+ DrawRotatedText = PrinterDC.DrawRotatedTextXY
+ Blit = PrinterDC.BlitXY
+
+
#---------------------------------------------------------------------------
-
+
__init__(int width, int height, int mask=True, int initialCount=1) -> ImageList
@@ -9267,28 +9516,28 @@ Works for single as well as multi-line strings.
Add(Bitmap bitmap, Bitmap mask=NullBitmap) -> int
-
-
+
+
AddWithColourMask(Bitmap bitmap, Colour maskColour) -> int
-
-
+
+
AddIcon(Icon icon) -> int
-
+
Replace(int index, Bitmap bitmap) -> bool
-
+
@@ -9296,11 +9545,11 @@ Works for single as well as multi-line strings.
bool solidBackground=False) -> bool
-
+
-
+
@@ -9315,12 +9564,12 @@ Works for single as well as multi-line strings.
RemoveAll() -> bool
-
+
GetSize() -> (width,height)
-
-
+
+
@@ -9328,25 +9577,25 @@ Works for single as well as multi-line strings.
#---------------------------------------------------------------------------
-
-
+
+
AddPen(Pen pen)
-
+
-
+
FindOrCreatePen(Colour colour, int width, int style) -> Pen
-
+
-
+
RemovePen(Pen pen)
-
+
@@ -9354,24 +9603,24 @@ Works for single as well as multi-line strings.
-
-
+
+
AddBrush(Brush brush)
-
+
-
+
FindOrCreateBrush(Colour colour, int style) -> Brush
-
+
-
+
RemoveBrush(Brush brush)
-
+
@@ -9379,36 +9628,36 @@ Works for single as well as multi-line strings.
-
+
__init__() -> ColourDatabase
__del__()
-
+
Find(String name) -> Colour
-
+
-
+
FindName(Colour colour) -> String
-
+
-
+
AddColour(String name, Colour colour)
-
-
+
+
-
+
Append(String name, int red, int green, int blue)
-
+
@@ -9416,14 +9665,14 @@ Works for single as well as multi-line strings.
-
-
+
+
AddFont(Font font)
-
+
-
+
FindOrCreateFont(int point_size, int family, int style, int weight,
bool underline=False, String facename=EmptyString,
int encoding=FONTENCODING_DEFAULT) -> Font
@@ -9433,14 +9682,14 @@ Works for single as well as multi-line strings.
-
+
-
+
RemoveFont(Font font)
-
+
@@ -9454,80 +9703,80 @@ Works for single as well as multi-line strings.
#---------------------------------------------------------------------------
-
+
__init__() -> Effects
-
+
GetHighlightColour() -> Colour
-
+
GetLightShadow() -> Colour
-
+
GetFaceColour() -> Colour
-
+
GetMediumShadow() -> Colour
-
+
GetDarkShadow() -> Colour
-
+
SetHighlightColour(Colour c)
-
+
-
+
SetLightShadow(Colour c)
-
+
-
+
SetFaceColour(Colour c)
-
+
-
+
SetMediumShadow(Colour c)
-
+
-
+
SetDarkShadow(Colour c)
-
+
-
+
Set(Colour highlightColour, Colour lightShadow, Colour faceColour,
Colour mediumShadow, Colour darkShadow)
-
-
-
-
-
+
+
+
+
+
-
+
DrawSunkenEdge(DC dc, Rect rect, int borderSize=1)
-
-
+
+
TileBitmap(Rect rect, DC dc, Bitmap bitmap) -> bool
-
-
-
+
+
+
@@ -9539,18 +9788,18 @@ Works for single as well as multi-line strings.
#---------------------------------------------------------------------------
-
+
__init__(Window parent, int id=-1, Point pos=DefaultPosition,
Size size=DefaultSize, long style=wxTAB_TRAVERSAL|wxNO_BORDER,
String name=PanelNameStr) -> Panel
-
-
-
-
+
+
+
+
-
+
@@ -9561,15 +9810,15 @@ Works for single as well as multi-line strings.
long style=wxTAB_TRAVERSAL|wxNO_BORDER,
String name=PanelNameStr) -> bool
-
-
-
-
+
+
+
+
-
+
-
+
InitDialog()
@@ -9577,18 +9826,18 @@ Works for single as well as multi-line strings.
#---------------------------------------------------------------------------
-
+
__init__(Window parent, int id=-1, Point pos=DefaultPosition,
Size size=DefaultSize, long style=wxHSCROLL|wxVSCROLL,
String name=PanelNameStr) -> ScrolledWindow
-
-
-
-
+
+
+
+
-
+
@@ -9599,15 +9848,15 @@ Works for single as well as multi-line strings.
Size size=DefaultSize, long style=wxHSCROLL|wxVSCROLL,
String name=PanelNameStr) -> bool
-
-
-
-
+
+
+
+
-
+
-
+
SetScrollbars(int pixelsPerUnitX, int pixelsPerUnitY, int noUnitsX,
int noUnitsY, int xPos=0, int yPos=0, bool noRefresh=False)
@@ -9620,7 +9869,7 @@ Works for single as well as multi-line strings.
-
+
Scroll(int x, int y)
@@ -9633,44 +9882,44 @@ Works for single as well as multi-line strings.
-
+
SetScrollPageSize(int orient, int pageSize)
-
+
SetScrollRate(int xstep, int ystep)
-
+
GetScrollPixelsPerUnit() -> (xUnit, yUnit)
Get the size of one logical unit in physical units.
-
-
+
+
-
+
EnableScrolling(bool x_scrolling, bool y_scrolling)
-
+
GetViewStart() -> (x,y)
Get the view start
-
-
+
+
-
+
SetScale(double xs, double ys)
@@ -9683,56 +9932,56 @@ Works for single as well as multi-line strings.
GetScaleY() -> double
-
+
Translate between scrolled and unscrolled coordinates.
-
+
-
+
CalcScrolledPosition(Point pt) -> Point
CalcScrolledPosition(int x, int y) -> (sx, sy)
Translate between scrolled and unscrolled coordinates.
-
-
+
+
-
+
Translate between scrolled and unscrolled coordinates.
-
+
-
+
CalcUnscrolledPosition(Point pt) -> Point
CalcUnscrolledPosition(int x, int y) -> (ux, uy)
Translate between scrolled and unscrolled coordinates.
-
-
+
+
-
+
AdjustScrollbars()
CalcScrollInc(ScrollWinEvent event) -> int
-
+
-
+
SetTargetWindow(Window target)
-
+
-
+
GetTargetWindow() -> Window
@@ -9740,17 +9989,17 @@ CalcUnscrolledPosition(int x, int y) -> (ux, uy)
#---------------------------------------------------------------------------
-
-
+
+
Maximize(bool maximize=True)
-
+
Restore()
-
+
Iconize(bool iconize=True)
@@ -9762,19 +10011,19 @@ CalcUnscrolledPosition(int x, int y) -> (ux, uy)
IsIconized() -> bool
-
+
GetIcon() -> Icon
-
+
SetIcon(Icon icon)
-
+
-
+
SetIcons(wxIconBundle icons)
-
+
@@ -9787,19 +10036,19 @@ CalcUnscrolledPosition(int x, int y) -> (ux, uy)
IsFullScreen() -> bool
-
+
SetTitle(String title)
-
+
-
+
GetTitle() -> String
SetShape(Region region) -> bool
-
+
@@ -9807,19 +10056,19 @@ CalcUnscrolledPosition(int x, int y) -> (ux, uy)
#---------------------------------------------------------------------------
-
+
__init__(Window parent, int id, String title, Point pos=DefaultPosition,
Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
String name=FrameNameStr) -> Frame
-
-
-
-
-
+
+
+
+
+
-
+
@@ -9830,28 +10079,28 @@ CalcUnscrolledPosition(int x, int y) -> (ux, uy)
Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
String name=FrameNameStr) -> bool
-
-
-
-
-
+
+
+
+
+
-
+
-
+
GetClientAreaOrigin() -> Point
-
+
SendSizeEvent()
-
+
SetMenuBar(MenuBar menubar)
-
+
-
+
GetMenuBar() -> MenuBar
@@ -9867,46 +10116,46 @@ CalcUnscrolledPosition(int x, int y) -> (ux, uy)
-
+
GetStatusBar() -> StatusBar
-
+
SetStatusBar(StatusBar statBar)
-
+
-
+
SetStatusText(String text, int number=0)
-
+
-
+
SetStatusWidths(int widths, int widths_field)
-
+
-
+
PushStatusText(String text, int number=0)
-
+
-
+
PopStatusText(int number=0)
-
+
SetStatusBarPane(int n)
@@ -9920,29 +10169,29 @@ CalcUnscrolledPosition(int x, int y) -> (ux, uy)
-
+
GetToolBar() -> wxToolBar
-
+
SetToolBar(wxToolBar toolbar)
-
+
-
+
DoGiveHelp(String text, bool show)
-
+
-
+
DoMenuUpdates(Menu menu=None)
-
+
@@ -9950,19 +10199,19 @@ CalcUnscrolledPosition(int x, int y) -> (ux, uy)
#---------------------------------------------------------------------------
-
+
__init__(Window parent, int id, String title, Point pos=DefaultPosition,
Size size=DefaultSize, long style=DEFAULT_DIALOG_STYLE,
String name=DialogNameStr) -> Dialog
-
-
-
-
-
+
+
+
+
+
-
+
@@ -9973,16 +10222,16 @@ CalcUnscrolledPosition(int x, int y) -> (ux, uy)
Size size=DefaultSize, long style=DEFAULT_DIALOG_STYLE,
String name=DialogNameStr) -> bool
-
-
-
-
-
+
+
+
+
+
-
+
-
+
SetReturnCode(int returnCode)
@@ -9991,31 +10240,25 @@ CalcUnscrolledPosition(int x, int y) -> (ux, uy)
GetReturnCode() -> int
-
+
CreateTextSizer(String message) -> Sizer
-
+
-
+
CreateButtonSizer(long flags) -> Sizer
-
- SetModal(bool flag)
-
-
-
-
IsModal() -> bool
ShowModal() -> int
-
+
EndModal(int retCode)
@@ -10029,19 +10272,19 @@ CalcUnscrolledPosition(int x, int y) -> (ux, uy)
#---------------------------------------------------------------------------
-
+
__init__(Window parent, int id, String title, Point pos=DefaultPosition,
Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
String name=FrameNameStr) -> MiniFrame
-
-
-
-
-
+
+
+
+
+
-
+
@@ -10052,13 +10295,13 @@ CalcUnscrolledPosition(int x, int y) -> (ux, uy)
Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
String name=FrameNameStr) -> bool
-
-
-
-
-
+
+
+
+
+
-
+
@@ -10066,50 +10309,50 @@ CalcUnscrolledPosition(int x, int y) -> (ux, uy)
#---------------------------------------------------------------------------
-
+
__init__(Bitmap bitmap, Window parent, int id, Point pos=DefaultPosition,
Size size=DefaultSize, long style=NO_BORDER) -> SplashScreenWindow
-
-
+
+
-
-
+
+
-
+
SetBitmap(Bitmap bitmap)
-
+
-
+
GetBitmap() -> Bitmap
-
+
__init__(Bitmap bitmap, long splashStyle, int milliseconds,
Window parent, int id, Point pos=DefaultPosition,
Size size=DefaultSize, long style=wxSIMPLE_BORDER|wxFRAME_NO_TASKBAR|wxSTAY_ON_TOP) -> SplashScreen
-
+
-
+
-
-
+
+
GetSplashStyle() -> long
-
+
GetSplashWindow() -> SplashScreenWindow
@@ -10120,14 +10363,14 @@ CalcUnscrolledPosition(int x, int y) -> (ux, uy)
#---------------------------------------------------------------------------
-
+
__init__(Window parent, int id=-1, long style=ST_SIZEGRIP, String name=StatusLineNameStr) -> StatusBar
-
+
-
+
@@ -10136,13 +10379,13 @@ CalcUnscrolledPosition(int x, int y) -> (ux, uy)
Create(Window parent, int id, long style=ST_SIZEGRIP, String name=StatusLineNameStr) -> bool
-
+
-
+
-
+
SetFieldsCount(int number=1)
@@ -10151,46 +10394,46 @@ CalcUnscrolledPosition(int x, int y) -> (ux, uy)
GetFieldsCount() -> int
-
+
SetStatusText(String text, int number=0)
-
+
-
+
GetStatusText(int number=0) -> String
-
+
PushStatusText(String text, int number=0)
-
+
-
+
PopStatusText(int number=0)
-
+
SetStatusWidths(int widths, int widths_field)
-
+
-
+
GetFieldRect(int i) -> Rect
-
+
SetMinHeight(int height)
@@ -10207,17 +10450,17 @@ CalcUnscrolledPosition(int x, int y) -> (ux, uy)
#---------------------------------------------------------------------------
-
+
__init__(Window parent, int id, Point point=DefaultPosition,
Size size=DefaultSize, long style=SP_3D, String name=SplitterNameStr) -> SplitterWindow
-
+
-
-
+
+
-
+
@@ -10227,21 +10470,21 @@ CalcUnscrolledPosition(int x, int y) -> (ux, uy)
Create(Window parent, int id, Point point=DefaultPosition,
Size size=DefaultSize, long style=SP_3D, String name=SplitterNameStr) -> bool
-
+
-
-
+
+
-
+
-
+
GetWindow1() -> Window
-
+
GetWindow2() -> Window
-
+
SetSplitMode(int mode)
@@ -10250,51 +10493,51 @@ CalcUnscrolledPosition(int x, int y) -> (ux, uy)
GetSplitMode() -> int
-
+
Initialize(Window window)
-
+
SplitVertically(Window window1, Window window2, int sashPosition=0) -> bool
-
-
+
+
SplitHorizontally(Window window1, Window window2, int sashPosition=0) -> bool
-
-
+
+
Unsplit(Window toRemove=None) -> bool
-
+
ReplaceWindow(Window winOld, Window winNew) -> bool
-
-
+
+
IsSplit() -> bool
-
+
SetSashSize(int width)
-
+
SetBorderSize(int width)
@@ -10306,7 +10549,7 @@ CalcUnscrolledPosition(int x, int y) -> (ux, uy)
GetBorderSize() -> int
-
+
SetSashPosition(int position, bool redraw=True)
@@ -10316,7 +10559,7 @@ CalcUnscrolledPosition(int x, int y) -> (ux, uy)
GetSashPosition() -> int
-
+
SetMinimumPaneSize(int min)
@@ -10333,10 +10576,10 @@ CalcUnscrolledPosition(int x, int y) -> (ux, uy)
-
+
SizeWindows()
-
+
SetNeedUpdating(bool needUpdating)
@@ -10347,15 +10590,15 @@ CalcUnscrolledPosition(int x, int y) -> (ux, uy)
-
+
__init__(wxEventType type=wxEVT_NULL, SplitterWindow splitter=(wxSplitterWindow *) NULL) -> SplitterEvent
-
+
-
+
SetSashPosition(int pos)
@@ -10364,7 +10607,7 @@ CalcUnscrolledPosition(int x, int y) -> (ux, uy)
GetSashPosition() -> int
-
+
GetWindowBeingRemoved() -> Window
@@ -10384,18 +10627,18 @@ EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
#---------------------------------------------------------------------------
-
+
__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
long style=wxCLIP_CHILDREN|wxSW_3D,
String name=SashNameStr) -> SashWindow
-
+
-
-
+
+
-
+
@@ -10406,15 +10649,15 @@ EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
long style=wxCLIP_CHILDREN|wxSW_3D,
String name=SashNameStr) -> bool
-
+
-
-
+
+
-
+
-
+
SetSashVisible(int edge, bool sash)
@@ -10427,7 +10670,7 @@ EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
-
+
SetSashBorder(int edge, bool border)
@@ -10446,7 +10689,7 @@ EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
-
+
SetDefaultBorderSize(int width)
@@ -10455,7 +10698,7 @@ EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
GetDefaultBorderSize() -> int
-
+
SetExtraBorderSize(int width)
@@ -10464,13 +10707,13 @@ EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
GetExtraBorderSize() -> int
-
+
SetMinimumSizeX(int min)
-
+
SetMinimumSizeY(int min)
@@ -10482,13 +10725,13 @@ EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
GetMinimumSizeY() -> int
-
+
SetMaximumSizeX(int max)
-
+
SetMaximumSizeY(int max)
@@ -10508,12 +10751,12 @@ EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
-
+
SizeWindows()
-
+
__init__(int id=0, int edge=SASH_NONE) -> SashEvent
@@ -10521,7 +10764,7 @@ EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
-
+
SetEdge(int edge)
@@ -10530,16 +10773,16 @@ EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
GetEdge() -> int
-
+
SetDragRect(Rect rect)
-
+
-
+
GetDragRect() -> Rect
-
+
SetDragStatus(int status)
@@ -10557,14 +10800,14 @@ EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
#---------------------------------------------------------------------------
-
+
__init__(int id=0) -> QueryLayoutInfoEvent
-
+
SetRequestedLength(int length)
@@ -10573,7 +10816,7 @@ EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
GetRequestedLength() -> int
-
+
SetFlags(int flags)
@@ -10582,16 +10825,16 @@ EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
GetFlags() -> int
-
+
SetSize(Size size)
-
+
-
+
GetSize() -> Size
-
+
SetOrientation(int orient)
@@ -10600,7 +10843,7 @@ EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
GetOrientation() -> int
-
+
SetAlignment(int align)
@@ -10611,14 +10854,14 @@ EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
-
+
__init__(int id=0) -> CalculateLayoutEvent
-
+
SetFlags(int flags)
@@ -10627,13 +10870,13 @@ EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
GetFlags() -> int
-
+
SetRect(Rect rect)
-
+
-
+
GetRect() -> Rect
@@ -10642,18 +10885,18 @@ EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
EVT_CALCULATE_LAYOUT = wx.PyEventBinder( wxEVT_CALCULATE_LAYOUT )
-
+
__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
long style=wxCLIP_CHILDREN|wxSW_3D,
String name=SashLayoutNameStr) -> SashLayoutWindow
-
+
-
-
+
+
-
+
@@ -10664,12 +10907,12 @@ EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
long style=wxCLIP_CHILDREN|wxSW_3D,
String name=SashLayoutNameStr) -> bool
-
+
-
-
+
+
-
+
@@ -10678,19 +10921,19 @@ EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
GetOrientation() -> int
-
+
SetAlignment(int alignment)
-
+
SetDefaultSize(Size size)
-
+
-
+
SetOrientation(int orientation)
@@ -10698,7 +10941,7 @@ EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
-
+
__init__() -> LayoutAlgorithm
@@ -10708,22 +10951,22 @@ EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
LayoutMDIFrame(MDIParentFrame frame, Rect rect=None) -> bool
-
-
+
+
LayoutFrame(Frame frame, Window mainWindow=None) -> bool
-
-
+
+
LayoutWindow(Window parent, Window mainWindow=None) -> bool
-
-
+
+
@@ -10731,11 +10974,11 @@ EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
#---------------------------------------------------------------------------
-
+
__init__(Window parent, int flags=BORDER_NONE) -> PopupWindow
-
+
@@ -10745,15 +10988,15 @@ EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
Create(Window parent, int flags=BORDER_NONE) -> bool
-
+
-
+
Position(Point ptOrigin, Size size)
-
-
+
+
@@ -10761,31 +11004,31 @@ EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
#---------------------------------------------------------------------------
-
+
__init__(Window parent, int style=BORDER_NONE) -> PopupTransientWindow
-
+
PrePopupTransientWindow() -> PopupTransientWindow
-
+
_setCallbackInfo(PyObject self, PyObject _class)
-
-
+
+
-
+
Popup(Window focus=None)
-
+
-
+
Dismiss()
@@ -10793,23 +11036,23 @@ EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
#---------------------------------------------------------------------------
-
+
__init__(Window parent, String text, int maxLength=100, Rect rectBound=None) -> TipWindow
-
-
+
+
-
+
-
+
SetBoundingRect(Rect rectBound)
-
+
-
+
Close()
@@ -10817,42 +11060,42 @@ EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
#---------------------------------------------------------------------------
-
+
__init__(Window parent, int id=ID_ANY, Point pos=DefaultPosition,
Size size=DefaultSize, long style=0, String name=PanelNameStr) -> VScrolledWindow
-
+
-
-
+
+
-
+
PreVScrolledWindow() -> VScrolledWindow
-
+
_setCallbackInfo(PyObject self, PyObject _class)
-
-
+
+
Create(Window parent, int id=ID_ANY, Point pos=DefaultPosition,
Size size=DefaultSize, long style=0, String name=PanelNameStr) -> bool
-
+
-
-
+
+
-
+
-
+
SetLineCount(size_t count)
@@ -10876,13 +11119,13 @@ EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
-
+
RefreshLine(size_t line)
-
+
RefreshLines(size_t from, size_t to)
@@ -10899,10 +11142,10 @@ EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
HitTest(Point pt) -> int
-
+
-
+
RefreshAll()
@@ -10922,39 +11165,39 @@ EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
-
+
__init__(Window parent, int id=ID_ANY, Point pos=DefaultPosition,
Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> VListBox
-
+
-
-
+
+
-
+
PreVListBox() -> VListBox
-
+
_setCallbackInfo(PyObject self, PyObject _class)
-
-
+
+
Create(Window parent, int id=ID_ANY, Point pos=DefaultPosition,
Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> bool
-
+
-
-
+
+
-
+
@@ -10984,31 +11227,31 @@ EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
GetFirstSelected(unsigned long cookie) -> int
-
+
GetNextSelected(unsigned long cookie) -> int
-
+
-
+
GetMargins() -> Point
-
+
GetSelectionBackground() -> Colour
-
+
SetItemCount(size_t count)
-
+
Clear()
-
+
SetSelection(int selection)
@@ -11028,7 +11271,7 @@ EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
-
+
Toggle(size_t item)
@@ -11040,66 +11283,66 @@ EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
DeselectAll() -> bool
-
+
SetMargins(Point pt)
-
+
-
+
SetMarginsXY(int x, int y)
-
+
SetSelectionBackground(Colour col)
-
+
-
+
__init__(Window parent, int id=ID_ANY, Point pos=DefaultPosition,
Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> HtmlListBox
-
+
-
-
+
+
-
+
PreHtmlListBox() -> HtmlListBox
-
+
_setCallbackInfo(PyObject self, PyObject _class)
-
-
+
+
Create(Window parent, int id=ID_ANY, Point pos=DefaultPosition,
Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> bool
-
+
-
-
+
+
-
+
-
+
RefreshAll()
-
+
SetItemCount(size_t count)
@@ -11110,7 +11353,7 @@ EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
#---------------------------------------------------------------------------
-
+
__init__() -> TaskBarIcon
@@ -11126,8 +11369,8 @@ EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
SetIcon(Icon icon, String tooltip=EmptyString) -> bool
-
-
+
+
@@ -11136,17 +11379,17 @@ EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
PopupMenu(Menu menu) -> bool
-
+
-
+
__init__(wxEventType evtType, TaskBarIcon tbIcon) -> TaskBarIconEvent
-
+
@@ -11163,7 +11406,7 @@ EVT_TASKBAR_RIGHT_DCLICK = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DCLICK )
#---------------------------------------------------------------------------
-
+
__init__() -> ColourData
@@ -11173,45 +11416,45 @@ EVT_TASKBAR_RIGHT_DCLICK = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DCLICK )
GetChooseFull() -> bool
-
+
GetColour() -> Colour
-
+
GetCustomColour(int i) -> Colour
-
+
SetChooseFull(int flag)
-
+
SetColour(Colour colour)
-
+
-
+
SetCustomColour(int i, Colour colour)
-
+
-
+
__init__(Window parent, ColourData data=None) -> ColourDialog
-
-
+
+
-
+
GetColourData() -> ColourData
@@ -11219,41 +11462,41 @@ EVT_TASKBAR_RIGHT_DCLICK = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DCLICK )
-
+
__init__(Window parent, String message=DirSelectorPromptStr,
String defaultPath=EmptyString, long style=0,
Point pos=DefaultPosition, Size size=DefaultSize,
String name=DirDialogNameStr) -> DirDialog
-
-
-
+
+
+
-
-
-
+
+
+
-
+
GetPath() -> String
-
+
GetMessage() -> String
GetStyle() -> long
-
+
SetMessage(String message)
-
+
-
+
SetPath(String path)
-
+
@@ -11261,77 +11504,77 @@ EVT_TASKBAR_RIGHT_DCLICK = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DCLICK )
-
+
__init__(Window parent, String message=FileSelectorPromptStr,
String defaultDir=EmptyString, String defaultFile=EmptyString,
String wildcard=FileSelectorDefaultWildcardStr,
long style=0, Point pos=DefaultPosition) -> FileDialog
-
-
-
-
-
+
+
+
+
+
-
+
-
+
SetMessage(String message)
-
+
-
+
SetPath(String path)
-
+
-
+
SetDirectory(String dir)
-
+
-
+
SetFilename(String name)
-
+
-
+
SetWildcard(String wildCard)
-
+
-
+
SetStyle(long style)
-
+
SetFilterIndex(int filterIndex)
-
+
GetMessage() -> String
-
+
GetPath() -> String
-
+
GetDirectory() -> String
-
+
GetFilename() -> String
-
+
GetWildcard() -> String
@@ -11348,25 +11591,25 @@ EVT_TASKBAR_RIGHT_DCLICK = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DCLICK )
-
+
__init__(Window parent, String message, String caption, int LCOUNT,
String choices, long style=CHOICEDLG_STYLE,
Point pos=DefaultPosition) -> MultiChoiceDialog
-
-
-
+
+
+
-
+
-
+
-
+
SetSelections(wxArrayInt selections)
-
+
@@ -11374,28 +11617,28 @@ EVT_TASKBAR_RIGHT_DCLICK = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DCLICK )
-
+
__init__(Window parent, String message, String caption, int choices,
String choices_array, long style=CHOICEDLG_STYLE,
Point pos=DefaultPosition) -> SingleChoiceDialog
-
-
-
+
+
+
-
+
-
+
GetSelection() -> int
-
+
GetStringSelection() -> String
-
+
SetSelection(int sel)
@@ -11406,27 +11649,27 @@ EVT_TASKBAR_RIGHT_DCLICK = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DCLICK )
-
+
__init__(Window parent, String message, String caption=GetTextFromUserPromptStr,
String defaultValue=EmptyString,
long style=wxOK|wxCANCEL|wxCENTRE, Point pos=DefaultPosition) -> TextEntryDialog
-
-
-
-
+
+
+
+
-
+
-
+
GetValue() -> String
-
+
SetValue(String value)
-
+
@@ -11434,14 +11677,14 @@ EVT_TASKBAR_RIGHT_DCLICK = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DCLICK )
-
+
__init__() -> FontData
__del__()
-
+
EnableEffects(bool enable)
@@ -11450,53 +11693,53 @@ EVT_TASKBAR_RIGHT_DCLICK = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DCLICK )
GetAllowSymbols() -> bool
-
+
GetColour() -> Colour
-
+
GetChosenFont() -> Font
GetEnableEffects() -> bool
-
+
GetInitialFont() -> Font
GetShowHelp() -> bool
-
+
SetAllowSymbols(bool allowSymbols)
-
+
SetChosenFont(Font font)
-
+
-
+
SetColour(Colour colour)
-
+
-
+
SetInitialFont(Font font)
-
+
-
+
SetRange(int min, int max)
-
+
SetShowHelp(bool showHelp)
@@ -11504,15 +11747,15 @@ EVT_TASKBAR_RIGHT_DCLICK = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DCLICK )
-
+
__init__(Window parent, FontData data) -> FontDialog
-
-
+
+
-
+
GetFontData() -> FontData
@@ -11520,17 +11763,17 @@ EVT_TASKBAR_RIGHT_DCLICK = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DCLICK )
-
+
__init__(Window parent, String message, String caption=MessageBoxCaptionStr,
long style=wxOK|wxCANCEL|wxCENTRE,
Point pos=DefaultPosition) -> MessageDialog
-
-
-
+
+
+
-
+
@@ -11538,15 +11781,15 @@ EVT_TASKBAR_RIGHT_DCLICK = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DCLICK )
-
+
__init__(String title, String message, int maximum=100, Window parent=None,
int style=wxPD_AUTO_HIDE|wxPD_APP_MODAL) -> ProgressDialog
-
-
+
+
-
+
@@ -11554,10 +11797,10 @@ EVT_TASKBAR_RIGHT_DCLICK = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DCLICK )
Update(int value, String newmsg=EmptyString) -> bool
-
+
-
+
Resume()
@@ -11576,7 +11819,7 @@ EVT_COMMAND_FIND_REPLACE_ALL = EVT_FIND_REPLACE_ALL
EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
-
+
__init__(wxEventType commandType=wxEVT_NULL, int id=0) -> FindDialogEvent
@@ -11587,36 +11830,36 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
GetFlags() -> int
-
+
GetFindString() -> String
-
+
GetReplaceString() -> String
GetDialog() -> FindReplaceDialog
-
+
SetFlags(int flags)
-
+
SetFindString(String str)
-
+
-
+
SetReplaceString(String str)
-
+
-
+
__init__(int flags=0) -> FindReplaceData
@@ -11626,43 +11869,43 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
__del__()
-
+
GetFindString() -> String
-
+
GetReplaceString() -> String
GetFlags() -> int
-
+
SetFlags(int flags)
-
+
SetFindString(String str)
-
+
-
+
SetReplaceString(String str)
-
+
-
+
__init__(Window parent, FindReplaceData data, String title,
int style=0) -> FindReplaceDialog
-
-
-
+
+
+
@@ -11673,19 +11916,19 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
Create(Window parent, FindReplaceData data, String title,
int style=0) -> bool
-
-
-
+
+
+
-
+
GetData() -> FindReplaceData
-
+
SetData(FindReplaceData data)
-
+
@@ -11693,19 +11936,19 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
#---------------------------------------------------------------------------
-
+
__init__(Window parent, int id, String title, Point pos=DefaultPosition,
Size size=DefaultSize, long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL,
String name=FrameNameStr) -> MDIParentFrame
-
-
-
-
-
+
+
+
+
+
-
+
@@ -11716,25 +11959,25 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
Size size=DefaultSize, long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL,
String name=FrameNameStr) -> bool
-
-
-
-
-
+
+
+
+
+
-
+
-
+
ActivateNext()
-
+
ActivatePrevious()
-
+
ArrangeIcons()
-
+
Cascade()
@@ -11743,27 +11986,27 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
GetClientWindow() -> MDIClientWindow
-
+
GetToolBar() -> Window
-
+
Tile()
-
+
__init__(MDIParentFrame parent, int id, String title, Point pos=DefaultPosition,
Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
String name=FrameNameStr) -> MDIChildFrame
-
-
-
-
-
+
+
+
+
+
-
+
@@ -11774,34 +12017,34 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
String name=FrameNameStr) -> bool
-
-
-
-
-
+
+
+
+
+
-
+
-
+
Activate()
-
+
Maximize(bool maximize)
-
+
Restore()
-
+
__init__(MDIParentFrame parent, long style=0) -> MDIClientWindow
-
+
@@ -11811,7 +12054,7 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
Create(MDIParentFrame parent, long style=0) -> bool
-
+
@@ -11820,27 +12063,27 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
#---------------------------------------------------------------------------
-
+
__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
long style=0, String name=PanelNameStr) -> PyWindow
-
-
-
-
+
+
+
+
-
+
-
+
_setCallbackInfo(PyObject self, PyObject _class)
-
-
+
+
-
+
base_DoMoveWindow(int x, int y, int width, int height)
@@ -11849,7 +12092,7 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
-
+
base_DoSetSize(int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)
@@ -11859,48 +12102,48 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
-
+
base_DoSetClientSize(int width, int height)
-
+
base_DoSetVirtualSize(int x, int y)
-
+
base_DoGetSize() -> (width, height)
-
-
+
+
-
+
base_DoGetClientSize() -> (width, height)
-
-
+
+
-
+
base_DoGetPosition() -> (x,y)
-
-
+
+
-
+
base_DoGetVirtualSize() -> Size
-
+
base_DoGetBestSize() -> Size
-
+
base_InitDialog()
@@ -11918,44 +12161,44 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
base_AcceptsFocusFromKeyboard() -> bool
-
+
base_GetMaxSize() -> Size
-
+
base_AddChild(Window child)
-
+
-
+
base_RemoveChild(Window child)
-
+
-
+
__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
long style=0, String name=PanelNameStr) -> PyPanel
-
-
-
-
+
+
+
+
-
+
-
+
_setCallbackInfo(PyObject self, PyObject _class)
-
-
+
+
-
+
base_DoMoveWindow(int x, int y, int width, int height)
@@ -11964,7 +12207,7 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
-
+
base_DoSetSize(int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)
@@ -11974,48 +12217,48 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
-
+
base_DoSetClientSize(int width, int height)
-
+
base_DoSetVirtualSize(int x, int y)
-
+
base_DoGetSize() -> (width, height)
-
-
+
+
-
+
base_DoGetClientSize() -> (width, height)
-
-
+
+
-
+
base_DoGetPosition() -> (x,y)
-
-
+
+
-
+
base_DoGetVirtualSize() -> Size
-
+
base_DoGetBestSize() -> Size
-
+
base_InitDialog()
@@ -12033,19 +12276,19 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
base_AcceptsFocusFromKeyboard() -> bool
-
+
base_GetMaxSize() -> Size
-
+
base_AddChild(Window child)
-
+
-
+
base_RemoveChild(Window child)
-
+
@@ -12053,7 +12296,7 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
#---------------------------------------------------------------------------
-
+
__init__() -> PrintData
@@ -12072,7 +12315,7 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
Ok() -> bool
-
+
GetPrinterName() -> String
@@ -12084,79 +12327,79 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
GetPaperId() -> int
-
+
GetPaperSize() -> Size
GetQuality() -> int
-
+
SetNoCopies(int v)
-
+
SetCollate(bool flag)
-
+
SetOrientation(int orient)
-
+
SetPrinterName(String name)
-
+
-
+
SetColour(bool colour)
-
+
SetDuplex(int duplex)
-
+
SetPaperId(int sizeId)
-
+
SetPaperSize(Size sz)
-
+
-
+
SetQuality(int quality)
-
+
GetPrinterCommand() -> String
-
+
GetPrinterOptions() -> String
-
+
GetPreviewCommand() -> String
-
+
GetFilename() -> String
-
+
GetFontMetricPath() -> String
@@ -12174,75 +12417,75 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
GetPrintMode() -> int
-
+
SetPrinterCommand(String command)
-
+
-
+
SetPrinterOptions(String options)
-
+
-
+
SetPreviewCommand(String command)
-
+
-
+
SetFilename(String filename)
-
+
-
+
SetFontMetricPath(String path)
-
+
-
+
SetPrinterScaleX(double x)
-
+
SetPrinterScaleY(double y)
-
+
SetPrinterScaling(double x, double y)
-
+
SetPrinterTranslateX(long x)
-
+
SetPrinterTranslateY(long y)
-
+
SetPrinterTranslation(long x, long y)
-
+
SetPrintMode(int printMode)
@@ -12250,38 +12493,38 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
-
+
__init__() -> PageSetupDialogData
__del__()
-
+
EnableHelp(bool flag)
-
+
EnableMargins(bool flag)
-
+
EnableOrientation(bool flag)
-
+
EnablePaper(bool flag)
-
+
EnablePrinter(bool flag)
@@ -12308,95 +12551,95 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
GetDefaultInfo() -> bool
-
+
GetMarginTopLeft() -> Point
-
+
GetMarginBottomRight() -> Point
-
+
GetMinMarginTopLeft() -> Point
-
+
GetMinMarginBottomRight() -> Point
GetPaperId() -> int
-
+
GetPaperSize() -> Size
-
+
GetPrintData() -> PrintData
Ok() -> bool
-
+
SetDefaultInfo(bool flag)
-
+
SetDefaultMinMargins(bool flag)
-
+
SetMarginTopLeft(Point pt)
-
+
-
+
SetMarginBottomRight(Point pt)
-
+
-
+
SetMinMarginTopLeft(Point pt)
-
+
-
+
SetMinMarginBottomRight(Point pt)
-
+
-
+
SetPaperId(int id)
-
+
SetPaperSize(Size size)
-
+
-
+
SetPrintData(PrintData printData)
-
+
-
+
__init__(Window parent, PageSetupDialogData data=None) -> PageSetupDialog
-
-
+
+
-
+
GetPageSetupData() -> PageSetupDialogData
@@ -12404,7 +12647,7 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
-
+
__init__() -> PrintDialogData
@@ -12441,85 +12684,85 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
GetSetupDialog() -> bool
-
+
SetFromPage(int v)
-
+
SetToPage(int v)
-
+
SetMinPage(int v)
-
+
SetMaxPage(int v)
-
+
SetNoCopies(int v)
-
+
SetAllPages(bool flag)
-
+
SetSelection(bool flag)
-
+
SetCollate(bool flag)
-
+
SetPrintToFile(bool flag)
-
+
SetSetupDialog(bool flag)
-
+
EnablePrintToFile(bool flag)
-
+
EnableSelection(bool flag)
-
+
EnablePageNumbers(bool flag)
-
+
EnableHelp(bool flag)
@@ -12540,29 +12783,29 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
Ok() -> bool
-
+
GetPrintData() -> PrintData
-
+
SetPrintData(PrintData printData)
-
+
-
+
__init__(Window parent, PrintDialogData data=None) -> PrintDialog
-
-
+
+
-
+
GetPrintDialogData() -> PrintDialogData
-
+
GetPrintDC() -> DC
@@ -12570,52 +12813,52 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
-
+
__init__(PrintDialogData data=None) -> Printer
-
+
__del__()
-
+
CreateAbortWindow(Window parent, Printout printout)
-
-
+
+
-
+
GetPrintDialogData() -> PrintDialogData
Print(Window parent, Printout printout, int prompt=True) -> bool
-
-
+
+
-
+
PrintDialog(Window parent) -> DC
-
+
-
+
ReportError(Window parent, Printout printout, String message)
-
-
-
+
+
+
Setup(Window parent) -> bool
-
+
@@ -12626,92 +12869,92 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
-
+
__init__(String title=PrintoutTitleStr) -> Printout
-
+
-
+
_setCallbackInfo(PyObject self, PyObject _class)
-
-
+
+
-
+
GetTitle() -> String
-
+
GetDC() -> DC
-
+
SetDC(DC dc)
-
+
-
+
SetPageSizePixels(int w, int h)
-
+
GetPageSizePixels() -> (w, h)
-
-
+
+
-
+
SetPageSizeMM(int w, int h)
-
+
GetPageSizeMM() -> (w, h)
-
-
+
+
-
+
SetPPIScreen(int x, int y)
-
+
GetPPIScreen() -> (x,y)
-
-
+
+
-
+
SetPPIPrinter(int x, int y)
-
+
GetPPIPrinter() -> (x,y)
-
-
+
+
IsPreview() -> bool
-
+
SetIsPreview(bool p)
@@ -12724,16 +12967,16 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
-
+
base_OnEndDocument()
-
+
base_OnBeginPrinting()
-
+
base_OnEndPrinting()
-
+
base_OnPreparePrinting()
@@ -12742,55 +12985,55 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
-
+
base_GetPageInfo() -> (minPage, maxPage, pageFrom, pageTo)
-
-
-
-
+
+
+
+
-
+
__init__(PrintPreview preview, Window parent, Point pos=DefaultPosition,
Size size=DefaultSize, long style=0,
String name=PreviewCanvasNameStr) -> PreviewCanvas
-
-
-
-
+
+
+
+
-
+
-
+
__init__(PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition,
Size size=DefaultSize,
long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> PreviewFrame
-
-
-
-
-
+
+
+
+
+
-
+
-
+
Initialize()
-
+
CreateControlBar()
-
+
CreateCanvas()
@@ -12798,25 +13041,25 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
-
+
__init__(PrintPreview preview, long buttons, Window parent,
Point pos=DefaultPosition, Size size=DefaultSize,
long style=TAB_TRAVERSAL, String name=PanelNameStr) -> PreviewControlBar
-
+
-
-
-
+
+
+
-
+
GetZoomControl() -> int
-
+
SetZoomControl(int zoom)
@@ -12825,30 +13068,30 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
GetPrintPreview() -> PrintPreview
-
+
OnNext()
-
+
OnPrevious()
-
+
OnFirst()
-
+
OnLast()
-
+
OnGoto()
-
+
__init__(Printout printout, Printout printoutForPrinting, PrintData data=None) -> PrintPreview
-
-
-
+
+
+
@@ -12860,48 +13103,48 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
GetCurrentPage() -> int
-
+
SetPrintout(Printout printout)
-
+
-
+
GetPrintout() -> Printout
-
+
GetPrintoutForPrinting() -> Printout
-
+
SetFrame(Frame frame)
-
+
-
+
SetCanvas(PreviewCanvas canvas)
-
+
-
+
GetFrame() -> Frame
-
+
GetCanvas() -> PreviewCanvas
PaintPage(PreviewCanvas canvas, DC dc) -> bool
-
-
+
+
DrawBlankPage(PreviewCanvas canvas, DC dc) -> bool
-
-
+
+
@@ -12910,16 +13153,16 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
-
+
AdjustScrollbars(PreviewCanvas canvas)
-
+
-
+
GetPrintDialogData() -> PrintDialogData
-
+
SetZoom(int percent)
@@ -12937,7 +13180,7 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
Ok() -> bool
-
+
SetOk(bool ok)
@@ -12949,25 +13192,25 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
-
+
DetermineScaling()
-
+
__init__(Printout printout, Printout printoutForPrinting, PrintData data=None) -> PyPrintPreview
-
-
-
+
+
+
-
+
_setCallbackInfo(PyObject self, PyObject _class)
-
-
+
+
@@ -12979,15 +13222,15 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
base_PaintPage(PreviewCanvas canvas, DC dc) -> bool
-
-
+
+
base_DrawBlankPage(PreviewCanvas canvas, DC dc) -> bool
-
-
+
+
@@ -12996,7 +13239,7 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
-
+
base_SetZoom(int percent)
@@ -13008,88 +13251,88 @@ EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
-
+
base_DetermineScaling()
-
+
__init__(PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition,
Size size=DefaultSize,
long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> PyPreviewFrame
-
-
-
-
-
+
+
+
+
+
-
+
-
+
_setCallbackInfo(PyObject self, PyObject _class)
-
-
+
+
-
+
SetPreviewCanvas(PreviewCanvas canvas)
-
+
-
+
SetControlBar(PreviewControlBar bar)
-
+
-
+
base_Initialize()
-
+
base_CreateCanvas()
-
+
base_CreateControlBar()
-
+
__init__(PrintPreview preview, long buttons, Window parent,
Point pos=DefaultPosition, Size size=DefaultSize,
long style=0, String name=PanelNameStr) -> PyPreviewControlBar
-
+
-
-
-
+
+
+
-
+
-
+
_setCallbackInfo(PyObject self, PyObject _class)
-
-
+
+
-
+
SetPrintPreview(PrintPreview preview)
-
+
-
+
base_CreateButtons()
-
+
base_SetZoomControl(int zoom)
@@ -13119,21 +13362,21 @@ indeed almost any other window.
Events
EVT_BUTTON: Sent when the button is clicked.
-
+
__init__(Window parent, int id, String label, Point pos=DefaultPosition,
Size size=DefaultSize, long style=0,
Validator validator=DefaultValidator, String name=ButtonNameStr) -> Button
Create and show a button.
-
+
-
-
-
+
+
+
-
-
+
+
@@ -13146,27 +13389,27 @@ indeed almost any other window.
Validator validator=DefaultValidator, String name=ButtonNameStr) -> bool
Acutally create the GUI Button for 2-phase creation.
-
+
-
-
-
+
+
+
-
-
+
+
-
+
SetDefault()
This sets the button to be the default item for the panel or dialog box.
-
+
Button.GetDefaultSize() -> Size
A Buttont that contains a bitmap.
-
+
__init__(Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition,
Size size=DefaultSize, long style=BU_AUTODRAW,
@@ -13174,14 +13417,14 @@ indeed almost any other window.
String name=ButtonNameStr) -> BitmapButton
Create and show a button.
-
+
-
-
-
+
+
+
-
-
+
+
@@ -13195,62 +13438,62 @@ indeed almost any other window.
String name=ButtonNameStr) -> bool
Acutally create the GUI BitmapButton for 2-phase creation.
-
+
-
-
-
+
+
+
-
-
+
+
-
+
GetBitmapLabel() -> Bitmap
Returns the label bitmap (the one passed to the constructor).
-
+
GetBitmapDisabled() -> Bitmap
Returns the bitmap for the disabled state.
-
+
GetBitmapFocus() -> Bitmap
Returns the bitmap for the focused state.
-
+
GetBitmapSelected() -> Bitmap
Returns the bitmap for the selected state.
-
+
SetBitmapDisabled(Bitmap bitmap)
Sets the bitmap for the disabled button appearance.
-
+
-
+
SetBitmapFocus(Bitmap bitmap)
Sets the bitmap for the button appearance when it has the keyboard focus.
-
+
-
+
SetBitmapSelected(Bitmap bitmap)
Sets the bitmap for the selected (depressed) button appearance.
-
+
-
+
SetBitmapLabel(Bitmap bitmap)
Sets the bitmap label for the button. This is the bitmap used for the
unselected state, and for all other states if no other bitmaps are provided.
-
+
-
+
SetMargins(int x, int y)
@@ -13268,20 +13511,20 @@ unselected state, and for all other states if no other bitmaps are provided.
-
+
__init__(Window parent, int id, String label, Point pos=DefaultPosition,
Size size=DefaultSize, long style=0,
Validator validator=DefaultValidator, String name=CheckBoxNameStr) -> CheckBox
-
+
-
-
-
+
+
+
-
-
+
+
@@ -13292,14 +13535,14 @@ unselected state, and for all other states if no other bitmaps are provided.
-
+
-
-
-
+
+
+
-
-
+
+
@@ -13308,16 +13551,16 @@ unselected state, and for all other states if no other bitmaps are provided.
IsChecked() -> bool
-
+
SetValue(bool state)
-
+
Get3StateValue() -> int
-
+
Set3StateValue(int state)
@@ -13334,22 +13577,22 @@ unselected state, and for all other states if no other bitmaps are provided.
-
+
__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
int choices=0, String choices_array=None,
long style=0, Validator validator=DefaultValidator,
String name=ChoiceNameStr) -> Choice
-
+
-
-
+
+
-
+
-
-
+
+
@@ -13361,43 +13604,43 @@ unselected state, and for all other states if no other bitmaps are provided.
-
+
-
-
+
+
-
+
-
-
+
+
GetColumns() -> int
-
+
SetColumns(int n=1)
-
+
-
+
SetSelection(int n)
-
+
-
+
SetStringSelection(String string)
-
+
-
+
SetString(int n, String s)
-
+
@@ -13405,8 +13648,8 @@ unselected state, and for all other states if no other bitmaps are provided.
-
-
+
+
__init__(Window parent, int id, String value=EmptyString, Point pos=DefaultPosition,
Size size=DefaultSize,
@@ -13414,16 +13657,16 @@ unselected state, and for all other states if no other bitmaps are provided.
-
+
-
-
-
+
+
+
-
+
-
-
+
+
@@ -13436,37 +13679,37 @@ unselected state, and for all other states if no other bitmaps are provided.
-
+
-
-
-
+
+
+
-
+
-
-
+
+
-
+
GetValue() -> String
-
+
SetValue(String value)
-
+
-
+
Copy()
-
+
Cut()
-
+
Paste()
-
+
SetInsertionPoint(long pos)
@@ -13478,37 +13721,37 @@ unselected state, and for all other states if no other bitmaps are provided.
GetLastPosition() -> long
-
+
Replace(long from, long to, String value)
-
+
-
+
SetSelection(int n)
-
+
SetMark(long from, long to)
-
+
SetEditable(bool editable)
-
+
SetInsertionPointEnd()
-
+
Remove(long from, long to)
@@ -13520,21 +13763,21 @@ unselected state, and for all other states if no other bitmaps are provided.
-
+
__init__(Window parent, int id, int range, Point pos=DefaultPosition,
Size size=DefaultSize, long style=GA_HORIZONTAL,
Validator validator=DefaultValidator,
String name=GaugeNameStr) -> Gauge
-
+
-
-
+
+
-
-
+
+
@@ -13546,17 +13789,17 @@ unselected state, and for all other states if no other bitmaps are provided.
-
+
-
-
+
+
-
-
+
+
-
+
SetRange(int range)
@@ -13565,7 +13808,7 @@ unselected state, and for all other states if no other bitmaps are provided.
GetRange() -> int
-
+
SetValue(int pos)
@@ -13577,7 +13820,7 @@ unselected state, and for all other states if no other bitmaps are provided.
IsVertical() -> bool
-
+
SetShadowWidth(int w)
@@ -13586,7 +13829,7 @@ unselected state, and for all other states if no other bitmaps are provided.
GetShadowWidth() -> int
-
+
SetBezelFace(int w)
@@ -13600,19 +13843,19 @@ unselected state, and for all other states if no other bitmaps are provided.
-
+
__init__(Window parent, int id, String label, Point pos=DefaultPosition,
Size size=DefaultSize, long style=0,
String name=StaticBoxNameStr) -> StaticBox
-
+
-
-
-
+
+
+
-
+
@@ -13623,13 +13866,13 @@ unselected state, and for all other states if no other bitmaps are provided.
-
+
-
-
-
+
+
+
-
+
@@ -13637,18 +13880,18 @@ unselected state, and for all other states if no other bitmaps are provided.
-
+
__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
long style=LI_HORIZONTAL,
String name=StaticTextNameStr) -> StaticLine
-
+
-
-
+
+
-
+
@@ -13659,12 +13902,12 @@ unselected state, and for all other states if no other bitmaps are provided.
-
+
-
-
+
+
-
+
@@ -13678,19 +13921,19 @@ unselected state, and for all other states if no other bitmaps are provided.
-
+
__init__(Window parent, int id, String label, Point pos=DefaultPosition,
Size size=DefaultSize, long style=0,
String name=StaticTextNameStr) -> StaticText
-
+
-
-
-
+
+
+
-
+
@@ -13701,13 +13944,13 @@ unselected state, and for all other states if no other bitmaps are provided.
-
+
-
-
-
+
+
+
-
+
@@ -13715,19 +13958,19 @@ unselected state, and for all other states if no other bitmaps are provided.
-
+
__init__(Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition,
Size size=DefaultSize, long style=0,
String name=StaticBitmapNameStr) -> StaticBitmap
-
+
-
-
-
+
+
+
-
+
@@ -13738,28 +13981,28 @@ unselected state, and for all other states if no other bitmaps are provided.
-
+
-
-
-
+
+
+
-
+
-
+
GetBitmap() -> Bitmap
-
+
SetBitmap(Bitmap bitmap)
-
+
-
+
SetIcon(Icon icon)
-
+
@@ -13767,22 +14010,22 @@ unselected state, and for all other states if no other bitmaps are provided.
-
+
__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
int choices=0, String choices_array=None,
long style=0, Validator validator=DefaultValidator,
String name=ListBoxNameStr) -> ListBox
-
+
-
-
+
+
-
+
-
-
+
+
@@ -13794,36 +14037,36 @@ unselected state, and for all other states if no other bitmaps are provided.
-
+
-
-
+
+
-
+
-
-
+
+
-
+
Insert(String item, int pos, PyObject clientData=None)
-
+
-
+
-
+
InsertItems(wxArrayString items, int pos)
-
+
-
+
Set(wxArrayString items)
-
+
@@ -13832,26 +14075,26 @@ unselected state, and for all other states if no other bitmaps are provided.
-
+
SetSelection(int n, bool select=True)
-
+
Select(int n)
-
+
Deselect(int n)
-
+
DeselectAll(int itemToLeaveSelected=-1)
@@ -13860,35 +14103,35 @@ unselected state, and for all other states if no other bitmaps are provided.
SetStringSelection(String s, bool select=True) -> bool
-
+
GetSelections() -> PyObject
-
+
SetFirstItem(int n)
-
+
SetFirstItemStr(String s)
-
+
-
+
EnsureVisible(int n)
-
+
AppendAndEnsureVisible(String s)
-
+
@@ -13899,22 +14142,22 @@ unselected state, and for all other states if no other bitmaps are provided.
-
+
__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
int choices=0, String choices_array=None,
long style=0, Validator validator=DefaultValidator,
String name=ListBoxNameStr) -> CheckListBox
-
+
-
-
+
+
-
+
-
-
+
+
@@ -13926,15 +14169,15 @@ unselected state, and for all other states if no other bitmaps are provided.
-
+
-
-
+
+
-
+
-
-
+
+
@@ -13943,7 +14186,7 @@ unselected state, and for all other states if no other bitmaps are provided.
-
+
Check(int index, int check=True)
@@ -13956,7 +14199,7 @@ unselected state, and for all other states if no other bitmaps are provided.
HitTest(Point pt) -> int
-
+
@@ -13977,59 +14220,59 @@ unselected state, and for all other states if no other bitmaps are provided.
-
-
-
+
+
+
-
+
Init()
-
+
SetTextColour(Colour colText)
-
+
-
+
SetBackgroundColour(Colour colBack)
-
+
-
+
SetFont(Font font, long flags=TEXT_ATTR_FONT)
-
+
-
+
SetAlignment(int alignment)
-
+
SetTabs(wxArrayInt tabs)
-
+
-
+
SetLeftIndent(int indent)
-
+
SetRightIndent(int indent)
-
+
SetFlags(long flags)
@@ -14062,19 +14305,19 @@ __init__(Colour colText, Colour colBack=wxNullColour, Font font=wxNullFont,
-
+
GetTextColour() -> Colour
-
+
GetBackgroundColour() -> Colour
-
+
GetFont() -> Font
GetAlignment() -> int
-
+
GetTabs() -> wxArrayInt
@@ -14089,31 +14332,31 @@ __init__(Colour colText, Colour colBack=wxNullColour, Font font=wxNullFont,
IsDefault() -> bool
-
+
TextAttr.Combine(TextAttr attr, TextAttr attrDef, TextCtrl text) -> TextAttr
-
-
-
+
+
+
-
+
__init__(Window parent, int id, String value=EmptyString, Point pos=DefaultPosition,
Size size=DefaultSize,
long style=0, Validator validator=DefaultValidator,
String name=TextCtrlNameStr) -> TextCtrl
-
+
-
-
-
+
+
+
-
-
+
+
@@ -14125,26 +14368,26 @@ __init__(Colour colText, Colour colBack=wxNullColour, Font font=wxNullFont,
long style=0, Validator validator=DefaultValidator,
String name=TextCtrlNameStr) -> bool
-
+
-
-
-
+
+
+
-
-
+
+
-
+
GetValue() -> String
-
+
SetValue(String value)
-
+
-
+
GetRange(long from, long to) -> String
@@ -14157,7 +14400,7 @@ __init__(Colour colText, Colour colBack=wxNullColour, Font font=wxNullFont,
-
+
GetLineText(long lineNo) -> String
@@ -14178,29 +14421,29 @@ __init__(Colour colText, Colour colBack=wxNullColour, Font font=wxNullFont,
IsMultiLine() -> bool
-
+
GetSelection() -> (from, to)
If the return values from and to are the same, there is no selection.
-
-
+
+
-
+
GetStringSelection() -> String
-
+
Clear()
-
+
Replace(long from, long to, String value)
-
+
-
+
Remove(long from, long to)
@@ -14210,43 +14453,43 @@ __init__(Colour colText, Colour colBack=wxNullColour, Font font=wxNullFont,
LoadFile(String file) -> bool
-
+
SaveFile(String file=EmptyString) -> bool
-
+
-
+
MarkDirty()
-
+
DiscardEdits()
-
+
SetMaxLength(unsigned long len)
-
+
WriteText(String text)
-
+
-
+
AppendText(String text)
-
+
EmulateKeyPress(KeyEvent event) -> bool
-
+
@@ -14254,23 +14497,23 @@ __init__(Colour colText, Colour colBack=wxNullColour, Font font=wxNullFont,
-
+
GetStyle(long position, TextAttr style) -> bool
-
+
SetDefaultStyle(TextAttr style) -> bool
-
+
-
+
GetDefaultStyle() -> TextAttr
@@ -14280,27 +14523,27 @@ __init__(Colour colText, Colour colBack=wxNullColour, Font font=wxNullFont,
-
+
PositionToXY(long pos) -> (x, y)
-
-
+
+
-
+
ShowPosition(long pos)
-
+
Copy()
-
+
Cut()
-
+
Paste()
@@ -14312,10 +14555,10 @@ __init__(Colour colText, Colour colBack=wxNullColour, Font font=wxNullFont,
CanPaste() -> bool
-
+
Undo()
-
+
Redo()
@@ -14324,13 +14567,13 @@ __init__(Colour colText, Colour colBack=wxNullColour, Font font=wxNullFont,
CanRedo() -> bool
-
+
SetInsertionPoint(long pos)
-
+
SetInsertionPointEnd()
@@ -14339,29 +14582,29 @@ __init__(Colour colText, Colour colBack=wxNullColour, Font font=wxNullFont,
GetLastPosition() -> long
-
+
SetSelection(long from, long to)
-
+
SelectAll()
-
+
SetEditable(bool editable)
-
+
write(String text)
-
+
-
+
GetString(long from, long to) -> String
@@ -14370,17 +14613,17 @@ __init__(Colour colText, Colour colBack=wxNullColour, Font font=wxNullFont,
-
+
__init__(int winid, MouseEvent evtMouse, long start, long end) -> TextUrlEvent
-
+
-
+
GetMouseEvent() -> MouseEvent
@@ -14400,19 +14643,19 @@ EVT_TEXT_MAXLEN = wx.PyEventBinder( wxEVT_COMMAND_TEXT_MAXLEN, 1)
#---------------------------------------------------------------------------
-
+
__init__(Window parent, int id=-1, Point pos=DefaultPosition,
Size size=DefaultSize, long style=SB_HORIZONTAL,
Validator validator=DefaultValidator, String name=ScrollBarNameStr) -> ScrollBar
-
+
-
-
+
+
-
-
+
+
@@ -14423,13 +14666,13 @@ EVT_TEXT_MAXLEN = wx.PyEventBinder( wxEVT_COMMAND_TEXT_MAXLEN, 1)
Size size=DefaultSize, long style=SB_HORIZONTAL,
Validator validator=DefaultValidator, String name=ScrollBarNameStr) -> bool
-
+
-
-
+
+
-
-
+
+
@@ -14447,13 +14690,13 @@ EVT_TEXT_MAXLEN = wx.PyEventBinder( wxEVT_COMMAND_TEXT_MAXLEN, 1)
IsVertical() -> bool
-
+
SetThumbPosition(int viewStart)
-
+
SetScrollbar(int position, int thumbSize, int range, int pageSize,
bool refresh=True)
@@ -14469,18 +14712,18 @@ EVT_TEXT_MAXLEN = wx.PyEventBinder( wxEVT_COMMAND_TEXT_MAXLEN, 1)
#---------------------------------------------------------------------------
-
+
__init__(Window parent, int id=-1, Point pos=DefaultPosition,
Size size=DefaultSize, long style=SP_HORIZONTAL,
String name=SPIN_BUTTON_NAME) -> SpinButton
-
+
-
-
+
+
-
+
@@ -14491,12 +14734,12 @@ EVT_TEXT_MAXLEN = wx.PyEventBinder( wxEVT_COMMAND_TEXT_MAXLEN, 1)
Size size=DefaultSize, long style=SP_HORIZONTAL,
String name=SPIN_BUTTON_NAME) -> bool
-
+
-
-
+
+
-
+
@@ -14508,25 +14751,25 @@ EVT_TEXT_MAXLEN = wx.PyEventBinder( wxEVT_COMMAND_TEXT_MAXLEN, 1)
GetMax() -> int
-
+
SetValue(int val)
-
+
SetMin(int minVal)
-
+
SetMax(int maxVal)
-
+
SetRange(int minVal, int maxVal)
@@ -14538,23 +14781,23 @@ EVT_TEXT_MAXLEN = wx.PyEventBinder( wxEVT_COMMAND_TEXT_MAXLEN, 1)
-
+
__init__(Window parent, int id=-1, String value=EmptyString,
Point pos=DefaultPosition, Size size=DefaultSize,
long style=SP_ARROW_KEYS, int min=0, int max=100,
int initial=0, String name=SpinCtrlNameStr) -> SpinCtrl
-
+
-
-
-
+
+
+
-
+
@@ -14566,34 +14809,34 @@ EVT_TEXT_MAXLEN = wx.PyEventBinder( wxEVT_COMMAND_TEXT_MAXLEN, 1)
long style=SP_ARROW_KEYS, int min=0, int max=100,
int initial=0, String name=SpinCtrlNameStr) -> bool
-
+
-
-
-
+
+
+
-
+
GetValue() -> int
-
+
SetValue(int value)
-
+
SetValueString(String text)
-
+
-
+
SetRange(int minVal, int maxVal)
@@ -14606,7 +14849,7 @@ EVT_TEXT_MAXLEN = wx.PyEventBinder( wxEVT_COMMAND_TEXT_MAXLEN, 1)
GetMax() -> int
-
+
SetSelection(long from, long to)
@@ -14614,14 +14857,36 @@ EVT_TEXT_MAXLEN = wx.PyEventBinder( wxEVT_COMMAND_TEXT_MAXLEN, 1)
+
+
+
+ __init__(wxEventType commandType=wxEVT_NULL, int winid=0) -> SpinEvent
+
+
+
+
+
+
+ GetPosition() -> int
+
+
+ SetPosition(int pos)
+
+
+
+
+
-EVT_SPINCTRL = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED, 1)
+EVT_SPIN_UP = wx.PyEventBinder( wx.wxEVT_SCROLL_LINEUP, 1)
+EVT_SPIN_DOWN = wx.PyEventBinder( wx.wxEVT_SCROLL_LINEDOWN, 1)
+EVT_SPIN = wx.PyEventBinder( wx.wxEVT_SCROLL_THUMBTRACK, 1)
+EVT_SPINCTRL = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED, 1)
#---------------------------------------------------------------------------
-
+
__init__(Window parent, int id, String label, Point point=DefaultPosition,
Size size=DefaultSize, int choices=0,
@@ -14629,17 +14894,17 @@ EVT_SPINCTRL = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED, 1)
long style=RA_HORIZONTAL, Validator validator=DefaultValidator,
String name=RadioBoxNameStr) -> RadioBox
-
+
-
-
-
+
+
+
-
+
-
-
+
+
@@ -14652,20 +14917,20 @@ EVT_SPINCTRL = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED, 1)
long style=RA_HORIZONTAL, Validator validator=DefaultValidator,
String name=RadioBoxNameStr) -> bool
-
+
-
-
-
+
+
+
-
+
-
-
+
+
-
+
SetSelection(int n)
@@ -14674,13 +14939,13 @@ EVT_SPINCTRL = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED, 1)
GetSelection() -> int
-
+
GetStringSelection() -> String
SetStringSelection(String s) -> bool
-
+
@@ -14689,30 +14954,30 @@ EVT_SPINCTRL = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED, 1)
FindString(String s) -> int
-
+
-
+
GetString(int n) -> String
-
+
SetString(int n, String label)
-
+
-
+
EnableItem(int n, bool enable=True)
-
+
ShowItem(int n, bool show=True)
@@ -14738,20 +15003,20 @@ EVT_SPINCTRL = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED, 1)
#---------------------------------------------------------------------------
-
+
__init__(Window parent, int id, String label, Point pos=DefaultPosition,
Size size=DefaultSize, long style=0,
Validator validator=DefaultValidator, String name=RadioButtonNameStr) -> RadioButton
-
+
-
-
-
+
+
+
-
-
+
+
@@ -14762,20 +15027,20 @@ EVT_SPINCTRL = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED, 1)
Size size=DefaultSize, long style=0,
Validator validator=DefaultValidator, String name=RadioButtonNameStr) -> bool
-
+
-
-
-
+
+
+
-
-
+
+
GetValue() -> bool
-
+
SetValue(bool value)
@@ -14786,23 +15051,23 @@ EVT_SPINCTRL = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED, 1)
#---------------------------------------------------------------------------
-
+
__init__(Window parent, int id, int value, int minValue, int maxValue,
Point point=DefaultPosition, Size size=DefaultSize,
long style=SL_HORIZONTAL, Validator validator=DefaultValidator,
String name=SliderNameStr) -> Slider
-
+
-
-
+
+
-
-
+
+
@@ -14814,28 +15079,28 @@ EVT_SPINCTRL = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED, 1)
long style=SL_HORIZONTAL, Validator validator=DefaultValidator,
String name=SliderNameStr) -> bool
-
+
-
-
+
+
-
-
+
+
GetValue() -> int
-
+
SetValue(int value)
-
+
SetRange(int minValue, int maxValue)
@@ -14848,25 +15113,25 @@ EVT_SPINCTRL = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED, 1)
GetMax() -> int
-
+
SetMin(int minValue)
-
+
SetMax(int maxValue)
-
+
SetLineSize(int lineSize)
-
+
SetPageSize(int pageSize)
@@ -14878,7 +15143,7 @@ EVT_SPINCTRL = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED, 1)
GetPageSize() -> int
-
+
SetThumbLength(int lenPixels)
@@ -14887,7 +15152,7 @@ EVT_SPINCTRL = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED, 1)
GetThumbLength() -> int
-
+
SetTickFreq(int n, int pos)
@@ -14897,16 +15162,16 @@ EVT_SPINCTRL = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED, 1)
GetTickFreq() -> int
-
+
ClearTicks()
-
+
SetTick(int tickPos)
-
+
ClearSel()
@@ -14915,7 +15180,7 @@ EVT_SPINCTRL = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED, 1)
GetSelStart() -> int
-
+
SetSelection(int min, int max)
@@ -14930,20 +15195,20 @@ EVT_SPINCTRL = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED, 1)
EVT_TOGGLEBUTTON = wx.PyEventBinder( wxEVT_COMMAND_TOGGLEBUTTON_CLICKED, 1)
-
+
__init__(Window parent, int id, String label, Point pos=DefaultPosition,
Size size=DefaultSize, long style=0,
Validator validator=DefaultValidator, String name=ToggleButtonNameStr) -> ToggleButton
-
+
-
-
-
+
+
+
-
-
+
+
@@ -14954,17 +15219,17 @@ EVT_SPINCTRL = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED, 1)
Size size=DefaultSize, long style=0,
Validator validator=DefaultValidator, String name=ToggleButtonNameStr) -> bool
-
+
-
-
-
+
+
+
-
-
+
+
-
+
SetValue(bool value)
@@ -14973,10 +15238,10 @@ EVT_SPINCTRL = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED, 1)
GetValue() -> bool
-
+
SetLabel(String label)
-
+
@@ -14984,11 +15249,11 @@ EVT_SPINCTRL = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED, 1)
#---------------------------------------------------------------------------
-
+
GetPageCount() -> size_t
-
+
GetPage(size_t n) -> Window
@@ -15001,28 +15266,28 @@ EVT_SPINCTRL = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED, 1)
SetPageText(size_t n, String strText) -> bool
-
+
-
+
GetPageText(size_t n) -> String
-
+
SetImageList(ImageList imageList)
-
+
-
+
AssignImageList(ImageList imageList)
-
+
-
+
GetImageList() -> ImageList
@@ -15038,16 +15303,16 @@ EVT_SPINCTRL = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED, 1)
-
+
SetPageSize(Size size)
-
+
-
+
CalcSizeFromPage(Size sizePage) -> Size
-
+
@@ -15068,8 +15333,8 @@ EVT_SPINCTRL = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED, 1)
AddPage(Window page, String text, bool select=False, int imageId=-1) -> bool
-
-
+
+
@@ -15079,8 +15344,8 @@ EVT_SPINCTRL = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED, 1)
int imageId=-1) -> bool
-
-
+
+
@@ -15091,7 +15356,7 @@ EVT_SPINCTRL = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED, 1)
-
+
AdvanceSelection(bool forward=True)
@@ -15099,7 +15364,7 @@ EVT_SPINCTRL = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED, 1)
-
+
__init__(wxEventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
int nOldSel=-1) -> BookCtrlEvent
@@ -15113,7 +15378,7 @@ EVT_SPINCTRL = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED, 1)
GetSelection() -> int
-
+
SetSelection(int nSel)
@@ -15122,7 +15387,7 @@ EVT_SPINCTRL = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED, 1)
GetOldSelection() -> int
-
+
SetOldSelection(int nOldSel)
@@ -15133,17 +15398,17 @@ EVT_SPINCTRL = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED, 1)
#---------------------------------------------------------------------------
-
+
__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
long style=0, String name=NOTEBOOK_NAME) -> Notebook
-
+
-
-
+
+
-
+
@@ -15153,46 +15418,46 @@ EVT_SPINCTRL = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED, 1)
Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
long style=0, String name=NOTEBOOK_NAME) -> bool
-
+
-
-
+
+
-
+
GetRowCount() -> int
-
+
SetPadding(Size padding)
-
+
-
+
SetTabSize(Size sz)
-
+
HitTest(Point pt) -> (tab, where)
Returns the tab which is hit, and flags indicating where using wxNB_HITTEST_ flags.
-
-
+
+
-
+
CalcSizeFromPage(Size sizePage) -> Size
-
+
-
+
__init__(wxEventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
int nOldSel=-1) -> NotebookEvent
@@ -15244,17 +15509,17 @@ class NotebookPage(wx.Panel):
#---------------------------------------------------------------------------
-
+
__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
long style=0, String name=EmptyString) -> Listbook
-
+
-
-
+
+
-
+
@@ -15264,12 +15529,12 @@ class NotebookPage(wx.Panel):
Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
long style=0, String name=EmptyString) -> bool
-
+
-
-
+
+
-
+
@@ -15277,7 +15542,7 @@ class NotebookPage(wx.Panel):
-
+
__init__(wxEventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
int nOldSel=-1) -> ListbookEvent
@@ -15297,38 +15562,38 @@ class NotebookPage(wx.Panel):
#---------------------------------------------------------------------------
-
+
__init__(BookCtrl nb) -> BookCtrlSizer
-
+
-
+
RecalcSizes()
-
+
CalcMin() -> Size
-
+
GetControl() -> BookCtrl
-
+
__init__(Notebook nb) -> NotebookSizer
-
+
-
+
RecalcSizes()
-
+
CalcMin() -> Size
-
+
GetNotebook() -> Notebook
@@ -15336,11 +15601,11 @@ class NotebookPage(wx.Panel):
#---------------------------------------------------------------------------
-
+
GetId() -> int
-
+
GetControl() -> Control
@@ -15370,22 +15635,22 @@ class NotebookPage(wx.Panel):
CanBeToggled() -> bool
-
+
GetNormalBitmap() -> Bitmap
-
+
GetDisabledBitmap() -> Bitmap
-
+
GetBitmap() -> Bitmap
-
+
GetLabel() -> String
-
+
GetShortHelp() -> String
-
+
GetLongHelp() -> String
@@ -15394,7 +15659,7 @@ class NotebookPage(wx.Panel):
-
+
Toggle()
@@ -15406,71 +15671,71 @@ class NotebookPage(wx.Panel):
SetShortHelp(String help) -> bool
-
+
SetLongHelp(String help) -> bool
-
+
-
+
SetNormalBitmap(Bitmap bmp)
-
+
-
+
SetDisabledBitmap(Bitmap bmp)
-
+
-
+
SetLabel(String label)
-
+
-
+
Detach()
-
+
Attach(ToolBarBase tbar)
-
+
GetClientData() -> PyObject
-
+
SetClientData(PyObject clientData)
-
+
-
-
+
+
DoAddTool(int id, String label, Bitmap bitmap, Bitmap bmpDisabled=wxNullBitmap,
int kind=ITEM_NORMAL, String shortHelp=EmptyString,
String longHelp=EmptyString,
PyObject clientData=None) -> ToolBarToolBase
-
-
-
+
+
+
-
-
-
+
+
+
-
+
DoInsertTool(size_t pos, int id, String label, Bitmap bitmap, Bitmap bmpDisabled=wxNullBitmap,
int kind=ITEM_NORMAL,
String shortHelp=EmptyString, String longHelp=EmptyString,
@@ -15478,57 +15743,57 @@ class NotebookPage(wx.Panel):
-
-
-
+
+
+
-
-
-
+
+
+
-
+
AddToolItem(ToolBarToolBase tool) -> ToolBarToolBase
-
+
-
+
InsertToolItem(size_t pos, ToolBarToolBase tool) -> ToolBarToolBase
-
+
-
+
AddControl(Control control) -> ToolBarToolBase
-
+
-
+
InsertControl(size_t pos, Control control) -> ToolBarToolBase
-
+
-
+
FindControl(int id) -> Control
-
+
AddSeparator() -> ToolBarToolBase
-
+
InsertSeparator(size_t pos) -> ToolBarToolBase
-
+
RemoveTool(int id) -> ToolBarToolBase
@@ -15546,27 +15811,27 @@ class NotebookPage(wx.Panel):
-
+
ClearTools()
Realize() -> bool
-
+
EnableTool(int id, bool enable)
-
+
ToggleTool(int id, bool toggle)
-
+
SetToggle(int id, bool toggle)
@@ -15579,11 +15844,11 @@ class NotebookPage(wx.Panel):
-
+
SetToolClientData(int id, PyObject clientData)
-
+
@@ -15604,61 +15869,61 @@ class NotebookPage(wx.Panel):
-
+
SetToolShortHelp(int id, String helpString)
-
+
-
+
GetToolShortHelp(int id) -> String
-
+
SetToolLongHelp(int id, String helpString)
-
+
-
+
GetToolLongHelp(int id) -> String
-
+
SetMarginsXY(int x, int y)
-
+
SetMargins(Size size)
-
+
-
+
SetToolPacking(int packing)
-
+
SetToolSeparation(int separation)
-
+
GetToolMargins() -> Size
-
+
GetMargins() -> Size
@@ -15667,13 +15932,13 @@ class NotebookPage(wx.Panel):
GetToolSeparation() -> int
-
+
SetRows(int nRows)
-
+
SetMaxRowsCols(int rows, int cols)
@@ -15686,26 +15951,26 @@ class NotebookPage(wx.Panel):
GetMaxCols() -> int
-
+
SetToolBitmapSize(Size size)
-
+
-
+
GetToolBitmapSize() -> Size
-
+
GetToolSize() -> Size
-
+
FindToolForPosition(int x, int y) -> ToolBarToolBase
-
+
FindById(int toolid) -> ToolBarToolBase
@@ -15716,18 +15981,18 @@ class NotebookPage(wx.Panel):
-
+
__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
long style=wxNO_BORDER|wxTB_HORIZONTAL,
String name=wxPyToolBarNameStr) -> ToolBar
-
+
-
-
+
+
-
+
@@ -15738,15 +16003,15 @@ class NotebookPage(wx.Panel):
long style=wxNO_BORDER|wxTB_HORIZONTAL,
String name=wxPyToolBarNameStr) -> bool
-
+
-
-
+
+
-
+
-
+
FindToolForPosition(int x, int y) -> ToolBarToolBase
@@ -15765,27 +16030,27 @@ class NotebookPage(wx.Panel):
__init__(Colour colText=wxNullColour, Colour colBack=wxNullColour,
Font font=wxNullFont) -> ListItemAttr
-
-
-
+
+
+
-
+
SetTextColour(Colour colText)
-
+
-
+
SetBackgroundColour(Colour colBack)
-
+
-
+
SetFont(Font font)
-
+
@@ -15797,16 +16062,16 @@ class NotebookPage(wx.Panel):
HasFont() -> bool
-
+
GetTextColour() -> Colour
-
+
GetBackgroundColour() -> Colour
-
+
GetFont() -> Font
-
+
Destroy()
@@ -15814,95 +16079,95 @@ class NotebookPage(wx.Panel):
#---------------------------------------------------------------------------
-
+
__init__() -> ListItem
__del__()
-
+
Clear()
-
+
ClearAttributes()
-
+
SetMask(long mask)
-
+
SetId(long id)
-
+
SetColumn(int col)
-
+
SetState(long state)
-
+
SetStateMask(long stateMask)
-
+
SetText(String text)
-
+
-
+
SetImage(int image)
-
+
SetData(long data)
-
+
SetWidth(int width)
-
+
SetAlign(int align)
-
+
SetTextColour(Colour colText)
-
+
-
+
SetBackgroundColour(Colour colBack)
-
+
-
+
SetFont(Font font)
-
+
@@ -15917,7 +16182,7 @@ class NotebookPage(wx.Panel):
GetState() -> long
-
+
GetText() -> String
@@ -15932,19 +16197,19 @@ class NotebookPage(wx.Panel):
GetAlign() -> int
-
+
GetAttributes() -> ListItemAttr
HasAttributes() -> bool
-
+
GetTextColour() -> Colour
-
+
GetBackgroundColour() -> Colour
-
+
GetFont() -> Font
@@ -15952,7 +16217,7 @@ class NotebookPage(wx.Panel):
-
+
@@ -15962,7 +16227,7 @@ class NotebookPage(wx.Panel):
#---------------------------------------------------------------------------
-
+
__init__(wxEventType commandType=wxEVT_NULL, int id=0) -> ListEvent
@@ -15974,8 +16239,8 @@ class NotebookPage(wx.Panel):
-
-
+
+
GetKeyCode() -> int
@@ -15985,13 +16250,13 @@ class NotebookPage(wx.Panel):
GetColumn() -> int
-
+
GetPoint() -> Point
-
+
GetLabel() -> String
-
+
GetText() -> String
@@ -16003,7 +16268,7 @@ class NotebookPage(wx.Panel):
GetMask() -> long
-
+
GetItem() -> ListItem
@@ -16015,7 +16280,7 @@ class NotebookPage(wx.Panel):
IsEditCancelled() -> bool
-
+
SetEditCanceled(bool editCancelled)
@@ -16051,19 +16316,19 @@ EVT_LIST_ITEM_FOCUSED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_FOCUSED
#---------------------------------------------------------------------------
-
+
__init__(Window parent, int id=-1, Point pos=DefaultPosition,
Size size=DefaultSize, long style=LC_ICON,
Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> ListCtrl
-
+
-
-
+
+
-
-
+
+
@@ -16074,35 +16339,35 @@ EVT_LIST_ITEM_FOCUSED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_FOCUSED
Size size=DefaultSize, long style=LC_ICON,
Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> bool
-
+
-
-
+
+
-
-
+
+
-
+
_setCallbackInfo(PyObject self, PyObject _class)
-
-
+
+
SetForegroundColour(Colour col) -> bool
-
+
SetBackgroundColour(Colour col) -> bool
-
+
-
+
GetColumn(int col) -> ListItem
@@ -16112,7 +16377,7 @@ EVT_LIST_ITEM_FOCUSED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_FOCUSED
SetColumn(int col, ListItem item) -> bool
-
+
@@ -16131,10 +16396,10 @@ EVT_LIST_ITEM_FOCUSED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_FOCUSED
GetCountPerPage() -> int
-
+
GetViewRect() -> Rect
-
+
GetItem(long itemId, int col=0) -> ListItem
@@ -16144,7 +16409,7 @@ EVT_LIST_ITEM_FOCUSED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_FOCUSED
SetItem(ListItem info) -> bool
-
+
@@ -16152,7 +16417,7 @@ EVT_LIST_ITEM_FOCUSED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_FOCUSED
-
+
@@ -16179,17 +16444,17 @@ EVT_LIST_ITEM_FOCUSED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_FOCUSED
-
+
GetItemText(long item) -> String
-
+
SetItemText(long item, String str)
-
+
@@ -16205,13 +16470,13 @@ EVT_LIST_ITEM_FOCUSED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_FOCUSED
-
+
GetItemPosition(long item) -> Point
-
+
GetItemRect(long item, int code=LIST_RECT_BOUNDS) -> Rect
@@ -16222,7 +16487,7 @@ EVT_LIST_ITEM_FOCUSED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_FOCUSED
SetItemPosition(long item, Point pos) -> bool
-
+
@@ -16231,10 +16496,10 @@ EVT_LIST_ITEM_FOCUSED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_FOCUSED
GetColumnCount() -> int
-
+
GetItemSpacing() -> Size
-
+
SetItemSpacing(int spacing, bool isSmall=False)
@@ -16244,26 +16509,26 @@ EVT_LIST_ITEM_FOCUSED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_FOCUSED
GetSelectedItemCount() -> int
-
+
GetTextColour() -> Colour
-
+
SetTextColour(Colour col)
-
+
GetTopItem() -> long
-
+
SetSingleStyle(long style, bool add=True)
-
+
SetWindowStyleFlag(long style)
@@ -16277,36 +16542,36 @@ EVT_LIST_ITEM_FOCUSED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_FOCUSED
-
+
GetImageList(int which) -> ImageList
-
+
SetImageList(ImageList imageList, int which)
-
+
-
+
AssignImageList(ImageList imageList, int which)
-
+
IsVirtual() -> bool
-
+
RefreshItem(long item)
-
+
RefreshItems(long itemFrom, long itemTo)
@@ -16337,10 +16602,10 @@ EVT_LIST_ITEM_FOCUSED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_FOCUSED
DeleteAllColumns() -> bool
-
+
ClearAll()
-
+
EditLabel(long item)
@@ -16356,7 +16621,7 @@ EVT_LIST_ITEM_FOCUSED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_FOCUSED
FindItem(long start, String str, bool partial=False) -> long
-
+
@@ -16371,7 +16636,7 @@ EVT_LIST_ITEM_FOCUSED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_FOCUSED
FindItemAtPos(long start, Point pt, int direction) -> long
-
+
@@ -16380,21 +16645,21 @@ EVT_LIST_ITEM_FOCUSED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_FOCUSED
Determines which item (if any) is at the specified point,
giving details in the second return value (see wxLIST_HITTEST_... flags.)
-
-
+
+
InsertItem(ListItem info) -> long
-
+
InsertStringItem(long index, String label) -> long
-
+
@@ -16408,7 +16673,7 @@ giving details in the second return value (see wxLIST_HITTEST_... flags.)InsertImageStringItem(long index, String label, int imageIndex) -> long
-
+
@@ -16416,7 +16681,7 @@ giving details in the second return value (see wxLIST_HITTEST_... flags.)InsertColumnInfo(long col, ListItem info) -> long
-
+
@@ -16424,12 +16689,12 @@ giving details in the second return value (see wxLIST_HITTEST_... flags.)
-
+
-
+
SetItemCount(long count)
@@ -16442,27 +16707,27 @@ giving details in the second return value (see wxLIST_HITTEST_... flags.)
-
+
SetItemTextColour(long item, Colour col)
-
+
-
+
GetItemTextColour(long item) -> Colour
-
+
SetItemBackgroundColour(long item, Colour col)
-
+
-
+
GetItemBackgroundColour(long item) -> Colour
@@ -16471,10 +16736,10 @@ giving details in the second return value (see wxLIST_HITTEST_... flags.)
SortItems(PyObject func) -> bool
-
+
-
+
GetMainWindow() -> Window
@@ -16482,19 +16747,19 @@ giving details in the second return value (see wxLIST_HITTEST_... flags.)
-
+
__init__(Window parent, int id=-1, Point pos=DefaultPosition,
Size size=DefaultSize, long style=LC_REPORT,
Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> ListView
-
+
-
-
+
+
-
-
+
+
@@ -16505,23 +16770,23 @@ giving details in the second return value (see wxLIST_HITTEST_... flags.)
-
+
-
-
+
+
-
-
+
+
-
+
Select(long n, bool on=True)
-
+
Focus(long index)
@@ -16545,14 +16810,14 @@ giving details in the second return value (see wxLIST_HITTEST_... flags.)
-
+
SetColumnImage(int col, int image)
-
+
ClearColumnImage(int col)
@@ -16578,13 +16843,13 @@ giving details in the second return value (see wxLIST_HITTEST_... flags.)
__eq__(TreeItemId other) -> bool
-
+
__ne__(TreeItemId other) -> bool
-
+
@@ -16593,28 +16858,28 @@ giving details in the second return value (see wxLIST_HITTEST_... flags.)
__init__(PyObject obj=None) -> TreeItemData
-
+
GetData() -> PyObject
-
+
SetData(PyObject obj)
-
+
-
+
GetId() -> TreeItemId
-
+
SetId(TreeItemId id)
-
+
-
+
Destroy()
@@ -16645,7 +16910,7 @@ EVT_TREE_STATE_IMAGE_CLICK = wx.PyEventBinder(wxEVT_COMMAND_TREE_STATE_IMAGE_CLI
EVT_TREE_ITEM_GETTOOLTIP = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP, 1)
-
+
__init__(wxEventType commandType=wxEVT_NULL, int id=0) -> TreeEvent
@@ -16653,67 +16918,67 @@ EVT_TREE_ITEM_GETTOOLTIP = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
-
+
GetItem() -> TreeItemId
-
+
SetItem(TreeItemId item)
-
+
-
+
GetOldItem() -> TreeItemId
-
+
SetOldItem(TreeItemId item)
-
+
-
+
GetPoint() -> Point
-
+
SetPoint(Point pt)
-
+
-
+
GetKeyEvent() -> KeyEvent
GetKeyCode() -> int
-
+
SetKeyEvent(KeyEvent evt)
-
+
-
+
GetLabel() -> String
-
+
SetLabel(String label)
-
+
IsEditCancelled() -> bool
-
+
SetEditCanceled(bool editCancelled)
-
+
SetToolTip(String toolTip)
-
+
@@ -16721,20 +16986,20 @@ EVT_TREE_ITEM_GETTOOLTIP = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
#---------------------------------------------------------------------------
-
+
__init__(Window parent, int id=-1, Point pos=DefaultPosition,
Size size=DefaultSize, long style=TR_DEFAULT_STYLE,
Validator validator=DefaultValidator,
String name=TreeCtrlNameStr) -> TreeCtrl
-
+
-
-
+
+
-
-
+
+
@@ -16746,20 +17011,20 @@ EVT_TREE_ITEM_GETTOOLTIP = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
Validator validator=DefaultValidator,
String name=TreeCtrlNameStr) -> bool
-
+
-
-
+
+
-
-
+
+
-
+
_setCallbackInfo(PyObject self, PyObject _class)
-
-
+
+
@@ -16768,7 +17033,7 @@ EVT_TREE_ITEM_GETTOOLTIP = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
GetIndent() -> unsigned int
-
+
SetIndent(unsigned int indent)
@@ -16777,381 +17042,381 @@ EVT_TREE_ITEM_GETTOOLTIP = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
GetSpacing() -> unsigned int
-
+
SetSpacing(unsigned int spacing)
-
+
GetImageList() -> ImageList
-
+
GetStateImageList() -> ImageList
-
+
SetImageList(ImageList imageList)
-
+
-
+
SetStateImageList(ImageList imageList)
-
+
-
+
AssignImageList(ImageList imageList)
-
+
-
+
AssignStateImageList(ImageList imageList)
-
+
-
+
GetItemText(TreeItemId item) -> String
-
+
GetItemImage(TreeItemId item, int which=TreeItemIcon_Normal) -> int
-
+
-
+
GetItemData(TreeItemId item) -> TreeItemData
-
+
GetItemPyData(TreeItemId item) -> PyObject
-
+
-
+
GetItemTextColour(TreeItemId item) -> Colour
-
+
-
+
GetItemBackgroundColour(TreeItemId item) -> Colour
-
+
-
+
GetItemFont(TreeItemId item) -> Font
-
+
-
+
SetItemText(TreeItemId item, String text)
-
-
+
+
-
+
SetItemImage(TreeItemId item, int image, int which=TreeItemIcon_Normal)
-
+
-
+
SetItemData(TreeItemId item, TreeItemData data)
-
-
+
+
-
+
SetItemPyData(TreeItemId item, PyObject obj)
-
-
+
+
-
+
SetItemHasChildren(TreeItemId item, bool has=True)
-
+
-
+
SetItemBold(TreeItemId item, bool bold=True)
-
+
-
+
SetItemTextColour(TreeItemId item, Colour col)
-
-
+
+
-
+
SetItemBackgroundColour(TreeItemId item, Colour col)
-
-
+
+
-
+
SetItemFont(TreeItemId item, Font font)
-
-
+
+
IsVisible(TreeItemId item) -> bool
-
+
ItemHasChildren(TreeItemId item) -> bool
-
+
IsExpanded(TreeItemId item) -> bool
-
+
IsSelected(TreeItemId item) -> bool
-
+
IsBold(TreeItemId item) -> bool
-
+
GetChildrenCount(TreeItemId item, bool recursively=True) -> size_t
-
+
-
+
GetRootItem() -> TreeItemId
-
+
GetSelection() -> TreeItemId
GetSelections() -> PyObject
-
+
GetItemParent(TreeItemId item) -> TreeItemId
-
+
GetFirstChild(TreeItemId item) -> PyObject
-
+
GetNextChild(TreeItemId item, wxTreeItemIdValue cookie) -> PyObject
-
-
+
+
-
+
GetLastChild(TreeItemId item) -> TreeItemId
-
+
-
+
GetNextSibling(TreeItemId item) -> TreeItemId
-
+
-
+
GetPrevSibling(TreeItemId item) -> TreeItemId
-
+
-
+
GetFirstVisibleItem() -> TreeItemId
-
+
GetNextVisible(TreeItemId item) -> TreeItemId
-
+
-
+
GetPrevVisible(TreeItemId item) -> TreeItemId
-
+
-
+
AddRoot(String text, int image=-1, int selectedImage=-1, TreeItemData data=None) -> TreeItemId
-
+
-
+
-
+
PrependItem(TreeItemId parent, String text, int image=-1, int selectedImage=-1,
TreeItemData data=None) -> TreeItemId
-
-
+
+
-
+
-
+
InsertItem(TreeItemId parent, TreeItemId idPrevious, String text,
int image=-1, int selectedImage=-1, TreeItemData data=None) -> TreeItemId
-
-
-
+
+
+
-
+
-
+
InsertItemBefore(TreeItemId parent, size_t index, String text, int image=-1,
int selectedImage=-1, TreeItemData data=None) -> TreeItemId
-
+
-
+
-
+
-
+
AppendItem(TreeItemId parent, String text, int image=-1, int selectedImage=-1,
TreeItemData data=None) -> TreeItemId
-
-
+
+
-
+
-
+
Delete(TreeItemId item)
-
+
-
+
DeleteChildren(TreeItemId item)
-
+
-
+
DeleteAllItems()
-
+
Expand(TreeItemId item)
-
+
-
+
Collapse(TreeItemId item)
-
+
-
+
CollapseAndReset(TreeItemId item)
-
+
-
+
Toggle(TreeItemId item)
-
+
-
+
Unselect()
-
+
UnselectAll()
-
+
SelectItem(TreeItemId item)
-
+
-
+
EnsureVisible(TreeItemId item)
-
+
-
+
ScrollTo(TreeItemId item)
-
+
-
+
EditLabel(TreeItemId item)
-
+
-
+
GetEditControl() -> TextCtrl
-
+
SortChildren(TreeItemId item)
-
+
-
+
HitTest(Point point) -> (item, where)
Determine which item (if any) belongs the given point. The
coordinates specified are relative to the client area of tree ctrl
@@ -17159,14 +17424,14 @@ and the where return value is set to a bitmask of wxTREE_HITTEST_xxx
constants.
-
-
+
+
GetBoundingRect(TreeItemId item, bool textOnly=False) -> PyObject
-
+
@@ -17175,7 +17440,7 @@ constants.
#---------------------------------------------------------------------------
-
+
__init__(Window parent, int id=-1, String dir=DirDialogDefaultFolderStr,
Point pos=DefaultPosition, Size size=DefaultSize,
@@ -17183,15 +17448,15 @@ constants.
String filter=EmptyString,
int defaultFilter=0, String name=TreeCtrlNameStr) -> GenericDirCtrl
-
-
-
-
-
+
+
+
+
+
-
+
-
+
@@ -17204,45 +17469,45 @@ constants.
String filter=EmptyString,
int defaultFilter=0, String name=TreeCtrlNameStr) -> bool
-
-
-
-
-
+
+
+
+
+
-
+
-
+
ExpandPath(String path) -> bool
-
+
-
+
GetDefaultPath() -> String
-
+
SetDefaultPath(String path)
-
+
-
+
GetPath() -> String
-
+
GetFilePath() -> String
-
+
SetPath(String path)
-
+
-
+
ShowHidden(bool show)
@@ -17251,62 +17516,62 @@ constants.
GetShowHidden() -> bool
-
+
GetFilter() -> String
-
+
SetFilter(String filter)
-
+
GetFilterIndex() -> int
-
+
SetFilterIndex(int n)
-
+
GetRootId() -> TreeItemId
-
+
GetTreeCtrl() -> TreeCtrl
GetFilterListCtrl() -> DirFilterListCtrl
-
+
FindChild(wxTreeItemId parentId, wxString path) -> (item, done)
Find the child that matches the first part of 'path'. E.g. if a child path is
"/usr" and 'path' is "/usr/include" then the child for /usr is returned.
If the path string has been used (we're at the leaf), done is set to True
-
-
-
+
+
+
-
+
DoResize()
-
+
ReCreateTree()
-
+
__init__(GenericDirCtrl parent, int id=-1, Point pos=DefaultPosition,
Size size=DefaultSize, long style=0) -> DirFilterListCtrl
-
-
-
-
+
+
+
+
@@ -17317,17 +17582,17 @@ If the path string has been used (we're at the leaf), done is set to True
Create(GenericDirCtrl parent, int id=-1, Point pos=DefaultPosition,
Size size=DefaultSize, long style=0) -> bool
-
-
-
-
+
+
+
+
-
+
FillFilterList(String filter, int defaultFilter)
-
+
@@ -17336,29 +17601,29 @@ If the path string has been used (we're at the leaf), done is set to True
#---------------------------------------------------------------------------
-
+
__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
long style=0, Validator validator=DefaultValidator,
String name=ControlNameStr) -> PyControl
-
-
-
-
+
+
+
+
-
-
+
+
-
+
_setCallbackInfo(PyObject self, PyObject _class)
-
-
+
+
-
+
base_DoMoveWindow(int x, int y, int width, int height)
@@ -17367,7 +17632,7 @@ If the path string has been used (we're at the leaf), done is set to True
-
+
base_DoSetSize(int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)
@@ -17377,48 +17642,48 @@ If the path string has been used (we're at the leaf), done is set to True
-
+
base_DoSetClientSize(int width, int height)
-
+
base_DoSetVirtualSize(int x, int y)
-
+
base_DoGetSize() -> (width, height)
-
-
+
+
-
+
base_DoGetClientSize() -> (width, height)
-
-
+
+
-
+
base_DoGetPosition() -> (x,y)
-
-
+
+
-
+
base_DoGetVirtualSize() -> Size
-
+
base_DoGetBestSize() -> Size
-
+
base_InitDialog()
@@ -17436,19 +17701,19 @@ If the path string has been used (we're at the leaf), done is set to True
base_AcceptsFocusFromKeyboard() -> bool
-
+
base_GetMaxSize() -> Size
-
+
base_AddChild(Window child)
-
+
-
+
base_RemoveChild(Window child)
-
+
@@ -17462,49 +17727,49 @@ EVT_DETAILED_HELP = wx.PyEventBinder( wxEVT_DETAILED_HELP, 1)
EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
-
+
__init__(wxEventType type=wxEVT_NULL, int winid=0, Point pt=DefaultPosition) -> HelpEvent
-
+
-
+
GetPosition() -> Point
-
+
SetPosition(Point pos)
-
+
-
+
GetLink() -> String
-
+
SetLink(String link)
-
+
-
+
GetTarget() -> String
-
+
SetTarget(String target)
-
+
-
+
__init__(Window window=None, bool doNow=True) -> ContextHelp
-
+
@@ -17514,7 +17779,7 @@ EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
BeginContextHelp(Window window=None) -> bool
-
+
@@ -17522,61 +17787,61 @@ EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
-
+
__init__(Window parent, int id=ID_CONTEXT_HELP, Point pos=DefaultPosition,
Size size=DefaultSize, long style=BU_AUTODRAW) -> ContextHelpButton
-
+
-
-
+
+
-
+
HelpProvider.Set(HelpProvider helpProvider) -> HelpProvider
-
+
-
+
HelpProvider.Get() -> HelpProvider
-
+
GetHelp(Window window) -> String
-
+
ShowHelp(Window window) -> bool
-
+
-
+
AddHelp(Window window, String text)
-
-
+
+
-
+
AddHelpById(int id, String text)
-
+
-
+
Destroy()
-
+
__init__() -> SimpleHelpProvider
@@ -17585,67 +17850,67 @@ EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
#---------------------------------------------------------------------------
-
+
__init__(Bitmap image, Cursor cursor=wxNullCursor) -> DragImage
-
-
+
+
DragIcon(Icon image, Cursor cursor=wxNullCursor) -> DragImage
-
-
+
+
DragString(String str, Cursor cursor=wxNullCursor) -> DragImage
-
-
+
+
DragTreeItem(TreeCtrl treeCtrl, TreeItemId id) -> DragImage
-
-
+
+
DragListItem(ListCtrl listCtrl, long id) -> DragImage
-
+
__del__()
-
+
SetBackingBitmap(Bitmap bitmap)
-
+
BeginDrag(Point hotspot, Window window, bool fullScreen=False,
Rect rect=None) -> bool
-
-
+
+
-
+
BeginDragBounded(Point hotspot, Window window, Window boundingWindow) -> bool
-
-
-
+
+
+
@@ -17654,7 +17919,7 @@ EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
Move(Point pt) -> bool
-
+
@@ -17663,33 +17928,33 @@ EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
Hide() -> bool
-
+
GetImageRect(Point pos) -> Rect
-
+
DoDrawImage(DC dc, Point pos) -> bool
-
-
+
+
UpdateBackingFromWindow(DC windowDC, MemoryDC destDC, Rect sourceRect, Rect destRect) -> bool
-
-
-
-
+
+
+
+
RedrawImage(Point oldPos, Point newPos, bool eraseOld, bool drawNew) -> bool
-
-
+
+
@@ -17703,13 +17968,13 @@ EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
#---------------------------------------------------------------------------
-
+
SystemSettings.GetColour(int index) -> Colour
-
+
SystemSettings.GetFont(int index) -> Font
@@ -17730,7 +17995,7 @@ EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
SystemSettings.GetScreenType() -> int
-
+
SystemSettings.SetScreenType(int screen)
@@ -17738,40 +18003,40 @@ EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
-
+
__init__() -> SystemOptions
-
+
SystemOptions.SetOption(String name, String value)
-
-
+
+
-
+
SystemOptions.SetOptionInt(String name, int value)
-
+
-
+
SystemOptions.GetOption(String name) -> String
-
+
SystemOptions.GetOptionInt(String name) -> int
-
+
SystemOptions.HasOption(String name) -> bool
-
+
@@ -17781,7 +18046,7 @@ EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
NewId() -> long
-
+
RegisterId(long id)
@@ -17790,10 +18055,10 @@ EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
GetCurrentId() -> long
-
+
Bell()
-
+
EndBusyCursor()
@@ -17802,36 +18067,36 @@ EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
-
+
GetMousePosition() -> (x,y)
-
-
+
+
IsBusy() -> bool
-
+
Now() -> String
Shell(String command=EmptyString) -> bool
-
+
-
+
StartTimer()
GetOsVersion() -> (platform, major, minor)
-
-
+
+
-
+
GetOsDescription() -> String
@@ -17843,61 +18108,61 @@ EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
-
+
Sleep(int secs)
-
+
Usleep(unsigned long milliseconds)
-
+
EnableTopLevelWindows(bool enable)
-
+
StripMenuCodes(String in) -> String
-
+
-
+
GetEmailAddress() -> String
-
+
GetHostName() -> String
-
+
GetFullHostName() -> String
-
+
GetUserId() -> String
-
+
GetUserName() -> String
-
+
GetHomeDir() -> String
-
+
GetUserHome(String user=EmptyString) -> String
-
+
GetProcessId() -> unsigned long
-
+
Trap()
-
+
FileSelector(String message=FileSelectorPromptStr, String default_path=EmptyString,
String default_filename=EmptyString,
String default_extension=EmptyString,
@@ -17905,83 +18170,83 @@ EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
int flags=0, Window parent=None, int x=-1,
int y=-1) -> String
-
-
-
-
-
+
+
+
+
+
-
+
-
+
LoadFileSelector(String what, String extension, String default_name=EmptyString,
Window parent=None) -> String
-
-
-
-
+
+
+
+
-
+
SaveFileSelector(String what, String extension, String default_name=EmptyString,
Window parent=None) -> String
-
-
-
-
+
+
+
+
-
+
DirSelector(String message=DirSelectorPromptStr, String defaultPath=EmptyString,
long style=DD_DEFAULT_STYLE,
Point pos=DefaultPosition, Window parent=None) -> String
-
-
+
+
-
-
+
+
-
+
GetTextFromUser(String message, String caption=EmptyString, String default_value=EmptyString,
Window parent=None,
int x=-1, int y=-1, bool centre=True) -> String
-
-
-
-
+
+
+
+
-
+
GetPasswordFromUser(String message, String caption=EmptyString, String default_value=EmptyString,
Window parent=None) -> String
-
-
-
-
+
+
+
+
-
+
GetSingleChoice(String message, String caption, int choices, String choices_array,
Window parent=None, int x=-1,
int y=-1, bool centre=True, int width=150, int height=200) -> String
-
-
+
+
-
-
+
+
@@ -17994,11 +18259,11 @@ EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
Window parent=None, int x=-1,
int y=-1, bool centre=True, int width=150, int height=200) -> int
-
-
+
+
-
-
+
+
@@ -18011,10 +18276,10 @@ EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
Window parent=None, int x=-1,
int y=-1) -> int
-
-
+
+
-
+
@@ -18024,14 +18289,14 @@ EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
long min=0, long max=100, Window parent=None,
Point pos=DefaultPosition) -> long
-
-
-
+
+
+
-
-
+
+
@@ -18043,69 +18308,69 @@ EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
GetDisplayDepth() -> int
-
+
DisplaySize() -> (width, height)
-
-
+
+
-
+
GetDisplaySize() -> Size
-
+
DisplaySizeMM() -> (width, height)
-
-
+
+
-
+
GetDisplaySizeMM() -> Size
-
+
ClientDisplayRect() -> (x, y, width, height)
-
-
-
-
+
+
+
+
-
+
GetClientDisplayRect() -> Rect
-
+
SetCursor(Cursor cursor)
-
+
-
+
BeginBusyCursor(Cursor cursor=wxHOURGLASS_CURSOR)
-
+
-
+
GetActiveWindow() -> Window
-
+
GenericFindWindowAtPoint(Point pt) -> Window
-
+
-
+
FindWindowAtPoint(Point pt) -> Window
-
+
-
+
GetTopLevelParent(Window win) -> Window
-
+
@@ -18114,13 +18379,13 @@ EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
-
+
WakeUpMainThread()
-
+
MutexGuiEnter()
-
+
MutexGuiLeave()
@@ -18138,32 +18403,32 @@ EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
#---------------------------------------------------------------------------
-
+
__init__(String tip) -> ToolTip
-
+
-
+
SetTip(String tip)
-
+
-
+
GetTip() -> String
-
+
GetWindow() -> Window
-
+
ToolTip.Enable(bool flag)
-
+
ToolTip.SetDelay(long milliseconds)
@@ -18174,8 +18439,8 @@ EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
__init__(Window window, Size size) -> Caret
-
-
+
+
@@ -18187,69 +18452,69 @@ EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
IsVisible() -> bool
-
+
GetPosition() -> Point
-
+
GetPositionTuple() -> (x,y)
-
-
+
+
-
+
GetSize() -> Size
-
+
GetSizeTuple() -> (width, height)
-
-
+
+
-
+
GetWindow() -> Window
-
+
MoveXY(int x, int y)
-
+
Move(Point pt)
-
+
-
+
SetSizeWH(int width, int height)
-
+
SetSize(Size size)
-
+
-
+
Show(int show=True)
-
+
Hide()
Caret_GetBlinkTime() -> int
-
+
Caret_SetBlinkTime(int milliseconds)
@@ -18259,7 +18524,7 @@ EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
__init__(Cursor cursor=wxHOURGLASS_CURSOR) -> BusyCursor
-
+
@@ -18270,7 +18535,7 @@ EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
__init__(Window winToSkip=None) -> WindowDisabler
-
+
@@ -18278,11 +18543,11 @@ EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
-
+
__init__(String message) -> BusyInfo
-
+
@@ -18293,16 +18558,16 @@ EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
__init__() -> StopWatch
-
+
Start(long t0=0)
-
+
Pause()
-
+
Resume()
@@ -18310,7 +18575,7 @@ EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
-
+
__init__(int maxFiles=9) -> FileHistory
@@ -18320,13 +18585,13 @@ EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
__del__()
-
+
AddFileToHistory(String file)
-
+
-
+
RemoveFileFromHistory(int i)
@@ -18335,40 +18600,40 @@ EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
GetMaxFiles() -> int
-
+
UseMenu(Menu menu)
-
+
-
+
RemoveMenu(Menu menu)
-
+
-
+
Load(ConfigBase config)
-
+
-
+
Save(ConfigBase config)
-
+
-
+
AddFilesToMenu()
-
+
AddFilesToThisMenu(Menu menu)
-
+
-
+
GetHistoryFile(int i) -> String
@@ -18382,8 +18647,8 @@ EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
__init__(String name, String path=EmptyString) -> SingleInstanceChecker
-
-
+
+
@@ -18395,19 +18660,19 @@ EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
Create(String name, String path=EmptyString) -> bool
-
-
+
+
IsAnotherRunning() -> bool
-
+
DrawWindowOnDC(Window window, DC dc, int method)
-
-
+
+
@@ -18418,47 +18683,47 @@ EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
__del__()
-
+
GetTip() -> String
GetCurrentTip() -> size_t
-
+
PreprocessTip(String tip) -> String
-
+
-
+
__init__(size_t currentTip) -> PyTipProvider
-
+
_setCallbackInfo(PyObject self, PyObject _class)
-
-
+
+
ShowTip(Window parent, TipProvider tipProvider, bool showAtStartup=True) -> bool
-
-
+
+
-
+
CreateFileTipProvider(String filename, size_t currentTip) -> TipProvider
-
+
@@ -18466,28 +18731,28 @@ EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
#---------------------------------------------------------------------------
-
+
__init__(EvtHandler owner=None, int id=-1) -> Timer
-
+
__del__()
-
+
_setCallbackInfo(PyObject self, PyObject _class)
-
-
+
+
-
+
SetOwner(EvtHandler owner, int id=-1)
-
+
@@ -18498,7 +18763,7 @@ EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
-
+
Stop()
@@ -18530,7 +18795,7 @@ EVT_TIMER = wx.PyEventBinder( wxEVT_TIMER, 1 )
-
+
__init__(int timerid=0, int interval=0) -> TimerEvent
@@ -18545,14 +18810,14 @@ EVT_TIMER = wx.PyEventBinder( wxEVT_TIMER, 1 )
-
+
__init__(wxTimer timer) -> TimerRunner
__init__(wxTimer timer, int milli, bool oneShot=False) -> TimerRunner
-
+
@@ -18560,7 +18825,7 @@ __init__(wxTimer timer, int milli, bool oneShot=False) -> TimerRunner
__del__()
-
+
Start(int milli, bool oneShot=False)
@@ -18584,78 +18849,78 @@ __init__(wxTimer timer, int milli, bool oneShot=False) -> TimerRunner
-
+
Log.OnLog(wxLogLevel level, wxChar szString, time_t t)
-
+
-
+
Flush()
-
+
Log.FlushActive()
-
+
Log.GetActiveTarget() -> Log
-
+
Log.SetActiveTarget(Log pLogger) -> Log
-
+
-
+
Log.Suspend()
-
+
Log.Resume()
-
+
Log.SetVerbose(bool bVerbose=True)
-
+
Log.SetLogLevel(wxLogLevel logLevel)
-
+
Log.DontCreateOnDemand()
-
+
Log.SetTraceMask(wxTraceMask ulMask)
-
+
Log.AddTraceMask(String str)
-
+
-
+
Log.RemoveTraceMask(String str)
-
+
-
+
Log.ClearTraceMasks()
-
+
Log.GetTraceMasks() -> wxArrayString
-
+
Log.SetTimestamp(wxChar ts)
-
+
@@ -18667,70 +18932,70 @@ __init__(wxTimer timer, int milli, bool oneShot=False) -> TimerRunner
Log.IsAllowedTraceMask(wxChar mask) -> bool
-
+
Log.GetLogLevel() -> wxLogLevel
-
+
Log.GetTimestamp() -> wxChar
-
+
Log.TimeStamp() -> String
-
+
Destroy()
-
+
__init__() -> LogStderr
-
+
__init__(wxTextCtrl pTextCtrl) -> LogTextCtrl
-
+
-
+
__init__() -> LogGui
-
+
__init__(wxFrame pParent, String szTitle, bool bShow=True, bool bPassToOld=True) -> LogWindow
-
-
+
+
-
+
Show(bool bShow=True)
-
+
GetFrame() -> wxFrame
-
+
GetOldLog() -> Log
IsPassingMessages() -> bool
-
+
PassMessages(bool bDoPass)
@@ -18738,20 +19003,20 @@ __init__(wxTimer timer, int milli, bool oneShot=False) -> TimerRunner
-
+
__init__(Log logger) -> LogChain
-
+
-
+
SetLog(Log logger)
-
+
-
+
PassMessages(bool bDoPass)
@@ -18760,106 +19025,106 @@ __init__(wxTimer timer, int milli, bool oneShot=False) -> TimerRunner
IsPassingMessages() -> bool
-
+
GetOldLog() -> Log
SysErrorCode() -> unsigned long
-
+
SysErrorMsg(unsigned long nErrCode=0) -> String
-
+
LogFatalError(String msg)
-
+
-
+
LogError(String msg)
-
+
-
+
LogWarning(String msg)
-
+
-
+
LogMessage(String msg)
-
+
-
+
LogInfo(String msg)
-
+
-
+
LogDebug(String msg)
-
+
-
+
LogVerbose(String msg)
-
+
-
+
LogStatus(String msg)
-
+
-
+
LogStatusFrame(wxFrame pFrame, String msg)
-
-
+
+
-
+
LogSysError(String msg)
-
+
-
+
-
+
-
+
LogTrace(unsigned long mask, String msg)
LogTrace(String mask, String msg)
-
-
+
+
-
+
LogGeneric(unsigned long level, String msg)
-
+
-
+
SafeShowMessage(String title, String text)
-
-
+
+
@@ -18871,15 +19136,15 @@ LogTrace(String mask, String msg)
-
+
__init__() -> PyLog
-
+
_setCallbackInfo(PyObject self, PyObject _class)
-
-
+
+
@@ -18887,11 +19152,11 @@ LogTrace(String mask, String msg)
#---------------------------------------------------------------------------
-
+
__init__(EvtHandler parent=None, int id=-1) -> Process
-
+
@@ -18908,34 +19173,34 @@ LogTrace(String mask, String msg)
-
+
Process.Open(String cmd, int flags=EXEC_ASYNC) -> Process
-
+
-
+
_setCallbackInfo(PyObject self, PyObject _class)
-
-
+
+
-
+
base_OnTerminate(int pid, int status)
-
+
Redirect()
IsRedirected() -> bool
-
+
Detach()
@@ -18944,10 +19209,10 @@ LogTrace(String mask, String msg)
GetErrorStream() -> InputStream
-
+
GetOutputStream() -> OutputStream
-
+
CloseOutput()
@@ -18961,7 +19226,7 @@ LogTrace(String mask, String msg)
-
+
__init__(int id=0, int pid=0, int exitcode=0) -> ProcessEvent
@@ -18985,9 +19250,9 @@ EVT_END_PROCESS = wx.PyEventBinder( wxEVT_END_PROCESS, 1 )
Execute(String command, int flags=EXEC_ASYNC, Process process=None) -> long
-
+
-
+
@@ -19003,7 +19268,7 @@ EVT_END_PROCESS = wx.PyEventBinder( wxEVT_END_PROCESS, 1 )
__del__()
-
+
GetPosition() -> Point
@@ -19030,7 +19295,7 @@ EVT_END_PROCESS = wx.PyEventBinder( wxEVT_END_PROCESS, 1 )
GetMovementThreshold() -> int
-
+
SetMovementThreshold(int threshold)
@@ -19048,7 +19313,7 @@ EVT_END_PROCESS = wx.PyEventBinder( wxEVT_END_PROCESS, 1 )
GetProductId() -> int
-
+
GetProductName() -> String
@@ -19129,7 +19394,7 @@ EVT_END_PROCESS = wx.PyEventBinder( wxEVT_END_PROCESS, 1 )
SetCapture(Window win, int pollingFreq=0) -> bool
-
+
@@ -19138,7 +19403,7 @@ EVT_END_PROCESS = wx.PyEventBinder( wxEVT_END_PROCESS, 1 )
-
+
__init__(wxEventType type=wxEVT_NULL, int state=0, int joystick=JOYSTICK1,
int change=0) -> JoystickEvent
@@ -19149,12 +19414,12 @@ EVT_END_PROCESS = wx.PyEventBinder( wxEVT_END_PROCESS, 1 )
-
+
-
+
GetPosition() -> Point
@@ -19169,31 +19434,31 @@ EVT_END_PROCESS = wx.PyEventBinder( wxEVT_END_PROCESS, 1 )
GetJoystick() -> int
-
+
SetJoystick(int stick)
-
+
SetButtonState(int state)
-
+
SetButtonChange(int change)
-
+
SetPosition(Point pos)
-
+
-
+
SetZPosition(int zPos)
@@ -19247,14 +19512,14 @@ EVT_JOYSTICK_EVENTS = wx.PyEventBinder([ wxEVT_JOY_BUTTON_DOWN,
__init__(String fileName, bool isResource=False) -> Wave
-
+
WaveData(String data) -> Wave
-
+
@@ -19278,16 +19543,16 @@ EVT_JOYSTICK_EVENTS = wx.PyEventBinder([ wxEVT_JOY_BUTTON_DOWN,
__init__(String mimeType, String openCmd, String printCmd, String desc) -> FileTypeInfo
-
-
-
-
+
+
+
+
FileTypeInfoSequence(wxArrayString sArray) -> FileTypeInfo
-
+
@@ -19296,41 +19561,41 @@ EVT_JOYSTICK_EVENTS = wx.PyEventBinder([ wxEVT_JOY_BUTTON_DOWN,
IsValid() -> bool
-
+
SetIcon(String iconFile, int iconIndex=0)
-
+
-
+
SetShortDesc(String shortDesc)
-
+
-
+
GetMimeType() -> String
-
+
GetOpenCommand() -> String
-
+
GetPrintCommand() -> String
-
+
GetShortDesc() -> String
-
+
GetDescription() -> String
-
+
GetExtensions() -> wxArrayString
GetExtensionsCount() -> int
-
+
GetIconFile() -> String
@@ -19341,7 +19606,7 @@ EVT_JOYSTICK_EVENTS = wx.PyEventBinder([ wxEVT_JOY_BUTTON_DOWN,
__init__(FileTypeInfo ftInfo) -> FileType
-
+
@@ -19356,7 +19621,7 @@ EVT_JOYSTICK_EVENTS = wx.PyEventBinder([ wxEVT_JOY_BUTTON_DOWN,
GetExtensions() -> PyObject
-
+
GetIcon() -> Icon
@@ -19368,48 +19633,48 @@ EVT_JOYSTICK_EVENTS = wx.PyEventBinder([ wxEVT_JOY_BUTTON_DOWN,
GetOpenCommand(String filename, String mimetype=EmptyString) -> PyObject
-
-
+
+
GetPrintCommand(String filename, String mimetype=EmptyString) -> PyObject
-
-
+
+
GetAllCommands(String filename, String mimetype=EmptyString) -> PyObject
-
-
+
+
SetCommand(String cmd, String verb, bool overwriteprompt=True) -> bool
-
-
+
+
SetDefaultIcon(String cmd=EmptyString, int index=0) -> bool
-
+
Unassociate() -> bool
-
+
FileType.ExpandCommand(String command, String filename, String mimetype=EmptyString) -> String
-
-
-
+
+
+
@@ -19423,64 +19688,64 @@ EVT_JOYSTICK_EVENTS = wx.PyEventBinder([ wxEVT_JOY_BUTTON_DOWN,
MimeTypesManager.IsOfType(String mimeType, String wildcard) -> bool
-
-
+
+
-
+
Initialize(int mailcapStyle=MAILCAP_ALL, String extraDir=EmptyString)
-
+
-
+
ClearData()
-
+
GetFileTypeFromExtension(String ext) -> FileType
-
+
-
+
GetFileTypeFromMimeType(String mimeType) -> FileType
-
+
ReadMailcap(String filename, bool fallback=False) -> bool
-
+
ReadMimeTypes(String filename) -> bool
-
+
EnumAllFileTypes() -> PyObject
-
+
AddFallback(FileTypeInfo ft)
-
+
-
+
Associate(FileTypeInfo ftInfo) -> FileType
-
+
Unassociate(FileType ft) -> bool
-
+
@@ -19491,18 +19756,18 @@ EVT_JOYSTICK_EVENTS = wx.PyEventBinder([ wxEVT_JOY_BUTTON_DOWN,
__init__() -> ArtProvider
-
+
_setCallbackInfo(PyObject self, PyObject _class)
-
-
+
+
-
+
ArtProvider.PushProvider(ArtProvider provider)
Add new provider to the top of providers stack.
-
+
@@ -19514,30 +19779,30 @@ EVT_JOYSTICK_EVENTS = wx.PyEventBinder([ wxEVT_JOY_BUTTON_DOWN,
Remove provider. The provider must have been added previously!
The provider is _not_ deleted.
-
+
-
+
ArtProvider.GetBitmap(String id, String client=ART_OTHER, Size size=DefaultSize) -> Bitmap
Query the providers for bitmap with given ID and return it. Return
wx.NullBitmap if no provider provides it.
-
-
-
+
+
+
-
+
ArtProvider.GetIcon(String id, String client=ART_OTHER, Size size=DefaultSize) -> Icon
Query the providers for icon with given ID and return it. Return
wx.NullIcon if no provider provides it.
-
-
-
+
+
+
-
+
Destroy()
@@ -19548,31 +19813,31 @@ wx.NullIcon if no provider provides it.
__del__()
-
+
ConfigBase.Set(ConfigBase pConfig) -> ConfigBase
-
+
-
+
ConfigBase.Get(bool createOnDemand=True) -> ConfigBase
-
+
ConfigBase.Create() -> ConfigBase
-
+
ConfigBase.DontCreateOnDemand()
-
+
SetPath(String strPath)
-
+
-
+
GetPath() -> String
@@ -19608,80 +19873,80 @@ wx.NullIcon if no provider provides it.
HasGroup(String strName) -> bool
-
+
HasEntry(String strName) -> bool
-
+
Exists(String strName) -> bool
-
+
GetEntryType(String name) -> int
-
+
-
+
Read(String key, String defaultVal=EmptyString) -> String
-
-
+
+
ReadInt(String key, long defaultVal=0) -> long
-
+
ReadFloat(String key, double defaultVal=0.0) -> double
-
+
ReadBool(String key, bool defaultVal=False) -> bool
-
+
Write(String key, String value) -> bool
-
-
+
+
WriteInt(String key, long value) -> bool
-
+
WriteFloat(String key, double value) -> bool
-
+
WriteBool(String key, bool value) -> bool
-
+
@@ -19694,28 +19959,28 @@ wx.NullIcon if no provider provides it.
RenameEntry(String oldName, String newName) -> bool
-
-
+
+
RenameGroup(String oldName, String newName) -> bool
-
-
+
+
DeleteEntry(String key, bool bDeleteGroupIfEmpty=True) -> bool
-
+
DeleteGroup(String key) -> bool
-
+
@@ -19724,13 +19989,13 @@ wx.NullIcon if no provider provides it.
IsExpandingEnvVars() -> bool
-
+
SetExpandEnvVars(bool bDoIt=True)
-
+
SetRecordDefaults(bool bDoIt=True)
@@ -19739,31 +20004,31 @@ wx.NullIcon if no provider provides it.
IsRecordingDefaults() -> bool
-
+
ExpandEnvVars(String str) -> String
-
+
-
+
GetAppName() -> String
-
+
GetVendorName() -> String
-
+
SetAppName(String appName)
-
+
-
+
SetVendorName(String vendorName)
-
+
-
+
SetStyle(long style)
@@ -19777,28 +20042,28 @@ wx.NullIcon if no provider provides it.
__init__(ConfigBase pContainer, String strEntry) -> ConfigPathChanger
-
-
+
+
__del__()
-
+
Name() -> String
-
+
__init__(String appName=EmptyString, String vendorName=EmptyString,
String localFilename=EmptyString, String globalFilename=EmptyString,
long style=0) -> Config
-
-
-
-
+
+
+
+
@@ -19807,16 +20072,16 @@ wx.NullIcon if no provider provides it.
-
+
__init__(String appName=EmptyString, String vendorName=EmptyString,
String localFilename=EmptyString, String globalFilename=EmptyString,
long style=0) -> FileConfig
-
-
-
-
+
+
+
+
@@ -19824,10 +20089,10 @@ wx.NullIcon if no provider provides it.
__del__()
-
+
ExpandEnvVars(String sz) -> String
-
+
@@ -19874,7 +20139,7 @@ wx.NullIcon if no provider provides it.
__del__()
-
+
DateTime.SetCountry(int country)
@@ -19935,26 +20200,26 @@ wx.NullIcon if no provider provides it.
-
+
DateTime.GetMonthName(int month, int flags=Name_Full) -> String
-
+
DateTime.GetWeekDayName(int weekday, int flags=Name_Full) -> String
-
+
GetAmPmStrings() -> (am, pm)
Get the AM and PM strings in the current locale (may be empty)
-
-
+
+
@@ -19964,45 +20229,45 @@ wx.NullIcon if no provider provides it.
-
+
DateTime.GetBeginDST(int year=Inv_Year, int country=Country_Default) -> DateTime
-
+
DateTime.GetEndDST(int year=Inv_Year, int country=Country_Default) -> DateTime
-
+
DateTime.Now() -> DateTime
-
+
DateTime.UNow() -> DateTime
-
+
DateTime.Today() -> DateTime
-
+
SetToCurrent() -> DateTime
-
+
SetTimeT(time_t timet) -> DateTime
-
+
SetJDN(double jdn) -> DateTime
-
+
SetHMS(int hour, int minute=0, int second=0, int millisec=0) -> DateTime
@@ -20011,7 +20276,7 @@ wx.NullIcon if no provider provides it.
-
+
Set(int day, int month=Inv_Month, int year=Inv_Year, int hour=0,
int minute=0, int second=0, int millisec=0) -> DateTime
@@ -20024,84 +20289,84 @@ wx.NullIcon if no provider provides it.
-
+
ResetTime() -> DateTime
-
+
SetYear(int year) -> DateTime
-
+
SetMonth(int month) -> DateTime
-
+
SetDay(int day) -> DateTime
-
+
SetHour(int hour) -> DateTime
-
+
SetMinute(int minute) -> DateTime
-
+
SetSecond(int second) -> DateTime
-
+
SetMillisecond(int millisecond) -> DateTime
-
+
SetToWeekDayInSameWeek(int weekday, int flags=Monday_First) -> DateTime
-
+
GetWeekDayInSameWeek(int weekday, int flags=Monday_First) -> DateTime
-
+
SetToNextWeekDay(int weekday) -> DateTime
-
+
GetNextWeekDay(int weekday) -> DateTime
-
+
SetToPrevWeekDay(int weekday) -> DateTime
-
+
GetPrevWeekDay(int weekday) -> DateTime
@@ -20124,7 +20389,7 @@ wx.NullIcon if no provider provides it.
-
+
GetLastWeekDay(int weekday, int month=Inv_Month, int year=Inv_Year) -> DateTime
@@ -20140,7 +20405,7 @@ wx.NullIcon if no provider provides it.
-
+
GetWeek(int numWeek, int weekday=Mon, int flags=Monday_First) -> DateTime
@@ -20148,27 +20413,27 @@ wx.NullIcon if no provider provides it.
-
+
SetToLastMonthDay(int month=Inv_Month, int year=Inv_Year) -> DateTime
-
+
GetLastMonthDay(int month=Inv_Month, int year=Inv_Year) -> DateTime
-
+
SetToYearDay(int yday) -> DateTime
-
+
GetYearDay(int yday) -> DateTime
@@ -20189,27 +20454,27 @@ wx.NullIcon if no provider provides it.
GetRataDie() -> double
-
+
ToTimezone(wxDateTime::TimeZone tz, bool noDST=False) -> DateTime
-
+
-
+
MakeTimezone(wxDateTime::TimeZone tz, bool noDST=False) -> DateTime
-
+
-
+
ToGMT(bool noDST=False) -> DateTime
-
+
MakeGMT(bool noDST=False) -> DateTime
@@ -20230,69 +20495,69 @@ wx.NullIcon if no provider provides it.
GetYear(wxDateTime::TimeZone tz=LOCAL_TZ) -> int
-
+
GetMonth(wxDateTime::TimeZone tz=LOCAL_TZ) -> int
-
+
GetDay(wxDateTime::TimeZone tz=LOCAL_TZ) -> int
-
+
GetWeekDay(wxDateTime::TimeZone tz=LOCAL_TZ) -> int
-
+
GetHour(wxDateTime::TimeZone tz=LOCAL_TZ) -> int
-
+
GetMinute(wxDateTime::TimeZone tz=LOCAL_TZ) -> int
-
+
GetSecond(wxDateTime::TimeZone tz=LOCAL_TZ) -> int
-
+
GetMillisecond(wxDateTime::TimeZone tz=LOCAL_TZ) -> int
-
+
GetDayOfYear(wxDateTime::TimeZone tz=LOCAL_TZ) -> int
-
+
GetWeekOfYear(int flags=Monday_First, wxDateTime::TimeZone tz=LOCAL_TZ) -> int
-
+
GetWeekOfMonth(int flags=Monday_First, wxDateTime::TimeZone tz=LOCAL_TZ) -> int
-
+
@@ -20304,223 +20569,223 @@ wx.NullIcon if no provider provides it.
IsEqualTo(DateTime datetime) -> bool
-
+
IsEarlierThan(DateTime datetime) -> bool
-
+
IsLaterThan(DateTime datetime) -> bool
-
+
IsStrictlyBetween(DateTime t1, DateTime t2) -> bool
-
-
+
+
IsBetween(DateTime t1, DateTime t2) -> bool
-
-
+
+
IsSameDate(DateTime dt) -> bool
-
+
IsSameTime(DateTime dt) -> bool
-
+
IsEqualUpTo(DateTime dt, TimeSpan ts) -> bool
-
-
+
+
-
+
AddTS(TimeSpan diff) -> DateTime
-
+
-
+
AddDS(DateSpan diff) -> DateTime
-
+
-
+
SubtractTS(TimeSpan diff) -> DateTime
-
+
-
+
SubtractDS(DateSpan diff) -> DateTime
-
+
Subtract(DateTime dt) -> TimeSpan
-
+
-
+
-
+
-
+
__iadd__(TimeSpan diff) -> DateTime
__iadd__(DateSpan diff) -> DateTime
-
+
-
+
-
+
-
+
__isub__(TimeSpan diff) -> DateTime
__isub__(DateSpan diff) -> DateTime
-
+
-
+
-
+
-
+
__add__(TimeSpan other) -> DateTime
__add__(DateSpan other) -> DateTime
-
+
-
+
-
+
-
+
-
+
__sub__(DateTime other) -> TimeSpan
__sub__(TimeSpan other) -> DateTime
__sub__(DateSpan other) -> DateTime
-
+
__lt__(DateTime other) -> bool
-
+
__le__(DateTime other) -> bool
-
+
__gt__(DateTime other) -> bool
-
+
__ge__(DateTime other) -> bool
-
+
__eq__(DateTime other) -> bool
-
+
__ne__(DateTime other) -> bool
-
+
ParseRfc822Date(String date) -> int
-
+
ParseFormat(String date, String format=DateFormatStr, DateTime dateDef=wxDefaultDateTime) -> int
-
-
-
+
+
+
ParseDateTime(String datetime) -> int
-
+
ParseDate(String date) -> int
-
+
ParseTime(String time) -> int
-
+
-
+
Format(String format=DateFormatStr, wxDateTime::TimeZone tz=LOCAL_TZ) -> String
-
-
+
+
-
+
FormatDate() -> String
-
+
FormatTime() -> String
-
+
FormatISODate() -> String
-
+
FormatISOTime() -> String
@@ -20537,115 +20802,115 @@ __sub__(DateSpan other) -> DateTime
__del__()
-
+
TimeSpan.Seconds(long sec) -> TimeSpan
-
+
TimeSpan.Second() -> TimeSpan
-
+
TimeSpan.Minutes(long min) -> TimeSpan
-
+
TimeSpan.Minute() -> TimeSpan
-
+
TimeSpan.Hours(long hours) -> TimeSpan
-
+
TimeSpan.Hour() -> TimeSpan
-
+
TimeSpan.Days(long days) -> TimeSpan
-
+
TimeSpan.Day() -> TimeSpan
-
+
TimeSpan.Weeks(long days) -> TimeSpan
-
+
TimeSpan.Week() -> TimeSpan
-
+
Add(TimeSpan diff) -> TimeSpan
-
+
-
+
Subtract(TimeSpan diff) -> TimeSpan
-
+
-
+
Multiply(int n) -> TimeSpan
-
+
Neg() -> TimeSpan
-
+
Abs() -> TimeSpan
-
+
__iadd__(TimeSpan diff) -> TimeSpan
-
+
-
+
__isub__(TimeSpan diff) -> TimeSpan
-
+
-
+
__imul__(int n) -> TimeSpan
-
+
__neg__() -> TimeSpan
-
+
__add__(TimeSpan other) -> TimeSpan
-
+
-
+
__sub__(TimeSpan other) -> TimeSpan
-
+
-
+
__mul__(int n) -> TimeSpan
-
+
__rmul__(int n) -> TimeSpan
@@ -20654,37 +20919,37 @@ __sub__(DateSpan other) -> DateTime
__lt__(TimeSpan other) -> bool
-
+
__le__(TimeSpan other) -> bool
-
+
__gt__(TimeSpan other) -> bool
-
+
__ge__(TimeSpan other) -> bool
-
+
__eq__(TimeSpan other) -> bool
-
+
__ne__(TimeSpan other) -> bool
-
+
@@ -20699,19 +20964,19 @@ __sub__(DateSpan other) -> DateTime
IsEqualTo(TimeSpan ts) -> bool
-
+
IsLongerThan(TimeSpan ts) -> bool
-
+
IsShorterThan(TimeSpan t) -> bool
-
+
@@ -20732,10 +20997,10 @@ __sub__(DateSpan other) -> DateTime
GetMilliseconds() -> wxLongLong
-
+
Format(String format=TimeSpanFormatStr) -> String
-
+
@@ -20752,61 +21017,61 @@ __sub__(DateSpan other) -> DateTime
__del__()
-
+
DateSpan.Days(int days) -> DateSpan
-
+
DateSpan.Day() -> DateSpan
-
+
DateSpan.Weeks(int weeks) -> DateSpan
-
+
DateSpan.Week() -> DateSpan
-
+
DateSpan.Months(int mon) -> DateSpan
-
+
DateSpan.Month() -> DateSpan
-
+
DateSpan.Years(int years) -> DateSpan
-
+
DateSpan.Year() -> DateSpan
-
+
SetYears(int n) -> DateSpan
-
+
SetMonths(int n) -> DateSpan
-
+
SetWeeks(int n) -> DateSpan
-
+
SetDays(int n) -> DateSpan
@@ -20827,67 +21092,67 @@ __sub__(DateSpan other) -> DateTime
GetTotalDays() -> int
-
+
Add(DateSpan other) -> DateSpan
-
+
-
+
Subtract(DateSpan other) -> DateSpan
-
+
-
+
Neg() -> DateSpan
-
+
Multiply(int factor) -> DateSpan
-
+
__iadd__(DateSpan other) -> DateSpan
-
+
-
+
__isub__(DateSpan other) -> DateSpan
-
+
-
+
__neg__() -> DateSpan
-
+
__imul__(int factor) -> DateSpan
-
+
__add__(DateSpan other) -> DateSpan
-
+
-
+
__sub__(DateSpan other) -> DateSpan
-
+
-
+
__mul__(int n) -> DateSpan
-
+
__rmul__(int n) -> DateSpan
@@ -20896,13 +21161,13 @@ __sub__(DateSpan other) -> DateTime
__eq__(DateSpan other) -> bool
-
+
__ne__(DateSpan other) -> bool
-
+
@@ -20931,7 +21196,7 @@ __sub__(DateSpan other) -> DateTime
CustomDataFormat(String format) -> DataFormat
-
+
@@ -20951,17 +21216,17 @@ __sub__(DateSpan other) -> DateTime
__eq__(int format) -> bool
__eq__(DataFormat format) -> bool
-
+
__ne__(int format) -> bool
__ne__(DataFormat format) -> bool
-
+
-
+
SetType(int format)
@@ -20970,13 +21235,13 @@ __ne__(DataFormat format) -> bool
GetType() -> int
-
+
GetId() -> String
-
+
SetId(String format)
-
+
@@ -20984,7 +21249,7 @@ __ne__(DataFormat format) -> bool
__del__()
-
+
GetPreferredFormat(int dir=Get) -> DataFormat
@@ -20999,184 +21264,184 @@ __ne__(DataFormat format) -> bool
IsSupported(DataFormat format, int dir=Get) -> bool
-
+
GetDataSize(DataFormat format) -> size_t
-
+
-
+
GetAllFormats(DataFormat formats, int dir=Get)
-
+
GetDataHere(DataFormat format, void buf) -> bool
-
-
+
+
SetData(DataFormat format, size_t len, void buf) -> bool
-
+
-
+
-
+
__init__(DataFormat format=FormatInvalid) -> DataObjectSimple
-