docs: efl_text_font: add docs for font width and slant enums

This commit is contained in:
Stefan Schmidt 2017-05-31 17:30:28 +02:00
parent b0d056f291
commit c01052dafb
1 changed files with 12 additions and 12 deletions

View File

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