docs: efl_text_font: add docs for font width and slant enums
authorStefan Schmidt <stefan@osg.samsung.com>
Wed, 31 May 2017 15:30:28 +0000 (17:30 +0200)
committerStefan Schmidt <stefan@osg.samsung.com>
Fri, 2 Jun 2017 07:21:11 +0000 (09:21 +0200)
src/lib/efl/interfaces/efl_text_font.eo

index 01ce7dd..21bc5e6 100644 (file)
@@ -19,22 +19,22 @@ enum Efl.Text.Font.Weight {
 
 enum Efl.Text.Font.Width {
    [[Type of font width]]
-   normal,
-   ultracondensed,
-   extracondensed,
-   condensed,
-   semicondensed,
-   semiexpanded,
-   expanded,
-   extraexpanded,
-   ultraexpanded,
+   normal, [[Normal font width]]
+   ultracondensed, [[Ultracondensed font width]]
+   extracondensed, [[Extracondensed font width]]
+   condensed, [[Condensed font width]]
+   semicondensed, [[Semicondensed font width]]
+   semiexpanded, [[Semiexpanded font width]]
+   expanded, [[Expanded font width]]
+   extraexpanded, [[Extraexpanded font width]]
+   ultraexpanded, [[Ultraexpanded font width]]
 }
 
 enum Efl.Text.Font.Slant {
     [[Type of font slant]]
-    normal,
-    oblique,
-    italic,
+    normal, [[Normal font slant]]
+    oblique, [[Oblique font slant]]
+    italic, [[Italic font slant]]
 }
 
 interface Efl.Text.Font {