Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(81)

Side by Side Diff: xfa/fxfa/parser/cxfa_widgetdata.h

Issue 1889983002: Change string argument type to GetFormatDataValue. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | xfa/fxfa/parser/cxfa_widgetdata.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 FX_BOOL bNotify = FALSE, 126 FX_BOOL bNotify = FALSE,
127 FX_BOOL bScriptModify = FALSE, 127 FX_BOOL bScriptModify = FALSE,
128 FX_BOOL bSyncData = TRUE); 128 FX_BOOL bSyncData = TRUE);
129 int32_t GetHorizontalScrollPolicy(); 129 int32_t GetHorizontalScrollPolicy();
130 int32_t GetNumberOfCells(); 130 int32_t GetNumberOfCells();
131 FX_BOOL SetValue(const CFX_WideString& wsValue, XFA_VALUEPICTURE eValueType); 131 FX_BOOL SetValue(const CFX_WideString& wsValue, XFA_VALUEPICTURE eValueType);
132 FX_BOOL GetPictureContent(CFX_WideString& wsPicture, 132 FX_BOOL GetPictureContent(CFX_WideString& wsPicture,
133 XFA_VALUEPICTURE ePicture); 133 XFA_VALUEPICTURE ePicture);
134 IFX_Locale* GetLocal(); 134 IFX_Locale* GetLocal();
135 FX_BOOL GetValue(CFX_WideString& wsValue, XFA_VALUEPICTURE eValueType); 135 FX_BOOL GetValue(CFX_WideString& wsValue, XFA_VALUEPICTURE eValueType);
136 FX_BOOL GetNormalizeDataValue(const CFX_WideStringC& wsValue, 136 FX_BOOL GetNormalizeDataValue(const CFX_WideString& wsValue,
137 CFX_WideString& wsNormalizeValue); 137 CFX_WideString& wsNormalizeValue);
138 FX_BOOL GetFormatDataValue(const CFX_WideStringC& wsValue, 138 FX_BOOL GetFormatDataValue(const CFX_WideString& wsValue,
139 CFX_WideString& wsFormatedValue); 139 CFX_WideString& wsFormatedValue);
140 void NormalizeNumStr(const CFX_WideString& wsValue, CFX_WideString& wsOutput); 140 void NormalizeNumStr(const CFX_WideString& wsValue, CFX_WideString& wsOutput);
141 CFX_WideString GetBarcodeType(); 141 CFX_WideString GetBarcodeType();
142 FX_BOOL GetBarcodeAttribute_CharEncoding(int32_t& val); 142 FX_BOOL GetBarcodeAttribute_CharEncoding(int32_t& val);
143 FX_BOOL GetBarcodeAttribute_Checksum(int32_t& val); 143 FX_BOOL GetBarcodeAttribute_Checksum(int32_t& val);
144 FX_BOOL GetBarcodeAttribute_DataLength(int32_t& val); 144 FX_BOOL GetBarcodeAttribute_DataLength(int32_t& val);
145 FX_BOOL GetBarcodeAttribute_StartChar(FX_CHAR& val); 145 FX_BOOL GetBarcodeAttribute_StartChar(FX_CHAR& val);
146 FX_BOOL GetBarcodeAttribute_EndChar(FX_CHAR& val); 146 FX_BOOL GetBarcodeAttribute_EndChar(FX_CHAR& val);
147 FX_BOOL GetBarcodeAttribute_ECLevel(int32_t& val); 147 FX_BOOL GetBarcodeAttribute_ECLevel(int32_t& val);
148 FX_BOOL GetBarcodeAttribute_ModuleWidth(int32_t& val); 148 FX_BOOL GetBarcodeAttribute_ModuleWidth(int32_t& val);
(...skipping 23 matching lines...) Expand all
172 int32_t nIndex = -1); 172 int32_t nIndex = -1);
173 void FormatNumStr(const CFX_WideString& wsValue, 173 void FormatNumStr(const CFX_WideString& wsValue,
174 IFX_Locale* pLocale, 174 IFX_Locale* pLocale,
175 CFX_WideString& wsOutput); 175 CFX_WideString& wsOutput);
176 176
177 CXFA_Node* m_pUiChildNode; 177 CXFA_Node* m_pUiChildNode;
178 XFA_ELEMENT m_eUIType; 178 XFA_ELEMENT m_eUIType;
179 }; 179 };
180 180
181 #endif // XFA_FXFA_PARSER_CXFA_WIDGETDATA_H_ 181 #endif // XFA_FXFA_PARSER_CXFA_WIDGETDATA_H_
OLDNEW
« no previous file with comments | « no previous file | xfa/fxfa/parser/cxfa_widgetdata.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698