]> git.sesse.net Git - vlc/blob - modules/gui/skins2/commands/cmd_vars.cpp
Merge back branch 0.8.6-playlist-vlm to trunk.
[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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, 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/playtree.hpp"
29
30
31 void CmdPlaytreeChanged::execute()
32 {
33     // Notify  the playtree variable
34     Playtree &rVar = VlcProc::instance( getIntf() )->getPlaytreeVar();
35     rVar.onChange();
36 }
37
38 void CmdPlaytreeUpdate::execute()
39 {
40     // Notify  the playtree variable
41     Playtree &rVar = VlcProc::instance( getIntf() )->getPlaytreeVar();
42     rVar.onUpdateItem( m_id );
43 }
44
45 bool CmdPlaytreeUpdate::checkRemove( CmdGeneric *pQueuedCommand ) const
46 {
47     // We don't use RTTI - Use C-style cast
48     CmdPlaytreeUpdate *pUpdateCommand = (CmdPlaytreeUpdate *)(pQueuedCommand);
49     if( m_id == pUpdateCommand->m_id )
50     {
51         return true;
52     }
53     return false;
54 }
55
56
57 void CmdPlaytreeAppend::execute()
58 {
59     // Notify  the playtree variable
60     Playtree &rVar = VlcProc::instance( getIntf() )->getPlaytreeVar();
61     rVar.onAppend( m_pAdd );
62 }
63
64 void CmdPlaytreeDelete::execute()
65 {
66     // Notify  the playtree variable
67     Playtree &rVar = VlcProc::instance( getIntf() )->getPlaytreeVar();
68     rVar.onDelete( m_id );
69 }
70
71 void CmdSetText::execute()
72 {
73     // Change the text variable
74     m_rText.set( m_value );
75 }
76
77
78 void CmdSetEqBands::execute()
79 {
80     // Change the equalizer bands
81     m_rEqBands.set( m_value );
82 }
83
84
85 void CmdSetEqPreamp::execute()
86 {
87     // Change the preamp variable
88     m_rPreamp.set( m_value, false );
89 }