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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * cmd_playlist.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: cmd_playlist.cpp 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. #include "cmd_playlist.hpp"
  25. #include "../src/vlcproc.hpp"
  26. #include "../utils/var_bool.hpp"
  27. void CmdPlaylistDel::execute()
  28. {
  29.     m_rList.delSelected();
  30. }
  31. void CmdPlaylistSort::execute()
  32. {
  33.     // XXX add the mode and type
  34.     playlist_t *pPlaylist = getIntf()->p_sys->p_playlist;
  35.     if( pPlaylist != NULL )
  36.     {
  37.         playlist_Sort( pPlaylist, SORT_TITLE, ORDER_NORMAL );
  38.     }
  39. }
  40. void CmdPlaylistNext::execute()
  41. {
  42.     playlist_t *pPlaylist = getIntf()->p_sys->p_playlist;
  43.     if( pPlaylist != NULL )
  44.     {
  45.         playlist_Next( pPlaylist );
  46.     }
  47. }
  48. void CmdPlaylistPrevious::execute()
  49. {
  50.     playlist_t *pPlaylist = getIntf()->p_sys->p_playlist;
  51.     if( pPlaylist != NULL )
  52.     {
  53.         playlist_Prev( pPlaylist );
  54.     }
  55. }
  56. void CmdPlaylistRandom::execute()
  57. {
  58.     playlist_t *pPlaylist = getIntf()->p_sys->p_playlist;
  59.     if( pPlaylist != NULL )
  60.     {
  61.         vlc_value_t val;
  62.         val.b_bool = m_value;
  63.         var_Set( pPlaylist , "random", val);
  64.     }
  65. }
  66. void CmdPlaylistLoop::execute()
  67. {
  68.     playlist_t *pPlaylist = getIntf()->p_sys->p_playlist;
  69.     if( pPlaylist != NULL )
  70.     {
  71.         vlc_value_t val;
  72.         val.b_bool = m_value;
  73.         var_Set( pPlaylist , "loop", val);
  74.     }
  75. }
  76. void CmdPlaylistRepeat::execute()
  77. {
  78.     playlist_t *pPlaylist = getIntf()->p_sys->p_playlist;
  79.     if( pPlaylist != NULL )
  80.     {
  81.         vlc_value_t val;
  82.         val.b_bool = m_value;
  83.         var_Set( pPlaylist , "repeat", val);
  84.     }
  85. }
  86. void CmdPlaylistLoad::execute()
  87. {
  88.     playlist_t *pPlaylist = getIntf()->p_sys->p_playlist;
  89.     if( pPlaylist != NULL )
  90.     {
  91.         playlist_Import( pPlaylist, m_file.c_str() );
  92.     }
  93. }
  94. void CmdPlaylistSave::execute()
  95. {
  96.     playlist_t *pPlaylist = getIntf()->p_sys->p_playlist;
  97.     if( pPlaylist != NULL )
  98.     {
  99.         // FIXME: when the PLS export will be working, we'll need to remove
  100.         // this hardcoding...
  101.         playlist_Export( pPlaylist, m_file.c_str(), "export-m3u" );
  102.     }
  103. }