mp3splt-gtk
player_control.h
1 /**********************************************************
2  *
3  * mp3splt-gtk -- utility based on mp3splt,
4  * for mp3/ogg splitting without decoding
5  *
6  * Copyright: (C) 2005-2012 Alexandru Munteanu
7  * Contact: m@ioalex.net
8  *
9  *
10  * http://mp3splt.sourceforge.net/
11  *
12  *********************************************************/
13 
14 /**********************************************************
15  *
16  * This program is free software; you can redistribute it and/or
17  * modify it under the terms of the GNU General Public License
18  * as published by the Free Software Foundation; either version 2
19  * of the License, or (at your option) any later version.
20  *
21  * This program is distributed in the hope that it will be useful,
22  * but WITHOUT ANY WARRANTY; without even the implied warranty of
23  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24  * GNU General Public License for more details.
25  *
26  * You should have received a copy of the GNU General Public License
27  * along with this program; if not, write to the Free Software
28  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
29  * USA.
30  *
31  *********************************************************/
32 
33 /**********************************************************
34  * Filename: player_control.h
35  *
36  * header of player_control.c, defines constants, etc..
37  *********************************************************/
38 
39 #ifndef PLAYER_CONTROL_H
40 
41 #define PLAYER_CONTROL_H
42 
43 #include "external_includes.h"
44 
45 #include "snackamp_control.h"
46 #include "audacious_control.h"
47 #include "gstreamer_control.h"
48 
49 #define PLAYER_AUDACIOUS 1
50 #define PLAYER_SNACKAMP 2
51 #define PLAYER_GSTREAMER 3
52 
55 gint player_is_running(ui_state *ui);
56 void player_start(ui_state *ui);
57 void player_start_add_files(GList *list, ui_state *ui);
58 void player_add_files(GList *list, ui_state *ui);
59 void player_add_files_and_select(GList *list, ui_state *ui);
60 void player_add_play_files(GList *list, ui_state *ui);
61 void player_start_play_with_songs(GList *list, ui_state *ui);
62 void player_play(ui_state *ui);
63 void player_stop(ui_state *ui);
64 void player_pause(ui_state *ui);
65 void player_next(ui_state *ui);
66 void player_prev(ui_state *ui);
67 void player_seek(gint position, ui_state *ui);
68 void player_get_song_infos(gchar *total_infos, ui_state *ui);
69 gint player_is_playing(ui_state *ui);
70 gint player_is_paused(ui_state *ui);
71 gchar *player_get_filename(ui_state *ui);
72 gchar *player_get_title(ui_state *ui);
73 gint player_get_volume(ui_state *ui);
74 void player_set_volume(gint volume, ui_state *ui);
76 gint player_quit(ui_state *ui);
77 
78 #endif
79