diff options
author | Mateusz Piekos <mateuszpiekos@gmail.com> | 2012-06-02 16:23:59 (GMT) |
---|---|---|
committer | Mateusz Piekos <mateuszpiekos@gmail.com> | 2012-06-02 16:23:59 (GMT) |
commit | 7520c7fed383d4f7631f5572ef40379022126264 (patch) | |
tree | ee87b26bb923d0289a670defce96e2012f3623e3 /Swift/Controllers/WhiteboardController.h | |
parent | e8ab1af885ff61715ab0350c3cb22ed6988a082a (diff) | |
download | swift-contrib-7520c7fed383d4f7631f5572ef40379022126264.zip swift-contrib-7520c7fed383d4f7631f5572ef40379022126264.tar.bz2 |
Added whiteboard controller with simple sharing
Whiteboard controller is handled in ChatController only for
testing purposes.
Diffstat (limited to 'Swift/Controllers/WhiteboardController.h')
-rw-r--r-- | Swift/Controllers/WhiteboardController.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Swift/Controllers/WhiteboardController.h b/Swift/Controllers/WhiteboardController.h new file mode 100644 index 0000000..aa1ace3 --- /dev/null +++ b/Swift/Controllers/WhiteboardController.h @@ -0,0 +1,31 @@ +/* + * Copyright (c) 2012 Mateusz Piękos + * Licensed under the simplified BSD license. + * See Documentation/Licenses/BSD-simplified.txt for more information. + */ + +#pragma once + +#include <boost/shared_ptr.hpp> + +#include <Swiften/Client/StanzaChannel.h> +#include "Swiften/JID/JID.h" +#include "Swift/Controllers/XMPPEvents/MessageEvent.h" + +namespace Swift { + class WhiteboardWindow; + class WhiteboardWindowFactory; + + class WhiteboardController { + public: + WhiteboardController(StanzaChannel* stanzaChannel, const JID& toJID, WhiteboardWindowFactory* whiteboardWindowFactory); + ~WhiteboardController(); + void handleIncomingMessage(boost::shared_ptr<MessageEvent> message); + private: + void handleItemChange(std::string item); + WhiteboardWindow* whiteboardWindow_; + StanzaChannel* stanzaChannel_; + JID toJID_; + }; +} + |