From 5110c4743751145c4ae1934cd1d83bc6c55bb43f Mon Sep 17 00:00:00 2001 From: John Abd-El-Malek Date: Sat, 17 May 2014 22:33:34 -0700 Subject: Initial commit. --- fpdfsdk/include/formfiller/FFL_CBA_Fontmap.h | 51 ++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 fpdfsdk/include/formfiller/FFL_CBA_Fontmap.h (limited to 'fpdfsdk/include/formfiller/FFL_CBA_Fontmap.h') diff --git a/fpdfsdk/include/formfiller/FFL_CBA_Fontmap.h b/fpdfsdk/include/formfiller/FFL_CBA_Fontmap.h new file mode 100644 index 0000000000..7624596788 --- /dev/null +++ b/fpdfsdk/include/formfiller/FFL_CBA_Fontmap.h @@ -0,0 +1,51 @@ +// Copyright 2014 PDFium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com + +#ifndef _RAO_FONTMAP_H_ +#define _RAO_FONTMAP_H_ + +#if _MSC_VER > 1000 +#pragma once +#endif // _MSC_VER > 1000 + +class CPDFSDK_Annot; + +class CBA_FontMap : public CPWL_FontMap +{ +public: + CBA_FontMap(CPDFSDK_Annot* pAnnot, IFX_SystemHandler* pSystemHandler); + CBA_FontMap(CPDF_Document* pDocument, CPDF_Dictionary* pAnnotDict, IFX_SystemHandler* pSystemHandler); + + virtual ~CBA_FontMap(); + + virtual void Initial(FX_LPCSTR fontname = NULL); + +public: + void SetDefaultFont(CPDF_Font * pFont, const CFX_ByteString & sFontName); + + void Reset(); + void SetAPType(const CFX_ByteString& sAPType); + +protected: + virtual CPDF_Font* FindFontSameCharset(CFX_ByteString& sFontAlias, FX_INT32 nCharset); + virtual void AddedFont(CPDF_Font* pFont, const CFX_ByteString& sFontAlias); + virtual CPDF_Document* GetDocument(); +private: + CPDF_Font* FindResFontSameCharset(CPDF_Dictionary* pResDict, CFX_ByteString& sFontAlias, + FX_INT32 nCharset); + CPDF_Font* GetAnnotDefaultFont(CFX_ByteString &csNameTag); + void AddFontToAnnotDict(CPDF_Font* pFont, const CFX_ByteString& sAlias); + +private: + CPDF_Document* m_pDocument; + CPDF_Dictionary* m_pAnnotDict; + CPDF_Font* m_pDefaultFont; + CFX_ByteString m_sDefaultFontName; + + CFX_ByteString m_sAPType; +}; + +#endif // _RAO_FONTMAP_H_ -- cgit v1.2.3