summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Slimber/CLI/DummyMenulet.h')
-rw-r--r--Slimber/CLI/DummyMenulet.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/Slimber/CLI/DummyMenulet.h b/Slimber/CLI/DummyMenulet.h
new file mode 100644
index 0000000..e0bcb2f
--- /dev/null
+++ b/Slimber/CLI/DummyMenulet.h
@@ -0,0 +1,36 @@
+/*
+ * Copyright (c) 2010 Remko Tronçon
+ * Licensed under the GNU General Public License v3.
+ * See Documentation/Licenses/GPLv3.txt for more information.
+ */
+
+#pragma once
+
+#include "Slimber/Menulet.h"
+
+class DummyMenulet : public Menulet {
+ public:
+ DummyMenulet() {
+ }
+
+ void clear() {
+ }
+
+ void addItem(const Swift::String&, const Swift::String&) {
+ }
+
+ void addAboutItem() {
+ }
+
+ void addRestartItem() {
+ }
+
+ void addExitItem() {
+ }
+
+ void addSeparator() {
+ }
+
+ void setIcon(const Swift::String&) {
+ }
+};