diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2008-10-30 18:16:02 +0100 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2008-10-30 18:16:02 +0100 |
commit | db1163685554d20d9858cbb748218f0d9bbfb4f2 (patch) | |
tree | 8d764df20cdb7ab5ee5481661fb4942714fbb65c /src | |
parent | 8d4ea27d076aca880c1aa41f9a374d042aad1fc3 (diff) |
add x_* properties
Diffstat (limited to 'src')
-rw-r--r-- | src/css.hh | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -20,6 +20,8 @@ class CssProperty { dw::core::style::WhiteSpace whiteSpace; const char *name; /* used for font family */ int size; + int x_link; + int x_img; } Value; typedef enum { @@ -106,6 +108,9 @@ class CssProperty { CSS_PROPERTY_X_LINK, CSS_PROPERTY_X_COLSPAN, CSS_PROPERTY_X_ROWSPAN, + PROPERTY_X_LINK, + PROPERTY_X_IMG, + PROPERTY_X_TOOLTIP, CSS_PROPERTY_LAST } Name; |