mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
f0dec4cf73
* Update X11Grabber.h * Update ProtoConnection.h * Update ProtoConnectionWrapper.h * Update ProtoServer.h * Update X11Grabber.cpp * Update message.proto * Update ProtoClientConnection.cpp * Update ProtoClientConnection.h * Update ProtoConnection.cpp * Update ProtoConnectionWrapper.cpp * Update ProtoServer.cpp * Update hyperion-x11.cpp * Update X11Wrapper.cpp * Update X11Wrapper.h * Update hyperiond.cpp * Update ProtoClientConnection.cpp * Update X11Wrapper.cpp * Update hyperiond.cpp Former-commit-id: a572f275b270217cd8ce8cdd91b3eca3037d6472
22 lines
714 B
C++
22 lines
714 B
C++
// protoserver includes
|
|
#include "protoserver/ProtoConnectionWrapper.h"
|
|
|
|
ProtoConnectionWrapper::ProtoConnectionWrapper(const std::string & address, int priority, int duration_ms, bool skipProtoReply) :
|
|
_priority(priority),
|
|
_duration_ms(duration_ms),
|
|
_connection(address)
|
|
{
|
|
_connection.setSkipReply(skipProtoReply);
|
|
connect(&_connection, SIGNAL(setGrabbingMode(GrabbingMode)), this, SIGNAL(setGrabbingMode(GrabbingMode)));
|
|
connect(&_connection, SIGNAL(setVideoMode(VideoMode)), this, SIGNAL(setVideoMode(VideoMode)));
|
|
}
|
|
|
|
ProtoConnectionWrapper::~ProtoConnectionWrapper()
|
|
{
|
|
}
|
|
|
|
void ProtoConnectionWrapper::receiveImage(const Image<ColorRgb> & image)
|
|
{
|
|
_connection.setImage(image, _priority, _duration_ms);
|
|
}
|