]> git.sesse.net Git - vlc/blob - modules/gui/skins2/commands/cmd_vars.cpp
9c846f0d70cbb45face805119efb2df2e7f6c730
[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/equalizer.hpp"
28 #include "../vars/playlist.hpp"
29 #include "../vars/playtree.hpp"
30
31
32 void CmdNotifyPlaylist::execute()
33 {
34     // Notify the playlist variable
35     Playlist &rVar = VlcProc::instance( getIntf() )->getPlaylistVar();
36     rVar.onChange();
37 }
38
39 void CmdPlaytreeChanged::execute()
40 {
41     // Notify  the playtree variable
42     Playtree &rVar = VlcProc::instance( getIntf() )->getPlaytreeVar();
43     rVar.onChange();
44 }
45
46
47 void CmdPlaytreeUpdate::execute()
48 {
49     // Notify  the playtree variable
50     Playtree &rVar = VlcProc::instance( getIntf() )->getPlaytreeVar();
51     rVar.onUpdate( m_id );
52 }
53
54
55 void CmdSetText::execute()
56 {
57     // Change the text variable
58     m_rText.set( m_value );
59 }
60
61
62 void CmdSetEqBands::execute()
63 {
64     // Change the equalizer bands
65     m_rEqBands.set( m_value );
66 }
67