Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(36)

Side by Side Diff: core/fpdfdoc/include/cpdf_annot.h

Issue 2265313002: Lazy generate an "AP" when an Annot's hidden state changes (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Some minor clean ups. Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « core/fpdfdoc/cpdf_annot.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « core/fpdfdoc/cpdf_annot.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698