summaryrefslogtreecommitdiffstats
blob: a5a3dd0e7b8331bd5c1a6f090fe96cd4b2b049f3 (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
/*
 * 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>

namespace Swift {
	class StanzaChannel;
	class WhiteboardSessionManager;

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

		WhiteboardWindow* getWhiteboardWindowOrCreate(const JID& contact);
		WhiteboardWindow* createNewWhiteboardWindow(const JID& contact);

	private:
		void handleUIEvent(boost::shared_ptr<UIEvent> event);

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