]> git.sesse.net Git - vlc/blob - modules/gui/skins2/commands/cmd_vars.cpp
skins2: fix proccessing item-change at playlist level
[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 along
20  * with this program; if not, write to the Free Software Foundation, Inc.,
21  * 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     VlcProc::instance( getIntf() )->getPlaytreeVar().onChange();
34 }
35
36 void CmdPlaytreeUpdate::execute()
37 {
38     if( !m_pItem )
39         return;
40
41     playlist_t* pPlaylist = getIntf()->p_sys->p_playlist;
42     playlist_Lock( pPlaylist );
43     playlist_item_t* p_plItem = playlist_ItemGetByInput( pPlaylist, m_pItem );
44     int id = p_plItem ? p_plItem->i_id : 0;
45     playlist_Unlock( pPlaylist );
46
47     if( id )
48         VlcProc::instance( getIntf() )->getPlaytreeVar().onUpdateItem( id );
49 }
50
51 bool CmdPlaytreeUpdate::checkRemove( CmdGeneric *pQueuedCommand ) const
52 {
53     // We don't use RTTI - Use C-style cast
54     CmdPlaytreeUpdate *pUpdateCommand = (CmdPlaytreeUpdate *)(pQueuedCommand);
55     return m_pItem == pUpdateCommand->m_pItem;
56 }
57
58
59 void CmdPlaytreeAppend::execute()
60 {
61     VlcProc::instance( getIntf() )->getPlaytreeVar().onAppend( m_pAdd );
62 }
63
64 void CmdPlaytreeDelete::execute()
65 {
66     VlcProc::instance( getIntf() )->getPlaytreeVar().onDelete( m_id );
67 }
68
69 void CmdSetText::execute()
70 {
71     m_rText.set( m_value );
72 }
73
74
75 void CmdSetEqBands::execute()
76 {
77     m_rEqBands.set( m_value );
78 }
79
80
81 void CmdSetEqPreamp::execute()
82 {
83     m_rPreamp.set( m_value, false );
84 }