]> git.sesse.net Git - vlc/blob - modules/gui/skins2/commands/cmd_vars.hpp
* all: don't rebuild the whole playtree when an item is updated
[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 /// Command to notify the playlist of a change
36 DEFINE_COMMAND( PlaytreeChanged, "playtree changed" )
37
38 /// Command to notify the playtree of an item update
39 class CmdPlaytreeUpdate: public CmdGeneric
40 {
41     public:
42         CmdPlaytreeUpdate( intf_thread_t *pIntf, int id ):
43             CmdGeneric( pIntf ), m_id( id ) {}
44         virtual ~CmdPlaytreeUpdate() {}
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 "playtree update"; }
51
52     private:
53         /// Playlist item ID
54         int m_id;
55 };
56
57
58 /// Command to set a text variable
59 class CmdSetText: public CmdGeneric
60 {
61     public:
62         CmdSetText( intf_thread_t *pIntf, VarText &rText,
63                     const UString &rValue ):
64             CmdGeneric( pIntf ), m_rText( rText ), m_value( rValue ) {}
65         virtual ~CmdSetText() {}
66
67         /// This method does the real job of the command
68         virtual void execute();
69
70         /// Return the type of the command
71         virtual string getType() const { return "set text"; }
72
73     private:
74         /// Text variable to set
75         VarText &m_rText;
76         /// Value to set
77         const UString m_value;
78 };
79
80
81 #endif