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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * theme.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: theme.hpp 7259 2004-04-03 11:30:26Z ipkiss $
  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 THEME_HPP
  25. #define THEME_HPP
  26. #include "../src/generic_bitmap.hpp"
  27. #include "../src/generic_font.hpp"
  28. #include "../src/generic_layout.hpp"
  29. #include "../src/window_manager.hpp"
  30. #include "../commands/cmd_generic.hpp"
  31. #include "../utils/bezier.hpp"
  32. #include "../utils/variable.hpp"
  33. #include "../controls/ctrl_generic.hpp"
  34. #include <string>
  35. #include <list>
  36. #include <map>
  37. class Builder;
  38. class Interpreter;
  39. /// Class storing the data of the current theme
  40. class Theme: public SkinObject
  41. {
  42.     private:
  43.         friend class Builder;
  44.         friend class Interpreter;
  45.     public:
  46.         Theme( intf_thread_t *pIntf ): SkinObject( pIntf ),
  47.             m_windowManager( getIntf() ) {}
  48.         virtual ~Theme();
  49.         void loadConfig();
  50.         void saveConfig();
  51.         GenericBitmap *getBitmapById( const string &id );
  52.         GenericFont *getFontById( const string &id );
  53.         TopWindow *getWindowById( const string &id );
  54.         GenericLayout *getLayoutById( const string &id );
  55.         CtrlGeneric *getControlById( const string &id );
  56.         WindowManager &getWindowManager() { return m_windowManager; }
  57.     private:
  58.         /// Store the bitmaps by ID
  59.         map<string, GenericBitmapPtr> m_bitmaps;
  60.         /// Store the fonts by ID
  61.         map<string, GenericFontPtr> m_fonts;
  62.         /// Store the windows by ID
  63.         map<string, TopWindowPtr> m_windows;
  64.         /// Store the layouts by ID
  65.         map<string, GenericLayoutPtr> m_layouts;
  66.         /// Store the controls by ID
  67.         map<string, CtrlGenericPtr> m_controls;
  68.         /// Store the commands
  69.         list<CmdGenericPtr> m_commands;
  70.         /// Store the Bezier curves
  71.         list<BezierPtr> m_curves;
  72.         /// Store the variables
  73.         list<VariablePtr> m_vars;
  74.         WindowManager m_windowManager;
  75. };
  76. #endif