[docs] Updated TODO.xml
[adg.git] / adg / adg-projection.c
blobf82b238c2456f69f6b38a58b9d37131001944da8
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_set_symbol_dress:
207 * @projection: an #AdgProjection
208 * @dress: the new #AdgDress to use
210 * Sets a new line dress for rendering the symbol of @projection. The
211 * new dress must be a line dress: the check is done by calling
212 * adg_dress_are_related() with @dress and the old dress as
213 * arguments. Check out its documentation for further details.
215 * The default dress is a transparent line dress: the rendering
216 * callback will stroke the symbol using the default color with
217 * a predefined thickness.
219 void
220 adg_projection_set_symbol_dress(AdgProjection *projection, AdgDress dress)
222 AdgProjectionPrivate *data;
224 g_return_if_fail(ADG_IS_PROJECTION(projection));
226 data = projection->data;
228 if (adg_dress_set(&data->symbol_dress, dress))
229 g_object_notify((GObject *) projection, "symbol-dress");
233 * adg_projection_get_symbol_dress:
234 * @projection: an #AdgProjection
236 * Gets the line dress to be used in stroking the symbol of @projection.
238 * Returns: the requested line dress
240 AdgDress
241 adg_projection_get_symbol_dress(AdgProjection *projection)
243 AdgProjectionPrivate *data;
245 g_return_val_if_fail(ADG_IS_PROJECTION(projection), ADG_DRESS_UNDEFINED);
247 data = projection->data;
249 return data->symbol_dress;
253 * adg_projection_set_axis_dress:
254 * @projection: an #AdgProjection
255 * @dress: the new #AdgDress to use
257 * Sets a new line dress for rendering the axis of @projection.
258 * The new dress must be a line dress: the check is done by
259 * calling adg_dress_are_related() with @dress and the old
260 * dress as arguments. Check out its documentation for
261 * further details.
263 * The default dress is a transparent line dress: the rendering
264 * callback will stroke the axis using the default line style.
266 void
267 adg_projection_set_axis_dress(AdgProjection *projection, AdgDress dress)
269 AdgProjectionPrivate *data;
271 g_return_if_fail(ADG_IS_PROJECTION(projection));
273 data = projection->data;
275 if (adg_dress_set(&data->axis_dress, dress))
276 g_object_notify((GObject *) projection, "axis-dress");
280 * adg_projection_get_axis_dress:
281 * @projection: an #AdgProjection
283 * Gets the line dress to be used in stroking the axis of @projection.
285 * Returns: the requested line dress
287 AdgDress
288 adg_projection_get_axis_dress(AdgProjection *projection)
290 AdgProjectionPrivate *data;
292 g_return_val_if_fail(ADG_IS_PROJECTION(projection), ADG_DRESS_UNDEFINED);
294 data = projection->data;
296 return data->axis_dress;
300 * adg_projection_set_scheme:
301 * @projection: an #AdgProjection
302 * @scheme: the new projection scheme
304 * Sets a new scheme on @projection. If @scheme is different
305 * from the old one, @projection is invalidated.
307 void
308 adg_projection_set_scheme(AdgProjection *projection,
309 AdgProjectionScheme scheme)
311 g_return_if_fail(ADG_IS_PROJECTION(projection));
313 if (set_scheme(projection, scheme))
314 g_object_notify((GObject *) projection, "scheme");
318 * adg_projection_get_scheme:
319 * @projection: an #AdgProjection
321 * Gets the scheme represented by @projection.
323 * Returns: the scheme of @projection
325 AdgProjectionScheme
326 adg_projection_get_scheme(AdgProjection *projection)
328 AdgProjectionPrivate *data;
330 g_return_val_if_fail(ADG_IS_PROJECTION(projection),
331 ADG_PROJECTION_UNDEFINED);
333 data = projection->data;
335 return data->scheme;
339 static void
340 arrange(AdgEntity *entity)
342 AdgProjectionPrivate *data;
343 AdgProjectionClass *projection_class;
344 AdgProjectionClassPrivate *data_class;
345 CpmlExtents extents;
347 data = ((AdgProjection *) entity)->data;
348 projection_class = ADG_PROJECTION_GET_CLASS(entity);
349 data_class = projection_class->data_class;
351 arrange_class(projection_class, data->scheme);
352 cpml_extents_copy(&extents, &data_class->extents);
354 cpml_extents_transform(&extents, adg_entity_get_local_matrix(entity));
355 cpml_extents_transform(&extents, adg_entity_get_global_matrix(entity));
356 adg_entity_set_extents(entity, &extents);
359 static void
360 arrange_class(AdgProjectionClass *projection_class, AdgProjectionScheme scheme)
362 AdgProjectionClassPrivate *data_class;
363 AdgPath *symbol, *axis;
365 data_class = projection_class->data_class;
367 if (data_class->scheme == scheme)
368 return;
370 if (data_class->symbol != NULL)
371 g_object_unref(data_class->symbol);
373 if (data_class->axis != NULL)
374 g_object_unref(data_class->axis);
376 data_class->scheme = scheme;
378 switch(scheme) {
379 case ADG_PROJECTION_UNDEFINED:
380 symbol = NULL;
381 axis = NULL;
382 break;
383 case ADG_PROJECTION_FIRST_ANGLE:
384 symbol = adg_path_new();
385 adg_path_move_to_explicit(symbol, 4, 19);
386 adg_path_line_to_explicit(symbol, 24, 24);
387 adg_path_line_to_explicit(symbol, 24, 4);
388 adg_path_line_to_explicit(symbol, 4, 9);
389 adg_path_close(symbol);
390 adg_path_move_to_explicit(symbol, 49, 14);
391 adg_path_arc_to_explicit(symbol, 29, 14, 49, 14);
392 adg_path_move_to_explicit(symbol, 44, 14);
393 adg_path_arc_to_explicit(symbol, 34, 14, 44, 14);
395 axis = adg_path_new();
396 adg_path_move_to_explicit(axis, 0, 14);
397 adg_path_line_to_explicit(axis, 53, 14);
398 adg_path_move_to_explicit(axis, 39, 0);
399 adg_path_line_to_explicit(axis, 39, 28);
400 break;
401 case ADG_PROJECTION_THIRD_ANGLE:
402 symbol = adg_path_new();
403 adg_path_move_to_explicit(symbol, 29, 19);
404 adg_path_line_to_explicit(symbol, 49, 24);
405 adg_path_line_to_explicit(symbol, 49, 4);
406 adg_path_line_to_explicit(symbol, 29, 9);
407 adg_path_close(symbol);
408 adg_path_move_to_explicit(symbol, 24, 14);
409 adg_path_arc_to_explicit(symbol, 4, 14, 24, 14);
410 adg_path_move_to_explicit(symbol, 19, 14);
411 adg_path_arc_to_explicit(symbol, 9, 14, 19, 14);
413 axis = adg_path_new();
414 adg_path_move_to_explicit(axis, 0, 14);
415 adg_path_line_to_explicit(axis, 53, 14);
416 adg_path_move_to_explicit(axis, 14, 0);
417 adg_path_line_to_explicit(axis, 14, 28);
418 break;
419 default:
420 g_assert_not_reached();
421 break;
424 data_class->symbol = symbol;
425 data_class->axis = axis;
426 data_class->extents.is_defined = FALSE;
428 if (axis != NULL)
429 cpml_extents_add(&data_class->extents,
430 adg_trail_get_extents((AdgTrail *) axis));
432 if (symbol != NULL)
433 cpml_extents_add(&data_class->extents,
434 adg_trail_get_extents((AdgTrail *) symbol));
437 static void
438 render(AdgEntity *entity, cairo_t *cr)
440 AdgProjectionClassPrivate *data_class;
441 AdgProjectionPrivate *data;
442 const cairo_path_t *cairo_path;
444 data_class = ADG_PROJECTION_GET_CLASS(entity)->data_class;
445 data = ((AdgProjection *) entity)->data;
447 if (data_class->symbol != NULL) {
448 cairo_path = adg_trail_get_cairo_path((AdgTrail *) data_class->symbol);
450 cairo_save(cr);
451 cairo_transform(cr, adg_entity_get_local_matrix(entity));
452 cairo_append_path(cr, cairo_path);
453 cairo_restore(cr);
455 cairo_set_line_width(cr, 2);
456 adg_entity_apply_dress(entity, data->symbol_dress, cr);
458 cairo_stroke(cr);
461 if (data_class->axis != NULL) {
462 const gdouble dashes[] = { 5, 2, 1, 2 };
464 cairo_path = adg_trail_get_cairo_path((AdgTrail *) data_class->axis);
466 cairo_save(cr);
467 cairo_transform(cr, adg_entity_get_local_matrix(entity));
468 cairo_append_path(cr, cairo_path);
469 cairo_restore(cr);
471 cairo_set_line_width(cr, 1);
472 cairo_set_dash(cr, dashes, G_N_ELEMENTS(dashes), -1.5);
473 adg_entity_apply_dress(entity, data->axis_dress, cr);
475 cairo_stroke(cr);
479 static gboolean
480 set_scheme(AdgProjection *projection, AdgProjectionScheme scheme)
482 AdgProjectionPrivate *data = projection->data;
484 if (data->scheme == scheme)
485 return FALSE;
487 data->scheme = scheme;
489 adg_entity_invalidate((AdgEntity *) projection);
490 return TRUE;