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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * builder.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: 0b7d92ebb4c510ee82639fbdf5e7917cbdae4ae9 $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *          Olivier Teulière <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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. #ifdef HAVE_CONFIG_H
  25. # include "config.h"
  26. #endif
  27. #ifndef BUILDER_HPP
  28. #define BUILDER_HPP
  29. #include "builder_data.hpp"
  30. #include "../src/skin_common.hpp"
  31. #include <string>
  32. #include <list>
  33. #include <map>
  34. class Theme;
  35. class Bezier;
  36. class CmdGeneric;
  37. class GenericFont;
  38. class Position;
  39. class GenericRect;
  40. /// Class for skin construction
  41. class Builder: public SkinObject
  42. {
  43.     public:
  44.         Builder( intf_thread_t *pIntf, const BuilderData &rData,
  45.                  const string &rPath );
  46.         virtual ~Builder();
  47.         /// Create a Theme object, ready to use.
  48.         /// Return NULL in case of problem
  49.         Theme *build();
  50.         /// Parse an action tag and returns a command
  51.         CmdGeneric *parseAction( const string &rAction );
  52.     private:
  53.         /// Data from the XML
  54.         const BuilderData &m_rData;
  55.         /// Path of the theme
  56.         const string m_path;
  57.         /// Theme under construction
  58.         Theme *m_pTheme;
  59.         void addTheme( const BuilderData::Theme &rData );
  60.         void addIniFile( const BuilderData::IniFile &rData );
  61.         void addBitmap( const BuilderData::Bitmap &rData );
  62.         void addSubBitmap( const BuilderData::SubBitmap &rData );
  63.         void addBitmapFont( const BuilderData::BitmapFont &rData );
  64.         void addFont( const BuilderData::Font &rData );
  65.         void addPopupMenu( const BuilderData::PopupMenu &rData );
  66.         void addMenuItem( const BuilderData::MenuItem &rData );
  67.         void addMenuSeparator( const BuilderData::MenuSeparator &rData );
  68.         void addWindow( const BuilderData::Window &rData );
  69.         void addLayout( const BuilderData::Layout &rData );
  70.         void addAnchor( const BuilderData::Anchor &rData );
  71.         void addButton( const BuilderData::Button &rData );
  72.         void addCheckbox( const BuilderData::Checkbox &rData );
  73.         void addImage( const BuilderData::Image &rData );
  74.         void addPanel( const BuilderData::Panel &rData );
  75.         void addText( const BuilderData::Text &rData );
  76.         void addRadialSlider( const BuilderData::RadialSlider &rData );
  77.         void addSlider( const BuilderData::Slider &rData );
  78.         void addList( const BuilderData::List &rData );
  79.         void addTree( const BuilderData::Tree &rData );
  80.         void addVideo( const BuilderData::Video &rData );
  81.         /// Compute the position of a control
  82.         const Position makePosition( const string &rLeftTop,
  83.                                      const string &rRightBottom,
  84.                                      int xPos, int yPos, int width, int height,
  85.                                      const GenericRect &rRect,
  86.                                      bool xKeepRatio = false,
  87.                                      bool yKeepRatio = false ) const;
  88.         // Build the full path of a file
  89.         string getFilePath( const string &fileName ) const;
  90.         /// Get a font from its id
  91.         GenericFont *getFont( const string &fontId );
  92.         /// Function to parse "points" tags
  93.         Bezier *getPoints( const char *pTag ) const;
  94.         /// Compute a color value
  95.         uint32_t getColor( const string &rVal ) const;
  96.         /// Image handler (used to load image files)
  97.         image_handler_t *m_pImageHandler;
  98. };
  99. #endif