OmronPID
Loading...
Searching...
No Matches
plotdialog.h
Go to the documentation of this file.
1
9#ifndef PLOTDIALOG_H
10#define PLOTDIALOG_H
11
12#include <QDialog>
13#include <QMutex>
14class QSpinBox;
15class QTextBrowser;
16class QLabel;
17
18
22class PlotDialog : public QDialog
23{
24 Q_OBJECT
25
26public:
27 explicit PlotDialog(QWidget *parent = nullptr);
28 int displayRange_;
29
30private slots:
31 void setValues();
32private:
33 QLabel *labelRange_;
34 QSpinBox * spinBoxDisplayRange_;
35 QTextBrowser *browser_;
36};
37
38#endif // PLOTDIALOG_H
The PlotDialog class.
Definition: plotdialog.h:23