sp-text.h revision c9239559c1f7fac636eb84e166acd8bad3e6117a
#ifndef __SP_TEXT_H__
#define __SP_TEXT_H__
/*
* SVG <text> and <tspan> implementation
*
* Author:
* Lauris Kaplinski <lauris@kaplinski.com>
*
* Copyright (C) 1999-2002 Lauris Kaplinski
* Copyright (C) 2000-2001 Ximian, Inc.
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include <glib.h>
#include <stddef.h>
#include "sp-item.h"
#include "sp-string.h"
#include "text-tag-attributes.h"
#include "libnrtype/Layout-TNG.h"
#define SP_TYPE_TEXT (sp_text_get_type())
/* Text specific flags */
/* SPText */
/** Converts the text object to its component curves */
SPCurve *getNormalizedBpath() const
{return layout.convertToCurves();}
/** Completely recalculates the layout. */
void rebuildLayout();
//semiprivate: (need to be accessed by the C-style functions still)
/** when the object is transformed it's nicer to change the font size
and coordinates when we can, rather than just applying a matrix
transform. is_root is used to indicate to the function that it should
extend zero-length position vectors to length 1 in order to record the
new position. This is necessary to convert from objects whose position is
completely specified by transformations. */
static void _adjustCoordsRecursive(SPItem *item, Geom::Affine const &m, double ex, bool is_root = true);
/** discards the drawing objects representing this text. */
bool _optimizeTextpathText;
/** Recursively walks the xml tree adding tags and their contents. The
non-trivial code does two things: firstly, it manages the positioning
attributes and their inheritance rules, and secondly it keeps track of line
breaks and makes sure both that they are assigned the correct SPObject and
that we don't get a spurious extra one at the end of the flow. */
unsigned _buildLayoutInput(SPObject *root, Inkscape::Text::Layout::OptionalTextTagAttrs const &parent_optional_attrs, unsigned parent_attrs_offset, bool in_textpath);
/** Optimize textpath text on next set_transform. */
void optimizeTextpathText()
{_optimizeTextpathText = true;}
};
struct SPTextClass {
};
#endif
/*
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 :