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
44 lines
1012 B
C++
44 lines
1012 B
C++
// Qt includes
|
|
#include <QObject>
|
|
|
|
// hyperion includes
|
|
#include <utils/Image.h>
|
|
#include <utils/ColorRgb.h>
|
|
#include <utils/GrabbingMode.h>
|
|
#include <utils/VideoMode.h>
|
|
|
|
// hyperion proto includes
|
|
#include "protoserver/ProtoConnection.h"
|
|
|
|
/// This class handles callbacks from the V4L2 and X11 grabber
|
|
class ProtoConnectionWrapper : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ProtoConnectionWrapper(const std::string & address, int priority, int duration_ms, bool skipProtoReply);
|
|
virtual ~ProtoConnectionWrapper();
|
|
|
|
signals:
|
|
///
|
|
/// Forwarding XBMC Video Checker Message
|
|
///
|
|
void setGrabbingMode(const GrabbingMode mode);
|
|
void setVideoMode(const VideoMode videoMode);
|
|
|
|
public slots:
|
|
/// Handle a single image
|
|
/// @param image The image to process
|
|
void receiveImage(const Image<ColorRgb> & image);
|
|
|
|
private:
|
|
/// Priority for calls to Hyperion
|
|
const int _priority;
|
|
|
|
/// Duration for color calls to Hyperion
|
|
const int _duration_ms;
|
|
|
|
/// Hyperion proto connection object
|
|
ProtoConnection _connection;
|
|
};
|