diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2009-01-06 11:07:02 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2009-01-06 11:07:02 +0000 |
commit | b072c3353cc2d10d6b26fb86cb13694a967a59cd (patch) | |
tree | 2844ce99d8207140eb53a69f24395ffaa0925d89 /docs/tmpl | |
parent | 24fb6a2be0c492b023b32ab98556961a8317e13e (diff) | |
download | pango-b072c3353cc2d10d6b26fb86cb13694a967a59cd.tar.gz |
Bug 166709 – Handle font variants more consistently
2009-01-06 Behdad Esfahbod <behdad@gnome.org>
Bug 166709 – Handle font variants more consistently
* pango/pango-font.h:
Add enum values PANGO_WEIGHT_BOOK and PANGO_WEIGHT_ULTRAHEAVY.
* pango/fonts.c:
* docs/tmpl/fonts.sgml:
Add new weights with their aliases, as well as aliasing "Roman" to the
normal weight.
svn path=/trunk/; revision=2787
Diffstat (limited to 'docs/tmpl')
-rw-r--r-- | docs/tmpl/fonts.sgml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/docs/tmpl/fonts.sgml b/docs/tmpl/fonts.sgml index 4b91624b..baa05584 100644 --- a/docs/tmpl/fonts.sgml +++ b/docs/tmpl/fonts.sgml @@ -59,13 +59,17 @@ An enumeration specifying the weight (boldness) of a font. This is a numerical value ranging from 100 to 900, but there are some predefined values: </para> +@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_LIGHT: the light weight (= 300) +@PANGO_WEIGHT_BOOK: the book weight (= 380; Since: 1.24) @PANGO_WEIGHT_NORMAL: the default weight (= 400) -@PANGO_WEIGHT_SEMIBOLD: a weight intermediate between normal and bold (=600) +@PANGO_WEIGHT_MEDIUM: the normal weight (= 500; Since: 1.24) +@PANGO_WEIGHT_SEMIBOLD: the semibold weight (= 600) @PANGO_WEIGHT_BOLD: the bold weight (= 700) @PANGO_WEIGHT_ULTRABOLD: the ultrabold weight (= 800) @PANGO_WEIGHT_HEAVY: the heavy weight (= 900) +@PANGO_WEIGHT_ULTRAHEAVY: the ultraheavy weight (= 1000; Since: 1.24) <!-- ##### MACRO PANGO_TYPE_WEIGHT ##### --> <para> |