⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 podcast_configuration.cpp

📁 VLC Player Source Code
💻 CPP
字号:
/***************************************************************************** * podcast_configuration.cpp: Podcast configuration dialog **************************************************************************** * Copyright (C) 2007 the VideoLAN team * $Id$ * * 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::instance = NULL;PodcastConfigDialog::PodcastConfigDialog( QWidget *parent, intf_thread_t *_p_intf)                    : QVLCDialog( parent, _p_intf ){    ui.setupUi( this );    ui.podcastDelete->setToolTip( qtr( "Delete 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 += "|";    }    const char *psz_urls = qtu( urls );    config_PutPsz( p_intf, "podcast-urls", psz_urls );    vlc_object_t *p_obj = (vlc_object_t*)                          vlc_object_find_name( p_intf->p_libvlc,                                                "podcast", FIND_CHILD );    if( p_obj )    {        var_SetString( p_obj, "podcast-urls", psz_urls );        vlc_object_release( p_obj );    }    if( playlist_IsServicesDiscoveryLoaded( THEPL, "podcast" ) )    {        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();}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -