From df4bc596c64fb848647c670be66a29ea0861b4f4 Mon Sep 17 00:00:00 2001 From: dsinclair Date: Thu, 31 Mar 2016 20:34:43 -0700 Subject: 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 --- xfa/include/fxfa/xfa_ffdochandler.h | 53 +++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 xfa/include/fxfa/xfa_ffdochandler.h (limited to 'xfa/include/fxfa/xfa_ffdochandler.h') 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_ -- cgit v1.2.3