diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2018-01-04 11:03:26 -0500 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-01-04 16:46:22 +0000 |
commit | d9dfb6cc16f689753e9b3f896fbda1aec791051a (patch) | |
tree | 8063ebecea18abc6989cac8b67b0d2fb03a4877a /xfa/fxfa/parser/cxfa_widgetdata.h | |
parent | 8ee5207f4f792295badd21f90727e8c810e7dbdf (diff) | |
download | pdfium-d9dfb6cc16f689753e9b3f896fbda1aec791051a.tar.xz |
Merge CXFA_WidgetData into CXFA_WidgetAcc
This CL merges the CXFA_WidgetData class into the only subclass,
CXFA_WidgetAcc. Code has been updated as needed.
Change-Id: I3f5bc83b1422bcbe065276b16bfb91e656f5c174
Reviewed-on: https://pdfium-review.googlesource.com/22252
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 | 200 |
1 files changed, 0 insertions, 200 deletions
diff --git a/xfa/fxfa/parser/cxfa_widgetdata.h b/xfa/fxfa/parser/cxfa_widgetdata.h deleted file mode 100644 index 4b11521b6f..0000000000 --- a/xfa/fxfa/parser/cxfa_widgetdata.h +++ /dev/null @@ -1,200 +0,0 @@ -// Copyright 2016 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_PARSER_CXFA_WIDGETDATA_H_ -#define XFA_FXFA_PARSER_CXFA_WIDGETDATA_H_ - -#include <utility> -#include <vector> - -#include "core/fxcrt/fx_coordinates.h" -#include "core/fxcrt/fx_string.h" -#include "core/fxcrt/fx_system.h" -#include "fxbarcode/BC_Library.h" -#include "xfa/fxfa/fxfa_basic.h" - -enum XFA_CHECKSTATE { - XFA_CHECKSTATE_On = 0, - XFA_CHECKSTATE_Off = 1, - XFA_CHECKSTATE_Neutral = 2, -}; - -enum XFA_VALUEPICTURE { - XFA_VALUEPICTURE_Raw = 0, - XFA_VALUEPICTURE_Display, - XFA_VALUEPICTURE_Edit, - XFA_VALUEPICTURE_DataBind, -}; - -class CXFA_Bind; -class CXFA_Border; -class CXFA_Calculate; -class CXFA_Caption; -class CXFA_Event; -class CXFA_Font; -class CXFA_Margin; -class CXFA_Node; -class CXFA_Para; -class CXFA_Value; -class CXFA_Validate; -class IFX_Locale; - -class CXFA_WidgetData { - public: - virtual ~CXFA_WidgetData(); - - CXFA_Node* GetNode() const { return m_pNode; } - - CXFA_Node* GetUIChild(); - XFA_Element GetUIType(); - CFX_RectF GetUIMargin(); - - WideString GetRawValue() const; - int32_t GetRotate() const; - - bool IsOpenAccess() const; - bool IsListBox(); - bool IsAllowNeutral(); - bool IsRadioButton(); - bool IsChoiceListAllowTextEntry(); - bool IsMultiLine(); - - CXFA_Border* GetBorder(bool bModified); - CXFA_Caption* GetCaption(); - CXFA_Font* GetFont(bool bModified); - CXFA_Margin* GetMargin(); - CXFA_Para* GetPara(); - CXFA_Value* GetDefaultValue(); - CXFA_Value* GetFormValue(); - CXFA_Calculate* GetCalculate(); - CXFA_Validate* GetValidate(bool bModified); - CXFA_Border* GetUIBorder(); - - std::vector<CXFA_Event*> GetEventByActivity(XFA_AttributeEnum iActivity, - bool bIsFormReady); - - pdfium::Optional<float> TryWidth(); - pdfium::Optional<float> TryHeight(); - pdfium::Optional<float> TryMinWidth(); - pdfium::Optional<float> TryMinHeight(); - pdfium::Optional<float> TryMaxWidth(); - pdfium::Optional<float> TryMaxHeight(); - - XFA_AttributeEnum GetButtonHighlight(); - bool HasButtonRollover() const; - bool HasButtonDown() const; - - bool IsCheckButtonRound(); - XFA_AttributeEnum GetCheckButtonMark(); - float GetCheckButtonSize(); - - XFA_CHECKSTATE GetCheckState(); - void SetCheckState(XFA_CHECKSTATE eCheckState, bool bNotify); - - CXFA_Node* GetSelectedMember(); - CXFA_Node* SetSelectedMember(const WideStringView& wsName, bool bNotify); - void SetSelectedMemberByValue(const WideStringView& wsValue, - bool bNotify, - bool bScriptModify, - bool bSyncData); - - CXFA_Node* GetExclGroupFirstMember(); - CXFA_Node* GetExclGroupNextMember(CXFA_Node* pNode); - - int32_t CountChoiceListItems(bool bSaveValue); - pdfium::Optional<WideString> GetChoiceListItem(int32_t nIndex, - bool bSaveValue); - bool IsChoiceListMultiSelect(); - bool IsChoiceListCommitOnSelect(); - std::vector<WideString> GetChoiceListItems(bool bSaveValue); - - int32_t CountSelectedItems(); - int32_t GetSelectedItem(int32_t nIndex); - std::vector<int32_t> GetSelectedItems(); - std::vector<WideString> GetSelectedItemsValue(); - void SetSelectedItems(const std::vector<int32_t>& iSelArray, - bool bNotify, - bool bScriptModify, - bool bSyncData); - void InsertItem(const WideString& wsLabel, - const WideString& wsValue, - bool bNotify); - bool DeleteItem(int32_t nIndex, bool bNotify, bool bScriptModify); - void ClearAllSelections(); - - bool GetItemState(int32_t nIndex); - void SetItemState(int32_t nIndex, - bool bSelected, - bool bNotify, - bool bScriptModify, - bool bSyncData); - - WideString GetItemValue(const WideStringView& wsLabel); - - bool IsHorizontalScrollPolicyOff(); - bool IsVerticalScrollPolicyOff(); - pdfium::Optional<int32_t> GetNumberOfCells(); - - bool SetValue(XFA_VALUEPICTURE eValueType, const WideString& wsValue); - WideString GetValue(XFA_VALUEPICTURE eValueType); - - WideString GetPictureContent(XFA_VALUEPICTURE ePicture); - IFX_Locale* GetLocale(); - - WideString GetNormalizeDataValue(const WideString& wsValue); - WideString GetFormatDataValue(const WideString& wsValue); - WideString NormalizeNumStr(const WideString& wsValue); - - WideString GetBarcodeType(); - pdfium::Optional<BC_CHAR_ENCODING> GetBarcodeAttribute_CharEncoding(); - pdfium::Optional<bool> GetBarcodeAttribute_Checksum(); - pdfium::Optional<int32_t> GetBarcodeAttribute_DataLength(); - pdfium::Optional<char> GetBarcodeAttribute_StartChar(); - pdfium::Optional<char> GetBarcodeAttribute_EndChar(); - pdfium::Optional<int32_t> GetBarcodeAttribute_ECLevel(); - pdfium::Optional<int32_t> GetBarcodeAttribute_ModuleWidth(); - pdfium::Optional<int32_t> GetBarcodeAttribute_ModuleHeight(); - pdfium::Optional<bool> GetBarcodeAttribute_PrintChecksum(); - pdfium::Optional<BC_TEXT_LOC> GetBarcodeAttribute_TextLocation(); - pdfium::Optional<bool> GetBarcodeAttribute_Truncate(); - pdfium::Optional<int8_t> GetBarcodeAttribute_WideNarrowRatio(); - - WideString GetPasswordChar(); - std::pair<XFA_Element, int32_t> GetMaxChars(); - int32_t GetFracDigits(); - int32_t GetLeadDigits(); - - WideString NumericLimit(const WideString& wsValue, - int32_t iLead, - int32_t iTread) const; - - bool IsPreNull() const { return m_bPreNull; } - void SetPreNull(bool val) { m_bPreNull = val; } - bool IsNull() const { return m_bIsNull; } - void SetIsNull(bool val) { m_bIsNull = val; } - - protected: - explicit CXFA_WidgetData(CXFA_Node* pNode); - - CXFA_Node* m_pNode; - - private: - CXFA_Bind* GetBind(); - void SyncValue(const WideString& wsValue, bool bNotify); - void InsertListTextItem(CXFA_Node* pItems, - const WideString& wsText, - int32_t nIndex); - WideString FormatNumStr(const WideString& wsValue, IFX_Locale* pLocale); - CXFA_Node* GetExclGroupNode(); - void GetItemLabel(const WideStringView& wsValue, WideString& wsLabel); - - bool m_bIsNull; - bool m_bPreNull; - CXFA_Node* m_pUiChildNode; - XFA_Element m_eUIType; -}; - -#endif // XFA_FXFA_PARSER_CXFA_WIDGETDATA_H_ |