summaryrefslogtreecommitdiffstats
blob: 5876adf3143bd6e56f3371a54cd34fe39b79d43f (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
/*
 * 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 WhiteboardManager {
	public:
		WhiteboardManager(WhiteboardWindowFactory* whiteboardWindowFactory, UIEventStream* uiEventStream, StanzaChannel* stanzaChannel);
		~WhiteboardManager();

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

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