Mercurial > audlegacy
annotate src/audacious/ui_skinselector.h @ 4547:024be3d7ef4c
Make MPRIS work again.
author | Jonathan Schleifer <js-audacious@webkeks.org> |
---|---|
date | Thu, 15 May 2008 19:25:29 +0200 |
parents | f1c756f39e6c |
children | 2eee464379dc |
rev | line source |
---|---|
2313 | 1 /* BMP - Cross-platform multimedia player |
2 * Copyright (C) 2003-2004 BMP development team. | |
3 * | |
4 * Based on XMMS: | |
5 * Copyright (C) 1998-2003 XMMS development team. | |
6 * | |
7 * This program is free software; you can redistribute it and/or modify | |
8 * it under the terms of the GNU General Public License as published by | |
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
2313
diff
changeset
|
9 * the Free Software Foundation; under version 3 of the License. |
2313 | 10 * |
11 * This program is distributed in the hope that it will be useful, | |
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 * GNU General Public License for more details. | |
15 * | |
16 * You should have received a copy of the GNU General Public License | |
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
2313
diff
changeset
|
17 * along with this program. If not, see <http://www.gnu.org/licenses>. |
3123
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
18 * |
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
19 * The Audacious team does not consider modular code linking to |
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
20 * Audacious or using our public API to be a derived work. |
2313 | 21 */ |
22 | |
23 #ifndef SKINWIN_H | |
24 #define SKINWIN_H | |
25 | |
26 #include <glib.h> | |
27 #include <gtk/gtk.h> | |
28 | |
29 #define SKIN_NODE(x) ((SkinNode *)(x)) | |
30 struct _SkinNode { | |
31 gchar *name; | |
32 gchar *desc; | |
33 gchar *path; | |
34 GTime *time; | |
35 }; | |
36 | |
37 typedef struct _SkinNode SkinNode; | |
38 | |
39 extern GList *skinlist; | |
40 | |
41 void skinlist_update(); | |
42 void skin_view_realize(GtkTreeView * treeview); | |
43 void skin_view_update(GtkTreeView * treeview, GtkWidget * refresh_button); | |
44 | |
45 #endif |