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

midi

开发平台:

Unix_Linux

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