]> git.sesse.net Git - vlc/blob - modules/gui/skins2/parser/skin_parser.hpp
* parser/builder.cpp, parser/skin_parser.cpp: unique IDs are generated
[vlc] / modules / gui / skins2 / parser / skin_parser.hpp
1 /*****************************************************************************
2  * skin_parser.hpp
3  *****************************************************************************
4  * Copyright (C) 2004 VideoLAN
5  * $Id: skin_parser.hpp,v 1.2 2004/03/01 18:33:31 asmax Exp $
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         virtual ~SkinParser() {}
38
39         const BuilderData &getData() const { return m_data; }
40
41     private:
42         /// Container for mapping data from the XML
43         BuilderData m_data;
44         /// Current IDs
45         string m_curWindowId;
46         string m_curLayoutId;
47         string m_curListId;
48         /// Current offset of the controls
49         int m_xOffset, m_yOffset;
50         list<int> m_xOffsetList, m_yOffsetList;
51         /// Layer of the current control in the layout
52         int m_curLayer;
53         /// Set of used id
54         set<string> m_idSet;
55
56         /// Callbacks
57         virtual void handleBeginElement( const string &rName, AttrList_t &attr );
58         virtual void handleEndElement( const string &rName );
59
60         /// Helper functions
61         bool ConvertBoolean( const char *value ) const;
62         int ConvertColor( const char *transcolor ) const;
63
64         /// Generate a new id
65         const string generateId() const;
66
67         /// Check if the id is unique, and if not generate a new one
68         const string uniqueId( const string &id );
69 };
70
71 #endif