]> Pileus Git - ~andy/gtk/blob - gtk/gtkcssimagevalue.c
cssvalue: Add a cssvalue for images
[~andy/gtk] / gtk / gtkcssimagevalue.c
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 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 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 #include "config.h"
19
20 #include "gtkcssimagevalueprivate.h"
21
22 #include "gtkstylepropertyprivate.h"
23
24 struct _GtkCssValue {
25   GTK_CSS_VALUE_BASE
26   GtkCssImage *image;
27 };
28
29 static void
30 gtk_css_value_image_free (GtkCssValue *value)
31 {
32   g_object_unref (value->image);
33   g_slice_free (GtkCssValue, value);
34 }
35
36 static gboolean
37 gtk_css_value_image_equal (const GtkCssValue *value1,
38                            const GtkCssValue *value2)
39 {
40   return value1->image == value2->image;
41 }
42
43 static void
44 gtk_css_value_image_print (const GtkCssValue *value,
45                            GString           *string)
46 {
47   if (value->image)
48     _gtk_css_image_print (value->image, string);
49   else
50     g_string_append (string, "none");
51 }
52
53 static const GtkCssValueClass GTK_CSS_VALUE_IMAGE = {
54   gtk_css_value_image_free,
55   gtk_css_value_image_equal,
56   gtk_css_value_image_print
57 };
58
59 GtkCssValue *
60 _gtk_css_image_value_new (GtkCssImage *image)
61 {
62   static GtkCssValue none_singleton = { &GTK_CSS_VALUE_IMAGE, 1, NULL };
63   GtkCssValue *value;
64
65   if (image == NULL)
66     return _gtk_css_value_ref (&none_singleton);
67
68   value = _gtk_css_value_new (GtkCssValue, &GTK_CSS_VALUE_IMAGE);
69   value->image = image;
70
71   return value;
72 }
73
74 GtkCssImage *
75 _gtk_css_image_value_get_image (const GtkCssValue *value)
76 {
77   g_return_val_if_fail (value->class == &GTK_CSS_VALUE_IMAGE, NULL);
78
79   return value->image;
80 }
81