Lines Matching defs:node
25 #include "xml/node.h"
61 for (Inkscape::XML::Node *node = xml->firstChild(); node; node = node->next()) {
62 char const * chname = node->name();
66 if (node->firstChild()) {
67 contents = node->firstChild()->content();
74 if (node->attribute("msgctxt") != NULL) {
75 newguitext = g_dpgettext2(NULL, node->attribute("msgctxt"), contents);
85 const char * val = node->attribute("value");
147 * @param node The node where the value may be placed.
149 const gchar *ParamComboBox::set(const gchar * in, SPDocument * /*doc*/, Inkscape::XML::Node * /*node*/)
180 bool ParamComboBox::contains(const gchar * guitext, SPDocument const * /*doc*/, Inkscape::XML::Node const * /*node*/) const
221 ParamComboBoxEntry (ParamComboBox * pref, SPDocument * doc, Inkscape::XML::Node * node, sigc::signal<void> * changeSignal) :
222 Gtk::ComboBoxText(), _pref(pref), _doc(doc), _node(node), _changeSignal(changeSignal) {
247 Gtk::Widget *ParamComboBox::get_widget(SPDocument * doc, Inkscape::XML::Node * node, sigc::signal<void> * changeSignal)
258 ParamComboBoxEntry * combo = Gtk::manage(new ParamComboBoxEntry(this, doc, node, changeSignal));