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.
29 lines
512 B
C++
29 lines
512 B
C++
#ifndef _QALGPARAMDLG_H_
|
|
#define _QALGPARAMDLG_H_
|
|
|
|
#include <QWidget>
|
|
#include "ui_QAlgParamDlg.h"
|
|
|
|
class QAlgParamDlg : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QAlgParamDlg(QWidget *parent = Q_NULLPTR);
|
|
~QAlgParamDlg();
|
|
Q_SLOT void onButtonClicked();
|
|
signals:
|
|
void sgParamChange();
|
|
protected:
|
|
virtual void showEvent(QShowEvent *event);
|
|
virtual void timerEvent(QTimerEvent *event);
|
|
void setParam();
|
|
void getParam();
|
|
Q_SLOT void onChangeBG();
|
|
private:
|
|
Ui::QAlgParamDlg ui;
|
|
int m_timeID{ 0 };
|
|
};
|
|
|
|
#endif
|