diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2014-07-25 18:24:32 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2014-07-25 18:24:32 -0400 |
commit | 6a1420c22bb1365bac94cc979053b558ba328796 (patch) | |
tree | cd6c7ec4d9a0349d8edf9f3aa99b1f7207b22592 /pango/pango-font.h | |
parent | 9f221d657e98d2dff377420a02cd91c6411b9c5a (diff) | |
download | pango-6a1420c22bb1365bac94cc979053b558ba328796.tar.gz |
Add PANGO_WEIGHT_SEMILIGHT
Part of Bug 733764 - Support more / free font weights
Diffstat (limited to 'pango/pango-font.h')
-rw-r--r-- | pango/pango-font.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pango/pango-font.h b/pango/pango-font.h index cd306f11..45b04471 100644 --- a/pango/pango-font.h +++ b/pango/pango-font.h @@ -81,6 +81,7 @@ typedef enum { * @PANGO_WEIGHT_THIN: the thin weight (= 100; Since: 1.24) * @PANGO_WEIGHT_ULTRALIGHT: the ultralight weight (= 200) * @PANGO_WEIGHT_LIGHT: the light weight (= 300) + * @PANGO_WEIGHT_SEMILIGHT: the semilight weight (= 350; Since: 1.36.7) * @PANGO_WEIGHT_BOOK: the book weight (= 380; Since: 1.24) * @PANGO_WEIGHT_NORMAL: the default weight (= 400) * @PANGO_WEIGHT_MEDIUM: the normal weight (= 500; Since: 1.24) @@ -97,6 +98,7 @@ typedef enum { PANGO_WEIGHT_THIN = 100, PANGO_WEIGHT_ULTRALIGHT = 200, PANGO_WEIGHT_LIGHT = 300, + PANGO_WEIGHT_SEMILIGHT = 350, PANGO_WEIGHT_BOOK = 380, PANGO_WEIGHT_NORMAL = 400, PANGO_WEIGHT_MEDIUM = 500, |