You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
475 B
C++
21 lines
475 B
C++
#ifndef QTPCAMERAESSCENE_H
|
|
#define QTPCAMERAESSCENE_H
|
|
|
|
#include <QtWidgets\qgraphicsscene.h>
|
|
#include <QtWidgets\qgraphicsproxywidget.h>
|
|
#include "QTpCamera.h"
|
|
|
|
class QTpCameraesScene : public QGraphicsScene
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QTpCameraesScene(const QString& objName, const QJsonObject& jsonCfg, QWidget *parent);
|
|
~QTpCameraesScene();
|
|
void AddCameraes(const QJsonObject& jsonCfg);
|
|
private:
|
|
QWidget* m_parentWidget;
|
|
};
|
|
|
|
#endif // QTPCAMERAESSCENE_H
|