Implements StatusPanelLabel list item.
You can find more information in comments below. Overrided methods can be found in corresponding base classes and interfaces.
class CListItemStatusPanelLabel :public virtual IListItemStatusPanelLabel, public CListItemStatusPanel
{
public:
enum STATE // Possible states
{
stNormal,
stHovered,
stDisabled
};
public:
String getCaption() override;
bool setCaption(const String &value) override;
IListItemService *QueryService() override;
bool setVisible(const bool value) override;
bool setSelected(const bool value) override;
bool setActive(const bool value) override;
bool AddItem(IListItem *item) override;
bool InsertItem(IListItem *item, const int before) override;
IListItem *Clone() override;
bool Copy(IListItem *dest) override;
CListItemStatusPanelLabel();
CListItemStatusPanelLabel(const String &caption);
~CListItemStatusPanelLabel() override;
STATE getState(); // Return current state
// Return layout properties
TEXT_ALIGN getAlign() const;
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/StatusPanelLabel/ListItemStatusPanelLabel.h |