Implements Label list item.
You can find more information in comments below. Overrided methods can be found in corresponding base classes and interfaces.
class CListItemLabel :public virtual IListItemLabel, public CListItem
{
public:
enum STATE // Possible states
{
stNormal,
stHovered,
stSelected,
stSelectedHovered,
stActive,
stActiveHovered,
stActiveSelected,
stActiveSelectedHovered,
stDisabled
};
public:
void(*OnClick)(IListItem *sender); // Event called when clicked
CListItemLabel();
CListItemLabel(const String &caption);
~CListItemLabel() override;
IListItemService *QueryService() override;
String getCaption() override;
bool setCaption(const String &value) override;
IListItem *Clone() override;
bool Copy(IListItem *dest) override;
STATE getState(); // Return current state
// Return layout properties
TEXT_ALIGN getAlign();
RectF getPadding() 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;
RectC 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;
// Set layout properties
bool setAlign(const TEXT_ALIGN value);
bool setPadding(const RectF &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 RectC &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);
};
Namespace: | nitisa::standard |
Include: | Standard/ListItems/Label/ListItemLabel.h |