Searched refs:doc (Results 1 - 25 of 366) sorted by relevance

1234567891011>>

/inkscape/src/extension/dbus/
H A Dpytester.py38 def lottaverbs (doc):
39 doc.pause_updates()
40 doc.document_set_css ("fill:#ff0000;fill-opacity:.5;stroke:#0000ff;stroke-width:5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none")
41 doc.rectangle( 0, 0, 100, 100)
42 doc.select_all()
43 doc.selection_copy()
49 doc.selection_paste()
50 #doc.rectangle( 0, 0, 100, 100)
51 doc.resume_updates()
53 def testDrawing (doc)
[all...]
H A Dbuilddocs.sh1 xsltproc doc/spec-to-docbook.xsl application-interface.xml > doc/org.inkscape.application.ref.xml &&
2 xsltproc doc/spec-to-docbook.xsl document-interface.xml > doc/org.inkscape.document.ref.xml &&
3 xsltproc doc/spec-to-docbook.xsl proposed-interface.xml > doc/org.inkscape.proposed.ref.xml &&
4 xmlto --skip-validation xhtml-nochunks -o doc -m doc/config.xsl doc/inkscapeDbusRef.xml &&
5 firefox doc/inkscapeDbusRe
[all...]
/inkscape/src/
H A Ddocument-undo.cpp63 void Inkscape::DocumentUndo::setUndoSensitive(SPDocument *doc, bool sensitive) argument
65 g_assert (doc != NULL);
66 g_assert (doc->priv != NULL);
68 if ( sensitive == doc->priv->sensitive )
72 sp_repr_begin_transaction (doc->rdoc);
74 doc->priv->partial = sp_repr_coalesce_log (
75 doc->priv->partial,
76 sp_repr_commit_undoable (doc->rdoc)
80 doc->priv->sensitive = sensitive;
97 void Inkscape::DocumentUndo::done(SPDocument *doc, cons argument
120 CommitEvent(SPDocument *doc, const gchar *key, const unsigned int type) argument
139 maybeDone(SPDocument *doc, const gchar *key, const unsigned int event_type, Glib::ustring const &event_description) argument
189 cancel(SPDocument *doc) argument
206 finish_incomplete_transaction(SPDocument &doc) argument
220 perform_document_update(SPDocument &doc) argument
239 undo(SPDocument *doc) argument
286 redo(SPDocument *doc) argument
331 clearUndo(SPDocument *doc) argument
343 clearRedo(SPDocument *doc) argument
[all...]
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-paint-server-reference.h27 SPPaintServerReference (SPDocument *doc) : URIReference(doc) {} argument
H A Dsp-filter-reference.h13 SPFilterReference(SPDocument *doc) : URIReference(doc) {} argument
H A Dsp-style-elem.h15 virtual void build(SPDocument* doc, Inkscape::XML::Node* repr);
18 virtual Inkscape::XML::Node* write(Inkscape::XML::Document* doc, Inkscape::XML::Node* repr, unsigned int flags);
H A Drdf.h105 const gchar * rdf_get_work_entity(SPDocument const * doc,
114 unsigned int rdf_set_work_entity(SPDocument * doc,
123 struct rdf_license_t * rdf_get_license(SPDocument *doc);
131 void rdf_set_license(SPDocument * doc,
134 void rdf_set_defaults ( SPDocument * doc );
136 void rdf_add_from_preferences ( SPDocument *doc );
/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 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); }
H A Devent-fns.h17 void sp_repr_begin_transaction (Inkscape::XML::Document *doc);
18 void sp_repr_rollback (Inkscape::XML::Document *doc);
19 void sp_repr_commit (Inkscape::XML::Document *doc);
20 Inkscape::XML::Event *sp_repr_commit_undoable (Inkscape::XML::Document *doc);
/inkscape/src/extension/dbus/wrapper/
H A Dinkscape-dbus-wrapper.h41 inkscape_delete_all (DocumentInterface *doc, GError **error);
45 inkscape_call_verb (DocumentInterface *doc, const char * IN_verbid, GError **error);
50 inkscape_rectangle (DocumentInterface *doc, const gint IN_x, const gint IN_y, const gint IN_width, const gint IN_height, GError **error);
54 inkscape_ellipse (DocumentInterface *doc, const gint IN_x, const gint IN_y, const gint IN_width, const gint IN_height, GError **error);
58 inkscape_polygon (DocumentInterface *doc, const gint IN_cx, const gint IN_cy, const gint IN_radius, const gint IN_rotation, const gint IN_sides, GError **error);
62 inkscape_star (DocumentInterface *doc, const gint IN_cx, const gint IN_cy, const gint IN_r1, const gint IN_r2, const gdouble IN_arg1, const gdouble IN_arg2, const gint IN_sides, const gdouble IN_rounded, GError **error);
66 inkscape_spiral (DocumentInterface *doc, const gint IN_cx, const gint IN_cy, const gint IN_r, const gint IN_revolutions, GError **error);
70 inkscape_line (DocumentInterface *doc, const gint IN_x, const gint IN_y, const gint IN_x2, const gint IN_y2, GError **error);
74 inkscape_text (DocumentInterface *doc, const gint IN_x, const gint IN_y, const char * IN_text, GError **error);
78 inkscape_image (DocumentInterface *doc, cons
[all...]
H A Dinkscape-dbus-wrapper.c127 inkscape_delete_all (DocumentInterface *doc, GError **error) argument
129 DBusGProxy *proxy = doc->proxy;
135 inkscape_call_verb (DocumentInterface *doc, const char * IN_verbid, GError **error) argument
137 DBusGProxy *proxy = doc->proxy;
144 inkscape_rectangle (DocumentInterface *doc, const gint IN_x, const gint IN_y, const gint IN_width, const gint IN_height, GError **error) argument
147 DBusGProxy *proxy = doc->proxy;
154 inkscape_ellipse (DocumentInterface *doc, const gint IN_x, const gint IN_y, const gint IN_width, const gint IN_height, GError **error) argument
157 DBusGProxy *proxy = doc->proxy;
164 inkscape_polygon (DocumentInterface *doc, const gint IN_cx, const gint IN_cy, const gint IN_radius, const gint IN_rotation, const gint IN_sides, GError **error) argument
167 DBusGProxy *proxy = doc
174 inkscape_star(DocumentInterface *doc, const gint IN_cx, const gint IN_cy, const gint IN_r1, const gint IN_r2, const gdouble IN_arg1, const gdouble IN_arg2, const gint IN_sides, const gdouble IN_rounded, GError **error) argument
184 inkscape_spiral(DocumentInterface *doc, const gint IN_cx, const gint IN_cy, const gint IN_r, const gint IN_revolutions, GError **error) argument
194 inkscape_line(DocumentInterface *doc, const gint IN_x, const gint IN_y, const gint IN_x2, const gint IN_y2, GError **error) argument
204 inkscape_text(DocumentInterface *doc, const gint IN_x, const gint IN_y, const char * IN_text, GError **error) argument
214 inkscape_image(DocumentInterface *doc, const gint IN_x, const gint IN_y, const char * IN_text, GError **error) argument
224 inkscape_node(DocumentInterface *doc, const char * IN_svgtype, GError **error) argument
234 inkscape_document_get_width(DocumentInterface *doc, GError **error) argument
244 inkscape_document_get_height(DocumentInterface *doc, GError **error) argument
254 inkscape_document_get_css(DocumentInterface *doc, GError **error) argument
264 inkscape_document_set_css(DocumentInterface *doc, const char * IN_stylestring, GError **error) argument
272 inkscape_document_merge_css(DocumentInterface *doc, const char * IN_stylestring, GError **error) argument
280 inkscape_document_resize_to_fit_selection(DocumentInterface *doc, GError **error) argument
288 inkscape_set_attribute(DocumentInterface *doc, const char * IN_shape, const char * IN_attribute, const char * IN_newval, GError **error) argument
296 inkscape_set_int_attribute(DocumentInterface *doc, const char * IN_shape, const char * IN_attribute, const gint IN_newval, GError **error) argument
304 inkscape_set_double_attribute(DocumentInterface *doc, const char * IN_shape, const char * IN_attribute, const gdouble IN_newval, GError **error) argument
312 inkscape_get_attribute(DocumentInterface *doc, const char * IN_shape, const char * IN_attribute, GError **error) argument
322 inkscape_move(DocumentInterface *doc, const char * IN_shape, const gdouble IN_x, const gdouble IN_y, GError **error) argument
330 inkscape_move_to(DocumentInterface *doc, const char * IN_shape, const gdouble IN_x, const gdouble IN_y, GError **error) argument
338 inkscape_object_to_path(DocumentInterface *doc, const char * IN_objectname, GError **error) argument
346 inkscape_get_path(DocumentInterface *doc, const char * IN_shape, GError **error) argument
356 inkscape_transform(DocumentInterface *doc, const char * IN_shape, const char * IN_transformstr, GError **error) argument
364 inkscape_get_css(DocumentInterface *doc, const char * IN_shape, GError **error) argument
374 inkscape_modify_css(DocumentInterface *doc, const char * IN_shape, const char * IN_cssattrib, const char * IN_newval, GError **error) argument
382 inkscape_merge_css(DocumentInterface *doc, const char * IN_shape, const char * IN_stylestring, GError **error) argument
390 inkscape_set_color(DocumentInterface *doc, const char * IN_shape, const gint IN_red, const gint IN_green, const gint IN_blue, const gboolean IN_fill, GError **error) argument
398 inkscape_move_to_layer(DocumentInterface *doc, const char * IN_objectname, const char * IN_layername, GError **error) argument
406 inkscape_get_node_coordinates(DocumentInterface *doc, const char * IN_shape, GError **error) argument
416 inkscape_save(DocumentInterface *doc, GError **error) argument
424 inkscape_save_as(DocumentInterface *doc, const char * IN_pathname, GError **error) argument
432 inkscape_load(DocumentInterface *doc, const char * IN_pathname, GError **error) argument
440 inkscape_mark_as_unmodified(DocumentInterface *doc, GError **error) argument
448 inkscape_close(DocumentInterface *doc, GError **error) argument
456 inkscape_inkscape_exit(DocumentInterface *doc, GError **error) argument
464 inkscape_undo(DocumentInterface *doc, GError **error) argument
472 inkscape_redo(DocumentInterface *doc, GError **error) argument
480 inkscape_pause_updates(DocumentInterface *doc, GError **error) argument
488 inkscape_resume_updates(DocumentInterface *doc, GError **error) argument
496 inkscape_update(DocumentInterface *doc, GError **error) argument
504 inkscape_selection_get(DocumentInterface *doc, GError **error) argument
514 inkscape_selection_add(DocumentInterface *doc, const char * IN_name, GError **error) argument
522 inkscape_selection_add_list(DocumentInterface *doc, const char ** IN_name, GError **error) argument
530 inkscape_selection_set(DocumentInterface *doc, const char * IN_name, GError **error) argument
538 inkscape_selection_set_list(DocumentInterface *doc, const char ** IN_name, GError **error) argument
546 inkscape_selection_rotate(DocumentInterface *doc, const gint IN_angle, GError **error) argument
554 inkscape_selection_delete(DocumentInterface *doc, GError **error) argument
562 inkscape_selection_clear(DocumentInterface *doc, GError **error) argument
570 inkscape_select_all(DocumentInterface *doc, GError **error) argument
578 inkscape_select_all_in_all_layers(DocumentInterface *doc, GError **error) argument
586 inkscape_selection_box(DocumentInterface *doc, const gint IN_x, const gint IN_y, const gint IN_x2, const gint IN_y2, const gboolean IN_replace, GError **error) argument
594 inkscape_selection_invert(DocumentInterface *doc, GError **error) argument
602 inkscape_selection_group(DocumentInterface *doc, GError **error) argument
610 inkscape_selection_ungroup(DocumentInterface *doc, GError **error) argument
618 inkscape_selection_cut(DocumentInterface *doc, GError **error) argument
626 inkscape_selection_copy(DocumentInterface *doc, GError **error) argument
634 inkscape_selection_paste(DocumentInterface *doc, GError **error) argument
642 inkscape_selection_scale(DocumentInterface *doc, const gdouble IN_grow, GError **error) argument
650 inkscape_selection_move(DocumentInterface *doc, const gdouble IN_x, const gdouble IN_y, GError **error) argument
658 inkscape_selection_move_to(DocumentInterface *doc, const gdouble IN_x, const gdouble IN_y, GError **error) argument
666 inkscape_selection_move_to_layer(DocumentInterface *doc, const char * IN_layer, GError **error) argument
674 inkscape_selection_get_center(DocumentInterface *doc, GError **error) argument
684 inkscape_selection_to_path(DocumentInterface *doc, GError **error) argument
692 inkscape_selection_combine(DocumentInterface *doc, const char * IN_type, GError **error) argument
702 inkscape_selection_change_level(DocumentInterface *doc, const char * IN_command, GError **error) argument
712 inkscape_layer_new(DocumentInterface *doc, GError **error) argument
722 inkscape_layer_set(DocumentInterface *doc, const char * IN_layer, GError **error) argument
730 inkscape_layer_get_all(DocumentInterface *doc, GError **error) argument
740 inkscape_layer_change_level(DocumentInterface *doc, const char * IN_command, GError **error) argument
750 inkscape_layer_next(DocumentInterface *doc, GError **error) argument
758 inkscape_layer_previous(DocumentInterface *doc, GError **error) argument
[all...]
/inkscape/share/patterns/
H A Di18n.py6 doc = minidom.parse(sys.argv[1]) variable
8 filters = doc.getElementsByTagName('pattern')
/inkscape/share/symbols/
H A Di18n.py9 doc = minidom.parse(filename) variable
10 symbols = doc.getElementsByTagName('title')
/inkscape/share/templates/
H A Di18n.py11 doc = minidom.parse(filename) variable
12 templates = doc.getElementsByTagName('inkscape:_templateinfo')
/inkscape/src/helper/
H A Dstock-items.cpp46 // can share a common file/doc cache. This function should just
52 static SPDocument *doc = NULL; local
58 if (!edoc && !doc) {
61 doc = SPDocument::createNewDoc(markers, FALSE);
64 if (doc) {
65 doc->ensureUpToDate();
70 if (!edoc && doc) {
72 SPObject *object = doc->getObjectById(name);
90 static SPDocument *doc = NULL; local
96 if (!edoc && !doc) {
133 static SPDocument *doc = NULL; local
199 SPDocument *doc = desktop->getDocument(); local
269 SPDocument *doc = desktop->getDocument(); local
[all...]
/inkscape/src/extension/internal/
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 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)) {
/inkscape/src/extension/param/
H A Dparameter.h74 bool get_bool(SPDocument const *doc, Inkscape::XML::Node const *node) const;
77 int get_int(SPDocument const *doc, Inkscape::XML::Node const *node) const;
80 float get_float(SPDocument const *doc, Inkscape::XML::Node const *node) const;
83 gchar const *get_string(SPDocument const *doc, Inkscape::XML::Node const *node) const;
85 guint32 get_color(SPDocument const *doc, Inkscape::XML::Node const *node) const;
88 gchar const *get_enum(SPDocument const *doc, Inkscape::XML::Node const *node) const;
91 bool get_enum_contains(gchar const * value, SPDocument const *doc, Inkscape::XML::Node const *node) const;
94 gchar const *get_optiongroup(SPDocument const * doc, Inkscape::XML::Node const *node) const;
97 bool set_bool(bool in, SPDocument * doc, Inkscape::XML::Node * node);
100 int set_int(int in, SPDocument * doc, Inkscap
[all...]
/inkscape/src/extension/
H A Dpatheffect.h25 void processPath (SPDocument * doc,
28 static void processPathEffects (SPDocument * doc,
/inkscape/share/filters/
H A Di18n.py6 doc = minidom.parse(sys.argv[1]) variable
8 filters = doc.getElementsByTagName('filter')

Completed in 98 milliseconds

1234567891011>>