skin_parser.hpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:3k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * skin_parser.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2004 the VideoLAN team
  5.  * $Id: 8ce64cb6521c9b5a66057e3fd9dd8dca8ec38ba9 $
  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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, 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, bool useDTD = true,
  34.                     BuilderData *pData = NULL );
  35.         virtual ~SkinParser();
  36.         const BuilderData &getData() const { return *m_pData; }
  37.         static int convertColor( const char *transcolor );
  38.     private:
  39.         /// Path of the theme
  40.         const string m_path;
  41.         /// Container for mapping data from the XML
  42.         BuilderData *m_pData;
  43.         /// Indicate whether the class owns the data
  44.         bool m_ownData;
  45.         /// Current IDs
  46.         string m_curBitmapId;
  47.         string m_curWindowId;
  48.         string m_curLayoutId;
  49.         string m_curPopupId;
  50.         string m_curListId;
  51.         string m_curTreeId;
  52.         /// Current position of menu items in the popups
  53.         list<int> m_popupPosList;
  54.         /// Current offset of the controls
  55.         int m_xOffset, m_yOffset;
  56.         list<int> m_xOffsetList, m_yOffsetList;
  57.         /// Stack of panel ids
  58.         list<string> m_panelStack;
  59.         /// Layer of the current control in the layout
  60.         int m_curLayer;
  61.         /// Set of used id
  62.         set<string> m_idSet;
  63.         /// Callbacks
  64.         virtual void handleBeginElement( const string &rName,
  65.                                          AttrList_t &attr );
  66.         virtual void handleEndElement( const string &rName );
  67.         /// Helper functions
  68.         //@{
  69.         bool convertBoolean( const char *value ) const;
  70.         /// Transform to int, and check that it is in the given range (if not,
  71.         /// the closest range boundary will be used)
  72.         int convertInRange( const char *value, int minValue, int maxValue,
  73.                             const string &rAttribute ) const;
  74.         //@}
  75.         /// Generate a new id
  76.         const string generateId() const;
  77.         /// Check if the id is unique, and if not generate a new one
  78.         const string uniqueId( const string &id );
  79. };
  80. #endif