Implements CheckBox list item.
You can find more information in comments below. Overrided methods can be found in corresponding base classes and interfaces.
class CListItemCheckBox :public virtual IListItemCheckBox, public CListItem
{
public:
enum class State // Possible states
{
Normal,
Hovered,
Selected,
SelectedHovered,
Active,
ActiveHovered,
ActiveSelected,
ActiveSelectedHovered,
Disabled
};
public:
void(*OnChange)(IListItemCheckBox *sender); // Event called when checkbox checked state changed
bool AddItem(IListItem *item) override;
bool InsertItem(IListItem *item, const int before) override;
IListItemService *QueryService() override;
String getCaption() override;
bool isChecked() override;
bool setCaption(const String &value) override;
bool setChecked(const bool value) override;
IListItem *Clone() override;
bool Copy(IListItem *dest) override;
CListItemCheckBox();
CListItemCheckBox(const String &caption);
~CListItemCheckBox() override;
State getState(); // Return current state
// Return layout properties
TextAlign getAlign();
RectF getPadding() const;
bool isTextAtRight() const;
Color getColor(const State state) const;
Color getShadowColor(const State state) const;
int getShadowRadius(const State state) const;
PointF getShadowShift(const State state) const;
Color getBackgroundColor(const State state) const;
Gradient *getBackgroundGradient(const State state);
RectF getBorderWidth(const State state) const;
RectF getBorderRadius(const State state) const;
BorderColor getBorderColor(const State state) const;
Color getLeftBorderColor(const State state) const;
Color getTopBorderColor(const State state) const;
Color getRightBorderColor(const State state) const;
Color getBottomBorderColor(const State state) const;
RectF getImagePadding(const State state) const;
// Set layout properties
bool setAlign(const TextAlign value);
bool setPadding(const RectF &value);
bool setTextAtRight(const bool value);
bool setColor(const State state, const Color &value);
bool setShadowColor(const State state, const Color &value);
bool setShadowRadius(const State state, const int value);
bool setShadowShift(const State state, const PointF &value);
bool setBackgroundColor(const State state, const Color &value);
bool setBorderWidth(const State state, const RectF &value);
bool setBorderRadius(const State state, const RectF &value);
bool setBorderColor(const State state, const BorderColor &value);
bool setLeftBorderColor(const State state, const Color &value);
bool setTopBorderColor(const State state, const Color &value);
bool setRightBorderColor(const State state, const Color &value);
bool setBottomBorderColor(const State state, const Color &value);
bool setImagePadding(const State state, const RectF &value);
};
Namespace: | nitisa::standard |
Include: | Standard/ListItems/CheckBox/ListItemCheckBox.h |