A simple class which holds information about UltimateListItem
visual
attributes for the header/footer items (client rectangles, positions, etc...).
__init__ |
Default class constructor. |
Check |
Checks/unchecks a header item. |
CheckFooter |
Checks/unchecks a footer item. |
GetCustomRenderer |
Returns the custom renderer associated with this item (if any). |
GetFont |
Returns the header/footer item font. |
GetFooterFormat |
Returns the footer item format. |
GetFooterImage |
Returns a Python list with the zero-based indexes of the images associated |
GetFooterKind |
Returns the footer item kind. |
GetFormat |
Returns the header item format. |
GetImage |
Returns a Python list with the zero-based indexes of the images associated |
GetItem |
Returns information about the item. |
GetKind |
Returns the header item kind. |
GetState |
Returns a bit field representing the state of the item. |
GetText |
Returns the header/footer item text. |
GetToolTip |
Returns the header/footer item tooltip. |
GetWidth |
Returns the header/footer item width, in pixels. |
HasFooterImage |
Returns True if the footer item has at least one image associated |
HasImage |
Returns True if the header item has at least one image associated |
HasText |
Returns True if the currently set text colour is valid. |
Init |
Initializes the header/footer item. |
IsChecked |
Returns whether the header item is checked or not. |
IsFooterChecked |
Returns whether the footer item is checked or not. |
IsHit |
Returns True if the input position is inside the item client rectangle. |
SetCustomRenderer |
Associate a custom renderer to this item. |
SetFont |
Sets a new font for the header item. |
SetFooterFont |
Sets a new font for the footer item. |
SetFooterFormat |
Sets the footer item format. |
SetFooterKind |
Sets the footer item kind. |
SetFormat |
Sets the header item format. |
SetHeight |
Sets the header/footer item height, in pixels. |
SetItem |
Sets information about the header/footer item. |
SetKind |
Sets the header item kind. |
SetPosition |
Sets the header/footer item position. |
SetState |
Sets the item state flags. |
SetText |
Sets the header/footer item text. |
SetToolTip |
Sets the header/footer item tooltip. |
SetWidth |
Sets the header/footer item width, in pixels. |
UltimateListHeaderData
(object)¶A simple class which holds information about UltimateListItem
visual
attributes for the header/footer items (client rectangles, positions, etc...).
__init__
(self, item=None)¶Default class constructor.
Parameters: | item – another instance of UltimateListHeaderData . |
---|
Check
(self, checked=True)¶Checks/unchecks a header item.
Parameters: | checked – True to check an item, False to uncheck it. |
---|
Note
This method is meaningful only for check and radio header items.
Checks/unchecks a footer item.
Parameters: | checked – True to check an item, False to uncheck it. |
---|
Note
This method is meaningful only for check and radio footer items.
GetCustomRenderer
(self)¶Returns the custom renderer associated with this item (if any).
GetFont
(self)¶Returns the header/footer item font.
Returns the footer item format.
Returns a Python list with the zero-based indexes of the images associated with the footer item into the image list.
Returns the footer item kind.
See also
SetKind
for a list of valid item kinds.
GetFormat
(self)¶Returns the header item format.
GetImage
(self)¶Returns a Python list with the zero-based indexes of the images associated with the header item into the image list.
GetItem
(self, item)¶Returns information about the item.
Parameters: | item – an instance of UltimateListHeaderData . |
---|
GetState
(self)¶Returns a bit field representing the state of the item.
See also
SetState
for a list of valid item states.
GetText
(self)¶Returns the header/footer item text.
GetToolTip
(self)¶Returns the header/footer item tooltip.
GetWidth
(self)¶Returns the header/footer item width, in pixels.
Returns True
if the footer item has at least one image associated
with it.
HasImage
(self)¶Returns True
if the header item has at least one image associated
with it.
HasText
(self)¶Returns True
if the currently set text colour is valid.
Init
(self)¶Initializes the header/footer item.
IsChecked
(self)¶Returns whether the header item is checked or not.
Returns whether the footer item is checked or not.
IsHit
(self, x, y)¶Returns True
if the input position is inside the item client rectangle.
Parameters: |
|
---|
SetCustomRenderer
(self, renderer)¶Associate a custom renderer to this item.
Parameters: | renderer – a class able to correctly render the item. |
---|
Note
the renderer class must implement the methods DrawHeaderButton and GetForegroundColor.
Sets a new font for the footer item.
Parameters: | font – an instance of wx.Font . |
---|
Sets the footer item format.
Parameters: | format – the footer item format. |
---|
Sets the footer item kind.
Parameters: | kind – the footer item kind. |
---|
See also
SetKind
for a list of valid item kinds.
SetFormat
(self, format)¶Sets the header item format.
Parameters: | format – the header item format. |
---|
SetHeight
(self, h)¶Sets the header/footer item height, in pixels.
Parameters: | h – an integer value representing the header/footer height. |
---|
SetItem
(self, item)¶Sets information about the header/footer item.
Parameters: | info – an instance of UltimateListHeaderData . |
---|
SetKind
(self, kind)¶Sets the header item kind.
Parameters: | kind – may be one of the following integers:
|
---|
SetPosition
(self, x, y)¶Sets the header/footer item position.
Parameters: |
|
---|
SetState
(self, flag)¶Sets the item state flags.
Parameters: | state – any combination of the following bits:
|
---|
SetText
(self, text)¶Sets the header/footer item text.
Parameters: | text – the new header/footer text. |
---|
SetToolTip
(self, tip)¶Sets the header/footer item tooltip.
Parameters: | tip – the new header/footer tooltip. |
---|
SetWidth
(self, w)¶Sets the header/footer item width, in pixels.
Parameters: | w – an integer value representing the header/footer width. |
---|