-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
162 lines (128 loc) · 2.51 KB
/
README
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
== Description
Bindings for Xft. This is still a very early work in progress, and the
API *will change* in future releases.
== Authors
* John J Foerch
== Requirements
=== Chicken Eggs
* [[foreigners]]
* [[xtypes]]
=== C Headers
* Xft (libxft-dev)
== API
=== XftColor
* make-xftcolor
* xftcolor-red
* xftcolor-green
* xftcolor-blue
* xftcolor-alpha
=== XftDraw
* xftdraw-create
* xftdraw-create-bitmap
* xftdraw-create-alpha
* xftdraw-change
* xftdraw-display
* xftdraw-drawable
* xftdraw-colormap
* xftdraw-visual
* xftdraw-destroy
* xftdraw-picture
* xftdraw-set-clip!
* xftdraw-set-clip-rectangles!
* xftdraw-set-subwindow-mode!
=== XftFontInfo
* xft-fontinfo-create
* xft-fontinfo-destroy
* xft-fontinfo-hash
* xft-fontinfo-equal
=== XftFont
* make-xftfont
* free-xftfont
* xftfont-ascent
* xftfont-descent
* xftfont-height
* xftfont-max-advance-width
* xftfont-charset
* xftfont-pattern
* xftfont-match
* xft-font-open
* xft-font-open/name
* xft-font-open/xlfd
* xft-font-open/info
* xft-font-open/pattern
* xft-lock-face
* xft-unlock-face
* xft-font-copy
* xft-font-close
* xft-font-load-glyphs
* xft-font-unload-glyphs
* xft-font-check-glyph
* xft-char-exists
* xft-char-index
=== XftCharSpec
* make-xftcharspec
* free-xftcharspec
* xftcharspec-ucs4
* xftcharspec-x
* xftcharspec-y
=== XftCharFontSpec
* make-xftcharfontspec
* free-xftcharfontspec
* xftcharfontspec-font
* xftcharfontspec-ucs4
* xftcharfontspec-x
* xftcharfontspec-y
=== XftGlyphSpec
* make-xftglyphspec
* free-xftglyphspec
* xftglyphspec-glyph
* xftglyphspec-x
* xftglyphspec-y
=== XftGlyphFontSpec
* make-xftglyphfontspec
* free-xftglyphfontspec
* xftglyphfontspec-font
* xftglyphspec-glyph
* xftglyphfontspec-x
* xftglyphfontspec-y
=== Misc
* xft-default-has-render
* xft-default-set
* xft-default-substitute
* xft-name-parse
* xft-xlfd-parse
* xft-init
* xft-get-version
* xft-list-fonts
* xft-init-ft-library
=== Draw on Drawables
* xft-draw-src-picture
* xft-draw-glyphs
* xft-draw-string
* xft-draw-char-spec
* xft-draw-char-font-spec
* xft-draw-glyph-spec
* xft-draw-glyph-font-spec
* xft-draw-rect
=== Extents
* xft-text-extents
=== Rendering
* xft-glyph-render
* xft-glyph-spec-render
* xft-char-spec-render
* xft-glyph-font-spec-render
* xft-char-font-spec-render
* xft-text-render-8
* xft-text-render-16
* xft-text-render-16be
* xft-text-render-16le
* xft-text-render-32
* xft-text-render-32be
* xft-text-render-32le
* xft-text-render-utf8
* xft-text-render-utf16
== Examples
== License
BSD
== Version History
* 0.1 (February 9, 2013) initial release