Marlin  01.17.01
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
addcondition.h
Go to the documentation of this file.
1 #ifndef ADDCONDITION_H
2 #define ADDCONDITION_H
3 
11 #include <QDialog>
12 
14 
15 class QVBoxLayout;
16 class QLineEdit;
17 class QMainWindow;
18 
19 using namespace marlin;
20 
21 class ACDialog : public QDialog
22 {
23  Q_OBJECT
24 
25 public:
26  ACDialog(const ACDialog&) = default;
27  ACDialog& operator=(const ACDialog&) = default;
28  ACDialog(MarlinSteerCheck* msc, QWidget *parent = 0, Qt::WFlags f = 0);
29 
30 signals:
31  void apply();
32 
33 private slots:
34  void addCondition();
35 
36 private:
37  //Variables
38  QMainWindow* _parent{};
39  QLineEdit *le{};
40  QVBoxLayout *mainLayout{};
41 
43 };
44 
45 #endif
this class is a Marlin Steering File consistency check Tool.