diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2009-02-06 21:44:50 +0100 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2009-02-06 21:44:50 +0100 |
commit | 481f624e2592fc0967e94b84f1ce1d0f9e6ac9ce (patch) | |
tree | 3857258e4d3db797b829c32c31c143363c99f54a /src/css.hh | |
parent | 17c9dc7f581ca55e931ce2987cb34bc505bf75d3 (diff) |
support font-size enum values
Diffstat (limited to 'src/css.hh')
-rw-r--r-- | src/css.hh | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -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. */ |