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.

ConstantValueDescription
GridCheckBox::StyledAppearance0To 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::CheckBoxAppearance1A checkbox looks like an ordinary QCheckBox.
GridCheckBox::RadioButtonAppearance2A checkbox looks like an ordinary QRadioButton.