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

📄 dialogs.cpp

📁 VLC媒体播放程序
💻 CPP
字号:
/***************************************************************************** * dialogs.cpp: Handles all the different dialog boxes we provide. ***************************************************************************** * Copyright (C) 2003 VideoLAN * $Id: dialogs.cpp,v 1.17 2003/12/11 02:26:03 asmax Exp $ * * Authors: Gildas Bazin <gbazin@netcourrier.com> * * 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., 59 Temple Place - Suite 330, Boston, MA  02111, * USA. *****************************************************************************///--- VLC -------------------------------------------------------------------#include <vlc/vlc.h>#include <vlc/intf.h>//--- SKIN ------------------------------------------------------------------#include "../os_api.h"#include "event.h"#include "banks.h"#include "theme.h"#include "../os_theme.h"#include "themeloader.h"#include "window.h"#include "vlcproc.h"#include "skin_common.h"#include "dialogs.h"/* Callback prototype */static int PopupMenuCB( vlc_object_t *p_this, const char *psz_variable,                       vlc_value_t old_val, vlc_value_t new_val, void *param );//---------------------------------------------------------------------------// Implementation of Dialogs class//---------------------------------------------------------------------------Dialogs::Dialogs( intf_thread_t *_p_intf ){    /* Errors while loading the dialogs provider are not fatal.     * Dialogs just won't be available. */    p_intf = _p_intf;    p_intf->p_sys->p_dialogs = this;    b_popup_change = VLC_FALSE;    /* Allocate descriptor */    p_provider = (intf_thread_t *)vlc_object_create( p_intf,                                                     VLC_OBJECT_DIALOGS );    if( p_provider == NULL )    {        msg_Err( p_intf, "out of memory" );        return;    }    p_module = module_Need( p_provider, "dialogs provider", NULL );    if( p_module == NULL )    {        msg_Err( p_intf, "no suitable dialogs provider found" );        vlc_object_destroy( p_provider );        p_provider = NULL;        return;    }    /* Attach the dialogs provider to its parent interface */    vlc_object_attach( p_provider, p_intf );    /* Initialize dialogs provider     * (returns as soon as initialization is done) */    if( p_provider->pf_run ) p_provider->pf_run( p_provider );    /* Register callback for the intf-popupmenu variable */    playlist_t *p_playlist =        (playlist_t *)vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,                                       FIND_ANYWHERE );    if( p_playlist != NULL )    {        var_AddCallback( p_playlist, "intf-popupmenu", PopupMenuCB,                         p_intf->p_sys->p_dialogs );        vlc_object_release( p_playlist );    }}Dialogs::~Dialogs(){    if( p_provider && p_module )    {        /* Detach the dialogs provider from its parent interface */        vlc_object_detach( p_provider );        module_Unneed( p_provider, p_module );        vlc_object_destroy( p_provider );    }    /* Unregister callbacks */    playlist_t *p_playlist =        (playlist_t *)vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,                                       FIND_ANYWHERE );    if( p_playlist != NULL )    {        var_DelCallback( p_playlist, "intf-popupmenu", PopupMenuCB,                         p_intf->p_sys->p_dialogs );        vlc_object_release( p_playlist );    }}void Dialogs::ShowOpen( bool b_play ){    if( p_provider && p_provider->pf_show_dialog )        p_provider->pf_show_dialog( p_provider, INTF_DIALOG_FILE,                                    (int)b_play, 0 );}void Dialogs::ShowNet(){    if( p_provider && p_provider->pf_show_dialog )        p_provider->pf_show_dialog( p_provider, INTF_DIALOG_NET, 0, 0 );}static void ShowOpenSkinCallback( intf_dialog_args_t *p_arg ){    if( p_arg->i_results )    {        intf_thread_t *p_intf = (intf_thread_t *)p_arg->p_arg;        p_intf->p_sys->p_new_theme_file = strdup( p_arg->psz_results[0] );        if( !p_arg->b_blocking )        {            // Tell vlc to change skin after hiding interface            OSAPI_PostMessage( NULL, VLC_HIDE, VLC_LOAD_SKIN, 0 );        }    }}void Dialogs::ShowOpenSkin( bool b_block ){    if( p_provider && p_provider->pf_show_dialog )    {        intf_dialog_args_t *p_arg =            (intf_dialog_args_t *)malloc( sizeof(intf_dialog_args_t) );        memset( p_arg, 0, sizeof(intf_dialog_args_t) );        p_arg->b_blocking = b_block;        if( b_block )        {            vlc_mutex_init( p_intf, &p_arg->lock );            vlc_cond_init( p_intf, &p_arg->wait );        }        p_arg->psz_title = strdup( _("Open a skin file") );        p_arg->psz_extensions =            strdup( "Skin files (*.vlt)|*.vlt|Skin files (*.xml)|*.xml|" );        p_arg->p_arg = p_intf;        p_arg->pf_callback = ShowOpenSkinCallback;        p_provider->pf_show_dialog( p_provider, INTF_DIALOG_FILE_GENERIC,                                    0, p_arg );        if( b_block )        {            vlc_mutex_lock( &p_arg->lock );            if( !p_arg->b_ready )            {                vlc_cond_wait( &p_arg->wait, &p_arg->lock );            }            vlc_mutex_unlock( &p_arg->lock );            vlc_mutex_destroy( &p_arg->lock );            vlc_cond_destroy( &p_arg->wait );            free( p_arg );        }    }}void Dialogs::ShowMessages(){    if( p_provider && p_provider->pf_show_dialog )        p_provider->pf_show_dialog( p_provider, INTF_DIALOG_MESSAGES, 0, 0 );}void Dialogs::ShowPrefs(){    if( p_provider && p_provider->pf_show_dialog )        p_provider->pf_show_dialog( p_provider, INTF_DIALOG_PREFS, 0, 0 );}void Dialogs::ShowFileInfo(){    if( p_provider && p_provider->pf_show_dialog )        p_provider->pf_show_dialog( p_provider, INTF_DIALOG_FILEINFO, 0, 0 );}void Dialogs::ShowPopup( bool b_show ){    if( p_provider && p_provider->pf_show_dialog )        p_provider->pf_show_dialog( p_provider, INTF_DIALOG_POPUPMENU,                                    b_show, 0 );}/***************************************************************************** * PopupMenuCB: callback triggered by the intf-popupmenu playlist variable. *  We don't show the menu directly here because we don't want the *  caller to block for a too long time. *****************************************************************************/static int PopupMenuCB( vlc_object_t *p_this, const char *psz_variable,                        vlc_value_t old_val, vlc_value_t new_val, void *param ){    Dialogs *p_dialogs = (Dialogs *)param;    p_dialogs->ShowPopup( new_val.b_bool );    return VLC_SUCCESS;}

⌨️ 快捷键说明

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