1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
/*****************************************************************************
* podcast_configuration.cpp: Podcast configuration dialog
****************************************************************************
* Copyright (C) 2007 the VideoLAN team
* $Id: e6a15210089e51ab49984d97814b53b44edaff03 $
*
* Authors: Antoine Cellerier <dionoea at videolan dot org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "podcast_configuration.hpp"
PodcastConfigDialog::PodcastConfigDialog( intf_thread_t *_p_intf)
: QVLCDialog( (QWidget*)_p_intf->p_sys->p_mi, _p_intf )
{
ui.setupUi( this );
ui.podcastDelete->setToolTip( qtr( "Deletes the selected item" ) );
QPushButton *okButton = new QPushButton( qtr( "&Close" ), this );
QPushButton *cancelButton = new QPushButton( qtr( "&Cancel" ), this );
ui.okCancel->addButton( okButton, QDialogButtonBox::AcceptRole );
ui.okCancel->addButton( cancelButton, QDialogButtonBox::RejectRole );
CONNECT( ui.podcastAdd, clicked(), this, add() );
CONNECT( ui.podcastDelete, clicked(), this, remove() );
CONNECT( okButton, clicked(), this, close() );
char *psz_urls = config_GetPsz( p_intf, "podcast-urls" );
if( psz_urls )
{
char *psz_url = psz_urls;
while( 1 )
{
char *psz_tok = strchr( psz_url, '|' );
if( psz_tok ) *psz_tok = '\0';
ui.podcastList->addItem( psz_url );
if( psz_tok ) psz_url = psz_tok+1;
else break;
}
free( psz_urls );
}
}
PodcastConfigDialog::~PodcastConfigDialog()
{
}
void PodcastConfigDialog::accept()
{
QString urls = "";
for( int i = 0; i < ui.podcastList->count(); i++ )
{
urls += ui.podcastList->item(i)->text();
if( i != ui.podcastList->count()-1 ) urls += "|";
}
config_PutPsz( p_intf, "podcast-urls", qtu( urls ) );
if( playlist_IsServicesDiscoveryLoaded( THEPL, "podcast" ) )
{
var_SetString( THEPL, "podcast-urls", qtu( urls ) );
msg_Dbg( p_intf, "You will need to reload the podcast module to take into account deleted podcast urls" );
}
}
void PodcastConfigDialog::add()
{
if( ui.podcastURL->text() != QString( "" ) )
{
ui.podcastList->addItem( ui.podcastURL->text() );
ui.podcastURL->clear();
}
}
void PodcastConfigDialog::remove()
{
delete ui.podcastList->currentItem();
}
|