]> git.sesse.net Git - vlc/blob - modules/gui/skins2/commands/cmd_vars.cpp
FSF address change.
[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/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.onUpdateItem( m_id );
52 }
53
54 bool CmdPlaytreeUpdate::checkRemove( CmdGeneric *pQueuedCommand ) const
55 {
56
57     CmdPlaytreeUpdate *pUpdateCommand = (CmdPlaytreeUpdate *)(pQueuedCommand);
58     //CmdPlaytreeUpdate *pUpdateCommand = dynamic_cast<CmdPlaytreeUpdate *>(pQueuedCommand);
59     if( m_id == pUpdateCommand->m_id )
60     {
61         return true;
62     }
63     return false;
64 }
65
66
67 void CmdPlaytreeAppend::execute()
68 {
69     // Notify  the playtree variable
70     Playtree &rVar = VlcProc::instance( getIntf() )->getPlaytreeVar();
71     rVar.onAppend( m_pAdd );
72 }
73
74 void CmdSetText::execute()
75 {
76     // Change the text variable
77     m_rText.set( m_value );
78 }
79
80
81 void CmdSetEqBands::execute()
82 {
83     // Change the equalizer bands
84     m_rEqBands.set( m_value );
85 }
86
87
88 void CmdSetEqPreamp::execute()
89 {
90     // Change the preamp variable
91     m_rPreamp.set( m_value, false );
92 }