OLD | NEW |
1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
6 | 6 |
7 #ifndef TTGSUBTable_H | 7 #ifndef TTGSUBTable_H |
8 #define TTGSUBTable_H | 8 #define TTGSUBTable_H |
9 #include "../../../include/fxge/fx_freetype.h" | 9 #include "../../../include/fxge/fx_freetype.h" |
10 #include "../../../include/fxcrt/fx_basic.h" | 10 #include "../../../include/fxcrt/fx_basic.h" |
11 #include "common.h" | 11 #include "common.h" |
12 class CFX_GlyphMap | 12 class CFX_GlyphMap |
13 { | 13 { |
14 public: | 14 public: |
15 CFX_GlyphMap(); | 15 CFX_GlyphMap(); |
16 ~CFX_GlyphMap(); | 16 ~CFX_GlyphMap(); |
17 void SetAt(int key, int value); | 17 void SetAt(int key, int value); |
18 FX_BOOL Lookup(int key, int &value); | 18 FX_BOOL Lookup(int key, int &value); |
19 protected: | 19 protected: |
20 CFX_BinaryBuf m_Buffer; | 20 CFX_BinaryBuf m_Buffer; |
21 }; | 21 }; |
22 class CFX_CTTGSUBTable : public CFX_Object | 22 class CFX_CTTGSUBTable |
23 { | 23 { |
24 public: | 24 public: |
25 CFX_CTTGSUBTable(void): m_bFeautureMapLoad(FALSE), loaded(false) {}; | 25 CFX_CTTGSUBTable(void): m_bFeautureMapLoad(FALSE), loaded(false) {}; |
26 CFX_CTTGSUBTable(FT_Bytes gsub): m_bFeautureMapLoad(FALSE), loaded(false) | 26 CFX_CTTGSUBTable(FT_Bytes gsub): m_bFeautureMapLoad(FALSE), loaded(false) |
27 { | 27 { |
28 LoadGSUBTable(gsub); | 28 LoadGSUBTable(gsub); |
29 } | 29 } |
30 virtual ~CFX_CTTGSUBTable() {} | 30 virtual ~CFX_CTTGSUBTable() {} |
31 bool IsOk(void) const | 31 bool IsOk(void) const |
32 { | 32 { |
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
399 return ret; | 399 return ret; |
400 } | 400 } |
401 CFX_CMapDWordToDWord m_featureMap; | 401 CFX_CMapDWordToDWord m_featureMap; |
402 FX_BOOL m_bFeautureMapLoad; | 402 FX_BOOL m_bFeautureMapLoad; |
403 bool loaded; | 403 bool loaded; |
404 struct tt_gsub_header header; | 404 struct tt_gsub_header header; |
405 struct TScriptList ScriptList; | 405 struct TScriptList ScriptList; |
406 struct TFeatureList FeatureList; | 406 struct TFeatureList FeatureList; |
407 struct TLookupList LookupList; | 407 struct TLookupList LookupList; |
408 }; | 408 }; |
409 class CFX_GSUBTable FX_FINAL : public IFX_GSUBTable, public CFX_Object | 409 class CFX_GSUBTable FX_FINAL : public IFX_GSUBTable |
410 { | 410 { |
411 public: | 411 public: |
412 virtual void Release() FX_OVERRIDE | 412 virtual void Release() FX_OVERRIDE |
413 { | 413 { |
414 delete this; | 414 delete this; |
415 } | 415 } |
416 virtual FX_BOOL GetVerticalGlyph(FX_DWORD glyphnum, FX_DWORD* vglyphnum) FX_
OVERRIDE; | 416 virtual FX_BOOL GetVerticalGlyph(FX_DWORD glyphnum, FX_DWORD* vglyphnum) FX_
OVERRIDE; |
417 | 417 |
418 CFX_CTTGSUBTable m_GsubImp; | 418 CFX_CTTGSUBTable m_GsubImp; |
419 | 419 |
420 private: | 420 private: |
421 ~CFX_GSUBTable() { } | 421 ~CFX_GSUBTable() { } |
422 }; | 422 }; |
423 #endif | 423 #endif |
424 | 424 |
OLD | NEW |