]> Pileus Git - ~andy/gtk/blob - gtk/gtkstyleproviderprivate.h
GtkSearchEntry: add rtl support
[~andy/gtk] / gtk / gtkstyleproviderprivate.h
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 2011 Benjamin Otte <otte@gnome.org>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #ifndef __GTK_STYLE_PROVIDER_PRIVATE_H__
19 #define __GTK_STYLE_PROVIDER_PRIVATE_H__
20
21 #include <glib-object.h>
22 #include "gtk/gtkcsskeyframesprivate.h"
23 #include "gtk/gtkcsslookupprivate.h"
24 #include "gtk/gtkcssmatcherprivate.h"
25 #include <gtk/gtkenums.h>
26 #include <gtk/gtksymboliccolor.h>
27 #include <gtk/gtktypes.h>
28
29 G_BEGIN_DECLS
30
31 #define GTK_TYPE_STYLE_PROVIDER_PRIVATE          (_gtk_style_provider_private_get_type ())
32 #define GTK_STYLE_PROVIDER_PRIVATE(o)            (G_TYPE_CHECK_INSTANCE_CAST ((o), GTK_TYPE_STYLE_PROVIDER_PRIVATE, GtkStyleProviderPrivate))
33 #define GTK_IS_STYLE_PROVIDER_PRIVATE(o)         (G_TYPE_CHECK_INSTANCE_TYPE ((o), GTK_TYPE_STYLE_PROVIDER_PRIVATE))
34 #define GTK_STYLE_PROVIDER_PRIVATE_GET_INTERFACE(o)  (G_TYPE_INSTANCE_GET_INTERFACE ((o), GTK_TYPE_STYLE_PROVIDER_PRIVATE, GtkStyleProviderPrivateInterface))
35
36 typedef struct _GtkStyleProviderPrivateInterface GtkStyleProviderPrivateInterface;
37 typedef struct _GtkStyleProviderPrivate GtkStyleProviderPrivate; /* dummy typedef */
38
39 struct _GtkStyleProviderPrivateInterface
40 {
41   GTypeInterface g_iface;
42
43   GtkSymbolicColor *    (* get_color)           (GtkStyleProviderPrivate *provider,
44                                                  const char              *name);
45   GtkCssKeyframes *     (* get_keyframes)       (GtkStyleProviderPrivate *provider,
46                                                  const char              *name);
47   void                  (* lookup)              (GtkStyleProviderPrivate *provider,
48                                                  const GtkCssMatcher     *matcher,
49                                                  GtkCssLookup            *lookup);
50   GtkCssChange          (* get_change)          (GtkStyleProviderPrivate *provider,
51                                                  const GtkCssMatcher     *matcher);
52
53   /* signal */
54   void                  (* changed)             (GtkStyleProviderPrivate *provider);
55 };
56
57 GType                   _gtk_style_provider_private_get_type     (void) G_GNUC_CONST;
58
59 GtkSymbolicColor *      _gtk_style_provider_private_get_color    (GtkStyleProviderPrivate *provider,
60                                                                   const char              *name);
61 GtkCssKeyframes *       _gtk_style_provider_private_get_keyframes(GtkStyleProviderPrivate *provider,
62                                                                   const char              *name);
63 void                    _gtk_style_provider_private_lookup       (GtkStyleProviderPrivate *provider,
64                                                                   const GtkCssMatcher     *matcher,
65                                                                   GtkCssLookup            *lookup);
66 GtkCssChange            _gtk_style_provider_private_get_change   (GtkStyleProviderPrivate *provider,
67                                                                   const GtkCssMatcher     *matcher);
68
69 void                    _gtk_style_provider_private_changed      (GtkStyleProviderPrivate *provider);
70
71 G_END_DECLS
72
73 #endif /* __GTK_STYLE_PROVIDER_PRIVATE_H__ */