~ubuntu-branches/ubuntu/vivid/pango1.0/vivid-proposed

« back to all changes in this revision

Viewing changes to pango/pango-font.h

  • Committer: Package Import Robot
  • Author(s): Michael Biebl
  • Date: 2014-08-17 18:46:55 UTC
  • mfrom: (1.9.4)
  • Revision ID: package-import@ubuntu.com-20140817184655-q3m9h5lw1qnnptwk
Tags: 1.36.6-1
* New upstream release.
* Refresh patches.
* Update install path for installed-tests.
* Bump Standards-Version to 3.9.5.
* Drop Suggests ttf-baekmuk and ttf-arphic-*. Those font packages have been
  renamed in the mean time and nobody seems to remember why they were added
  in the first place. (Closes: #741672, #711292)

Show diffs side-by-side

added added

removed removed

Lines of Context:
81
81
 * @PANGO_WEIGHT_THIN: the thin weight (= 100; Since: 1.24)
82
82
 * @PANGO_WEIGHT_ULTRALIGHT: the ultralight weight (= 200)
83
83
 * @PANGO_WEIGHT_LIGHT: the light weight (= 300)
 
84
 * @PANGO_WEIGHT_SEMILIGHT: the semilight weight (= 350; Since: 1.36.7)
84
85
 * @PANGO_WEIGHT_BOOK: the book weight (= 380; Since: 1.24)
85
86
 * @PANGO_WEIGHT_NORMAL: the default weight (= 400)
86
87
 * @PANGO_WEIGHT_MEDIUM: the normal weight (= 500; Since: 1.24)
91
92
 * @PANGO_WEIGHT_ULTRAHEAVY: the ultraheavy weight (= 1000; Since: 1.24)
92
93
 *
93
94
 * An enumeration specifying the weight (boldness) of a font. This is a numerical
94
 
 * value ranging from 100 to 900, but there are some predefined values:
 
95
 * value ranging from 100 to 1000, but there are some predefined values:
95
96
 */
96
97
typedef enum {
97
98
  PANGO_WEIGHT_THIN = 100,
98
99
  PANGO_WEIGHT_ULTRALIGHT = 200,
99
100
  PANGO_WEIGHT_LIGHT = 300,
 
101
  PANGO_WEIGHT_SEMILIGHT = 350,
100
102
  PANGO_WEIGHT_BOOK = 380,
101
103
  PANGO_WEIGHT_NORMAL = 400,
102
104
  PANGO_WEIGHT_MEDIUM = 500,