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