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

Side by Side Diff: fpdfsdk/cpdfsdk_document.h

Issue 2384323005: Cleanup some CPDFSDK_PageView annotation code. (Closed)
Patch Set: Review feedback Created 4 years, 2 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 | « fpdfsdk/cba_annotiterator.cpp ('k') | fpdfsdk/cpdfsdk_document.cpp » ('j') | 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 FPDFSDK_CPDFSDK_DOCUMENT_H_ 7 #ifndef FPDFSDK_CPDFSDK_DOCUMENT_H_
8 #define FPDFSDK_CPDFSDK_DOCUMENT_H_ 8 #define FPDFSDK_CPDFSDK_DOCUMENT_H_
9 9
10 #include <map> 10 #include <map>
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 57
58 int GetPageViewCount() const { return m_pageMap.size(); } 58 int GetPageViewCount() const { return m_pageMap.size(); }
59 #endif // PDF_ENABLE_XFA 59 #endif // PDF_ENABLE_XFA
60 60
61 CPDFSDK_PageView* GetPageView(UnderlyingPageType* pPage, bool ReNew); 61 CPDFSDK_PageView* GetPageView(UnderlyingPageType* pPage, bool ReNew);
62 CPDFSDK_PageView* GetPageView(int nIndex); 62 CPDFSDK_PageView* GetPageView(int nIndex);
63 CPDFSDK_PageView* GetCurrentView(); 63 CPDFSDK_PageView* GetCurrentView();
64 void RemovePageView(UnderlyingPageType* pPage); 64 void RemovePageView(UnderlyingPageType* pPage);
65 void UpdateAllViews(CPDFSDK_PageView* pSender, CPDFSDK_Annot* pAnnot); 65 void UpdateAllViews(CPDFSDK_PageView* pSender, CPDFSDK_Annot* pAnnot);
66 66
67 CPDFSDK_Annot* GetFocusAnnot();
68
69 IJS_Runtime* GetJsRuntime(); 67 IJS_Runtime* GetJsRuntime();
70 68
71 FX_BOOL SetFocusAnnot(CPDFSDK_Annot::ObservedPtr* pAnnot, uint32_t nFlag = 0); 69 CPDFSDK_Annot* GetFocusAnnot() { return m_pFocusAnnot.Get(); }
72 FX_BOOL KillFocusAnnot(uint32_t nFlag = 0); 70 FX_BOOL SetFocusAnnot(CPDFSDK_Annot::ObservedPtr* pAnnot);
71 FX_BOOL KillFocusAnnot(uint32_t nFlag);
73 72
74 FX_BOOL ExtractPages(const std::vector<uint16_t>& arrExtraPages, 73 FX_BOOL ExtractPages(const std::vector<uint16_t>& arrExtraPages,
75 CPDF_Document* pDstDoc); 74 CPDF_Document* pDstDoc);
76 FX_BOOL InsertPages(int nInsertAt, 75 FX_BOOL InsertPages(int nInsertAt,
77 const CPDF_Document* pSrcDoc, 76 const CPDF_Document* pSrcDoc,
78 const std::vector<uint16_t>& arrSrcPages); 77 const std::vector<uint16_t>& arrSrcPages);
79 FX_BOOL ReplacePages(int nPage, 78 FX_BOOL ReplacePages(int nPage,
80 const CPDF_Document* pSrcDoc, 79 const CPDF_Document* pSrcDoc,
81 const std::vector<uint16_t>& arrSrcPages); 80 const std::vector<uint16_t>& arrSrcPages);
82 81
(...skipping 16 matching lines...) Expand all
99 UnderlyingDocumentType* m_pDoc; 98 UnderlyingDocumentType* m_pDoc;
100 std::unique_ptr<CPDFSDK_InterForm> m_pInterForm; 99 std::unique_ptr<CPDFSDK_InterForm> m_pInterForm;
101 CPDFSDK_Annot::ObservedPtr m_pFocusAnnot; 100 CPDFSDK_Annot::ObservedPtr m_pFocusAnnot;
102 CPDFSDK_Environment* m_pEnv; 101 CPDFSDK_Environment* m_pEnv;
103 std::unique_ptr<CPDF_OCContext> m_pOccontent; 102 std::unique_ptr<CPDF_OCContext> m_pOccontent;
104 FX_BOOL m_bChangeMask; 103 FX_BOOL m_bChangeMask;
105 FX_BOOL m_bBeingDestroyed; 104 FX_BOOL m_bBeingDestroyed;
106 }; 105 };
107 106
108 #endif // FPDFSDK_CPDFSDK_DOCUMENT_H_ 107 #endif // FPDFSDK_CPDFSDK_DOCUMENT_H_
OLDNEW
« no previous file with comments | « fpdfsdk/cba_annotiterator.cpp ('k') | fpdfsdk/cpdfsdk_document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698