summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2010-06-26 19:56:55 (GMT)
committerKevin Smith <git@kismith.co.uk>2010-06-26 19:56:55 (GMT)
commit533111880ed9346dc8844f148a5dcfecb5095047 (patch)
treeda9c0f8a84335d68580a6a3b93313dc6aa1a8db5 /Swift/Controllers/SystemTray.h
parentde7ee8e38a2dfaab9fde40a7916c8212f5859d68 (diff)
downloadswift-533111880ed9346dc8844f148a5dcfecb5095047.zip
swift-533111880ed9346dc8844f148a5dcfecb5095047.tar.bz2
Show status in system tray.
Resolves: #304
Diffstat (limited to 'Swift/Controllers/SystemTray.h')
-rw-r--r--Swift/Controllers/SystemTray.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Swift/Controllers/SystemTray.h b/Swift/Controllers/SystemTray.h
index cd007e7..2821785 100644
--- a/Swift/Controllers/SystemTray.h
+++ b/Swift/Controllers/SystemTray.h
@@ -6,10 +6,13 @@
#pragma once
+#include "Swiften/Elements/StatusShow.h"
+
namespace Swift {
class SystemTray {
public:
virtual ~SystemTray(){};
virtual void setUnreadMessages(bool some) = 0;
+ virtual void setStatusType(StatusShow::Type type) = 0;
};
}