node-utilities.cpp revision e7cd2ec3e1687a262ebe95e5ac7a47f8ab147ce2
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof * Whiteboard session manager
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof * XML node manipulation / retrieval utilities
43a9ecef56abdf431763b9fb95469e70da237abbLiam P. White * David Yip <yipdw@rose-hulman.edu>
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof * Copyright (c) 2005 Authors
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof * Released under GNU GPL, read the file 'COPYING' for more information
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2JabiertxofInkscape::XML::Node*
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2JabiertxofNodeUtilities::lookupReprByValue(Inkscape::XML::Node* root, gchar const* key, Glib::ustring const* value)
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof GQuark const quark = g_quark_from_string(key);
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof if (root == NULL) {
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof return NULL;
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof Inkscape::Util::List<Inkscape::XML::AttributeRecord const> attrlist = root->attributeList();
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof for( ; attrlist ; attrlist++) {
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof if ((attrlist->key == quark) && (strcmp(attrlist->value, value->data()) == 0)) {
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof return root;
26b55a439f4a219fec9c2b46a6b9d02640da6d76Jabiertxof Inkscape::XML::Node* result;
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof for ( Inkscape::XML::Node* child = root->firstChild() ; child != NULL ; child = child->next() ) {
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof result = NodeUtilities::lookupReprByValue(child, key, value);
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof if(result != NULL) {
26b55a439f4a219fec9c2b46a6b9d02640da6d76Jabiertxof return result;
26b55a439f4a219fec9c2b46a6b9d02640da6d76Jabiertxof return NULL;
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2JabiertxofNodeUtilities::nodeTypeToString(XML::Node const& node)
2ce2003d5713154f99c32af18fb904a1af109031JabiertxofNodeUtilities::stringToNodeType(Glib::ustring const& type)
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxofNodeUtilities::findNodeID(XML::Node const& node, XMLNodeTracker* tracker, NodeToKeyMap const& newnodes)
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof// g_log(NULL, G_LOG_LEVEL_DEBUG, "Attempting to locate id for %p", &node);
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof NodeToKeyMap::const_iterator result = newnodes.find(&node);
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof// g_log(NULL, G_LOG_LEVEL_DEBUG, "Located id for %p: %s", &node, (*result).second.c_str());
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof// g_log(NULL, G_LOG_LEVEL_DEBUG, "Located id for %p (in tracker): %s", &node, tracker->get(node).c_str());
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof// g_log(NULL, G_LOG_LEVEL_DEBUG, "Failed to locate id");
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof Local Variables:
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof c-file-style:"stroustrup"
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof indent-tabs-mode:nil
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof fill-column:99
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :