]> Pileus Git - ~andy/gtk/blob - gtk/gtkcssimageprivate.h
cssimage: Implement dependencies for images
[~andy/gtk] / gtk / gtkcssimageprivate.h
1 /*
2  * Copyright © 2011 Red Hat Inc.
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.1 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  * Authors: Benjamin Otte <otte@gnome.org>
18  */
19
20 #ifndef __GTK_CSS_IMAGE_PRIVATE_H__
21 #define __GTK_CSS_IMAGE_PRIVATE_H__
22
23 #include <cairo.h>
24 #include <glib-object.h>
25
26 #include "gtk/gtkstylecontext.h"
27 #include "gtk/gtkcssparserprivate.h"
28
29 G_BEGIN_DECLS
30
31 #define GTK_TYPE_CSS_IMAGE           (_gtk_css_image_get_type ())
32 #define GTK_CSS_IMAGE(obj)           (G_TYPE_CHECK_INSTANCE_CAST (obj, GTK_TYPE_CSS_IMAGE, GtkCssImage))
33 #define GTK_CSS_IMAGE_CLASS(cls)     (G_TYPE_CHECK_CLASS_CAST (cls, GTK_TYPE_CSS_IMAGE, GtkCssImageClass))
34 #define GTK_IS_CSS_IMAGE(obj)        (G_TYPE_CHECK_INSTANCE_TYPE (obj, GTK_TYPE_CSS_IMAGE))
35 #define GTK_IS_CSS_IMAGE_CLASS(obj)  (G_TYPE_CHECK_CLASS_TYPE (obj, GTK_TYPE_CSS_IMAGE))
36 #define GTK_CSS_IMAGE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_CSS_IMAGE, GtkCssImageClass))
37
38 typedef struct _GtkCssImage           GtkCssImage;
39 typedef struct _GtkCssImageClass      GtkCssImageClass;
40
41 struct _GtkCssImage
42 {
43   GObject parent;
44 };
45
46 struct _GtkCssImageClass
47 {
48   GObjectClass parent_class;
49
50   /* width of image or 0 if it has no width (optional) */
51   int          (* get_width)                       (GtkCssImage        *image);
52   /* height of image or 0 if it has no height (optional) */
53   int          (* get_height)                      (GtkCssImage        *image);
54   /* aspect ratio (width / height) of image or 0 if it has no aspect ratio (optional) */
55   double       (* get_aspect_ratio)                (GtkCssImage        *image);
56
57   /* create "computed value" in CSS terms, returns a new reference */
58   GtkCssImage *(* compute)                         (GtkCssImage        *image,
59                                                     guint               property_id,
60                                                     GtkStyleContext    *context,
61                                                     GtkCssDependencies *dependencies);
62
63   /* draw to 0,0 with the given width and height */
64   void         (* draw)                            (GtkCssImage        *image,
65                                                     cairo_t            *cr,
66                                                     double              width,
67                                                     double              height);
68   /* parse CSS, return TRUE on success */
69   gboolean     (* parse)                           (GtkCssImage        *image,
70                                                     GtkCssParser       *parser);
71   /* print to CSS */
72   void         (* print)                           (GtkCssImage        *image,
73                                                     GString            *string);
74 };
75
76 GType          _gtk_css_image_get_type             (void) G_GNUC_CONST;
77
78 gboolean       _gtk_css_image_can_parse            (GtkCssParser       *parser);
79 GtkCssImage *  _gtk_css_image_new_parse            (GtkCssParser       *parser);
80
81 int            _gtk_css_image_get_width            (GtkCssImage        *image);
82 int            _gtk_css_image_get_height           (GtkCssImage        *image);
83 double         _gtk_css_image_get_aspect_ratio     (GtkCssImage        *image);
84
85 GtkCssImage *  _gtk_css_image_compute              (GtkCssImage        *image,
86                                                     guint               property_id,
87                                                     GtkStyleContext    *context,
88                                                     GtkCssDependencies *dependencies);
89
90 void           _gtk_css_image_draw                 (GtkCssImage        *image,
91                                                     cairo_t            *cr,
92                                                     double              width,
93                                                     double              height);
94 void           _gtk_css_image_print                (GtkCssImage        *image,
95                                                     GString            *string);
96
97 void           _gtk_css_image_get_concrete_size    (GtkCssImage        *image,
98                                                     double              specified_width,
99                                                     double              specified_height,
100                                                     double              default_width,
101                                                     double              default_height,
102                                                     double             *concrete_width,
103                                                     double             *concrete_height);
104 cairo_surface_t *
105                _gtk_css_image_get_surface          (GtkCssImage        *image,
106                                                     cairo_surface_t    *target,
107                                                     int                 surface_width,
108                                                     int                 surface_height);
109
110 G_END_DECLS
111
112 #endif /* __GTK_CSS_IMAGE_PRIVATE_H__ */