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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * cmd_playlist.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: 4ea393ff5a90c08f9d62d422f5017c4d8d74a206 $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *          Olivier Teulière <ipkiss@via.ecp.fr>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. #ifndef CMD_PLAYLIST_HPP
  25. #define CMD_PLAYLIST_HPP
  26. #include "cmd_generic.hpp"
  27. #include "../utils/var_list.hpp"
  28. /// Command to delete the selected items from a list
  29. class CmdPlaylistDel: public CmdGeneric
  30. {
  31.     public:
  32.         CmdPlaylistDel( intf_thread_t *pIntf, VarList &rList ):
  33.             CmdGeneric( pIntf ), m_rList( rList ) {}
  34.         virtual ~CmdPlaylistDel() {}
  35.         /// This method does the real job of the command
  36.         virtual void execute();
  37.         /// Return the type of the command
  38.         virtual string getType() const { return "playlist del"; }
  39.     private:
  40.         /// List
  41.         VarList &m_rList;
  42. };
  43. /// Command to sort the playlist
  44. DEFINE_COMMAND( PlaylistSort, "playlist sort" )
  45. /// Command to jump to the next item
  46. DEFINE_COMMAND( PlaylistNext, "playlist next" )
  47. /// Command to jump to the previous item
  48. DEFINE_COMMAND( PlaylistPrevious, "playlist previous" )
  49. /// Command to start the playlist
  50. DEFINE_COMMAND( PlaylistFirst, "playlist first" )
  51. /// Command to set the random state
  52. class CmdPlaylistRandom: public CmdGeneric
  53. {
  54.     public:
  55.         CmdPlaylistRandom( intf_thread_t *pIntf, bool value ):
  56.             CmdGeneric( pIntf ), m_value( value ) {}
  57.         virtual ~CmdPlaylistRandom() {}
  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 "playlist random"; }
  62.     private:
  63.         /// Random state
  64.         bool m_value;
  65. };
  66. /// Command to set the loop state
  67. class CmdPlaylistLoop: public CmdGeneric
  68. {
  69.     public:
  70.         CmdPlaylistLoop( intf_thread_t *pIntf, bool value ):
  71.             CmdGeneric( pIntf ), m_value( value ) {}
  72.         virtual ~CmdPlaylistLoop() {}
  73.         /// This method does the real job of the command
  74.         virtual void execute();
  75.         /// Return the type of the command
  76.         virtual string getType() const { return "playlist loop"; }
  77.     private:
  78.         /// Loop state
  79.         bool m_value;
  80. };
  81. /// Command to set the repeat state
  82. class CmdPlaylistRepeat: public CmdGeneric
  83. {
  84.     public:
  85.         CmdPlaylistRepeat( intf_thread_t *pIntf, bool value ):
  86.             CmdGeneric( pIntf ), m_value( value ) {}
  87.         virtual ~CmdPlaylistRepeat() {}
  88.         /// This method does the real job of the command
  89.         virtual void execute();
  90.         /// Return the type of the command
  91.         virtual string getType() const { return "playlist repeat"; }
  92.     private:
  93.         /// Repeat state
  94.         bool m_value;
  95. };
  96. /// Command to load a playlist
  97. class CmdPlaylistLoad: public CmdGeneric
  98. {
  99.     public:
  100.         CmdPlaylistLoad( intf_thread_t *pIntf, const string& rFile ):
  101.             CmdGeneric( pIntf ), m_file( rFile ) {}
  102.         virtual ~CmdPlaylistLoad() {}
  103.         /// This method does the real job of the command
  104.         virtual void execute();
  105.         /// Return the type of the command
  106.         virtual string getType() const { return "playlist load"; }
  107.     private:
  108.         /// Playlist file to load
  109.         string m_file;
  110. };
  111. /// Command to save a playlist
  112. class CmdPlaylistSave: public CmdGeneric
  113. {
  114.     public:
  115.         CmdPlaylistSave( intf_thread_t *pIntf, const string& rFile ):
  116.             CmdGeneric( pIntf ), m_file( rFile ) {}
  117.         virtual ~CmdPlaylistSave() {}
  118.         /// This method does the real job of the command
  119.         virtual void execute();
  120.         /// Return the type of the command
  121.         virtual string getType() const { return "playlist save"; }
  122.     private:
  123.         /// Playlist file to save
  124.         string m_file;
  125. };
  126. #endif