summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordknn <yoann.blein@free.fr>2012-08-10 18:04:56 (GMT)
committerdknn <yoann.blein@free.fr>2012-09-22 09:32:38 (GMT)
commit955c4589ca254814ae7ec6ed911e0a62febc5da1 (patch)
tree1d3ba8ecc732f8239462f7428e758224f3d38b94 /Swiften/ScreenSharing/ScreenSharingManagerImpl.h
parent577fffec4a1da6909740a392cf76617bdcbe5570 (diff)
downloadswift-contrib-955c4589ca254814ae7ec6ed911e0a62febc5da1.zip
swift-contrib-955c4589ca254814ae7ec6ed911e0a62febc5da1.tar.bz2
Capture and send user UI events
Diffstat (limited to 'Swiften/ScreenSharing/ScreenSharingManagerImpl.h')
-rw-r--r--Swiften/ScreenSharing/ScreenSharingManagerImpl.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/Swiften/ScreenSharing/ScreenSharingManagerImpl.h b/Swiften/ScreenSharing/ScreenSharingManagerImpl.h
index 8e8ea78..8f73f87 100644
--- a/Swiften/ScreenSharing/ScreenSharingManagerImpl.h
+++ b/Swiften/ScreenSharing/ScreenSharingManagerImpl.h
@@ -18,6 +18,8 @@ namespace Swift {
class TimerFactory;
class PresenceOracle;
class EntityCapsProvider;
+ class InputEventResponder;
+ class InputEventPayload;
class ScreenSharingManagerImpl : public ScreenSharingManager {
public:
@@ -28,19 +30,18 @@ namespace Swift {
virtual boost::shared_ptr<OutgoingScreenSharing> createOutgoingScreenSharing(const JID& to);
+ virtual void handleInputEvent(const JID& from, boost::shared_ptr<InputEventPayload> payload);
+
private:
boost::optional<JID> highestPriorityJIDSupportingScreenSharing(const JID &bareJID);
private:
IncomingScreenSharingManager* incomingSSManager;
OutgoingScreenSharingManager* outgoingSSManager;
-
+ InputEventResponder* responder;
JID ownJID;
+ std::vector< boost::shared_ptr<OutgoingScreenSharing> > outgoingSharings;
-// JingleSessionManager* jingleSM;
-// IQRouter* iqRouter;
-// BoostUDPSocketFactory* udpSocketFactory;
-// TimerFactory* timerFactory;
EntityCapsProvider* capsProvider;
PresenceOracle* presenceOracle;
};