]> git.sesse.net Git - vlc/blob - modules/gui/skins2/commands/cmd_input.cpp
DirectX: kill a warning from unused variable
[vlc] / modules / gui / skins2 / commands / cmd_input.cpp
1 /*****************************************************************************
2  * cmd_input.cpp
3  *****************************************************************************
4  * Copyright (C) 2003 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
8  *          Olivier Teulière <ipkiss@via.ecp.fr>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #include "cmd_input.hpp"
26 #include "cmd_dialogs.hpp"
27 #include <vlc_aout.h>
28 #include <vlc_input.h>
29 #include <vlc_playlist.h>
30
31 void CmdPlay::execute()
32 {
33     playlist_t *pPlaylist = getIntf()->p_sys->p_playlist;
34     if( pPlaylist == NULL )
35         return;
36
37     // if already playing an input, reset rate to normal speed
38     input_thread_t *pInput = playlist_CurrentInput( pPlaylist );
39     if( pInput )
40     {
41         var_SetFloat( pInput, "rate", 1.0 );
42         vlc_object_release( pInput );
43     }
44
45     playlist_Lock( pPlaylist );
46     const bool b_empty = playlist_IsEmpty( pPlaylist );
47     playlist_Unlock( pPlaylist );
48
49     if( !b_empty )
50     {
51         playlist_Play( pPlaylist );
52     }
53     else
54     {
55         // If the playlist is empty, open a file requester instead
56         CmdDlgFile( getIntf() ).execute();
57     }
58 }
59
60
61 void CmdPause::execute()
62 {
63     playlist_t *pPlaylist = getIntf()->p_sys->p_playlist;
64     if( pPlaylist != NULL )
65         playlist_Pause( pPlaylist );
66 }
67
68
69 void CmdStop::execute()
70 {
71     playlist_t *pPlaylist = getIntf()->p_sys->p_playlist;
72     if( pPlaylist != NULL )
73         playlist_Stop( pPlaylist );
74 }
75
76
77 void CmdSlower::execute()
78 {
79     playlist_t *pPlaylist = getIntf()->p_sys->p_playlist;
80     input_thread_t *pInput = playlist_CurrentInput( pPlaylist );
81
82     if( pInput )
83     {
84         var_TriggerCallback( pInput, "rate-slower" );
85         vlc_object_release( pInput );
86     }
87 }
88
89
90 void CmdFaster::execute()
91 {
92     playlist_t *pPlaylist = getIntf()->p_sys->p_playlist;
93     input_thread_t *pInput = playlist_CurrentInput( pPlaylist );
94
95     if( pInput )
96     {
97         var_TriggerCallback( pInput, "rate-faster" );
98         vlc_object_release( pInput );
99     }
100 }
101
102
103 void CmdMute::execute()
104 {
105     aout_ToggleMute( getIntf()->p_sys->p_playlist, NULL );
106 }
107
108
109 void CmdVolumeUp::execute()
110 {
111     aout_VolumeUp( getIntf()->p_sys->p_playlist, 1, NULL );
112 }
113
114
115 void CmdVolumeDown::execute()
116 {
117     aout_VolumeDown( getIntf()->p_sys->p_playlist, 1, NULL );
118 }
119