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
|
// SPDX-License-Identifier: GPL-2.0-or-later
/**
* @file
* Group belonging to an SVG drawing element.
*//*
* Authors:
* Krzysztof Kosiński <tweenk.pl@gmail.com>
*
* Copyright (C) 2011 Authors
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#ifndef SEEN_INKSCAPE_DISPLAY_DRAWING_TEXT_H
#define SEEN_INKSCAPE_DISPLAY_DRAWING_TEXT_H
#include "display/drawing-group.h"
#include "display/nr-style.h"
class SPStyle;
class font_instance;
namespace Inkscape {
class DrawingGlyphs
: public DrawingItem
{
public:
DrawingGlyphs(Drawing &drawing);
~DrawingGlyphs() override;
void setGlyph(font_instance *font, int glyph, Geom::Affine const &trans);
void setStyle(SPStyle *style, SPStyle *context_style = nullptr) override; // Not to be used
Geom::IntRect getPickBox() const { return _pick_bbox; };
protected:
unsigned _updateItem(Geom::IntRect const &area, UpdateContext const &ctx,
unsigned flags, unsigned reset) override;
DrawingItem *_pickItem(Geom::Point const &p, double delta, unsigned flags) override;
font_instance *_font;
int _glyph;
bool _drawable;
float _width; // These three are used to set up bounding box
float _asc; //
float _dsc; //
float _pl; // phase length
Geom::IntRect _pick_bbox;
friend class DrawingText;
};
class DrawingText
: public DrawingGroup
{
public:
DrawingText(Drawing &drawing);
~DrawingText() override;
void clear();
bool addComponent(font_instance *font, int glyph, Geom::Affine const &trans,
float width, float ascent, float descent, float phase_length);
void setStyle(SPStyle *style, SPStyle *context_style = nullptr) override;
void setChildrenStyle(SPStyle *context_style) override;
protected:
unsigned _updateItem(Geom::IntRect const &area, UpdateContext const &ctx,
unsigned flags, unsigned reset) override;
unsigned _renderItem(DrawingContext &dc, Geom::IntRect const &area, unsigned flags,
DrawingItem *stop_at) override;
void _clipItem(DrawingContext &dc, Geom::IntRect const &area) override;
DrawingItem *_pickItem(Geom::Point const &p, double delta, unsigned flags) override;
bool _canClip() override;
void decorateItem(DrawingContext &dc, double phase_length, bool under);
void decorateStyle(DrawingContext &dc, double vextent, double xphase, Geom::Point const &p1, Geom::Point const &p2, double thickness);
NRStyle _nrstyle;
friend class DrawingGlyphs;
};
} // end namespace Inkscape
#endif // !SEEN_INKSCAPE_DISPLAY_DRAWING_ITEM_H
/*
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 :
|