Code

Restoring needed icon rendering code. Addresses bug #363781.
[inkscape.git] / src / preferences.cpp
index 54ab79448b4bda1752401d14d0b0d0ba8b15c85c..16b775b345243e21d1691ce0e76404dceb93354e 100644 (file)
@@ -2,7 +2,7 @@
  * @brief  Singleton class to access the preferences file - implementation
  */
 /* Authors:
- *   Krzysztof Kosinski <tweenk.pl@gmail.com>
+ *   Krzysztof Kosiński <tweenk.pl@gmail.com>
  *
  * Copyright (C) 2008 Authors
  *
 #include "inkscape.h"
 #include "xml/repr.h"
 #include "xml/node-observer.h"
+#include "xml/node-iterators.h"
+#include "xml/attribute-record.h"
+#include <cstring>
+#include <vector>
 #include <glibmm/fileutils.h>
 #include <glibmm/i18n.h>
 #include <glib.h>
 
 namespace Inkscape {
 
+// private inner class definition
+
+/**
+ * @brief XML - prefs observer bridge
+ *
+ * This is an XML node observer that watches for changes in the XML document storing the preferences.
+ * It is used to implement preference observers.
+ */
+class Preferences::PrefNodeObserver : public XML::NodeObserver {
+public:
+    PrefNodeObserver(Observer &o, Glib::ustring const &filter) :
+        _observer(o),
+        _filter(filter)
+    {}
+    virtual ~PrefNodeObserver() {}
+    virtual void notifyAttributeChanged(XML::Node &node, GQuark name, Util::ptr_shared<char>, Util::ptr_shared<char>);
+private:
+    Observer &_observer;
+    Glib::ustring const _filter;
+};
+
+
 Preferences::Preferences() :
     _prefs_basename(PREFERENCES_FILE_NAME),
     _prefs_dir(""),
     _prefs_filename(""),
-    _writable(false),
-    _prefs_doc(NULL)
+    _prefs_doc(NULL),
+    _use_gui(true),
+    _quiet(false),
+    _loaded(false),
+    _writable(false)
 {
     // profile_path essentailly returns the argument prefixed by the profile directory.
     gchar *path = profile_path(NULL);
     _prefs_dir = path;
     g_free(path);
-
+    
     path = profile_path(_prefs_basename.data());
     _prefs_filename = path;
     g_free(path);
-
-    _load();
+    
+    _loadDefaults();
 }
 
 Preferences::~Preferences()
-{
-    // when the preferences are unloaded, save them
-    save();
+{   
+    // delete all PrefNodeObservers
+    for (_ObsMap::iterator i = _observer_map.begin(); i != _observer_map.end(); ) {
+        delete (*i++).second; // avoids reference to a deleted key
+    }
+    // unref XML document
     Inkscape::GC::release(_prefs_doc);
 }
 
@@ -67,15 +99,16 @@ void Preferences::_loadDefaults()
  * Tries to load the user's preferences.xml file. If there is none, creates it.
  * Displays dialog boxes on any errors.
  */
-void Preferences::_load()
-{
-    _loadDefaults();
-
+void Preferences::load(bool use_gui, bool quiet)
+{   
     Glib::ustring const not_saved = _("Inkscape will run with default settings, "
                                 "and new settings will not be saved. ");
-
+    _use_gui = use_gui;
+    _quiet = quiet;
+    _loaded = true;
+    
     // NOTE: After we upgrade to Glib 2.16, use Glib::ustring::compose
-
+    
     // 1. Does the file exist?
     if (!g_file_test(_prefs_filename.data(), G_FILE_TEST_EXISTS)) {
         // No - we need to create one.
@@ -99,7 +132,7 @@ void Preferences::_load()
                 g_mkdir(dir, 0755);
                 g_free(dir);
             }
-
+            
         } else if (!g_file_test(_prefs_dir.data(), G_FILE_TEST_IS_DIR)) {
             // The profile dir is not actually a directory
             //_errorDialog(Glib::ustring::compose(_("%1 is not a valid directory."),
@@ -121,13 +154,13 @@ void Preferences::_load()
             g_free(msg);
             return;
         }
-
+        
         // The prefs file was just created.
         // We can return now and skip the rest of the load process.
         _writable = true;
         return;
     }
-
+    
     // Yes, the pref file exists.
     // 2. Is it a regular file?
     if (!g_file_test(_prefs_filename.data(), G_FILE_TEST_IS_REGULAR)) {
@@ -139,7 +172,7 @@ void Preferences::_load()
         g_free(msg);
         return;
     }
-
+    
     // 3. Is the file readable?
     gchar *prefs_xml = NULL; gsize len = 0;
     if (!g_file_get_contents(_prefs_filename.data(), &prefs_xml, &len, NULL)) {
@@ -174,7 +207,7 @@ void Preferences::_load()
         Inkscape::GC::release(prefs_read);
         return;
     }
-
+    
     // Merge the loaded prefs with defaults.
     _prefs_doc->root()->mergeFrom(prefs_read->root(), "id");
     Inkscape::GC::release(prefs_read);
@@ -187,255 +220,287 @@ void Preferences::_load()
 void Preferences::save()
 {
     if (!_writable) return; // no-op if the prefs file is not writable
-
+    
     // sp_repr_save_file uses utf-8 instead of the glib filename encoding.
     // I don't know why filenames are kept in utf-8 in Inkscape and then
-    // converted to filename encoding when necessary through sepcial functions
+    // converted to filename encoding when necessary through special functions
     // - wouldn't it be easier to keep things in the encoding they are supposed
     // to be in?
-    Glib::ustring utf8name = Glib::filename_from_utf8(_prefs_filename);
+    Glib::ustring utf8name = Glib::filename_to_utf8(_prefs_filename);
     if (utf8name.empty()) return;
     sp_repr_save_file(_prefs_doc, utf8name.data());
 }
 
-void Preferences::addPrefsObserver(Inkscape::XML::NodeObserver *observer)
-{
-    _prefs_doc->addSubtreeObserver(*observer);
-}
-
-
 
 // Now for the meat.
-// Most of the logic is similar to former prefs-utils.cpp
-
 
 /**
- * @brief Check for the existence of a given pref key
- * @param pref_key Preference key to check
- * @return True if the key exists, false otherwise
+ * @brief Get names of all entries in the specified path
+ * @param path Preference path to query
+ * @return A vector containing all entries in the given directory
  */
-bool Preferences::exists(Glib::ustring const &pref_key)
+std::vector<Preferences::Entry> Preferences::getAllEntries(Glib::ustring const &path)
 {
-    return _getNode(pref_key) != NULL;
+    std::vector<Entry> temp;
+    Inkscape::XML::Node *node = _getNode(path, false);
+    if (!node) return temp;
+    
+    // argh - purge this Util::List nonsense from XML classes fast
+    Inkscape::Util::List<Inkscape::XML::AttributeRecord const> alist = node->attributeList();
+    for (; alist; ++alist)
+        temp.push_back( Entry(path + '/' + g_quark_to_string(alist->key), static_cast<void const*>(alist->value.pointer())) );
+    return temp;
 }
 
 /**
- * @brief Get the number of sub-preferences of a given pref
- * @param pref_key Preference key to check
- * @return Number of sub-preferences
- *
- * Note: This does not count attributes, only child preferences.
+ * @brief Get the paths to all subdirectories of the specified path
+ * @param path Preference path to query
+ * @return A vector containing absolute paths to all subdirectories in the given path
  */
-unsigned int Preferences::childCount(Glib::ustring const &pref_key)
+std::vector<Glib::ustring> Preferences::getAllDirs(Glib::ustring const &path)
 {
-    Inkscape::XML::Node *node = _getNode(pref_key);
-    return ( node ? node->childCount() : 0 );
+    std::vector<Glib::ustring> temp;
+    Inkscape::XML::Node *node = _getNode(path, false);
+    if (!node) return temp;
+    
+    for (Inkscape::XML::NodeSiblingIterator i = node->firstChild(); i; ++i) {
+        temp.push_back(path + '/' + i->attribute("id"));
+    }
+    return temp;
 }
 
-/**
- * @brief Get the key of the n-th sub-preference of the specified pref
- * @param father_key Parent key
- * @param n The zero-based index of the pref key to retrieve
- * @return The key of the n-th sub-preference
- */
-Glib::ustring Preferences::getNthChild(Glib::ustring const &father_key, unsigned int n)
+// getter methods
+
+Preferences::Entry const Preferences::getEntry(Glib::ustring const &pref_path)
 {
-    Inkscape::XML::Node *node = _getNode(father_key), *child;
-    if (!node) return "";
-    child = node->nthChild(n);
-    if (!child) return "";
-    if (child->attribute("id")) {
-        Glib::ustring child_key = father_key;
-        child_key += '.';
-        child_key += child->attribute("id");
-        return child_key;
-    }
-    return "";
+    gchar const *v;
+    _getRawValue(pref_path, v);
+    return Entry(pref_path, v);
 }
 
+// setter methods
 
 /**
- * @brief Create the preference with the specified key
- * @return True if the node was created, false if it already existed
- *
- * This method is redundant, because the setters automatically create prefs
- * if they don't already exist. It is only left to accomodate some legacy code
- * which manipulates the DOM of the preferences file directly.
+ * @brief Set a boolean attribute of a preference
+ * @param pref_path Path of the preference to modify
+ * @param value The new value of the pref attribute
  */
-bool Preferences::create(Glib::ustring const &pref_key)
+void Preferences::setBool(Glib::ustring const &pref_path, bool value)
 {
-    if (_getNode(pref_key)) return false;
-    _getNode(pref_key, true);
-    return true;
+    /// @todo Boolean values should be stored as "true" and "false",
+    /// but this is not possible due to an interaction with event contexts.
+    /// Investigate this in depth.
+    _setRawValue(pref_path, ( value ? "1" : "0" ));
 }
 
-// getter methods
-
 /**
- * @brief Get a boolean attribute of a preference
- * @param pref_key Key of he preference to retrieve
- * @param attr Attribute to retrieve
- * @param def The default value to return if the preference is not set
- * @return The retrieved value
+ * @brief Set an integer attribute of a preference
+ * @param pref_path Path of the preference to modify
+ * @param value The new value of the pref attribute
  */
-bool Preferences::getBool(Glib::ustring const &pref_key, Glib::ustring const &attr, bool def)
+void Preferences::setInt(Glib::ustring const &pref_path, int value)
 {
-    Inkscape::XML::Node *node = _getNode(pref_key);
-    if (!node) return def;
-    gchar const *rawstr = node->attribute(attr.data());
-    if(!rawstr || !rawstr[0]) return def;
-    Glib::ustring str = rawstr;
-
-    // This is to handle legacy preferences using ints as booleans
-    if (str == "true" || str == "1") return true;
-    return false;
+    gchar intstr[32];
+    g_snprintf(intstr, 32, "%d", value);
+    _setRawValue(pref_path, intstr);
 }
 
-
 /**
- * @brief Get an integer attribute of a preference
- * @param pref_key Key of he preference to retrieve
- * @param attr Attribute to retrieve
- * @param def The default value to return if the preference is not set
- * @return The retrieved value
+ * @brief Set a floating point attribute of a preference
+ * @param pref_path Path of the preference to modify
+ * @param value The new value of the pref attribute
  */
-int Preferences::getInt(Glib::ustring const &pref_key, Glib::ustring const &attr, int def)
+void Preferences::setDouble(Glib::ustring const &pref_path, double value)
 {
-    Inkscape::XML::Node *node = _getNode(pref_key);
-    if (!node) return def;
-    gchar const *rawstr = node->attribute(attr.data());
-    if (!rawstr || !rawstr[0]) return def;
-    Glib::ustring str = rawstr;
-    // Protection against leftover getInt calls when the value is in fact a boolean
-    if (str == "true") return 1;
-    if (str == "false") return 0;
-    return atoi(str.data());
-}
-
-int Preferences::getIntLimited(Glib::ustring const &pref_key, Glib::ustring const &attr, int def, int min, int max)
-{
-    int value = getInt(pref_key, attr, def);
-    return ( value >= min && value <= max ? value : def);
+    gchar buf[G_ASCII_DTOSTR_BUF_SIZE];
+    g_ascii_dtostr(buf, G_ASCII_DTOSTR_BUF_SIZE, value);
+    _setRawValue(pref_path, buf);
 }
 
 /**
- * @brief Get a floating point attribute of a preference
- * @param pref_key Key of he preference to retrieve
- * @param attr Attribute to retrieve
- * @param def The default value to return if the preference is not set
- * @return The retrieved value
+ * @brief Set a string attribute of a preference
+ * @param pref_path Path of the preference to modify
+ * @param value The new value of the pref attribute
  */
-double Preferences::getDouble(Glib::ustring const &pref_key, Glib::ustring const &attr, double def)
+void Preferences::setString(Glib::ustring const &pref_path, Glib::ustring const &value)
 {
-    Inkscape::XML::Node *node = _getNode(pref_key);
-    if (!node) return def;
-    gchar const *str = node->attribute(attr.data());
-    if (!str) return def;
-    return g_ascii_strtod(str, NULL);
+    _setRawValue(pref_path, value.data());
 }
 
-double Preferences::getDoubleLimited(Glib::ustring const &pref_key, Glib::ustring const &attr, double def, double min, double max)
+void Preferences::setStyle(Glib::ustring const &pref_path, SPCSSAttr *style)
 {
-    double value = getDouble(pref_key, attr, def);
-    return ( value >= min && value <= max ? value : def);
+    gchar *css_str = sp_repr_css_write_string(style);
+    _setRawValue(pref_path, css_str);
+    g_free(css_str);
 }
 
-/**
- * @brief Get a string attribute of a preference
- * @param pref_key Key of he preference to retrieve
- * @param attr Attribute to retrieve
- * @param def The default value to return if the preference is not set
- * @return The retrieved value
- */
-Glib::ustring Preferences::getString(Glib::ustring const &pref_key, Glib::ustring const &attr)
+void Preferences::mergeStyle(Glib::ustring const &pref_path, SPCSSAttr *style)
 {
-    Inkscape::XML::Node *node = _getNode(pref_key);
-    if (!node) return "";
-    gchar const *str = node->attribute(attr.data());
-    if (!str) return "";
-    return Glib::ustring(str);
+    SPCSSAttr *current = getStyle(pref_path);
+    sp_repr_css_merge(current, style);
+    gchar *css_str = sp_repr_css_write_string(current);
+    _setRawValue(pref_path, css_str);
+    g_free(css_str);
+    sp_repr_css_attr_unref(current);
 }
 
 
-// setter methods
+// Observer stuff
+namespace {
 
 /**
- * @brief Set a boolean attribute of a preference
- * @param pref_key Key of the preference to modify
- * @param attr Attribute to set
- * @param value The new value of the pref attribute
+ * @brief Structure that holds additional information for registered Observers
  */
-void Preferences::setBool(Glib::ustring const &pref_key, Glib::ustring const &attr, bool value)
+struct _ObserverData {
+    Inkscape::XML::Node *_node; ///< Node at which the wrapping PrefNodeObserver is registered
+    bool _is_attr; ///< Whether this Observer watches a single attribute
+};
+
+} // anonymous namespace
+
+Preferences::Observer::Observer(Glib::ustring const &path) :
+    observed_path(path)
 {
-    /// @todo Boolean values should be stored as "true" and "false",
-    /// but this is not possible ude to an interaction with event contexts.
-    /// Investigate this in depth.
-    Inkscape::XML::Node *node = _getNode(pref_key, true);
-    node->setAttribute(attr.data(), ( value ? "1" : "0" ));
 }
 
-/**
- * @brief Set an integer attribute of a preference
- * @param pref_key Key of the preference to modify
- * @param attr Attribute to set
- * @param value The new value of the pref attribute
- */
-void Preferences::setInt(Glib::ustring const &pref_key, Glib::ustring const &attr, int value)
+Preferences::Observer::~Observer()
 {
-    Inkscape::XML::Node *node = _getNode(pref_key, true);
-    gchar intstr[32];
-    g_snprintf(intstr, 32, "%d", value);
-    node->setAttribute(attr.data(), intstr);
+    // on destruction remove observer to prevent invalid references
+    Inkscape::Preferences *prefs = Inkscape::Preferences::get();
+    prefs->removeObserver(*this);
 }
 
-/**
- * @brief Set a floating point attribute of a preference
- * @param pref_key Key of the preference to modify
- * @param attr Attribute to set
- * @param value The new value of the pref attribute
- */
-void Preferences::setDouble(Glib::ustring const &pref_key, Glib::ustring const &attr, double value)
+void Preferences::PrefNodeObserver::notifyAttributeChanged(XML::Node &node, GQuark name, Util::ptr_shared<char>, Util::ptr_shared<char> new_value)
 {
-    Inkscape::XML::Node *node = _getNode(pref_key, true);
-    sp_repr_set_svg_double(node, attr.data(), value);
-    /*
-    gchar dblstr[32];
-    g_snprintf(dblstr, 32, "%g", value);
-    node->setAttribute(attr, dblstr);
-    */
+    // filter out attributes we don't watch
+    gchar const *attr_name = g_quark_to_string(name);
+    if ( !_filter.empty() && _filter != attr_name ) return;
+    
+    _ObserverData *d = static_cast<_ObserverData*>(Preferences::_get_pref_observer_data(_observer));
+    Glib::ustring notify_path = _observer.observed_path;
+    
+    if (!d->_is_attr) {
+        std::vector<gchar const *> path_fragments;
+        notify_path.reserve(256); // this will make appending operations faster
+        
+        // walk the XML tree, saving each of the id attributes in a vector
+        // we terminate when we hit the observer's attachment node, because the path to this node
+        // is already stored in notify_path
+        for (XML::NodeParentIterator n = &node; static_cast<XML::Node*>(n) != d->_node; ++n)
+            path_fragments.push_back(n->attribute("id"));
+        // assemble the elements into a path
+        for (std::vector<gchar const *>::reverse_iterator i = path_fragments.rbegin(); i != path_fragments.rend(); ++i) {
+            notify_path.push_back('/');
+            notify_path.append(*i);
+        }
+
+        // append attribute name
+        notify_path.push_back('/');
+        notify_path.append(attr_name);
+    }
+    
+    Entry const val = Preferences::_create_pref_value(notify_path, static_cast<void const*>(new_value.pointer()));
+    _observer.notify(val);
 }
 
 /**
- * @brief Set a string attribute of a preference
- * @param pref_key Key of the preference to modify
- * @param attr Attribute to set
- * @param value The new value of the pref attribute
+ * @brief Find the XML node to observe
  */
-void Preferences::setString(Glib::ustring const &pref_key, Glib::ustring const &attr, Glib::ustring const &value)
+XML::Node *Preferences::_findObserverNode(Glib::ustring const &pref_path, Glib::ustring &node_key, Glib::ustring &attr_key, bool create)
 {
-    Inkscape::XML::Node *node = _getNode(pref_key, true);
-    node->setAttribute(attr.data(), value.data());
+    // first assume that the last path element is an entry.
+    _keySplit(pref_path, node_key, attr_key);
+    
+    // find the node corresponding to the "directory".
+    Inkscape::XML::Node *node = _getNode(node_key, create), *child;
+    for (child = node->firstChild(); child; child = child->next()) {
+        // If there is a node with id corresponding to the attr key,
+        // this means that the last part of the path is actually a key (folder).
+        // Change values accordingly.
+        if (attr_key == child->attribute("id")) {
+            node = child;
+            attr_key = "";
+            node_key = pref_path;
+            break;
+        }
+    }
+    return node;
 }
 
+void Preferences::addObserver(Observer &o)
+{
+    // prevent adding the same observer twice
+    if ( _observer_map.find(&o) != _observer_map.end() ) return;
+    
+    Glib::ustring node_key, attr_key;
+    Inkscape::XML::Node *node;
+    node = _findObserverNode(o.observed_path, node_key, attr_key, false);
+    if (!node) return;
+    
+    // set additional data
+    _ObserverData *priv_data = new _ObserverData;
+    priv_data->_node = node;
+    priv_data->_is_attr = !attr_key.empty();
+    o._data = static_cast<void*>(priv_data);
+    
+    _observer_map[&o] = new PrefNodeObserver(o, attr_key);
+    
+    // if we watch a single pref, we want to receive notifications only for a single node
+    if (priv_data->_is_attr) {
+        node->addObserver( *(_observer_map[&o]) );
+    } else {
+        node->addSubtreeObserver( *(_observer_map[&o]) );
+    }
+}
+
+void Preferences::removeObserver(Observer &o)
+{
+    // prevent removing an observer which was not added
+    if ( _observer_map.find(&o) == _observer_map.end() ) return;
+    Inkscape::XML::Node *node = static_cast<_ObserverData*>(o._data)->_node;
+    _ObserverData *priv_data = static_cast<_ObserverData*>(o._data);
+    o._data = NULL;
+    
+    if (priv_data->_is_attr)
+        node->removeObserver( *(_observer_map[&o]) );
+    else
+        node->removeSubtreeObserver( *(_observer_map[&o]) );
+
+    delete priv_data;
+    delete _observer_map[&o];
+    _observer_map.erase(&o);
+}
+
+
 /**
  * @brief Get the XML node corresponding to the given pref key
  * @param pref_key Preference key (path) to get
  * @param create Whether to create the corresponding node if it doesn't exist
+ * @param separator The character used to separate parts of the pref key
  * @return XML node corresponding to the specified key
  *
- * The separator for key components is '.' (a dot). Derived from former
- * inkscape_get_repr().
+ * Derived from former inkscape_get_repr(). Private because it assumes that the backend is
+ * a flat XML file, which may not be the case e.g. if we are using GConf (in future).
  */
 Inkscape::XML::Node *Preferences::_getNode(Glib::ustring const &pref_key, bool create)
 {
-    Inkscape::XML::Node *node = _prefs_doc->root(), *child = NULL;
-    gchar **splits = g_strsplit(pref_key.data(), ".", 0);
-    int part_i = 0;
+    // verify path
+    g_assert( pref_key.at(0) == '/' );
+    // No longer necessary, can cause problems with input devices which have a dot in the name
+    // g_assert( pref_key.find('.') == Glib::ustring::npos );
 
-    while(splits[part_i]) {
+    Inkscape::XML::Node *node = _prefs_doc->root(), *child = NULL;
+    gchar **splits = g_strsplit(pref_key.data(), "/", 0);
+    
+    if ( splits == NULL ) return node;
+    
+    for (int part_i = 0; splits[part_i]; ++part_i) {
+        // skip empty path segments
+        if (!splits[part_i][0]) continue;
+        
         for (child = node->firstChild(); child; child = child->next())
             if (!strcmp(splits[part_i], child->attribute("id"))) break;
-
+        
         // If the previous loop found a matching key, child now contains the node
         // matching the processed key part. If no node was found then it is NULL.
         if (!child) {
@@ -445,7 +510,7 @@ Inkscape::XML::Node *Preferences::_getNode(Glib::ustring const &pref_key, bool c
                     child = node->document()->createElement("group");
                     child->setAttribute("id", splits[part_i]);
                     node->appendChild(child);
-
+                    
                     ++part_i;
                     node = child;
                 }
@@ -456,17 +521,104 @@ Inkscape::XML::Node *Preferences::_getNode(Glib::ustring const &pref_key, bool c
             }
         }
 
-        ++part_i;
         node = child;
     }
     g_strfreev(splits);
     return node;
 }
 
+void Preferences::_getRawValue(Glib::ustring const &path, gchar const *&result)
+{
+    // create node and attribute keys
+    Glib::ustring node_key, attr_key;
+    _keySplit(path, node_key, attr_key);
+    
+    // retrieve the attribute
+    Inkscape::XML::Node *node = _getNode(node_key, false);
+    if ( node == NULL ) {
+        result = NULL;
+    } else {
+        gchar const *attr = node->attribute(attr_key.data());
+        if ( attr == NULL ) {
+            result = NULL;
+        } else {
+            result = attr;
+        }
+    }
+}
+
+void Preferences::_setRawValue(Glib::ustring const &path, gchar const *value)
+{
+    // create node and attribute keys
+    Glib::ustring node_key, attr_key;
+    _keySplit(path, node_key, attr_key);
+    
+    // set the attribute
+    Inkscape::XML::Node *node = _getNode(node_key, true);
+    node->setAttribute(attr_key.data(), value);
+}
+
+// The _extract* methods are where the actual wrok is done - they define how preferences are stored
+// in the XML file.
+
+bool Preferences::_extractBool(Entry const &v)
+{
+    gchar const *s = static_cast<gchar const *>(v._value);
+    if ( !s[0] || !strcmp(s, "0") || !strcmp(s, "false") ) return false;
+    return true;
+}
+
+int Preferences::_extractInt(Entry const &v)
+{
+    gchar const *s = static_cast<gchar const *>(v._value);
+    if ( !strcmp(s, "true") ) return true;
+    if ( !strcmp(s, "false") ) return false;
+    return atoi(s);
+}
+
+double Preferences::_extractDouble(Entry const &v)
+{
+    gchar const *s = static_cast<gchar const *>(v._value);
+    return g_ascii_strtod(s, NULL);
+}
+
+Glib::ustring Preferences::_extractString(Entry const &v)
+{
+    return Glib::ustring(static_cast<gchar const *>(v._value));
+}
+
+SPCSSAttr *Preferences::_extractStyle(Entry const &v)
+{
+    SPCSSAttr *style = sp_repr_css_attr_new();
+    sp_repr_css_attr_add_from_string(style, static_cast<gchar const*>(v._value));
+    return style;
+}
+
+SPCSSAttr *Preferences::_extractInheritedStyle(Entry const &v)
+{
+    // This is the dirtiest extraction method. Generally we ignore whatever was in v._value
+    // and just get the style using sp_repr_css_attr_inherited. To implement this in GConf,
+    // we'll have to walk up the tree and call sp_repr_css_attr_add_from_string
+    Glib::ustring node_key, attr_key;
+    _keySplit(v._pref_path, node_key, attr_key);
+    
+    Inkscape::XML::Node *node = _getNode(node_key, false);
+    return sp_repr_css_attr_inherited(node, attr_key.data());
+}
+
+// XML backend helper: Split the path into a node key and an attribute key.
+void Preferences::_keySplit(Glib::ustring const &pref_path, Glib::ustring &node_key, Glib::ustring &attr_key)
+{
+    // everything after the last slash
+    attr_key = pref_path.substr(pref_path.rfind('/') + 1, Glib::ustring::npos);
+    // everything before the last slash
+    node_key = pref_path.substr(0, pref_path.rfind('/'));
+}
 
 void Preferences::_errorDialog(Glib::ustring const &msg, Glib::ustring const &secondary)
 {
-    if (Preferences::use_gui) {
+    if (_quiet) return;
+    if (_use_gui) {
         Gtk::MessageDialog err(
             msg, false, Gtk::MESSAGE_WARNING, Gtk::BUTTONS_OK, true);
         err.set_secondary_text(secondary);
@@ -477,12 +629,26 @@ void Preferences::_errorDialog(Glib::ustring const &msg, Glib::ustring const &se
     }
 }
 
-bool Preferences::use_gui = true;
+Preferences::Entry const Preferences::_create_pref_value(Glib::ustring const &path, void const *ptr)
+{
+    return Entry(path, ptr);
+}
+
+void Preferences::unload(bool save)
+{
+    if(_instance)
+    {
+        if (save) _instance->save();
+        delete _instance;
+        _instance = NULL;
+    }
+}
+
 Preferences *Preferences::_instance = NULL;
 
 
 } // namespace Inkscape
-
 /*
   Local Variables:
   mode:c++