17 #ifndef ROOTSTATEPARSER_H
18 #define ROOTSTATEPARSER_H
20 #include "unityindicatorsglobal.h"
22 #include <actionstateparser.h>
24 class UNITYINDICATORS_EXPORT RootStateParser :
public ActionStateParser
27 RootStateParser(QObject* parent =
nullptr);
28 virtual QVariant toQVariant(GVariant* state)
const override;
31 class UNITYINDICATORS_EXPORT RootStateObject :
public QObject
35 Q_PROPERTY(
bool valid READ valid NOTIFY validChanged)
36 Q_PROPERTY(QString title READ title NOTIFY titleChanged)
37 Q_PROPERTY(QString leftLabel READ leftLabel NOTIFY leftLabelChanged)
38 Q_PROPERTY(QString rightLabel READ rightLabel NOTIFY rightLabelChanged)
39 Q_PROPERTY(QStringList icons READ icons NOTIFY iconsChanged)
40 Q_PROPERTY(QString accessibleName READ accessibleName NOTIFY accessibleNameChanged)
41 Q_PROPERTY(
bool indicatorVisible READ indicatorVisible NOTIFY indicatorVisibleChanged)
43 RootStateObject(QObject* parent = 0);
45 virtual bool valid()
const = 0;
47 QString title()
const;
48 QString leftLabel()
const;
49 QString rightLabel()
const;
50 QStringList icons()
const;
51 QString accessibleName()
const;
52 bool indicatorVisible()
const;
54 QVariantMap currentState()
const {
return m_currentState; }
55 void setCurrentState(
const QVariantMap& currentState);
62 void leftLabelChanged();
63 void rightLabelChanged();
65 void accessibleNameChanged();
66 void indicatorVisibleChanged();
69 RootStateParser m_parser;
70 QVariantMap m_currentState;
73 #endif // ROOTSTATEPARSER_H