OmronPID
Loading...
Searching...
No Matches
tempdropdialog.h
Go to the documentation of this file.
1
9#ifndef TEMPDROPDIALOG_H
10#define TEMPDROPDIALOG_H
11
12#include <QDialog>
13class QDoubleSpinBox;
14class QTextBrowser;
15class QLabel;
16class QCheckBox;
17
21class TempDropDialog : public QDialog
22{
23 Q_OBJECT
24
25public:
26 explicit TempDropDialog(QWidget *parent = nullptr);
27 bool enable_;
28 double temp_;
29
30private slots:
31 void setValues();
32private:
33 QLabel *labelTemp_, *labelEnable_;
34 QDoubleSpinBox *spinBoxTemp_;
35 QCheckBox *checkboxEnable_;
36 QTextBrowser *browser_;
37};
38
39#endif // TEMPDROPDIALOG_H
Definition: tempdropdialog.h:22