diff options
author | dsinclair <dsinclair@chromium.org> | 2016-03-31 20:34:43 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-03-31 20:34:43 -0700 |
commit | df4bc596c64fb848647c670be66a29ea0861b4f4 (patch) | |
tree | 096f18bc5903e45982291daf81424d0d4954d158 /xfa/include/fxfa/xfa_ffdochandler.h | |
parent | 64376be4aac4710848b36b823fd98aae75095336 (diff) | |
download | pdfium-df4bc596c64fb848647c670be66a29ea0861b4f4.tar.xz |
Remove IXFA_* interfaces.
This CL removes the IXFA_* interfaces which are:
- Implemented once.
- Not implemented by an fpdfsdk class.
This requires making a few classes visible to fpdfsdk so we can have the
correct instances available instead of the IXFA types.
Review URL: https://codereview.chromium.org/1846993002
Diffstat (limited to 'xfa/include/fxfa/xfa_ffdochandler.h')
-rw-r--r-- | xfa/include/fxfa/xfa_ffdochandler.h | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/xfa/include/fxfa/xfa_ffdochandler.h b/xfa/include/fxfa/xfa_ffdochandler.h new file mode 100644 index 0000000000..7eaa20b4cc --- /dev/null +++ b/xfa/include/fxfa/xfa_ffdochandler.h @@ -0,0 +1,53 @@ +// 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_INCLUDE_FXFA_XFA_FFDOCHANDLER_H_ +#define XFA_INCLUDE_FXFA_XFA_FFDOCHANDLER_H_ + +#include "xfa/include/fxfa/fxfa.h" + +class CXFA_ChecksumContext; + +class CXFA_FFDocHandler { + public: + CXFA_FFDocHandler(); + ~CXFA_FFDocHandler(); + + void ReleaseDoc(CXFA_FFDoc* hDoc); + IXFA_DocProvider* GetDocProvider(CXFA_FFDoc* hDoc); + uint32_t GetDocType(CXFA_FFDoc* hDoc); + int32_t StartLoad(CXFA_FFDoc* hDoc); + int32_t DoLoad(CXFA_FFDoc* hDoc, IFX_Pause* pPause = NULL); + void StopLoad(CXFA_FFDoc* hDoc); + + CXFA_FFDocView* CreateDocView(CXFA_FFDoc* hDoc, uint32_t dwView = 0); + int32_t CountPackages(CXFA_FFDoc* hDoc); + void GetPackageName(CXFA_FFDoc* hDoc, + int32_t iPackage, + CFX_WideStringC& wsPackage); + CFDE_XMLElement* GetPackageData(CXFA_FFDoc* hDoc, + const CFX_WideStringC& wsPackage); + FX_BOOL SavePackage(CXFA_FFDoc* hDoc, + const CFX_WideStringC& wsPackage, + IFX_FileWrite* pFile, + CXFA_ChecksumContext* pCSContext = NULL); + FX_BOOL CloseDoc(CXFA_FFDoc* hDoc); + FX_BOOL ImportData(CXFA_FFDoc* hDoc, + IFX_FileRead* pStream, + FX_BOOL bXDP = TRUE); + void SetJSERuntime(CXFA_FFDoc* hDoc, FXJSE_HRUNTIME hRuntime); + FXJSE_HVALUE GetXFAScriptObject(CXFA_FFDoc* hDoc); + XFA_ATTRIBUTEENUM GetRestoreState(CXFA_FFDoc* hDoc); + FX_BOOL RunDocScript(CXFA_FFDoc* hDoc, + XFA_SCRIPTTYPE eScriptType, + const CFX_WideStringC& wsScript, + FXJSE_HVALUE hRetValue, + FXJSE_HVALUE hThisObject); + + protected: +}; + +#endif // XFA_INCLUDE_FXFA_XFA_FFDOCHANDLER_H_ |