From 5c20bde8b544d23fd024dad7ace9b46849336ebf Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Fri, 21 Aug 2009 09:45:13 +0000 Subject: -libcss-align svn path=/trunk/libcss/; revision=9378 --- include/libcss/properties.h | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'include/libcss/properties.h') diff --git a/include/libcss/properties.h b/include/libcss/properties.h index e0ace18..38b264e 100644 --- a/include/libcss/properties.h +++ b/include/libcss/properties.h @@ -109,7 +109,9 @@ enum css_properties_e { CSS_PROP_WORD_SPACING = 0x061, CSS_PROP_Z_INDEX = 0x062, - CSS_N_PROPERTIES = CSS_PROP_Z_INDEX + 1 + CSS_PROP_LIBCSS_ALIGN = 0x063, + + CSS_N_PROPERTIES = CSS_PROP_LIBCSS_ALIGN + 1 }; @@ -595,4 +597,13 @@ enum css_z_index_e { CSS_Z_INDEX_AUTO = 0x2 }; +enum css_libcss_align_e { + CSS_LIBCSS_ALIGN_INHERIT = 0x0, + CSS_LIBCSS_ALIGN_LEFT = 0x1, + CSS_LIBCSS_ALIGN_RIGHT = 0x2, + CSS_LIBCSS_ALIGN_CENTER = 0x3, + CSS_LIBCSS_ALIGN_JUSTIFY = 0x4, + CSS_LIBCSS_ALIGN_DEFAULT = 0x5 +}; + #endif -- cgit v1.2.3