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 {
[[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 {