]> git.sesse.net Git - vlc/blob - modules/gui/skins2/commands/cmd_input.cpp
aout_VolumeMute -> aout_ToggleMute
[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     {
36         return;
37     }
38
39     playlist_Lock( pPlaylist );
40     const bool b_empty = playlist_IsEmpty( pPlaylist );
41     playlist_Unlock( pPlaylist );
42
43     if( !b_empty )
44     {
45         playlist_Play( pPlaylist );
46     }
47     else
48     {
49         // If the playlist is empty, open a file requester instead
50         CmdDlgFile cmd( getIntf() );
51         cmd.execute();
52     }
53 }
54
55
56 void CmdPause::execute()
57 {
58     playlist_t *pPlaylist = getIntf()->p_sys->p_playlist;
59     if( pPlaylist == NULL )
60     {
61         return;
62     }
63
64     playlist_Pause( pPlaylist );
65 }
66
67
68 void CmdStop::execute()
69 {
70     playlist_t *pPlaylist = getIntf()->p_sys->p_playlist;
71     if( pPlaylist == NULL )
72     {
73         return;
74     }
75
76     playlist_Stop( pPlaylist );
77 }
78
79
80 void CmdSlower::execute()
81 {
82     input_thread_t *pInput =
83         (input_thread_t *)vlc_object_find( getIntf(), VLC_OBJECT_INPUT,
84                                            FIND_ANYWHERE );
85     if( pInput )
86     {
87         vlc_value_t val;
88         val.b_bool = true;
89
90         var_Set( pInput, "rate-slower", val );
91         vlc_object_release( pInput );
92     }
93 }
94
95
96 void CmdFaster::execute()
97 {
98     input_thread_t *pInput =
99         (input_thread_t *)vlc_object_find( getIntf(), VLC_OBJECT_INPUT,
100                                            FIND_ANYWHERE );
101     if( pInput )
102     {
103         vlc_value_t val;
104         val.b_bool = true;
105
106         var_Set( pInput, "rate-faster", val );
107         vlc_object_release( pInput );
108     }
109 }
110
111
112 void CmdMute::execute()
113 {
114     aout_TogleMute( getIntf(), NULL );
115 }
116
117
118 void CmdVolumeUp::execute()
119 {
120     aout_VolumeUp( getIntf(), 1, NULL );
121 }
122
123
124 void CmdVolumeDown::execute()
125 {
126     aout_VolumeDown( getIntf(), 1, NULL );
127 }
128