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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * builder.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: builder.hpp 7173 2004-03-27 00:21:13Z asmax $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *          Olivier Teuli鑢e <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. #ifndef BUILDER_HPP
  25. #define BUILDER_HPP
  26. #include "builder_data.hpp"
  27. #include "../src/os_graphics.hpp"
  28. #include "../src/generic_window.hpp"
  29. #include "../src/generic_layout.hpp"
  30. #include "../src/generic_bitmap.hpp"
  31. #include "../src/generic_font.hpp"
  32. #include "../commands/cmd_generic.hpp"
  33. #include "../controls/ctrl_generic.hpp"
  34. #include "../utils/bezier.hpp"
  35. #include <string>
  36. #include <list>
  37. #include <map>
  38. class Theme;
  39. /// Class for skin construction
  40. class Builder: public SkinObject
  41. {
  42.     public:
  43.         Builder( intf_thread_t *pIntf, const BuilderData &rData );
  44.         virtual ~Builder() {}
  45.         /// Create a Theme object, ready to use.
  46.         /// Return NULL in case of problem
  47.         Theme *build();
  48.         /// Parse an action tag and returns a command
  49.         CmdGeneric *parseAction( const string &rAction );
  50.     private:
  51.         /// Data from the XML
  52.         const BuilderData &m_rData;
  53.         /// Theme under construction
  54.         Theme *m_pTheme;
  55.         void addTheme( const BuilderData::Theme &rData );
  56.         void addBitmap( const BuilderData::Bitmap &rData );
  57.         void addBitmapFont( const BuilderData::BitmapFont &rData );
  58.         void addFont( const BuilderData::Font &rData );
  59.         void addWindow( const BuilderData::Window &rData );
  60.         void addLayout( const BuilderData::Layout &rData );
  61.         void addAnchor( const BuilderData::Anchor &rData );
  62.         void addButton( const BuilderData::Button &rData );
  63.         void addCheckbox( const BuilderData::Checkbox &rData );
  64.         void addImage( const BuilderData::Image &rData );
  65.         void addText( const BuilderData::Text &rData );
  66.         void addRadialSlider( const BuilderData::RadialSlider &rData );
  67.         void addSlider( const BuilderData::Slider &rData );
  68.         void addList( const BuilderData::List &rData );
  69.         void addVideo( const BuilderData::Video &rData );
  70.        /// Compute the position of a control
  71.         const Position makePosition( const string &rLeftTop,
  72.                                      const string &rRightBottom,
  73.                                      int xPos, int yPos, int width, int height,
  74.                                      const Box &rBox ) const;
  75.         /// Get a font from its id
  76.         GenericFont *getFont( const string &fontId );
  77.         /// Function to parse "points" tags
  78.         Bezier *getPoints( const char *pTag ) const;
  79. };
  80. #endif