Subversion Repositories Projects

Rev

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

Rev 711 Rev 750
Line 30... Line 30...
30
    int TCP_PORT;
30
    int TCP_PORT;
31
    int UDP_PORT;
31
    int UDP_PORT;
32
    QString Password;
32
    QString Password;
33
};
33
};
Line -... Line 34...
-
 
34
 
-
 
35
struct set_LIVEDATA
-
 
36
{
-
 
37
    QString Server;
-
 
38
    QString Port;
-
 
39
    QString User;
-
 
40
    QString Password;
-
 
41
};
34
 
42
 
35
struct set_CLIENT
43
struct set_CLIENT
36
{
44
{
37
    QString TTY_DEVICES[10];
45
    QString TTY_DEVICES[10];
38
    int     TTY_MAX;
46
    int     TTY_MAX;
Line 49... Line 57...
49
    bool   isMax;
57
    bool   isMax;
50
    QSize  Size;
58
    QSize  Size;
51
    QPoint Point;
59
    QPoint Point;
52
};
60
};
Line -... Line 61...
-
 
61
 
-
 
62
struct set_DATA
-
 
63
{
-
 
64
    bool Send;
-
 
65
    bool Data;
-
 
66
    bool Info;
-
 
67
    bool TCP;
-
 
68
};
53
 
69
 
54
class cSettings
70
class cSettings
55
{
71
{
56
    public:
72
    public:
57
        cSettings();
73
        cSettings();
58
        void read_Settings();
74
        void read_Settings();
Line 59... Line 75...
59
        void write_Settings();
75
        void write_Settings();
Line -... Line 76...
-
 
76
 
60
 
77
        int Settings_ID;
-
 
78
 
61
        int Settings_ID;
79
        set_DATA   DATA;
62
 
80
        set_GUI    GUI;
-
 
81
        set_GUI    TERMINAL;
63
        set_GUI    GUI;
82
        set_SERVER SERVER;
Line 64... Line 83...
64
        set_SERVER SERVER;
83
        set_CLIENT CLIENT;