diff options
author | Kevin Smith <git@kismith.co.uk> | 2010-10-01 19:32:14 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2010-10-01 19:32:14 (GMT) |
commit | 2fb3d3266bd22d84604688dc9ee18b17b211b91d (patch) | |
tree | fe48767aec79f65d37c2011e6de01844784815b0 /Swift/Controllers/XMPPEvents | |
parent | 31fc890d97c90a729e306c544a611f640ed00a0d (diff) | |
download | swift-2fb3d3266bd22d84604688dc9ee18b17b211b91d.zip swift-2fb3d3266bd22d84604688dc9ee18b17b211b91d.tar.bz2 |
Only show system tray message icon for message events.
Resolves: #583
Diffstat (limited to 'Swift/Controllers/XMPPEvents')
-rw-r--r-- | Swift/Controllers/XMPPEvents/EventController.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Swift/Controllers/XMPPEvents/EventController.h b/Swift/Controllers/XMPPEvents/EventController.h index b405556..ba3fd5b 100644 --- a/Swift/Controllers/XMPPEvents/EventController.h +++ b/Swift/Controllers/XMPPEvents/EventController.h @@ -16,16 +16,19 @@ #include "Swift/Controllers/XMPPEvents/MessageEvent.h" namespace Swift { + typedef std::vector<boost::shared_ptr<StanzaEvent> > EventList; class EventController { public: + EventController(); void handleIncomingEvent(boost::shared_ptr<StanzaEvent> sourceEvent); boost::signal<void (int)> onEventQueueLengthChange; boost::signal<void (boost::shared_ptr<StanzaEvent>)> onEventQueueEventAdded; + const EventList getEvents() const {return events_;} private: void handleEventConcluded(boost::shared_ptr<StanzaEvent> event); - std::vector<boost::shared_ptr<StanzaEvent> > events_; + EventList events_; }; } #endif |