skins2: remove all hardcoded hotkeys
[vlc.git] / modules / gui / skins2 / commands / cmd_snapshot.cpp
blob33107c5690f24548ce56354c75456bff63237221
1 /*****************************************************************************
2 * cmd_snapshot.cpp
3 *****************************************************************************
4 * Copyright (C) 2006-2009 the VideoLAN team
5 * $Id$
7 * Authors: Olivier Teulière <ipkiss@via.ecp.fr>
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.
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.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 #include "cmd_snapshot.hpp"
25 #include <vlc_input.h>
26 #include <vlc_vout.h>
28 void CmdSnapshot::execute()
30 if( getIntf()->p_sys->p_input == NULL )
31 return;
33 vout_thread_t *pVout = input_GetVout( getIntf()->p_sys->p_input );
34 if( pVout )
36 // Take a snapshot
37 var_TriggerCallback( pVout, "video-snapshot" );
38 vlc_object_release( pVout );
43 void CmdToggleRecord::execute()
45 input_thread_t* pInput = getIntf()->p_sys->p_input;
46 if( pInput )
47 var_ToggleBool( pInput, "record" );
51 void CmdNextFrame::execute()
53 input_thread_t* pInput = getIntf()->p_sys->p_input;
54 if( pInput )
55 var_TriggerCallback( pInput, "frame-next" );