GridCheckBox Class
Class implements check box widget that used in the grid cell's. More...
Header: | #include <GridCheckBox> |
Inherits: | QCheckBox |
Public Types
enum | Appearance { StyledAppearance, CheckBoxAppearance, RadioButtonAppearance } |
Detailed Description
Member Type Documentation
enum GridCheckBox::Appearance
The enumerator defines the various modes of visual display of check boxes.
Constant | Value | Description |
GridCheckBox::StyledAppearance | 0 | To display the checkboxes grid uses icons from GridThemeManager. In this mode, you can override the icons for display via CSS using the rule:GridBase {
qproperty-checkBoxOnIcon: url (:/res/checkbox-on.png);
qproperty-checkBoxOffIcon: url (:/res/checkbox-off.png);
}
|
GridCheckBox::CheckBoxAppearance | 1 | A checkbox looks like an ordinary QCheckBox. |
GridCheckBox::RadioButtonAppearance | 2 | A checkbox looks like an ordinary QRadioButton. |