summaryrefslogtreecommitdiff
path: root/xfa/fxfa/app/xfa_ffnotify.h
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2016-03-14 14:14:16 -0400
committerDan Sinclair <dsinclair@chromium.org>2016-03-14 14:14:16 -0400
commit1770c021cf998ff1b33855b1397f6ea8ff9f7cd7 (patch)
tree285e39abd4b5872d8cd632b9e331b0667fdc3eae /xfa/fxfa/app/xfa_ffnotify.h
parentf766ad219f66543654520f6a1955836f519e26d1 (diff)
downloadpdfium-1770c021cf998ff1b33855b1397f6ea8ff9f7cd7.tar.xz
Move xfa/src up to xfa/.
This CL moves the xfa/src files up to the xfa/ directory and fixes the includes, include guards, and build files. R=tsepez@chromium.org Review URL: https://codereview.chromium.org/1803723002 .
Diffstat (limited to 'xfa/fxfa/app/xfa_ffnotify.h')
-rw-r--r--xfa/fxfa/app/xfa_ffnotify.h99
1 files changed, 99 insertions, 0 deletions
diff --git a/xfa/fxfa/app/xfa_ffnotify.h b/xfa/fxfa/app/xfa_ffnotify.h
new file mode 100644
index 0000000000..e61c07924e
--- /dev/null
+++ b/xfa/fxfa/app/xfa_ffnotify.h
@@ -0,0 +1,99 @@
+// 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_APP_XFA_FFNOTIFY_H_
+#define XFA_FXFA_APP_XFA_FFNOTIFY_H_
+
+#include "xfa/fxfa/parser/xfa_document.h"
+
+class CXFA_FFNotify : public IXFA_Notify {
+ public:
+ CXFA_FFNotify(CXFA_FFDoc* pDoc);
+ ~CXFA_FFNotify();
+
+ virtual void OnPageEvent(IXFA_LayoutPage* pSender,
+ XFA_PAGEEVENT eEvent,
+ void* pParam = NULL);
+
+ virtual void OnNodeEvent(CXFA_Node* pSender,
+ XFA_NODEEVENT eEvent,
+ void* pParam = NULL,
+ void* pParam2 = NULL,
+ void* pParam3 = NULL,
+ void* pParam4 = NULL);
+ virtual void OnWidgetDataEvent(CXFA_WidgetData* pSender,
+ FX_DWORD dwEvent,
+ void* pParam = NULL,
+ void* pAdditional = NULL,
+ void* pAdditional2 = NULL);
+ virtual CXFA_LayoutItem* OnCreateLayoutItem(CXFA_Node* pNode);
+ virtual void OnLayoutEvent(IXFA_DocLayout* pLayout,
+ CXFA_LayoutItem* pSender,
+ XFA_LAYOUTEVENT eEvent,
+ void* pParam = NULL,
+ void* pParam2 = NULL);
+
+ virtual void StartFieldDrawLayout(CXFA_Node* pItem,
+ FX_FLOAT& fCalcWidth,
+ FX_FLOAT& fCalcHeight);
+ virtual FX_BOOL FindSplitPos(CXFA_Node* pItem,
+ int32_t iBlockIndex,
+ FX_FLOAT& fCalcHeightPos);
+ virtual FX_BOOL RunScript(CXFA_Node* pScript, CXFA_Node* pFormItem);
+ virtual int32_t ExecEventByDeepFirst(CXFA_Node* pFormNode,
+ XFA_EVENTTYPE eEventType,
+ FX_BOOL bIsFormReady = FALSE,
+ FX_BOOL bRecursive = TRUE,
+ CXFA_WidgetAcc* pExclude = NULL);
+ virtual void AddCalcValidate(CXFA_Node* pNode);
+ virtual IXFA_Doc* GetHDOC();
+ virtual IXFA_DocProvider* GetDocProvider();
+ virtual IXFA_AppProvider* GetAppProvider();
+ virtual IXFA_WidgetHandler* GetWidgetHandler();
+ virtual IXFA_Widget* GetHWidget(CXFA_LayoutItem* pLayoutItem);
+ virtual void OpenDropDownList(IXFA_Widget* hWidget);
+ virtual CFX_WideString GetCurrentDateTime();
+ virtual void ResetData(CXFA_WidgetData* pWidgetData = NULL);
+ virtual int32_t GetLayoutStatus();
+ virtual void RunNodeInitialize(CXFA_Node* pNode);
+ virtual void RunSubformIndexChange(CXFA_Node* pSubformNode);
+ virtual CXFA_Node* GetFocusWidgetNode();
+ virtual void SetFocusWidgetNode(CXFA_Node* pNode);
+
+ protected:
+ void OnNodeReady(CXFA_Node* pNode);
+ void OnValueChanging(CXFA_Node* pSender, void* pParam, void* pParam2);
+ void OnValueChanged(CXFA_Node* pSender,
+ void* pParam,
+ void* pParam2,
+ void* pParam3,
+ void* pParam4);
+ void OnChildAdded(CXFA_Node* pSender, void* pParam, void* pParam2);
+ void OnChildRemoved(CXFA_Node* pSender, void* pParam, void* pParam2);
+ void OnLayoutItemAdd(CXFA_FFDocView* pDocView,
+ IXFA_DocLayout* pLayout,
+ CXFA_LayoutItem* pSender,
+ void* pParam,
+ void* pParam2);
+ void OnLayoutItemRemoving(CXFA_FFDocView* pDocView,
+ IXFA_DocLayout* pLayout,
+ CXFA_LayoutItem* pSender,
+ void* pParam,
+ void* pParam2);
+ void OnLayoutItemRectChanged(CXFA_FFDocView* pDocView,
+ IXFA_DocLayout* pLayout,
+ CXFA_LayoutItem* pSender,
+ void* pParam,
+ void* pParam2);
+ void OnLayoutItemStatustChanged(CXFA_FFDocView* pDocView,
+ IXFA_DocLayout* pLayout,
+ CXFA_LayoutItem* pSender,
+ void* pParam,
+ void* pParam2);
+ CXFA_FFDoc* m_pDoc;
+};
+
+#endif // XFA_FXFA_APP_XFA_FFNOTIFY_H_