aboutsummaryrefslogtreecommitdiff
path: root/dw/style.hh
diff options
context:
space:
mode:
Diffstat (limited to 'dw/style.hh')
-rw-r--r--dw/style.hh9
1 files changed, 9 insertions, 0 deletions
diff --git a/dw/style.hh b/dw/style.hh
index 9c6bedf1..43fff0a1 100644
--- a/dw/style.hh
+++ b/dw/style.hh
@@ -333,6 +333,13 @@ enum FontVariant {
FONT_VARIANT_SMALL_CAPS
};
+enum Overflow {
+ OVERFLOW_VISIBLE,
+ OVERFLOW_HIDDEN,
+ OVERFLOW_SCROLL,
+ OVERFLOW_AUTO
+};
+
enum Position {
POSITION_STATIC,
POSITION_RELATIVE,
@@ -540,6 +547,8 @@ public:
FloatType vloat; /* "float" is a keyword. */
ClearType clear;
+ Overflow overflow;
+
Position position;
Length top, bottom, left, right;