summaryrefslogtreecommitdiffstats
path: root/src/sp-object.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sp-object.h')
-rw-r--r--src/sp-object.h14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/sp-object.h b/src/sp-object.h
index 575198f36..ff80eaefc 100644
--- a/src/sp-object.h
+++ b/src/sp-object.h
@@ -67,6 +67,9 @@ struct Document;
}
}
+namespace Glib {
+ class ustring;
+}
typedef enum {
SP_NO_EXCEPTION,
@@ -264,6 +267,11 @@ public:
*/
SPStyle *style;
+ /**
+ * Represents the style that should be used to resolve 'context-fill' and 'context-stroke'
+ */
+ SPStyle *context_style;
+
/// Switch containing next() method.
struct ParentIteratorStrategy {
static SPObject const *next(SPObject const *object) {
@@ -703,7 +711,9 @@ public:
*/
void setKeyValue(unsigned int key, char const *value);
- void setAttribute(char const *key, char const *value, SPException *ex=NULL);
+ void setAttribute( char const *key, char const *value, SPException *ex=NULL);
+ void setAttribute( char const *key, Glib::ustring const &value, SPException *ex=NULL);
+ void setAttribute(Glib::ustring const &key, Glib::ustring const &value, SPException *ex=NULL);
/**
* Read value of key attribute from XML node into object.
@@ -849,6 +859,8 @@ protected:
public:
virtual void read_content();
+
+ void recursivePrintTree(unsigned level = 0); // For debugging
};