actions_manager.cpp
资源名称:vlc-1.0.5.zip [点击查看]
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:5k
源码类别:
midi
开发平台:
Unix_Linux
- /*****************************************************************************
- * Controller.cpp : Controller for the main interface
- ****************************************************************************
- * Copyright (C) 2006-2008 the VideoLAN team
- * $Id: ed5cd71cd8eafde3c6e5dd24f520fe871d073aae $
- *
- * Authors: Jean-Baptiste Kempf <jb@videolan.org>
- * Ilkka Ollakka <ileoo@videolan.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 <vlc_vout.h>
- #include <vlc_aout.h>
- #include <vlc_keys.h>
- #include "actions_manager.hpp"
- #include "dialogs_provider.hpp" /* Opening Dialogs */
- #include "input_manager.hpp"
- #include "main_interface.hpp" /* Show playlist */
- ActionsManager * ActionsManager::instance = NULL;
- ActionsManager::ActionsManager( intf_thread_t * _p_i, QObject *_parent )
- : QObject( _parent )
- {
- p_intf = _p_i;
- }
- ActionsManager::~ActionsManager(){}
- void ActionsManager::doAction( int id_action )
- {
- switch( id_action )
- {
- case PLAY_ACTION:
- play(); break;
- case STOP_ACTION:
- THEMIM->stop(); break;
- case OPEN_ACTION:
- THEDP->openDialog(); break;
- case PREVIOUS_ACTION:
- THEMIM->prev(); break;
- case NEXT_ACTION:
- THEMIM->next(); break;
- case SLOWER_ACTION:
- THEMIM->getIM()->slower(); break;
- case FASTER_ACTION:
- THEMIM->getIM()->faster(); break;
- case FULLSCREEN_ACTION:
- fullscreen(); break;
- case EXTENDED_ACTION:
- THEDP->extendedDialog(); break;
- case PLAYLIST_ACTION:
- playlist(); break;
- case SNAPSHOT_ACTION:
- snapshot(); break;
- case RECORD_ACTION:
- record(); break;
- case FRAME_ACTION:
- frame(); break;
- case ATOB_ACTION:
- THEMIM->getIM()->setAtoB(); break;
- case REVERSE_ACTION:
- THEMIM->getIM()->reverse(); break;
- case SKIP_BACK_ACTION:
- var_SetInteger( p_intf->p_libvlc, "key-action",
- ACTIONID_JUMP_BACKWARD_SHORT );
- break;
- case SKIP_FW_ACTION:
- var_SetInteger( p_intf->p_libvlc, "key-action",
- ACTIONID_JUMP_FORWARD_SHORT );
- break;
- case QUIT_ACTION:
- THEDP->quit(); break;
- default:
- msg_Dbg( p_intf, "Action: %i", id_action );
- break;
- }
- }
- void ActionsManager::play()
- {
- if( THEPL->current.i_size == 0 )
- {
- /* The playlist is empty, open a file requester */
- THEDP->openFileDialog();
- return;
- }
- THEMIM->togglePlayPause();
- }
- /**
- * TODO
- * This functions toggle the fullscreen mode
- * If there is no video, it should first activate Visualisations...
- * This has also to be fixed in enableVideo()
- */
- void ActionsManager::fullscreen()
- {
- vout_thread_t *p_vout = THEMIM->getVout();
- if( p_vout)
- {
- var_SetBool( p_vout, "fullscreen", !var_GetBool( p_vout, "fullscreen" ) );
- vlc_object_release( p_vout );
- }
- }
- void ActionsManager::snapshot()
- {
- vout_thread_t *p_vout = THEMIM->getVout();
- if( p_vout )
- {
- var_TriggerCallback( p_vout, "video-snapshot" );
- vlc_object_release( p_vout );
- }
- }
- void ActionsManager::playlist()
- {
- if( p_intf->p_sys->p_mi ) p_intf->p_sys->p_mi->togglePlaylist();
- }
- void ActionsManager::record()
- {
- input_thread_t *p_input = THEMIM->getInput();
- if( p_input )
- {
- /* This method won't work fine if the stream can't be cut anywhere */
- const bool b_recording = var_GetBool( p_input, "record" );
- var_SetBool( p_input, "record", !b_recording );
- #if 0
- else
- {
- /* 'record' access-filter is not loaded, we open Save dialog */
- input_item_t *p_item = input_GetItem( p_input );
- if( !p_item )
- return;
- char *psz = input_item_GetURI( p_item );
- if( psz )
- THEDP->streamingDialog( NULL, psz, true );
- }
- #endif
- }
- }
- void ActionsManager::frame()
- {
- input_thread_t *p_input = THEMIM->getInput();
- if( p_input )
- var_SetVoid( p_input, "frame-next" );
- }
- void ActionsManager::toggleMuteAudio()
- {
- aout_VolumeMute( p_intf, NULL );
- }
- void ActionsManager::AudioUp()
- {
- aout_VolumeUp( p_intf, 1, NULL );
- }
- void ActionsManager::AudioDown()
- {
- aout_VolumeDown( p_intf, 1, NULL );
- }