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
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use objc2::__framework_prelude::*;
use objc2_foundation::*;

use crate::*;

pub type NSFontSymbolicTraits = u32;

// NS_OPTIONS
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct NSFontDescriptorSymbolicTraits(pub u32);
impl NSFontDescriptorSymbolicTraits {
    pub const NSFontDescriptorTraitItalic: Self = Self(1 << 0);
    pub const NSFontDescriptorTraitBold: Self = Self(1 << 1);
    pub const NSFontDescriptorTraitExpanded: Self = Self(1 << 5);
    pub const NSFontDescriptorTraitCondensed: Self = Self(1 << 6);
    pub const NSFontDescriptorTraitMonoSpace: Self = Self(1 << 10);
    pub const NSFontDescriptorTraitVertical: Self = Self(1 << 11);
    pub const NSFontDescriptorTraitUIOptimized: Self = Self(1 << 12);
    pub const NSFontDescriptorTraitTightLeading: Self = Self(1 << 15);
    pub const NSFontDescriptorTraitLooseLeading: Self = Self(1 << 16);
    pub const NSFontDescriptorTraitEmphasized: Self =
        Self(NSFontDescriptorSymbolicTraits::NSFontDescriptorTraitBold.0);
    pub const NSFontDescriptorClassMask: Self = Self(0xF0000000);
    pub const NSFontDescriptorClassUnknown: Self = Self(0 << 28);
    pub const NSFontDescriptorClassOldStyleSerifs: Self = Self(1 << 28);
    pub const NSFontDescriptorClassTransitionalSerifs: Self = Self(2 << 28);
    pub const NSFontDescriptorClassModernSerifs: Self = Self(3 << 28);
    pub const NSFontDescriptorClassClarendonSerifs: Self = Self(4 << 28);
    pub const NSFontDescriptorClassSlabSerifs: Self = Self(5 << 28);
    pub const NSFontDescriptorClassFreeformSerifs: Self = Self(7 << 28);
    pub const NSFontDescriptorClassSansSerif: Self = Self(8 << 28);
    pub const NSFontDescriptorClassOrnamentals: Self = Self(9 << 28);
    pub const NSFontDescriptorClassScripts: Self = Self(10 << 28);
    pub const NSFontDescriptorClassSymbolic: Self = Self(12 << 28);
}

unsafe impl Encode for NSFontDescriptorSymbolicTraits {
    const ENCODING: Encoding = u32::ENCODING;
}

unsafe impl RefEncode for NSFontDescriptorSymbolicTraits {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

// NS_TYPED_EXTENSIBLE_ENUM
pub type NSFontDescriptorAttributeName = NSString;

// NS_TYPED_ENUM
pub type NSFontDescriptorTraitKey = NSString;

// NS_TYPED_ENUM
pub type NSFontDescriptorVariationKey = NSString;

// NS_TYPED_EXTENSIBLE_ENUM
pub type NSFontDescriptorFeatureKey = NSString;

// NS_TYPED_EXTENSIBLE_ENUM
pub type NSFontWeight = CGFloat;

// NS_TYPED_EXTENSIBLE_ENUM
pub type NSFontWidth = CGFloat;

// NS_TYPED_ENUM
pub type NSFontDescriptorSystemDesign = NSString;

// NS_TYPED_ENUM
pub type NSFontTextStyle = NSString;

// NS_TYPED_ENUM
pub type NSFontTextStyleOptionKey = NSString;

extern_class!(
    #[derive(Debug, PartialEq, Eq, Hash)]
    pub struct NSFontDescriptor;

    unsafe impl ClassType for NSFontDescriptor {
        type Super = NSObject;
        type Mutability = InteriorMutable;
    }
);

unsafe impl NSCoding for NSFontDescriptor {}

unsafe impl NSCopying for NSFontDescriptor {}

unsafe impl NSObjectProtocol for NSFontDescriptor {}

unsafe impl NSSecureCoding for NSFontDescriptor {}

extern_methods!(
    unsafe impl NSFontDescriptor {
        #[method_id(@__retain_semantics Other postscriptName)]
        pub unsafe fn postscriptName(&self) -> Option<Id<NSString>>;

        #[method(pointSize)]
        pub unsafe fn pointSize(&self) -> CGFloat;

        #[method_id(@__retain_semantics Other matrix)]
        pub unsafe fn matrix(&self) -> Option<Id<NSAffineTransform>>;

        #[method(symbolicTraits)]
        pub unsafe fn symbolicTraits(&self) -> NSFontDescriptorSymbolicTraits;

        #[method(requiresFontAssetRequest)]
        pub unsafe fn requiresFontAssetRequest(&self) -> bool;

        #[method_id(@__retain_semantics Other objectForKey:)]
        pub unsafe fn objectForKey(
            &self,
            attribute: &NSFontDescriptorAttributeName,
        ) -> Option<Id<AnyObject>>;

        #[method_id(@__retain_semantics Other fontAttributes)]
        pub unsafe fn fontAttributes(
            &self,
        ) -> Id<NSDictionary<NSFontDescriptorAttributeName, AnyObject>>;

        #[method_id(@__retain_semantics Other fontDescriptorWithFontAttributes:)]
        pub unsafe fn fontDescriptorWithFontAttributes(
            attributes: Option<&NSDictionary<NSFontDescriptorAttributeName, AnyObject>>,
        ) -> Id<NSFontDescriptor>;

        #[method_id(@__retain_semantics Other fontDescriptorWithName:size:)]
        pub unsafe fn fontDescriptorWithName_size(
            font_name: &NSString,
            size: CGFloat,
        ) -> Id<NSFontDescriptor>;

        #[method_id(@__retain_semantics Other fontDescriptorWithName:matrix:)]
        pub unsafe fn fontDescriptorWithName_matrix(
            font_name: &NSString,
            matrix: &NSAffineTransform,
        ) -> Id<NSFontDescriptor>;

        #[method_id(@__retain_semantics Init initWithFontAttributes:)]
        pub unsafe fn initWithFontAttributes(
            this: Allocated<Self>,
            attributes: Option<&NSDictionary<NSFontDescriptorAttributeName, AnyObject>>,
        ) -> Id<Self>;

        #[method_id(@__retain_semantics Other matchingFontDescriptorsWithMandatoryKeys:)]
        pub unsafe fn matchingFontDescriptorsWithMandatoryKeys(
            &self,
            mandatory_keys: Option<&NSSet<NSFontDescriptorAttributeName>>,
        ) -> Id<NSArray<NSFontDescriptor>>;

        #[method_id(@__retain_semantics Other matchingFontDescriptorWithMandatoryKeys:)]
        pub unsafe fn matchingFontDescriptorWithMandatoryKeys(
            &self,
            mandatory_keys: Option<&NSSet<NSFontDescriptorAttributeName>>,
        ) -> Option<Id<NSFontDescriptor>>;

        #[method_id(@__retain_semantics Other fontDescriptorByAddingAttributes:)]
        pub unsafe fn fontDescriptorByAddingAttributes(
            &self,
            attributes: &NSDictionary<NSFontDescriptorAttributeName, AnyObject>,
        ) -> Id<NSFontDescriptor>;

        #[method_id(@__retain_semantics Other fontDescriptorWithSymbolicTraits:)]
        pub unsafe fn fontDescriptorWithSymbolicTraits(
            &self,
            symbolic_traits: NSFontDescriptorSymbolicTraits,
        ) -> Id<NSFontDescriptor>;

        #[method_id(@__retain_semantics Other fontDescriptorWithSize:)]
        pub unsafe fn fontDescriptorWithSize(
            &self,
            new_point_size: CGFloat,
        ) -> Id<NSFontDescriptor>;

        #[method_id(@__retain_semantics Other fontDescriptorWithMatrix:)]
        pub unsafe fn fontDescriptorWithMatrix(
            &self,
            matrix: &NSAffineTransform,
        ) -> Id<NSFontDescriptor>;

        #[method_id(@__retain_semantics Other fontDescriptorWithFace:)]
        pub unsafe fn fontDescriptorWithFace(&self, new_face: &NSString) -> Id<NSFontDescriptor>;

        #[method_id(@__retain_semantics Other fontDescriptorWithFamily:)]
        pub unsafe fn fontDescriptorWithFamily(
            &self,
            new_family: &NSString,
        ) -> Id<NSFontDescriptor>;

        #[method_id(@__retain_semantics Other fontDescriptorWithDesign:)]
        pub unsafe fn fontDescriptorWithDesign(
            &self,
            design: &NSFontDescriptorSystemDesign,
        ) -> Option<Id<Self>>;
    }
);

extern_methods!(
    /// Methods declared on superclass `NSObject`
    unsafe impl NSFontDescriptor {
        #[method_id(@__retain_semantics Init init)]
        pub unsafe fn init(this: Allocated<Self>) -> Id<Self>;

        #[method_id(@__retain_semantics New new)]
        pub unsafe fn new() -> Id<Self>;
    }
);

extern "C" {
    pub static NSFontFamilyAttribute: &'static NSFontDescriptorAttributeName;
}

extern "C" {
    pub static NSFontNameAttribute: &'static NSFontDescriptorAttributeName;
}

extern "C" {
    pub static NSFontFaceAttribute: &'static NSFontDescriptorAttributeName;
}

extern "C" {
    pub static NSFontSizeAttribute: &'static NSFontDescriptorAttributeName;
}

extern "C" {
    pub static NSFontVisibleNameAttribute: &'static NSFontDescriptorAttributeName;
}

extern "C" {
    pub static NSFontMatrixAttribute: &'static NSFontDescriptorAttributeName;
}

extern "C" {
    pub static NSFontVariationAttribute: &'static NSFontDescriptorAttributeName;
}

extern "C" {
    pub static NSFontCharacterSetAttribute: &'static NSFontDescriptorAttributeName;
}

extern "C" {
    pub static NSFontCascadeListAttribute: &'static NSFontDescriptorAttributeName;
}

extern "C" {
    pub static NSFontTraitsAttribute: &'static NSFontDescriptorAttributeName;
}

extern "C" {
    pub static NSFontFixedAdvanceAttribute: &'static NSFontDescriptorAttributeName;
}

extern "C" {
    pub static NSFontFeatureSettingsAttribute: &'static NSFontDescriptorAttributeName;
}

extern "C" {
    pub static NSFontSymbolicTrait: &'static NSFontDescriptorTraitKey;
}

extern "C" {
    pub static NSFontWeightTrait: &'static NSFontDescriptorTraitKey;
}

extern "C" {
    pub static NSFontWidthTrait: &'static NSFontDescriptorTraitKey;
}

extern "C" {
    pub static NSFontSlantTrait: &'static NSFontDescriptorTraitKey;
}

extern "C" {
    pub static NSFontVariationAxisIdentifierKey: &'static NSFontDescriptorVariationKey;
}

extern "C" {
    pub static NSFontVariationAxisMinimumValueKey: &'static NSFontDescriptorVariationKey;
}

extern "C" {
    pub static NSFontVariationAxisMaximumValueKey: &'static NSFontDescriptorVariationKey;
}

extern "C" {
    pub static NSFontVariationAxisDefaultValueKey: &'static NSFontDescriptorVariationKey;
}

extern "C" {
    pub static NSFontVariationAxisNameKey: &'static NSFontDescriptorVariationKey;
}

extern "C" {
    pub static NSFontFeatureTypeIdentifierKey: &'static NSFontDescriptorFeatureKey;
}

extern "C" {
    pub static NSFontFeatureSelectorIdentifierKey: &'static NSFontDescriptorFeatureKey;
}

extern "C" {
    pub static NSFontWeightUltraLight: NSFontWeight;
}

extern "C" {
    pub static NSFontWeightThin: NSFontWeight;
}

extern "C" {
    pub static NSFontWeightLight: NSFontWeight;
}

extern "C" {
    pub static NSFontWeightRegular: NSFontWeight;
}

extern "C" {
    pub static NSFontWeightMedium: NSFontWeight;
}

extern "C" {
    pub static NSFontWeightSemibold: NSFontWeight;
}

extern "C" {
    pub static NSFontWeightBold: NSFontWeight;
}

extern "C" {
    pub static NSFontWeightHeavy: NSFontWeight;
}

extern "C" {
    pub static NSFontWeightBlack: NSFontWeight;
}

extern "C" {
    pub static NSFontWidthCompressed: NSFontWidth;
}

extern "C" {
    pub static NSFontWidthCondensed: NSFontWidth;
}

extern "C" {
    pub static NSFontWidthStandard: NSFontWidth;
}

extern "C" {
    pub static NSFontWidthExpanded: NSFontWidth;
}

extern "C" {
    pub static NSFontDescriptorSystemDesignDefault: &'static NSFontDescriptorSystemDesign;
}

extern "C" {
    pub static NSFontDescriptorSystemDesignSerif: &'static NSFontDescriptorSystemDesign;
}

extern "C" {
    pub static NSFontDescriptorSystemDesignMonospaced: &'static NSFontDescriptorSystemDesign;
}

extern "C" {
    pub static NSFontDescriptorSystemDesignRounded: &'static NSFontDescriptorSystemDesign;
}

extern "C" {
    pub static NSFontTextStyleLargeTitle: &'static NSFontTextStyle;
}

extern "C" {
    pub static NSFontTextStyleTitle1: &'static NSFontTextStyle;
}

extern "C" {
    pub static NSFontTextStyleTitle2: &'static NSFontTextStyle;
}

extern "C" {
    pub static NSFontTextStyleTitle3: &'static NSFontTextStyle;
}

extern "C" {
    pub static NSFontTextStyleHeadline: &'static NSFontTextStyle;
}

extern "C" {
    pub static NSFontTextStyleSubheadline: &'static NSFontTextStyle;
}

extern "C" {
    pub static NSFontTextStyleBody: &'static NSFontTextStyle;
}

extern "C" {
    pub static NSFontTextStyleCallout: &'static NSFontTextStyle;
}

extern "C" {
    pub static NSFontTextStyleFootnote: &'static NSFontTextStyle;
}

extern "C" {
    pub static NSFontTextStyleCaption1: &'static NSFontTextStyle;
}

extern "C" {
    pub static NSFontTextStyleCaption2: &'static NSFontTextStyle;
}

pub type NSFontFamilyClass = u32;

pub const NSFontUnknownClass: c_int = 0 << 28;
pub const NSFontOldStyleSerifsClass: c_int = 1 << 28;
pub const NSFontTransitionalSerifsClass: c_int = 2 << 28;
pub const NSFontModernSerifsClass: c_int = 3 << 28;
pub const NSFontClarendonSerifsClass: c_int = 4 << 28;
pub const NSFontSlabSerifsClass: c_int = 5 << 28;
pub const NSFontFreeformSerifsClass: c_int = 7 << 28;
pub const NSFontSansSerifClass: c_int = 8 << 28;
pub const NSFontOrnamentalsClass: c_int = 9 << 28;
pub const NSFontScriptsClass: c_int = 10 << 28;
pub const NSFontSymbolicClass: c_int = 12 << 28;

pub const NSFontFamilyClassMask: c_uint = 0xF0000000;

pub const NSFontItalicTrait: c_uint = 1 << 0;
pub const NSFontBoldTrait: c_uint = 1 << 1;
pub const NSFontExpandedTrait: c_uint = 1 << 5;
pub const NSFontCondensedTrait: c_uint = 1 << 6;
pub const NSFontMonoSpaceTrait: c_uint = 1 << 10;
pub const NSFontVerticalTrait: c_uint = 1 << 11;
pub const NSFontUIOptimizedTrait: c_uint = 1 << 12;

extern "C" {
    pub static NSFontColorAttribute: &'static NSString;
}

extern_methods!(
    /// NSFontDescriptor_TextStyles
    unsafe impl NSFontDescriptor {
        #[method_id(@__retain_semantics Other preferredFontDescriptorForTextStyle:options:)]
        pub unsafe fn preferredFontDescriptorForTextStyle_options(
            style: &NSFontTextStyle,
            options: &NSDictionary<NSFontTextStyleOptionKey, AnyObject>,
        ) -> Id<NSFontDescriptor>;
    }
);