diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2018-01-04 10:05:36 -0500 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-01-04 16:14:31 +0000 |
commit | 72fe435e80807c91dbf8edc41d5bf3ec3c9bd9e4 (patch) | |
tree | f171ca51a643ea905908e98daf9bbe99590fdb73 /xfa/fxfa/parser/cxfa_widgetdata.h | |
parent | a0af75cc4d1e50bb2832dc58636043afe565b02b (diff) | |
download | pdfium-72fe435e80807c91dbf8edc41d5bf3ec3c9bd9e4.tar.xz |
Remove CXFA_DataData
This CL removes the CXFA_DataData base class and the functionality is
moved to where it's needed.
Change-Id: Ieba31aa924b9b513466144b31f0e1613923c50aa
Reviewed-on: https://pdfium-review.googlesource.com/22250
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/cxfa_widgetdata.h')
-rw-r--r-- | xfa/fxfa/parser/cxfa_widgetdata.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/xfa/fxfa/parser/cxfa_widgetdata.h b/xfa/fxfa/parser/cxfa_widgetdata.h index 57e6939f37..941eead3fd 100644 --- a/xfa/fxfa/parser/cxfa_widgetdata.h +++ b/xfa/fxfa/parser/cxfa_widgetdata.h @@ -14,7 +14,7 @@ #include "core/fxcrt/fx_string.h" #include "core/fxcrt/fx_system.h" #include "fxbarcode/BC_Library.h" -#include "xfa/fxfa/parser/cxfa_datadata.h" +#include "xfa/fxfa/fxfa_basic.h" enum XFA_CHECKSTATE { XFA_CHECKSTATE_On = 0, @@ -42,9 +42,12 @@ class CXFA_Value; class CXFA_Validate; class IFX_Locale; -class CXFA_WidgetData : public CXFA_DataData { +class CXFA_WidgetData { public: explicit CXFA_WidgetData(CXFA_Node* pNode); + virtual ~CXFA_WidgetData(); + + CXFA_Node* GetNode() const { return m_pNode; } CXFA_Node* GetUIChild(); XFA_Element GetUIType(); @@ -174,6 +177,9 @@ class CXFA_WidgetData : public CXFA_DataData { bool IsNull() const { return m_bIsNull; } void SetIsNull(bool val) { m_bIsNull = val; } + protected: + CXFA_Node* m_pNode; + private: CXFA_Bind* GetBind(); void SyncValue(const WideString& wsValue, bool bNotify); |