/inkscape/share/extensions/ |
H A D | eqtexsvg.py | 31 import inkex, os, tempfile, sys, xml.dom.minidom namespace
|
H A D | layout_nup.py | 23 import xml.etree.ElementTree as ElementTree namespace
|
/inkscape/src/extension/param/ |
H A D | description.cpp | 20 #include "xml/node.h" 36 Inkscape::XML::Node * xml, 43 if (xml->firstChild() != NULL) { 44 defaultval = xml->firstChild()->content(); 51 _context = xml->attribute("msgctxt"); 53 const char * indent = xml->attribute("indent"); 29 ParamDescription(const gchar * name, const gchar * guitext, const gchar * desc, const Parameter::_scope_t scope, bool gui_hidden, const gchar * gui_tip, Inkscape::Extension::Extension * ext, Inkscape::XML::Node * xml, AppearanceMode mode) argument
|
H A D | color.cpp | 21 #include <xml/node.h> 55 ParamColor::ParamColor (const gchar * name, const gchar * guitext, const gchar * desc, const Parameter::_scope_t scope, bool gui_hidden, const gchar * gui_tip, Inkscape::Extension::Extension * ext, Inkscape::XML::Node * xml) : argument 60 if (xml->firstChild() != NULL) 61 defaulthex = xml->firstChild()->content();
|
H A D | string.cpp | 19 #include "xml/node.h" 79 ParamString::ParamString (const gchar * name, const gchar * guitext, const gchar * desc, const Parameter::_scope_t scope, bool gui_hidden, const gchar * gui_tip, Inkscape::Extension::Extension * ext, Inkscape::XML::Node * xml) : argument 84 if (xml->firstChild() != NULL) { 85 defaultval = xml->firstChild()->content(); 88 const char * indent = xml->attribute("indent"); 102 char const * chname = xml->name(); 104 if (xml->attribute("msgctxt") != NULL) { 105 _value = g_strdup(g_dpgettext2(NULL, xml->attribute("msgctxt"), defaultval));
|
H A D | bool.cpp | 18 #include "xml/node.h" 27 ParamBool::ParamBool(const gchar * name, const gchar * guitext, const gchar * desc, const Parameter::_scope_t scope, bool gui_hidden, const gchar * gui_tip, Inkscape::Extension::Extension * ext, Inkscape::XML::Node * xml) : argument 32 if (xml->firstChild() != NULL) { 33 defaultval = xml->firstChild()->content(); 42 const char * indent = xml->attribute("indent");
|
H A D | enum.cpp | 25 #include "xml/node.h" 51 Inkscape::Extension::Extension *ext, Inkscape::XML::Node *xml) 59 if (xml != NULL) { 61 for (Inkscape::XML::Node *node = xml->firstChild(); node; node = node->next()) { 98 // Initialize _value with the default value from xml 99 // for simplicity : default to the contents of the first xml-child 100 if (xml->firstChild() && xml->firstChild()->firstChild()) { 101 xmlval = xml->firstChild()->attribute("value"); 104 const char *indent = xml 49 ParamComboBox(const gchar *name, const gchar *guitext, const gchar *desc, const Parameter::_scope_t scope, bool gui_hidden, const gchar *gui_tip, Inkscape::Extension::Extension *ext, Inkscape::XML::Node *xml) argument [all...] |
H A D | float.cpp | 19 #include "xml/node.h" 37 Inkscape::XML::Node * xml, 43 if (xml->firstChild() != NULL) { 44 defaultval = xml->firstChild()->content(); 50 const char * maxval = xml->attribute("max"); 55 const char * minval = xml->attribute("min"); 61 const char * precision = xml->attribute("precision"); 72 const char * indent = xml->attribute("indent"); 30 ParamFloat(const gchar * name, const gchar * guitext, const gchar * desc, const Parameter::_scope_t scope, bool gui_hidden, const gchar * gui_tip, Inkscape::Extension::Extension * ext, Inkscape::XML::Node * xml, AppearanceMode mode) argument
|
H A D | int.cpp | 19 #include "xml/node.h" 37 Inkscape::XML::Node * xml, 43 if (xml->firstChild() != NULL) { 44 defaultval = xml->firstChild()->content(); 50 const char * maxval = xml->attribute("max"); 55 const char * minval = xml->attribute("min"); 65 const char * indent = xml->attribute("indent"); 30 ParamInt(const gchar * name, const gchar * guitext, const gchar * desc, const Parameter::_scope_t scope, bool gui_hidden, const gchar * gui_tip, Inkscape::Extension::Extension * ext, Inkscape::XML::Node * xml, AppearanceMode mode) argument
|
H A D | notebook.cpp | 26 #include <xml/node.h> 57 ParamNotebookPage(const gchar * name, const gchar * guitext, const gchar * desc, const Parameter::_scope_t scope, bool gui_hidden, const gchar * gui_tip, Inkscape::Extension::Extension * ext, Inkscape::XML::Node * xml); 66 ParamNotebookPage::ParamNotebookPage (const gchar * name, const gchar * guitext, const gchar * desc, const Parameter::_scope_t scope, bool gui_hidden, const gchar * gui_tip, Inkscape::Extension::Extension * ext, Inkscape::XML::Node * xml) : argument 72 if (xml != NULL) { 73 Inkscape::XML::Node *child_repr = xml->firstChild(); 227 ParamNotebook::ParamNotebook (const gchar * name, const gchar * guitext, const gchar * desc, const Parameter::_scope_t scope, bool gui_hidden, const gchar * gui_tip, Inkscape::Extension::Extension * ext, Inkscape::XML::Node * xml) : argument 233 if (xml != NULL) { 234 Inkscape::XML::Node *child_repr = xml->firstChild();
|
H A D | radiobutton.cpp | 26 #include "xml/node.h" 67 Inkscape::XML::Node * xml, 74 if (xml != NULL) { 75 Inkscape::XML::Node *child_repr = xml->firstChild(); 114 // Initialize _value with the default value from xml 115 // for simplicity : default to the contents of the first xml-child 121 const char *indent = xml ? xml->attribute("indent") : NULL; 60 ParamRadioButton(const gchar * name, const gchar * guitext, const gchar * desc, const Parameter::_scope_t scope, bool gui_hidden, const gchar * gui_tip, Inkscape::Extension::Extension * ext, Inkscape::XML::Node * xml, AppearanceMode mode) argument
|
/inkscape/src/ |
H A D | rdf.cpp | 4 * @todo move these to xml/ instead of dialogs/ 17 #include "xml/repr.h" 515 return "xml goes here"; 777 Inkscape::XML::Node const * xml = 0; member in class:Inkscape::XML 787 xml = sp_repr_lookup_name( rdf, name ); 790 return xml; 795 Inkscape::XML::Node const *xml = getXmlRepr( const_cast<SPDocument const *>(doc), name ); member in class:Inkscape::XML 797 return const_cast<Inkscape::XML::Node *>(xml); 802 Inkscape::XML::Node * xml = 0; local 812 xml [all...] |