| OLD | NEW |
| 1 // Copyright 2016 PDFium Authors. All rights reserved. | 1 // Copyright 2016 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | 6 |
| 7 #ifndef XFA_FXFA_PARSER_CXFA_WIDGETDATA_H_ | 7 #ifndef XFA_FXFA_PARSER_CXFA_WIDGETDATA_H_ |
| 8 #define XFA_FXFA_PARSER_CXFA_WIDGETDATA_H_ | 8 #define XFA_FXFA_PARSER_CXFA_WIDGETDATA_H_ |
| 9 | 9 |
| 10 #include "core/fxcrt/include/fx_string.h" | 10 #include "core/fxcrt/include/fx_string.h" |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 int32_t GetHorizontalScrollPolicy(); | 127 int32_t GetHorizontalScrollPolicy(); |
| 128 int32_t GetNumberOfCells(); | 128 int32_t GetNumberOfCells(); |
| 129 FX_BOOL SetValue(const CFX_WideString& wsValue, XFA_VALUEPICTURE eValueType); | 129 FX_BOOL SetValue(const CFX_WideString& wsValue, XFA_VALUEPICTURE eValueType); |
| 130 FX_BOOL GetPictureContent(CFX_WideString& wsPicture, | 130 FX_BOOL GetPictureContent(CFX_WideString& wsPicture, |
| 131 XFA_VALUEPICTURE ePicture); | 131 XFA_VALUEPICTURE ePicture); |
| 132 IFX_Locale* GetLocal(); | 132 IFX_Locale* GetLocal(); |
| 133 FX_BOOL GetValue(CFX_WideString& wsValue, XFA_VALUEPICTURE eValueType); | 133 FX_BOOL GetValue(CFX_WideString& wsValue, XFA_VALUEPICTURE eValueType); |
| 134 FX_BOOL GetNormalizeDataValue(const CFX_WideString& wsValue, | 134 FX_BOOL GetNormalizeDataValue(const CFX_WideString& wsValue, |
| 135 CFX_WideString& wsNormalizeValue); | 135 CFX_WideString& wsNormalizeValue); |
| 136 FX_BOOL GetFormatDataValue(const CFX_WideString& wsValue, | 136 FX_BOOL GetFormatDataValue(const CFX_WideString& wsValue, |
| 137 CFX_WideString& wsFormatedValue); | 137 CFX_WideString& wsFormattedValue); |
| 138 void NormalizeNumStr(const CFX_WideString& wsValue, CFX_WideString& wsOutput); | 138 void NormalizeNumStr(const CFX_WideString& wsValue, CFX_WideString& wsOutput); |
| 139 CFX_WideString GetBarcodeType(); | 139 CFX_WideString GetBarcodeType(); |
| 140 FX_BOOL GetBarcodeAttribute_CharEncoding(int32_t& val); | 140 FX_BOOL GetBarcodeAttribute_CharEncoding(int32_t& val); |
| 141 FX_BOOL GetBarcodeAttribute_Checksum(int32_t& val); | 141 FX_BOOL GetBarcodeAttribute_Checksum(int32_t& val); |
| 142 FX_BOOL GetBarcodeAttribute_DataLength(int32_t& val); | 142 FX_BOOL GetBarcodeAttribute_DataLength(int32_t& val); |
| 143 FX_BOOL GetBarcodeAttribute_StartChar(FX_CHAR& val); | 143 FX_BOOL GetBarcodeAttribute_StartChar(FX_CHAR& val); |
| 144 FX_BOOL GetBarcodeAttribute_EndChar(FX_CHAR& val); | 144 FX_BOOL GetBarcodeAttribute_EndChar(FX_CHAR& val); |
| 145 FX_BOOL GetBarcodeAttribute_ECLevel(int32_t& val); | 145 FX_BOOL GetBarcodeAttribute_ECLevel(int32_t& val); |
| 146 FX_BOOL GetBarcodeAttribute_ModuleWidth(int32_t& val); | 146 FX_BOOL GetBarcodeAttribute_ModuleWidth(int32_t& val); |
| 147 FX_BOOL GetBarcodeAttribute_ModuleHeight(int32_t& val); | 147 FX_BOOL GetBarcodeAttribute_ModuleHeight(int32_t& val); |
| (...skipping 22 matching lines...) Expand all Loading... |
| 170 int32_t nIndex = -1); | 170 int32_t nIndex = -1); |
| 171 void FormatNumStr(const CFX_WideString& wsValue, | 171 void FormatNumStr(const CFX_WideString& wsValue, |
| 172 IFX_Locale* pLocale, | 172 IFX_Locale* pLocale, |
| 173 CFX_WideString& wsOutput); | 173 CFX_WideString& wsOutput); |
| 174 | 174 |
| 175 CXFA_Node* m_pUiChildNode; | 175 CXFA_Node* m_pUiChildNode; |
| 176 XFA_Element m_eUIType; | 176 XFA_Element m_eUIType; |
| 177 }; | 177 }; |
| 178 | 178 |
| 179 #endif // XFA_FXFA_PARSER_CXFA_WIDGETDATA_H_ | 179 #endif // XFA_FXFA_PARSER_CXFA_WIDGETDATA_H_ |
| OLD | NEW |