cmd_vars.cpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:2k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * cmd_vars.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2004 the VideoLAN team
  5.  * $Id: 59c5848567995ab56d75174a209815512b0c211a $
  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. #include "cmd_vars.hpp"
  24. #include "../src/vlcproc.hpp"
  25. #include "../utils/var_text.hpp"
  26. #include "../vars/equalizer.hpp"
  27. #include "../vars/playtree.hpp"
  28. void CmdPlaytreeChanged::execute()
  29. {
  30.     // Notify  the playtree variable
  31.     Playtree &rVar = VlcProc::instance( getIntf() )->getPlaytreeVar();
  32.     rVar.onChange();
  33. }
  34. void CmdPlaytreeUpdate::execute()
  35. {
  36.     // Notify  the playtree variable
  37.     Playtree &rVar = VlcProc::instance( getIntf() )->getPlaytreeVar();
  38.     rVar.onUpdateItem( m_id );
  39. }
  40. bool CmdPlaytreeUpdate::checkRemove( CmdGeneric *pQueuedCommand ) const
  41. {
  42.     // We don't use RTTI - Use C-style cast
  43.     CmdPlaytreeUpdate *pUpdateCommand = (CmdPlaytreeUpdate *)(pQueuedCommand);
  44.     if( m_id == pUpdateCommand->m_id )
  45.     {
  46.         return true;
  47.     }
  48.     return false;
  49. }
  50. void CmdPlaytreeAppend::execute()
  51. {
  52.     // Notify  the playtree variable
  53.     Playtree &rVar = VlcProc::instance( getIntf() )->getPlaytreeVar();
  54.     rVar.onAppend( m_pAdd );
  55. }
  56. void CmdPlaytreeDelete::execute()
  57. {
  58.     // Notify  the playtree variable
  59.     Playtree &rVar = VlcProc::instance( getIntf() )->getPlaytreeVar();
  60.     rVar.onDelete( m_id );
  61. }
  62. void CmdSetText::execute()
  63. {
  64.     // Change the text variable
  65.     m_rText.set( m_value );
  66. }
  67. void CmdSetEqBands::execute()
  68. {
  69.     // Change the equalizer bands
  70.     m_rEqBands.set( m_value );
  71. }
  72. void CmdSetEqPreamp::execute()
  73. {
  74.     // Change the preamp variable
  75.     m_rPreamp.set( m_value, false );
  76. }