mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
bfb9a08c80
* std::string -> qstring part 1 * more string migration * more string migration ... * ... * more qstring mogrations add sysinfo via json * remove unneccessary includes * integrate sysinfo into webui
25 lines
753 B
C++
25 lines
753 B
C++
// protoserver includes
|
|
#include "protoserver/ProtoConnectionWrapper.h"
|
|
|
|
ProtoConnectionWrapper::ProtoConnectionWrapper(const QString &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);
|
|
}
|