-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFormGalilController.h
More file actions
52 lines (39 loc) · 1.05 KB
/
FormGalilController.h
File metadata and controls
52 lines (39 loc) · 1.05 KB
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
#ifndef FORMGALILCONTROLLER_H
#define FORMGALILCONTROLLER_H
#include <QMainWindow>
#include "macros.h"
#include "FormGalilMotor.h"
#include "FormGalilMotorExtras.h"
#include "FormGalilMotorSSI.h"
#include "FormGalilCSKinematics.h"
#include "FormGalilControllerIO.h"
#include "FormGalilCS.h"
#include "FormGalilMotorBISS.h"
#define MOTORS_COUNT 8
namespace Ui {
class FormGalilController;
}
class FormGalilController : public QMainWindow
{
Q_OBJECT
public:
explicit FormGalilController(QString group, QString axis, QString cs = "", QWidget *parent = 0);
~FormGalilController();
private slots:
void motorSelectionChanged();
void on_btnIO_clicked();
void on_btnCS_clicked();
private:
Ui::FormGalilController *ui;
FormGalilMotor* motor;
FormGalilMotorExtras* extras;
FormGalilMotorSSI* ssi;
FormGalilCSKinematics* csKinmetics;
FormGalilControllerIO* io;
FormGalilCS* cs;
FormGalilMotorBISS* biss;
QString group;
QString axisMotors[8];
QString csMotors[8];
};
#endif // FORMGALILCONTROLLER_H