Subversion Repositories Projects

Rev

Rev 394 | Details | Compare with Previous | Last modification | View Log | RSS feed

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