[CpmlArc] Fixed issue 7: arc extents bug
[adg.git] / adg / adg-projection.c
blob69a87d7acd795ab88248467a8e2f0477f0e870c1
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.
21 /**
22 * SECTION:adg-projection
23 * @short_description: The standard symbol for specifying the projection scheme
25 * The #AdgProjection is an entity representing the standard symbol
26 * of the projection scheme.
27 **/
29 /**
30 * AdgProjection:
32 * All fields are private and should not be used directly.
33 * Use its public methods instead.
34 **/
37 #include "adg-projection.h"
38 #include "adg-projection-private.h"
39 #include "adg-line-style.h"
40 #include "adg-dress-builtins.h"
41 #include "adg-intl.h"
43 #define PARENT_OBJECT_CLASS ((GObjectClass *) adg_projection_parent_class)
46 enum {
47 PROP_0,
48 PROP_SYMBOL_DRESS,
49 PROP_AXIS_DRESS,
50 PROP_SCHEME
54 static void get_property (GObject *object,
55 guint param_id,
56 GValue *value,
57 GParamSpec *pspec);
58 static void set_property (GObject *object,
59 guint param_id,
60 const GValue *value,
61 GParamSpec *pspec);
62 static void arrange (AdgEntity *entity);
63 static void render (AdgEntity *entity,
64 cairo_t *cr);
65 static void arrange_class (AdgProjectionClass *projection_class,
66 AdgProjectionScheme scheme);
67 static gboolean set_scheme (AdgProjection *projection,
68 AdgProjectionScheme scheme);
71 G_DEFINE_TYPE(AdgProjection, adg_projection, ADG_TYPE_ENTITY);
74 static void
75 adg_projection_class_init(AdgProjectionClass *klass)
77 GObjectClass *gobject_class;
78 AdgEntityClass *entity_class;
79 GParamSpec *param;
80 AdgProjectionClassPrivate *data_class;
82 gobject_class = (GObjectClass *) klass;
83 entity_class = (AdgEntityClass *) klass;
85 g_type_class_add_private(klass, sizeof(AdgProjectionPrivate));
87 gobject_class->get_property = get_property;
88 gobject_class->set_property = set_property;
90 entity_class->arrange = arrange;
91 entity_class->render = render;
93 param = adg_param_spec_dress("symbol-dress",
94 P_("Symbol Dress"),
95 P_("The line dress to use for rendering the views of the projection"),
96 ADG_DRESS_LINE,
97 G_PARAM_READWRITE);
98 g_object_class_install_property(gobject_class, PROP_SYMBOL_DRESS, param);
100 param = adg_param_spec_dress("axis-dress",
101 P_("Axis Dress"),
102 P_("The line dress to use for rendering the axis of the projection scheme"),
103 ADG_DRESS_LINE,
104 G_PARAM_READWRITE);
105 g_object_class_install_property(gobject_class, PROP_AXIS_DRESS, param);
107 param = g_param_spec_enum("scheme",
108 P_("Projection Scheme"),
109 P_("The projection scheme to be represented"),
110 ADG_TYPE_PROJECTION_SCHEME,
111 ADG_PROJECTION_UNDEFINED,
112 G_PARAM_READWRITE);
113 g_object_class_install_property(gobject_class, PROP_SCHEME, param);
115 /* Initialize the private class data: the allocated struct is
116 * never freed as this type is registered statically, hence
117 * never destroyed. A better approach would be to use the old
118 * type initialization (no G_TYPE_DEFINE and friends) that
119 * allows to specify a custom class finalization method */
120 data_class = g_new(AdgProjectionClassPrivate, 1);
122 data_class->scheme = ADG_PROJECTION_UNDEFINED;
123 data_class->symbol = NULL;
124 data_class->axis = NULL;
125 data_class->extents.is_defined = FALSE;
127 klass->data_class = data_class;
130 static void
131 adg_projection_init(AdgProjection *projection)
133 AdgProjectionPrivate *data = G_TYPE_INSTANCE_GET_PRIVATE(projection, ADG_TYPE_PROJECTION,
134 AdgProjectionPrivate);
136 data->symbol_dress = ADG_DRESS_LINE;
137 data->axis_dress = ADG_DRESS_LINE;
138 data->scheme = ADG_PROJECTION_UNDEFINED;
140 projection->data = data;
143 static void
144 get_property(GObject *object, guint prop_id, GValue *value, GParamSpec *pspec)
146 AdgProjectionPrivate *data = ((AdgProjection *) object)->data;
148 switch (prop_id) {
149 case PROP_SYMBOL_DRESS:
150 g_value_set_int(value, data->symbol_dress);
151 break;
152 case PROP_AXIS_DRESS:
153 g_value_set_int(value, data->axis_dress);
154 break;
155 case PROP_SCHEME:
156 g_value_set_enum(value, data->scheme);
157 break;
158 default:
159 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
160 break;
164 static void
165 set_property(GObject *object, guint prop_id,
166 const GValue *value, GParamSpec *pspec)
168 AdgProjection *projection;
169 AdgProjectionPrivate *data;
171 projection = (AdgProjection *) object;
172 data = projection->data;
174 switch (prop_id) {
175 case PROP_SYMBOL_DRESS:
176 adg_dress_set(&data->symbol_dress, g_value_get_int(value));
177 break;
178 case PROP_AXIS_DRESS:
179 adg_dress_set(&data->axis_dress, g_value_get_int(value));
180 break;
181 case PROP_SCHEME:
182 set_scheme(projection, g_value_get_enum(value));
183 break;
184 default:
185 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
186 break;
192 * adg_projection_new:
193 * @scheme: the scheme represented by this projection
195 * Creates a new projection entity representing the selected @scheme.
197 * Returns: the newly created projection entity
199 AdgProjection *
200 adg_projection_new(AdgProjectionScheme scheme)
202 return g_object_new(ADG_TYPE_PROJECTION, "scheme", scheme, NULL);
206 * adg_projection_get_symbol_dress:
207 * @projection: an #AdgProjection
209 * Gets the line dress to be used in stroking the symbol of @projection.
211 * Returns: the requested line dress
213 AdgDress
214 adg_projection_get_symbol_dress(AdgProjection *projection)
216 AdgProjectionPrivate *data;
218 g_return_val_if_fail(ADG_IS_PROJECTION(projection), ADG_DRESS_UNDEFINED);
220 data = projection->data;
222 return data->symbol_dress;
226 * adg_projection_set_symbol_dress:
227 * @projection: an #AdgProjection
228 * @dress: the new #AdgDress to use
230 * Sets a new line dress for rendering the symbol of @projection. The
231 * new dress must be a line dress: the check is done by calling
232 * adg_dress_are_related() with @dress and the old dress as
233 * arguments. Check out its documentation for further details.
235 * The default dress is a transparent line dress: the rendering
236 * callback will stroke the symbol using the default color with
237 * a predefined thickness.
239 void
240 adg_projection_set_symbol_dress(AdgProjection *projection, AdgDress dress)
242 AdgProjectionPrivate *data;
244 g_return_if_fail(ADG_IS_PROJECTION(projection));
246 data = projection->data;
248 if (adg_dress_set(&data->symbol_dress, dress))
249 g_object_notify((GObject *) projection, "symbol-dress");
253 * adg_projection_get_axis_dress:
254 * @projection: an #AdgProjection
256 * Gets the line dress to be used in stroking the axis of @projection.
258 * Returns: the requested line dress
260 AdgDress
261 adg_projection_get_axis_dress(AdgProjection *projection)
263 AdgProjectionPrivate *data;
265 g_return_val_if_fail(ADG_IS_PROJECTION(projection), ADG_DRESS_UNDEFINED);
267 data = projection->data;
269 return data->axis_dress;
273 * adg_projection_set_axis_dress:
274 * @projection: an #AdgProjection
275 * @dress: the new #AdgDress to use
277 * Sets a new line dress for rendering the axis of @projection.
278 * The new dress must be a line dress: the check is done by
279 * calling adg_dress_are_related() with @dress and the old
280 * dress as arguments. Check out its documentation for
281 * further details.
283 * The default dress is a transparent line dress: the rendering
284 * callback will stroke the axis using the default line style.
286 void
287 adg_projection_set_axis_dress(AdgProjection *projection, AdgDress dress)
289 AdgProjectionPrivate *data;
291 g_return_if_fail(ADG_IS_PROJECTION(projection));
293 data = projection->data;
295 if (adg_dress_set(&data->axis_dress, dress))
296 g_object_notify((GObject *) projection, "axis-dress");
300 * adg_projection_get_scheme:
301 * @projection: an #AdgProjection
303 * Gets the scheme represented by @projection.
305 * Returns: the scheme of @projection
307 AdgProjectionScheme
308 adg_projection_get_scheme(AdgProjection *projection)
310 AdgProjectionPrivate *data;
312 g_return_val_if_fail(ADG_IS_PROJECTION(projection),
313 ADG_PROJECTION_UNDEFINED);
315 data = projection->data;
317 return data->scheme;
321 * adg_projection_set_scheme:
322 * @projection: an #AdgProjection
323 * @scheme: the new projection scheme
325 * Sets a new scheme on @projection. If @scheme is different
326 * from the old one, @projection is invalidated.
328 void
329 adg_projection_set_scheme(AdgProjection *projection,
330 AdgProjectionScheme scheme)
332 g_return_if_fail(ADG_IS_PROJECTION(projection));
334 if (set_scheme(projection, scheme))
335 g_object_notify((GObject *) projection, "scheme");
339 static void
340 arrange(AdgEntity *entity)
342 AdgProjectionPrivate *data;
343 AdgProjectionClass *projection_class;
344 AdgProjectionClassPrivate *data_class;
345 CpmlExtents extents;
346 const AdgMatrix *local;
348 data = ((AdgProjection *) entity)->data;
349 projection_class = ADG_PROJECTION_GET_CLASS(entity);
350 data_class = projection_class->data_class;
351 local = adg_entity_local_matrix(entity);
353 arrange_class(projection_class, data->scheme);
354 cpml_extents_copy(&extents, &data_class->extents);
356 /* Apply the local matrix to the extents of this projection instance */
357 cpml_pair_transform(&extents.org, local);
358 cpml_vector_transform(&extents.size, local);
359 adg_entity_set_extents(entity, &extents);
362 static void
363 arrange_class(AdgProjectionClass *projection_class, AdgProjectionScheme scheme)
365 AdgProjectionClassPrivate *data_class;
366 AdgPath *symbol, *axis;
368 data_class = projection_class->data_class;
370 if (data_class->scheme == scheme)
371 return;
373 if (data_class->symbol != NULL)
374 g_object_unref(data_class->symbol);
376 if (data_class->axis != NULL)
377 g_object_unref(data_class->axis);
379 data_class->scheme = scheme;
381 switch(scheme) {
382 case ADG_PROJECTION_UNDEFINED:
383 symbol = NULL;
384 axis = NULL;
385 break;
386 case ADG_PROJECTION_FIRST_ANGLE:
387 symbol = adg_path_new();
388 adg_path_move_to_explicit(symbol, 4, 19);
389 adg_path_line_to_explicit(symbol, 24, 24);
390 adg_path_line_to_explicit(symbol, 24, 4);
391 adg_path_line_to_explicit(symbol, 4, 9);
392 adg_path_close(symbol);
393 adg_path_move_to_explicit(symbol, 49, 14);
394 adg_path_arc_to_explicit(symbol, 29, 14, 49, 14);
395 adg_path_move_to_explicit(symbol, 44, 14);
396 adg_path_arc_to_explicit(symbol, 34, 14, 44, 14);
398 axis = adg_path_new();
399 adg_path_move_to_explicit(axis, 0, 14);
400 adg_path_line_to_explicit(axis, 53, 14);
401 adg_path_move_to_explicit(axis, 39, 0);
402 adg_path_line_to_explicit(axis, 39, 28);
403 break;
404 case ADG_PROJECTION_THIRD_ANGLE:
405 symbol = adg_path_new();
406 adg_path_move_to_explicit(symbol, 29, 19);
407 adg_path_line_to_explicit(symbol, 49, 24);
408 adg_path_line_to_explicit(symbol, 49, 4);
409 adg_path_line_to_explicit(symbol, 29, 9);
410 adg_path_close(symbol);
411 adg_path_move_to_explicit(symbol, 24, 14);
412 adg_path_arc_to_explicit(symbol, 4, 14, 24, 14);
413 adg_path_move_to_explicit(symbol, 19, 14);
414 adg_path_arc_to_explicit(symbol, 9, 14, 19, 14);
416 axis = adg_path_new();
417 adg_path_move_to_explicit(axis, 0, 14);
418 adg_path_line_to_explicit(axis, 53, 14);
419 adg_path_move_to_explicit(axis, 14, 0);
420 adg_path_line_to_explicit(axis, 14, 28);
421 break;
422 default:
423 g_assert_not_reached();
424 break;
427 data_class->symbol = symbol;
428 data_class->axis = axis;
429 data_class->extents.is_defined = FALSE;
431 if (axis != NULL)
432 cpml_extents_add(&data_class->extents,
433 adg_trail_extents((AdgTrail *) axis));
435 if (symbol != NULL)
436 cpml_extents_add(&data_class->extents,
437 adg_trail_extents((AdgTrail *) symbol));
440 static void
441 render(AdgEntity *entity, cairo_t *cr)
443 AdgProjectionClassPrivate *data_class;
444 AdgProjectionPrivate *data;
445 const cairo_path_t *cairo_path;
447 data_class = ADG_PROJECTION_GET_CLASS(entity)->data_class;
448 data = ((AdgProjection *) entity)->data;
450 if (data_class->symbol != NULL) {
451 cairo_path = adg_trail_get_cairo_path((AdgTrail *) data_class->symbol);
453 cairo_save(cr);
454 cairo_set_matrix(cr, adg_entity_ctm(entity));
455 cairo_append_path(cr, cairo_path);
456 cairo_restore(cr);
458 cairo_set_line_width(cr, 2);
459 adg_entity_apply_dress(entity, data->symbol_dress, cr);
461 cairo_stroke(cr);
464 if (data_class->axis != NULL) {
465 const gdouble dashes[] = { 5, 2, 1, 2 };
467 cairo_path = adg_trail_get_cairo_path((AdgTrail *) data_class->axis);
469 cairo_save(cr);
470 cairo_set_matrix(cr, adg_entity_ctm(entity));
471 cairo_append_path(cr, cairo_path);
472 cairo_restore(cr);
474 cairo_set_line_width(cr, 1);
475 cairo_set_dash(cr, dashes, G_N_ELEMENTS(dashes), -1.5);
476 adg_entity_apply_dress(entity, data->axis_dress, cr);
478 cairo_stroke(cr);
482 static gboolean
483 set_scheme(AdgProjection *projection, AdgProjectionScheme scheme)
485 AdgProjectionPrivate *data = projection->data;
487 if (data->scheme == scheme)
488 return FALSE;
490 data->scheme = scheme;
492 adg_entity_invalidate((AdgEntity *) projection);
493 return TRUE;