| OLD | NEW |
| (Empty) |
| 1 // Copyright 2016 PDFium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | |
| 6 | |
| 7 #ifndef CORE_FPDFAPI_FPDF_FONT_CPDF_TYPE1FONT_H_ | |
| 8 #define CORE_FPDFAPI_FPDF_FONT_CPDF_TYPE1FONT_H_ | |
| 9 | |
| 10 #include "core/fpdfapi/fpdf_font/cpdf_simplefont.h" | |
| 11 #include "core/fxcrt/fx_system.h" | |
| 12 | |
| 13 class CPDF_Type1Font : public CPDF_SimpleFont { | |
| 14 public: | |
| 15 CPDF_Type1Font(); | |
| 16 | |
| 17 // CPDF_Font: | |
| 18 bool IsType1Font() const override; | |
| 19 const CPDF_Type1Font* AsType1Font() const override; | |
| 20 CPDF_Type1Font* AsType1Font() override; | |
| 21 int GlyphFromCharCodeExt(uint32_t charcode) override; | |
| 22 | |
| 23 int GetBase14Font() const { return m_Base14Font; } | |
| 24 | |
| 25 protected: | |
| 26 // CPDF_Font: | |
| 27 bool Load() override; | |
| 28 | |
| 29 // CPDF_SimpleFont: | |
| 30 void LoadGlyphMap() override; | |
| 31 | |
| 32 int m_Base14Font; | |
| 33 }; | |
| 34 | |
| 35 #endif // CORE_FPDFAPI_FPDF_FONT_CPDF_TYPE1FONT_H_ | |
| OLD | NEW |