diff options
author | dsinclair <dsinclair@chromium.org> | 2016-09-29 20:20:24 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-09-29 20:20:24 -0700 |
commit | 5b4930967676088f2f0e5ce3b25aed77831d678c (patch) | |
tree | 12f6dc7c0a0ee471f11ec8d9b52691e846076b3a /xfa/fxfa/include/xfa_ffdoc.h | |
parent | 202ad7238489934ba0c64760de5f95782b36a213 (diff) | |
download | pdfium-5b4930967676088f2f0e5ce3b25aed77831d678c.tar.xz |
Move xfa/fxfa/include to xfa/fxfa
BUG=pdfium:611
Review-Url: https://codereview.chromium.org/2383593002
Diffstat (limited to 'xfa/fxfa/include/xfa_ffdoc.h')
-rw-r--r-- | xfa/fxfa/include/xfa_ffdoc.h | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/xfa/fxfa/include/xfa_ffdoc.h b/xfa/fxfa/include/xfa_ffdoc.h deleted file mode 100644 index 927301893b..0000000000 --- a/xfa/fxfa/include/xfa_ffdoc.h +++ /dev/null @@ -1,69 +0,0 @@ -// Copyright 2014 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 XFA_FXFA_INCLUDE_XFA_FFDOC_H_ -#define XFA_FXFA_INCLUDE_XFA_FFDOC_H_ - -#include <map> -#include <memory> - -#include "xfa/fxfa/include/fxfa.h" -#include "xfa/fxfa/parser/cxfa_document.h" -#include "xfa/fxfa/parser/cxfa_document_parser.h" - -class CXFA_ChecksumContext; -class CXFA_FFApp; -class CXFA_FFNotify; -class CXFA_FFDocView; - -struct FX_IMAGEDIB_AND_DPI { - CFX_DIBSource* pDibSource; - int32_t iImageXDpi; - int32_t iImageYDpi; -}; - -class CXFA_FFDoc { - public: - CXFA_FFDoc(CXFA_FFApp* pApp, IXFA_DocEnvironment* pDocEnvironment); - ~CXFA_FFDoc(); - IXFA_DocEnvironment* GetDocEnvironment() const { return m_pDocEnvironment; } - uint32_t GetDocType(); - int32_t StartLoad(); - int32_t DoLoad(IFX_Pause* pPause = nullptr); - void StopLoad(); - CXFA_FFDocView* CreateDocView(uint32_t dwView = 0); - FX_BOOL OpenDoc(IFX_FileRead* pStream, FX_BOOL bTakeOverFile); - FX_BOOL OpenDoc(CPDF_Document* pPDFDoc); - FX_BOOL CloseDoc(); - void SetDocType(uint32_t dwType); - CXFA_Document* GetXFADoc() { return m_pDocumentParser->GetDocument(); } - CXFA_FFApp* GetApp() { return m_pApp; } - CXFA_FFDocView* GetDocView(CXFA_LayoutProcessor* pLayout); - CXFA_FFDocView* GetDocView(); - CPDF_Document* GetPDFDoc(); - CFX_DIBitmap* GetPDFNamedImage(const CFX_WideStringC& wsName, - int32_t& iImageXDpi, - int32_t& iImageYDpi); - - bool SavePackage(XFA_HashCode code, - IFX_FileWrite* pFile, - CXFA_ChecksumContext* pCSContext); - FX_BOOL ImportData(IFX_FileRead* pStream, FX_BOOL bXDP = TRUE); - - protected: - IXFA_DocEnvironment* const m_pDocEnvironment; - std::unique_ptr<CXFA_DocumentParser> m_pDocumentParser; - IFX_FileRead* m_pStream; - CXFA_FFApp* m_pApp; - std::unique_ptr<CXFA_FFNotify> m_pNotify; - CPDF_Document* m_pPDFDoc; - std::map<uint32_t, FX_IMAGEDIB_AND_DPI> m_HashToDibDpiMap; - std::map<uint32_t, std::unique_ptr<CXFA_FFDocView>> m_TypeToDocViewMap; - uint32_t m_dwDocType; - FX_BOOL m_bOwnStream; -}; - -#endif // XFA_FXFA_INCLUDE_XFA_FFDOC_H_ |