View Source wxGridCellAttr (wx v2.4.3)
This class can be used to alter the cells' appearance in the grid by changing their attributes from the defaults.
An object of this class may be returned by wxGridTableBase::GetAttr()
(not implemented
in wx).
Note that objects of this class are reference-counted and it's recommended to use wxGridCellAttrPtr smart pointer class when working with them to avoid memory leaks.
wxWidgets docs: wxGridCellAttr
Summary
Functions
Get the alignment to use for the cell with the given attribute.
Returns the background colour.
Returns the cell editor.
Returns the font.
Returns the cell renderer.
Returns the text colour.
Returns true if this attribute has a valid alignment set.
Returns true if this attribute has a valid background colour set.
Returns true if this attribute has a valid cell editor set.
Returns true if this attribute has a valid font set.
Returns true if this attribute has a valid cell renderer set.
Returns true if this attribute has a valid text colour set.
Returns true if this cell is set as read-only.
Sets the alignment.
Sets the background colour.
Sets the editor to be used with the cells with this attribute.
Sets the font.
Equivalent to setReadOnly(This, [])
.
Sets the cell as read-only.
Sets the renderer to be used for cells with this attribute.
Sets the text colour.
Types
-type wxGridCellAttr() :: wx:wx_object().
Functions
-spec getAlignment(This) -> {HAlign :: integer(), VAlign :: integer()} when This :: wxGridCellAttr().
Get the alignment to use for the cell with the given attribute.
If this attribute doesn't specify any alignment, the default attribute alignment is used
(which can be changed using wxGrid:setDefaultCellAlignment/3
but is left and top by default).
Notice that hAlign
and vAlign
values are always overwritten by this function, use GetNonDefaultAlignment()
(not implemented in wx) if this is not desirable.
-spec getBackgroundColour(This) -> wx:wx_colour4() when This :: wxGridCellAttr().
Returns the background colour.
-spec getEditor(This, Grid, Row, Col) -> wxGridCellEditor:wxGridCellEditor() when This :: wxGridCellAttr(), Grid :: wxGrid:wxGrid(), Row :: integer(), Col :: integer().
Returns the cell editor.
The caller is responsible for calling DecRef()
(not implemented in wx) on the returned
pointer, use GetEditorPtr()
(not implemented in wx) to do it automatically.
-spec getFont(This) -> wxFont:wxFont() when This :: wxGridCellAttr().
Returns the font.
-spec getRenderer(This, Grid, Row, Col) -> wxGridCellRenderer:wxGridCellRenderer() when This :: wxGridCellAttr(), Grid :: wxGrid:wxGrid(), Row :: integer(), Col :: integer().
Returns the cell renderer.
The caller is responsible for calling DecRef()
(not implemented in wx) on the returned
pointer, use GetRendererPtr()
(not implemented in wx) to do it automatically.
-spec getTextColour(This) -> wx:wx_colour4() when This :: wxGridCellAttr().
Returns the text colour.
-spec hasAlignment(This) -> boolean() when This :: wxGridCellAttr().
Returns true if this attribute has a valid alignment set.
-spec hasBackgroundColour(This) -> boolean() when This :: wxGridCellAttr().
Returns true if this attribute has a valid background colour set.
-spec hasEditor(This) -> boolean() when This :: wxGridCellAttr().
Returns true if this attribute has a valid cell editor set.
-spec hasFont(This) -> boolean() when This :: wxGridCellAttr().
Returns true if this attribute has a valid font set.
-spec hasRenderer(This) -> boolean() when This :: wxGridCellAttr().
Returns true if this attribute has a valid cell renderer set.
-spec hasTextColour(This) -> boolean() when This :: wxGridCellAttr().
Returns true if this attribute has a valid text colour set.
-spec isReadOnly(This) -> boolean() when This :: wxGridCellAttr().
Returns true if this cell is set as read-only.
-spec setAlignment(This, HAlign, VAlign) -> ok when This :: wxGridCellAttr(), HAlign :: integer(), VAlign :: integer().
Sets the alignment.
hAlign
can be one of wxALIGN_LEFT
, wxALIGN_CENTRE
or wxALIGN_RIGHT
and vAlign
can be one of wxALIGN_TOP
, wxALIGN_CENTRE
or wxALIGN_BOTTOM
.
-spec setBackgroundColour(This, ColBack) -> ok when This :: wxGridCellAttr(), ColBack :: wx:wx_colour().
Sets the background colour.
-spec setDefAttr(This, DefAttr) -> ok when This :: wxGridCellAttr(), DefAttr :: wxGridCellAttr().
-spec setEditor(This, Editor) -> ok when This :: wxGridCellAttr(), Editor :: wxGridCellEditor:wxGridCellEditor().
Sets the editor to be used with the cells with this attribute.
-spec setFont(This, Font) -> ok when This :: wxGridCellAttr(), Font :: wxFont:wxFont().
Sets the font.
-spec setReadOnly(This) -> ok when This :: wxGridCellAttr().
Equivalent to setReadOnly(This, [])
.
-spec setReadOnly(This, [Option]) -> ok when This :: wxGridCellAttr(), Option :: {isReadOnly, boolean()}.
Sets the cell as read-only.
-spec setRenderer(This, Renderer) -> ok when This :: wxGridCellAttr(), Renderer :: wxGridCellRenderer:wxGridCellRenderer().
Sets the renderer to be used for cells with this attribute.
Takes ownership of the pointer.
-spec setTextColour(This, ColText) -> ok when This :: wxGridCellAttr(), ColText :: wx:wx_colour().
Sets the text colour.