summaryrefslogtreecommitdiff
path: root/gtk/gtkstyleproviderprivate.h
blob: 9df10739877dac039e1ef30663a125350add8f46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/* GTK - The GIMP Toolkit
 * Copyright (C) 2011 Benjamin Otte <otte@gnome.org>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef __GTK_STYLE_PROVIDER_PRIVATE_H__
#define __GTK_STYLE_PROVIDER_PRIVATE_H__

#include <glib-object.h>
#include "gtk/gtkcountingbloomfilterprivate.h"
#include "gtk/gtkcsskeyframesprivate.h"
#include "gtk/gtkcsslookupprivate.h"
#include "gtk/gtkcssnodeprivate.h"
#include "gtk/gtkcssvalueprivate.h"
#include <gtk/gtktypes.h>

G_BEGIN_DECLS

#define GTK_STYLE_PROVIDER_GET_INTERFACE(o)  (G_TYPE_INSTANCE_GET_INTERFACE ((o), GTK_TYPE_STYLE_PROVIDER, GtkStyleProviderInterface))

typedef struct _GtkStyleProviderInterface GtkStyleProviderInterface;

struct _GtkStyleProviderInterface
{
  GTypeInterface g_iface;

  GtkSettings *         (* get_settings)        (GtkStyleProvider        *provider);
  GtkCssKeyframes *     (* get_keyframes)       (GtkStyleProvider        *provider,
                                                 const char              *name);
  int                   (* get_scale)           (GtkStyleProvider        *provider);
  void                  (* lookup)              (GtkStyleProvider        *provider,
                                                 const GtkCountingBloomFilter *filter,
                                                 GtkCssNode              *node,
                                                 GtkCssLookup            *lookup,
                                                 GtkCssChange            *out_change);
  void                  (* emit_error)          (GtkStyleProvider        *provider,
                                                 GtkCssSection           *section,
                                                 const GError            *error);
  /* signal */
  void                  (* changed)             (GtkStyleProvider        *provider);
};

GtkSettings *           gtk_style_provider_get_settings          (GtkStyleProvider        *provider);
GtkCssKeyframes *       gtk_style_provider_get_keyframes         (GtkStyleProvider        *provider,
                                                                  const char              *name);
int                     gtk_style_provider_get_scale             (GtkStyleProvider        *provider);
void                    gtk_style_provider_lookup                (GtkStyleProvider        *provider,
                                                                  const GtkCountingBloomFilter *filter,
                                                                  GtkCssNode              *node,
                                                                  GtkCssLookup            *lookup,
                                                                  GtkCssChange            *out_change);

void                    gtk_style_provider_changed               (GtkStyleProvider        *provider);

void                    gtk_style_provider_emit_error            (GtkStyleProvider        *provider,
                                                                  GtkCssSection           *section,
                                                                  GError                  *error);

G_END_DECLS

#endif /* __GTK_STYLE_PROVIDER_PRIVATE_H__ */