summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/ScreenSharing/OutgoingScreenSharing.h')
-rw-r--r--Swiften/ScreenSharing/OutgoingScreenSharing.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/Swiften/ScreenSharing/OutgoingScreenSharing.h b/Swiften/ScreenSharing/OutgoingScreenSharing.h
index cacc715..245d038 100644
--- a/Swiften/ScreenSharing/OutgoingScreenSharing.h
+++ b/Swiften/ScreenSharing/OutgoingScreenSharing.h
@@ -22,13 +22,14 @@ namespace Swift {
class VideoEncoder;
class VP8RTPPacketizer;
class Image;
+ class InputEventPayload;
class OutgoingScreenSharing : public ScreenSharing {
public:
typedef boost::shared_ptr<OutgoingScreenSharing> ref;
public:
- OutgoingScreenSharing(boost::shared_ptr<JingleSession> jingleSession, UDPSocketFactory* udpSocketFactory, TimerFactory* timerFactory);
+ OutgoingScreenSharing(boost::shared_ptr<JingleSession> jingleSession, UDPSocketFactory* udpSocketFactory, TimerFactory* timerFactory, const JID& recipient);
virtual ~OutgoingScreenSharing();
virtual void cancel();
@@ -36,8 +37,11 @@ namespace Swift {
void start(unsigned int width, unsigned int height);
void addImage(const Image& image);
+ const JID& getRecipient() const;
+
public:
boost::signal<void ()> onReady;
+ boost::signal<void (boost::shared_ptr<InputEventPayload>)> onNewInputEvent;
private:
void handleSocketConnected();
@@ -48,6 +52,7 @@ namespace Swift {
private:
TimerFactory* timerFactory;
+ JID recipient;
JingleContentID contentID;
bool canceled;
bool sessionAccepted;