aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sfnt/SkIBMFamilyClass.h
blob: 190952b084310d3b9712017d1bf74dabd6b4e676 (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
/*
 * Copyright 2012 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef SkIBMFamilyClass_DEFINED
#define SkIBMFamilyClass_DEFINED

#include "SkOTTableTypes.h"

#pragma pack(push, 1)

struct SkIBMFamilyClass {
    enum Class : SK_OT_BYTE {
        NoClassification = 0,
        OldstyleSerifs = 1,
        TransitionalSerifs = 2,
        ModernSerifs = 3,
        ClarendonSerifs = 4,
        SlabSerifs = 5,
        //6 reserved for future use
        FreeformSerifs = 7,
        SansSerif = 8,
        Ornamentals = 9,
        Scripts = 10,
        //11 reserved for future use
        Symbolic = 12,
        //13-15 reserved for future use
    } familyClass;
    union SubClass {
        struct OldstyleSerifs {
            enum Value : SK_OT_BYTE {
                NoClassification = 0,
                IBMRoundedLegibility = 1,
                Garalde = 2,
                Venetian = 3,
                ModifiedVenetian = 4,
                DutchModern = 5,
                DutchTraditional = 6,
                Contemporary = 7,
                Calligraphic = 8,
                //9-14 reserved for future use
                Miscellaneous = 15,
            } value;
        } oldstyleSerifs;
        struct TransitionalSerifs {
            enum Value : SK_OT_BYTE {
                NoClassification = 0,
                DirectLine = 1,
                Script = 2,
                //3-14 reserved for future use
                Miscellaneous = 15,
            } value;
        } transitionalSerifs;
        struct ModernSerifs {
            enum Value : SK_OT_BYTE {
                NoClassification = 0,
                Italian = 1,
                Script = 2,
                //3-14 reserved for future use
                Miscellaneous = 15,
            } value;
        } modernSerifs;
        struct ClarendonSerifs {
            enum Value : SK_OT_BYTE {
                NoClassification = 0,
                Clarendon = 1,
                Modern = 2,
                Traditional = 3,
                Newspaper = 4,
                StubSerif = 5,
                Monotone = 6,
                Typewriter = 7,
                //8-14 reserved for future use
                Miscellaneous = 15,
            } value;
        } clarendonSerifs;
        struct SlabSerifs {
            enum Value : SK_OT_BYTE {
                NoClassification = 0,
                Monotone = 1,
                Humanist = 2,
                Geometric = 3,
                Swiss = 4,
                Typewriter = 5,
                //6-14 reserved for future use
                Miscellaneous = 15,
            } value;
        } slabSerifs;
        struct FreeformSerifs {
            enum Value : SK_OT_BYTE {
                NoClassification = 0,
                Modern = 1,
                //2-14 reserved for future use
                Miscellaneous = 15,
            } value;
        } freeformSerifs;
        struct SansSerif {
            enum Value : SK_OT_BYTE {
                NoClassification = 0,
                IBMNeoGrotesqueGothic = 1,
                Humanist = 2,
                LowXRoundGeometric = 3,
                HighXRoundGeometric = 4,
                NeoGrotesqueGothic = 5,
                ModifiedNeoGrotesqueGothic = 6,
                //7-8 reserved for future use
                TypewriterGothic = 9,
                Matrix = 10,
                //11-14 reserved for future use
                Miscellaneous = 15,
            } value;
        } sansSerif;
        struct Ornamentals {
            enum Value : SK_OT_BYTE {
                NoClassification = 0,
                Engraver = 1,
                BlackLetter = 2,
                Decorative = 3,
                ThreeDimensional = 4,
                //5-14 reserved for future use
                Miscellaneous = 15,
            } value;
        } ornamentals;
        struct Scripts {
            enum Value : SK_OT_BYTE {
                NoClassification = 0,
                Uncial = 1,
                Brush_Joined = 2,
                Formal_Joined = 3,
                Monotone_Joined = 4,
                Calligraphic = 5,
                Brush_Unjoined = 6,
                Formal_Unjoined = 7,
                Monotone_Unjoined = 8,
                //9-14 reserved for future use
                Miscellaneous = 15,
            } value;
        } scripts;
        struct Symbolic {
            enum Value : SK_OT_BYTE {
                NoClassification = 0,
                //1-2 reserved for future use
                MixedSerif = 3,
                //4-5 reserved for future use
                OldstyleSerif = 6,
                NeoGrotesqueSansSerif = 7,
                //8-14 reserved for future use
                Miscellaneous = 15,
            } value;
        } symbolic;
    } familySubClass;
};

#pragma pack(pop)


static_assert(sizeof(SkIBMFamilyClass) == 2, "sizeof_SkIBMFamilyClass_not_2");

#endif