]> git.sesse.net Git - vlc/blob - modules/gui/skins2/commands/cmd_vars.cpp
* all: don't rebuild the whole playtree when an item is updated
[vlc] / modules / gui / skins2 / commands / cmd_vars.cpp
1 /*****************************************************************************
2  * cmd_vars.cpp
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 #include "cmd_vars.hpp"
25 #include "../src/vlcproc.hpp"
26 #include "../utils/var_text.hpp"
27 #include "../vars/playlist.hpp"
28 #include "../vars/playtree.hpp"
29
30
31 void CmdNotifyPlaylist::execute()
32 {
33     // Notify the playlist variable
34     Playlist &rVar = VlcProc::instance( getIntf() )->getPlaylistVar();
35     rVar.onChange();
36 }
37
38 void CmdPlaytreeChanged::execute()
39 {
40     // Notify  the playtree variable
41     Playtree &rVar = VlcProc::instance( getIntf() )->getPlaytreeVar();
42     rVar.onChange();
43 }
44
45
46 void CmdPlaytreeUpdate::execute()
47 {
48     // Notify  the playtree variable
49     Playtree &rVar = VlcProc::instance( getIntf() )->getPlaytreeVar();
50     rVar.onUpdate( m_id );
51 }
52
53
54 void CmdSetText::execute()
55 {
56     // Change the text variable
57     m_rText.set( m_value );
58 }
59