2313
|
1 /*
|
|
2 * Copyright (C) 2001, Espen Skoglund <esk@ira.uka.de>
|
|
3 *
|
|
4 * This program is free software; you can redistribute it and/or
|
|
5 * modify it under the terms of the GNU General Public License
|
|
6 * as published by the Free Software Foundation; either version 2
|
|
7 * of the License, or (at your option) any later version.
|
|
8 *
|
|
9 * This program is distributed in the hope that it will be useful,
|
|
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
12 * GNU General Public License for more details.
|
|
13 *
|
|
14 * You should have received a copy of the GNU General Public License
|
|
15 * along with this program; if not, write to the Free Software
|
|
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
17 * 02110-1301, USA.
|
|
18 *
|
|
19 */
|
|
20 #ifndef XMMS_TITLESTRING_H
|
|
21 #define XMMS_TITLESTRING_H
|
|
22
|
|
23 #include <glib.h>
|
|
24 #include <gtk/gtk.h>
|
|
25 #include <unistd.h>
|
|
26 #include <time.h>
|
|
27
|
|
28 /*
|
|
29 * Struct which is passed to xmms_get_titlestring(). An input struct
|
|
30 * is allocated and initialized with XMMS_NEW_TITLEINPUT(). Before
|
|
31 * passing the struct to xmms_get_titlestring() it should be filled
|
|
32 * with appropriate field values.
|
|
33 */
|
|
34
|
|
35 typedef struct {
|
|
36 gint __size; /* Set by bmp_title_input_new() */
|
|
37 gint __version; /* Ditto */
|
|
38
|
|
39 gchar *performer; /* %p */
|
|
40 gchar *album_name; /* %a */
|
|
41 gchar *track_name; /* %t */
|
|
42 gint track_number; /* %n */
|
|
43 gint year; /* %y */
|
|
44 gchar *date; /* %d */
|
|
45 gchar *genre; /* %g */
|
|
46 gchar *comment; /* %c */
|
|
47 gchar *file_name; /* %f */
|
|
48 const gchar *file_ext; /* %e *//* is not always strdup'ed, see xmms_input_get_song_info and plugins! */
|
|
49 gchar *file_path; /* %F */
|
|
50 gint length; /* not displayable */
|
|
51 gchar *formatter; /* not displayable */
|
|
52 time_t mtime; /* time of modified */
|
|
53 } TitleInput;
|
|
54
|
|
55 typedef TitleInput BmpTitleInput;
|
|
56
|
|
57
|
|
58 /*
|
|
59 * Using a __size field helps the library functions detect plugins
|
|
60 * that use a possibly extended version of the struct. The __version
|
|
61 * field helps the library detect possible future incompatibilities in
|
|
62 * the struct layout.
|
|
63 */
|
|
64
|
|
65 #define XMMS_TITLEINPUT_SIZE sizeof(TitleInput)
|
|
66 #define XMMS_TITLEINPUT_VERSION (1)
|
|
67
|
|
68 #define XMMS_NEW_TITLEINPUT(input) G_STMT_START { \
|
|
69 input = g_new0(TitleInput, 1); \
|
|
70 input->__size = XMMS_TITLEINPUT_SIZE; \
|
|
71 input->__version = XMMS_TITLEINPUT_VERSION; \
|
|
72 } G_STMT_END
|
|
73
|
|
74
|
|
75 G_BEGIN_DECLS
|
|
76
|
|
77 TitleInput *bmp_title_input_new(void);
|
|
78 void bmp_title_input_free(BmpTitleInput * input);
|
|
79
|
|
80 gchar *xmms_get_titlestring(const gchar * fmt, TitleInput * input);
|
|
81 GtkWidget *xmms_titlestring_descriptions(gchar * tags, gint rows);
|
|
82
|
|
83 G_END_DECLS
|
|
84
|
|
85 #endif /* !XMMS_TITLESTRING_H */
|