diff options
author | dsinclair <dsinclair@chromium.org> | 2016-03-31 20:03:08 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-03-31 20:03:08 -0700 |
commit | 777b333109db7fceb5f2ca1fc521ced7f863fa18 (patch) | |
tree | f5968b42f43c90bc20af39a845718877cf80e064 /core/fpdfdoc/cpvt_generateap.h | |
parent | 47ca692c8150cb39abef5737e866b91e6a105b80 (diff) | |
download | pdfium-777b333109db7fceb5f2ca1fc521ced7f863fa18.tar.xz |
Split core/include/fpdfdoc/fpdf_ap.h
This CL splits the fpdf_ap.h file apart into individual pieces and moves the
implementations to their own CPP files.
Review URL: https://codereview.chromium.org/1840413002
Diffstat (limited to 'core/fpdfdoc/cpvt_generateap.h')
-rw-r--r-- | core/fpdfdoc/cpvt_generateap.h | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/core/fpdfdoc/cpvt_generateap.h b/core/fpdfdoc/cpvt_generateap.h new file mode 100644 index 0000000000..b97b38ad6b --- /dev/null +++ b/core/fpdfdoc/cpvt_generateap.h @@ -0,0 +1,66 @@ +// Copyright 2016 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 CORE_FPDFDOC_CPVT_GENERATEAP_H_ +#define CORE_FPDFDOC_CPVT_GENERATEAP_H_ + +#include "core/fpdfdoc/cpvt_color.h" +#include "core/fpdfdoc/cpvt_dash.h" +#include "core/fxcrt/include/fx_coordinates.h" +#include "core/fxcrt/include/fx_string.h" +#include "core/fxcrt/include/fx_system.h" + +// border style +#define PBS_SOLID 0 +#define PBS_DASH 1 +#define PBS_BEVELED 2 +#define PBS_INSET 3 +#define PBS_UNDERLINED 4 +#define PBS_SHADOW 5 + +class CPDF_Dictionary; +class CPDF_Document; +class IPDF_VariableText_Iterator; +class IPVT_FontMap; +struct CPVT_WordRange; + +FX_BOOL FPDF_GenerateAP(CPDF_Document* pDoc, CPDF_Dictionary* pAnnotDict); + +class CPVT_GenerateAP { + public: + static FX_BOOL GenerateTextFieldAP(CPDF_Document* pDoc, + CPDF_Dictionary* pAnnotDict); + static FX_BOOL GenerateComboBoxAP(CPDF_Document* pDoc, + CPDF_Dictionary* pAnnotDict); + static FX_BOOL GenerateListBoxAP(CPDF_Document* pDoc, + CPDF_Dictionary* pAnnotDict); + static CFX_ByteString GenerateEditAP(IPVT_FontMap* pFontMap, + IPDF_VariableText_Iterator* pIterator, + const CFX_FloatPoint& ptOffset, + FX_BOOL bContinuous, + uint16_t SubWord = 0, + const CPVT_WordRange* pVisible = NULL); + static CFX_ByteString GenerateBorderAP(const CFX_FloatRect& rect, + FX_FLOAT fWidth, + const CPVT_Color& color, + const CPVT_Color& crLeftTop, + const CPVT_Color& crRightBottom, + int32_t nStyle, + const CPVT_Dash& dash); + static CFX_ByteString GenerateColorAP(const CPVT_Color& color, + const FX_BOOL& bFillOrStroke); + + static CFX_ByteString GetPDFWordString(IPVT_FontMap* pFontMap, + int32_t nFontIndex, + uint16_t Word, + uint16_t SubWord); + static CFX_ByteString GetWordRenderString(const CFX_ByteString& strWords); + static CFX_ByteString GetFontSetString(IPVT_FontMap* pFontMap, + int32_t nFontIndex, + FX_FLOAT fFontSize); +}; + +#endif // CORE_FPDFDOC_CPVT_GENERATEAP_H_ |