blob: 558bcf8720b04c17d97994b035ad2b367718efa5 (
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
|
unit CairoFT;
{
This file is part of the Free Pascal libraries.
Copyright (c) 2003-2008 by the Free Pascal development team
Translation of cairo-ft.h
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
This program 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.
**********************************************************************
Based on:
Original translation of cairo-ft.h by Jeffrey Pohlmeyer
updated to version 1.4 by Luiz Américo Pereira Câmara 2007
As per original authors wish, this file is dual licensed LGPL-MPL see the original file
cairo.pp for the full license.
}
{$mode objfpc}
interface
uses
Cairo, freetypeh;
type
//todo: properly define FcPattern:
//It will require translate FontConfig header
(*
typedef struct _XftPattern {
int num;
int size;
XftPatternElt *elts;
} XftPattern;
typedef FcPattern XftPattern;
*)
FcPattern = Pointer;
PFcPattern = ^FcPattern;
function cairo_ft_font_face_create_for_pattern(pattern:PFcPattern):Pcairo_font_face_t; cdecl; external LIB_CAIRO;
procedure cairo_ft_font_options_substitute(options:Pcairo_font_options_t; pattern:PFcPattern); cdecl; external LIB_CAIRO;
function cairo_ft_font_face_create_for_ft_face(face:TFT_Face; load_flags:longint):Pcairo_font_face_t; cdecl; external LIB_CAIRO;
function cairo_ft_scaled_font_lock_face(scaled_font:Pcairo_scaled_font_t):TFT_Face; cdecl; external LIB_CAIRO;
procedure cairo_ft_scaled_font_unlock_face(scaled_font:Pcairo_scaled_font_t); cdecl; external LIB_CAIRO;
implementation
end.
|