Unity 8
 All Classes Functions Properties
bottombarvisibilitycommunicatorshell.h
1 /*
2  * Copyright (C) 2012 Canonical, Ltd.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU 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 General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #ifndef BOTTOMBARVISIBILITYCOMMUNICATORSHELL_H
18 #define BOTTOMBARVISIBILITYCOMMUNICATORSHELL_H
19 
20 #include <QObject>
21 
22 class QDBusInterface;
23 
30 {
31  Q_OBJECT
32  Q_PROPERTY(bool forceHidden READ forceHidden WRITE setForceHidden NOTIFY forceHiddenChanged)
33  Q_PROPERTY(double position READ position WRITE setPosition NOTIFY positionChanged)
34 
35  Q_CLASSINFO("D-Bus Interface", "com.canonical.Shell.BottomBarVisibilityCommunicator")
36 public:
37  static BottomBarVisibilityCommunicatorShell& instance() {
39  return instance;
40  }
41 
42  bool forceHidden() const;
43  void setForceHidden(bool forceHidden);
44 
45  double position() const;
46  void setPosition(double position);
47 
48 Q_SIGNALS:
49  void forceHiddenChanged(bool forceHidden);
50  void positionChanged(double position);
51 
52 private:
54 
55  bool m_forceHidden;
56  double m_position;
57 };
58 
59 #endif