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
|
// SPDX-License-Identifier: GPL-2.0-or-later
/** @file
* TODO: insert short description here
*//*
* Authors: see git history
*
* Copyright (C) 2018 Authors
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#ifndef SEEN_SP_ITEM_FLOWTEXT_H
#define SEEN_SP_ITEM_FLOWTEXT_H
/*
*/
#include <2geom/forward.h>
#include "libnrtype/Layout-TNG.h"
#include "sp-item.h"
#include "desktop.h"
#include <memory>
namespace Inkscape {
class DrawingGroup;
} // namespace Inkscape
class SPFlowtext : public SPItem {
public:
SPFlowtext();
~SPFlowtext() override;
/** Completely recalculates the layout. */
void rebuildLayout();
/** Converts the flowroot in into a \<text\> tree, keeping all the formatting and positioning,
but losing the automatic wrapping ability. */
Inkscape::XML::Node *getAsText();
// TODO check if these should return SPRect instead of SPItem
SPItem *get_frame(SPItem const *after);
SPItem const *get_frame(SPItem const *after) const;
std::optional<Geom::Point> getBaselinePoint() const;
bool has_internal_frame() const;
//semiprivate: (need to be accessed by the C-style functions still)
Inkscape::Text::Layout layout;
/** discards the drawing objects representing this text. */
void _clearFlow(Inkscape::DrawingGroup* in_arena);
double par_indent;
bool _optimizeScaledText;
/** Converts the text object to its component curves */
std::unique_ptr<SPCurve> getNormalizedBpath() const;
/** Optimize scaled flow text on next set_transform. */
void optimizeScaledText()
{_optimizeScaledText = true;}
private:
/** Recursively walks the xml tree adding tags and their contents. */
void _buildLayoutInput(SPObject *root, Shape const *exclusion_shape, std::list<Shape> *shapes, SPObject **pending_line_break_object);
/** calculates the union of all the \<flowregionexclude\> children
of this flowroot. */
Shape* _buildExclusionShape() const;
public:
void build(SPDocument* doc, Inkscape::XML::Node* repr) override;
void child_added(Inkscape::XML::Node* child, Inkscape::XML::Node* ref) override;
void remove_child(Inkscape::XML::Node* child) override;
void set(SPAttr key, const char* value) override;
Geom::Affine set_transform(Geom::Affine const& xform) override;
void update(SPCtx* ctx, unsigned int flags) override;
void modified(unsigned int flags) override;
void fix_overflow_flowregion(bool inverse);
Inkscape::XML::Node* write(Inkscape::XML::Document* doc, Inkscape::XML::Node* repr, unsigned int flags) override;
Geom::OptRect bbox(Geom::Affine const &transform, SPItem::BBoxType type) const override;
void print(SPPrintContext *ctx) override;
const char* typeName() const override;
const char* displayName() const override;
char* description() const override;
Inkscape::DrawingItem* show(Inkscape::Drawing &drawing, unsigned int key, unsigned int flags) override;
void hide(unsigned int key) override;
void snappoints(std::vector<Inkscape::SnapCandidatePoint> &p, Inkscape::SnapPreferences const *snapprefs) const override;
};
SPItem *create_flowtext_with_internal_frame (SPDesktop *desktop, Geom::Point p1, Geom::Point p2);
MAKE_SP_OBJECT_DOWNCAST_FUNCTIONS(SP_FLOWTEXT, SPFlowtext)
MAKE_SP_OBJECT_TYPECHECK_FUNCTIONS(SP_IS_FLOWTEXT, SPFlowtext)
#endif // SEEN_SP_ITEM_FLOWTEXT_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 :
|