]> git.sesse.net Git - vlc/blob - modules/gui/skins2/parser/skin_parser.hpp
116989d207a44a98c1e9b3f706ba01160164f0a7
[vlc] / modules / gui / skins2 / parser / skin_parser.hpp
1 /*****************************************************************************
2  * skin_parser.hpp
3  *****************************************************************************
4  * Copyright (C) 2004 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 #ifndef SKIN_PARSER_HPP
25 #define SKIN_PARSER_HPP
26
27 #include "xmlparser.hpp"
28 #include "builder_data.hpp"
29 #include <set>
30
31
32 /// Parser for the skin DTD
33 class SkinParser: public XMLParser
34 {
35     public:
36         SkinParser( intf_thread_t *pIntf, const string &rFileName,
37                     const string &rPath, bool useDTD = true,
38                     BuilderData *pData = NULL );
39         virtual ~SkinParser();
40
41         const BuilderData &getData() const { return *m_pData; }
42
43     private:
44         /// Container for mapping data from the XML
45         BuilderData *m_pData;
46         /// Indicate whether the class owns the data
47         bool m_ownData;
48         /// Current IDs
49         string m_curBitmapId;
50         string m_curWindowId;
51         string m_curLayoutId;
52         string m_curListId;
53         string m_curTreeId;
54         /// Current offset of the controls
55         int m_xOffset, m_yOffset;
56         list<int> m_xOffsetList, m_yOffsetList;
57         /// Layer of the current control in the layout
58         int m_curLayer;
59         /// Set of used id
60         set<string> m_idSet;
61         /// Path of the XML file being parsed
62         const string m_path;
63
64         /// Callbacks
65         virtual void handleBeginElement( const string &rName,
66                                          AttrList_t &attr );
67         virtual void handleEndElement( const string &rName );
68
69         /// Helper functions
70         //@{
71         bool convertBoolean( const char *value ) const;
72         int convertColor( const char *transcolor ) const;
73         string convertFileName( const char *fileName ) const;
74         /// Transform to int, and check that it is in the given range (if not,
75         /// the closest range boundary will be used)
76         int convertInRange( const char *value, int minValue, int maxValue,
77                             const string &rAttribute ) const;
78         //@}
79
80         /// Generate a new id
81         const string generateId() const;
82
83         /// Check if the id is unique, and if not generate a new one
84         const string uniqueId( const string &id );
85 };
86
87 #endif