summaryrefslogtreecommitdiffstats
blob: a2c75dd8e615196a59334ab9f830a2e3cb3acfcb (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
 * Copyright (c) 2012 Mateusz Piękos
 * Licensed under the simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */


#pragma once

#include <map>

#include <boost/shared_ptr.hpp>

#include <Swiften/JID/JID.h>

#include <Swift/Controllers/UIEvents/UIEventStream.h>
#include <Swift/Controllers/UIInterfaces/WhiteboardWindowFactory.h>
#include <Swift/Controllers/UIInterfaces/WhiteboardWindow.h>
#include <Swiften/Whiteboard/WhiteboardSession.h>

namespace Swift {
	class WhiteboardSessionManager;
	class NickResolver;

	class WhiteboardManager {
	public:
		WhiteboardManager(WhiteboardWindowFactory* whiteboardWindowFactory, UIEventStream* uiEventStream, NickResolver* nickResolver, WhiteboardSessionManager* whiteboardSessionManager);
		~WhiteboardManager();

		WhiteboardWindow* createNewWhiteboardWindow(const JID& contact, WhiteboardSession::ref session);

	private:
		void handleUIEvent(boost::shared_ptr<UIEvent> event);
		void acceptSession(const JID& from);
		void cancelSession(const JID& from);
		WhiteboardWindow* findWhiteboardWindow(const JID& contact);

	private:
		std::map<JID, WhiteboardWindow*> whiteboardWindows_;
		WhiteboardWindowFactory* whiteboardWindowFactory_;
		UIEventStream* uiEventStream_;
		NickResolver* nickResolver_;
		boost::bsignals::scoped_connection uiEventConnection_;
		WhiteboardSessionManager* whiteboardSessionManager_;
	};
}