]> Pileus Git - ~andy/gtk/blob - gtk/gtkthemes.h
Update about dialog design to not use a swarm of dialogs
[~andy/gtk] / gtk / gtkthemes.h
1 /* GTK - The GIMP 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
32 #include <gtk/gtkstyle.h>
33 #include <gtk/gtkwidget.h>
34
35
36 G_BEGIN_DECLS
37
38 #define GTK_TYPE_THEME_ENGINE             (gtk_theme_engine_get_type ())
39 #define GTK_THEME_ENGINE(theme_engine)    (G_TYPE_CHECK_INSTANCE_CAST ((theme_engine), GTK_TYPE_THEME_ENGINE, GtkThemeEngine))
40 #define GTK_IS_THEME_ENGINE(theme_engine) (G_TYPE_CHECK_INSTANCE_TYPE ((theme_engine), GTK_TYPE_THEME_ENGINE))
41
42 #if !defined(GTK_DISABLE_DEPRECATED) || defined(GTK_COMPILATION)
43
44 GType           gtk_theme_engine_get_type        (void) G_GNUC_CONST;
45 GtkThemeEngine *gtk_theme_engine_get             (const gchar     *name);
46 GtkRcStyle     *gtk_theme_engine_create_rc_style (GtkThemeEngine  *engine);
47
48 #endif
49
50 G_END_DECLS
51
52 #endif /* __GTK_THEMES_H__ */