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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * cmd_vars.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2004 the VideoLAN team
  5.  * $Id: 608ee4e659a657e077fcc7b906e07d2269505f99 $
  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. #ifndef CMD_VARS_HPP
  24. #define CMD_VARS_HPP
  25. #include "cmd_generic.hpp"
  26. #include "../utils/ustring.hpp"
  27. class EqualizerBands;
  28. class EqualizerPreamp;
  29. class VarText;
  30. /// Command to notify the playlist of a change
  31. DEFINE_COMMAND( NotifyPlaylist, "notify playlist" )
  32. /// Command to notify the playlist of a change
  33. DEFINE_COMMAND( PlaytreeChanged, "playtree changed" )
  34. /// Command to notify the playtree of an item update
  35. class CmdPlaytreeUpdate: public CmdGeneric
  36. {
  37.     public:
  38.         CmdPlaytreeUpdate( intf_thread_t *pIntf, int id ):
  39.             CmdGeneric( pIntf ), m_id( id ) {}
  40.         virtual ~CmdPlaytreeUpdate() {}
  41.         /// This method does the real job of the command
  42.         virtual void execute();
  43.         /// Return the type of the command
  44.         virtual string getType() const { return "playtree update"; }
  45.         /// Only accept removal of command if they concern the same item
  46.         virtual bool checkRemove( CmdGeneric * ) const;
  47.     private:
  48.         /// Playlist item ID
  49.         int m_id;
  50. };
  51. /// Command to notify the playtree of an item append
  52. class CmdPlaytreeAppend: public CmdGeneric
  53. {
  54.     public:
  55.         CmdPlaytreeAppend( intf_thread_t *pIntf, playlist_add_t *p_add ) :
  56.             CmdGeneric( pIntf ), m_pAdd( p_add ) {}
  57.         virtual ~CmdPlaytreeAppend() {}
  58.         /// This method does the real job of the command
  59.         virtual void execute();
  60.         /// Return the type of the command
  61.         virtual string getType() const { return "playtree append"; }
  62.     private:
  63.         playlist_add_t * m_pAdd;
  64. };
  65. /// Command to notify the playtree of an item deletion
  66. class CmdPlaytreeDelete: public CmdGeneric
  67. {
  68.     public:
  69.         CmdPlaytreeDelete( intf_thread_t *pIntf, int i_id ) :
  70.             CmdGeneric( pIntf ), m_id( i_id ) {}
  71.         virtual ~CmdPlaytreeDelete() {}
  72.         /// This method does the real job of the command
  73.         virtual void execute();
  74.         /// Return the type of the command
  75.         virtual string getType() const { return "playtree append"; }
  76.     private:
  77.         int m_id;
  78. };
  79. /// Command to set a text variable
  80. class CmdSetText: public CmdGeneric
  81. {
  82.     public:
  83.         CmdSetText( intf_thread_t *pIntf, VarText &rText,
  84.                     const UString &rValue ):
  85.             CmdGeneric( pIntf ), m_rText( rText ), m_value( rValue ) {}
  86.         virtual ~CmdSetText() {}
  87.         /// This method does the real job of the command
  88.         virtual void execute();
  89.         /// Return the type of the command
  90.         virtual string getType() const { return "set text"; }
  91.     private:
  92.         /// Text variable to set
  93.         VarText &m_rText;
  94.         /// Value to set
  95.         const UString m_value;
  96. };
  97. /// Command to set the equalizer preamp
  98. class CmdSetEqPreamp: public CmdGeneric
  99. {
  100.     public:
  101.         CmdSetEqPreamp( intf_thread_t *pIntf, EqualizerPreamp &rPreamp,
  102.                        float value ):
  103.             CmdGeneric( pIntf ), m_rPreamp( rPreamp ), m_value( value ) {}
  104.         virtual ~CmdSetEqPreamp() {}
  105.         /// This method does the real job of the command
  106.         virtual void execute();
  107.         /// Return the type of the command
  108.         virtual string getType() const { return "set equalizer preamp"; }
  109.     private:
  110.         /// Preamp variable to set
  111.         EqualizerPreamp &m_rPreamp;
  112.         /// Value to set
  113.         float m_value;
  114. };
  115. /// Command to set the equalizerbands
  116. class CmdSetEqBands: public CmdGeneric
  117. {
  118.     public:
  119.         CmdSetEqBands( intf_thread_t *pIntf, EqualizerBands &rEqBands,
  120.                        const string &rValue ):
  121.             CmdGeneric( pIntf ), m_rEqBands( rEqBands ), m_value( rValue ) {}
  122.         virtual ~CmdSetEqBands() {}
  123.         /// This method does the real job of the command
  124.         virtual void execute();
  125.         /// Return the type of the command
  126.         virtual string getType() const { return "set equalizer bands"; }
  127.     private:
  128.         /// Equalizer variable to set
  129.         EqualizerBands &m_rEqBands;
  130.         /// Value to set
  131.         const string m_value;
  132. };
  133. #endif