]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/podcast_configuration.cpp
Add a podcast configuration dialog to the Qt4 interface/dialogs provider.
[vlc] / modules / gui / qt4 / dialogs / podcast_configuration.cpp
1 /*****************************************************************************
2  * podcast_configuration.cpp: Podcast configuration dialog
3  ****************************************************************************
4  * Copyright (C) 2007 the VideoLAN team
5  * $Id$
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
24 #include "podcast_configuration.hpp"
25
26 PodcastConfigurationDialog::PodcastConfigurationDialog( intf_thread_t *_p_intf )
27     :p_intf( _p_intf )
28 {
29     ui.setupUi( this );
30     CONNECT( ui.podcastAdd, clicked(), this, add() );
31     CONNECT( ui.podcastDelete, clicked(), this, remove() );
32
33     char *psz_urls = config_GetPsz( p_intf, "podcast-urls" );
34     if( psz_urls )
35     {
36         char *psz_url = psz_urls;
37         while( 1 )
38         {
39             char *psz_tok = strchr( psz_url, '|' );
40             if( psz_tok ) *psz_tok = '\0';
41             ui.podcastList->addItem( psz_url );
42             if( psz_tok ) psz_url = psz_tok+1;
43             else break;
44         }
45         free( psz_urls );
46     }
47 }
48
49 void PodcastConfigurationDialog::accept()
50 {
51     QString urls = "";
52     for( int i = 0; i < ui.podcastList->count(); i++ )
53     {
54         urls +=  ui.podcastList->item(i)->text();
55         if( i != ui.podcastList->count()-1 ) urls += "|";
56     }
57     const char *psz_urls = qtu( urls );
58     config_PutPsz( p_intf, "podcast-urls", psz_urls );
59     if( playlist_IsServicesDiscoveryLoaded( THEPL, "podcast" ) )
60     {
61         msg_Info( p_intf, "You will need to reload the podcast module for changes to be used (FIXME)" );
62     }
63     QDialog::accept();
64 }
65
66 void PodcastConfigurationDialog::add()
67 {
68     if( ui.podcastURL->text() != QString( "" ) )
69     {
70         ui.podcastList->addItem( ui.podcastURL->text() );
71         ui.podcastURL->clear();
72     }
73 }
74
75 void PodcastConfigurationDialog::remove()
76 {
77     delete ui.podcastList->currentItem();
78 }