cmd_playlist.hpp
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:5k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * cmd_playlist.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: cmd_playlist.hpp 8524 2004-08-25 21:32:15Z ipkiss $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *          Olivier Teuli鑢e <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., 59 Temple Place - Suite 330, Boston, MA  02111, 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 set the random state
  50. class CmdPlaylistRandom: public CmdGeneric
  51. {
  52.     public:
  53.         CmdPlaylistRandom( intf_thread_t *pIntf, bool value ):
  54.             CmdGeneric( pIntf ), m_value( value ) {}
  55.         virtual ~CmdPlaylistRandom() {}
  56.         /// This method does the real job of the command
  57.         virtual void execute();
  58.         /// Return the type of the command
  59.         virtual string getType() const { return "playlist random"; }
  60.     private:
  61.         /// Random state
  62.         bool m_value;
  63. };
  64. /// Command to set the loop state
  65. class CmdPlaylistLoop: public CmdGeneric
  66. {
  67.     public:
  68.         CmdPlaylistLoop( intf_thread_t *pIntf, bool value ):
  69.             CmdGeneric( pIntf ), m_value( value ) {}
  70.         virtual ~CmdPlaylistLoop() {}
  71.         /// This method does the real job of the command
  72.         virtual void execute();
  73.         /// Return the type of the command
  74.         virtual string getType() const { return "playlist loop"; }
  75.     private:
  76.         /// Loop state
  77.         bool m_value;
  78. };
  79. /// Command to set the repeat state
  80. class CmdPlaylistRepeat: public CmdGeneric
  81. {
  82.     public:
  83.         CmdPlaylistRepeat( intf_thread_t *pIntf, bool value ):
  84.             CmdGeneric( pIntf ), m_value( value ) {}
  85.         virtual ~CmdPlaylistRepeat() {}
  86.         /// This method does the real job of the command
  87.         virtual void execute();
  88.         /// Return the type of the command
  89.         virtual string getType() const { return "playlist repeat"; }
  90.     private:
  91.         /// Repeat state
  92.         bool m_value;
  93. };
  94. /// Command to load a playlist
  95. class CmdPlaylistLoad: public CmdGeneric
  96. {
  97.     public:
  98.         CmdPlaylistLoad( intf_thread_t *pIntf, const string& rFile ):
  99.             CmdGeneric( pIntf ), m_file( rFile ) {}
  100.         virtual ~CmdPlaylistLoad() {}
  101.         /// This method does the real job of the command
  102.         virtual void execute();
  103.         /// Return the type of the command
  104.         virtual string getType() const { return "playlist load"; }
  105.     private:
  106.         /// Playlist file to load
  107.         string m_file;
  108. };
  109. /// Command to save a playlist
  110. class CmdPlaylistSave: public CmdGeneric
  111. {
  112.     public:
  113.         CmdPlaylistSave( intf_thread_t *pIntf, const string& rFile ):
  114.             CmdGeneric( pIntf ), m_file( rFile ) {}
  115.         virtual ~CmdPlaylistSave() {}
  116.         /// This method does the real job of the command
  117.         virtual void execute();
  118.         /// Return the type of the command
  119.         virtual string getType() const { return "playlist save"; }
  120.     private:
  121.         /// Playlist file to save
  122.         string m_file;
  123. };
  124. #endif