Code

screen_song: Added some statistics about mpd to the song screen.
[ncmpc.git] / src / utils.h
1 /* ncmpc (Ncurses MPD Client)
2  * (c) 2004-2009 The Music Player Daemon Project
3  * Project homepage: http://musicpd.org
4  
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
20 #ifndef UTILS_H
21 #define UTILS_H
23 #include "mpdclient.h"
25 #include <glib.h>
27 /* functions for lists containing strings */
28 GList *string_list_free(GList *string_list);
29 GList *string_list_find(GList *string_list, const gchar *str);
30 GList *string_list_remove(GList *string_list, const gchar *str);
32 /* create a string list from path - used for completion */
33 #define GCMP_TYPE_DIR       (0x01 << 0)
34 #define GCMP_TYPE_FILE      (0x01 << 1)
35 #define GCMP_TYPE_PLAYLIST  (0x01 << 2)
36 #define GCMP_TYPE_RFILE     (GCMP_TYPE_DIR | GCMP_TYPE_FILE)
37 #define GCMP_TYPE_RPLAYLIST (GCMP_TYPE_DIR | GCMP_TYPE_PLAYLIST)
39 GList *gcmp_list_from_path(mpdclient_t *c,
40                            const gchar *path,
41                            GList *list,
42                            gint types);
44 char *
45 time_seconds_to_durationstr(unsigned long time_seconds);
47 #endif