Subversion Repositories Projects

Rev

Rev 272 | Go to most recent revision | 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
 
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
 
306 KeyOz 42
struct set_Map
43
{
44
    bool GotoPosition;
45
    bool ShowTrack;
46
};
47
 
227 KeyOz 48
struct set_Data
49
{
50
    int Plotter_Count;
51
    int Debug_Fast;
52
    int Debug_Slow;
53
    int Debug_Off;
54
    int Navi_Fast;
55
    int Navi_Slow;
56
    int Navi_Off;
57
};
58
 
59
struct set_DIR
60
{
61
    QString Logging;
62
    QString Parameter;
306 KeyOz 63
    QString Cache;
64
    QString AVRDUDE;
227 KeyOz 65
};
66
 
67
struct set_Server
68
{
69
    QString Port;
70
    bool StartServer;
71
    bool ToGround;
72
    QString QMKS_Login;
73
    QString QMKS_Password;
272 KeyOz 74
    QString QMKS_Host;
75
    QString QMKS_Port;
227 KeyOz 76
};
77
 
78
 
79
struct set_Analog
80
{
81
    QString   Version;
82
    QString   Label[MaxAnalog];
83
    QBitArray PlotView;
84
    QBitArray LogView;
85
};
86
 
87
class cSettings
88
{
89
public:
90
    cSettings();
91
    ~cSettings();
92
 
93
    int Settings_ID;
94
 
95
    set_GUI GUI;
96
    set_DIR DIR;
97
    set_TTY TTY;
98
    set_Analog Analog1;
99
    set_Data Data;
100
    set_Server Server;
306 KeyOz 101
    set_Map Map;
227 KeyOz 102
 
103
    void read_Settings();
104
    void read_SettingsID();
105
    void write_Settings();
106
    void write_Settings_Analog(int ID = 0);
107
    void read_Settings_Analog(int ID = 0);
108
    void write_Settings_AnalogLabels(int ID = 0);
109
    void read_Settings_AnalogLabels(int ID = 0);
110
};
111
 
112
#endif