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

Unified Diff: xfa/include/fxfa/xfa_ffdochandler.h

Issue 1846993002: Remove IXFA_* interfaces. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « xfa/include/fxfa/xfa_ffdoc.h ('k') | xfa/include/fxfa/xfa_ffdocview.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: 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 0000000000000000000000000000000000000000..7eaa20b4cccee411aa1a23a6501ce81246c2d456
--- /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_
« no previous file with comments | « xfa/include/fxfa/xfa_ffdoc.h ('k') | xfa/include/fxfa/xfa_ffdocview.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698