[AdgLDim] Remove redundant entity invalidation
[adg.git] / adg / adg-ldim.c
blobf685ff2a045447d059eaecf88c4bafa13058e99b
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-ldim
23 * @short_description: Linear dimensions
25 * The #AdgLDim entity represents a linear dimension.
26 **/
28 /**
29 * AdgLDim:
31 * All fields are private and should not be used directly.
32 * Use its public methods instead.
33 **/
36 #include "adg-ldim.h"
37 #include "adg-ldim-private.h"
38 #include "adg-dim-private.h"
39 #include "adg-dim-style.h"
40 #include "adg-intl.h"
42 #define PARENT_OBJECT_CLASS ((GObjectClass *) adg_ldim_parent_class)
43 #define PARENT_ENTITY_CLASS ((AdgEntityClass *) adg_ldim_parent_class)
46 enum {
47 PROP_0,
48 PROP_DIRECTION,
49 PROP_HAS_EXTENSION1,
50 PROP_HAS_EXTENSION2
54 static void dispose (GObject *object);
55 static void get_property (GObject *object,
56 guint param_id,
57 GValue *value,
58 GParamSpec *pspec);
59 static void set_property (GObject *object,
60 guint param_id,
61 const GValue *value,
62 GParamSpec *pspec);
63 static void local_changed (AdgEntity *entity);
64 static void invalidate (AdgEntity *entity);
65 static void arrange (AdgEntity *entity);
66 static void render (AdgEntity *entity,
67 cairo_t *cr);
68 static gchar * default_value (AdgDim *dim);
69 static void update_geometry (AdgLDim *ldim);
70 static void update_shift (AdgLDim *ldim);
71 static void update_entities (AdgLDim *ldim);
72 static void choose_flags (AdgLDim *ldim,
73 gboolean *to_outside,
74 gboolean *to_detach);
75 static void unset_trail (AdgLDim *ldim);
76 static void dispose_markers (AdgLDim *ldim);
77 static CpmlPath * trail_callback (AdgTrail *trail,
78 gpointer user_data);
81 G_DEFINE_TYPE(AdgLDim, adg_ldim, ADG_TYPE_DIM);
84 static void
85 adg_ldim_class_init(AdgLDimClass *klass)
87 GObjectClass *gobject_class;
88 AdgEntityClass *entity_class;
89 AdgDimClass *dim_class;
90 GParamSpec *param;
92 gobject_class = (GObjectClass *) klass;
93 entity_class = (AdgEntityClass *) klass;
94 dim_class = (AdgDimClass *) klass;
96 g_type_class_add_private(klass, sizeof(AdgLDimPrivate));
98 gobject_class->dispose = dispose;
99 gobject_class->get_property = get_property;
100 gobject_class->set_property = set_property;
102 entity_class->local_changed = local_changed;
103 entity_class->invalidate = invalidate;
104 entity_class->arrange = arrange;
105 entity_class->render = render;
107 dim_class->default_value = default_value;
109 param = g_param_spec_double("direction",
110 P_("Direction"),
111 P_("The inclination angle of the extension lines"),
112 -G_MAXDOUBLE, G_MAXDOUBLE, ADG_DIR_RIGHT,
113 G_PARAM_READWRITE | G_PARAM_CONSTRUCT);
114 g_object_class_install_property(gobject_class, PROP_DIRECTION, param);
116 param = g_param_spec_boolean("has-extension1",
117 P_("Has First Extension Line flag"),
118 P_("Show (TRUE) or hide (FALSE) the first extension line"),
119 TRUE, G_PARAM_READWRITE);
120 g_object_class_install_property(gobject_class, PROP_HAS_EXTENSION1, param);
122 param = g_param_spec_boolean("has-extension2",
123 P_("Has Second Extension Line flag"),
124 P_("Show (TRUE) or hide (FALSE) the second extension line"),
125 TRUE, G_PARAM_READWRITE);
126 g_object_class_install_property(gobject_class, PROP_HAS_EXTENSION2, param);
129 static void
130 adg_ldim_init(AdgLDim *ldim)
132 AdgLDimPrivate *data;
133 cairo_path_data_t move_to, line_to;
135 data = G_TYPE_INSTANCE_GET_PRIVATE(ldim, ADG_TYPE_LDIM, AdgLDimPrivate);
136 move_to.header.type = CAIRO_PATH_MOVE_TO;
137 move_to.header.length = 2;
138 line_to.header.type = CAIRO_PATH_LINE_TO;
139 line_to.header.length = 2;
141 data->direction = 0;
142 data->has_extension1 = TRUE;
143 data->has_extension2 = TRUE;
145 data->cpml.path.status = CAIRO_STATUS_INVALID_PATH_DATA;
146 data->cpml.path.data = data->cpml.data;
147 data->cpml.path.num_data = G_N_ELEMENTS(data->cpml.data);
148 data->cpml.path.data[0] = move_to;
149 data->cpml.path.data[2] = line_to;
150 data->cpml.path.data[4] = move_to;
151 data->cpml.path.data[6] = line_to;
152 data->cpml.path.data[8] = move_to;
153 data->cpml.path.data[10] = line_to;
154 data->cpml.path.data[12] = move_to;
155 data->cpml.path.data[14] = line_to;
156 data->cpml.path.data[16] = move_to;
157 data->cpml.path.data[18] = line_to;
159 data->trail = NULL;
160 data->marker1 = NULL;
161 data->marker2 = NULL;
163 data->geometry.is_arranged = FALSE;
164 data->shift.is_arranged = FALSE;
166 ldim->data = data;
169 static void
170 dispose(GObject *object)
172 dispose_markers((AdgLDim *) object);
174 if (PARENT_OBJECT_CLASS->dispose)
175 PARENT_OBJECT_CLASS->dispose(object);
178 static void
179 get_property(GObject *object,
180 guint prop_id, GValue *value, GParamSpec *pspec)
182 AdgLDimPrivate *data = ((AdgLDim *) object)->data;
184 switch (prop_id) {
185 case PROP_DIRECTION:
186 g_value_set_double(value, data->direction);
187 break;
188 case PROP_HAS_EXTENSION1:
189 g_value_set_boolean(value, data->has_extension1);
190 break;
191 case PROP_HAS_EXTENSION2:
192 g_value_set_boolean(value, data->has_extension2);
193 break;
194 default:
195 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
196 break;
200 static void
201 set_property(GObject *object,
202 guint prop_id, const GValue *value, GParamSpec *pspec)
204 AdgLDimPrivate *data = ((AdgLDim *) object)->data;
206 switch (prop_id) {
207 case PROP_DIRECTION:
208 data->direction = g_value_get_double(value);
209 break;
210 case PROP_HAS_EXTENSION1:
211 data->has_extension1 = g_value_get_boolean(value);
212 break;
213 case PROP_HAS_EXTENSION2:
214 data->has_extension2 = g_value_get_boolean(value);
215 break;
216 default:
217 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
218 break;
224 * adg_ldim_new:
226 * Creates a new - undefined - linear dimension. You must, at least,
227 * define the reference points with adg_dim_set_ref(), the dimension
228 * direction with adg_ldim_set_direction() and the position reference
229 * using adg_dim_set_pos().
231 * Returns: the newly created linear dimension entity
233 AdgLDim *
234 adg_ldim_new(void)
236 return g_object_new(ADG_TYPE_LDIM, NULL);
240 * adg_ldim_new_full:
241 * @ref1: the first reference point
242 * @ref2: the second reference point
243 * @pos: the position reference
244 * @direction: angle where to extend the dimension
246 * Creates a new linear dimension, specifing all the needed properties in
247 * one shot.
249 * Returns: the newly created linear dimension entity
251 AdgLDim *
252 adg_ldim_new_full(const AdgPair *ref1, const AdgPair *ref2,
253 const AdgPair *pos, gdouble direction)
255 AdgLDim *ldim;
256 AdgDim *dim;
258 ldim = g_object_new(ADG_TYPE_LDIM, "direction", direction, NULL);
259 dim = (AdgDim *) ldim;
261 adg_dim_set_ref(dim, ref1, ref2);
262 adg_dim_set_pos(dim, pos);
264 return ldim;
268 * adg_ldim_new_full_explicit:
269 * @ref1_x: the x coordinate of the first reference point
270 * @ref1_y: the y coordinate of the first reference point
271 * @ref2_x: the x coordinate of the second reference point
272 * @ref2_y: the y coordinate of the second reference point
273 * @pos_x: the x coordinate of the position reference
274 * @pos_y: the y coordinate of the position reference
275 * @direction: angle where to extend the dimension
277 * Wrappes adg_ldim_new_full() with explicit values.
279 * Returns: the newly created linear dimension entity
281 AdgLDim *
282 adg_ldim_new_full_explicit(gdouble ref1_x, gdouble ref1_y,
283 gdouble ref2_x, gdouble ref2_y,
284 gdouble pos_x, gdouble pos_y, gdouble direction)
286 AdgPair ref1;
287 AdgPair ref2;
288 AdgPair pos;
290 ref1.x = ref1_x;
291 ref1.y = ref1_y;
292 ref2.x = ref2_x;
293 ref2.y = ref2_y;
294 pos.x = pos_x;
295 pos.y = pos_y;
297 return adg_ldim_new_full(&ref1, &ref2, &pos, direction);
301 * adg_ldim_new_full_from_model:
302 * @model: the model from which the named pairs are taken
303 * @ref1: the first reference point
304 * @ref2: the second reference point
305 * @pos: the position reference
306 * @direction: angle where to extend the dimension
308 * Creates a new linear dimension, specifing all the needed properties in
309 * one shot and using named pairs from @model.
311 * Returns: the newly created linear dimension entity
313 AdgLDim *
314 adg_ldim_new_full_from_model(AdgModel *model,
315 const gchar *ref1, const gchar *ref2,
316 const gchar *pos, gdouble direction)
318 AdgLDim *ldim;
319 AdgDim *dim;
321 ldim = g_object_new(ADG_TYPE_LDIM, "direction", direction, NULL);
322 dim = (AdgDim *) ldim;
324 adg_dim_set_ref_from_model(dim, model, ref1, ref2);
325 adg_dim_set_pos_from_model(dim, model, pos);
327 return ldim;
331 * adg_ldim_set_direction:
332 * @ldim: an #AdgLDim entity
333 * @direction: an angle value, in radians
335 * Sets the direction angle where to extend @ldim.
337 void
338 adg_ldim_set_direction(AdgLDim *ldim, gdouble direction)
340 AdgLDimPrivate *data;
342 g_return_if_fail(ADG_IS_LDIM(ldim));
344 data = ldim->data;
345 data->direction = direction;
347 g_object_notify((GObject *) ldim, "direction");
351 * adg_ldim_get_direction:
352 * @ldim: an #AdgLDim entity
354 * Gets the direction where @ldim will extend.
356 * Returns: the direction angle in radians
358 gdouble
359 adg_ldim_get_direction(AdgLDim *ldim)
361 AdgLDimPrivate *data;
363 g_return_val_if_fail(ADG_IS_LDIM(ldim), 0);
365 data = ldim->data;
367 return data->direction;
371 * adg_ldim_switch_extension1:
372 * @ldim: an #AdgLDim entity
373 * @new_state: the new state
375 * Shows (if @new_state is %TRUE) or hide (if @new_state is %FALSE)
376 * the first extension line of @ldim.
378 void
379 adg_ldim_switch_extension1(AdgLDim *ldim, gboolean new_state)
381 AdgLDimPrivate *data;
383 g_return_if_fail(ADG_IS_LDIM(ldim));
385 data = ldim->data;
387 if (data->has_extension1 != new_state) {
388 data->has_extension1 = new_state;
389 g_object_notify((GObject *) ldim, "has-extension1");
394 * adg_ldim_has_extension1:
395 * @ldim: an #AdgLDim entity
397 * Checks if @ldim should render also the first extension line.
399 * Returns: %TRUE on first extension line presents, %FALSE otherwise
401 gboolean
402 adg_ldim_has_extension1(AdgLDim *ldim)
404 AdgLDimPrivate *data;
406 g_return_val_if_fail(ADG_IS_LDIM(ldim), FALSE);
408 data = ldim->data;
410 return data->has_extension1;
414 * adg_ldim_switch_extension2:
415 * @ldim: an #AdgLDim entity
416 * @new_state: the new new_state
418 * Shows (if @new_state is %TRUE) or hide (if @new_state is %FALSE)
419 * the second extension line of @ldim.
421 void
422 adg_ldim_switch_extension2(AdgLDim *ldim, gboolean new_state)
424 AdgLDimPrivate *data;
426 g_return_if_fail(ADG_IS_LDIM(ldim));
428 data = ldim->data;
430 if (data->has_extension2 != new_state) {
431 data->has_extension2 = new_state;
432 g_object_notify((GObject *) ldim, "has-extension2");
437 * adg_ldim_has_extension2:
438 * @ldim: an #AdgLDim entity
440 * Checks if @ldim should render also the second extension line.
442 * Returns: %TRUE on first extension line presents, %FALSE otherwise
444 gboolean
445 adg_ldim_has_extension2(AdgLDim *ldim)
447 AdgLDimPrivate *data;
449 g_return_val_if_fail(ADG_IS_LDIM(ldim), FALSE);
451 data = ldim->data;
453 return data->has_extension2;
457 static void
458 local_changed(AdgEntity *entity)
460 unset_trail((AdgLDim *) entity);
462 if (PARENT_ENTITY_CLASS->local_changed)
463 PARENT_ENTITY_CLASS->local_changed(entity);
466 static void
467 invalidate(AdgEntity *entity)
469 AdgLDim *ldim;
470 AdgLDimPrivate *data;
472 ldim = (AdgLDim *) entity;
473 data = ldim->data;
475 dispose_markers(ldim);
476 data->geometry.is_arranged = FALSE;
477 data->shift.is_arranged = FALSE;
478 unset_trail(ldim);
480 if (PARENT_ENTITY_CLASS->invalidate)
481 PARENT_ENTITY_CLASS->invalidate(entity);
484 static void
485 arrange(AdgEntity *entity)
487 AdgLDim *ldim;
488 AdgDim *dim;
489 AdgLDimPrivate *data;
490 AdgAlignment *quote;
491 AdgDimStyle *dim_style;
492 gboolean to_outside, to_detach;
493 const AdgMatrix *local;
494 AdgPair ref1, ref2, base1, base2;
495 AdgPair pair;
496 gint n;
497 CpmlExtents extents;
499 if (PARENT_ENTITY_CLASS->arrange)
500 PARENT_ENTITY_CLASS->arrange(entity);
502 ldim = (AdgLDim *) entity;
503 dim = (AdgDim *) ldim;
504 data = ldim->data;
505 quote = adg_dim_get_quote(dim);
507 update_geometry(ldim);
508 update_shift(ldim);
509 update_entities(ldim);
511 /* Check for cached result */
512 if (data->cpml.path.status == CAIRO_STATUS_SUCCESS) {
513 AdgEntity *quote_entity = (AdgEntity *) quote;
514 adg_entity_set_global_map(quote_entity, &data->quote.global_map);
515 return;
518 choose_flags(ldim, &to_outside, &to_detach);
520 dim_style = GET_DIM_STYLE(dim);
521 local = adg_entity_get_local_matrix(entity);
522 cpml_pair_copy(&ref1, adg_dim_get_ref1(dim));
523 cpml_pair_copy(&ref2, adg_dim_get_ref2(dim));
524 cpml_pair_copy(&base1, &data->geometry.base1);
525 cpml_pair_copy(&base2, &data->geometry.base2);
527 cpml_pair_transform(&ref1, local);
528 cpml_pair_transform(&ref2, local);
529 cpml_pair_transform(&base1, local);
530 cpml_pair_transform(&base2, local);
532 cpml_pair_add(cpml_pair_copy(&pair, &ref1), &data->shift.from);
533 cpml_pair_to_cairo(&pair, &data->cpml.data[13]);
535 cpml_pair_copy(&pair, &base1);
536 cpml_pair_add(&pair, &data->shift.base);
537 cpml_pair_to_cairo(&pair, &data->cpml.data[1]);
539 cpml_pair_add(&pair, &data->shift.to);
540 cpml_pair_to_cairo(&pair, &data->cpml.data[15]);
542 cpml_pair_add(cpml_pair_copy(&pair, &ref2), &data->shift.from);
543 cpml_pair_to_cairo(&pair, &data->cpml.data[17]);
545 cpml_pair_copy(&pair, &base2);
546 cpml_pair_add(&pair, &data->shift.base);
547 cpml_pair_to_cairo(&pair, &data->cpml.data[3]);
549 cpml_pair_add(&pair, &data->shift.to);
550 cpml_pair_to_cairo(&pair, &data->cpml.data[19]);
552 /* Calculate the outside segments */
553 /* TODO: take into account when the to_detach flag is ON */
554 if (to_outside) {
555 gdouble beyond;
556 CpmlVector vector;
558 beyond = adg_dim_style_get_beyond(dim_style);
559 cpml_pair_from_cairo(&pair, &data->cpml.data[1]);
561 cpml_pair_from_cairo(&vector, &data->cpml.data[3]);
562 cpml_pair_sub(&vector, &pair);
563 cpml_vector_set_length(&vector, beyond);
565 cpml_pair_from_cairo(&pair, &data->cpml.data[1]);
566 cpml_pair_to_cairo(&pair, &data->cpml.data[5]);
568 cpml_pair_sub(&pair, &vector);
569 cpml_pair_to_cairo(&pair, &data->cpml.data[7]);
571 cpml_pair_from_cairo(&pair, &data->cpml.data[3]);
572 cpml_pair_to_cairo(&pair, &data->cpml.data[11]);
574 cpml_pair_add(&pair, &vector);
575 cpml_pair_to_cairo(&pair, &data->cpml.data[9]);
577 data->cpml.data[2].header.length = 2;
578 data->cpml.data[10].header.length = 2;
579 n = 10;
580 } else {
581 data->cpml.data[2].header.length = 10;
582 n = 2;
585 /* Play with header lengths to show or hide the extension lines */
586 if (data->has_extension1) {
587 data->cpml.data[14].header.length = data->has_extension2 ? 2 : 6;
588 } else {
589 data->cpml.data[n].header.length += 4;
590 if (!data->has_extension2)
591 data->cpml.data[n].header.length += 4;
594 data->cpml.path.status = CAIRO_STATUS_SUCCESS;
595 cpml_extents_copy(&extents, adg_trail_get_extents(data->trail));
597 /* TODO: use the to_detach flag to center the quote on the base line
598 * (when FALSE) or align in on the "pos" coordinates (when TRUE) */
599 if (quote != NULL) {
600 /* Center the quote in the middle of the base line */
601 AdgEntity *quote_entity;
602 gdouble angle;
603 AdgMatrix map;
605 quote_entity = (AdgEntity *) quote;
606 angle = adg_dim_quote_angle(dim, data->direction + G_PI_2);
608 pair.x = (data->cpml.data[1].point.x + data->cpml.data[3].point.x) / 2;
609 pair.y = (data->cpml.data[1].point.y + data->cpml.data[3].point.y) / 2;
611 cairo_matrix_init_translate(&map, pair.x, pair.y);
612 cairo_matrix_rotate(&map, angle);
613 adg_entity_set_global_map(quote_entity, &map);
614 cpml_extents_add(&extents, adg_entity_get_extents(quote_entity));
616 adg_matrix_copy(&data->quote.global_map,
617 adg_entity_get_global_map(quote_entity));
620 if (data->marker1 != NULL) {
621 AdgEntity *marker1_entity = (AdgEntity *) data->marker1;
622 adg_marker_set_segment(data->marker1, data->trail, to_outside ? 2 : 1);
623 adg_entity_arrange(marker1_entity);
624 adg_entity_local_changed(marker1_entity);
625 cpml_extents_add(&extents, adg_entity_get_extents(marker1_entity));
628 if (data->marker2 != NULL) {
629 AdgEntity *marker2_entity = (AdgEntity *) data->marker2;
630 adg_marker_set_segment(data->marker2, data->trail, to_outside ? 3 : 1);
631 adg_entity_local_changed(marker2_entity);
632 adg_entity_arrange(marker2_entity);
633 cpml_extents_add(&extents, adg_entity_get_extents(marker2_entity));
636 adg_entity_set_extents(entity, &extents);
639 static void
640 render(AdgEntity *entity, cairo_t *cr)
642 AdgLDim *ldim;
643 AdgDim *dim;
644 AdgLDimPrivate *data;
645 AdgDimStyle *dim_style;
646 AdgDress dress;
647 const cairo_path_t *cairo_path;
649 ldim = (AdgLDim *) entity;
650 dim = (AdgDim *) entity;
651 data = ldim->data;
652 dim_style = GET_DIM_STYLE(dim);
654 adg_style_apply((AdgStyle *) dim_style, entity, cr);
656 if (data->marker1 != NULL)
657 adg_entity_render((AdgEntity *) data->marker1, cr);
659 if (data->marker2 != NULL)
660 adg_entity_render((AdgEntity *) data->marker2, cr);
662 adg_entity_render((AdgEntity *) adg_dim_get_quote(dim), cr);
664 dress = adg_dim_style_get_line_dress(dim_style);
665 adg_entity_apply_dress(entity, dress, cr);
667 cairo_path = adg_trail_get_cairo_path(data->trail);
668 cairo_append_path(cr, cairo_path);
669 cairo_stroke(cr);
672 static gchar *
673 default_value(AdgDim *dim)
675 AdgLDim *ldim;
676 AdgLDimPrivate *data;
677 AdgDimStyle *dim_style;
678 const gchar *format;
680 ldim = (AdgLDim *) dim;
681 data = ldim->data;
682 dim_style = GET_DIM_STYLE(dim);
683 format = adg_dim_style_get_number_format(dim_style);
685 update_geometry(ldim);
687 return g_strdup_printf(format, data->geometry.distance);
690 static void
691 update_geometry(AdgLDim *ldim)
693 AdgLDimPrivate *data;
694 AdgDim *dim;
695 const AdgPair *ref1, *ref2;
696 const AdgPair *pos;
697 CpmlVector baseline, extension;
698 gdouble d, k;
700 data = ldim->data;
702 if (data->geometry.is_arranged)
703 return;
705 dim = (AdgDim *) ldim;
706 ref1 = adg_dim_get_ref1(dim);
707 ref2 = adg_dim_get_ref2(dim);
708 pos = adg_dim_get_pos(dim);
709 cpml_vector_from_angle(&extension, data->direction);
710 cpml_pair_copy(&baseline, &extension);
711 cpml_vector_normal(&baseline);
713 d = extension.y * baseline.x -
714 extension.x * baseline.y;
715 g_return_if_fail(d != 0);
717 k = ((pos->y - ref1->y) * baseline.x -
718 (pos->x - ref1->x) * baseline.y) / d;
719 data->geometry.base1.x = ref1->x + k * extension.x;
720 data->geometry.base1.y = ref1->y + k * extension.y;
722 k = ((pos->y - ref2->y) * baseline.x -
723 (pos->x - ref2->x) * baseline.y) / d;
724 data->geometry.base2.x = ref2->x + k * extension.x;
725 data->geometry.base2.y = ref2->y + k * extension.y;
727 data->geometry.distance = cpml_pair_distance(&data->geometry.base1,
728 &data->geometry.base2);
730 data->geometry.is_arranged = TRUE;
733 static void
734 update_shift(AdgLDim *ldim)
736 AdgLDimPrivate *data;
737 AdgDimStyle *dim_style;
738 gdouble from_offset, to_offset;
739 gdouble baseline_spacing, level;
740 CpmlVector vector;
742 data = ldim->data;
744 if (data->shift.is_arranged)
745 return;
747 dim_style = GET_DIM_STYLE(ldim);
748 from_offset = adg_dim_style_get_from_offset(dim_style);
749 to_offset = adg_dim_style_get_to_offset(dim_style);
750 baseline_spacing = adg_dim_style_get_baseline_spacing(dim_style);
751 level = adg_dim_get_level((AdgDim *) ldim);
753 cpml_vector_from_angle(&vector, data->direction);
755 cpml_vector_set_length(&vector, from_offset);
756 cpml_pair_copy(&data->shift.from, &vector);
758 cpml_vector_set_length(&vector, to_offset);
759 cpml_pair_copy(&data->shift.to, &vector);
761 cpml_vector_set_length(&vector, level * baseline_spacing);
762 cpml_pair_copy(&data->shift.base, &vector);
764 data->shift.is_arranged = TRUE;
767 static void
768 update_entities(AdgLDim *ldim)
770 AdgLDimPrivate *data;
771 AdgDimStyle *dim_style;
773 data = ldim->data;
774 dim_style = GET_DIM_STYLE(ldim);
776 if (data->trail == NULL)
777 data->trail = adg_trail_new(trail_callback, ldim);
779 if (data->marker1 == NULL)
780 data->marker1 = adg_dim_style_marker1_new(dim_style);
782 if (data->marker2 == NULL)
783 data->marker2 = adg_dim_style_marker2_new(dim_style);
786 static void
787 choose_flags(AdgLDim *ldim, gboolean *to_outside, gboolean *to_detach)
789 AdgDim *dim;
790 AdgThreeState outside, detached;
791 AdgLDimPrivate *data;
792 AdgEntity *quote;
793 const AdgMatrix *local;
794 gdouble available_space, markers_space, quote_space;
796 dim = (AdgDim *) ldim;
797 outside = adg_dim_get_outside(dim);
798 detached = adg_dim_get_detached(dim);
800 *to_outside = outside == ADG_THREE_STATE_ON;
801 *to_detach = detached == ADG_THREE_STATE_ON;
803 /* On explicit flags, no further investigation is required */
804 if (outside != ADG_THREE_STATE_UNKNOWN &&
805 detached != ADG_THREE_STATE_UNKNOWN)
806 return;
808 data = ldim->data;
809 quote = (AdgEntity *) adg_dim_get_quote((AdgDim *) ldim);
810 local = adg_entity_get_local_matrix((AdgEntity *) ldim);
811 available_space = data->geometry.distance * local->xx;
813 if (outside == ADG_THREE_STATE_ON)
814 markers_space = 0;
815 else
816 markers_space =
817 (data->marker1 == NULL ? 0 : adg_marker_get_size(data->marker1)) +
818 (data->marker2 == NULL ? 0 : adg_marker_get_size(data->marker2));
820 /* Leave at least 0.25 marker_space between the markers */
821 if (detached == ADG_THREE_STATE_ON)
822 quote_space = markers_space * 0.25;
823 else
824 quote_space = adg_entity_get_extents(quote)->size.x;
826 if (outside == ADG_THREE_STATE_UNKNOWN &&
827 detached == ADG_THREE_STATE_UNKNOWN) {
828 /* Both flags need to be choosed */
829 if (quote_space + markers_space < available_space) {
830 *to_detach = FALSE;
831 *to_outside = FALSE;
832 } else if (quote_space < available_space) {
833 *to_detach = FALSE;
834 *to_outside = TRUE;
835 } else {
836 *to_detach = TRUE;
837 *to_outside = markers_space * 1.25 > available_space;
839 } else if (outside == ADG_THREE_STATE_UNKNOWN) {
840 /* Only the outside flag may be guessed */
841 *to_outside = quote_space + markers_space > available_space;
842 } else {
843 /* Only the detached flag may be guessed */
844 *to_detach = quote_space + markers_space > available_space;
848 static void
849 unset_trail(AdgLDim *ldim)
851 AdgLDimPrivate *data = ldim->data;
853 if (data->trail != NULL)
854 adg_model_clear((AdgModel *) data->trail);
856 data->cpml.path.status = CAIRO_STATUS_INVALID_PATH_DATA;
859 static void
860 dispose_markers(AdgLDim *ldim)
862 AdgLDimPrivate *data = ldim->data;
864 if (data->trail != NULL) {
865 g_object_unref(data->trail);
866 data->trail = NULL;
869 if (data->marker1 != NULL) {
870 g_object_unref(data->marker1);
871 data->marker1 = NULL;
874 if (data->marker2 != NULL) {
875 g_object_unref(data->marker2);
876 data->marker2 = NULL;
880 static CpmlPath *
881 trail_callback(AdgTrail *trail, gpointer user_data)
883 AdgLDim *ldim;
884 AdgLDimPrivate *data;
886 ldim = (AdgLDim *) user_data;
887 data = ldim->data;
889 return &data->cpml.path;