Class used to store information (width, alignment flags, colours, etc...) about a
HyperTreeList
column header.
__init__ |
Default class constructor. |
GetAlignment |
Returns the column text alignment. |
GetColour |
Returns the column text colour. |
GetFont |
Returns the column text font. |
GetImage |
Returns the column image index. |
GetSelectedImage |
Returns the column image index in the selected state. |
GetText |
Returns the column header label. |
GetWidth |
Returns the column header width in pixels. |
IsEditable |
Returns True if the column is editable, False otherwise. |
IsShown |
Returns True if the column is shown, False if it is hidden. |
SetAlignment |
Sets the column text alignment. |
SetColour |
Sets the column text colour. |
SetEditable |
Sets the column as editable or non-editable. |
SetFont |
Sets the column text font. |
SetImage |
Sets the column image index. |
SetSelectedImage |
Sets the column image index in the selected state. |
SetShown |
Sets the column as shown or hidden. |
SetText |
Sets the column header label. |
SetWidth |
Sets the column header width. |
TreeListColumnInfo
(object)¶Class used to store information (width, alignment flags, colours, etc...) about a
HyperTreeList
column header.
__init__
(self, input="", width=_DEFAULT_COL_WIDTH, flag=wx.ALIGN_LEFT, image=-1, shown=True, colour=None, edit=False)¶Default class constructor.
Parameters: |
|
---|
GetAlignment
(self)¶Returns the column text alignment.
GetColour
(self)¶Returns the column text colour.
GetFont
(self)¶Returns the column text font.
GetImage
(self)¶Returns the column image index.
GetSelectedImage
(self)¶Returns the column image index in the selected state.
GetText
(self)¶Returns the column header label.
GetWidth
(self)¶Returns the column header width in pixels.
IsEditable
(self)¶Returns True
if the column is editable, False
otherwise.
IsShown
(self)¶Returns True
if the column is shown, False
if it is hidden.
SetAlignment
(self, flag)¶Sets the column text alignment.
Parameters: | flag – the alignment flag, one of wx.ALIGN_LEFT , wx.ALIGN_RIGHT ,
wx.ALIGN_CENTER . |
---|
SetEditable
(self, edit)¶Sets the column as editable or non-editable.
Parameters: | edit – True if the column should be editable, False otherwise. |
---|
SetImage
(self, image)¶Sets the column image index.
Parameters: | image – an index within the normal image list assigned to
HyperTreeList specifying the image to use for the column. |
---|
SetSelectedImage
(self, image)¶Sets the column image index in the selected state.
Parameters: | image – an index within the normal image list assigned to
HyperTreeList specifying the image to use for the column when in
selected state. |
---|
SetShown
(self, shown)¶Sets the column as shown or hidden.
Parameters: | shown – True if the column should be shown, False if it
should be hidden. |
---|
SetText
(self, text)¶Sets the column header label.
Parameters: | text – the new column header text. |
---|
SetWidth
(self, width)¶Sets the column header width.
Parameters: | width – the column header width, in pixels. |
---|