Lines Matching defs:node
23 #include "xml/node-observer.h"
109 void notifyAttributeChanged(Node &node, GQuark name,
113 node.setAttribute(g_quark_to_string(name), new_value);
116 void notifyContentChanged(Node &node,
120 node.setContent(new_value);
411 static Glib::ustring node_to_string(Node const &node) {
414 switch (node.type()) {
434 snprintf(buffer, 40, "0x%p", &node);
463 void notifyAttributeChanged(Node &node, GQuark name,
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());
470 g_warning("Event: Unset attribute %s on %s", g_quark_to_string(name), node_to_string(node).c_str());
474 void notifyContentChanged(Node &node,
479 g_warning("Event: Set content of %s to \"%s\"", node_to_string(node).c_str(), new_value.pointer());
481 g_warning("Event: Unset content of %s", node_to_string(node).c_str());