summaryrefslogtreecommitdiffstats
path: root/src/marker.h
diff options
context:
space:
mode:
authorLiam P. White <inkscapebrony@gmail.com>2014-08-30 15:49:40 +0000
committerLiam P. White <inkscapebrony@gmail.com>2014-08-30 15:49:40 +0000
commit18770eebe339cdc673812a48c5e05c7cdcb3a82e (patch)
tree1e3846a72decad64d24100cdbe0a2e0d42f252b8 /src/marker.h
parentUpdate to experimental r13464 (diff)
parentFix paint-selector orientation (diff)
downloadinkscape-18770eebe339cdc673812a48c5e05c7cdcb3a82e.tar.gz
inkscape-18770eebe339cdc673812a48c5e05c7cdcb3a82e.zip
Update to experimental r13527
(bzr r13341.5.15)
Diffstat (limited to 'src/marker.h')
-rw-r--r--src/marker.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/marker.h b/src/marker.h
index 585615476..9eefcdf16 100644
--- a/src/marker.h
+++ b/src/marker.h
@@ -32,6 +32,12 @@ struct SPMarkerView;
#include "uri-references.h"
#include "viewbox.h"
+enum markerOrient {
+ MARKER_ORIENT_ANGLE,
+ MARKER_ORIENT_AUTO,
+ MARKER_ORIENT_AUTO_START_REVERSE
+};
+
class SPMarker : public SPGroup, public SPViewBox {
public:
SPMarker();
@@ -51,7 +57,7 @@ public:
/* orient */
unsigned int orient_set : 1;
- unsigned int orient_auto : 1;
+ markerOrient orient_mode : 2;
float orient;
/* Private views */