summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 6529eb2)
raw | patch | inline | side by side (parent: 6529eb2)
author | buliabyak <buliabyak@users.sourceforge.net> | |
Fri, 3 Feb 2006 03:04:05 +0000 (03:04 +0000) | ||
committer | buliabyak <buliabyak@users.sourceforge.net> | |
Fri, 3 Feb 2006 03:04:05 +0000 (03:04 +0000) |
src/sp-flowtext.cpp | patch | blob | history | |
src/sp-flowtext.h | patch | blob | history |
diff --git a/src/sp-flowtext.cpp b/src/sp-flowtext.cpp
index fbf0efabd5b5da992b7f75a642f72991cce13dad..900a3dffc8a8bc2939805503bb108489c4dd2154 100644 (file)
--- a/src/sp-flowtext.cpp
+++ b/src/sp-flowtext.cpp
static void
sp_flowtext_init(SPFlowtext *group)
{
+ group->par_indent = 0;
new (&group->layout) Inkscape::Text::Layout();
}
}
}
}
+ */
{ // This would probably translate to padding-left, if SPStyle had it.
gchar const *val = sp_repr_css_property(opts, "par-indent", NULL);
if ( val == NULL ) {
sp_repr_get_double((Inkscape::XML::Node*)opts, "par-indent", &group->par_indent);
}
}
- */
sp_repr_css_attr_unref(opts);
object->requestModified(SP_OBJECT_MODIFIED_FLAG);
break;
void SPFlowtext::_buildLayoutInput(SPObject *root, Shape const *exclusion_shape, std::list<Shape> *shapes, SPObject **pending_line_break_object)
{
+ Inkscape::Text::Layout::OptionalTextTagAttrs pi;
+ bool with_indent = false;
+
+ if (SP_IS_FLOWPARA(root)) {
+ // emulate par-indent with the first char's kern
+ SPObject *t = root;
+ for ( ; t != NULL && !SP_IS_FLOWTEXT(t); t = SP_OBJECT_PARENT(t));
+ if (SP_IS_FLOWTEXT(t)) {
+ double indent = SP_FLOWTEXT(t)->par_indent;
+ if (indent != 0) {
+ with_indent = true;
+ SVGLength sl;
+ sl.value = sl.computed = indent;
+ sl._set = true;
+ pi.dx.push_back(sl);
+ }
+ }
+ }
+
if (*pending_line_break_object) {
- if (SP_IS_FLOWREGIONBREAK(*pending_line_break_object))
+ if (SP_IS_FLOWREGIONBREAK(*pending_line_break_object)) {
layout.appendControlCode(Inkscape::Text::Layout::SHAPE_BREAK, *pending_line_break_object);
- else
+ } else {
layout.appendControlCode(Inkscape::Text::Layout::PARAGRAPH_BREAK, *pending_line_break_object);
+ }
*pending_line_break_object = NULL;
}
@@ -384,11 +405,15 @@ void SPFlowtext::_buildLayoutInput(SPObject *root, Shape const *exclusion_shape,
if (*pending_line_break_object) {
if (SP_IS_FLOWREGIONBREAK(*pending_line_break_object))
layout.appendControlCode(Inkscape::Text::Layout::SHAPE_BREAK, *pending_line_break_object);
- else
+ else {
layout.appendControlCode(Inkscape::Text::Layout::PARAGRAPH_BREAK, *pending_line_break_object);
+ }
*pending_line_break_object = NULL;
}
- layout.appendText(SP_STRING(child)->string, root->style, child);
+ if (with_indent)
+ layout.appendText(SP_STRING(child)->string, root->style, child, &pi);
+ else
+ layout.appendText(SP_STRING(child)->string, root->style, child);
} else if (SP_IS_FLOWREGION(child)) {
std::vector<Shape*> const &computed = SP_FLOWREGION(child)->computed;
for (std::vector<Shape*>::const_iterator it = computed.begin() ; it != computed.end() ; it++) {
diff --git a/src/sp-flowtext.h b/src/sp-flowtext.h
index 9e6d711fa271a535f14b6c3e2546cbda7cfe986e..39f4434405d75db5724c6df94df9dfec75f6efaa 100644 (file)
--- a/src/sp-flowtext.h
+++ b/src/sp-flowtext.h
/** discards the NRArena objects representing this text. */
void _clearFlow(NRArenaGroup* 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);