comparison audacious/ui_skinselector.h @ 2244:1148bfa60fd5 trunk

[svn] skinwin.[ch] -> ui_skinselector.[ch]
author nenolod
date Tue, 02 Jan 2007 22:23:09 -0800
parents audacious/skinwin.h@f18a5b617c34
children
comparison
equal deleted inserted replaced
2243:58082d2be394 2244:1148bfa60fd5
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 2 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, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 */
20
21 #ifndef SKINWIN_H
22 #define SKINWIN_H
23
24 #include <glib.h>
25 #include <gtk/gtk.h>
26
27 #define SKIN_NODE(x) ((SkinNode *)(x))
28 struct _SkinNode {
29 gchar *name;
30 gchar *desc;
31 gchar *path;
32 GTime *time;
33 };
34
35 typedef struct _SkinNode SkinNode;
36
37 extern GList *skinlist;
38
39 void skinlist_update();
40 void skin_view_realize(GtkTreeView * treeview);
41 void skin_view_update(GtkTreeView * treeview, GtkWidget * refresh_button);
42
43 #endif