summaryrefslogtreecommitdiff
path: root/man/Xft.man
blob: b4c13708d47a9bea92c9422dbf25669fa524ecc5 (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
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
.\"
.\" Copyright © 2022 Thomas E. Dickey
.\" Copyright © 2000 Keith Packard
.\"
.\" Permission to use, copy, modify, distribute, and sell this software and its
.\" documentation for any purpose is hereby granted without fee, provided that
.\" the above copyright notice appear in all copies and that both that
.\" copyright notice and this permission notice appear in supporting
.\" documentation, and that the name of the above copyright holders not be used
.\" in advertising or publicity pertaining to distribution of the software
.\" without specific, written prior permission.  The above copyright holders
.\" make no representations about the suitability of this software for any
.\" purpose.  It is provided "as is" without express or implied warranty.
.\"
.\" THE ABOVE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
.\" SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS,
.\" IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL,
.\" INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
.\" LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
.\" OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
.\" PERFORMANCE OF THIS SOFTWARE.
.\"
.de TA
.ie n  .ta 0.8i 1.6i 2.4i 3.2i
.el    .ta 0.5i 1.0i 1.5i 2.0i
..
.de PS
.sp
.ns
.TP \\$1
.na
.nf
.ie n  .ta 0.8i 3.0i
.el    .ta 0.5i 2.0i
..
.de PE
.br
.ad
.fi
.sp
.TA
..
.de QS
.in +.2i
.nf
.na
.ie n  .ta 1.0i 3.0i
.el    .ta 0.6i 2.0i
..
.de QC
.QS
.ie n  .ta 2.0i 3.0i
.el    .ta 1.6i 2.6i
.ft CR
..
.de QE
.in -.2i
.ft
.fi
.ad
.TA
..
.de bP
.ie n  .IP \(bu 4
.el    .IP \(bu 2
..
.ie \n(.g .ds `` \(lq
.el       .ds `` ``
.ie \n(.g .ds '' \(rq
.el       .ds '' ''
.TH Xft __libmansuffix__ __vendorversion__ "X Version 11"
.SH NAME
Xft \- X FreeType interface library
.SH DESCRIPTION
.B Xft
is a simple library which draws text and graphics:
.bP
using information provided by the Fontconfig library,
.bP
.B Xft
converts font glyphs using the FreeType rasterizer, and
.bP
displays the converted font data using the X Rendering Extension.
.PP
This manual page barely scratches the surface of this library.
.SH "HEADER FILE"
.B #include <X11/Xft/Xft.h>
.SH CONSTANTS
.TP
.B XFT_MAJOR
is the major version number of
.BR Xft .
.TP
.B XFT_MINOR
is the minor version number of
.BR Xft .
.TP
.B XFT_REVISION
is the revision number of
.BR Xft .
.TP
.B XFT_VERSION
is
.B XFT_MAJOR
times 10000 (ten thousand), plus
.B XFT_MINOR
times 100, plus
.BR XFT_REVISION .
.TP
.B XftVersion
is an alias for
.BR XFT_VERSION .
.PP
The following example illustrates how
.BR Xft 's
version constants might be used:
.QS
    #if (XFT_VERSION >= 20107)
    (void) puts("Version 2.1.7 or later of the Xft library is in"
                " use.");
    #else
    (void) printf("Insufficient version of Xft (%d.%d.%d) installed;
                  " need at least version 2.1.7.\(rsn", XFT_MAJOR,
                  XFT_MINOR,
                  XFT_REVISION);
    #endif
.QE
.\" I don't understand what these are for.  -- BR, 2005-04-02
.\" XFT_NMISSING            used in xftcore.c, xftextent.c, xftglyphs.c,
.\"                                 xftrender.c
.SH "DATA TYPES"
Xft datatypes follow a naming convention,
prefixing all names with \*(``Xft\*(''
.SS From Xlib...
Xlib datatypes do not follow a naming convention.
They are documented in
.IR "Xlib \- C Language Interface" .
.PP
.B Xft
uses these names:
Bool,
Colormap,
Display,
Drawable,
Pixmap,
Region,
Visual, and
XRectangle.
.TP 5
.B Region
Declared in \fI<X11/Xutil.h>\fP and \fI<X11/Xregion.h>\fP,
a
.B Region
is an arbitrary set of pixel locations which Xlib can manipulate.
Internally, a
.B Region
is represented by the union of an arbitrary number of rectangles.
Xlib maintains a rectangle which tells it the extent of this union.
.SS From XRender...
The X Render Extension library
datatypes are inspired by Xlib,
but lack the corresponding documentation.
Refer to the header file for details:
.RS
.PP
.I <X11/extensions/Xrender.h>
.RE
.PP
.B Xft
uses these names:
Picture,
XGlyphInfo,
XRenderColor.
.SS From Fontconfig...
Fontconfig datatypes follow a naming convention,
prefixing all names with \*(``Fc\*('' which are documented in
.IR "Fontconfig Developers Reference" .
.PP
.B Xft
uses these Fontconfig names:
FcBool,
FcChar8,
FcChar16,
FcChar32,
FcCharSet,
FcEndian,
FcFontSet,
FcPattern, and
FcResult.
.SS From FreeType 2...
FreeType 2 datatypes follow a naming convention,
prefixing all names with \*(``FT_\*('' which are documented in
.IR "FreeType API Reference" .
.PP
.B Xft
uses these names:
FT_Face,
FT_Library, and
FT_UInt.
.PP
FreeType 2 uses
.B FT_UInt
(an unsigned integer)
to represent
.IR glyphs .
.SS XftFont
.QS
typedef struct _XftFont {
	int	 ascent;
	int	 descent;
	int	 height;
	int	 max_advance_width;
	FcCharSet	*charset;
	FcPattern	*pattern;
} XftFont;
.QE
.PP
An
.B XftFont
is the primary data structure of interest to programmers using
.BR Xft ;
it contains general font metrics and pointers to the Fontconfig
character set and pattern associated with the font.
.PP
.BR XftFont s
are populated with any of
.BR XftFontOpen (),
.BR XftFontOpenName (),
.BR XftFontOpenXlfd (),
.BR XftFontOpenInfo (),
or
.BR XftFontOpenPattern ().
.BR XftFontCopy ()
is used to duplicate
.BR XftFont s,
and
.BR XftFontClose ()
is used to mark an
.B XftFont
as unused.
.BR XftFont s
are internally allocated, reference-counted, and freed by
.BR Xft ;
the programmer does not ordinarily need to allocate or free storage
for them.
.PP
.BR XftDrawGlyphs (),
the
.BR XftDrawString *()
family,
.BR XftDrawCharSpec (),
and
.BR XftDrawGlyphSpec ()
use
.BR XftFont s
to render text to an
.B XftDraw
object, which may correspond to either a core X drawable or an X
Rendering Extension drawable.
.PP
.BR XftGlyphExtents ()
and the
.BR XftTextExtents *()
family are used to determine the extents (maximum dimensions) of an
.BR XftFont .
.PP
An
.BR XftFont 's
glyph or character coverage can be determined with
.BR XftFontCheckGlyph ()
or
.BR XftCharExists ().
.BR XftCharIndex ()
returns the
.BR XftFont -specific
character index corresponding to a given Unicode codepoint.
.PP
.BR XftGlyphRender (),
.BR XftGlyphSpecRender (),
.BR XftCharSpecRender (),
and the
.BR XftTextRender *()
family use
.BR XftFont s
to draw into X Rendering Extension
.B Picture
structures.
.PP
.B Note:
.BR XftDrawGlyphs (),
the
.BR XftDrawString *()
family,
.BR XftDrawCharSpec (),
and
.BR XftDrawGlyphSpec ()
provide a means of rendering fonts that is independent of the
availability of the X Rendering Extension on the X server.
.SS
.B XftFontInfo
is an opaque object that stores information about a font.
.B XftFontInfo
structures are created with
.BR XftFontInfoCreate (),
freed with
.BR XftFontInfoDestroy (),
and compared with
.BR XftFontInfoEqual ().
.B XftFontInfo
objects are internally allocated and freed by
.BR Xft ;
the programmer does not ordinarily need to allocate or free storage
for them.
.PP
Each
.B XftFontInfo
structure in use is associated with a unique identifier, which can be
retrieved with
.BR XftFontInfoHash ().
An
.B XftFont
can be opened based on
.B XftFontInfo
data with
.BR XftFontOpenInfo ().
.SS
.B XftColor
.QS
typedef struct _XftColor {
	unsigned long	 pixel;
	XRenderColor	 color;
} XftColor;
.QE
.PP
An
.B XftColor
object permits text and other items to be rendered in a particular
color (or the closest approximation offered by the X visual in use).
.PP
.BR XftColorAllocName ()
and
.BR XftColorAllocValue ()
request a color allocation from the X server (if necessary) and
initialize the members of
.BR XftColor .
.BR XftColorFree ()
instructs the X server to free the color currently allocated for an
.BR XftColor .
.PP
Once an
.B XftColor
has been initialized,
.BR XftDrawSrcPicture (),
.BR XftDrawGlyphs (),
the
.BR XftDrawString *()
family,
.BR XftDrawCharSpec (),
.BR XftDrawCharFontSpec (),
.BR XftDrawGlyphSpec (),
.BR XftDrawGlyphFontSpec (),
and
.BR XftDrawRect ()
may be used to draw various objects using it.
.SS
.B XftDraw
is an opaque object which holds information used to render to an X drawable
using either the core protocol or the X Rendering extension.
.PP
.B XftDraw
objects are created with any of
.BR XftDrawCreate ()
(which associates an
.B XftDraw
with an existing X drawable),
.BR XftDrawCreateBitmap (),
or
.BR XftDrawCreateAlpha (),
and destroyed with
.BR XftDrawDestroy ().
The X drawable associated with an
.B XftDraw
can be changed with
.BR XftDrawChange ().
.B XftDraw
objects are internally allocated and freed by
.BR Xft ;
the programmer does not ordinarily need to allocate or free storage
for them.
.PP
The X
.BR Display ,
.BR Drawable ,
.BR Colormap ,
and
.B Visual
properties of an
.B XftDraw
can be queried with
.BR XftDrawDisplay (),
.BR XftDrawDrawable (),
.BR XftDrawColormap (),
and
.BR XftDrawVisual (),
respectively.
.PP
Several functions use
.B XftDraw
objects:
.BR XftDrawCharFontSpec (),
.BR XftDrawCharSpec (),
.BR XftDrawGlyphFontSpec (),
.BR XftDrawGlyphSpec (),
.BR XftDrawGlyphs (),
.BR XftDrawRect (),
.BR XftDrawSetClip (),
.BR XftDrawSetClipRectangles (),
.BR XftDrawSetSubwindowMode (),
and the
.BR XftDrawString *()
family.
.PP
The X Rendering Extension
.B Picture
associated with an
.B XftDraw
is returned by
.BR XftDrawPicture (),
and
.BR XftDrawSrcPicture ().
It is used by
.BR XftCharFontSpecRender (),
.BR XftCharSpecRender (),
.BR XftGlyphFontSpecRender (),
.BR XftGlyphRender (),
.BR XftGlyphSpecRender (),
and the
.BR XftTextRender *()
family.
.SS
.B XftCharSpec
.QS
typedef struct _XftCharSpec {
	FcChar32	 ucs4;
	short	 x;
	short	 y;
} XftCharSpec;
.QE
.PP
The
.B XftCharSpec
is used by
.BR XftDrawCharSpec (),
and
.BR XftCharSpecRender ().
.SS
.B XftCharFontSpec
.QS
typedef struct _XftCharFontSpec {
	XftFont	*font;
	FcChar32	 ucs4;
	short	 x;
	short	 y;
} XftCharFontSpec;
.QE
.PP
.SS
.B XftGlyphSpec
.QS
typedef struct _XftGlyphSpec {
	FT_UInt	  glyph;
	short	  x;
	short	  y;
} XftGlyphSpec;
.QE
.SS XftGlyphFontSpec
.QS
typedef struct _XftGlyphFontSpec {
	XftFont	*font;
	FT_UInt	 glyph;
	short	 x;
	short	 y;
} XftGlyphFontSpec;
.QE
.SH FUNCTIONS
.\" *************************************************************************
.SS "Initialization"
A typical application using
.B Xft
does not explicitly initialize the library.
That is usually done as a side-effect of opening a font.
.PP
When
.B Xft
initializes, it collects information about the display,
and stores some of that information in a Fontconfig pattern
(essentially a collection of properties with typed values).
The calling application can modify that pattern
to change the library's behavior.
.PP
Not all of the collected information is stored in a pattern.
The remainder is stored in internal data structures.
.B Xft
makes some of that available to the application via functions.
.PS
\fBBool\fP \fBXftDefaultHasRender\fP (
	\fBDisplay\fP	*\fIdpy\fP);
.PE
Obtain information about the display
.I dpy
if not done already, and
return true if
.B Xft
found that the display supports the X Render extension,
and if it is able to find a suitable
.B XRenderPictFormat
(X Render's datatype which is analogous to Xlib's Visual)
on the display.
.PS
\fBBool\fP \fBXftDefaultSet\fP (
	\fBDisplay\fP	*\fIdpy\fP,
	\fBFcPattern\fP	*\fIdefaults\fP);
.PE
Obtain information about the display
.I dpy
if not done already, and
set the Fontconfig pattern holding default properties
which
.B Xft
will use for this display.
.IP
.B Xft
uses those properties initially to obtain these limits:
.RS 10
.TP 5
XFT_MAX_GLYPH_MEMORY
(maxglyphmemory).
This is the maximum amount of glyph memory for all fonts used by
.B Xft
(default: 4*1024*1024).
.TP 5
XFT_MAX_UNREF_FONTS
(maxunreffonts).
This is the maximum number of unreferenced fonts
(default: 16).
.RE
.IP
.B Xft
also uses these default properties in
.BR XftDefaultSubstitute ().
.PS
\fBvoid\fP \fBXftDefaultSubstitute\fP (
	\fBDisplay\fP	*\fIdpy\fP,
	\fBint\fP	 \fIscreen\fP,
	\fBFcPattern\fP	*\fIpattern\fP);
.PE
.B Xft
fills in missing properties in the given
.I pattern
using default properties for the specified display
.IR dpy ,
e.g., as set in
.BR XftDefaultSet ().
.IP
Typical
.B Xft
applications use this function to help Fontconfig
choose a suitable font.
These properties are substituted before calling
.BR FcDefaultSubstitute ():
.RS 10
.TP 5
FC_ANTIALIAS
True if FreeType should use antialiasing
(default: False).
(default: True).
.TP 5
FC_AUTOHINT
True if FreeType should use autohinting
(default: False).
.TP 5
FC_DPI
Dots/inch used for resolution
(default: computed from the display height).
.TP 5
FC_EMBOLDEN
True if
.BR FT_GlyphSlot_Embolden ()
should be used to embolden a font
(default: False).
.TP 5
FC_HINTING
True if hinting should be used when filling in properties to open a font
(default: True).
.TP 5
FC_HINT_STYLE
Hinting style used when filling in properties to open a font
(default: FC_HINT_FULL).
.TP 5
FC_LCD_FILTER
Parameter passed to
.BR FT_Library_SetLcdFilter ()
when loading glyphs
(default: FC_LCD_DEFAULT).
.TP 5
FC_MINSPACE
Minimum space value used when filling in properties to open a font
(default: False).
.TP 5
FC_RGBA
RGBA value used when filling in properties to open a font
(default: computed by calling
.BR XRenderQuerySubpixelOrder ()).
.TP 5
FC_SCALE
Scale used in Fontconfig
(default: 1.0).
.TP 5
XFT_MAX_GLYPH_MEMORY
Maximum memory for one font
(default: 1024*1024).
.TP 5
XFT_RENDER
True if the display supports X Render extension
(default: result from
.BR XftDefaultHasRender ()).
.RE
.PS
\fBFcBool\fP \fBXftInit\fP (
	\fB_Xconst char\fP	*\fIconfig\fP);
.PE
Initializes the Fontconfig library (calling
.BR FcInit ()).
.IP
The \fIconfig\fP parameter is unused.
.IP
.B Xft
does not deinitialize the Fontconfig library when it is done.
.PS
\fBFcBool\fP \fBXftInitFtLibrary\fP (\fBvoid\fP);
.PE
Initializes the FreeType library
(calling
.BR FT_Init_FreeType ()
to create a library object)
if it has not already been initialized.
This is needed before using the FreeType library to read font data from a file.
.IP
.B Xft
calls
.BR XftInitFtLibrary ()
internally via
.BR XftFontInfoCreate "() and"
.BR XftFontOpenPattern ().
.IP
.B Xft
does not discard the library object
(e.g., using
.BR FT_Done_FreeType ())
when it is done.
.PS
\fBint\fP \fBXftGetVersion\fP (\fBvoid\fP);
.PE
Return \fBXftVersion\fP, enabling an application to determine the
actual version of
.B Xft
which is in use.
.\" *************************************************************************
.SS "Opening and Matching Fonts"
.PS
\fBXftFont\fP *\fBXftFontOpen\fP (
	\fBDisplay\fP	*\fIdpy\fP,
	\fBint\fP	 \fIscreen\fP,
	...);
.PE
.B XftFontOpen
takes a list of pattern element triples of the form
.IR field , " type" , " value"
(terminated with a NULL), matches that pattern against the available fonts,
and opens the matching font, sizing it correctly for screen number
.I screen
on display
.IR dpy .
The
.B Display
data type is defined by the X11 library.
Return the matched font, or
NULL if no match is found.
.PP
Example:
.QS
    font = XftFontOpen (dpy, screen,
                        XFT_FAMILY, XftTypeString, "charter",
                        XFT_SIZE, XftTypeDouble, 12.0,
                        NULL);
.QE
.IP
This opens the \*(``charter\*('' font at 12 points.
The point size is automatically converted to the correct pixel size based
on the resolution of the monitor.
.PP
.PS
\fBXftFont\fP *\fBXftFontOpenName\fP (
	\fBDisplay\fP	*\fIdpy\fP,
	\fBint\fP	 \fIscreen\fP,
	\fB_Xconst char\fP	*\fIname\fP);
.PE
.B XftFontOpenName
behaves as
.B XftFontOpen
does, except that it takes a Fontconfig pattern string (which is passed to
the Fontconfig library's
.BR FcNameParse ()
function).
.PP
.PS
\fBXftFont\fP *\fBXftFontOpenXlfd\fP (
	\fBDisplay\fP	*\fIdpy\fP,
	\fBint\fP	 \fIscreen\fP,
	\fB_Xconst char\fP	*\fIxlfd\fP)
.PE
.B XftFontOpenXlfd
behaves as
.B XftFontOpen
does, except that it takes a string containing an X Logical Font
Description (XLFD),
and uses the
.BR XftXlfdParse ()
function.
.PP
.PS
\fBFcPattern\fP *\fBXftFontMatch\fP (
	\fBDisplay\fP	*\fIdpy\fP,
	\fBint\fP	 \fIscreen\fP,
	\fB_Xconst FcPattern\fP	*\fIpattern\fP,
	\fBFcResult\fP	*\fIresult\fP);
.PE
Also used internally by the
.BR XftFontOpen *
functions,
.B XftFontMatch
can also be used directly to determine the Fontconfig font pattern
resulting from an
.B Xft
font open request.
.PS
\fBFcPattern\fP *\fBXftXlfdParse\fP (
	\fB_Xconst char\fP	*\fIxlfd_orig\fP,
	\fBBool\fP	\fIignore_scalable\fP,
	\fBBool\fP	\fIcomplete\fP);
.PE
.B XftXlfdParse
parses the
.I xlfd_orig
parameter according to the
.I X Logical Font Description Conventions
document, but ignores
some of the fields:
.IR setwidth_name ,
.IR add_style_name  ,
.IR spacing  ,
and
.IR average_width .
.IP
.B XftXlfdParse
creates a Fontconfig pattern,
setting the property
.B XFT_XLFD
to the
.I xlfd_orig
value,
and
maps the collected information to Fontconfig properties.
Empty or \*(``*\*('' fields are ignored:
.RS 10
.TP 5
FC_FOUNDRY
from
.IR foundry .
.TP 5
FC_FAMILY
from
.IR family .
.TP 5
FC_WEIGHT
.IR weight_name ,
defaulting to
FC_WEIGHT_MEDIUM.
.TP 5
FC_SLANT
from
.IR slant ,
defaulting to
FC_SLANT_ROMAN.
.TP 5
FC_SIZE
from
.IR point_size .
.TP 5
FC_PIXEL_SIZE
from
.IR pixel_size .
If
.I point_size
was set, as well as
.IR resolution_x and
.IR resolution_y ,
then the value is scaled convert the font's height to points.
.RE
.\" *************************************************************************
.SS "Determining Text Extents"
.B Xft
provides several functions for determining the required height and width
for displaying a text-string.
After accounting for the
.IR offset ,
in cases where the string will be shifted up, down, left or right,
these numbers are referred to as
.IR "text extents" .
.PS
\fBvoid\fP \fBXftTextExtents8\fP (
	\fBDisplay\fP	*\fIdpy\fP,
	\fBXftFont\fP	*\fIfont\fP,
	\fB_Xconst FcChar8\fP	*\fIstring\fP,
	\fBint\fP	 \fIlen\fP,
	\fBXGlyphInfo\fP	*\fIextents\fP);
.PE
.B XftTextExtents8
computes the pixel extents on display
.I dpy
of no more than
.I len
glyphs of a
.I string
consisting of eight-bit characters when drawn with
.IR font ,
storing them in
.IR extents .
.PP
.PS
\fBvoid\fP \fBXftTextExtents16\fP (
	\fBDisplay\fP	*\fIdpy\fP,
	\fBXftFont\fP	*\fIfont\fP,
	\fB_Xconst FcChar16\fP	*\fIstring\fP,
	\fBint\fP	 \fIlen\fP,
	\fBXGlyphInfo\fP	*\fIextents\fP);
.PE
.B XftTextExtents16
computes the pixel extents on display
.I dpy
of no more than
.I len
glyphs of a
.I string
consisting of sixteen-bit characters when drawn with
.IR font ,
storing them in
.IR extents .
.PP
.PS
\fBvoid\fP \fBXftTextExtents32\fP (
	\fBDisplay\fP	*\fIdpy\fP,
	\fBXftFont\fP	*\fIfont\fP,
	\fB_Xconst FcChar32\fP	*\fIstring\fP,
	\fBint\fP	 \fIlen\fP,
	\fBXGlyphInfo\fP	*\fIextents\fP);
.PE
.B XftTextExtents32
computes the pixel extents on display
.I dpy
of no more than
.I len
glyphs of a
.I string
consisting of thirty-two-bit characters when drawn with
.IR font ,
storing them in
.IR extents .
.PP
.PS
\fBvoid\fP \fBXftTextExtentsUtf8\fP (
	\fBDisplay\fP	*\fIdpy\fP,
	\fBXftFont\fP	*\fIfont\fP,
	\fB_Xconst FcChar8\fP	*\fIstring\fP,
	\fBint\fP	 \fIlen\fP,
	\fBXGlyphInfo\fP	*\fIextents\fP);
.PE
.B XftTextExtentsUtf8
computes the pixel extents on display
.I dpy
of no more than
.I len
bytes of a UTF-8 encoded
.I string
when drawn with
.IR font ,
storing them in
.IR extents .
.PP
.PS
\fBvoid\fR \fBXftTextExtentsUtf16\fP (
	\fBDisplay\fP	*\fIdpy\fP,
	\fBXftFont\fP	*\fIfont\fP,
	\fB_Xconst FcChar8\fP	*\fIstring\fP,
	\fBFcEndian\fP	 \fIendian\fP,
	\fBint\fP	 \fIlen\fP,
	\fBXGlyphInfo\fP	*\fIextents\fP);
.PE
.B XftTextExtentsUtf16
computes the pixel extents on display
.I dpy
of no more than
.I len
bytes of a UTF-16LE- or UTF-16BE-encoded
.I string
when drawn with
.IR font ,
storing them in
.IR extents .
The endianness of
.I string
must be specified in
.IR endian .
.PP
.PS
\fBvoid\fP \fBXftGlyphExtents\fP (
	\fBDisplay\fP	*\fIdpy\fP,
	\fBXftFont\fP	*\fIfont\fP,
	\fB_Xconst FT_UInt\fP	*\fIglyphs\fP,
	\fBint\fP	 \fInglyphs\fP,
	\fBXGlyphInfo\fP	*\fIextents\fP);
.PE
Also used internally by the
.BR XftTextExtents *()
functions,
.B XftGlyphExtents
computes the pixel extents on display
.I dpy
of no more than
.I nglyphs
in the array
.I glyphs
drawn with
.IR font ,
storing them in
.IR extents .
.IP
If any of the
.I glyphs
are missing (determined by a check with
.BR XftFontCheckGlyph ()),
the corresponding entry in
.I extents
is filled with zeroes.
.\" *************************************************************************
.SS "Managing XftDraw"
.PS
\fBXftDraw\fP *\fBXftDrawCreate\fP (
	\fBDisplay\fP	*\fIdpy\fP,
	\fBDrawable\fP	 \fIdrawable\fP,
	\fBVisual\fP	*\fIvisual\fP,
	\fBColormap\fP	 \fIcolormap\fP);
.PE
.B XftDrawCreate
creates a structure that can be used to render text and rectangles using
the specified
.IR drawable ,
.IR visual ,
and
.I colormap
on
.IR display .
.IP
The
.BR Drawable ,
.BR Visual ,
and
.B Colormap
data types are defined by the X11 library.
.PP
.PS
\fBXftDraw\fP *\fBXftDrawCreateBitmap\fP (
	\fBDisplay\fP	*\fIdpy\fB,\fR
	\fBPixmap\fP	 \fIbitmap\fB);\fR
.PE
.B XftDrawCreateBitmap
behaves as
.BR XftDrawCreate (),
except that it uses an X pixmap of color depth 1 instead of an X drawable.
.IP
The
.B Pixmap
data type is defined by the X11 library.
.PP
.PS
\fBXftDraw *\fP \fBXftDrawCreateAlpha\fP (
	\fBDisplay\fP	*\fIdpy\fP,
	\fBPixmap\fP	 \fIpixmap\fP,
	\fBint\fP	 \fIdepth\fP);
.PE
.B XftDrawCreateAlpha
behaves as
.BR XftDrawCreate (),
except that it uses an X pixmap of color depth
.I depth
instead of an X drawable.
.IP
The
.B Pixmap
data type is defined by the X11 library.
.PP
.PS
\fBvoid\fP \fBXftDrawChange\fP (
	\fBXftDraw\fP	*\fIdraw\fP,
	\fBDrawable\fP	 \fIdrawable\fP);
.PE
.B XftDrawChange
changes the X drawable association of the existing
.B Xft
draw object
.I draw
from its current value to
.IR drawable .
.PP
.PS
\fBDisplay\fP *\fBXftDrawDisplay\fP (
	\fBXftDraw\fP	*\fIdraw\fP);
.PE
.B XftDrawDisplay
returns a pointer to the display associated with the
.B Xft
draw object
.IR draw .
.PP
.PS
\fBDrawable\fP \fBXftDrawDrawable\fP (
	\fBXftDraw\fP	*\fIdraw\fP);
.PE
.B XftDrawDrawable
returns the X drawable associated with the
.B Xft
draw object
.IR draw .
.PP
.PS
\fBColormap\fP \fBXftDrawColormap\fP (
	\fBXftDraw\fP	*\fIdraw\fP);
.PE
.BR XftDrawColormap ()
returns the colormap associated with the
.B Xft
draw object
.IR draw .
.PP
.PS
\fBVisual\fR *\fBXftDrawVisual\fP (
	\fBXftDraw\fP	*\fIdraw\fP);
.PE
.B XftDrawVisual
returns a pointer to the visual associated with the
.B Xft
draw object
.IR draw .
.PP
.PS
\fBPicture\fP \fBXftDrawPicture\fP (
	\fBXftDraw\fP	*\fIdraw\fP);
.PE
.B XftDrawPicture
returns the picture associated with the
.B Xft
draw object
.IR draw .
.IP
If the the X server does not support the X Rendering Extension, 0 is
returned.
.PP
.PS
\fBPicture\fP \fBXftDrawSrcPicture\fP (
	\fBXftDraw\fP	*\fIdraw\fP,
	\fB_Xconst XftColor\fP	*\fIcolor\fP);
.PE
Return an X Render Picture object,
which is used for rendering glyphs,
e.g., with
.BR XftGlyphRender (),
.BR XftGlyphSpecRender (),
or
.BR XftGlyphFontSpecRender (),
by
.BR XftDrawGlyphs (),
.BR XftDrawGlyphSpec (),
.BR XftDrawGlyphFontSpec (),
respectively.
.IP
If the X server does not support the X Render extension,
those functions use
.BR XftGlyphCore (),
.BR XftGlyphSpecCore (),
or
.BR XftGlyphFontSpecCore ().
.PS
\fBvoid\fP \fBXftDrawDestroy\fP (
	\fBXftDraw\fP	*\fIdraw\fP);
.PE
.B XftDrawDestroy
destroys
.I draw
(created by one of the
.BR XftDrawCreate *()
functions) and frees the memory that was allocated for it.
.PS
\fBBool\fP \fBXftDrawSetClip\fP (
	\fBXftDraw\fP	*\fIdraw\fP,
	\fBRegion\fP	 \fIr\fP);
.PE
Set up clipping for the given
.B XftDraw
parameter
.I draw
starting with a
.BR Region :
.RS 7
.bP
If the
.B Region
parameter
.I r
is not null,
.B Xft
creates a new
.B Region
(to copy the parameter),
.bP
.B Xft
destroys any existing clipping region.
.bP
.B Xft
sets the clip_type
for the
.I draw
parameter to
.B XftClipTypeRegion
if the
.I r
parameter was not null.
Otherwise it sets the clip_type to
.BR XftClipTypeNone .
.bP
Finally,
.B Xft
updates clipping for existing objects,
updates the clip_mask for its X Render
.B Picture
object
and sets the clipping-mask in the graphic context (GC) associated with the
.B XftDraw
parameter.
.RE
.IP
.BR XftDrawSetClip ()
returns
.B True
if no change was necessary, or if the operation succeeded.
It returns
.B False
if it was unable to create the new
.BR Region ().
.PS
\fBBool\fP \fBXftDrawSetClipRectangles\fP (
	\fBXftDraw\fP	*\fIdraw\fP,
	\fBint\fP	 \fIxOrigin\fP,
	\fBint\fP	 \fIyOrigin\fP,
	\fB_Xconst XRectangle\fP	*\fIrects\fP,
	\fBint\fP	 \fIn\fP);
.PE
Like
.BR XftDrawSetClip (),
.B XftDrawSetClipRectangles()
sets up clipping for the given
.B XftDraw
parameter
.I draw
but uses a set of
.I n
rectangles (the
.I rects
parameter)
which could be used to construct a
.B Region .
.IP
.B Xft
sets the clip_type for
.I draw
to
XftClipTypeRectangles
and uses
.BR XSetClipRectangles ()
for core (X11) clipping
and
.BR XRenderSetPictureClipRectangles ()
for X Render clipping.
.PS
\fBvoid\fP \fBXftDrawSetSubwindowMode\fP (
	\fBXftDraw\fP	*\fIdraw\fP,
	\fBint\fP	 \fImode\fP);
.PE
Sets the subwindow-mode for the given
.B XftDraw
parameter
.IR draw .
The mode can be either
.B ClipByChildren
(the default), or
.BR IncludeInferiors :
.RS 7
.bP
For
.BR ClipByChildren ,
both source and destination windows are
additionally clipped by all viewable
.B InputOutput
children.
.bP
For
.BR IncludeInferiors ,
neither source nor destination window is clipped by inferiors.
This will result in including subwindow contents in the source
and drawing through subwindow boundaries of the destination.
.RE
.IP
In addition to the subwindow-mode maintained by
.BR Xft ,
it updates the subwindow mode for any associated graphics context
.B GC
using
.BR XSetSubwindowMode ()
as well as for an X Render
.B Picture
using
.BR XRenderChangePicture ().
.\" *************************************************************************
.SS "Drawing Strings"
.PS
\fBvoid\fP \fBXftDrawString8\fP (
	\fBXftDraw\fP	*\fId\fP,
	\fB_Xconst XftColor\fP	*\fIcolor\fP,
	\fBXftFont\fP	*\fIfont\fP,
	\fBint\fP	 \fIx\fP,
	\fBint\fP	 \fIy\fP,
	\fB_Xconst FcChar8\fP	*\fIstring\fP,
	\fBint\fP	 \fIlen\fP);
.PE
.B XftDrawString8
draws no more than
.I len
glyphs of
.I string
to
.B Xft
drawable
.I d
using
.I font
in
.I color
at position
.IR x , " y" .
.\" *************************************************************************
.SS "Drawing Other Things"
.PS
\fBvoid\fP \fBXftDrawRect\fP (
	\fBXftDraw\fP	*\fId\fP,
	\fB_Xconst XftColor\fP	*\fIcolor\fP,
	\fBint\fP	 \fIx\fP,
	\fBint\fP	 \fIy\fP,
	\fBunsigned int\fP	 \fIwidth\fP,
	\fBunsigned int\fP	 \fIheight\fP);
.PE
.B XftDrawRect
draws a solid rectangle of the specified
.IR color ,
.IR width ,
and
.I height
at position
.IR x , " y"
to
.B Xft
drawable
.IR d .
.\" *************************************************************************
.SS Manipulating patterns
.PS
\fBFcFontSet\fP *\fBXftListFonts\fP (
	\fBDisplay\fP	*\fIdpy\fP,
	\fBint\fP	 \fIscreen\fP,
	...);
.PE
.B Xft
uses
.BR FcPatternVapBuild ()
and
.BR FcObjectSetVapBuild ()
to process the variable-length parameter list,
and
.BR FcFontList ()
to obtain a list of matching Fontconfig patterns,
which it returns to the caller.
The caller can dispose of the return value using
.BR FcPatternDestroy ().
.PS
\fBFcPattern\fP *\fBXftNameParse\fP (
	\fB_Xconst char\fP	*\fIname\fP);
.PE
.B Xft
uses Fontconfig to parse the name,
passing the
.I name
to
.BR FcNameParse (),
returning the result.
.PS
\fBFcBool\fP \fBXftNameUnparse\fP (
	\fBFcPattern\fP	*\fIpat\fP,
	\fBchar\fP	*\fIdest\fP,
	\fBint\fP	 \fIlen\fP);
.PE
Like
.BR XfgNameParse (),
.B Xft
uses Fontconfig.
In this case, it uses
.BR FcNameUnparse (),
which converts the pattern
.I pat
back into a string that can be parsed.
.BR XftNameUnparse ()
stores the result via the caller's pointer
.IR dest ,
but checks first if it will fit,
using the
.I len
parameter.
If it fits,
.B Xft
copies the string and returns
.BR FcTrue ,
otherwise it returns
.BR FcFalse .
.SS Manipulating Font data
.PS
\fBvoid\fP \fBXftFontLoadGlyphs\fP (
	\fBDisplay\fP	*\fIdpy\fP,
	\fBXftFont\fP	*\fIpub\fP,
	\fBFcBool\fP	 \fIneed_bitmaps\fP,
	\fB_Xconst FT_UInt\fP	*\fIglyphs\fP,
	\fBint\fP	 \fInglyph\fP);
.PE
Using
.BR FT_Load_Glyph (),
load
.I nglyphs
for the glyph indices (Unicode values)
listed in the array
.I glyphs
from the given font
.IR pub .
.IP
Loading a glyph entails more than just reading data into memory.
.B Xft
uses the Fontconfig pattern associated with the display
.I dpy
(e.g., via
.BR XftDefaultSet ())
to determine whether to use a bounding box,
clip the glyphs into those bounds,
scale the glyphs,
compute font metrics, and
add it to the
X Render extension using
.BR XRenderAddGlyphs ().
.PS
\fBvoid\fP \fBXftFontUnloadGlyphs\fP (
	\fBDisplay\fP	*\fIdpy\fP,
	\fBXftFont\fP	*\fIpub\fP,
	\fB_Xconst FT_UInt\fP	*\fIglyphs\fP,
	\fBint\fP	 \fInglyph\fP);
.PE
Discards data for up to
.I nglyph
glyphs whose glyph indices (Unicode values)
are listed in the array
.I glyphs
for the given font
.IR pub .
If the glyphs were added to the X Render extension,
.B Xft
removes those using
.BR XRenderFreeGlyphs ().
.B Xft
keeps track of the amount of memory used for glyphs,
and updates the usage associated with the display
.IR dpy .
.PS
\fBFT_Face\fP \fBXftLockFace\fP (
	\fBXftFont\fP	*\fIpub\fP);
.PE
If no FreeType 2 \*(``face\*(''
(in-memory representation of a given typeface in a given style)
has been created for the
.I pub
font, create one using
.BR FT_New_Face ().
Face-locks are a reference count used by
.B Xft
to ensure that only one face is created,
and that it is retained until the font is no longer used.
.IP
Face-locking is used directly in
.BR XftCharIndex ()
and
.BR XftFontLoadGlyphs (),
which in turn are used in many functions of
.BR Xft .
.IP
Face-locking was introduced in version 1 (October 2002).
A few applications, such as Gdk/Gimp relied upon these functions.
In version 2.1.9 (June 2006),
face-locking was retained as part of the public API
when improved shared-library configurations provided
for hiding private symbols.
.PS
\fBvoid\fP \fBXftUnlockFace\fP (
	\fBXftFont\fP	*\fIpub\fP);
.PE
Decrements the reference count for the FreeType 2 \*(``face\*(''
associated with the font.
.IP
.B FT_Face
objects are deallocated using
.BR FT_Done_Face ().
.B Xft
does this in
.BR XftFontInfoDestroy ()
and when cleaning up on failure in
.BR XftFontInfoCreate ()
and
.BR XftFontOpenPattern ().
.SH COMPATIBILITY
As of version 2 (May 2002),
.B Xft
became relatively stable.
It is expected to retain source and binary compatibility in future releases.
.PP
.B Xft
provides a compatibility interface to its previous major version,
Xft
.RI 1. x ,
described below.
.\" *************************************************************************
.SS "Xft 1.x Header File"
.B #include <X11/Xft/XftCompat.h>
.\" .SS "Xft 1.x Constants"
.SS "Xft 1.x Data Types"
.TP
.B XftPattern
holds a set of names with associated value lists; each name refers to a
property of a font.
.BR XftPattern s
are used as inputs to the matching code as well as holding information
about specific fonts.
.TP
.B XftFontSet
contains a list of
.BR XftPattern s.
Internally,
.B Xft
uses this data structure to hold sets of fonts.
Externally,
.B Xft
returns the results of listing fonts in this format.
.TP
.B XftObjectSet
holds a set of names and is used to specify which fields from fonts are
placed in the the list of returned patterns when listing fonts.
.\" .SS "Xft 1.x Functions"
.SH AUTHOR
Keith Packard
.SH "SEE ALSO"
.I Fontconfig Developers Reference
.br
.I FreeType API Reference
.br
.I Xlib \- C Language Interface
.br
.I X Logical Font Description Conventions
.\" Set Vim modeline; textwidth is 70 to account for the extra margin
.\" padding that man (on Debian GNU/Linux) does for output to
.\" terminals (7 spaces on the left, 2 on the right), so that we don't
.\" go past 80 columns total, particularly in .nf/.fi regions.
.\" vim:set ai et sts=4 sw=4 tw=70: