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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * podcast_configuration.cpp: Podcast configuration dialog
  3.  ****************************************************************************
  4.  * Copyright (C) 2007 the VideoLAN team
  5.  * $Id: bd10c0087535a6710e84558f090f2229dce9d25b $
  6.  *
  7.  * Authors: Antoine Cellerier <dionoea at videolan dot org>
  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. #ifdef HAVE_CONFIG_H
  24. # include "config.h"
  25. #endif
  26. #include "podcast_configuration.hpp"
  27. PodcastConfigDialog *PodcastConfigDialog::instance = NULL;
  28. PodcastConfigDialog::PodcastConfigDialog( QWidget *parent, intf_thread_t *_p_intf)
  29.                     : QVLCDialog( parent, _p_intf )
  30. {
  31.     ui.setupUi( this );
  32.     ui.podcastDelete->setToolTip( qtr( "Deletes the selected item" ) );
  33.     QPushButton *okButton = new QPushButton( qtr( "&Close" ), this );
  34.     QPushButton *cancelButton = new QPushButton( qtr( "&Cancel" ), this );
  35.     ui.okCancel->addButton( okButton, QDialogButtonBox::AcceptRole );
  36.     ui.okCancel->addButton( cancelButton, QDialogButtonBox::RejectRole );
  37.     CONNECT( ui.podcastAdd, clicked(), this, add() );
  38.     CONNECT( ui.podcastDelete, clicked(), this, remove() );
  39.     CONNECT( okButton, clicked(), this, close() );
  40.     char *psz_urls = config_GetPsz( p_intf, "podcast-urls" );
  41.     if( psz_urls )
  42.     {
  43.         char *psz_url = psz_urls;
  44.         while( 1 )
  45.         {
  46.             char *psz_tok = strchr( psz_url, '|' );
  47.             if( psz_tok ) *psz_tok = '';
  48.             ui.podcastList->addItem( psz_url );
  49.             if( psz_tok ) psz_url = psz_tok+1;
  50.             else break;
  51.         }
  52.         free( psz_urls );
  53.     }
  54. }
  55. PodcastConfigDialog::~PodcastConfigDialog()
  56. {
  57. }
  58. void PodcastConfigDialog::accept()
  59. {
  60.     QString urls = "";
  61.     for( int i = 0; i < ui.podcastList->count(); i++ )
  62.     {
  63.         urls +=  ui.podcastList->item(i)->text();
  64.         if( i != ui.podcastList->count()-1 ) urls += "|";
  65.     }
  66.     config_PutPsz( p_intf, "podcast-urls", qtu( urls ) );
  67.     config_SaveConfigFile( p_intf, "podcast" );
  68.     vlc_object_t *p_obj = (vlc_object_t*)
  69.                           vlc_object_find_name( p_intf->p_libvlc,
  70.                                                 "podcast", FIND_CHILD );
  71.     if( p_obj )
  72.     {
  73.         var_SetString( p_obj, "podcast-urls", qtu( urls ) );
  74.         vlc_object_release( p_obj );
  75.     }
  76.     if( playlist_IsServicesDiscoveryLoaded( THEPL, "podcast" ) )
  77.     {
  78.         msg_Dbg( p_intf, "You will need to reload the podcast module to take into account deleted podcast urls" );
  79.     }
  80. }
  81. void PodcastConfigDialog::add()
  82. {
  83.     if( ui.podcastURL->text() != QString( "" ) )
  84.     {
  85.         ui.podcastList->addItem( ui.podcastURL->text() );
  86.         ui.podcastURL->clear();
  87.     }
  88. }
  89. void PodcastConfigDialog::remove()
  90. {
  91.     delete ui.podcastList->currentItem();
  92. }