| OLD | NEW |
| 1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 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_FPDFXFA_INCLUDE_FPDFXFA_DOC_H_ | 7 #ifndef FPDFSDK_FPDFXFA_INCLUDE_FPDFXFA_DOC_H_ |
| 8 #define FPDFSDK_FPDFXFA_INCLUDE_FPDFXFA_DOC_H_ | 8 #define FPDFSDK_FPDFXFA_INCLUDE_FPDFXFA_DOC_H_ |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 ~CPDFXFA_Document(); | 35 ~CPDFXFA_Document(); |
| 36 | 36 |
| 37 FX_BOOL LoadXFADoc(); | 37 FX_BOOL LoadXFADoc(); |
| 38 CPDF_Document* GetPDFDoc() { return m_pPDFDoc.get(); } | 38 CPDF_Document* GetPDFDoc() { return m_pPDFDoc.get(); } |
| 39 CXFA_FFDoc* GetXFADoc() { return m_pXFADoc.get(); } | 39 CXFA_FFDoc* GetXFADoc() { return m_pXFADoc.get(); } |
| 40 CXFA_FFDocView* GetXFADocView() { return m_pXFADocView; } | 40 CXFA_FFDocView* GetXFADocView() { return m_pXFADocView; } |
| 41 CPDFSDK_Document* GetSDKDocument(CPDFSDK_Environment* pFormFillEnv); | 41 CPDFSDK_Document* GetSDKDocument(CPDFSDK_Environment* pFormFillEnv); |
| 42 int GetDocType() { return m_iDocType; } | 42 int GetDocType() { return m_iDocType; } |
| 43 | 43 |
| 44 void DeletePage(int page_index); | 44 void DeletePage(int page_index); |
| 45 int GetPageCount() const; | 45 int GetXFAPageCount() const; |
| 46 | 46 |
| 47 CPDFXFA_Page* GetXFAPage(int page_index); | 47 CPDFXFA_Page* GetXFAPage(int page_index); |
| 48 CPDFXFA_Page* GetXFAPage(CXFA_FFPageView* pPage); | 48 CPDFXFA_Page* GetXFAPage(CXFA_FFPageView* pPage); |
| 49 | 49 |
| 50 void RemovePage(CPDFXFA_Page* page); | 50 void RemovePage(CPDFXFA_Page* page); |
| 51 | 51 |
| 52 void ClearChangeMark(); | 52 void ClearChangeMark(); |
| 53 | 53 |
| 54 protected: | 54 protected: |
| 55 friend class CPDFXFA_DocEnvironment; | 55 friend class CPDFXFA_DocEnvironment; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 85 CPDFXFA_App* const m_pApp; | 85 CPDFXFA_App* const m_pApp; |
| 86 CFX_ArrayTemplate<CPDFXFA_Page*> m_XFAPageList; | 86 CFX_ArrayTemplate<CPDFXFA_Page*> m_XFAPageList; |
| 87 LoadStatus m_nLoadStatus; | 87 LoadStatus m_nLoadStatus; |
| 88 int m_nPageCount; | 88 int m_nPageCount; |
| 89 | 89 |
| 90 // Must be destroy before |m_pSDKDoc|. | 90 // Must be destroy before |m_pSDKDoc|. |
| 91 CPDFXFA_DocEnvironment m_DocEnv; | 91 CPDFXFA_DocEnvironment m_DocEnv; |
| 92 }; | 92 }; |
| 93 | 93 |
| 94 #endif // FPDFSDK_FPDFXFA_INCLUDE_FPDFXFA_DOC_H_ | 94 #endif // FPDFSDK_FPDFXFA_INCLUDE_FPDFXFA_DOC_H_ |
| OLD | NEW |