1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
|
#define __SP_CANVASTEXT_C__
/*
* Canvas text
*
* Authors:
* Lauris Kaplinski <lauris@kaplinski.com>
* Maximilian Albert <maximilian.albert@gmail.com>
*
* Copyright (C) 2000-2002 Lauris Kaplinski
* Copyright (C) 2008 Maximilian Albert
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <sstream>
#include <string.h>
#include "sp-canvas-util.h"
#include "canvas-text.h"
#include "display/cairo-utils.h"
#include "desktop.h"
#include "color.h"
static void sp_canvastext_class_init (SPCanvasTextClass *klass);
static void sp_canvastext_init (SPCanvasText *canvastext);
static void sp_canvastext_destroy (GtkObject *object);
static void sp_canvastext_update (SPCanvasItem *item, Geom::Affine const &affine, unsigned int flags);
static void sp_canvastext_render (SPCanvasItem *item, SPCanvasBuf *buf);
static SPCanvasItemClass *parent_class_ct;
GType
sp_canvastext_get_type (void)
{
static GType type = 0;
if (!type) {
GTypeInfo info = {
sizeof (SPCanvasTextClass),
NULL, NULL,
(GClassInitFunc) sp_canvastext_class_init,
NULL, NULL,
sizeof (SPCanvasText),
0,
(GInstanceInitFunc) sp_canvastext_init,
NULL
};
type = g_type_register_static (SP_TYPE_CANVAS_ITEM, "SPCanvasText", &info, (GTypeFlags)0);
}
return type;
}
static void
sp_canvastext_class_init (SPCanvasTextClass *klass)
{
GtkObjectClass *object_class = (GtkObjectClass *) klass;
SPCanvasItemClass *item_class = (SPCanvasItemClass *) klass;
parent_class_ct = (SPCanvasItemClass*)g_type_class_peek_parent (klass);
object_class->destroy = sp_canvastext_destroy;
item_class->update = sp_canvastext_update;
item_class->render = sp_canvastext_render;
}
static void
sp_canvastext_init (SPCanvasText *canvastext)
{
canvastext->anchor_position = TEXT_ANCHOR_CENTER;
canvastext->rgba = 0x33337fff;
canvastext->rgba_stroke = 0xffffffff;
canvastext->rgba_background = 0x0000007f;
canvastext->background = false;
canvastext->s[Geom::X] = canvastext->s[Geom::Y] = 0.0;
canvastext->affine = Geom::identity();
canvastext->fontsize = 10.0;
canvastext->item = NULL;
canvastext->desktop = NULL;
canvastext->text = NULL;
}
static void
sp_canvastext_destroy (GtkObject *object)
{
g_return_if_fail (object != NULL);
g_return_if_fail (SP_IS_CANVASTEXT (object));
SPCanvasText *canvastext = SP_CANVASTEXT (object);
g_free(canvastext->text);
canvastext->text = NULL;
canvastext->item = NULL;
if (GTK_OBJECT_CLASS (parent_class_ct)->destroy)
(* GTK_OBJECT_CLASS (parent_class_ct)->destroy) (object);
}
// these are set in sp_canvastext_update() and then re-used in sp_canvastext_render(), which is called afterwards
static double anchor_offset_x = 0;
static double anchor_offset_y = 0;
static void
sp_canvastext_render (SPCanvasItem *item, SPCanvasBuf *buf)
{
SPCanvasText *cl = SP_CANVASTEXT (item);
if (!buf->ct)
return;
Geom::Point s = cl->s * cl->affine;
double offsetx = s[Geom::X] - buf->rect.left();
double offsety = s[Geom::Y] - buf->rect.top();
offsetx -= anchor_offset_x;
offsety -= anchor_offset_y;
cairo_set_font_size(buf->ct, cl->fontsize);
if (cl->background){
cairo_text_extents_t extents;
cairo_text_extents(buf->ct, cl->text, &extents);
double border = extents.height*0.5;
cairo_rectangle(buf->ct, offsetx - extents.x_bearing - border,
offsety + extents.y_bearing - border,
extents.width + 2*border,
extents.height + 2*border);
ink_cairo_set_source_rgba32(buf->ct, cl->rgba_background);
cairo_fill(buf->ct);
}
cairo_move_to(buf->ct, offsetx, offsety);
cairo_text_path(buf->ct, cl->text);
if (cl->outline){
ink_cairo_set_source_rgba32(buf->ct, cl->rgba_stroke);
cairo_set_line_width (buf->ct, 2.0);
cairo_stroke_preserve(buf->ct);
}
ink_cairo_set_source_rgba32(buf->ct, cl->rgba);
cairo_fill(buf->ct);
}
static void
sp_canvastext_update (SPCanvasItem *item, Geom::Affine const &affine, unsigned int flags)
{
SPCanvasText *cl = SP_CANVASTEXT (item);
sp_canvas_request_redraw (item->canvas, (int)item->x1, (int)item->y1, (int)item->x2, (int)item->y2);
if (parent_class_ct->update)
(* parent_class_ct->update) (item, affine, flags);
sp_canvas_item_reset_bounds (item);
cl->affine = affine;
Geom::Point s = cl->s * affine;
// set up a temporary cairo_t to measure the text extents; it would be better to compute this in the render()
// method but update() seems to be called before so we don't have the information available when we need it
cairo_surface_t *tmp_surface = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, 1, 1);
cairo_t* tmp_buf = cairo_create(tmp_surface);
cairo_set_font_size(tmp_buf, cl->fontsize);
cairo_text_extents_t extents;
cairo_text_extents(tmp_buf, cl->text, &extents);
double border = extents.height;
item->x1 = s[Geom::X] - extents.x_bearing - 2*border;
item->y1 = s[Geom::Y] + extents.y_bearing - 2*border;
item->x2 = s[Geom::X] + extents.width + 2*border;
item->y2 = s[Geom::Y] + extents.height + 2*border;
// adjust update region according to anchor shift
switch (cl->anchor_position){
case TEXT_ANCHOR_LEFT:
anchor_offset_x = -2*border;
anchor_offset_y = -extents.height/2;
break;
case TEXT_ANCHOR_RIGHT:
anchor_offset_x = extents.width + 2*border;
anchor_offset_y = -extents.height/2;
break;
case TEXT_ANCHOR_BOTTOM:
anchor_offset_x = extents.width/2;
anchor_offset_y = 2*border;
break;
case TEXT_ANCHOR_TOP:
anchor_offset_x = extents.width/2;
anchor_offset_y = -extents.height - 2*border;
break;
case TEXT_ANCHOR_ZERO:
anchor_offset_x = 0;
anchor_offset_y = 0;
break;
case TEXT_ANCHOR_CENTER:
default:
anchor_offset_x = extents.width/2;
anchor_offset_y = -extents.height/2;
break;
}
item->x1 -= anchor_offset_x;
item->x2 -= anchor_offset_x;
item->y1 -= anchor_offset_y;
item->y2 -= anchor_offset_y;
sp_canvas_request_redraw (item->canvas, (int)item->x1, (int)item->y1, (int)item->x2, (int)item->y2);
}
SPCanvasItem *
sp_canvastext_new(SPCanvasGroup *parent, SPDesktop *desktop, Geom::Point pos, gchar const *new_text)
{
SPCanvasItem *item = sp_canvas_item_new(parent, SP_TYPE_CANVASTEXT, NULL);
SPCanvasText *ct = SP_CANVASTEXT(item);
ct->desktop = desktop;
ct->s = pos;
g_free(ct->text);
ct->text = g_strdup(new_text);
// TODO: anything else to do?
return item;
}
void
sp_canvastext_set_rgba32 (SPCanvasText *ct, guint32 rgba, guint32 rgba_stroke)
{
g_return_if_fail (ct != NULL);
g_return_if_fail (SP_IS_CANVASTEXT (ct));
if (rgba != ct->rgba || rgba_stroke != ct->rgba_stroke) {
ct->rgba = rgba;
ct->rgba_stroke = rgba_stroke;
SPCanvasItem *item = SP_CANVAS_ITEM (ct);
sp_canvas_item_request_update( item );
}
}
#define EPSILON 1e-6
#define DIFFER(a,b) (fabs ((a) - (b)) > EPSILON)
void
sp_canvastext_set_coords (SPCanvasText *ct, gdouble x0, gdouble y0)
{
sp_canvastext_set_coords(ct, Geom::Point(x0, y0));
}
void
sp_canvastext_set_coords (SPCanvasText *ct, const Geom::Point start)
{
Geom::Point pos = ct->desktop->doc2dt(start);
g_return_if_fail (ct != NULL);
g_return_if_fail (SP_IS_CANVASTEXT (ct));
if (DIFFER (pos[0], ct->s[Geom::X]) || DIFFER (pos[1], ct->s[Geom::Y])) {
ct->s[Geom::X] = pos[0];
ct->s[Geom::Y] = pos[1];
sp_canvas_item_request_update (SP_CANVAS_ITEM (ct));
}
}
void
sp_canvastext_set_text (SPCanvasText *ct, gchar const * new_text)
{
g_free (ct->text);
ct->text = g_strdup(new_text);
sp_canvas_item_request_update (SP_CANVAS_ITEM (ct));
}
void
sp_canvastext_set_number_as_text (SPCanvasText *ct, int num)
{
std::ostringstream number;
number << num;
sp_canvastext_set_text(ct, number.str().c_str());
}
void
sp_canvastext_set_fontsize (SPCanvasText *ct, double size)
{
ct->fontsize = size;
}
void
sp_canvastext_set_anchor (SPCanvasText *ct, double anchor_x, double anchor_y)
{
ct->anchor_x = anchor_x;
ct->anchor_y = anchor_y;
}
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :
|