musicus mpd client 0.1d
|
00001 00008 /********************************************************************** 00009 * Copyright 2006 - 2008 by Simon Gerber <simugerber@student.ethz.ch> 00010 * 00011 * This file is part of Musicus. 00012 * Musicus is free software: you can redistribute it and/or modify 00013 * it under the terms of the GNU General Public License as published by 00014 * the Free Software Foundation, either version 3 of the License, or 00015 * (at your option) any later version. 00016 * 00017 * Musicus is distributed in the hope that it will be useful, 00018 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00019 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00020 * GNU General Public License for more details. 00021 * 00022 * You should have received a copy of the GNU General Public License 00023 * along with Musicus. If not, see <http://www.gnu.org/licenses/>. 00024 **********************************************************************/ 00025 00026 #ifndef __PLAYLIST_GTK_H 00027 #define __PLAYLIST_GTK_H 00028 00029 #include "definitions_gtk.h" 00030 #include "playlist.h" 00031 00037 00041 GtkListStore *PlListStore; 00042 00047 GtkWidget *init_pl_widget(void); 00048 00052 void playlist_update_tree(void); 00053 00059 void pl_del_songs(GtkWidget *widget, gpointer data); 00060 00066 void mpd_mrl_add(MpdObj *obj, const gchar *mrl); 00067 00073 void mpd_add_song_list(GtkWidget *widget, gpointer data); 00074 00080 void mpd_add_directory_to_playlist(GtkWidget *widget, gpointer data); 00081 00084 #endif // __PLAYLIST_GTK_H 00085 00086 /* vim:sts=4:shiftwidth=4 00087 */