OmronPID
Loading...
Searching...
No Matches
helpdialog.h
Go to the documentation of this file.
1
6#ifndef HELPDIALOG_H
7#define HELPDIALOG_H
8
9#include <QDialog>
10#include <QLabel>
11#include <QPushButton>
12
16class HelpDialog : public QDialog
17{
18 Q_OBJECT
19public:
24 explicit HelpDialog(QWidget *parent = nullptr);
25
26private slots:
30 void HelpPicNext();
31
32private:
33 QLabel *helpLabel_{nullptr};
34 QPushButton *next_{nullptr};
35 int picNumber_{2};
36};
37
38#endif // HELPDIALOG_H
The HelpDialog class displays a dialog with help information.
Definition: helpdialog.h:17