0
|
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., 59 Temple Place - Suite 330, Boston, MA
|
|
17 * 02111-1307, USA.
|
|
18 *
|
|
19 */
|
|
20 #ifndef XMMS_TITLESTRING_H
|
|
21 #define XMMS_TITLESTRING_H
|
|
22
|
|
23 #include <glib.h>
|
|
24 #include <gtk/gtk.h>
|
|
25
|
|
26
|
|
27 /*
|
|
28 * Struct which is passed to xmms_get_titlestring(). An input struct
|
|
29 * is allocated and initialized with XMMS_NEW_TITLEINPUT(). Before
|
|
30 * passing the struct to xmms_get_titlestring() it should be filled
|
|
31 * with appropriate field values.
|
|
32 */
|
|
33
|
|
34 typedef struct {
|
|
35 gint __size; /* Set by XMMS_NEW_TITLEINPUT() */
|
|
36 gint __version; /* Ditto */
|
|
37
|
|
38 gchar *performer; /* %p */
|
|
39 gchar *album_name; /* %a */
|
|
40 gchar *track_name; /* %t */
|
|
41 gint track_number; /* %n */
|
|
42 gint year; /* %y */
|
|
43 gchar *date; /* %d */
|
|
44 gchar *genre; /* %g */
|
|
45 gchar *comment; /* %c */
|
|
46 gchar *file_name; /* %f */
|
|
47 const gchar *file_ext; /* %e *//* is not always strdup'ed, see xmms_input_get_song_info and plugins! */
|
|
48 gchar *file_path; /* %F */
|
|
49 } TitleInput;
|
|
50
|
|
51 typedef TitleInput BmpTitleInput;
|
|
52
|
|
53
|
|
54 /*
|
|
55 * Using a __size field helps the library functions detect plugins
|
|
56 * that use a possibly extended version of the struct. The __version
|
|
57 * field helps the library detect possible future incompatibilities in
|
|
58 * the struct layout.
|
|
59 */
|
|
60
|
|
61 #define XMMS_TITLEINPUT_SIZE sizeof(TitleInput)
|
|
62 #define XMMS_TITLEINPUT_VERSION (1)
|
|
63
|
|
64 #define XMMS_NEW_TITLEINPUT(input) G_STMT_START { \
|
|
65 input = g_new0(TitleInput, 1); \
|
|
66 input->__size = XMMS_TITLEINPUT_SIZE; \
|
|
67 input->__version = XMMS_TITLEINPUT_VERSION; \
|
|
68 } G_STMT_END
|
|
69
|
|
70
|
|
71 G_BEGIN_DECLS
|
|
72
|
|
73 TitleInput *bmp_title_input_new(void);
|
|
74 void bmp_title_input_free(BmpTitleInput * input);
|
|
75
|
|
76 gchar *xmms_get_titlestring(const gchar * fmt, TitleInput * input);
|
|
77 GtkWidget *xmms_titlestring_descriptions(gchar * tags, gint rows);
|
|
78
|
|
79 G_END_DECLS
|
|
80
|
|
81 #endif /* !XMMS_TITLESTRING_H */
|