skin_parser.hpp
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:3k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * skin_parser.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2004 VideoLAN
  5.  * $Id: skin_parser.hpp 7369 2004-04-18 18:11:51Z ipkiss $
  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. #ifndef SKIN_PARSER_HPP
  24. #define SKIN_PARSER_HPP
  25. #include "xmlparser.hpp"
  26. #include "builder_data.hpp"
  27. #include <set>
  28. /// Parser for the skin DTD
  29. class SkinParser: public XMLParser
  30. {
  31.     public:
  32.         SkinParser( intf_thread_t *pIntf, const string &rFileName,
  33.                     const string &rPath );
  34.         virtual ~SkinParser() {}
  35.         const BuilderData &getData() const { return m_data; }
  36.     private:
  37.         // Static variable to avoid initializing catalogs twice
  38.         static bool m_initialized;
  39.         /// Container for mapping data from the XML
  40.         BuilderData m_data;
  41.         /// Current IDs
  42.         string m_curWindowId;
  43.         string m_curLayoutId;
  44.         string m_curListId;
  45.         /// Current offset of the controls
  46.         int m_xOffset, m_yOffset;
  47.         list<int> m_xOffsetList, m_yOffsetList;
  48.         /// Layer of the current control in the layout
  49.         int m_curLayer;
  50.         /// Set of used id
  51.         set<string> m_idSet;
  52.         /// Path of the XML file being parsed
  53.         const string m_path;
  54.         /// Callbacks
  55.         virtual void handleBeginElement( const string &rName,
  56.                                          AttrList_t &attr );
  57.         virtual void handleEndElement( const string &rName );
  58.         /// Helper functions
  59.         //@{
  60.         bool convertBoolean( const char *value ) const;
  61.         int convertColor( const char *transcolor ) const;
  62.         string convertFileName( const char *fileName ) const;
  63.         /// Transform to int, and check that it is in the given range (if not,
  64.         /// the closest range boundary will be used)
  65.         int convertInRange( const char *value, int minValue, int maxValue,
  66.                             const string &rAttribute ) const;
  67.         //@}
  68.         /// Generate a new id
  69.         const string generateId() const;
  70.         /// Check if the id is unique, and if not generate a new one
  71.         const string uniqueId( const string &id );
  72. };
  73. #endif