Searched defs:old_value (Results 1 - 5 of 5) sorted by relevance
/inkscape/src/xml/ |
H A D | log-builder.cpp | 60 Util::ptr_shared<char> old_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 | 140 * @param old_value Old value of the modified attribute 144 Util::ptr_shared<char> old_value, 148 INK_UNUSED(old_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 | 113 Util::ptr_shared<char> old_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); 85 notifyAttributeChanged( Node &node, GQuark name, Util::ptr_shared<char> old_value, Util::ptr_shared<char> new_value ) argument
|
H A D | simple-node.cpp | 371 ptr_shared<char> old_value=( existing ? existing->value : ptr_shared<char>() ); local 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); 400 _observers.notifyAttributeChanged(*this, key, old_value, new_value); 401 //g_warning( "setAttribute notified: %s: %s: %s: %s", name, element.c_str(), old_value, new_value ); 565 void attr_changed(Node *node, gchar const *name, gchar const *old_value, gchar const *new_value, bool /*is_interactive*/, void *data) { argument 566 reinterpret_cast<NodeObserver *>(data)->notifyAttributeChanged(*node, g_quark_from_string(name), Util::share_unsafe((const char *)old_value), Util::share_unsafe((const char *)new_value));
|
Completed in 54 milliseconds