]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/podcast_configuration.cpp
69d0dc906b98da4965fa82eb428d070c62b211b5
[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 #ifdef HAVE_CONFIG_H
24 # include "config.h"
25 #endif
26
27 #include "podcast_configuration.hpp"
28
29 PodcastConfigDialog *PodcastConfigDialog::instance = NULL;
30
31 PodcastConfigDialog::PodcastConfigDialog( QWidget *parent, intf_thread_t *_p_intf)
32                     : QVLCDialog( parent, _p_intf )
33
34 {
35     ui.setupUi( this );
36
37     ui.podcastDelete->setToolTip( qtr( "Deletes the selected item" ) );
38     QPushButton *okButton = new QPushButton( qtr( "&Close" ), this );
39     QPushButton *cancelButton = new QPushButton( qtr( "&Cancel" ), this );
40     ui.okCancel->addButton( okButton, QDialogButtonBox::AcceptRole );
41     ui.okCancel->addButton( cancelButton, QDialogButtonBox::RejectRole );
42
43     CONNECT( ui.podcastAdd, clicked(), this, add() );
44     CONNECT( ui.podcastDelete, clicked(), this, remove() );
45     CONNECT( okButton, clicked(), this, close() );
46
47     char *psz_urls = config_GetPsz( p_intf, "podcast-urls" );
48     if( psz_urls )
49     {
50         char *psz_url = psz_urls;
51         while( 1 )
52         {
53             char *psz_tok = strchr( psz_url, '|' );
54             if( psz_tok ) *psz_tok = '\0';
55             ui.podcastList->addItem( psz_url );
56             if( psz_tok ) psz_url = psz_tok+1;
57             else break;
58         }
59         free( psz_urls );
60     }
61 }
62
63 PodcastConfigDialog::~PodcastConfigDialog()
64 {
65 }
66
67 void PodcastConfigDialog::accept()
68 {
69     QString urls = "";
70     for( int i = 0; i < ui.podcastList->count(); i++ )
71     {
72         urls +=  ui.podcastList->item(i)->text();
73         if( i != ui.podcastList->count()-1 ) urls += "|";
74     }
75     const char *psz_urls = qtu( urls );
76     config_PutPsz( p_intf, "podcast-urls", psz_urls );
77     vlc_object_t *p_obj = (vlc_object_t*)
78                           vlc_object_find_name( p_intf->p_libvlc,
79                                                 "podcast", FIND_CHILD );
80     if( p_obj )
81     {
82         var_SetString( p_obj, "podcast-urls", psz_urls );
83         vlc_object_release( p_obj );
84     }
85
86     if( playlist_IsServicesDiscoveryLoaded( THEPL, "podcast" ) )
87     {
88         msg_Dbg( p_intf, "You will need to reload the podcast module to take into account deleted podcast urls" );
89     }
90 }
91
92 void PodcastConfigDialog::add()
93 {
94     if( ui.podcastURL->text() != QString( "" ) )
95     {
96         ui.podcastList->addItem( ui.podcastURL->text() );
97         ui.podcastURL->clear();
98     }
99 }
100
101 void PodcastConfigDialog::remove()
102 {
103     delete ui.podcastList->currentItem();
104 }