Subversion Repositories tpanel

Rev

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

Rev 99 Rev 118
Line 70... Line 70...
70
    int idealHeight;
70
    int idealHeight;
71
    int minHeight;
71
    int minHeight;
72
    int minWidth;
72
    int minWidth;
73
    int incHeight;
73
    int incHeight;
74
    int incWidth;
74
    int incWidth;
-
 
75
 
-
 
76
    void init()
-
 
77
    {
-
 
78
        multiColor = 0;
-
 
79
        fillTop = 0;
-
 
80
        fillLeft = 0;
-
 
81
        fillBottom = 0;
-
 
82
        fillRight = 0;
-
 
83
        textTop = 0;
-
 
84
        textLeft = 0;
-
 
85
        textBottom = 0;
-
 
86
        textRight = 0,
-
 
87
        idealWidth = 0;
-
 
88
        idealHeight = 0;
-
 
89
        minHeight = 0;
-
 
90
        minWidth = 0;
-
 
91
        incHeight = 0;
-
 
92
        incWidth = 0;
-
 
93
    }
75
}BORDER_DATA_t;
94
}BORDER_DATA_t;
76
 
95
 
77
typedef struct CURSOR_STYLE_t
96
typedef struct CURSOR_STYLE_t
78
{
97
{
79
    std::string name;
98
    std::string name;
80
    std::string baseFile;
99
    std::string baseFile;
81
    int multiColor;
100
    int multiColor;
82
    std::vector<int> g3Equiv;
101
    std::vector<int> g3Equiv;
-
 
102
 
-
 
103
    void init()
-
 
104
    {
-
 
105
        multiColor = 0;
-
 
106
    }
83
}CURSOR_STYLE_t;
107
}CURSOR_STYLE_t;
84
 
108
 
85
typedef struct SLIDER_STYLE_t
109
typedef struct SLIDER_STYLE_t
86
{
110
{
87
    std::string name;
111
    std::string name;
Line 89... Line 113...
89
    int multiColor;
113
    int multiColor;
90
    int incRepeat;
114
    int incRepeat;
91
    int minSize;
115
    int minSize;
92
    int fixedSize;
116
    int fixedSize;
93
    std::vector<int> g3Equiv;
117
    std::vector<int> g3Equiv;
-
 
118
 
-
 
119
    void init()
-
 
120
    {
-
 
121
        multiColor = 0;
-
 
122
        incRepeat = 0;
-
 
123
        minSize = 0;
-
 
124
        fixedSize = 0;
-
 
125
    }
94
}SLIDER_STYLE_t;
126
}SLIDER_STYLE_t;
95
 
127
 
96
typedef struct EFFECT_STYLE_t
128
typedef struct EFFECT_STYLE_t
97
{
129
{
98
    std::string name;
130
    std::string name;
Line 101... Line 133...
101
    int starty;
133
    int starty;
102
    int height;
134
    int height;
103
    int width;
135
    int width;
104
    int cutout;
136
    int cutout;
105
    std::string pixelMap;
137
    std::string pixelMap;
-
 
138
 
-
 
139
    void init()
-
 
140
    {
-
 
141
        number = 0;
-
 
142
        startx = 0;
-
 
143
        starty = 0;
-
 
144
        height = 0;
-
 
145
        width = 0;
-
 
146
        cutout = 0;
-
 
147
    }
106
}EFFECT_STYLE_t;
148
}EFFECT_STYLE_t;
107
 
149
 
108
typedef struct POPUP_EFFECT_t
150
typedef struct POPUP_EFFECT_t
109
{
151
{
110
    std::string name;
152
    std::string name;
111
    int number;
153
    int number;
112
    int valueUsed;
154
    int valueUsed;
-
 
155
 
-
 
156
    void init()
-
 
157
    {
-
 
158
        number = 0;
-
 
159
        valueUsed = 0;
-
 
160
    }
113
}POPUP_EFFECT_t;
161
}POPUP_EFFECT_t;
114
 
162
 
115
typedef struct DRAW_t
163
typedef struct DRAW_t
116
{
164
{
117
    std::vector<FAMILY_t> borders;
165
    std::vector<FAMILY_t> borders;