1 /* ADG - Automatic Drawing Generation
2 * Copyright (C) 2007,2008,2009 Nicola Fontana <ntd at entidi.it>
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.
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.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301, USA.
24 * @short_description: The base class of all styling objects
26 * This is the fundamental abstract class from which all customization object
30 #include "adg-style.h"
31 #include "adg-style-private.h"
32 #include "adg-line-style.h"
33 #include "adg-font-style.h"
34 #include "adg-arrow-style.h"
35 #include "adg-enums.h"
48 static void get_property (GObject
*object
,
52 static void set_property (GObject
*object
,
56 static GPtrArray
* get_pool (void);
57 static void apply (AdgStyle
*style
,
59 static void set_pattern (AdgStyle
*style
,
63 G_DEFINE_ABSTRACT_TYPE(AdgStyle
, adg_style
, G_TYPE_OBJECT
)
67 adg_style_class_init(AdgStyleClass
*klass
)
69 GObjectClass
*gobject_class
;
72 gobject_class
= (GObjectClass
*) klass
;
74 g_type_class_add_private(klass
, sizeof(AdgStylePrivate
));
76 gobject_class
->get_property
= get_property
;
77 gobject_class
->set_property
= set_property
;
79 klass
->get_pool
= get_pool
;
82 param
= g_param_spec_boxed("pattern",
84 P_("The pattern associated to this style"),
85 ADG_TYPE_PATTERN
, G_PARAM_READWRITE
);
86 g_object_class_install_property(gobject_class
, PROP_PATTERN
, param
);
90 adg_style_init(AdgStyle
*style
)
92 AdgStylePrivate
*priv
=
93 G_TYPE_INSTANCE_GET_PRIVATE(style
, ADG_TYPE_STYLE
,
102 get_property(GObject
*object
,
103 guint prop_id
, GValue
*value
, GParamSpec
*pspec
)
105 AdgStyle
*style
= (AdgStyle
*) object
;
109 g_value_set_boxed(value
, style
->priv
->pattern
);
112 G_OBJECT_WARN_INVALID_PROPERTY_ID(object
, prop_id
, pspec
);
118 set_property(GObject
*object
,
119 guint prop_id
, const GValue
*value
, GParamSpec
*pspec
)
121 AdgStyle
*style
= (AdgStyle
*) object
;
125 set_pattern(style
, g_value_get_boxed(value
));
128 G_OBJECT_WARN_INVALID_PROPERTY_ID(object
, prop_id
, pspec
);
135 * adg_style_register_id:
136 * @style: an #AdgStyle derived instance
138 * Registers a new style in the internal register.
140 * Return value: the new id associated to this style or %0 on errors
143 adg_style_register_id(AdgStyle
*style
)
147 g_return_val_if_fail(ADG_IS_STYLE(style
), 0);
149 pool
= ADG_STYLE_GET_CLASS(style
)->get_pool();
150 g_return_val_if_fail(pool
!= NULL
, 0);
152 g_ptr_array_add(pool
, style
);
154 return pool
->len
- 1;
159 * @type: the style type id
162 * Gets the preregistered style identified by @id of @style family.
164 * Return value: the requested style or %NULL on errors
167 adg_style_from_id(GType type
, AdgStyleId id
)
169 AdgStyleClass
*klass
;
172 klass
= g_type_class_ref(type
);
173 g_return_val_if_fail(ADG_IS_STYLE_CLASS(klass
), NULL
);
174 pool
= klass
->get_pool();
176 /* If @type is valid, @klass will be referenced by the pool items */
177 g_type_class_unref(klass
);
182 return (AdgStyle
*) g_ptr_array_index(pool
, id
);
186 adg_style_get_default(AdgStyleClass
*klass
)
190 g_return_val_if_fail(ADG_IS_STYLE_CLASS(klass
), NULL
);
192 pool
= klass
->get_pool();
193 return (AdgStyle
*) g_ptr_array_index(pool
, 0);
198 * @style: an #AdgStyle derived object
199 * @cr: the cairo context
201 * Applies @style to @cr so the next rendering will be done accordling to
202 * this style directives.
205 adg_style_apply(AdgStyle
*style
, cairo_t
*cr
)
207 g_return_if_fail(ADG_IS_STYLE(style
));
208 g_return_if_fail(cr
!= NULL
);
210 return ADG_STYLE_GET_CLASS(style
)->apply(style
, cr
);
214 * adg_style_get_pattern:
215 * @style: an #AdgStyle object
217 * Gets the pattern binded to this style. The returned pattern refers to
218 * an internally managed struct that must not be modified or freed.
220 * Return value: the requested pattern or %NULL on no pattern or errors
223 adg_style_get_pattern(AdgStyle
*style
)
225 g_return_val_if_fail(ADG_IS_STYLE(style
), NULL
);
227 return style
->priv
->pattern
;
231 * adg_style_set_pattern:
232 * @style: an #AdgStyle object
233 * @pattern: the new pattern
235 * Sets a new pattern for this style. This operation will release one
236 * reference on the old pattern (if any) and will add a new reference
239 * A %NULL pattern is allowed: it means the previous pattern is kept
240 * during the rendering process.
243 adg_style_set_pattern(AdgStyle
*style
, AdgPattern
*pattern
)
245 g_return_if_fail(ADG_IS_STYLE(style
));
246 g_return_if_fail(pattern
!= NULL
);
248 set_pattern(style
, pattern
);
249 g_object_notify((GObject
*) style
, "pattern");
256 g_warning("Uninmplemented get_pool()");
261 apply(AdgStyle
*style
, cairo_t
*cr
)
263 if (style
->priv
->pattern
!= NULL
)
264 cairo_set_source(cr
, style
->priv
->pattern
);
268 set_pattern(AdgStyle
*style
, AdgPattern
*pattern
)
270 if (style
->priv
->pattern
!= NULL
)
271 cairo_pattern_destroy(style
->priv
->pattern
);
274 cairo_pattern_reference(pattern
);
276 style
->priv
->pattern
= pattern
;