OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 14 matching lines...) Expand all Loading... |
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #ifndef HarfBuzzShaper_h | 31 #ifndef HarfBuzzShaper_h |
32 #define HarfBuzzShaper_h | 32 #define HarfBuzzShaper_h |
33 | 33 |
34 #include "hb.h" | 34 #include "hb.h" |
35 #include "platform/fonts/GlyphBuffer.h" | |
36 #include "platform/geometry/FloatBoxExtent.h" | 35 #include "platform/geometry/FloatBoxExtent.h" |
37 #include "platform/geometry/FloatPoint.h" | 36 #include "platform/geometry/FloatPoint.h" |
38 #include "platform/text/TextRun.h" | 37 #include "platform/text/TextRun.h" |
39 #include "wtf/HashSet.h" | 38 #include "wtf/HashSet.h" |
40 #include "wtf/OwnPtr.h" | 39 #include "wtf/OwnPtr.h" |
41 #include "wtf/PassOwnPtr.h" | 40 #include "wtf/PassOwnPtr.h" |
42 #include "wtf/unicode/CharacterNames.h" | 41 #include "wtf/unicode/CharacterNames.h" |
43 #include "wtf/Vector.h" | 42 #include "wtf/Vector.h" |
44 | 43 |
45 #include <unicode/uscript.h> | 44 #include <unicode/uscript.h> |
46 | 45 |
47 namespace WebCore { | 46 namespace WebCore { |
48 | 47 |
49 class Font; | 48 class Font; |
| 49 class GlyphBuffer; |
50 class SimpleFontData; | 50 class SimpleFontData; |
| 51 |
51 class HarfBuzzShaper FINAL { | 52 class HarfBuzzShaper FINAL { |
52 public: | 53 public: |
53 enum ForTextEmphasisOrNot { | 54 enum ForTextEmphasisOrNot { |
54 NotForTextEmphasis, | 55 NotForTextEmphasis, |
55 ForTextEmphasis | 56 ForTextEmphasis |
56 }; | 57 }; |
57 | 58 |
58 HarfBuzzShaper(const Font*, const TextRun&, ForTextEmphasisOrNot = NotForTex
tEmphasis); | 59 HarfBuzzShaper(const Font*, const TextRun&, ForTextEmphasisOrNot = NotForTex
tEmphasis); |
59 | 60 |
60 void setDrawRange(int from, int to); | 61 void setDrawRange(int from, int to); |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 | 162 |
162 float m_totalWidth; | 163 float m_totalWidth; |
163 FloatBoxExtent m_glyphBoundingBox; | 164 FloatBoxExtent m_glyphBoundingBox; |
164 | 165 |
165 friend struct CachedShapingResults; | 166 friend struct CachedShapingResults; |
166 }; | 167 }; |
167 | 168 |
168 } // namespace WebCore | 169 } // namespace WebCore |
169 | 170 |
170 #endif // HarfBuzzShaper_h | 171 #endif // HarfBuzzShaper_h |
OLD | NEW |