]> git.sesse.net Git - vlc/blob - modules/gui/skins2/commands/cmd_vars.hpp
Make Zorglub less unhappy
[vlc] / modules / gui / skins2 / commands / cmd_vars.hpp
1 /*****************************************************************************
2  * cmd_vars.hpp
3  *****************************************************************************
4  * Copyright (C) 2004 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 #ifndef CMD_VARS_HPP
25 #define CMD_VARS_HPP
26
27 #include "cmd_generic.hpp"
28 #include "../utils/ustring.hpp"
29
30 class VarText;
31
32 /// Command to notify the playlist of a change
33 DEFINE_COMMAND( NotifyPlaylist, "notify playlist" )
34
35
36 /// Command to set a text variable
37 class CmdSetText: public CmdGeneric
38 {
39     public:
40         CmdSetText( intf_thread_t *pIntf, VarText &rText,
41                     const UString &rValue ):
42             CmdGeneric( pIntf ), m_rText( rText ), m_value( rValue ) {}
43         virtual ~CmdSetText() {}
44
45         /// This method does the real job of the command
46         virtual void execute();
47
48         /// Return the type of the command
49         virtual string getType() const { return "set text"; }
50
51     private:
52         /// Text variable to set
53         VarText &m_rText;
54         /// Value to set
55         const UString m_value;
56 };
57
58
59 #endif