summaryrefslogtreecommitdiffstats
blob: 314bd700f46172abd4e54df3823e7e8e6d542276 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef SWIFTEN_ChatController_H
#define SWIFTEN_ChatController_H

#include "Swiften/Controllers/ChatControllerBase.h"

namespace Swift {
	class NickResolver;
	class ChatController : public ChatControllerBase {
		public:
			ChatController(StanzaChannel* stanzaChannel, IQRouter* iqRouter, ChatWindowFactory* chatWindowFactory, const JID &contact, NickResolver* nickResolver, PresenceOracle* presenceOracle);
			~ChatController() {};
			//boost::signal<void (const JID&, const JID&)> onJIDChanged;
		protected:
			bool isIncomingMessageFromMe(boost::shared_ptr<Message> message);
			void postSendMessage(const String &body);
			void preHandleIncomingMessage(boost::shared_ptr<Message> message);
			String senderDisplayNameFromMessage(JID from);
		private:
			NickResolver* nickResolver_;
			JID contact_;
	};
}
#endif