Searched defs:doc (Results 1 - 25 of 197) sorted by relevance

12345678

/inkscape/src/
H A Dsp-paint-server-reference.h27 SPPaintServerReference (SPDocument *doc) : URIReference(doc) {} argument
H A Dsp-desc.cpp24 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 Dsp-filter-reference.h13 SPFilterReference(SPDocument *doc) : URIReference(doc) {} argument
H A Dsp-mesh-patch.cpp69 void SPMeshpatch::build(SPDocument* doc, Inkscape::XML::Node* repr) { argument
70 SPObject::build(doc, repr);
H A Dsp-mesh-row.cpp66 void SPMeshrow::build(SPDocument* doc, Inkscape::XML::Node* repr) { argument
67 SPObject::build(doc, repr);
H A Dsp-missing-glyph.cpp34 void SPMissingGlyph::build(SPDocument* doc, Inkscape::XML::Node* repr) { argument
35 SPObject::build(doc, repr);
H A Dsp-script.cpp26 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 Dsp-solid-color.cpp32 void SPSolidColor::build(SPDocument* doc, Inkscape::XML::Node* repr) { argument
33 SPPaintServer::build(doc, repr);
H A Dsp-tag.cpp19 * 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 Di18n.py9 doc = minidom.parse(filename) variable
10 symbols = doc.getElementsByTagName('title')
/inkscape/share/patterns/
H A Di18n.py6 doc = minidom.parse(sys.argv[1]) variable
8 filters = doc.getElementsByTagName('pattern')
/inkscape/share/templates/
H A Di18n.py11 doc = minidom.parse(filename) variable
12 templates = doc.getElementsByTagName('inkscape:_templateinfo')
/inkscape/src/xml/
H A Drepr.cpp37 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 Dcomment-node.h29 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 Delement-node.h29 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 Dpi-node.h27 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 Dsimple-document.h67 SimpleDocument(SimpleDocument const &doc) argument
68 : Node(), SimpleNode(doc), Document(), NodeObserver(),
72 SimpleNode *_duplicate(Document* /*doc*/) const
H A Dtext-node.h29 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 Di18n.py6 doc = minidom.parse(sys.argv[1]) variable
8 filters = doc.getElementsByTagName('filter')
/inkscape/src/extension/internal/
H A Dcairo-png-out.cpp52 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 Dwpg-input.cpp126 //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 Dlatex-pstricks-out.cpp49 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 Dmergenode.cpp77 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 Dtile.cpp72 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 Doutput.cpp201 \param doc Document to save
214 Output::save(SPDocument *doc, gchar const *filename) argument
217 imp->save(this, doc, filename);

Completed in 506 milliseconds

12345678