OLD | NEW |
1 // Copyright 2016 PDFium Authors. All rights reserved. | 1 // Copyright 2016 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 CORE_FPDFDOC_INCLUDE_CPDF_ANNOT_H_ | 7 #ifndef CORE_FPDFDOC_INCLUDE_CPDF_ANNOT_H_ |
8 #define CORE_FPDFDOC_INCLUDE_CPDF_ANNOT_H_ | 8 #define CORE_FPDFDOC_INCLUDE_CPDF_ANNOT_H_ |
9 | 9 |
10 #include <map> | 10 #include <map> |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 CPDF_RenderContext* pContext, | 56 CPDF_RenderContext* pContext, |
57 const CFX_Matrix* pUser2Device, | 57 const CFX_Matrix* pUser2Device, |
58 AppearanceMode mode); | 58 AppearanceMode mode); |
59 void ClearCachedAP(); | 59 void ClearCachedAP(); |
60 void DrawBorder(CFX_RenderDevice* pDevice, | 60 void DrawBorder(CFX_RenderDevice* pDevice, |
61 const CFX_Matrix* pUser2Device, | 61 const CFX_Matrix* pUser2Device, |
62 const CPDF_RenderOptions* pOptions); | 62 const CPDF_RenderOptions* pOptions); |
63 CPDF_Form* GetAPForm(const CPDF_Page* pPage, AppearanceMode mode); | 63 CPDF_Form* GetAPForm(const CPDF_Page* pPage, AppearanceMode mode); |
64 | 64 |
65 private: | 65 private: |
| 66 void GenerateAPIfNeeded(); |
| 67 |
66 CPDF_Dictionary* const m_pAnnotDict; | 68 CPDF_Dictionary* const m_pAnnotDict; |
67 CPDF_Document* const m_pDocument; | 69 CPDF_Document* const m_pDocument; |
68 const CFX_ByteString m_sSubtype; | 70 const CFX_ByteString m_sSubtype; |
69 std::map<CPDF_Stream*, std::unique_ptr<CPDF_Form>> m_APMap; | 71 std::map<CPDF_Stream*, std::unique_ptr<CPDF_Form>> m_APMap; |
70 }; | 72 }; |
71 | 73 |
72 CPDF_Stream* FPDFDOC_GetAnnotAP(CPDF_Dictionary* pAnnotDict, | 74 CPDF_Stream* FPDFDOC_GetAnnotAP(CPDF_Dictionary* pAnnotDict, |
73 CPDF_Annot::AppearanceMode mode); | 75 CPDF_Annot::AppearanceMode mode); |
74 | 76 |
75 #endif // CORE_FPDFDOC_INCLUDE_CPDF_ANNOT_H_ | 77 #endif // CORE_FPDFDOC_INCLUDE_CPDF_ANNOT_H_ |
OLD | NEW |