]> Pileus Git - ~andy/gtk/blob - gtk/gtkwin32themeprivate.h
fb20fbcf78b8bf7c8dc7b4a687cf06a8a31c43bd
[~andy/gtk] / gtk / gtkwin32themeprivate.h
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 2011 Red Hat, Inc.
3  *
4  * Authors: Alexander Larsson <alexl@gnome.org>
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
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21
22 #ifndef __GTK_WIN32_THEME_PART_H__
23 #define __GTK_WIN32_THEME_PART_H__
24
25 #include "gtkcssparserprivate.h"
26
27 #ifdef G_OS_WIN32
28
29 #include <windows.h>
30
31 typedef HANDLE HTHEME;
32
33 #else /* !G_OS_WIN32 */
34
35 typedef void * HTHEME;
36
37 #endif /* G_OS_WIN32 */
38
39 G_BEGIN_DECLS
40
41 #define GTK_WIN32_THEME_SYMBOLIC_COLOR_NAME "-gtk-win32-color"
42
43 HTHEME             _gtk_win32_lookup_htheme_by_classname (const char  *classname);
44 cairo_surface_t *  _gtk_win32_theme_part_create_surface  (HTHEME       theme,
45                                                           int          xp_part,
46                                                           int          state,
47                                                           int          margins[4],
48                                                           int          width,
49                                                           int          height);
50
51 int                _gtk_win32_theme_int_parse     (GtkCssParser      *parser,
52                                                    GFile             *base,
53                                                    int               *value);
54 GtkSymbolicColor  *_gtk_win32_theme_color_parse   (GtkCssParser      *parser);
55 gboolean           _gtk_win32_theme_color_resolve (const char        *theme_class,
56                                                    gint               id,
57                                                    GdkRGBA           *color);
58
59 G_END_DECLS
60
61 #endif /* __GTK_WIN32_THEME_PART_H__ */