summaryrefslogtreecommitdiff
path: root/common/defines.h
diff options
context:
space:
mode:
authorleo2000-12-29 12:43:33 +0000
committerleo2000-12-29 12:43:33 +0000
commit54170907d62114a2b49cbbe729b1a3eedfea3746 (patch)
tree1a944257ec82538fb4d78a17c7616d43892a78db /common/defines.h
parent0ca5979d14d78aec5a80d8d61dda822525774f1d (diff)
Save HTML dialog options
git-svn-id: http://svn.leocad.org/trunk@194 c7d43263-9d01-0410-8a33-9dba5d9f93d6
Diffstat (limited to 'common/defines.h')
-rw-r--r--common/defines.h16
1 files changed, 12 insertions, 4 deletions
diff --git a/common/defines.h b/common/defines.h
index d9c818f..230f6b8 100644
--- a/common/defines.h
+++ b/common/defines.h
@@ -169,10 +169,18 @@ unsigned long SwapLONG(unsigned long x)
// Image Options
#define LC_IMAGE_PROGRESSIVE 0x1000
#define LC_IMAGE_TRANSPARENT 0x2000
-#define LC_IMAGE_HIGHCOLOR 0x4000
-#define LC_IMAGE_MASK 0x7000
-
-// Bounding box owner
+#define LC_IMAGE_HIGHCOLOR 0x4000
+#define LC_IMAGE_MASK 0x7000
+
+// HTML export options
+#define LC_HTML_SINGLEPAGE 0x01
+#define LC_HTML_INDEX 0x02
+#define LC_HTML_IMAGES 0x04
+#define LC_HTML_LISTEND 0x08
+#define LC_HTML_LISTSTEP 0x10
+#define LC_HTML_HIGHLIGHT 0x20
+
+// Bounding box owner (FIXME: cleanup)
typedef enum { LC_PIECE, LC_CAMERA, LC_CAMERA_TARGET,
LC_LIGHT, LC_LIGHT_TARGET } LC_OBJ_TYPES;