Code

Use subdirectories with icon sizes.
[inkscape.git] / src / layer-fns.h
index ba11bab6a310747756d01e176001f5b05ef80222..63b1147a60d69b9ccb7da61ae1946063ad686864 100644 (file)
@@ -16,8 +16,14 @@ class SPObject;
 
 namespace Inkscape {
 
-SPObject *create_layer(SPObject *root, SPObject *layer);
-
+enum LayerRelativePosition {
+    LPOS_ABOVE,
+    LPOS_BELOW,
+    LPOS_CHILD,
+};
+    
+SPObject *create_layer(SPObject *root, SPObject *layer, LayerRelativePosition position);
+    
 SPObject *next_layer(SPObject *root, SPObject *layer);
 
 SPObject *previous_layer(SPObject *root, SPObject *layer);
@@ -34,4 +40,4 @@ SPObject *previous_layer(SPObject *root, SPObject *layer);
   fill-column:99
   End:
 */
-// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :
+// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :