]> Pileus Git - ~andy/gtk/blob - gtk/gtkthemes.h
93a4045ca304a5bff913c05a1cccf6b33dc11f6b
[~andy/gtk] / gtk / gtkthemes.h
1 /* GTK - The GTK+ Toolkit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * Themes added by The Rasterman <raster@redhat.com>
5  * 
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library 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 GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free
18  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19  */
20
21 /*
22  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
23  * file for a list of people on the GTK+ Team.  See the ChangeLog
24  * files for a list of changes.  These files are distributed with
25  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
26  */
27
28 #ifndef __GTK_THEMES_H__
29 #define __GTK_THEMES_H__
30
31 #include <gdk/gdk.h>
32 #include <gtk/gtkstyle.h>
33 #include <gtk/gtkwidget.h>
34
35 G_BEGIN_DECLS
36
37 #define GTK_TYPE_THEME_ENGINE             (gtk_theme_engine_get_type ())
38 #define GTK_THEME_ENGINE(theme_engine)    (G_TYPE_CHECK_INSTANCE_CAST ((theme_engine), GTK_TYPE_THEME_ENGINE, GtkThemeEngine))
39 #define GTK_IS_THEME_ENGINE(theme_engine) (G_TYPE_CHECK_INSTANCE_TYPE ((theme_engine), GTK_TYPE_THEME_ENGINE))
40
41 GType           gtk_theme_engine_get_type        (void) G_GNUC_CONST;
42 GtkThemeEngine *gtk_theme_engine_get             (const gchar     *name);
43 GtkRcStyle     *gtk_theme_engine_create_rc_style (GtkThemeEngine  *engine);
44
45 G_END_DECLS
46
47 #endif /* __GTK_THEMES_H__ */