diff options
author | Stefan Schmidt <stefan@osg.samsung.com> | 2017-05-31 17:30:28 +0200 |
---|---|---|
committer | Stefan Schmidt <stefan@osg.samsung.com> | 2017-06-02 09:21:11 +0200 |
commit | c01052dafb4f9ac3258f813c2311ed184f962926 (patch) | |
tree | 39fba385c4909406b141a6beb755a11af621ca9f /src/lib/efl/interfaces/efl_text_font.eo | |
parent | b0d056f291de86aa888e9373243b4bd78b23c32b (diff) |
docs: efl_text_font: add docs for font width and slant enums
Diffstat (limited to '')
-rw-r--r-- | src/lib/efl/interfaces/efl_text_font.eo | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/lib/efl/interfaces/efl_text_font.eo b/src/lib/efl/interfaces/efl_text_font.eo index 01ce7ddc9c..21bc5e64a1 100644 --- a/src/lib/efl/interfaces/efl_text_font.eo +++ b/src/lib/efl/interfaces/efl_text_font.eo | |||
@@ -19,22 +19,22 @@ enum Efl.Text.Font.Weight { | |||
19 | 19 | ||
20 | enum Efl.Text.Font.Width { | 20 | enum Efl.Text.Font.Width { |
21 | [[Type of font width]] | 21 | [[Type of font width]] |
22 | normal, | 22 | normal, [[Normal font width]] |
23 | ultracondensed, | 23 | ultracondensed, [[Ultracondensed font width]] |
24 | extracondensed, | 24 | extracondensed, [[Extracondensed font width]] |
25 | condensed, | 25 | condensed, [[Condensed font width]] |
26 | semicondensed, | 26 | semicondensed, [[Semicondensed font width]] |
27 | semiexpanded, | 27 | semiexpanded, [[Semiexpanded font width]] |
28 | expanded, | 28 | expanded, [[Expanded font width]] |
29 | extraexpanded, | 29 | extraexpanded, [[Extraexpanded font width]] |
30 | ultraexpanded, | 30 | ultraexpanded, [[Ultraexpanded font width]] |
31 | } | 31 | } |
32 | 32 | ||
33 | enum Efl.Text.Font.Slant { | 33 | enum Efl.Text.Font.Slant { |
34 | [[Type of font slant]] | 34 | [[Type of font slant]] |
35 | normal, | 35 | normal, [[Normal font slant]] |
36 | oblique, | 36 | oblique, [[Oblique font slant]] |
37 | italic, | 37 | italic, [[Italic font slant]] |
38 | } | 38 | } |
39 | 39 | ||
40 | interface Efl.Text.Font { | 40 | interface Efl.Text.Font { |