summaryrefslogtreecommitdiffstats
path: root/src/marker.h
diff options
context:
space:
mode:
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 */