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

#include "SkFontConfigInterface.h"
#include "SkFontHost_FreeType_common.h"
#include "SkStream.h"
#include "SkTypefaceCache.h"

class SkFontDescriptor;

class SkTypeface_FCI : public SkTypeface_FreeType {
    SkAutoTUnref<SkFontConfigInterface> fFCI;
    SkFontConfigInterface::FontIdentity fIdentity;
    SkString fFamilyName;
    SkAutoTDelete<SkStreamAsset> fLocalStream;

public:
    static SkTypeface_FCI* Create(SkFontConfigInterface* fci,
                                  const SkFontConfigInterface::FontIdentity& fi,
                                  const SkString& familyName,
                                  const SkFontStyle& style)
    {
        return new SkTypeface_FCI(fci, fi, familyName, style);
    }

    static SkTypeface_FCI* Create(const SkFontStyle& style, bool fixedWidth,
                                  SkStreamAsset* localStream, int index)
    {
        return new SkTypeface_FCI(style, fixedWidth, localStream, index);
    }

    const SkFontConfigInterface::FontIdentity& getIdentity() const {
        return fIdentity;
    }

    SkStreamAsset* getLocalStream() const {
        return fLocalStream.get();
    }

    bool isFamilyName(const char* name) const {
        return fFamilyName.equals(name);
    }

protected:
    SkTypeface_FCI(SkFontConfigInterface* fci,
                   const SkFontConfigInterface::FontIdentity& fi,
                   const SkString& familyName,
                   const SkFontStyle& style)
            : INHERITED(style, false)
            , fFCI(SkRef(fci))
            , fIdentity(fi)
            , fFamilyName(familyName)
            , fLocalStream(nullptr) {}

    SkTypeface_FCI(const SkFontStyle& style, bool fixedWidth, SkStreamAsset* localStream, int index)
            : INHERITED(style, fixedWidth)
            , fLocalStream(localStream)
    {
        fIdentity.fTTCIndex = index;
    }

    void onGetFamilyName(SkString* familyName) const override { *familyName = fFamilyName; }
    void onGetFontDescriptor(SkFontDescriptor*, bool*) const override;
    SkStreamAsset* onOpenStream(int* ttcIndex) const override;

private:
    typedef SkTypeface_FreeType INHERITED;
};