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.
23 * @short_description: Arrow rendering related stuff
25 * Contains parameters on how to draw arrows, providing a way to register a
26 * custom rendering callback.
32 * All fields are private and should not be used directly.
33 * Use its public methods instead.
37 #include "adg-arrow.h"
38 #include "adg-arrow-private.h"
49 static void get_property (GObject
*object
,
53 static void set_property (GObject
*object
,
57 static void arrange (AdgEntity
*entity
);
58 static void render (AdgEntity
*entity
,
60 static AdgModel
* create_model (AdgMarker
*marker
);
61 static gboolean
set_angle (AdgArrow
*arrow
,
65 G_DEFINE_TYPE(AdgArrow
, adg_arrow
, ADG_TYPE_MARKER
);
69 adg_arrow_class_init(AdgArrowClass
*klass
)
71 GObjectClass
*gobject_class
;
72 AdgEntityClass
*entity_class
;
73 AdgMarkerClass
*marker_class
;
76 gobject_class
= (GObjectClass
*) klass
;
77 entity_class
= (AdgEntityClass
*) klass
;
78 marker_class
= (AdgMarkerClass
*) klass
;
80 g_type_class_add_private(klass
, sizeof(AdgArrowPrivate
));
82 gobject_class
->set_property
= set_property
;
83 gobject_class
->get_property
= get_property
;
85 entity_class
->arrange
= arrange
;
86 entity_class
->render
= render
;
88 marker_class
->create_model
= create_model
;
90 param
= g_param_spec_double("angle",
92 P_("The opening angle of the arrow"),
95 g_object_class_install_property(gobject_class
, PROP_ANGLE
, param
);
99 adg_arrow_init(AdgArrow
*arrow
)
101 AdgArrowPrivate
*data
= G_TYPE_INSTANCE_GET_PRIVATE(arrow
,
105 data
->angle
= G_PI
/6;
111 get_property(GObject
*object
,
112 guint prop_id
, GValue
*value
, GParamSpec
*pspec
)
114 AdgArrowPrivate
*data
= ((AdgArrow
*) object
)->data
;
118 g_value_set_double(value
, data
->angle
);
121 G_OBJECT_WARN_INVALID_PROPERTY_ID(object
, prop_id
, pspec
);
127 set_property(GObject
*object
,
128 guint prop_id
, const GValue
*value
, GParamSpec
*pspec
)
130 AdgArrow
*arrow
= (AdgArrow
*) object
;
134 set_angle(arrow
, g_value_get_double(value
));
137 G_OBJECT_WARN_INVALID_PROPERTY_ID(object
, prop_id
, pspec
);
144 * adg_arrow_set_angle:
145 * @arrow: an #AdgArrow
146 * @angle: the new angle
148 * Sets a new angle: @angle will be the new opening angle of @arrow.
149 * Changing the arrow angle will invalidate @arrow.
152 adg_arrow_set_angle(AdgArrow
*arrow
, gdouble angle
)
154 g_return_if_fail(ADG_IS_ARROW(arrow
));
156 if (set_angle(arrow
, angle
))
157 g_object_notify((GObject
*) arrow
, "angle");
161 * adg_arrow_get_angle:
162 * @arrow: an #AdgArrow
164 * Gets the current angle of @arrow.
166 * Returns: the arrow angle, in radians
169 adg_arrow_get_angle(AdgArrow
*arrow
)
171 AdgArrowPrivate
*data
;
173 g_return_val_if_fail(ADG_IS_ARROW(arrow
), 0);
182 arrange(AdgEntity
*entity
)
188 render(AdgEntity
*entity
, cairo_t
*cr
)
191 const cairo_path_t
*cairo_path
;
193 model
= adg_marker_model((AdgMarker
*) entity
);
194 cairo_path
= adg_trail_get_cairo_path((AdgTrail
*) model
);
196 if (cairo_path
!= NULL
) {
198 cairo_transform(cr
, adg_entity_get_local_matrix(entity
));
199 cairo_append_path(cr
, cairo_path
);
207 create_model(AdgMarker
*marker
)
209 AdgArrowPrivate
*data
;
213 data
= ((AdgArrow
*) marker
)->data
;
214 path
= adg_path_new();
215 cpml_vector_from_angle(&p1
, data
->angle
/ 2);
219 adg_path_move_to_explicit(path
, 0, 0);
220 adg_path_line_to(path
, &p1
);
221 adg_path_line_to(path
, &p2
);
222 adg_path_close(path
);
224 return (AdgModel
*) path
;
228 set_angle(AdgArrow
*arrow
, gdouble angle
)
230 AdgArrowPrivate
*data
= arrow
->data
;
232 if (angle
== data
->angle
)
236 adg_entity_invalidate((AdgEntity
*) arrow
);