Home | History | Annotate | Download | only in font
      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_FONT_CPDF_TYPE1FONT_H_
      8 #define CORE_FPDFAPI_FONT_CPDF_TYPE1FONT_H_
      9 
     10 #include "core/fpdfapi/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  private:
     26   // CPDF_Font:
     27   bool Load() override;
     28 
     29   // CPDF_SimpleFont:
     30   void LoadGlyphMap() override;
     31 
     32 #if _FXM_PLATFORM_ == _FXM_PLATFORM_APPLE_
     33   void SetExtGID(const FX_CHAR* name, int charcode);
     34   void CalcExtGID(int charcode);
     35 #endif
     36 
     37   int m_Base14Font;
     38 };
     39 
     40 #endif  // CORE_FPDFAPI_FONT_CPDF_TYPE1FONT_H_
     41