Subversion Repositories Projects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
279 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
 
22
#include "../global.h"
23
 
24
struct set_TTY
25
{
26
    QString Port;
27
};
28
 
29
struct set_GUI
30
{
31
    bool   isMax;
32
    QSize  Size;
33
    QPoint Point;
34
    QBitArray TabViews;
35
    QBitArray ToolViews;
36
    bool Term_Info;
37
    bool Term_Data;
38
    bool Term_Always;
39
    bool Term_Send;
40
};
41
 
42
struct set_Data
43
{
44
    int Plotter_Count;
45
    int Debug_Fast;
46
    int Debug_Slow;
47
    int Debug_Off;
48
    int Navi_Fast;
49
    int Navi_Slow;
50
    int Navi_Off;
51
};
52
 
53
struct set_DIR
54
{
55
    QString Logging;
56
    QString Parameter;
57
};
58
 
59
struct set_Server
60
{
61
    QString Port;
62
    bool StartServer;
63
    bool ToGround;
64
    QString QMKS_Login;
65
    QString QMKS_Password;
66
    QString QMKS_Host;
67
    QString QMKS_Port;
68
};
69
 
70
 
71
struct set_Analog
72
{
73
    QString   Version;
74
    QString   Label[MaxAnalog];
75
    QBitArray PlotView;
76
    QBitArray LogView;
77
};
78
 
79
class cSettings
80
{
81
public:
82
    cSettings();
83
    ~cSettings();
84
 
85
    int Settings_ID;
86
 
87
    set_GUI GUI;
88
    set_DIR DIR;
89
    set_TTY TTY;
90
    set_Analog Analog1;
91
    set_Data Data;
92
    set_Server Server;
93
 
94
    void read_Settings();
95
    void read_SettingsID();
96
    void write_Settings();
97
    void write_Settings_Analog(int ID = 0);
98
    void read_Settings_Analog(int ID = 0);
99
    void write_Settings_AnalogLabels(int ID = 0);
100
    void read_Settings_AnalogLabels(int ID = 0);
101
};
102
 
103
#endif