]> git.sesse.net Git - vlc/blob - modules/gui/skins2/src/theme.hpp
Skins2: Replace some theme macros by templated code.
[vlc] / modules / gui / skins2 / src / theme.hpp
1 /*****************************************************************************
2  * theme.hpp
3  *****************************************************************************
4  * Copyright (C) 2003 the VideoLAN team
5  * $Id$
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 along
21  * with this program; if not, write to the Free Software Foundation, Inc.,
22  * 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #ifndef THEME_HPP
26 #define THEME_HPP
27
28 #include "generic_bitmap.hpp"
29 #include "generic_font.hpp"
30 #include "generic_layout.hpp"
31 #include "popup.hpp"
32 #include "../src/window_manager.hpp"
33 #include "../commands/cmd_generic.hpp"
34 #include "../utils/bezier.hpp"
35 #include "../utils/variable.hpp"
36 #include "../utils/position.hpp"
37 #include "../controls/ctrl_generic.hpp"
38 #include <string>
39 #include <list>
40 #include <map>
41
42 class Builder;
43 class Interpreter;
44
45 /// Class storing the data of the current theme
46 class Theme: public SkinObject
47 {
48 private:
49     friend class Builder;
50     friend class Interpreter;
51 public:
52     Theme( intf_thread_t *pIntf ): SkinObject( pIntf ),
53         m_windowManager( getIntf() ) { }
54     virtual ~Theme();
55
56     void loadConfig();
57     void saveConfig();
58
59     GenericBitmap *getBitmapById( const string &id ) const;
60     GenericFont *getFontById( const string &id ) const;
61
62 #   define ObjByID( var ) ( const string &id ) const \
63         { return var.find_object( id ); }
64     Popup         *getPopupById    ObjByID( m_popups    )
65     TopWindow     *getWindowById   ObjByID( m_windows   )
66     GenericLayout *getLayoutById   ObjByID( m_layouts   )
67     CtrlGeneric   *getControlById  ObjByID( m_controls  )
68     Position      *getPositionById ObjByID( m_positions )
69 #   undef  ObjById
70
71     WindowManager &getWindowManager() { return m_windowManager; }
72
73 private:
74     template<class T> class IDmap: public std::map<string, T> {
75     private:
76         typedef typename std::map<string, T> parent;
77     public:
78         typename T::pointer find_object(const string &id) const
79         {
80             typename parent::const_iterator it = parent::find( id );
81             return it!=parent::end() ? it->second.get() : NULL;
82         }
83         typename T::pointer find_first_object(const string &id) const;
84     };
85     /// Store the bitmaps by ID
86     IDmap<GenericBitmapPtr> m_bitmaps;
87     /// Store the fonts by ID
88     IDmap<GenericFontPtr> m_fonts;
89     /// Store the popups by ID
90     IDmap<PopupPtr> m_popups;
91     /// Store the windows by ID
92     IDmap<TopWindowPtr> m_windows;
93     /// Store the layouts by ID
94     IDmap<GenericLayoutPtr> m_layouts;
95     /// Store the controls by ID
96     IDmap<CtrlGenericPtr> m_controls;
97     /// Store the panel positions by ID
98     IDmap<PositionPtr> m_positions;
99     /// Store the commands
100     list<CmdGenericPtr> m_commands;
101     /// Store the Bezier curves
102     list<BezierPtr> m_curves;
103     /// Store the variables
104     list<VariablePtr> m_vars;
105
106     WindowManager m_windowManager;
107 };
108
109
110 #endif