/inkscape/src/xml/ |
H A D | log-builder.cpp | 61 Util::ptr_shared<char> new_value) 63 _log = new Inkscape::XML::EventChgAttr(&node, name, old_value, new_value, _log); 59 setAttribute(Node &node, GQuark name, Util::ptr_shared<char> old_value, Util::ptr_shared<char> new_value) argument
|
H A D | node-observer.h | 141 * @param new_value New value of the modified attribute 145 Util::ptr_shared<char> new_value) { 149 INK_UNUSED(new_value); 143 notifyAttributeChanged(Node &node, GQuark name, Util::ptr_shared<char> old_value, Util::ptr_shared<char> new_value) argument
|
H A D | simple-document.cpp | 114 Util::ptr_shared<char> new_value) 117 _log_builder.setAttribute(node, name, old_value, new_value); 111 notifyAttributeChanged(Node &node, GQuark name, Util::ptr_shared<char> old_value, Util::ptr_shared<char> new_value) argument
|
H A D | composite-node-observer.cpp | 87 Util::ptr_shared<char> old_value, Util::ptr_shared<char> new_value 94 iter->observer.notifyAttributeChanged(node, name, old_value, new_value); 142 void notifyAttributeChanged(Node &node, GQuark name, Util::ptr_shared<char> old_value, Util::ptr_shared<char> new_value) { argument 144 vector.attr_changed(&node, g_quark_to_string(name), old_value, new_value, false, data);
|
H A D | event.cpp | 111 Inkscape::Util::ptr_shared<char> new_value) 113 node.setAttribute(g_quark_to_string(name), new_value); local 118 Inkscape::Util::ptr_shared<char> new_value) 120 node.setContent(new_value); 465 Inkscape::Util::ptr_shared<char> new_value) 467 if (new_value) { 468 g_warning("Event: Set attribute %s to \"%s\" on %s", g_quark_to_string(name), new_value.pointer(), node_to_string(node).c_str()); 476 Inkscape::Util::ptr_shared<char> new_value) 478 if (new_value) { 479 g_warning("Event: Set content of %s to \"%s\"", node_to_string(node).c_str(), new_value 109 notifyAttributeChanged(Node &node, GQuark name, Inkscape::Util::ptr_shared<char> , Inkscape::Util::ptr_shared<char> new_value) argument 116 notifyContentChanged(Node &node, Inkscape::Util::ptr_shared<char> , Inkscape::Util::ptr_shared<char> new_value) argument 463 notifyAttributeChanged(Node &node, GQuark name, Inkscape::Util::ptr_shared<char> , Inkscape::Util::ptr_shared<char> new_value) argument 474 notifyContentChanged(Node &node, Inkscape::Util::ptr_shared<char> , Inkscape::Util::ptr_shared<char> new_value) argument [all...] |
H A D | simple-node.cpp | 373 ptr_shared<char> new_value=ptr_shared<char>(); local 375 new_value = share_string(cleaned_value); 376 tracker.set<DebugSetAttribute>(*this, key, new_value); 379 set_rest(ref, MutableList<AttributeRecord>(AttributeRecord(key, new_value))); 381 _attributes = MutableList<AttributeRecord>(AttributeRecord(key, new_value)); 384 existing->value = new_value; 398 if ( new_value != old_value && (!old_value || !new_value || strcmp(old_value, new_value))) { 399 _document->logger()->notifyAttributeChanged(*this, key, old_value, new_value); 565 attr_changed(Node *node, gchar const *name, gchar const *old_value, gchar const *new_value, bool , void *data) argument [all...] |
/inkscape/src/widgets/ |
H A D | sp-xmlview-attr-list.cpp | 29 static void event_attr_changed (Inkscape::XML::Node * repr, const gchar * name, const gchar * old_value, const gchar * new_value, bool is_interactive, gpointer data); 164 const gchar * new_value, 192 if (new_value) { 193 gtk_list_store_set (list->store, &iter, ATTR_COL_NAME, name, ATTR_COL_VALUE, new_value, ATTR_COL_ATTR, g_quark_from_string (name), -1); 197 } else if (new_value != NULL) { 199 gtk_list_store_set (list->store, &iter, ATTR_COL_NAME, name, ATTR_COL_VALUE, new_value, ATTR_COL_ATTR, g_quark_from_string (name), -1); 161 event_attr_changed(Inkscape::XML::Node * , const gchar * name, const gchar * , const gchar * new_value, bool , gpointer data) argument
|
H A D | sp-xmlview-tree.cpp | 37 static void element_attr_changed (Inkscape::XML::Node * repr, const gchar * key, const gchar * old_value, const gchar * new_value, bool is_interactive, gpointer data); 249 void element_attr_changed(Inkscape::XML::Node * repr, const gchar * key, const gchar * /*old_value*/, const gchar * new_value, bool /*is_interactive*/, gpointer ptr) argument 259 new_value = repr->attribute("id"); 262 if (new_value && layer) { 263 label = g_strdup_printf ("<%s id=\"%s\" inkscape:label=\"%s\">", repr->name(), new_value, layer); 264 } else if (new_value) { 265 label = g_strdup_printf ("<%s id=\"%s\">", repr->name(), new_value);
|
/inkscape/src/live_effects/ |
H A D | effect.cpp | 593 Effect::setParameter(const gchar * key, const gchar * new_value) argument 597 if (new_value) { 598 bool accepted = param->param_readSVGValue(new_value); 600 g_warning("Effect::setParameter - '%s' not accepted for %s", new_value, key);
|
/inkscape/src/ |
H A D | preferences.cpp | 542 void Preferences::PrefNodeObserver::notifyAttributeChanged(XML::Node &node, GQuark name, Util::ptr_shared<char>, Util::ptr_shared<char> new_value) argument 571 Entry const val = Preferences::_create_pref_value(notify_path, static_cast<void const*>(new_value.pointer()));
|