summaryrefslogtreecommitdiffstats
blob: c28492c10f2f5b4e7e9edf48ced6e0ce6c528e4b (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
/*
 * 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();

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

	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_;
	};
}