iVS3D v2.0.0
Loading...
Searching...
No Matches
inputautomaticwidget.h
1#ifndef INPUTAUTOMATICWIDGET_H
2#define INPUTAUTOMATICWIDGET_H
3
4#include "infowidget.h"
5#include "automaticwidget.h"
6
7#include <QWidget>
8
9
10namespace Ui {
12}
25class InputAutomaticWidget : public QWidget
26{
27 Q_OBJECT
28
29public:
36 explicit InputAutomaticWidget(QWidget *parent = nullptr, InfoWidget *info = nullptr, AutomaticWidget *automatic = nullptr);
38
39
40private:
41 Ui::InputAutomaticWidget *ui;
42
43
44};
45
46#endif // INPUTAUTOMATICWIDGET_H
The AutomaticWidget class is used to show the current settings of the automatic execution....
Definition automaticwidget.h:29
The InfoWidget class displays given information to the user. The information is given as key value pa...
Definition infowidget.h:33
The InputAutomaticWidget class is used to show the InfoWidget and the AutomaticWidget in one widget.
Definition inputautomaticwidget.h:26