aboutsummaryrefslogtreecommitdiff
path: root/src/css.hh
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-02-06 21:44:50 +0100
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-02-06 21:44:50 +0100
commit481f624e2592fc0967e94b84f1ce1d0f9e6ac9ce (patch)
tree3857258e4d3db797b829c32c31c143363c99f54a /src/css.hh
parent17c9dc7f581ca55e931ce2987cb34bc505bf75d3 (diff)
support font-size enum values
Diffstat (limited to 'src/css.hh')
-rw-r--r--src/css.hh13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/css.hh b/src/css.hh
index 56995e62..c3b5c45f 100644
--- a/src/css.hh
+++ b/src/css.hh
@@ -175,6 +175,19 @@ typedef enum {
CSS_FONT_WEIGHT_NORMAL,
} CssFontWeightExtensions;
+typedef enum {
+ CSS_FONT_SIZE_LARGE,
+ CSS_FONT_SIZE_LARGER,
+ CSS_FONT_SIZE_MEDIUM,
+ CSS_FONT_SIZE_SMALL,
+ CSS_FONT_SIZE_SMALLER,
+ CSS_FONT_SIZE_XX_LARGE,
+ CSS_FONT_SIZE_XX_SMALL,
+ CSS_FONT_SIZE_X_LARGE,
+ CSS_FONT_SIZE_X_SMALL,
+} CssFontSizeExtensions;
+
+
/**
* \brief This class holds a CSS property and value pair.
*/