加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
RPC.h 958 Bytes
一键复制 编辑 原始数据 按行查看 历史
zc 提交于 2021-04-23 16:06 . 新增远程控制
#ifndef RPC_H
#define RPC_H
#include <QObject>
#include <jcon/json_rpc_tcp_server.h>
#include "Link.h"
#include "Group.h"
#include <QProcess>
class RPC : public QObject
{
Q_OBJECT
public:
explicit RPC(QObject *parent = 0);
void init();
QString writeCom(const QString &com);
private:
Group *group;
jcon::JsonRpcTcpServer *rpcServer;
LinkObject *device;
QProcess procTrans;
void startTrans();
signals:
public slots:
bool update(QString json);
bool snap();
QVariantMap getSysState();
QVariantList getInputState();
QVariantMap getNetState();
QVariantList getEPG();
QVariantList getPlayList();
QVariantList getVolume();
QVariantMap getPlayPosition();
bool play(int index,int time);
QVariantList getPushSpeed();
QString getSN();
QVariantList getNDIList();
bool setNetDhcp(const bool &dhcp = true);
bool setTrans(QString json);
};
extern RPC *GRPC;
#endif // RPC_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化