summaryrefslogtreecommitdiff
path: root/pango/pango-font-description.h
blob: 414696b1ecc929ad80b890fabb11dc0b4fc61f2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
/*
 * Copyright (C) 2000 Red Hat Software
 *
 * SPDX-License-Identifier: LGPL-2.1-or-later
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
 */

#pragma once

#include <pango/pango-types.h>

#include <glib-object.h>
#include <hb.h>

G_BEGIN_DECLS

/**
 * Pango2FontDescription:
 *
 * A `Pango2FontDescription` describes a font in an implementation-independent
 * manner.
 *
 * `Pango2FontDescription` structures are used both to list what fonts are
 * available on the system and also for specifying the characteristics of
 * a font to load.
 */

/**
 * Pango2Style:
 * @PANGO2_STYLE_NORMAL: the font is upright.
 * @PANGO2_STYLE_OBLIQUE: the font is slanted, but in a roman style.
 * @PANGO2_STYLE_ITALIC: the font is slanted in an italic style.
 *
 * An enumeration specifying the various slant styles possible for a font.
 **/
typedef enum {
  PANGO2_STYLE_NORMAL,
  PANGO2_STYLE_OBLIQUE,
  PANGO2_STYLE_ITALIC
} Pango2Style;

/**
 * Pango2Variant:
 * @PANGO2_VARIANT_NORMAL: A normal font.
 * @PANGO2_VARIANT_SMALL_CAPS: A font with the lower case characters
 *   replaced by smaller variants of the capital characters.
 * @PANGO2_VARIANT_ALL_SMALL_CAPS: A font with all characters
 *   replaced by smaller variants of the capital characters.
 * @PANGO2_VARIANT_PETITE_CAPS: A font with the lower case characters
 *   replaced by smaller variants of the capital characters.
 *   Petite Caps can be even smaller than Small Caps.
 * @PANGO2_VARIANT_ALL_PETITE_CAPS: A font with all characters
 *   replaced by smaller variants of the capital characters.
 *   Petite Caps can be even smaller than Small Caps.
 * @PANGO2_VARIANT_UNICASE: A font with the upper case characters
 *   replaced by smaller variants of the capital letters.
 * @PANGO2_VARIANT_TITLE_CAPS: A font with capital letters that
 *   are more suitable for all-uppercase titles.
 *
 * An enumeration specifying capitalization variant of the font.
 */
typedef enum {
  PANGO2_VARIANT_NORMAL,
  PANGO2_VARIANT_SMALL_CAPS,
  PANGO2_VARIANT_ALL_SMALL_CAPS,
  PANGO2_VARIANT_PETITE_CAPS,
  PANGO2_VARIANT_ALL_PETITE_CAPS,
  PANGO2_VARIANT_UNICASE,
  PANGO2_VARIANT_TITLE_CAPS
} Pango2Variant;

/**
 * Pango2Weight:
 * @PANGO2_WEIGHT_THIN: the thin weight (= 100)
 * @PANGO2_WEIGHT_ULTRALIGHT: the ultralight weight (= 200)
 * @PANGO2_WEIGHT_LIGHT: the light weight (= 300)
 * @PANGO2_WEIGHT_SEMILIGHT: the semilight weight (= 350)
 * @PANGO2_WEIGHT_BOOK: the book weight (= 380)
 * @PANGO2_WEIGHT_NORMAL: the default weight (= 400)
 * @PANGO2_WEIGHT_MEDIUM: the normal weight (= 500)
 * @PANGO2_WEIGHT_SEMIBOLD: the semibold weight (= 600)
 * @PANGO2_WEIGHT_BOLD: the bold weight (= 700)
 * @PANGO2_WEIGHT_ULTRABOLD: the ultrabold weight (= 800)
 * @PANGO2_WEIGHT_HEAVY: the heavy weight (= 900)
 * @PANGO2_WEIGHT_ULTRAHEAVY: the ultraheavy weight (= 1000)
 *
 * A `Pango2Weight` specifes the weight (boldness) of a font.
 *
 * Weight is specified as a numeric value ranging from 100 to 1000.
 * This enumeration simply provides some common, predefined values.
 */
typedef enum {
  PANGO2_WEIGHT_THIN = 100,
  PANGO2_WEIGHT_ULTRALIGHT = 200,
  PANGO2_WEIGHT_LIGHT = 300,
  PANGO2_WEIGHT_SEMILIGHT = 350,
  PANGO2_WEIGHT_BOOK = 380,
  PANGO2_WEIGHT_NORMAL = 400,
  PANGO2_WEIGHT_MEDIUM = 500,
  PANGO2_WEIGHT_SEMIBOLD = 600,
  PANGO2_WEIGHT_BOLD = 700,
  PANGO2_WEIGHT_ULTRABOLD = 800,
  PANGO2_WEIGHT_HEAVY = 900,
  PANGO2_WEIGHT_ULTRAHEAVY = 1000
} Pango2Weight;

/**
 * Pango2Stretch:
 * @PANGO2_STRETCH_ULTRA_CONDENSED: ultra-condensed width (= 500)
 * @PANGO2_STRETCH_EXTRA_CONDENSED: extra-condensed width (= 625)
 * @PANGO2_STRETCH_CONDENSED: condensed width (= 750)
 * @PANGO2_STRETCH_SEMI_CONDENSED: semi-condensed width (= 875)
 * @PANGO2_STRETCH_NORMAL: the normal width (= 1000)
 * @PANGO2_STRETCH_SEMI_EXPANDED: semi-expanded width (= 1125)
 * @PANGO2_STRETCH_EXPANDED: expanded width (= 1250)
 * @PANGO2_STRETCH_EXTRA_EXPANDED: extra-expanded width (= 1500)
 * @PANGO2_STRETCH_ULTRA_EXPANDED: ultra-expanded width (= 2000)
 *
 * A `Pango2Stretch` specifes the width of the font relative
 * to other designs within a family.
 *
 * Stretch is specified as a numeric value ranging from 500 to 2000.
 * This enumeration simply provides some common, predefined values.
 */
typedef enum {
  PANGO2_STRETCH_ULTRA_CONDENSED =  500,
  PANGO2_STRETCH_EXTRA_CONDENSED =  625,
  PANGO2_STRETCH_CONDENSED       =  750,
  PANGO2_STRETCH_SEMI_CONDENSED  =  875,
  PANGO2_STRETCH_NORMAL          = 1000,
  PANGO2_STRETCH_SEMI_EXPANDED   = 1125,
  PANGO2_STRETCH_EXPANDED        = 1250,
  PANGO2_STRETCH_EXTRA_EXPANDED  = 1500,
  PANGO2_STRETCH_ULTRA_EXPANDED  = 2000
} Pango2Stretch;

/**
 * Pango2FontMask:
 * @PANGO2_FONT_MASK_FAMILY: the font family is specified.
 * @PANGO2_FONT_MASK_STYLE: the font style is specified.
 * @PANGO2_FONT_MASK_VARIANT: the font variant is specified.
 * @PANGO2_FONT_MASK_WEIGHT: the font weight is specified.
 * @PANGO2_FONT_MASK_STRETCH: the font stretch is specified.
 * @PANGO2_FONT_MASK_SIZE: the font size is specified.
 * @PANGO2_FONT_MASK_GRAVITY: the font gravity is specified
 * @PANGO2_FONT_MASK_VARIATIONS: OpenType font variations are specified
 * @PANGO2_FONT_MASK_FACEID: the face ID is specified
 *
 * The bits in a `Pango2FontMask` correspond to the set fields in a
 * `Pango2FontDescription`.
 */
typedef enum {
  PANGO2_FONT_MASK_FAMILY     = 1 << 0,
  PANGO2_FONT_MASK_STYLE      = 1 << 1,
  PANGO2_FONT_MASK_VARIANT    = 1 << 2,
  PANGO2_FONT_MASK_WEIGHT     = 1 << 3,
  PANGO2_FONT_MASK_STRETCH    = 1 << 4,
  PANGO2_FONT_MASK_SIZE       = 1 << 5,
  PANGO2_FONT_MASK_GRAVITY    = 1 << 6,
  PANGO2_FONT_MASK_VARIATIONS = 1 << 7,
  PANGO2_FONT_MASK_FACEID     = 1 << 8,
} Pango2FontMask;

/* CSS scale factors (1.2 factor between each size) */
/**
 * PANGO2_SCALE_XX_SMALL:
 *
 * The scale factor for three shrinking steps (1 / (1.2 * 1.2 * 1.2)).
 */
/**
 * PANGO2_SCALE_X_SMALL:
 *
 * The scale factor for two shrinking steps (1 / (1.2 * 1.2)).
 */
/**
 * PANGO2_SCALE_SMALL:
 *
 * The scale factor for one shrinking step (1 / 1.2).
 */
/**
 * PANGO2_SCALE_MEDIUM:
 *
 * The scale factor for normal size (1.0).
 */
/**
 * PANGO2_SCALE_LARGE:
 *
 * The scale factor for one magnification step (1.2).
 */
/**
 * PANGO2_SCALE_X_LARGE:
 *
 * The scale factor for two magnification steps (1.2 * 1.2).
 */
/**
 * PANGO2_SCALE_XX_LARGE:
 *
 * The scale factor for three magnification steps (1.2 * 1.2 * 1.2).
 */
#define PANGO2_SCALE_XX_SMALL ((double)0.5787037037037)
#define PANGO2_SCALE_X_SMALL  ((double)0.6944444444444)
#define PANGO2_SCALE_SMALL    ((double)0.8333333333333)
#define PANGO2_SCALE_MEDIUM   ((double)1.0)
#define PANGO2_SCALE_LARGE    ((double)1.2)
#define PANGO2_SCALE_X_LARGE  ((double)1.44)
#define PANGO2_SCALE_XX_LARGE ((double)1.728)


#define PANGO2_TYPE_FONT_DESCRIPTION (pango2_font_description_get_type ())

PANGO2_AVAILABLE_IN_ALL
GType                   pango2_font_description_get_type          (void) G_GNUC_CONST;
PANGO2_AVAILABLE_IN_ALL
Pango2FontDescription * pango2_font_description_new               (void);
PANGO2_AVAILABLE_IN_ALL
Pango2FontDescription * pango2_font_description_copy              (const Pango2FontDescription  *desc);
PANGO2_AVAILABLE_IN_ALL
Pango2FontDescription * pango2_font_description_copy_static       (const Pango2FontDescription  *desc);
PANGO2_AVAILABLE_IN_ALL
guint                   pango2_font_description_hash              (const Pango2FontDescription  *desc) G_GNUC_PURE;
PANGO2_AVAILABLE_IN_ALL
gboolean                pango2_font_description_equal             (const Pango2FontDescription  *desc1,
                                                                   const Pango2FontDescription  *desc2) G_GNUC_PURE;
PANGO2_AVAILABLE_IN_ALL
void                    pango2_font_description_free              (Pango2FontDescription        *desc);

PANGO2_AVAILABLE_IN_ALL
void                    pango2_font_description_set_family        (Pango2FontDescription *desc,
                                                                   const char           *family);
PANGO2_AVAILABLE_IN_ALL
void                    pango2_font_description_set_family_static (Pango2FontDescription *desc,
                                                                   const char           *family);
PANGO2_AVAILABLE_IN_ALL
const char *            pango2_font_description_get_family        (const Pango2FontDescription *desc) G_GNUC_PURE;
PANGO2_AVAILABLE_IN_ALL
void                    pango2_font_description_set_style         (Pango2FontDescription *desc,
                                                                   Pango2Style            style);
PANGO2_AVAILABLE_IN_ALL
Pango2Style             pango2_font_description_get_style         (const Pango2FontDescription *desc) G_GNUC_PURE;
PANGO2_AVAILABLE_IN_ALL
void                    pango2_font_description_set_variant       (Pango2FontDescription *desc,
                                                                   Pango2Variant          variant);
PANGO2_AVAILABLE_IN_ALL
Pango2Variant           pango2_font_description_get_variant       (const Pango2FontDescription *desc) G_GNUC_PURE;
PANGO2_AVAILABLE_IN_ALL
void                    pango2_font_description_set_weight        (Pango2FontDescription *desc,
                                                                   Pango2Weight           weight);
PANGO2_AVAILABLE_IN_ALL
Pango2Weight            pango2_font_description_get_weight        (const Pango2FontDescription *desc) G_GNUC_PURE;
PANGO2_AVAILABLE_IN_ALL
void                    pango2_font_description_set_stretch       (Pango2FontDescription *desc,
                                                                   Pango2Stretch          stretch);
PANGO2_AVAILABLE_IN_ALL
Pango2Stretch           pango2_font_description_get_stretch       (const Pango2FontDescription *desc) G_GNUC_PURE;
PANGO2_AVAILABLE_IN_ALL
void                    pango2_font_description_set_size          (Pango2FontDescription *desc,
                                                                   int                   size);
PANGO2_AVAILABLE_IN_ALL
int                     pango2_font_description_get_size          (const Pango2FontDescription *desc) G_GNUC_PURE;
PANGO2_AVAILABLE_IN_ALL
void                    pango2_font_description_set_absolute_size (Pango2FontDescription *desc,
                                                                   double                size);
PANGO2_AVAILABLE_IN_ALL
gboolean                pango2_font_description_get_size_is_absolute (const Pango2FontDescription *desc) G_GNUC_PURE;
PANGO2_AVAILABLE_IN_ALL
void                    pango2_font_description_set_gravity       (Pango2FontDescription *desc,
                                                                   Pango2Gravity          gravity);
PANGO2_AVAILABLE_IN_ALL
Pango2Gravity           pango2_font_description_get_gravity       (const Pango2FontDescription *desc) G_GNUC_PURE;

PANGO2_AVAILABLE_IN_ALL
void                    pango2_font_description_set_variations_static (Pango2FontDescription       *desc,
                                                                       const char                 *variations);
PANGO2_AVAILABLE_IN_ALL
void                    pango2_font_description_set_variations    (Pango2FontDescription       *desc,
                                                                   const char                 *variations);
PANGO2_AVAILABLE_IN_ALL
const char *            pango2_font_description_get_variations    (const Pango2FontDescription *desc) G_GNUC_PURE;

PANGO2_AVAILABLE_IN_ALL
void                    pango2_font_description_set_faceid        (Pango2FontDescription     *desc,
                                                                   const char               *faceid);
PANGO2_AVAILABLE_IN_ALL
void                    pango2_font_description_set_faceid_static (Pango2FontDescription *desc,
                                                                   const char           *faceid);
PANGO2_AVAILABLE_IN_ALL
const char *            pango2_font_description_get_faceid        (const Pango2FontDescription *desc) G_GNUC_PURE;

PANGO2_AVAILABLE_IN_ALL
Pango2FontMask          pango2_font_description_get_set_fields    (const Pango2FontDescription *desc) G_GNUC_PURE;
PANGO2_AVAILABLE_IN_ALL
void                    pango2_font_description_unset_fields      (Pango2FontDescription       *desc,
                                                                   Pango2FontMask               to_unset);

PANGO2_AVAILABLE_IN_ALL
void                    pango2_font_description_merge             (Pango2FontDescription       *desc,
                                                                   const Pango2FontDescription *desc_to_merge,
                                                                   gboolean                    replace_existing);
PANGO2_AVAILABLE_IN_ALL
void                    pango2_font_description_merge_static      (Pango2FontDescription       *desc,
                                                                   const Pango2FontDescription *desc_to_merge,
                                                                   gboolean                    replace_existing);

PANGO2_AVAILABLE_IN_ALL
Pango2FontDescription * pango2_font_description_from_string       (const char                  *str);
PANGO2_AVAILABLE_IN_ALL
char *                  pango2_font_description_to_string         (const Pango2FontDescription  *desc);


G_DEFINE_AUTOPTR_CLEANUP_FUNC(Pango2FontDescription, pango2_font_description_free)

G_END_DECLS