-
Notifications
You must be signed in to change notification settings - Fork 0
/
c_algin.h
61 lines (47 loc) · 1.21 KB
/
c_algin.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#ifndef C_ALGIN_H
#define C_ALGIN_H
#include <QWidget>
#include <QComboBox>
#include <QStandardItemModel>
#include "mfile.h"
#include "project.h"
namespace Ui {
class C_Algin;
}
class C_Algin : public QWidget
{
Q_OBJECT
private:
Ui::C_Algin *ui;
MFile* mfile;
Project* project;
QStringList stringList_Frames;
QStringList stringList_MessRichtung1;
QStringList stringList_MessRichtung2;
QStringList stringList_Content;
QStringList stringList_ContentAnfahren;
int int_CAxis;
int int_AAxis;
int counter;
QString string_CYCLE998;
void insert_Content();
QString replace_Comma(QString);
//void set_Oben();
void SetComboBoxItemEnabled(QComboBox * comboBox, int index, bool enabled);
protected:
bool eventFilter(QObject *obj, QEvent *ev) override;
public:
explicit C_Algin(QWidget *parent = nullptr);
~C_Algin();
void setProject(Project* p) {project = p;}
signals:
void sig_Err(QString);
void sig_Log(QString);
public slots:
void slot_currentFrameChanged(QString);
void slot_currentTextChanged(QString);
void slot_create();
void slot_export();
void slot_pix();
};
#endif // C_ALGIN_H