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
|
#ifndef SEEN_SP_ITEM_FLOWTEXT_H
#define SEEN_SP_ITEM_FLOWTEXT_H
/*
*/
#include "sp-item.h"
#include <2geom/forward.h>
#include "libnrtype/Layout-TNG.h"
#define SP_TYPE_FLOWTEXT (sp_flowtext_get_type ())
#define SP_FLOWTEXT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), SP_TYPE_FLOWTEXT, SPFlowtext))
#define SP_FLOWTEXT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), SP_TYPE_FLOWTEXT, SPFlowtextClass))
#define SP_IS_FLOWTEXT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SP_TYPE_FLOWTEXT))
#define SP_IS_FLOWTEXT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), SP_TYPE_FLOWTEXT))
namespace Inkscape {
class DrawingGroup;
} // namespace Inkscape
struct SPFlowtext : public SPItem {
/** 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();
SPItem *get_frame(SPItem *after);
bool has_internal_frame();
//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;
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;
};
struct SPFlowtextClass {
SPItemClass parent_class;
};
GType sp_flowtext_get_type (void);
SPItem *create_flowtext_with_internal_frame (SPDesktop *desktop, Geom::Point p1, Geom::Point p2);
#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 :
|