mp3splt-gtk
gstreamer_control.h
00001 /**********************************************************
00002  *
00003  * mp3splt-gtk -- utility based on mp3splt,
00004  *                for mp3/ogg splitting without decoding
00005  *
00006  * Copyright (c) 2005-2012 Alexandru Munteanu - io_fx@yahoo.fr
00007  *
00008  * http://mp3splt.sourceforge.net/
00009  *
00010  *********************************************************/
00011 
00012 /**********************************************************
00013  *
00014  * This program is free software; you can redistribute it and/or
00015  * modify it under the terms of the GNU General Public License
00016  * as published by the Free Software Foundation; either version 2
00017  * of the License, or (at your option) any later version.
00018  *
00019  * This program is distributed in the hope that it will be useful,
00020  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00021  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00022  * GNU General Public License for more details.
00023  *
00024  * You should have received a copy of the GNU General Public License
00025  * along with this program; if not, write to the Free Software
00026  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
00027  * USA.
00028  *
00029  *********************************************************/
00030 
00031 /**********************************************************
00032  * Filename: xmms_control.h
00033  *
00034  * header to xmms_control.c
00035  *
00036  * xmms_control.c controls the xmms player
00037  *
00038  *********************************************************/
00039 
00040 void gstreamer_get_song_infos(gchar *total_infos);
00041 gchar *gstreamer_get_filename();
00042 gint gstreamer_get_playlist_number();
00043 gchar *gstreamer_get_title_song();
00044 gint gstreamer_get_time_elapsed();
00045 void gstreamer_start();
00046 void gstreamer_select_last_file();
00047 void gstreamer_play_last_file();
00048 void gstreamer_add_files(GList *list);
00049 void gstreamer_set_volume(gint volume);
00050 gint gstreamer_get_volume();
00051 void gstreamer_start_with_songs(GList *list);
00052 gint gstreamer_is_running();
00053 gint gstreamer_is_paused();
00054 void gstreamer_play();
00055 void gstreamer_stop();
00056 void gstreamer_pause();
00057 void gstreamer_next();
00058 void gstreamer_prev();
00059 void gstreamer_jump(gint position);
00060 gint gstreamer_get_total_time();
00061 gint gstreamer_is_playing();
00062 void gstreamer_quit();
00063