Unity 8
actionrootstate.h
1 /*
2  * Copyright 2014 Canonical Ltd.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU Lesser General Public License as published by
6  * the Free Software Foundation; version 3.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU Lesser General Public License for more details.
12  *
13  * You should have received a copy of the GNU Lesser General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #ifndef ACTIONROOTSTATE_H
18 #define ACTIONROOTSTATE_H
19 
20 #include "unityindicatorsglobal.h"
21 
22 #include "rootstateparser.h"
23 
24 class QDBusActionGroup;
25 
26 class UNITYINDICATORS_EXPORT ActionRootState : public RootStateObject
27 {
28  Q_OBJECT
29  Q_PROPERTY(QDBusActionGroup* actionGroup READ actionGroup WRITE setActionGroup NOTIFY actionGroupChanged)
30  Q_PROPERTY(QString actionName READ actionName WRITE setActionName NOTIFY actionNameChanged)
31 
32 public:
33  ActionRootState(QObject *parent = 0);
34 
35  QDBusActionGroup *actionGroup() const;
36  void setActionGroup(QDBusActionGroup *actionGroup);
37 
38  QString actionName() const;
39  void setActionName(const QString& actionName);
40 
41  bool valid() const override;
42 
43 Q_SIGNALS:
44  void actionGroupChanged();
45  void actionNameChanged();
46 
47 private Q_SLOTS:
48  void updateActionState();
49 
50 private:
51  QDBusActionGroup* m_actionGroup;
52  QString m_actionName;
53 };
54 
55 #endif // ACTIONROOTSTATE_H