summaryrefslogtreecommitdiff
path: root/Build/source/texk/lcdf-typetools/lcdf-typetools-src/include/efont/ttfhead.hh
blob: f5ab4cedff69b92af088ae0b353932b00d1ac432 (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
// -*- related-file-name: "../../libefont/ttfhead.cc" -*-
#ifndef EFONT_TTFHEAD_HH
#define EFONT_TTFHEAD_HH
#include <efont/otf.hh>
#include <efont/otfdata.hh>     // for ntohl()
#include <lcdf/error.hh>
namespace Efont { namespace OpenType {

class Head { public:

    Head(const String &, ErrorHandler * = 0);
    // default destructor

    bool ok() const                     { return _error >= 0; }
    int error() const                   { return _error; }

    unsigned units_per_em() const;
    unsigned index_to_loc_format() const;

  private:

    Data _d;
    int _error;

    int parse_header(ErrorHandler *);

};


inline unsigned Head::units_per_em() const
{
    return (_error >= 0 ? _d.u16(18) : 0);
}

inline unsigned Head::index_to_loc_format() const
{
    return (_error >= 0 ? _d.u16(50) : 0);
}

}}
#endif