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.
35 lines
574 B
C++
35 lines
574 B
C++
#ifndef _H_QDEBUGDLG_H_
|
|
#define _H_QDEBUGDLG_H_
|
|
|
|
#include <QWidget>
|
|
#include "ui_QDebugDlg.h"
|
|
#include <QTimer>
|
|
#include "Result2Ui.h"
|
|
#include "IWheelCtrl.h"
|
|
|
|
#pragma execution_character_set("utf-8")
|
|
class QDebugDlg : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QDebugDlg(QWidget *parent = Q_NULLPTR);
|
|
~QDebugDlg();
|
|
|
|
void onShowResult(Result2Ui* pRlt);
|
|
void onSetCtrl(IWheelCtrl* ptr);
|
|
|
|
Q_SLOT void onButtonClicked();
|
|
Q_SLOT void onTimeOut();
|
|
|
|
signals:
|
|
void sgTriggerCam();
|
|
private:
|
|
Ui::QDebugDlg ui;
|
|
QTimer m_simuliter;
|
|
|
|
class IWheelCtrl *m_pCtrl{ nullptr };
|
|
};
|
|
|
|
#endif
|