Layout.h revision ecc2d34ac23a497988f21e5f415b53c007b9d8c5
1/*
2 * Copyright (C) 2013 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef MINIKIN_LAYOUT_H
18#define MINIKIN_LAYOUT_H
19
20#include <hb.h>
21
22#include <vector>
23
24#include <minikin/CssParse.h>
25#include <minikin/FontCollection.h>
26#include <minikin/MinikinFontFreeType.h>
27
28namespace android {
29
30// The Bitmap class is for debugging. We'll probably move it out
31// of here into a separate lightweight software rendering module
32// (optional, as we'd hope most clients would do their own)
33class Bitmap {
34public:
35    Bitmap(int width, int height);
36    ~Bitmap();
37    void writePnm(std::ofstream& o) const;
38    void drawGlyph(const GlyphBitmap& bitmap, int x, int y);
39private:
40    int width;
41    int height;
42    uint8_t* buf;
43};
44
45struct LayoutGlyph {
46    // index into mFaces and mHbFonts vectors. We could imagine
47    // moving this into a run length representation, because it's
48    // more efficient for long strings, and we'll probably need
49    // something like that for paint attributes (color, underline,
50    // fake b/i, etc), as having those per-glyph is bloated.
51    int font_ix;
52
53    unsigned int glyph_id;
54    float x;
55    float y;
56};
57
58class Layout {
59public:
60
61    void dump() const;
62    void setFontCollection(const FontCollection* collection);
63    void doLayout(const uint16_t* buf, size_t nchars);
64    void draw(Bitmap*, int x0, int y0) const;
65    void setProperties(const std::string css);
66
67    // This must be called before any invocations.
68	// TODO: probably have a factory instead
69    static void init();
70
71    // public accessors
72    size_t nGlyphs() const;
73    // Does not bump reference; ownership is still layout
74    MinikinFont *getFont(int i) const;
75    unsigned int getGlyphId(int i) const;
76    float getX(int i) const;
77    float getY(int i) const;
78
79    float getAdvance() const;
80
81    // Get advances, copying into caller-provided buffer. The size of this
82    // buffer must match the length of the string (nchars arg to doLayout).
83    void getAdvances(float* advances);
84
85    void getBounds(MinikinRect* rect);
86
87private:
88    // Find a face in the mFaces vector, or create a new entry
89    int findFace(MinikinFont* face, MinikinPaint* paint);
90
91    CssProperties mProps;  // TODO: want spans
92    std::vector<LayoutGlyph> mGlyphs;
93    std::vector<float> mAdvances;
94
95    // In future, this will be some kind of mapping from the
96    // identifier used to represent font-family to a font collection.
97    // But for the time being, it should be ok to have just one
98    // per layout.
99    const FontCollection* mCollection;
100    std::vector<MinikinFont *> mFaces;
101    std::vector<hb_font_t *> mHbFonts;
102    float mAdvance;
103    MinikinRect mBounds;
104};
105
106}  // namespace android
107
108#endif  // MINIKIN_LAYOUT_H
109