]> git.sesse.net Git - vlc/blob - modules/gui/skins2/parser/interpreter.hpp
Copyright fixes
[vlc] / modules / gui / skins2 / parser / interpreter.hpp
1 /*****************************************************************************
2  * interpreter.hpp
3  *****************************************************************************
4  * Copyright (C) 2003 VideoLAN (Centrale Réseaux) and its contributors
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
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
25 #ifndef INTERPRETER_HPP
26 #define INTERPRETER_HPP
27
28 #include "../commands/cmd_generic.hpp"
29 #include <map>
30
31 class Theme;
32 class VarBool;
33 class VarList;
34 class VarPercent;
35
36
37 /// Command interpreter for scripts in the XML
38 class Interpreter: public SkinObject
39 {
40     public:
41         /// Get the instance of Interpreter
42         static Interpreter *instance( intf_thread_t *pIntf );
43
44         /// Delete the instance of Interpreter
45         static void destroy( intf_thread_t *pIntf );
46
47         /// Parse an action tag and returns a pointer on a command
48         /// (the intepreter takes care of deleting it, don't do it
49         ///  yourself !)
50         CmdGeneric *parseAction( const string &rAction, Theme *pTheme );
51
52         /// Returns the boolean variable corresponding to the given name
53         VarBool *getVarBool( const string &rName, Theme *pTheme );
54
55
56         /// Returns the percent variable corresponding to the given name
57         VarPercent *getVarPercent( const string &rName, Theme *pTheme );
58
59         /// Returns the list variable corresponding to the given name
60         VarList *getVarList( const string &rName, Theme *pTheme );
61
62     private:
63         /// Map of global commands
64         map<string, CmdGenericPtr> m_commandMap;
65
66         // Private because it is a singleton
67         Interpreter( intf_thread_t *pIntf );
68         virtual ~Interpreter() {}
69 };
70
71 #endif