]> git.sesse.net Git - vlc/blob - modules/gui/skins2/commands/cmd_vars.hpp
* async_queue.*: AsyncQueue::remove is now thread-safe to avoid potential
[vlc] / modules / gui / skins2 / commands / cmd_vars.hpp
1 /*****************************************************************************
2  * cmd_vars.hpp
3  *****************************************************************************
4  * Copyright (C) 2004 VideoLAN
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 Stream;
31
32 /// Command to notify the playlist of a change
33 DEFINE_COMMAND( NotifyPlaylist, "notify playlist" )
34
35
36 /// Command to set a stream variable
37 class CmdSetStream: public CmdGeneric
38 {
39     public:
40         CmdSetStream( intf_thread_t *pIntf, Stream &rStream,
41                       const UString &rName, bool updateVLC ):
42             CmdGeneric( pIntf ), m_rStream( rStream ), m_name( rName ),
43             m_updateVLC( updateVLC ) {}
44         virtual ~CmdSetStream() {}
45
46         /// This method does the real job of the command
47         virtual void execute();
48
49         /// Return the type of the command
50         virtual string getType() const { return "set stream"; }
51
52     private:
53         /// Stream variable to set
54         Stream &m_rStream;
55         /// Value to set
56         const UString m_name;
57         bool m_updateVLC;
58 };
59
60
61 #endif