summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2010-04-23 20:29:01 (GMT)
committerRemko Tronçon <git@el-tramo.be>2010-04-23 20:29:01 (GMT)
commit44bbd50e7eb8085d49e4e326e0c82d6968a658bb (patch)
treea9ff132256d6cb90b083de434b5d064b014edf06 /Slimber/CLI/DummyMenulet.h
parent4395aa54a74b719c40931364390f94bdc35c81db (diff)
downloadswift-44bbd50e7eb8085d49e4e326e0c82d6968a658bb.zip
swift-44bbd50e7eb8085d49e4e326e0c82d6968a658bb.tar.bz2
Complete Slimber CLI.
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&) {
+ }
+};