diff options
Diffstat (limited to 'Swift/Controllers/ChatController.h')
-rw-r--r-- | Swift/Controllers/ChatController.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/Swift/Controllers/ChatController.h b/Swift/Controllers/ChatController.h deleted file mode 100644 index ea844ad..0000000 --- a/Swift/Controllers/ChatController.h +++ /dev/null @@ -1,27 +0,0 @@ -#ifndef SWIFTEN_ChatController_H -#define SWIFTEN_ChatController_H - -#include "Swift/Controllers/ChatControllerBase.h" - -namespace Swift { - class AvatarManager; - class NickResolver; - class ChatController : public ChatControllerBase { - public: - ChatController(const JID& self, StanzaChannel* stanzaChannel, IQRouter* iqRouter, ChatWindowFactory* chatWindowFactory, const JID &contact, NickResolver* nickResolver, PresenceOracle* presenceOracle, AvatarManager*); - - private: - void handlePresenceChange(boost::shared_ptr<Presence> newPresence, boost::shared_ptr<Presence> previousPresence); - String getStatusChangeString(boost::shared_ptr<Presence> presence); - bool isIncomingMessageFromMe(boost::shared_ptr<Message> message); - void postSendMessage(const String &body); - void preHandleIncomingMessage(boost::shared_ptr<Message> message); - String senderDisplayNameFromMessage(const JID& from); - - private: - NickResolver* nickResolver_; - JID contact_; - }; -} -#endif - |