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.
30 lines
679 B
C++
30 lines
679 B
C++
#ifndef _H_QEXPOSURETIMEDLG_H_
|
|
#define _H_QEXPOSURETIMEDLG_H_
|
|
#include "ui_QExposureTimeDlg.h"
|
|
#include "QZkJsonParser.h"
|
|
|
|
#include <QWidget>
|
|
#include <QDebug>
|
|
class QExposureTimeDlg : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
QExposureTimeDlg(QWidget *parent = Q_NULLPTR);
|
|
~QExposureTimeDlg();
|
|
|
|
Q_SLOT void onButtonClicked();
|
|
signals:
|
|
void sgExpsParamChange();
|
|
protected:
|
|
virtual void showEvent(QShowEvent *event);
|
|
virtual void timerEvent(QTimerEvent *event);
|
|
//virtual void changeEvent(QEvent *event);
|
|
|
|
private:
|
|
Ui::QExposureTimeDlg ui;
|
|
bool showParam(const QString& strPath);
|
|
void savaParam(const QString& strPath);
|
|
int m_timeID{ 0 };
|
|
};
|
|
#endif // !_H_QEXPOSURETIMEDLG_H_
|