summaryrefslogtreecommitdiff
path: root/xfa/fwl/core/ifwl_formproxy.h
diff options
context:
space:
mode:
Diffstat (limited to 'xfa/fwl/core/ifwl_formproxy.h')
-rw-r--r--xfa/fwl/core/ifwl_formproxy.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/xfa/fwl/core/ifwl_formproxy.h b/xfa/fwl/core/ifwl_formproxy.h
new file mode 100644
index 0000000000..c188d93a05
--- /dev/null
+++ b/xfa/fwl/core/ifwl_formproxy.h
@@ -0,0 +1,47 @@
+// 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_FWL_CORE_IFWL_FORMPROXY_H_
+#define XFA_FWL_CORE_IFWL_FORMPROXY_H_
+
+#include "xfa/fwl/core/ifwl_form.h"
+
+class CFWL_WidgetImpProperties;
+class CFWL_FormProxyImpDelegate;
+
+class IFWL_FormProxy : public IFWL_Form {
+ public:
+ static IFWL_FormProxy* Create(CFWL_WidgetImpProperties& properties,
+ IFWL_Widget* pOuter);
+
+ IFWL_FormProxy(const CFWL_WidgetImpProperties& properties,
+ IFWL_Widget* pOuter);
+ ~IFWL_FormProxy() override;
+
+ // IFWL_Widget
+ FWL_Error GetClassName(CFX_WideString& wsClass) const override;
+ FWL_Type GetClassID() const override;
+ FX_BOOL IsInstance(const CFX_WideStringC& wsClass) const override;
+ FWL_Error Initialize() override;
+ FWL_Error Finalize() override;
+ FWL_Error Update() override;
+ FWL_Error DrawWidget(CFX_Graphics* pGraphics,
+ const CFX_Matrix* pMatrix = nullptr) override;
+
+ protected:
+ friend class CFWL_FormProxyImpDelegate;
+};
+
+class CFWL_FormProxyImpDelegate : public CFWL_WidgetImpDelegate {
+ public:
+ CFWL_FormProxyImpDelegate(IFWL_FormProxy* pOwner);
+ void OnProcessMessage(CFWL_Message* pMessage) override;
+
+ protected:
+ IFWL_FormProxy* m_pOwner;
+};
+
+#endif // XFA_FWL_CORE_IFWL_FORMPROXY_H_