Subversion Repositories Projects

Rev

Rev 306 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 306 Rev 481
1
/***************************************************************************
1
/***************************************************************************
2
 *   Copyright (C) 2008 by Manuel Schrape                                  *
2
 *   Copyright (C) 2008 by Manuel Schrape                                  *
3
 *   manuel.schrape@gmx.de                                                 *
3
 *   manuel.schrape@gmx.de                                                 *
4
 *                                                                         *
4
 *                                                                         *
5
 *   This program is free software; you can redistribute it and/or modify  *
5
 *   This program is free software; you can redistribute it and/or modify  *
6
 *   it under the terms of the GNU General Public License as published by  *
6
 *   it under the terms of the GNU General Public License as published by  *
7
 *   the Free Software Foundation; either version 2 of the License.        *
7
 *   the Free Software Foundation; either version 2 of the License.        *
8
 *                                                                         *
8
 *                                                                         *
9
 *   This program is distributed in the hope that it will be useful,       *
9
 *   This program is distributed in the hope that it will be useful,       *
10
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
10
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
11
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12
 *   GNU General Public License for more details.                          *
12
 *   GNU General Public License for more details.                          *
13
 *                                                                         *
13
 *                                                                         *
14
 *   You should have received a copy of the GNU General Public License     *
14
 *   You should have received a copy of the GNU General Public License     *
15
 *   along with this program; if not, write to the                         *
15
 *   along with this program; if not, write to the                         *
16
 *   Free Software Foundation, Inc.,                                       *
16
 *   Free Software Foundation, Inc.,                                       *
17
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
17
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
18
 ***************************************************************************/
18
 ***************************************************************************/
19
#ifndef CSETTINGS_H
19
#ifndef CSETTINGS_H
20
#define CSETTINGS_H
20
#define CSETTINGS_H
21
 
21
 
22
#include "../global.h"
22
#include "../global.h"
23
 
23
 
24
struct set_TTY
24
struct set_TTY
25
{
25
{
26
    QString Port;
26
    QString Port;
27
};
27
};
28
 
28
 
29
struct set_GUI
29
struct set_GUI
30
{
30
{
31
    bool   isMax;
31
    bool   isMax;
32
    QSize  Size;
32
    QSize  Size;
33
    QPoint Point;
33
    QPoint Point;
34
    QBitArray TabViews;
34
    QBitArray TabViews;
35
    QBitArray ToolViews;
35
    QBitArray ToolViews;
36
    bool Term_Info;
36
    bool Term_Info;
37
    bool Term_Data;
37
    bool Term_Data;
38
    bool Term_Always;
38
    bool Term_Always;
39
    bool Term_Send;
39
    bool Term_Send;
40
};
40
};
41
 
41
 
42
struct set_Map
42
struct set_Map
43
{
43
{
44
    bool GotoPosition;
44
    bool GotoPosition;
45
    bool ShowTrack;
45
    bool ShowTrack;
-
 
46
    double LastLatitude;
-
 
47
    double LastLongitude;
46
};
48
};
47
 
49
 
48
struct set_Data
50
struct set_Data
49
{
51
{
50
    int Plotter_Count;
52
    int Plotter_Count;
51
    int Debug_Fast;
53
    int Debug_Fast;
52
    int Debug_Slow;
54
    int Debug_Slow;
53
    int Debug_Off;
55
    int Debug_Off;
54
    int Navi_Fast;
56
    int Navi_Fast;
55
    int Navi_Slow;
57
    int Navi_Slow;
56
    int Navi_Off;
58
    int Navi_Off;
57
};
59
};
58
 
60
 
59
struct set_DIR
61
struct set_DIR
60
{
62
{
61
    QString Logging;
63
    QString Logging;
62
    QString Parameter;
64
    QString Parameter;
63
    QString Cache;
65
    QString Cache;
64
    QString AVRDUDE;
66
    QString AVRDUDE;
65
};
67
};
66
 
68
 
67
struct set_Server
69
struct set_Server
68
{
70
{
69
    QString Port;
71
    QString Port;
70
    bool StartServer;
72
    bool StartServer;
71
    bool ToGround;
73
    bool ToGround;
72
    QString QMKS_Login;
74
    QString QMKS_Login;
73
    QString QMKS_Password;
75
    QString QMKS_Password;
74
    QString QMKS_Host;
76
    QString QMKS_Host;
75
    QString QMKS_Port;
77
    QString QMKS_Port;
76
};
78
};
77
 
79
 
78
 
80
 
79
struct set_Analog
81
struct set_Analog
80
{
82
{
81
    QString   Version;
83
    QString   Version;
82
    QString   Label[MaxAnalog];
84
    QString   Label[MaxAnalog];
83
    QBitArray PlotView;
85
    QBitArray PlotView;
84
    QBitArray LogView;
86
    QBitArray LogView;
85
};
87
};
86
 
88
 
87
class cSettings
89
class cSettings
88
{
90
{
89
public:
91
public:
90
    cSettings();
92
    cSettings();
91
    ~cSettings();
93
    ~cSettings();
92
 
94
 
93
    int Settings_ID;
95
    int Settings_ID;
94
 
96
 
95
    set_GUI GUI;
97
    set_GUI GUI;
96
    set_DIR DIR;
98
    set_DIR DIR;
97
    set_TTY TTY;
99
    set_TTY TTY;
98
    set_Analog Analog1;
100
    set_Analog Analog1;
99
    set_Data Data;
101
    set_Data Data;
100
    set_Server Server;
102
    set_Server Server;
101
    set_Map Map;
103
    set_Map Map;
102
 
104
 
103
    void read_Settings();
105
    void read_Settings();
104
    void read_SettingsID();
106
    void read_SettingsID();
105
    void write_Settings();
107
    void write_Settings();
106
    void write_Settings_Analog(int ID = 0);
108
    void write_Settings_Analog(int ID = 0);
107
    void read_Settings_Analog(int ID = 0);
109
    void read_Settings_Analog(int ID = 0);
108
    void write_Settings_AnalogLabels(int ID = 0);
110
    void write_Settings_AnalogLabels(int ID = 0);
109
    void read_Settings_AnalogLabels(int ID = 0);
111
    void read_Settings_AnalogLabels(int ID = 0);
110
};
112
};
111
 
113
 
112
#endif
114
#endif
113
 
115