]> git.sesse.net Git - vlc/blob - modules/gui/skins2/parser/builder_data.hpp
9f3022a31adcedc2410ad584f71274f0bb3c109e
[vlc] / modules / gui / skins2 / parser / builder_data.hpp
1 /*****************************************************************************
2  * builder_data.hpp
3  *****************************************************************************
4  * Copyright (C) 2003 VideoLAN
5  * $Id$
6  *
7  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
8  *          Olivier Teulière <ipkiss@via.ecp.fr>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 //File generated by gen_builder.py
26 //DO NOT EDIT BY HAND !
27
28 #ifndef BUILDER_DATA_HPP
29 #define BUILDER_DATA_HPP
30
31 #include <vlc/vlc.h>
32 #include <list>
33 #include <map>
34 #include <string>
35
36 using namespace std;
37
38 /// Structure for mapping data from XML file
39 struct BuilderData
40 {
41
42     /// Type definition
43     struct Theme
44     {
45         Theme( const string & tooltipfont, int magnet, uint32_t alpha, uint32_t moveAlpha ):
46 m_tooltipfont( tooltipfont ), m_magnet( magnet ), m_alpha( alpha ), m_moveAlpha( moveAlpha ) {}
47
48         const string m_tooltipfont;
49         int m_magnet;
50         uint32_t m_alpha;
51         uint32_t m_moveAlpha;
52     };
53     /// List
54     list<Theme> m_listTheme;
55
56     /// Type definition
57     struct Bitmap
58     {
59         Bitmap( const string & id, const string & fileName, uint32_t alphaColor ):
60 m_id( id ), m_fileName( fileName ), m_alphaColor( alphaColor ) {}
61
62         const string m_id;
63         const string m_fileName;
64         uint32_t m_alphaColor;
65     };
66     /// List
67     list<Bitmap> m_listBitmap;
68
69     /// Type definition
70     struct BitmapFont
71     {
72         BitmapFont( const string & id, const string & file, const string & type ):
73 m_id( id ), m_file( file ), m_type( type ) {}
74
75         const string m_id;
76         const string m_file;
77         const string m_type;
78     };
79     /// List
80     list<BitmapFont> m_listBitmapFont;
81
82     /// Type definition
83     struct Font
84     {
85         Font( const string & id, const string & fontFile, int size ):
86 m_id( id ), m_fontFile( fontFile ), m_size( size ) {}
87
88         const string m_id;
89         const string m_fontFile;
90         int m_size;
91     };
92     /// List
93     list<Font> m_listFont;
94
95     /// Type definition
96     struct Window
97     {
98         Window( const string & id, int xPos, int yPos, bool visible, bool dragDrop, bool playOnDrop ):
99 m_id( id ), m_xPos( xPos ), m_yPos( yPos ), m_visible( visible ), m_dragDrop( dragDrop ), m_playOnDrop( playOnDrop ) {}
100
101         const string m_id;
102         int m_xPos;
103         int m_yPos;
104         bool m_visible;
105         bool m_dragDrop;
106         bool m_playOnDrop;
107     };
108     /// List
109     list<Window> m_listWindow;
110
111     /// Type definition
112     struct Layout
113     {
114         Layout( const string & id, int width, int height, int minWidth, int maxWidth, int minHeight, int maxHeight, const string & windowId ):
115 m_id( id ), m_width( width ), m_height( height ), m_minWidth( minWidth ), m_maxWidth( maxWidth ), m_minHeight( minHeight ), m_maxHeight( maxHeight ), m_windowId( windowId ) {}
116
117         const string m_id;
118         int m_width;
119         int m_height;
120         int m_minWidth;
121         int m_maxWidth;
122         int m_minHeight;
123         int m_maxHeight;
124         const string m_windowId;
125     };
126     /// List
127     list<Layout> m_listLayout;
128
129     /// Type definition
130     struct Anchor
131     {
132         Anchor( int xPos, int yPos, int range, int priority, const string & points, const string & layoutId ):
133 m_xPos( xPos ), m_yPos( yPos ), m_range( range ), m_priority( priority ), m_points( points ), m_layoutId( layoutId ) {}
134
135         int m_xPos;
136         int m_yPos;
137         int m_range;
138         int m_priority;
139         const string m_points;
140         const string m_layoutId;
141     };
142     /// List
143     list<Anchor> m_listAnchor;
144
145     /// Type definition
146     struct Button
147     {
148         Button( const string & id, int xPos, int yPos, const string & leftTop, const string & rightBottom, const string & visible, const string & upId, const string & downId, const string & overId, const string & actionId, const string & tooltip, const string & help, int layer, const string & windowId, const string & layoutId ):
149 m_id( id ), m_xPos( xPos ), m_yPos( yPos ), m_leftTop( leftTop ), m_rightBottom( rightBottom ), m_visible( visible ), m_upId( upId ), m_downId( downId ), m_overId( overId ), m_actionId( actionId ), m_tooltip( tooltip ), m_help( help ), m_layer( layer ), m_windowId( windowId ), m_layoutId( layoutId ) {}
150
151         const string m_id;
152         int m_xPos;
153         int m_yPos;
154         const string m_leftTop;
155         const string m_rightBottom;
156         const string m_visible;
157         const string m_upId;
158         const string m_downId;
159         const string m_overId;
160         const string m_actionId;
161         const string m_tooltip;
162         const string m_help;
163         int m_layer;
164         const string m_windowId;
165         const string m_layoutId;
166     };
167     /// List
168     list<Button> m_listButton;
169
170     /// Type definition
171     struct Checkbox
172     {
173         Checkbox( const string & id, int xPos, int yPos, const string & leftTop, const string & rightBottom, const string & visible, const string & up1Id, const string & down1Id, const string & over1Id, const string & up2Id, const string & down2Id, const string & over2Id, const string & state, const string & action1, const string & action2, const string & tooltip1, const string & tooltip2, const string & help, int layer, const string & windowId, const string & layoutId ):
174 m_id( id ), m_xPos( xPos ), m_yPos( yPos ), m_leftTop( leftTop ), m_rightBottom( rightBottom ), m_visible( visible ), m_up1Id( up1Id ), m_down1Id( down1Id ), m_over1Id( over1Id ), m_up2Id( up2Id ), m_down2Id( down2Id ), m_over2Id( over2Id ), m_state( state ), m_action1( action1 ), m_action2( action2 ), m_tooltip1( tooltip1 ), m_tooltip2( tooltip2 ), m_help( help ), m_layer( layer ), m_windowId( windowId ), m_layoutId( layoutId ) {}
175
176         const string m_id;
177         int m_xPos;
178         int m_yPos;
179         const string m_leftTop;
180         const string m_rightBottom;
181         const string m_visible;
182         const string m_up1Id;
183         const string m_down1Id;
184         const string m_over1Id;
185         const string m_up2Id;
186         const string m_down2Id;
187         const string m_over2Id;
188         const string m_state;
189         const string m_action1;
190         const string m_action2;
191         const string m_tooltip1;
192         const string m_tooltip2;
193         const string m_help;
194         int m_layer;
195         const string m_windowId;
196         const string m_layoutId;
197     };
198     /// List
199     list<Checkbox> m_listCheckbox;
200
201     /// Type definition
202     struct Image
203     {
204         Image( const string & id, int xPos, int yPos, const string & leftTop, const string & rightBottom, const string & visible, const string & bmpId, const string & actionId, const string & help, int layer, const string & windowId, const string & layoutId ):
205 m_id( id ), m_xPos( xPos ), m_yPos( yPos ), m_leftTop( leftTop ), m_rightBottom( rightBottom ), m_visible( visible ), m_bmpId( bmpId ), m_actionId( actionId ), m_help( help ), m_layer( layer ), m_windowId( windowId ), m_layoutId( layoutId ) {}
206
207         const string m_id;
208         int m_xPos;
209         int m_yPos;
210         const string m_leftTop;
211         const string m_rightBottom;
212         const string m_visible;
213         const string m_bmpId;
214         const string m_actionId;
215         const string m_help;
216         int m_layer;
217         const string m_windowId;
218         const string m_layoutId;
219     };
220     /// List
221     list<Image> m_listImage;
222
223     /// Type definition
224     struct Text
225     {
226         Text( const string & id, int xPos, int yPos, const string & visible, const string & fontId, const string & text, int width, const string & leftTop, const string & rightBottom, uint32_t color, const string & help, int layer, const string & windowId, const string & layoutId ):
227 m_id( id ), m_xPos( xPos ), m_yPos( yPos ), m_visible( visible ), m_fontId( fontId ), m_text( text ), m_width( width ), m_leftTop( leftTop ), m_rightBottom( rightBottom ), m_color( color ), m_help( help ), m_layer( layer ), m_windowId( windowId ), m_layoutId( layoutId ) {}
228
229         const string m_id;
230         int m_xPos;
231         int m_yPos;
232         const string m_visible;
233         const string m_fontId;
234         const string m_text;
235         int m_width;
236         const string m_leftTop;
237         const string m_rightBottom;
238         uint32_t m_color;
239         const string m_help;
240         int m_layer;
241         const string m_windowId;
242         const string m_layoutId;
243     };
244     /// List
245     list<Text> m_listText;
246
247     /// Type definition
248     struct RadialSlider
249     {
250         RadialSlider( const string & id, const string & visible, int xPos, int yPos, const string & leftTop, const string & rightBottom, const string & sequence, int nbImages, float minAngle, float maxAngle, const string & value, const string & tooltip, const string & help, int layer, const string & windowId, const string & layoutId ):
251 m_id( id ), m_visible( visible ), m_xPos( xPos ), m_yPos( yPos ), m_leftTop( leftTop ), m_rightBottom( rightBottom ), m_sequence( sequence ), m_nbImages( nbImages ), m_minAngle( minAngle ), m_maxAngle( maxAngle ), m_value( value ), m_tooltip( tooltip ), m_help( help ), m_layer( layer ), m_windowId( windowId ), m_layoutId( layoutId ) {}
252
253         const string m_id;
254         const string m_visible;
255         int m_xPos;
256         int m_yPos;
257         const string m_leftTop;
258         const string m_rightBottom;
259         const string m_sequence;
260         int m_nbImages;
261         float m_minAngle;
262         float m_maxAngle;
263         const string m_value;
264         const string m_tooltip;
265         const string m_help;
266         int m_layer;
267         const string m_windowId;
268         const string m_layoutId;
269     };
270     /// List
271     list<RadialSlider> m_listRadialSlider;
272
273     /// Type definition
274     struct Slider
275     {
276         Slider( const string & id, const string & visible, int xPos, int yPos, const string & leftTop, const string & rightBottom, const string & upId, const string & downId, const string & overId, const string & points, int thickness, const string & value, const string & tooltip, const string & help, int layer, const string & windowId, const string & layoutId ):
277 m_id( id ), m_visible( visible ), m_xPos( xPos ), m_yPos( yPos ), m_leftTop( leftTop ), m_rightBottom( rightBottom ), m_upId( upId ), m_downId( downId ), m_overId( overId ), m_points( points ), m_thickness( thickness ), m_value( value ), m_tooltip( tooltip ), m_help( help ), m_layer( layer ), m_windowId( windowId ), m_layoutId( layoutId ) {}
278
279         const string m_id;
280         const string m_visible;
281         int m_xPos;
282         int m_yPos;
283         const string m_leftTop;
284         const string m_rightBottom;
285         const string m_upId;
286         const string m_downId;
287         const string m_overId;
288         const string m_points;
289         int m_thickness;
290         const string m_value;
291         const string m_tooltip;
292         const string m_help;
293         int m_layer;
294         const string m_windowId;
295         const string m_layoutId;
296     };
297     /// List
298     list<Slider> m_listSlider;
299
300     /// Type definition
301     struct List
302     {
303         List( const string & id, int xPos, int yPos, const string & visible, int width, int height, const string & leftTop, const string & rightBottom, const string & fontId, const string & var, uint32_t fgColor, uint32_t playColor, uint32_t bgColor1, uint32_t bgColor2, uint32_t selColor, const string & help, int layer, const string & windowId, const string & layoutId ):
304 m_id( id ), m_xPos( xPos ), m_yPos( yPos ), m_visible( visible ), m_width( width ), m_height( height ), m_leftTop( leftTop ), m_rightBottom( rightBottom ), m_fontId( fontId ), m_var( var ), m_fgColor( fgColor ), m_playColor( playColor ), m_bgColor1( bgColor1 ), m_bgColor2( bgColor2 ), m_selColor( selColor ), m_help( help ), m_layer( layer ), m_windowId( windowId ), m_layoutId( layoutId ) {}
305
306         const string m_id;
307         int m_xPos;
308         int m_yPos;
309         const string m_visible;
310         int m_width;
311         int m_height;
312         const string m_leftTop;
313         const string m_rightBottom;
314         const string m_fontId;
315         const string m_var;
316         uint32_t m_fgColor;
317         uint32_t m_playColor;
318         uint32_t m_bgColor1;
319         uint32_t m_bgColor2;
320         uint32_t m_selColor;
321         const string m_help;
322         int m_layer;
323         const string m_windowId;
324         const string m_layoutId;
325     };
326     /// List
327     list<List> m_listList;
328
329     /// Type definition
330     struct Video
331     {
332         Video( const string & id, int xPos, int yPos, int width, int height, const string & leftTop, const string & rightBottom, const string & visible, const string & help, int layer, const string & windowId, const string & layoutId ):
333 m_id( id ), m_xPos( xPos ), m_yPos( yPos ), m_width( width ), m_height( height ), m_leftTop( leftTop ), m_rightBottom( rightBottom ), m_visible( visible ), m_help( help ), m_layer( layer ), m_windowId( windowId ), m_layoutId( layoutId ) {}
334
335         const string m_id;
336         int m_xPos;
337         int m_yPos;
338         int m_width;
339         int m_height;
340         const string m_leftTop;
341         const string m_rightBottom;
342         const string m_visible;
343         const string m_help;
344         int m_layer;
345         const string m_windowId;
346         const string m_layoutId;
347     };
348     /// List
349     list<Video> m_listVideo;
350
351
352 };
353
354 #endif