]> Pileus Git - ~andy/gtk/blob - gtk/gtkthemes.h
Restore code to paint the background of the text area which was
[~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 Library 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  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library 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-1999.  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
36 #ifdef __cplusplus
37 extern "C" {
38 #endif /* __cplusplus */
39
40 GtkThemeEngine * gtk_theme_engine_get             (const gchar     *name);
41 void             gtk_theme_engine_ref             (GtkThemeEngine  *engine);
42 void             gtk_theme_engine_unref           (GtkThemeEngine  *engine);
43 GtkRcStyle     * gtk_theme_engine_create_rc_style (GtkThemeEngine  *engine);
44
45 GType            gtk_theme_engine_register_type   (GtkThemeEngine  *engine,
46                                                    GType            parent_type,
47                                                    const gchar     *type_name,
48                                                    const GTypeInfo *type_info);
49
50
51 #ifdef __cplusplus
52 }
53 #endif /* __cplusplus */
54
55
56 #endif /* __GTK_THEMES_H__ */