Searched defs:textpath (Results 1 - 5 of 5) sorted by relevance
/inkscape/src/ |
H A D | text-chemistry.cpp | 24 #include "sp-textpath.h" 150 Inkscape::XML::Node *textpath = xml_doc->createElement("svg:textPath"); local 153 textpath->setAttribute("xlink:href", href_str); 156 textpath->setAttribute("startOffset", "100%"); 158 textpath->setAttribute("startOffset", "50%"); 160 text->getRepr()->addChild(textpath, NULL); 165 // We cannot have multiline in textpath, so remove line attrs from tspans 174 textpath->addChild(copy, NULL); // fixme: copy id 177 // x/y are useless with textpath, and confuse Batik 1.5
|
H A D | sp-text.cpp | 48 #include "sp-textpath.h" 406 // we cannot optimize textpath because changing its fontsize will break its match to the path 612 SPTextPath const *textpath = SP_TEXTPATH(child); local 613 if (textpath->originalPath != NULL) { 615 layout.fitToPathAlign(textpath->startOffset, *textpath->originalPath);
|
H A D | selection-chemistry.cpp | 46 #include "sp-textpath.h" 1615 * Same for textpath if we are also doing ANY transform to its path: do not touch textpath, 2786 SPTextPath *textpath = (text) ? dynamic_cast<SPTextPath *>(text->firstChild()) : NULL; local 2787 if (text && textpath) { 2788 original = sp_textpath_get_path_item(textpath); 2816 desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("<b>Cannot find</b> the object to select (orphaned clone, offset, textpath, flowed text?)"));
|
/inkscape/src/ui/dialog/ |
H A D | font-substitution.cpp | 36 #include "sp-textpath.h" 168 SPTextPath const *textpath = SP_TEXTPATH(item); local 169 if (textpath->originalPath != NULL) {
|
/inkscape/src/ui/ |
H A D | clipboard.cpp | 69 #include "sp-textpath.h" 824 SPTextPath *textpath = (text) ? dynamic_cast<SPTextPath *>(text->firstChild()) : NULL; local 825 if (textpath) { 826 _copyTextPath(textpath);
|
Completed in 47 milliseconds