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
|
/*
File: FontSync.h
Contains: Public interface for FontSync
Version: QuickTime 7.3
Copyright: (c) 2007 (c) 1999-2001 by Apple Computer, Inc., all rights reserved.
Bugs?: For bug reports, consult the following page on
the World Wide Web:
http://developer.apple.com/bugreporter/
*/
#ifndef __MACTYPES__
#include <MacTypes.h>
#endif
#ifndef __FILES__
#include <Files.h>
#endif
#ifndef __MACERRORS__
#include <MacErrors.h>
#endif
#ifndef __FONTS__
#include <Fonts.h>
#endif
#ifndef __SFNTTYPES__
#include <SFNTTypes.h>
#endif
#if PRAGMA_ONCE
#pragma once
#endif
#ifdef __cplusplus
extern "C" {
#endif
#if PRAGMA_IMPORT
#pragma import on
#endif
#if PRAGMA_STRUCT_ALIGN
#pragma options align=power
#elif PRAGMA_STRUCT_PACKPUSH
#pragma pack(push, 2)
#elif PRAGMA_STRUCT_PACK
#pragma pack(2)
#endif
/* Matching Options */
typedef UInt32 FNSMatchOptions;
enum {
kFNSMatchNames = 0x00000001, /* font names must match */
kFNSMatchTechnology = 0x00000002, /* scaler technology must match */
kFNSMatchGlyphs = 0x00000004, /* glyph data must match */
kFNSMatchEncodings = 0x00000008, /* cmaps must match */
kFNSMatchQDMetrics = 0x00000010, /* QuickDraw Text metrics must match */
kFNSMatchATSUMetrics = 0x00000020, /* ATSUI metrics (incl. vertical) must match */
kFNSMatchKerning = 0x00000040, /* kerning data must match */
kFNSMatchWSLayout = 0x00000080, /* WorldScript layout tables must match */
kFNSMatchAATLayout = 0x00000100, /* AAT (incl. OpenType) layout tables must match */
kFNSMatchPrintEncoding = 0x00000200, /* PostScript font and glyph names and re-encoding vector must match */
kFNSMissingDataNoMatch = (unsigned long)0x80000000, /* treat missing data as mismatch */
kFNSMatchAll = (unsigned long)0xFFFFFFFF, /* everything must match */
kFNSMatchDefaults = 0 /* use global default match options */
};
/*
* FNSMatchDefaultsGet()
*
* Availability:
* Non-Carbon CFM: in FontSyncLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( FNSMatchOptions )
FNSMatchDefaultsGet(void);
/* Version control */
typedef UInt32 FNSObjectVersion;
enum {
kFNSVersionDontCare = 0,
kFNSCurSysInfoVersion = 1
};
/* No features defined yet.*/
typedef UInt32 FNSFeatureFlags;
/*
The FontSync library version number is binary-coded decimal:
8 bits of major version, 4 minor version and 4 bits revision.
*/
struct FNSSysInfo {
FNSObjectVersion iSysInfoVersion; /* fill this in before calling FNSSysInfoGet*/
FNSFeatureFlags oFeatures;
FNSObjectVersion oCurRefVersion;
FNSObjectVersion oMinRefVersion;
FNSObjectVersion oCurProfileVersion;
FNSObjectVersion oMinProfileVersion;
UInt16 oFontSyncVersion;
};
typedef struct FNSSysInfo FNSSysInfo;
/*
* FNSSysInfoGet()
*
* Availability:
* Non-Carbon CFM: in FontSyncLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( void )
FNSSysInfoGet(FNSSysInfo * ioInfo);
/* FontSync References */
typedef struct OpaqueFNSFontReference* FNSFontReference;
/*
* FNSReferenceGetVersion()
*
* Availability:
* Non-Carbon CFM: in FontSyncLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( OSStatus )
FNSReferenceGetVersion(
FNSFontReference iReference,
FNSObjectVersion * oVersion);
/*
* FNSReferenceDispose()
*
* Availability:
* Non-Carbon CFM: in FontSyncLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( OSStatus )
FNSReferenceDispose(FNSFontReference iReference);
/*
* FNSReferenceMatch()
*
* Availability:
* Non-Carbon CFM: in FontSyncLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( OSStatus )
FNSReferenceMatch(
FNSFontReference iReference1,
FNSFontReference iReference2,
FNSMatchOptions iOptions,
FNSMatchOptions * oFailedMatchOptions); /* can be NULL */
/*
* FNSReferenceFlattenedSize()
*
* Availability:
* Non-Carbon CFM: in FontSyncLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( OSStatus )
FNSReferenceFlattenedSize(
FNSFontReference iReference,
ByteCount * oFlattenedSize);
/*
* FNSReferenceFlatten()
*
* Availability:
* Non-Carbon CFM: in FontSyncLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( OSStatus )
FNSReferenceFlatten(
FNSFontReference iReference,
void * oFlatReference, /* can be NULL */
ByteCount * oFlattenedSize); /* can be NULL */
/*
* FNSReferenceUnflatten()
*
* Availability:
* Non-Carbon CFM: in FontSyncLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( OSStatus )
FNSReferenceUnflatten(
const void * iFlatReference,
ByteCount iFlattenedSize,
FNSFontReference * oReference);
/* FontSync Profiles */
enum {
kFNSCreatorDefault = 0,
kFNSProfileFileType = FOUR_CHAR_CODE('fnsp')
};
typedef struct OpaqueFNSFontProfile* FNSFontProfile;
/*
* FNSProfileCreate()
*
* Availability:
* Non-Carbon CFM: in FontSyncLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( OSStatus )
FNSProfileCreate(
const FSSpec * iFile,
FourCharCode iCreator,
ItemCount iEstNumRefs,
FNSObjectVersion iDesiredVersion,
FNSFontProfile * oProfile);
/*
* FNSProfileOpen()
*
* Availability:
* Non-Carbon CFM: in FontSyncLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( OSStatus )
FNSProfileOpen(
const FSSpec * iFile,
Boolean iOpenForWrite,
FNSFontProfile * oProfile);
/*
* FNSProfileCreateWithFSRef()
*
* Availability:
* Non-Carbon CFM: not available
* CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.1 and later
* Mac OS X: in version 10.1 and later
*/
EXTERN_API_C( OSStatus )
FNSProfileCreateWithFSRef(
const FSRef * iParentDirectory,
UniCharCount iNameLength,
const UniChar * iName,
FourCharCode iCreator,
ItemCount iEstNumRefs,
FNSObjectVersion iDesiredVersion,
FNSFontProfile * oProfile);
/*
* FNSProfileOpenWithFSRef()
*
* Availability:
* Non-Carbon CFM: not available
* CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.1 and later
* Mac OS X: in version 10.1 and later
*/
EXTERN_API_C( OSStatus )
FNSProfileOpenWithFSRef(
const FSRef * iFile,
Boolean iOpenForWrite,
FNSFontProfile * oProfile);
/*
* FNSProfileGetVersion()
*
* Availability:
* Non-Carbon CFM: in FontSyncLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( OSStatus )
FNSProfileGetVersion(
FNSFontProfile iProfile,
FNSObjectVersion * oVersion);
/*
* FNSProfileCompact()
*
* Availability:
* Non-Carbon CFM: in FontSyncLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( OSStatus )
FNSProfileCompact(FNSFontProfile iProfile);
/*
* FNSProfileClose()
*
* Availability:
* Non-Carbon CFM: in FontSyncLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( OSStatus )
FNSProfileClose(FNSFontProfile iProfile);
/*
* FNSProfileAddReference()
*
* Availability:
* Non-Carbon CFM: in FontSyncLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( OSStatus )
FNSProfileAddReference(
FNSFontProfile iProfile,
FNSFontReference iReference);
/*
* FNSProfileRemoveReference()
*
* Availability:
* Non-Carbon CFM: in FontSyncLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( OSStatus )
FNSProfileRemoveReference(
FNSFontProfile iProfile,
FNSFontReference iReference);
/*
* FNSProfileRemoveIndReference()
*
* Availability:
* Non-Carbon CFM: in FontSyncLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( OSStatus )
FNSProfileRemoveIndReference(
FNSFontProfile iProfile,
UInt32 iIndex);
/*
* FNSProfileClear()
*
* Availability:
* Non-Carbon CFM: in FontSyncLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( OSStatus )
FNSProfileClear(FNSFontProfile iProfile);
/*
* FNSProfileCountReferences()
*
* Availability:
* Non-Carbon CFM: in FontSyncLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( OSStatus )
FNSProfileCountReferences(
FNSFontProfile iProfile,
ItemCount * oCount);
/*
* FNSProfileGetIndReference()
*
* Availability:
* Non-Carbon CFM: in FontSyncLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( OSStatus )
FNSProfileGetIndReference(
FNSFontProfile iProfile,
UInt32 iWhichReference,
FNSFontReference * oReference);
/*
* FNSProfileMatchReference()
*
* Availability:
* Non-Carbon CFM: in FontSyncLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( OSStatus )
FNSProfileMatchReference(
FNSFontProfile iProfile,
FNSFontReference iReference,
FNSMatchOptions iMatchOptions,
ItemCount iOutputSize,
UInt32 oIndices[], /* can be NULL */
ItemCount * oNumMatches); /* can be NULL */
/* Mapping to and from Font Objects */
/*
* FNSReferenceCreate()
*
* Availability:
* Non-Carbon CFM: in FontSyncLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( OSStatus )
FNSReferenceCreate(
FMFont iFont,
FNSObjectVersion iDesiredVersion,
FNSFontReference * oReference);
/*
* FNSReferenceMatchFonts()
*
* Availability:
* Non-Carbon CFM: in FontSyncLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( OSStatus )
FNSReferenceMatchFonts(
FNSFontReference iReference,
FNSMatchOptions iMatchOptions,
ItemCount iOutputSize,
FMFont oFonts[], /* can be NULL */
ItemCount * oNumMatches); /* can be NULL */
/* Mapping to and from Font Families */
/*
* FNSReferenceCreateFromFamily()
*
* Availability:
* Non-Carbon CFM: in FontSyncLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( OSStatus )
FNSReferenceCreateFromFamily(
FMFontFamily iFamily,
FMFontStyle iStyle,
FNSObjectVersion iDesiredVersion,
FNSFontReference * oReference, /* can be NULL */
FMFontStyle * oActualStyle); /* can be NULL */
/*
* FNSReferenceMatchFamilies()
*
* Availability:
* Non-Carbon CFM: in FontSyncLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( OSStatus )
FNSReferenceMatchFamilies(
FNSFontReference iReference,
FNSMatchOptions iMatchOptions,
ItemCount iOutputSize,
FMFontFamilyInstance oFonts[], /* can be NULL */
ItemCount * oNumMatches); /* can be NULL */
/* UI Support */
/*
* FNSReferenceGetFamilyInfo()
*
* Availability:
* Non-Carbon CFM: in FontSyncLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( OSStatus )
FNSReferenceGetFamilyInfo(
FNSFontReference iReference,
Str255 oFamilyName, /* can be NULL */
ScriptCode * oFamilyNameScript, /* can be NULL */
FMFontStyle * oActualStyle); /* can be NULL */
/*
* FNSReferenceCountNames()
*
* Availability:
* Non-Carbon CFM: in FontSyncLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( OSStatus )
FNSReferenceCountNames(
FNSFontReference iReference,
ItemCount * oNameCount);
/*
* FNSReferenceGetIndName()
*
* Availability:
* Non-Carbon CFM: in FontSyncLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( OSStatus )
FNSReferenceGetIndName(
FNSFontReference iReference,
ItemCount iFontNameIndex,
ByteCount iMaximumNameLength,
Ptr oName, /* can be NULL */
ByteCount * oActualNameLength, /* can be NULL */
FontNameCode * oFontNameCode, /* can be NULL */
FontPlatformCode * oFontNamePlatform, /* can be NULL */
FontScriptCode * oFontNameScript, /* can be NULL */
FontLanguageCode * oFontNameLanguage); /* can be NULL */
/*
* FNSReferenceFindName()
*
* Availability:
* Non-Carbon CFM: in FontSyncLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( OSStatus )
FNSReferenceFindName(
FNSFontReference iReference,
FontNameCode iFontNameCode,
FontPlatformCode iFontNamePlatform,
FontScriptCode iFontNameScript,
FontLanguageCode iFontNameLanguage,
ByteCount iMaximumNameLength,
Ptr oName, /* can be NULL */
ByteCount * oActualNameLength, /* can be NULL */
ItemCount * oFontNameIndex); /* can be NULL */
/* Miscellany */
/*
* FNSEnabled()
*
* Availability:
* Non-Carbon CFM: in FontSyncLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( Boolean )
FNSEnabled(void);
#if PRAGMA_STRUCT_ALIGN
#pragma options align=reset
#elif PRAGMA_STRUCT_PACKPUSH
#pragma pack(pop)
#elif PRAGMA_STRUCT_PACK
#pragma pack()
#endif
#ifdef PRAGMA_IMPORT_OFF
#pragma import off
#elif PRAGMA_IMPORT
#pragma import reset
#endif
#ifdef __cplusplus
}
#endif
|