aboutsummaryrefslogtreecommitdiff
path: root/src/indicator.h
diff options
context:
space:
mode:
authorCharles Kerr <charles.kerr@canonical.com>2014-08-20 22:35:16 -0500
committerCharles Kerr <charles.kerr@canonical.com>2014-08-20 22:35:16 -0500
commit1b90575c67de3cf6459785cc18e3d661a826bece (patch)
tree6ea2f73a4556c89b8dffd761e53a5e0892d08dac /src/indicator.h
parentec2c7ec58b192e0b907239ad1ff840fe69b4da56 (diff)
downloadayatana-indicator-display-1b90575c67de3cf6459785cc18e3d661a826bece.tar.gz
ayatana-indicator-display-1b90575c67de3cf6459785cc18e3d661a826bece.tar.bz2
ayatana-indicator-display-1b90575c67de3cf6459785cc18e3d661a826bece.zip
add rotation lock indicator
Diffstat (limited to 'src/indicator.h')
-rw-r--r--src/indicator.h88
1 files changed, 88 insertions, 0 deletions
diff --git a/src/indicator.h b/src/indicator.h
new file mode 100644
index 0000000..dc4df09
--- /dev/null
+++ b/src/indicator.h
@@ -0,0 +1,88 @@
+/*
+ * Copyright 2014 Canonical Ltd.
+ *
+ * This program is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 3, as published
+ * by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranties of
+ * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
+ * PURPOSE. See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Authors:
+ * Charles Kerr <charles.kerr@canonical.com>
+ */
+
+#ifndef INDICATOR_DISPLAY_INDICATOR_H
+#define INDICATOR_DISPLAY_INDICATOR_H
+
+#include <core/property.h>
+
+#include <gio/gio.h> // GIcon
+
+#include <string>
+#include <vector>
+
+struct Header
+{
+ bool is_visible = false;
+ std::string title;
+ std::string label;
+ std::string a11y;
+ std::shared_ptr<GIcon> icon;
+
+ bool operator== (const Header& that) const {
+ return (is_visible == that.is_visible) &&
+ (title == that.title) &&
+ (label == that.label) &&
+ (a11y == that.a11y) &&
+ (icon == that.icon);
+ }
+ bool operator!= (const Header& that) const { return !(*this == that);}
+};
+
+
+class Profile
+{
+public:
+ virtual std::string name() const =0;
+ virtual const core::Property<Header>& header() const =0;
+ virtual std::shared_ptr<GMenuModel> menu_model() const =0;
+
+protected:
+ Profile() =default;
+};
+
+
+class SimpleProfile: public Profile
+{
+public:
+ SimpleProfile(const char* name, const std::shared_ptr<GMenuModel>& menu): m_name(name), m_menu(menu) {}
+
+ std::string name() const {return m_name;}
+ core::Property<Header>& header() {return m_header;}
+ const core::Property<Header>& header() const {return m_header;}
+ std::shared_ptr<GMenuModel> menu_model() const {return m_menu;}
+
+protected:
+ const std::string m_name;
+ core::Property<Header> m_header;
+ std::shared_ptr<GMenuModel> m_menu;
+};
+
+
+class Indicator
+{
+public:
+ virtual ~Indicator() =default;
+
+ virtual const char* name() const =0;
+ virtual GSimpleActionGroup* action_group() const =0;
+ virtual std::vector<std::shared_ptr<Profile>> profiles() const =0;
+};
+
+#endif