The ShapeRegion
class.
__init__ |
Default class constructor |
ClearText |
Clear the text. |
GetActualColourObject |
Get the actual colour object from the wx.ColourDatabase . |
GetActualPen |
Get actual pen. |
GetColour |
Get the colour. |
GetFont |
Get the font. |
GetFormatMode |
Get the format mode. |
GetFormattedText |
Get the formatted text. |
GetHeight |
Get the height. |
GetMinSize |
Get the minimum size. |
GetName |
Get the name. |
GetPenColour |
Get the pen colour |
GetPenStyle |
Get the pen style. |
GetPosition |
Get the position. |
GetProportion |
Get the proportion. |
GetSize |
Get the size. |
GetText |
Get the text. |
GetWidth |
Get the width. |
SetColour |
Set the colour. |
SetFont |
Set the font. |
SetFormatMode |
Set the format mode of the region. |
SetMinSize |
Set the minumum size. |
SetName |
Set the name. |
SetPenColour |
Set the pen colour. |
SetPenStyle |
Set the pen style. |
SetPosition |
Set the position. |
SetProportions |
Set the proportions. |
SetSize |
Set the size. |
SetText |
Set the text. |
ShapeRegion
(object)¶The ShapeRegion
class.
__init__
(self, region = None)¶Default class constructor
Parameters: | region – a parent region or None??? |
---|
ClearText
(self)¶Clear the text.
GetActualColourObject
(self)¶Get the actual colour object from the wx.ColourDatabase
.
GetActualPen
(self)¶Get actual pen.
Note
Returns NULL if the pen is invisible (different to pen being transparent; indicates that region boundary should not be drawn.)
GetColour
(self)¶Get the colour.
GetFont
(self)¶Get the font.
GetFormatMode
(self)¶Get the format mode.
GetFormattedText
(self)¶Get the formatted text.
GetHeight
(self)¶Get the height.
GetMinSize
(self)¶Get the minimum size.
GetName
(self)¶Get the name.
GetPenColour
(self)¶Get the pen colour
GetPenStyle
(self)¶Get the pen style.
GetPosition
(self)¶Get the position.
GetProportion
(self)¶Get the proportion.
GetSize
(self)¶Get the size.
GetText
(self)¶Get the text.
GetWidth
(self)¶Get the width.
SetColour
(self, col)¶Set the colour.
Parameters: | col (str) – a valid colour name,
see wx.ColourDatabase |
---|
SetFormatMode
(self, mode)¶Set the format mode of the region.
Parameters: | mode – can be a bit list of the following |
---|
Format mode | Description |
---|---|
FORMAT_NONE |
No formatting |
FORMAT_CENTRE_HORIZ |
Horizontal centring |
FORMAT_CENTRE_VERT |
Vertical centring |
SetMinSize
(self, w, h)¶Set the minumum size.
Parameters: | w – the minimum width |
---|---|
Param hh: | the minimum height |
SetName
(self, s)¶Set the name.
Parameters: | s (str) – the name |
---|
SetPenColour
(self, col)¶Set the pen colour.
Parameters: | col (str) – a valid colour name,
see wx.ColourDatabase |
---|
SetPosition
(self, xp, yp)¶Set the position.
Parameters: | xp – the x position |
---|---|
Param ypyp: | the y position |
SetProportions
(self, xp, yp)¶Set the proportions.
Parameters: | xp – the x region proportion |
---|---|
Param ypyp: | the y region proportion |
SetSize
(self, w, h)¶Set the size.
Parameters: | w – the width |
---|---|
Param hh: | the jeight |
SetText
(self, s)¶Set the text.
Parameters: | s (str) – the text |
---|