Subversion Repositories Projects

Rev

Rev 674 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 674 Rev 750
Line 28... Line 28...
28
#include "../Classes/cSettings.h"
28
#include "../Classes/cSettings.h"
Line 29... Line 29...
29
 
29
 
30
#include "../../Global/Kopter.h"
30
#include "../../Global/Kopter.h"
31
#include "../../Global/Global.h"
31
#include "../../Global/Global.h"
32
#include "../../Global/MK_Datatypes.h"
-
 
33
#include "../../Global/Class_Input/Input.h"
-
 
34
#include "../../Global/Class_Input/Input_TCP.h"
32
#include "../../Global/MK_Datatypes.h"
Line 35... Line 33...
35
#include "../../Global/Class_HandlerMK/HandlerMK.h"
33
#include "../../Global/Class_HandlerMK/HandlerMK.h"
36
 
34
 
37
class dlg_MotorMixer : public QDialog, public Ui::dlg_MotorMixer_UI
35
class dlg_MotorMixer : public QDialog, public Ui::dlg_MotorMixer_UI
Line 38... Line 36...
38
{
36
{
39
     Q_OBJECT
37
     Q_OBJECT
40
 
38
 
41
public:
39
public:
42
    dlg_MotorMixer(QWidget *parent = 0);
40
    dlg_MotorMixer(QWidget *parent = 0);
43
    void set_Objects(Input *t_Input, cSettings *t_Settings, s_Directorys t_Dir);
41
    void set_Objects(cSettings *t_Settings, s_Directorys t_Dir);
44
    void set_MotorConfig(s_MK_Mixer t_Mixer);
-
 
45
    void read_Mixer();
-
 
46
private:
-
 
47
    // Object für Kopter-Verbindung
42
    void set_MotorConfig(s_MK_Mixer t_Mixer);
Line 48... Line 43...
48
    Input *o_Input;
43
    void read_Mixer();
Line 49... Line 44...
49
 
44
private:
Line 62... Line 57...
62
    void slot_pb_READ();
57
    void slot_pb_READ();
63
    void slot_pb_WRITE();
58
    void slot_pb_WRITE();
64
    void slot_pb_LOAD();
59
    void slot_pb_LOAD();
65
    void slot_pb_SAVE();
60
    void slot_pb_SAVE();
66
    void slot_CheckValue(int Wert);
61
    void slot_CheckValue(int Wert);
-
 
62
 
-
 
63
    signals:
-
 
64
        void sig_SendData(QString ,int);
-
 
65
 
67
};
66
};
Line 68... Line 67...
68
 
67