/inkscape/src/ |
H A D | sp-paint-server-reference.h | 27 SPPaintServerReference (SPDocument *doc) : URIReference(doc) {} argument
|
H A D | sp-desc.cpp | 24 Inkscape::XML::Node* SPDesc::write(Inkscape::XML::Document* doc, Inkscape::XML::Node* repr, guint flags) { argument 26 repr = this->getRepr()->duplicate(doc); 29 SPObject::write(doc, repr, flags);
|
H A D | sp-filter-reference.h | 13 SPFilterReference(SPDocument *doc) : URIReference(doc) {} argument
|
H A D | sp-mesh-patch.cpp | 69 void SPMeshpatch::build(SPDocument* doc, Inkscape::XML::Node* repr) { argument 70 SPObject::build(doc, repr);
|
H A D | sp-mesh-row.cpp | 66 void SPMeshrow::build(SPDocument* doc, Inkscape::XML::Node* repr) { argument 67 SPObject::build(doc, repr);
|
H A D | sp-missing-glyph.cpp | 34 void SPMissingGlyph::build(SPDocument* doc, Inkscape::XML::Node* repr) { argument 35 SPObject::build(doc, repr);
|
H A D | sp-script.cpp | 26 void SPScript::build(SPDocument* doc, Inkscape::XML::Node* repr) { argument 27 SPObject::build(doc, repr); 32 doc->addResource("script", this); 74 Inkscape::XML::Node* SPScript::write(Inkscape::XML::Document* /*doc*/, Inkscape::XML::Node* repr, guint /*flags*/) {
|
H A D | sp-solid-color.cpp | 32 void SPSolidColor::build(SPDocument* doc, Inkscape::XML::Node* repr) { argument 33 SPPaintServer::build(doc, repr);
|
H A D | sp-tag.cpp | 19 * Move this SPItem into or after another SPItem in the doc 114 SPTag::write(Inkscape::XML::Document *doc, Inkscape::XML::Node *repr, guint flags) argument 117 repr = doc->createElement("inkscape:tag"); 128 SPObject::write(doc, repr, flags);
|
/inkscape/share/symbols/ |
H A D | i18n.py | 9 doc = minidom.parse(filename) variable 10 symbols = doc.getElementsByTagName('title')
|
/inkscape/share/patterns/ |
H A D | i18n.py | 6 doc = minidom.parse(sys.argv[1]) variable 8 filters = doc.getElementsByTagName('pattern')
|
/inkscape/share/templates/ |
H A D | i18n.py | 11 doc = minidom.parse(filename) variable 12 templates = doc.getElementsByTagName('inkscape:_templateinfo')
|
/inkscape/src/xml/ |
H A D | repr.cpp | 37 Inkscape::XML::Document *doc = new Inkscape::XML::SimpleDocument(); local 39 doc->setAttribute("version", "1.0"); 40 doc->setAttribute("standalone", "no"); 41 Inkscape::XML::Node *comment = doc->createComment(" Created with Inkscape (http://www.inkscape.org/) "); 42 doc->appendChild(comment); 46 Inkscape::XML::Node *root = doc->createElement(rootname); 47 doc->appendChild(root); 50 return doc;
|
H A D | comment-node.h | 29 CommentNode(Util::ptr_shared<char> content, Document *doc) argument 30 : SimpleNode(g_quark_from_static_string("comment"), doc) 35 CommentNode(CommentNode const &other, Document *doc) argument 36 : SimpleNode(other, doc) {} 41 SimpleNode *_duplicate(Document* doc) const { return new CommentNode(*this, doc); }
|
H A D | element-node.h | 29 ElementNode(int code, Document *doc) argument 30 : SimpleNode(code, doc) {} 31 ElementNode(ElementNode const &other, Document *doc) argument 32 : SimpleNode(other, doc) {} 37 SimpleNode *_duplicate(Document* doc) const { return new ElementNode(*this, doc); }
|
H A D | pi-node.h | 27 PINode(GQuark target, Util::ptr_shared<char> content, Document *doc) argument 28 : SimpleNode(target, doc) 32 PINode(PINode const &other, Document *doc) argument 33 : SimpleNode(other, doc) {} 38 SimpleNode *_duplicate(Document* doc) const { return new PINode(*this, doc); }
|
H A D | simple-document.h | 67 SimpleDocument(SimpleDocument const &doc) argument 68 : Node(), SimpleNode(doc), Document(), NodeObserver(), 72 SimpleNode *_duplicate(Document* /*doc*/) const
|
H A D | text-node.h | 29 TextNode(Util::ptr_shared<char> content, Document *doc) argument 30 : SimpleNode(g_quark_from_static_string("string"), doc) 35 TextNode(Util::ptr_shared<char> content, Document *doc, bool is_CData) argument 36 : SimpleNode(g_quark_from_static_string("string"), doc) 41 TextNode(TextNode const &other, Document *doc) argument 42 : SimpleNode(other, doc) { 50 SimpleNode *_duplicate(Document* doc) const { return new TextNode(*this, doc); }
|
/inkscape/share/filters/ |
H A D | i18n.py | 6 doc = minidom.parse(sys.argv[1]) variable 8 filters = doc.getElementsByTagName('filter')
|
/inkscape/src/extension/internal/ |
H A D | cairo-png-out.cpp | 52 png_render_document_to_file(SPDocument *doc, gchar const *filename) argument 57 doc->ensureUpToDate(); 61 SPItem *base = doc->getRoot(); 71 bool ret = renderer->setupDocument(ctx, doc, TRUE, 0., NULL); 90 \param doc Document to be saved 93 void CairoRendererOutput::save(Inkscape::Extension::Output * /*mod*/, SPDocument *doc, gchar const *filename) argument 95 if (!png_render_document_to_file(doc, filename)) {
|
H A D | wpg-input.cpp | 126 //printf("I've got a doc: \n%s", painter.document.c_str()); 128 SPDocument * doc = SPDocument::createNewDocFromMem(output.cstr(), strlen(output.cstr()), TRUE); local 131 if (doc && !doc->getRoot()->viewBox_set) { 132 doc->setViewBox(Geom::Rect::from_xywh(0, 0, doc->getWidth().value(doc->getDisplayUnit()), doc->getHeight().value(doc->getDisplayUnit()))); 136 return doc; [all...] |
H A D | latex-pstricks-out.cpp | 49 void LatexOutput::save(Inkscape::Extension::Output * /*mod2*/, SPDocument *doc, gchar const *filename) argument 52 doc->ensureUpToDate(); 62 mod->base = doc->getRoot(); 68 mod->begin(doc);
|
/inkscape/src/filters/ |
H A D | mergenode.cpp | 77 Inkscape::XML::Node* SPFeMergeNode::write(Inkscape::XML::Document *doc, Inkscape::XML::Node *repr, guint flags) { argument 84 repr = this->getRepr()->duplicate(doc); 88 SPObject::write(doc, repr, flags);
|
H A D | tile.cpp | 72 Inkscape::XML::Node* SPFeTile::write(Inkscape::XML::Document *doc, Inkscape::XML::Node *repr, guint flags) { argument 76 repr = this->getRepr()->duplicate(doc); 79 SPFilterPrimitive::write(doc, repr, flags);
|
/inkscape/src/extension/ |
H A D | output.cpp | 201 \param doc Document to save 214 Output::save(SPDocument *doc, gchar const *filename) argument 217 imp->save(this, doc, filename);
|