comparison src/skins/ui_skinselector.h @ 2675:4beebb0e82f8

add ui_skinselector
author Tomasz Mon <desowin@gmail.com>
date Sun, 01 Jun 2008 15:57:12 +0200
parents
children
comparison
equal deleted inserted replaced
2674:b84f2aca1675 2675:4beebb0e82f8
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
9 * the Free Software Foundation; under version 3 of the License.
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
17 * along with this program. If not, see <http://www.gnu.org/licenses>.
18 *
19 * The Audacious team does not consider modular code linking to
20 * Audacious or using our public API to be a derived work.
21 */
22
23 #ifndef AUDACIOUS_UI_SKINSELECTOR_H
24 #define AUDACIOUS_UI_SKINSELECTOR_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 /* AUDACIOUS_UI_SKINSELECTOR_H */