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

Side by Side Diff: xfa/include/fxfa/fxfa_objectacc.h

Issue 1172793002: Merge to XFA: Use stdint.h types throughout PDFium. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: Created 5 years, 6 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 | « xfa/include/fxfa/fxfa_basic.h ('k') | xfa/include/fxfa/fxfa_widget.h » ('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 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 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 _FXFA_NODEACC_H 7 #ifndef _FXFA_NODEACC_H
8 #define _FXFA_NODEACC_H 8 #define _FXFA_NODEACC_H
9 class CXFA_Node; 9 class CXFA_Node;
10 class IFX_Locale; 10 class IFX_Locale;
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 FX_BOOL TryMeasure(XFA_ATTRIBUTE eAttr, FX_FLOAT &fValue, FX_BOOL bUseDefaul t = FALSE) const; 82 FX_BOOL TryMeasure(XFA_ATTRIBUTE eAttr, FX_FLOAT &fValue, FX_BOOL bUseDefaul t = FALSE) const;
83 FX_BOOL SetMeasure(XFA_ATTRIBUTE eAttr, FX_FLOAT fValue); 83 FX_BOOL SetMeasure(XFA_ATTRIBUTE eAttr, FX_FLOAT fValue);
84 CXFA_Node* m_pNode; 84 CXFA_Node* m_pNode;
85 }; 85 };
86 class CXFA_Fill : public CXFA_Data 86 class CXFA_Fill : public CXFA_Data
87 { 87 {
88 public: 88 public:
89 CXFA_Fill(CXFA_Node* pNode); 89 CXFA_Fill(CXFA_Node* pNode);
90 ~CXFA_Fill(); 90 ~CXFA_Fill();
91 91
92 FX_INT32» » GetPresence(); 92 int32_t» » GetPresence();
93 93
94 FX_ARGB GetColor(FX_BOOL bText = FALSE); 94 FX_ARGB GetColor(FX_BOOL bText = FALSE);
95 95
96 void SetColor(FX_ARGB color); 96 void SetColor(FX_ARGB color);
97 97
98 98
99 FX_INT32» » GetFillType(); 99 int32_t» » GetFillType();
100 100
101 FX_INT32» » GetPattern(FX_ARGB& foreColor); 101 int32_t» » GetPattern(FX_ARGB& foreColor);
102 102
103 FX_INT32» » GetStipple(FX_ARGB& stippleColor); 103 int32_t» » GetStipple(FX_ARGB& stippleColor);
104 104
105 FX_INT32» » GetLinear(FX_ARGB& endColor); 105 int32_t» » GetLinear(FX_ARGB& endColor);
106 106
107 FX_INT32» » GetRadial(FX_ARGB& endColor); 107 int32_t» » GetRadial(FX_ARGB& endColor);
108 FX_BOOL» » » SetPresence(FX_INT32 iPresence); 108 FX_BOOL» » » SetPresence(int32_t iPresence);
109 FX_BOOL» » » SetFillType(FX_INT32 iType); 109 FX_BOOL» » » SetFillType(int32_t iType);
110 FX_BOOL» » » SetPattern(FX_INT32 iPattern, FX_ARGB foreColor) ; 110 FX_BOOL» » » SetPattern(int32_t iPattern, FX_ARGB foreColor);
111 FX_BOOL» » » SetStipple(FX_INT32 iStipple, FX_ARGB stippleCol or); 111 FX_BOOL» » » SetStipple(int32_t iStipple, FX_ARGB stippleColo r);
112 FX_BOOL» » » SetLinear(FX_INT32 iLinear, FX_ARGB endColor); 112 FX_BOOL» » » SetLinear(int32_t iLinear, FX_ARGB endColor);
113 FX_BOOL» » » SetRadial(FX_INT32 iRadial, FX_ARGB endColor); 113 FX_BOOL» » » SetRadial(int32_t iRadial, FX_ARGB endColor);
114 }; 114 };
115 class CXFA_Margin : public CXFA_Data 115 class CXFA_Margin : public CXFA_Data
116 { 116 {
117 public: 117 public:
118 CXFA_Margin(CXFA_Node* pNode); 118 CXFA_Margin(CXFA_Node* pNode);
119 FX_BOOL GetLeftInset(FX_FLOAT &fInset, FX_FLOAT fDefInset = 0) c onst; 119 FX_BOOL GetLeftInset(FX_FLOAT &fInset, FX_FLOAT fDefInset = 0) c onst;
120 FX_BOOL GetTopInset(FX_FLOAT &fInset, FX_FLOAT fDefInset = 0) co nst; 120 FX_BOOL GetTopInset(FX_FLOAT &fInset, FX_FLOAT fDefInset = 0) co nst;
121 FX_BOOL GetRightInset(FX_FLOAT &fInset, FX_FLOAT fDefInset = 0) const; 121 FX_BOOL GetRightInset(FX_FLOAT &fInset, FX_FLOAT fDefInset = 0) const;
122 FX_BOOL GetBottomInset(FX_FLOAT &fInset, FX_FLOAT fDefInset = 0) const; 122 FX_BOOL GetBottomInset(FX_FLOAT &fInset, FX_FLOAT fDefInset = 0) const;
123 FX_BOOL SetLeftInset(FX_FLOAT fInset); 123 FX_BOOL SetLeftInset(FX_FLOAT fInset);
124 FX_BOOL SetTopInset(FX_FLOAT fInset); 124 FX_BOOL SetTopInset(FX_FLOAT fInset);
125 FX_BOOL SetRightInset(FX_FLOAT fInset); 125 FX_BOOL SetRightInset(FX_FLOAT fInset);
126 FX_BOOL SetBottomInset(FX_FLOAT fInset); 126 FX_BOOL SetBottomInset(FX_FLOAT fInset);
127 }; 127 };
128 class CXFA_Font : public CXFA_Data 128 class CXFA_Font : public CXFA_Data
129 { 129 {
130 public: 130 public:
131 CXFA_Font(CXFA_Node* pNode); 131 CXFA_Font(CXFA_Node* pNode);
132 132
133 FX_FLOAT GetBaselineShift(); 133 FX_FLOAT GetBaselineShift();
134 134
135 FX_FLOAT GetHorizontalScale(); 135 FX_FLOAT GetHorizontalScale();
136 136
137 FX_FLOAT GetVerticalScale(); 137 FX_FLOAT GetVerticalScale();
138 138
139 FX_FLOAT GetLetterSpacing(); 139 FX_FLOAT GetLetterSpacing();
140 140
141 FX_INT32» » GetLineThrough(); 141 int32_t» » GetLineThrough();
142 142
143 FX_INT32» » GetLineThroughPeriod(); 143 int32_t» » GetLineThroughPeriod();
144 144
145 FX_INT32» » GetOverline(); 145 int32_t» » GetOverline();
146 146
147 FX_INT32» » GetOverlinePeriod(); 147 int32_t» » GetOverlinePeriod();
148 148
149 FX_INT32» » GetUnderline(); 149 int32_t» » GetUnderline();
150 150
151 FX_INT32» » GetUnderlinePeriod(); 151 int32_t» » GetUnderlinePeriod();
152 152
153 FX_FLOAT GetFontSize(); 153 FX_FLOAT GetFontSize();
154 154
155 void GetTypeface(CFX_WideStringC &wsTypeFace); 155 void GetTypeface(CFX_WideStringC &wsTypeFace);
156 156
157 FX_BOOL IsBold(); 157 FX_BOOL IsBold();
158 158
159 FX_BOOL IsItalic(); 159 FX_BOOL IsItalic();
160 160
161 FX_BOOL IsUseKerning(); 161 FX_BOOL IsUseKerning();
162 162
163 FX_ARGB GetColor(); 163 FX_ARGB GetColor();
164 164
165 void SetColor(FX_ARGB color); 165 void SetColor(FX_ARGB color);
166 FX_BOOL SetBaselineShift(FX_FLOAT fBaselineShift); 166 FX_BOOL SetBaselineShift(FX_FLOAT fBaselineShift);
167 FX_BOOL SetHorizontalScale(FX_FLOAT fHorizontalScale); 167 FX_BOOL SetHorizontalScale(FX_FLOAT fHorizontalScale);
168 FX_BOOL SetVerticalScale(FX_FLOAT fVerticalScale); 168 FX_BOOL SetVerticalScale(FX_FLOAT fVerticalScale);
169 FX_BOOL SetLetterSpacing(FX_FLOAT fLetterSpacing, XFA_UN IT eUnit); 169 FX_BOOL SetLetterSpacing(FX_FLOAT fLetterSpacing, XFA_UN IT eUnit);
170 FX_BOOL» » » SetLineThrough(FX_INT32 iLineThrough); 170 FX_BOOL» » » SetLineThrough(int32_t iLineThrough);
171 FX_BOOL» » » SetLineThroughPeriod(FX_INT32 iLineThroughPeriod ); 171 FX_BOOL» » » SetLineThroughPeriod(int32_t iLineThroughPeriod) ;
172 FX_BOOL» » » SetOverline(FX_INT32 iOverline); 172 FX_BOOL» » » SetOverline(int32_t iOverline);
173 FX_BOOL» » » SetOverlinePeriod(FX_INT32 iOverlinePeriod); 173 FX_BOOL» » » SetOverlinePeriod(int32_t iOverlinePeriod);
174 FX_BOOL» » » SetUnderline(FX_INT32 iUnderline); 174 FX_BOOL» » » SetUnderline(int32_t iUnderline);
175 FX_BOOL» » » SetUnderlinePeriod(FX_INT32 iUnderlinePeriod); 175 FX_BOOL» » » SetUnderlinePeriod(int32_t iUnderlinePeriod);
176 }; 176 };
177 class CXFA_Caption : public CXFA_Data 177 class CXFA_Caption : public CXFA_Data
178 { 178 {
179 public: 179 public:
180 CXFA_Caption(CXFA_Node* pNode); 180 CXFA_Caption(CXFA_Node* pNode);
181 181
182 FX_INT32» » GetPresence(); 182 int32_t» » GetPresence();
183 183
184 FX_INT32» » GetPlacementType(); 184 int32_t» » GetPlacementType();
185 185
186 FX_FLOAT GetReserve(); 186 FX_FLOAT GetReserve();
187 187
188 CXFA_Margin GetMargin(); 188 CXFA_Margin GetMargin();
189 189
190 CXFA_Font GetFont(); 190 CXFA_Font GetFont();
191 191
192 CXFA_Value GetValue(); 192 CXFA_Value GetValue();
193 193
194 CXFA_Para GetPara(); 194 CXFA_Para GetPara();
195 FX_BOOL» » » SetPresence(FX_INT32 iPresence); 195 FX_BOOL» » » SetPresence(int32_t iPresence);
196 FX_BOOL» » » SetPlacementType(FX_INT32 iType); 196 FX_BOOL» » » SetPlacementType(int32_t iType);
197 FX_BOOL SetReserve(FX_FLOAT fReserve); 197 FX_BOOL SetReserve(FX_FLOAT fReserve);
198 }; 198 };
199 class CXFA_Para : public CXFA_Data 199 class CXFA_Para : public CXFA_Data
200 { 200 {
201 public: 201 public:
202 CXFA_Para(CXFA_Node* pNode); 202 CXFA_Para(CXFA_Node* pNode);
203 203
204 FX_INT32» » GetHorizontalAlign(); 204 int32_t» » GetHorizontalAlign();
205 205
206 FX_INT32» » GetVerticalAlign(); 206 int32_t» » GetVerticalAlign();
207 207
208 FX_FLOAT GetLineHeight(); 208 FX_FLOAT GetLineHeight();
209 FX_FLOAT GetMarginLeft(); 209 FX_FLOAT GetMarginLeft();
210 FX_FLOAT GetMarginRight(); 210 FX_FLOAT GetMarginRight();
211 FX_INT32» » GetOrphans(); 211 int32_t» » GetOrphans();
212 FX_FLOAT GetRadixOffset(); 212 FX_FLOAT GetRadixOffset();
213 FX_FLOAT GetSpaceAbove(); 213 FX_FLOAT GetSpaceAbove();
214 FX_FLOAT GetSpaceBelow(); 214 FX_FLOAT GetSpaceBelow();
215 FX_FLOAT GetTextIndent(); 215 FX_FLOAT GetTextIndent();
216 FX_INT32» » GetWidows(); 216 int32_t» » GetWidows();
217 FX_BOOL» » » SetHorizontalAlign(FX_INT32 iHorizontalAlign); 217 FX_BOOL» » » SetHorizontalAlign(int32_t iHorizontalAlign);
218 FX_BOOL» » » SetVerticalAlign(FX_INT32 iVerticalAlign); 218 FX_BOOL» » » SetVerticalAlign(int32_t iVerticalAlign);
219 FX_BOOL SetLineHeight(FX_FLOAT fLineHeight); 219 FX_BOOL SetLineHeight(FX_FLOAT fLineHeight);
220 FX_BOOL SetMarginLeft(FX_FLOAT fMarginLeft); 220 FX_BOOL SetMarginLeft(FX_FLOAT fMarginLeft);
221 FX_BOOL SetMarginRight(FX_FLOAT fMarginRight); 221 FX_BOOL SetMarginRight(FX_FLOAT fMarginRight);
222 FX_BOOL» » » SetOrphans(FX_INT32 iOrphans); 222 FX_BOOL» » » SetOrphans(int32_t iOrphans);
223 FX_BOOL SetRadixOffset(FX_FLOAT fRadixOffset); 223 FX_BOOL SetRadixOffset(FX_FLOAT fRadixOffset);
224 FX_BOOL SetSpaceAbove(FX_FLOAT fSpaceAbove); 224 FX_BOOL SetSpaceAbove(FX_FLOAT fSpaceAbove);
225 FX_BOOL SetSpaceBelow(FX_FLOAT fSpaceBelow); 225 FX_BOOL SetSpaceBelow(FX_FLOAT fSpaceBelow);
226 FX_BOOL SetTextIndent(FX_FLOAT fTextIndent); 226 FX_BOOL SetTextIndent(FX_FLOAT fTextIndent);
227 FX_BOOL» » » SetWidows(FX_INT32 iWidows); 227 FX_BOOL» » » SetWidows(int32_t iWidows);
228 }; 228 };
229 class CXFA_Keep : public CXFA_Data 229 class CXFA_Keep : public CXFA_Data
230 { 230 {
231 public: 231 public:
232 CXFA_Keep(CXFA_Node *pNode, CXFA_Node *pParent); 232 CXFA_Keep(CXFA_Node *pNode, CXFA_Node *pParent);
233 233
234 FX_INT32» » GetIntact(); 234 int32_t» » GetIntact();
235 FX_INT32» » GetNext(); 235 int32_t» » GetNext();
236 FX_INT32» » GetPrevious(); 236 int32_t» » GetPrevious();
237 FX_BOOL» » » SetIntact(FX_INT32 iIntact); 237 FX_BOOL» » » SetIntact(int32_t iIntact);
238 FX_BOOL» » » SetNext(FX_INT32 iNext); 238 FX_BOOL» » » SetNext(int32_t iNext);
239 FX_BOOL» » » SetPrevious(FX_INT32 iPrevious); 239 FX_BOOL» » » SetPrevious(int32_t iPrevious);
240 private: 240 private:
241 CXFA_Node *m_pParent; 241 CXFA_Node *m_pParent;
242 }; 242 };
243 enum XFA_TEXTENCODING { 243 enum XFA_TEXTENCODING {
244 XFA_TEXTENCODING_None, 244 XFA_TEXTENCODING_None,
245 XFA_TEXTENCODING_Big5, 245 XFA_TEXTENCODING_Big5,
246 XFA_TEXTENCODING_FontSpecific, 246 XFA_TEXTENCODING_FontSpecific,
247 XFA_TEXTENCODING_GBK, 247 XFA_TEXTENCODING_GBK,
248 XFA_TEXTENCODING_GB18030, 248 XFA_TEXTENCODING_GB18030,
249 XFA_TEXTENCODING_GB2312, 249 XFA_TEXTENCODING_GB2312,
250 XFA_TEXTENCODING_ISO8859NN, 250 XFA_TEXTENCODING_ISO8859NN,
251 XFA_TEXTENCODING_KSC5601, 251 XFA_TEXTENCODING_KSC5601,
252 XFA_TEXTENCODING_ShiftJIS, 252 XFA_TEXTENCODING_ShiftJIS,
253 XFA_TEXTENCODING_UCS2, 253 XFA_TEXTENCODING_UCS2,
254 XFA_TEXTENCODING_UTF16, 254 XFA_TEXTENCODING_UTF16,
255 XFA_TEXTENCODING_UTF8 255 XFA_TEXTENCODING_UTF8
256 }; 256 };
257 class CXFA_Event : public CXFA_Data 257 class CXFA_Event : public CXFA_Data
258 { 258 {
259 public: 259 public:
260 CXFA_Event(CXFA_Node* pNode); 260 CXFA_Event(CXFA_Node* pNode);
261 261
262 262
263 FX_INT32» » » GetActivity(); 263 int32_t» » » GetActivity();
264 264
265 FX_INT32» » » GetEventType(); 265 int32_t» » » GetEventType();
266 void GetRef(CFX_WideStringC &wsRef); 266 void GetRef(CFX_WideStringC &wsRef);
267 267
268 FX_INT32» » » GetExecuteRunAt(); 268 int32_t» » » GetExecuteRunAt();
269 FX_INT32» » » GetExecuteType(); 269 int32_t» » » GetExecuteType();
270 void GetExecuteConnection(CFX_WideString &wsC onnection); 270 void GetExecuteConnection(CFX_WideString &wsC onnection);
271 271
272 272
273 CXFA_Script GetScript(); 273 CXFA_Script GetScript();
274 274
275 275
276 CXFA_Submit GetSubmit(); 276 CXFA_Submit GetSubmit();
277 277
278 278
279 FX_INT32» » » GetSignDataOperation(); 279 int32_t» » » GetSignDataOperation();
280 void GetSignDataTarget(CFX_WideString &wsTarg et); 280 void GetSignDataTarget(CFX_WideString &wsTarg et);
281 FX_BOOL» » » » SetActivity(FX_INT32 iActivity); 281 FX_BOOL» » » » SetActivity(int32_t iActivity);
282 FX_BOOL» » » » SetEventType(FX_INT32 iEventType); 282 FX_BOOL» » » » SetEventType(int32_t iEventType);
283 FX_BOOL» » » » SetExecuteRunAt(FX_INT32 iExecuteRunAt); 283 FX_BOOL» » » » SetExecuteRunAt(int32_t iExecuteRunAt);
284 FX_BOOL» » » » SetExecuteType(FX_INT32 iExecuteType); 284 FX_BOOL» » » » SetExecuteType(int32_t iExecuteType);
285 FX_BOOL SetExecuteConnection(const CFX_WideStrin g& wsConnection); 285 FX_BOOL SetExecuteConnection(const CFX_WideStrin g& wsConnection);
286 FX_BOOL» » » » SetSignDataOperation(FX_INT32 iOperation ); 286 FX_BOOL» » » » SetSignDataOperation(int32_t iOperation) ;
287 FX_BOOL SetSignDataTarget(const CFX_WideString& wsTarget); 287 FX_BOOL SetSignDataTarget(const CFX_WideString& wsTarget);
288 }; 288 };
289 enum XFA_SCRIPTTYPE { 289 enum XFA_SCRIPTTYPE {
290 XFA_SCRIPTTYPE_Formcalc = 0, 290 XFA_SCRIPTTYPE_Formcalc = 0,
291 XFA_SCRIPTTYPE_Javascript, 291 XFA_SCRIPTTYPE_Javascript,
292 XFA_SCRIPTTYPE_Unkown, 292 XFA_SCRIPTTYPE_Unkown,
293 }; 293 };
294 class CXFA_Script : public CXFA_Data 294 class CXFA_Script : public CXFA_Data
295 { 295 {
296 public: 296 public:
297 CXFA_Script(CXFA_Node* pNode); 297 CXFA_Script(CXFA_Node* pNode);
298 void GetBinding(CFX_WideString &wsBinding); 298 void GetBinding(CFX_WideString &wsBinding);
299 299
300 XFA_SCRIPTTYPE GetContentType(); 300 XFA_SCRIPTTYPE GetContentType();
301 FX_INT32» » » GetRunAt(); 301 int32_t» » » GetRunAt();
302 void GetExpression(CFX_WideString &wsExpressi on); 302 void GetExpression(CFX_WideString &wsExpressi on);
303 FX_BOOL SetBinding(const CFX_WideString& wsBindi ng); 303 FX_BOOL SetBinding(const CFX_WideString& wsBindi ng);
304 FX_BOOL SetContentType(XFA_SCRIPTTYPE eType); 304 FX_BOOL SetContentType(XFA_SCRIPTTYPE eType);
305 FX_BOOL» » » » SetRunAt(FX_INT32 iRunAt); 305 FX_BOOL» » » » SetRunAt(int32_t iRunAt);
306 FX_BOOL SetExpression(const CFX_WideString& wsEx pression); 306 FX_BOOL SetExpression(const CFX_WideString& wsEx pression);
307 }; 307 };
308 class CXFA_Submit : public CXFA_Data 308 class CXFA_Submit : public CXFA_Data
309 { 309 {
310 public: 310 public:
311 CXFA_Submit(CXFA_Node* pNode); 311 CXFA_Submit(CXFA_Node* pNode);
312 FX_BOOL IsSubmitEmbedPDF(); 312 FX_BOOL IsSubmitEmbedPDF();
313 FX_INT32» » » GetSubmitFormat(); 313 int32_t» » » GetSubmitFormat();
314 void GetSubmitTarget(CFX_WideStringC &wsTarge t); 314 void GetSubmitTarget(CFX_WideStringC &wsTarge t);
315 XFA_TEXTENCODING GetSubmitTextEncoding(); 315 XFA_TEXTENCODING GetSubmitTextEncoding();
316 void GetSubmitXDPContent(CFX_WideStringC &wsC ontent); 316 void GetSubmitXDPContent(CFX_WideStringC &wsC ontent);
317 FX_BOOL» » » » SetSubmitFormat(FX_INT32 iSubmitFormat); 317 FX_BOOL» » » » SetSubmitFormat(int32_t iSubmitFormat);
318 FX_BOOL SetSubmitTarget(const CFX_WideString& ws Target); 318 FX_BOOL SetSubmitTarget(const CFX_WideString& ws Target);
319 FX_BOOL SetSubmitTextEncoding(XFA_TEXTENCODING e TextEncoding); 319 FX_BOOL SetSubmitTextEncoding(XFA_TEXTENCODING e TextEncoding);
320 FX_BOOL SetSubmitXDPContent(const CFX_WideString & wsContent); 320 FX_BOOL SetSubmitXDPContent(const CFX_WideString & wsContent);
321 }; 321 };
322 class CXFA_Value : public CXFA_Data 322 class CXFA_Value : public CXFA_Data
323 { 323 {
324 public: 324 public:
325 CXFA_Value(CXFA_Node* pNode) : CXFA_Data(pNode) {} 325 CXFA_Value(CXFA_Node* pNode) : CXFA_Data(pNode) {}
326 326
327 XFA_ELEMENT GetChildValueClassID(); 327 XFA_ELEMENT GetChildValueClassID();
328 328
329 FX_BOOL GetChildValueContent(CFX_WideString &wsContent); 329 FX_BOOL GetChildValueContent(CFX_WideString &wsContent);
330 CXFA_Arc GetArc(); 330 CXFA_Arc GetArc();
331 CXFA_Line GetLine(); 331 CXFA_Line GetLine();
332 CXFA_Rectangle GetRectangle(); 332 CXFA_Rectangle GetRectangle();
333 CXFA_Text GetText(); 333 CXFA_Text GetText();
334 CXFA_ExData GetExData(); 334 CXFA_ExData GetExData();
335 CXFA_Image GetImage(); 335 CXFA_Image GetImage();
336 FX_BOOL SetChildValueContent(const CFX_WideString& wsCon tent, FX_BOOL bNotify = FALSE, XFA_ELEMENT iType = XFA_ELEMENT_UNKNOWN); 336 FX_BOOL SetChildValueContent(const CFX_WideString& wsCon tent, FX_BOOL bNotify = FALSE, XFA_ELEMENT iType = XFA_ELEMENT_UNKNOWN);
337 }; 337 };
338 class CXFA_Line : public CXFA_Data 338 class CXFA_Line : public CXFA_Data
339 { 339 {
340 public: 340 public:
341 CXFA_Line(CXFA_Node* pNode) : CXFA_Data(pNode) {} 341 CXFA_Line(CXFA_Node* pNode) : CXFA_Data(pNode) {}
342 FX_INT32» » GetHand(); 342 int32_t» » GetHand();
343 FX_BOOL GetSlop(); 343 FX_BOOL GetSlop();
344 CXFA_Edge GetEdge(); 344 CXFA_Edge GetEdge();
345 FX_BOOL» » » SetHand(FX_INT32 iHand); 345 FX_BOOL» » » SetHand(int32_t iHand);
346 FX_BOOL» » » SetSlop(FX_INT32 iSlop); 346 FX_BOOL» » » SetSlop(int32_t iSlop);
347 }; 347 };
348 class CXFA_Text : public CXFA_Data 348 class CXFA_Text : public CXFA_Data
349 { 349 {
350 public: 350 public:
351 CXFA_Text(CXFA_Node* pNode); 351 CXFA_Text(CXFA_Node* pNode);
352 void GetName(CFX_WideStringC &wsName); 352 void GetName(CFX_WideStringC &wsName);
353 FX_INT32» GetMaxChars(); 353 int32_t» GetMaxChars();
354 void GetRid(CFX_WideStringC &wsRid); 354 void GetRid(CFX_WideStringC &wsRid);
355 void GetContent(CFX_WideString &wsText); 355 void GetContent(CFX_WideString &wsText);
356 void SetContent(CFX_WideString wsText, FX_BOOL bNotify = TRUE ); 356 void SetContent(CFX_WideString wsText, FX_BOOL bNotify = TRUE );
357 FX_BOOL SetName(const CFX_WideString& wsName); 357 FX_BOOL SetName(const CFX_WideString& wsName);
358 FX_BOOL» » SetMaxChars(FX_INT32 iMaxChars); 358 FX_BOOL» » SetMaxChars(int32_t iMaxChars);
359 FX_BOOL SetRid(const CFX_WideString& wsRid); 359 FX_BOOL SetRid(const CFX_WideString& wsRid);
360 }; 360 };
361 class CXFA_ExData : public CXFA_Data 361 class CXFA_ExData : public CXFA_Data
362 { 362 {
363 public: 363 public:
364 CXFA_ExData(CXFA_Node* pNode); 364 CXFA_ExData(CXFA_Node* pNode);
365 void GetContentType(CFX_WideStringC &wsContentType); 365 void GetContentType(CFX_WideStringC &wsContentType);
366 void GetHref(CFX_WideStringC &wsHref); 366 void GetHref(CFX_WideStringC &wsHref);
367 FX_INT32» GetMaxLength(); 367 int32_t» GetMaxLength();
368 void GetRid(CFX_WideStringC &wsRid); 368 void GetRid(CFX_WideStringC &wsRid);
369 FX_INT32» GetTransferEncoding(); 369 int32_t» GetTransferEncoding();
370 void GetContent(CFX_WideString &wsText); 370 void GetContent(CFX_WideString &wsText);
371 FX_BOOL SetContentType(const CFX_WideString& wsContentType); 371 FX_BOOL SetContentType(const CFX_WideString& wsContentType);
372 FX_BOOL SetHref(const CFX_WideString& wsHref); 372 FX_BOOL SetHref(const CFX_WideString& wsHref);
373 FX_BOOL» » SetMaxLength(FX_INT32 iMaxLength); 373 FX_BOOL» » SetMaxLength(int32_t iMaxLength);
374 FX_BOOL SetRid(const CFX_WideString& wsRid); 374 FX_BOOL SetRid(const CFX_WideString& wsRid);
375 FX_BOOL» » SetTransferEncoding(FX_INT32 iTransferEncoding); 375 FX_BOOL» » SetTransferEncoding(int32_t iTransferEncoding);
376 FX_BOOL SetContent(const CFX_WideString& wsText, FX_BOOL bNotify = FALSE, FX_BOOL bScriptModify = FALSE, FX_BOOL bSyncData = TRUE); 376 FX_BOOL SetContent(const CFX_WideString& wsText, FX_BOOL bNotify = FALSE, FX_BOOL bScriptModify = FALSE, FX_BOOL bSyncData = TRUE);
377 }; 377 };
378 class CXFA_Image : public CXFA_Data 378 class CXFA_Image : public CXFA_Data
379 { 379 {
380 public: 380 public:
381 CXFA_Image(CXFA_Node* pNode, FX_BOOL bDefValue); 381 CXFA_Image(CXFA_Node* pNode, FX_BOOL bDefValue);
382 FX_INT32» GetAspect(); 382 int32_t» GetAspect();
383 FX_BOOL GetContentType(CFX_WideString &wsContentType); 383 FX_BOOL GetContentType(CFX_WideString &wsContentType);
384 FX_BOOL GetHref(CFX_WideString &wsHref); 384 FX_BOOL GetHref(CFX_WideString &wsHref);
385 FX_INT32» GetTransferEncoding(); 385 int32_t» GetTransferEncoding();
386 FX_BOOL GetContent(CFX_WideString &wsText); 386 FX_BOOL GetContent(CFX_WideString &wsText);
387 FX_BOOL» » SetAspect(FX_INT32 iAspect); 387 FX_BOOL» » SetAspect(int32_t iAspect);
388 FX_BOOL SetContentType(const CFX_WideString& wsContentType); 388 FX_BOOL SetContentType(const CFX_WideString& wsContentType);
389 FX_BOOL SetHref(const CFX_WideString& wsHref); 389 FX_BOOL SetHref(const CFX_WideString& wsHref);
390 FX_BOOL» » SetTransferEncoding(FX_INT32 iTransferEncoding); 390 FX_BOOL» » SetTransferEncoding(int32_t iTransferEncoding);
391 FX_BOOL SetContent(const CFX_WideString& wsText); 391 FX_BOOL SetContent(const CFX_WideString& wsText);
392 protected: 392 protected:
393 FX_BOOL m_bDefValue; 393 FX_BOOL m_bDefValue;
394 }; 394 };
395 class CXFA_Calculate : public CXFA_Data 395 class CXFA_Calculate : public CXFA_Data
396 { 396 {
397 public: 397 public:
398 CXFA_Calculate(CXFA_Node* pNode); 398 CXFA_Calculate(CXFA_Node* pNode);
399 399
400 FX_INT32» » GetOverride(); 400 int32_t» » GetOverride();
401 CXFA_Script GetScript(); 401 CXFA_Script GetScript();
402 void GetMessageText(CFX_WideString &wsMessage); 402 void GetMessageText(CFX_WideString &wsMessage);
403 FX_BOOL» » » SetOverride(FX_INT32 iOverride); 403 FX_BOOL» » » SetOverride(int32_t iOverride);
404 FX_BOOL SetMessageText(const CFX_WideString& wsMessage); 404 FX_BOOL SetMessageText(const CFX_WideString& wsMessage);
405 }; 405 };
406 class CXFA_Validate : public CXFA_Data 406 class CXFA_Validate : public CXFA_Data
407 { 407 {
408 public: 408 public:
409 CXFA_Validate(CXFA_Node* pNode); 409 CXFA_Validate(CXFA_Node* pNode);
410 FX_INT32» GetFormatTest(); 410 int32_t» GetFormatTest();
411 FX_BOOL SetFormatTest(CFX_WideString wsValue); 411 FX_BOOL SetFormatTest(CFX_WideString wsValue);
412 FX_INT32» GetNullTest(); 412 int32_t» GetNullTest();
413 FX_BOOL SetNullTest(CFX_WideString wsValue); 413 FX_BOOL SetNullTest(CFX_WideString wsValue);
414 FX_INT32» GetScriptTest(); 414 int32_t» GetScriptTest();
415 void GetFormatMessageText(CFX_WideString &wsMessage); 415 void GetFormatMessageText(CFX_WideString &wsMessage);
416 void SetFormatMessageText(CFX_WideString wsMessage); 416 void SetFormatMessageText(CFX_WideString wsMessage);
417 void GetNullMessageText(CFX_WideString &wsMessage); 417 void GetNullMessageText(CFX_WideString &wsMessage);
418 void SetNullMessageText(CFX_WideString wsMessage); 418 void SetNullMessageText(CFX_WideString wsMessage);
419 void GetScriptMessageText(CFX_WideString &wsMessage); 419 void GetScriptMessageText(CFX_WideString &wsMessage);
420 void SetScriptMessageText(CFX_WideString wsMessage); 420 void SetScriptMessageText(CFX_WideString wsMessage);
421 void GetPicture(CFX_WideString &wsPicture); 421 void GetPicture(CFX_WideString &wsPicture);
422 CXFA_Script GetScript(); 422 CXFA_Script GetScript();
423 protected: 423 protected:
424 void GetMessageText(CFX_WideString &wsMessage, FX_WSTR wsMess ageType); 424 void GetMessageText(CFX_WideString &wsMessage, FX_WSTR wsMess ageType);
425 void SetMessageText(CFX_WideString &wsMessage, FX_WSTR wsMess ageType); 425 void SetMessageText(CFX_WideString &wsMessage, FX_WSTR wsMess ageType);
426 FX_BOOL» » SetTestValue(FX_INT32 iType, CFX_WideString &wsValue, XF A_ATTRIBUTEENUM eName); 426 FX_BOOL» » SetTestValue(int32_t iType, CFX_WideString &wsValue, XFA _ATTRIBUTEENUM eName);
427 }; 427 };
428 class CXFA_Variables : public CXFA_Data 428 class CXFA_Variables : public CXFA_Data
429 { 429 {
430 public: 430 public:
431 CXFA_Variables(CXFA_Node* pNode); 431 CXFA_Variables(CXFA_Node* pNode);
432 432
433 FX_INT32» CountScripts(); 433 int32_t» CountScripts();
434 CXFA_Script»GetScript(FX_INT32 nIndex); 434 CXFA_Script»GetScript(int32_t nIndex);
435 }; 435 };
436 class CXFA_Bind : public CXFA_Data 436 class CXFA_Bind : public CXFA_Data
437 { 437 {
438 public: 438 public:
439 CXFA_Bind(CXFA_Node* pNode); 439 CXFA_Bind(CXFA_Node* pNode);
440 FX_INT32» GetMatch(); 440 int32_t» GetMatch();
441 void GetRef(CFX_WideStringC &wsRef); 441 void GetRef(CFX_WideStringC &wsRef);
442 void GetPicture(CFX_WideString &wsPicture); 442 void GetPicture(CFX_WideString &wsPicture);
443 FX_BOOL» » SetMatch(FX_INT32 iMatch); 443 FX_BOOL» » SetMatch(int32_t iMatch);
444 FX_BOOL SetRef(const CFX_WideString& wsRef); 444 FX_BOOL SetRef(const CFX_WideString& wsRef);
445 FX_BOOL SetPicture(const CFX_WideString& wsPicture); 445 FX_BOOL SetPicture(const CFX_WideString& wsPicture);
446 }; 446 };
447 class CXFA_Assist : public CXFA_Data 447 class CXFA_Assist : public CXFA_Data
448 { 448 {
449 public: 449 public:
450 CXFA_Assist(CXFA_Node* pNode); 450 CXFA_Assist(CXFA_Node* pNode);
451 451
452 CXFA_ToolTip GetToolTip(); 452 CXFA_ToolTip GetToolTip();
453 }; 453 };
(...skipping 28 matching lines...) Expand all
482 FX_BOOL IsCorner() const 482 FX_BOOL IsCorner() const
483 { 483 {
484 return GetClassID() == XFA_ELEMENT_Corner; 484 return GetClassID() == XFA_ELEMENT_Corner;
485 } 485 }
486 486
487 FX_BOOL IsEdge() const 487 FX_BOOL IsEdge() const
488 { 488 {
489 return GetClassID() == XFA_ELEMENT_Edge; 489 return GetClassID() == XFA_ELEMENT_Edge;
490 } 490 }
491 491
492 FX_INT32» » GetPresence() const; 492 int32_t» » GetPresence() const;
493 FX_BOOL IsVisible() const 493 FX_BOOL IsVisible() const
494 { 494 {
495 return GetPresence() == XFA_ATTRIBUTEENUM_Visible; 495 return GetPresence() == XFA_ATTRIBUTEENUM_Visible;
496 } 496 }
497 497
498 FX_INT32» » GetCapType() const; 498 int32_t» » GetCapType() const;
499 499
500 FX_INT32» » GetStrokeType() const; 500 int32_t» » GetStrokeType() const;
501 501
502 FX_FLOAT GetThickness() const; 502 FX_FLOAT GetThickness() const;
503 CXFA_Measurement GetMSThickness() const; 503 CXFA_Measurement GetMSThickness() const;
504 504
505 void SetThickness(FX_FLOAT fThickness); 505 void SetThickness(FX_FLOAT fThickness);
506 void SetMSThickness(CXFA_Measurement msThinkness); 506 void SetMSThickness(CXFA_Measurement msThinkness);
507 507
508 FX_ARGB GetColor() const; 508 FX_ARGB GetColor() const;
509 509
510 void SetColor(FX_ARGB argb); 510 void SetColor(FX_ARGB argb);
511 511
512 FX_INT32» » GetJoinType() const; 512 int32_t» » GetJoinType() const;
513 513
514 FX_BOOL IsInverted() const; 514 FX_BOOL IsInverted() const;
515 515
516 FX_FLOAT GetRadius() const; 516 FX_FLOAT GetRadius() const;
517 517
518 FX_BOOL SameStyles(CXFA_Stroke stroke, FX_DWORD dwFlags = 0) const; 518 FX_BOOL SameStyles(CXFA_Stroke stroke, FX_DWORD dwFlags = 0) const;
519 }; 519 };
520 class CXFA_Corner : public CXFA_Stroke 520 class CXFA_Corner : public CXFA_Stroke
521 { 521 {
522 public: 522 public:
(...skipping 21 matching lines...) Expand all
544 FX_BOOL IsBorder() const 544 FX_BOOL IsBorder() const
545 { 545 {
546 return GetClassID() == XFA_ELEMENT_Border; 546 return GetClassID() == XFA_ELEMENT_Border;
547 } 547 }
548 548
549 FX_BOOL IsRectangle() const 549 FX_BOOL IsRectangle() const
550 { 550 {
551 return GetClassID() == XFA_ELEMENT_Rectangle; 551 return GetClassID() == XFA_ELEMENT_Rectangle;
552 } 552 }
553 553
554 FX_INT32» » GetBreak() const; 554 int32_t» » GetBreak() const;
555 555
556 FX_INT32» » GetHand() const; 556 int32_t» » GetHand() const;
557 557
558 FX_INT32» » GetPresence() const; 558 int32_t» » GetPresence() const;
559 559
560 FX_INT32» » CountCorners() const; 560 int32_t» » CountCorners() const;
561 561
562 CXFA_Corner»» GetCorner(FX_INT32 nIndex) const; 562 CXFA_Corner»» GetCorner(int32_t nIndex) const;
563 563
564 FX_INT32» » CountEdges() const; 564 int32_t» » CountEdges() const;
565 565
566 CXFA_Edge» » GetEdge(FX_INT32 nIndex = 0) const; 566 CXFA_Edge» » GetEdge(int32_t nIndex = 0) const;
567 567
568 void GetStrokes(CXFA_StrokeArray &strokes) const; 568 void GetStrokes(CXFA_StrokeArray &strokes) const;
569 569
570 FX_BOOL IsCircular() const; 570 FX_BOOL IsCircular() const;
571 571
572 FX_BOOL GetStartAngle(FX_FLOAT &fStartAngle) const; 572 FX_BOOL GetStartAngle(FX_FLOAT &fStartAngle) const;
573 FX_FLOAT GetStartAngle() const 573 FX_FLOAT GetStartAngle() const
574 { 574 {
575 FX_FLOAT fStartAngle; 575 FX_FLOAT fStartAngle;
576 GetStartAngle(fStartAngle); 576 GetStartAngle(fStartAngle);
577 return fStartAngle; 577 return fStartAngle;
578 } 578 }
579 579
580 FX_BOOL GetSweepAngle(FX_FLOAT &fSweepAngle) const; 580 FX_BOOL GetSweepAngle(FX_FLOAT &fSweepAngle) const;
581 FX_FLOAT GetSweepAngle() const 581 FX_FLOAT GetSweepAngle() const
582 { 582 {
583 FX_FLOAT fSweepAngle; 583 FX_FLOAT fSweepAngle;
584 GetSweepAngle(fSweepAngle); 584 GetSweepAngle(fSweepAngle);
585 return fSweepAngle; 585 return fSweepAngle;
586 } 586 }
587 587
588 CXFA_Fill GetFill(FX_BOOL bModified = FALSE) const; 588 CXFA_Fill GetFill(FX_BOOL bModified = FALSE) const;
589 589
590 CXFA_Margin GetMargin() const; 590 CXFA_Margin GetMargin() const;
591 591
592 FX_BOOL SameStyles() const; 592 FX_BOOL SameStyles() const;
593 593
594 FX_INT32» » Get3DStyle(FX_BOOL &bVisible, FX_FLOAT &fThickness) cons t; 594 int32_t» » Get3DStyle(FX_BOOL &bVisible, FX_FLOAT &fThickness) cons t;
595 }; 595 };
596 class CXFA_Arc : public CXFA_Box 596 class CXFA_Arc : public CXFA_Box
597 { 597 {
598 public: 598 public:
599 CXFA_Arc(CXFA_Node *pNode) : CXFA_Box(pNode) {} 599 CXFA_Arc(CXFA_Node *pNode) : CXFA_Box(pNode) {}
600 }; 600 };
601 class CXFA_Border : public CXFA_Box 601 class CXFA_Border : public CXFA_Box
602 { 602 {
603 public: 603 public:
604 CXFA_Border(CXFA_Node *pNode) : CXFA_Box(pNode) {} 604 CXFA_Border(CXFA_Node *pNode) : CXFA_Box(pNode) {}
(...skipping 15 matching lines...) Expand all
620 XFA_VALUEPICTURE_DataBind, 620 XFA_VALUEPICTURE_DataBind,
621 }; 621 };
622 class CXFA_WidgetData : public CXFA_Data 622 class CXFA_WidgetData : public CXFA_Data
623 { 623 {
624 public: 624 public:
625 CXFA_WidgetData(CXFA_Node *pNode); 625 CXFA_WidgetData(CXFA_Node *pNode);
626 CXFA_Node* GetUIChild(); 626 CXFA_Node* GetUIChild();
627 627
628 XFA_ELEMENT GetUIType(); 628 XFA_ELEMENT GetUIType();
629 CFX_WideString GetRawValue(); 629 CFX_WideString GetRawValue();
630 FX_INT32 GetAccess(FX_BOOL bTemplate = FALSE); 630 int32_t GetAccess(FX_BOOL bTemplate = FALSE);
631 FX_BOOL GetAccessKey(CFX_WideStringC &wsAccessKey); 631 FX_BOOL GetAccessKey(CFX_WideStringC &wsAccessKey);
632 FX_INT32 GetAnchorType(); 632 int32_t GetAnchorType();
633 FX_INT32 GetColSpan(); 633 int32_t GetColSpan();
634 FX_INT32 GetPresence(); 634 int32_t GetPresence();
635 FX_INT32 GetRotate(); 635 int32_t GetRotate();
636 CXFA_Border GetBorder(FX_BOOL bModified = FALSE); 636 CXFA_Border GetBorder(FX_BOOL bModified = FALSE);
637 CXFA_Caption GetCaption(FX_BOOL bModified = FALSE); 637 CXFA_Caption GetCaption(FX_BOOL bModified = FALSE);
638 CXFA_Font GetFont(FX_BOOL bModified = FALSE); 638 CXFA_Font GetFont(FX_BOOL bModified = FALSE);
639 CXFA_Margin GetMargin(FX_BOOL bModified = FALSE); 639 CXFA_Margin GetMargin(FX_BOOL bModified = FALSE);
640 CXFA_Para GetPara(FX_BOOL bModified = FALSE); 640 CXFA_Para GetPara(FX_BOOL bModified = FALSE);
641 CXFA_Keep GetKeep(FX_BOOL bModified = FALSE); 641 CXFA_Keep GetKeep(FX_BOOL bModified = FALSE);
642 void GetEventList(CXFA_NodeArray &events); 642 void GetEventList(CXFA_NodeArray &events);
643 FX_INT32 GetEventByActivity(FX_INT32 iActivity, 643 int32_t GetEventByActivity(int32_t iActivity,
644 CXFA_NodeArray &events, 644 CXFA_NodeArray &events,
645 FX_BOOL bIsFormReady = FALSE); 645 FX_BOOL bIsFormReady = FALSE);
646 CXFA_Value GetDefaultValue(FX_BOOL bModified = FALSE); 646 CXFA_Value GetDefaultValue(FX_BOOL bModified = FALSE);
647 CXFA_Value GetFormValue(FX_BOOL bModified = FALSE); 647 CXFA_Value GetFormValue(FX_BOOL bModified = FALSE);
648 CXFA_Calculate GetCalculate(FX_BOOL bModified = FALSE); 648 CXFA_Calculate GetCalculate(FX_BOOL bModified = FALSE);
649 CXFA_Validate GetValidate(FX_BOOL bModified = FALSE); 649 CXFA_Validate GetValidate(FX_BOOL bModified = FALSE);
650 CXFA_Variables GetVariables(FX_BOOL bModified = FALSE); 650 CXFA_Variables GetVariables(FX_BOOL bModified = FALSE);
651 CXFA_Bind GetBind(FX_BOOL bModified = FALSE); 651 CXFA_Bind GetBind(FX_BOOL bModified = FALSE);
652 CXFA_Assist GetAssist(FX_BOOL bModified = FALSE); 652 CXFA_Assist GetAssist(FX_BOOL bModified = FALSE);
653 void GetRelevant(CFX_WideStringC &wsRelevant); 653 void GetRelevant(CFX_WideStringC &wsRelevant);
654 FX_DWORD GetRelevantStatus(); 654 FX_DWORD GetRelevantStatus();
655 FX_BOOL GetWidth(FX_FLOAT &fWidth); 655 FX_BOOL GetWidth(FX_FLOAT &fWidth);
656 FX_BOOL GetHeight(FX_FLOAT &fHeight); 656 FX_BOOL GetHeight(FX_FLOAT &fHeight);
657 FX_BOOL GetMinWidth(FX_FLOAT &fMinWidth); 657 FX_BOOL GetMinWidth(FX_FLOAT &fMinWidth);
658 FX_BOOL GetMinHeight(FX_FLOAT &fMinHeight); 658 FX_BOOL GetMinHeight(FX_FLOAT &fMinHeight);
659 FX_BOOL GetMaxWidth(FX_FLOAT &fMaxWidth); 659 FX_BOOL GetMaxWidth(FX_FLOAT &fMaxWidth);
660 FX_BOOL GetMaxHeight(FX_FLOAT &fMaxHeight); 660 FX_BOOL GetMaxHeight(FX_FLOAT &fMaxHeight);
661 CXFA_BindItems GetBindItems(); 661 CXFA_BindItems GetBindItems();
662 FX_BOOL SetAccess(FX_INT32 iAccess, FX_BOOL bNotify = TRUE); 662 FX_BOOL SetAccess(int32_t iAccess, FX_BOOL bNotify = TRUE);
663 FX_BOOL SetAccessKey(const CFX_WideString& wsAccessKey); 663 FX_BOOL SetAccessKey(const CFX_WideString& wsAccessKey);
664 FX_BOOL SetAnchorType(FX_INT32 iType); 664 FX_BOOL SetAnchorType(int32_t iType);
665 FX_BOOL SetColSpan(FX_INT32 iColSpan); 665 FX_BOOL SetColSpan(int32_t iColSpan);
666 FX_BOOL SetPresence(FX_INT32 iPresence); 666 FX_BOOL SetPresence(int32_t iPresence);
667 FX_BOOL SetRotate(FX_INT32 iRotate); 667 FX_BOOL SetRotate(int32_t iRotate);
668 FX_BOOL SetRelevant(const CFX_WideString& wsRelevant); 668 FX_BOOL SetRelevant(const CFX_WideString& wsRelevant);
669 FX_BOOL SetStatus(FX_DWORD dwStatus); 669 FX_BOOL SetStatus(FX_DWORD dwStatus);
670 FX_BOOL SetWidth(FX_FLOAT fWidth); 670 FX_BOOL SetWidth(FX_FLOAT fWidth);
671 FX_BOOL SetHeight(FX_FLOAT fHeight); 671 FX_BOOL SetHeight(FX_FLOAT fHeight);
672 FX_BOOL SetMinWidth(FX_FLOAT fMinWidth); 672 FX_BOOL SetMinWidth(FX_FLOAT fMinWidth);
673 FX_BOOL SetMinHeight(FX_FLOAT fMinHeight); 673 FX_BOOL SetMinHeight(FX_FLOAT fMinHeight);
674 FX_BOOL SetMaxWidth(FX_FLOAT fMaxWidth); 674 FX_BOOL SetMaxWidth(FX_FLOAT fMaxWidth);
675 FX_BOOL SetMaxHeight(FX_FLOAT fMaxHeight); 675 FX_BOOL SetMaxHeight(FX_FLOAT fMaxHeight);
676 FX_BOOL SetPos(FX_FLOAT x, FX_FLOAT y); 676 FX_BOOL SetPos(FX_FLOAT x, FX_FLOAT y);
677 FX_BOOL SetName(const CFX_WideString& wsName); 677 FX_BOOL SetName(const CFX_WideString& wsName);
678 FX_BOOL SetButtonHighlight(FX_INT32 iButtonHighlight); 678 FX_BOOL SetButtonHighlight(int32_t iButtonHighlight);
679 FX_BOOL SetButtonRollover(const CFX_WideString &wsRollover, FX_B OOL bRichText); 679 FX_BOOL SetButtonRollover(const CFX_WideString &wsRollover, FX_B OOL bRichText);
680 FX_BOOL SetButtonDown(const CFX_WideString& wsDown, FX_BOOL bRic hText); 680 FX_BOOL SetButtonDown(const CFX_WideString& wsDown, FX_BOOL bRic hText);
681 FX_BOOL SetCheckButtonShape(FX_INT32 iCheckButtonShape); 681 FX_BOOL SetCheckButtonShape(int32_t iCheckButtonShape);
682 FX_BOOL SetCheckButtonMark(FX_INT32 iCheckButtonMark); 682 FX_BOOL SetCheckButtonMark(int32_t iCheckButtonMark);
683 FX_BOOL SetCheckButtonSize(FX_FLOAT fCheckButtonMark); 683 FX_BOOL SetCheckButtonSize(FX_FLOAT fCheckButtonMark);
684 CXFA_Border GetUIBorder(FX_BOOL bModified = FALSE); 684 CXFA_Border GetUIBorder(FX_BOOL bModified = FALSE);
685 CXFA_Margin GetUIMargin(FX_BOOL bModified = FALSE); 685 CXFA_Margin GetUIMargin(FX_BOOL bModified = FALSE);
686 void GetUIMargin(CFX_RectF &rtUIMargin); 686 void GetUIMargin(CFX_RectF &rtUIMargin);
687 FX_INT32 GetButtonHighlight(); 687 int32_t GetButtonHighlight();
688 FX_BOOL GetButtonRollover(CFX_WideString &wsRollover, FX_BOOL &b RichText); 688 FX_BOOL GetButtonRollover(CFX_WideString &wsRollover, FX_BOOL &b RichText);
689 FX_BOOL GetButtonDown(CFX_WideString &wsDown, FX_BOOL &bRichText ); 689 FX_BOOL GetButtonDown(CFX_WideString &wsDown, FX_BOOL &bRichText );
690 FX_INT32 GetCheckButtonShape(); 690 int32_t GetCheckButtonShape();
691 FX_INT32 GetCheckButtonMark(); 691 int32_t GetCheckButtonMark();
692 FX_FLOAT GetCheckButtonSize(); 692 FX_FLOAT GetCheckButtonSize();
693 FX_BOOL IsAllowNeutral(); 693 FX_BOOL IsAllowNeutral();
694 FX_BOOL IsRadioButton(); 694 FX_BOOL IsRadioButton();
695 XFA_CHECKSTATE GetCheckState(); 695 XFA_CHECKSTATE GetCheckState();
696 void SetCheckState(XFA_CHECKSTATE eCheckState, FX_BOOL bNotif y = TRUE); 696 void SetCheckState(XFA_CHECKSTATE eCheckState, FX_BOOL bNotif y = TRUE);
697 CXFA_Node* GetExclGroupNode(); 697 CXFA_Node* GetExclGroupNode();
698 CXFA_Node* GetSelectedMember(); 698 CXFA_Node* GetSelectedMember();
699 CXFA_Node* SetSelectedMember(FX_WSTR wsName, FX_BOOL bNotify = TRUE ); 699 CXFA_Node* SetSelectedMember(FX_WSTR wsName, FX_BOOL bNotify = TRUE );
700 void SetSelectedMemberByValue(FX_WSTR wsValue, 700 void SetSelectedMemberByValue(FX_WSTR wsValue,
701 FX_BOOL bNotify = TRUE, 701 FX_BOOL bNotify = TRUE,
702 FX_BOOL bScriptModify = FALSE, 702 FX_BOOL bScriptModify = FALSE,
703 FX_BOOL bSyncData = TRUE); 703 FX_BOOL bSyncData = TRUE);
704 CXFA_Node* GetExclGroupFirstMember(); 704 CXFA_Node* GetExclGroupFirstMember();
705 CXFA_Node* GetExclGroupNextMember(CXFA_Node* pNode); 705 CXFA_Node* GetExclGroupNextMember(CXFA_Node* pNode);
706 FX_INT32 GetChoiceListCommitOn(); 706 int32_t GetChoiceListCommitOn();
707 FX_BOOL IsChoiceListAllowTextEntry(); 707 FX_BOOL IsChoiceListAllowTextEntry();
708 FX_INT32 GetChoiceListOpen(); 708 int32_t GetChoiceListOpen();
709 FX_BOOL IsListBox(); 709 FX_BOOL IsListBox();
710 FX_INT32 CountChoiceListItems(FX_BOOL bSaveValue = FALSE); 710 int32_t CountChoiceListItems(FX_BOOL bSaveValue = FALSE);
711 FX_BOOL GetChoiceListItem(CFX_WideString &wsText, FX_INT32 nInde x, FX_BOOL bSaveValue = FALSE); 711 FX_BOOL GetChoiceListItem(CFX_WideString &wsText, int32_t nIndex , FX_BOOL bSaveValue = FALSE);
712 void GetChoiceListItems(CFX_WideStringArray &wsTextArray, FX_ BOOL bSaveValue = FALSE); 712 void GetChoiceListItems(CFX_WideStringArray &wsTextArray, FX_ BOOL bSaveValue = FALSE);
713 FX_INT32 CountSelectedItems(); 713 int32_t CountSelectedItems();
714 FX_INT32 GetSelectedItem(FX_INT32 nIndex = 0); 714 int32_t GetSelectedItem(int32_t nIndex = 0);
715 void GetSelectedItems(CFX_Int32Array &iSelArray); 715 void GetSelectedItems(CFX_Int32Array &iSelArray);
716 void GetSelectedItemsValue(CFX_WideStringArray &wsSelTextArra y); 716 void GetSelectedItemsValue(CFX_WideStringArray &wsSelTextArra y);
717 FX_BOOL GetItemState(FX_INT32 nIndex); 717 FX_BOOL GetItemState(int32_t nIndex);
718 void SetItemState(FX_INT32 nIndex, FX_BOOL bSelected, 718 void SetItemState(int32_t nIndex, FX_BOOL bSelected,
719 FX_BOOL bNotify = FALSE, FX_BOOL bScriptMod ify = FALSE, 719 FX_BOOL bNotify = FALSE, FX_BOOL bScriptMod ify = FALSE,
720 FX_BOOL bSyncData = TRUE); 720 FX_BOOL bSyncData = TRUE);
721 void SetSelectdItems(CFX_Int32Array &iSelArray, FX_BOOL bNoti fy = FALSE, 721 void SetSelectdItems(CFX_Int32Array &iSelArray, FX_BOOL bNoti fy = FALSE,
722 FX_BOOL bScriptModify = FALSE, FX_BOOL b SyncData = TRUE); 722 FX_BOOL bScriptModify = FALSE, FX_BOOL b SyncData = TRUE);
723 void ClearAllSelections(); 723 void ClearAllSelections();
724 void InsertItem(const CFX_WideString &wsLabel, const CFX_Wide String &wsValue, 724 void InsertItem(const CFX_WideString &wsLabel, const CFX_Wide String &wsValue,
725 FX_INT32 nIndex = -1, FX_BOOL bNotify = FALSE ); 725 int32_t nIndex = -1, FX_BOOL bNotify = FALSE) ;
726 void GetItemLabel(FX_WSTR wsValue, CFX_WideString &wsLabel); 726 void GetItemLabel(FX_WSTR wsValue, CFX_WideString &wsLabel);
727 void GetItemValue(FX_WSTR wsLabel, CFX_WideString &wsValue); 727 void GetItemValue(FX_WSTR wsLabel, CFX_WideString &wsValue);
728 FX_BOOL DeleteItem(FX_INT32 nIndex, FX_BOOL bNotify = FALSE, 728 FX_BOOL DeleteItem(int32_t nIndex, FX_BOOL bNotify = FALSE,
729 FX_BOOL bScriptModify = FALSE, FX_BOOL bSyncD ata = TRUE); 729 FX_BOOL bScriptModify = FALSE, FX_BOOL bSyncD ata = TRUE);
730 FX_INT32 GetHorizontalScrollPolicy(); 730 int32_t GetHorizontalScrollPolicy();
731 FX_INT32 GetNumberOfCells(); 731 int32_t GetNumberOfCells();
732 FX_BOOL IsDateTimeEditUsePicker(); 732 FX_BOOL IsDateTimeEditUsePicker();
733 FX_BOOL SetValue(const CFX_WideString& wsValue, XFA_VALUEPICTURE eValueType); 733 FX_BOOL SetValue(const CFX_WideString& wsValue, XFA_VALUEPICTURE eValueType);
734 FX_BOOL GetPictureContent(CFX_WideString &wsPicture, XFA_VALUEPI CTURE ePicture); 734 FX_BOOL GetPictureContent(CFX_WideString &wsPicture, XFA_VALUEPI CTURE ePicture);
735 IFX_Locale* GetLocal(); 735 IFX_Locale* GetLocal();
736 FX_BOOL GetValue(CFX_WideString &wsValue, XFA_VALUEPICTURE eValu eType); 736 FX_BOOL GetValue(CFX_WideString &wsValue, XFA_VALUEPICTURE eValu eType);
737 FX_BOOL GetNormalizeDataValue(FX_WSTR wsValue, CFX_WideString &w sNormalizeValue); 737 FX_BOOL GetNormalizeDataValue(FX_WSTR wsValue, CFX_WideString &w sNormalizeValue);
738 FX_BOOL GetFormatDataValue(FX_WSTR wsValue, CFX_WideString &wsFo rmatedValue); 738 FX_BOOL GetFormatDataValue(FX_WSTR wsValue, CFX_WideString &wsFo rmatedValue);
739 void NormalizeNumStr(const CFX_WideString& wsValue, CFX_WideS tring& wsOutput); 739 void NormalizeNumStr(const CFX_WideString& wsValue, CFX_WideS tring& wsOutput);
740 CFX_WideString GetBarcodeType(); 740 CFX_WideString GetBarcodeType();
741 FX_BOOL GetBarcodeAttribute_CharEncoding(FX_INT32& val); 741 FX_BOOL GetBarcodeAttribute_CharEncoding(int32_t& val);
742 FX_BOOL GetBarcodeAttribute_Checksum(FX_INT32& val); 742 FX_BOOL GetBarcodeAttribute_Checksum(int32_t& val);
743 FX_BOOL GetBarcodeAttribute_DataLength(FX_INT32& val); 743 FX_BOOL GetBarcodeAttribute_DataLength(int32_t& val);
744 FX_BOOL GetBarcodeAttribute_StartChar(FX_CHAR& val); 744 FX_BOOL GetBarcodeAttribute_StartChar(FX_CHAR& val);
745 FX_BOOL GetBarcodeAttribute_EndChar(FX_CHAR& val); 745 FX_BOOL GetBarcodeAttribute_EndChar(FX_CHAR& val);
746 FX_BOOL GetBarcodeAttribute_ECLevel(FX_INT32& val); 746 FX_BOOL GetBarcodeAttribute_ECLevel(int32_t& val);
747 FX_BOOL GetBarcodeAttribute_ModuleWidth(FX_INT32& val); 747 FX_BOOL GetBarcodeAttribute_ModuleWidth(int32_t& val);
748 FX_BOOL GetBarcodeAttribute_ModuleHeight(FX_INT32& val); 748 FX_BOOL GetBarcodeAttribute_ModuleHeight(int32_t& val);
749 FX_BOOL GetBarcodeAttribute_PrintChecksum(FX_BOOL& val); 749 FX_BOOL GetBarcodeAttribute_PrintChecksum(FX_BOOL& val);
750 FX_BOOL GetBarcodeAttribute_TextLocation(FX_INT32& val); 750 FX_BOOL GetBarcodeAttribute_TextLocation(int32_t& val);
751 FX_BOOL GetBarcodeAttribute_Truncate(FX_BOOL& val); 751 FX_BOOL GetBarcodeAttribute_Truncate(FX_BOOL& val);
752 FX_BOOL GetBarcodeAttribute_WideNarrowRatio(FX_FLOAT& val); 752 FX_BOOL GetBarcodeAttribute_WideNarrowRatio(FX_FLOAT& val);
753 void GetPasswordChar(CFX_WideString &wsPassWord); 753 void GetPasswordChar(CFX_WideString &wsPassWord);
754 FX_BOOL IsAllowRichText(); 754 FX_BOOL IsAllowRichText();
755 FX_BOOL IsMultiLine(); 755 FX_BOOL IsMultiLine();
756 FX_INT32 GetVerticalScrollPolicy(); 756 int32_t GetVerticalScrollPolicy();
757 FX_INT32 GetMaxChars(XFA_ELEMENT& eType); 757 int32_t GetMaxChars(XFA_ELEMENT& eType);
758 FX_BOOL GetFracDigits(FX_INT32 &iFracDigits); 758 FX_BOOL GetFracDigits(int32_t &iFracDigits);
759 FX_BOOL GetLeadDigits(FX_INT32 &iLeadDigits); 759 FX_BOOL GetLeadDigits(int32_t &iLeadDigits);
760 CXFA_Filter GetFilter(FX_BOOL bModified = FALSE); 760 CXFA_Filter GetFilter(FX_BOOL bModified = FALSE);
761 CXFA_Manifest GetManifest(FX_BOOL bModified = FALSE); 761 CXFA_Manifest GetManifest(FX_BOOL bModified = FALSE);
762 762
763 FX_BOOL m_bIsNull; 763 FX_BOOL m_bIsNull;
764 FX_BOOL m_bPreNull; 764 FX_BOOL m_bPreNull;
765 protected: 765 protected:
766 void SyncValue(const CFX_WideString& wsValue, FX_BOOL bNotify ); 766 void SyncValue(const CFX_WideString& wsValue, FX_BOOL bNotify );
767 void InsertListTextItem(CXFA_Node* pItems, FX_WSTR wsText, FX _INT32 nIndex = -1); 767 void InsertListTextItem(CXFA_Node* pItems, FX_WSTR wsText, in t32_t nIndex = -1);
768 void FormatNumStr(const CFX_WideString& wsValue, IFX_Locale* pLocale, CFX_WideString& wsOutput); 768 void FormatNumStr(const CFX_WideString& wsValue, IFX_Locale* pLocale, CFX_WideString& wsOutput);
769 769
770 CXFA_Node* m_pUiChildNode; 770 CXFA_Node* m_pUiChildNode;
771 XFA_ELEMENT m_eUIType; 771 XFA_ELEMENT m_eUIType;
772 }; 772 };
773 class CXFA_Occur : public CXFA_Data 773 class CXFA_Occur : public CXFA_Data
774 { 774 {
775 public: 775 public:
776 CXFA_Occur(CXFA_Node* pNode); 776 CXFA_Occur(CXFA_Node* pNode);
777 FX_INT32» GetMax(); 777 int32_t» GetMax();
778 FX_INT32» GetMin(); 778 int32_t» GetMin();
779 FX_INT32» GetInitial(); 779 int32_t» GetInitial();
780 FX_BOOL» » GetOccurInfo(FX_INT32& iMin, FX_INT32& iMax, FX_INT32& i Init); 780 FX_BOOL» » GetOccurInfo(int32_t& iMin, int32_t& iMax, int32_t& iIni t);
781 void» » SetMax(FX_INT32 iMax); 781 void» » SetMax(int32_t iMax);
782 void» » SetMin(FX_INT32 iMin); 782 void» » SetMin(int32_t iMin);
783 }; 783 };
784 class CXFA_Filter : public CXFA_Data 784 class CXFA_Filter : public CXFA_Data
785 { 785 {
786 public: 786 public:
787 CXFA_Filter(CXFA_Node* pNode) : CXFA_Data(pNode) {} 787 CXFA_Filter(CXFA_Node* pNode) : CXFA_Data(pNode) {}
788 CFX_WideString GetFilterString(XFA_ATTRIBUTE eAttribute ); 788 CFX_WideString GetFilterString(XFA_ATTRIBUTE eAttribute );
789 XFA_ATTRIBUTEENUM GetAppearanceFilterType(); 789 XFA_ATTRIBUTEENUM GetAppearanceFilterType();
790 CFX_WideString GetAppearanceFilterContent(); 790 CFX_WideString GetAppearanceFilterContent();
791 XFA_ATTRIBUTEENUM GetCertificatesCredentialServerPolicy(); 791 XFA_ATTRIBUTEENUM GetCertificatesCredentialServerPolicy();
792 CFX_WideString GetCertificatesURL(); 792 CFX_WideString GetCertificatesURL();
793 CFX_WideString GetCertificatesURLPolicy(); 793 CFX_WideString GetCertificatesURLPolicy();
794 CXFA_WrapCertificate GetCertificatesEncryption(FX_BOOL bModified = FA LSE); 794 CXFA_WrapCertificate GetCertificatesEncryption(FX_BOOL bModified = FA LSE);
795 CXFA_WrapCertificate GetCertificatesIssuers(FX_BOOL bModified = FALSE ); 795 CXFA_WrapCertificate GetCertificatesIssuers(FX_BOOL bModified = FALSE );
796 CFX_WideString GetCertificatesKeyUsageString(XFA_ATTRIB UTE eAttribute); 796 CFX_WideString GetCertificatesKeyUsageString(XFA_ATTRIB UTE eAttribute);
797 CXFA_Oids GetCertificatesOids(); 797 CXFA_Oids GetCertificatesOids();
798 CXFA_WrapCertificate GetCertificatesSigning(FX_BOOL bModified = FALSE ); 798 CXFA_WrapCertificate GetCertificatesSigning(FX_BOOL bModified = FALSE );
799 CXFA_DigestMethods GetDigestMethods(FX_BOOL bModified = FALSE); 799 CXFA_DigestMethods GetDigestMethods(FX_BOOL bModified = FALSE);
800 CXFA_Encodings GetEncodings(FX_BOOL bModified = FALSE); 800 CXFA_Encodings GetEncodings(FX_BOOL bModified = FALSE);
801 CXFA_EncryptionMethods GetEncryptionMethods(FX_BOOL bModified = FALSE); 801 CXFA_EncryptionMethods GetEncryptionMethods(FX_BOOL bModified = FALSE);
802 XFA_ATTRIBUTEENUM GetHandlerType(); 802 XFA_ATTRIBUTEENUM GetHandlerType();
803 CFX_WideString GetHandlerContent(); 803 CFX_WideString GetHandlerContent();
804 XFA_ATTRIBUTEENUM GetlockDocumentType(); 804 XFA_ATTRIBUTEENUM GetlockDocumentType();
805 CFX_WideString GetlockDocumentContent(); 805 CFX_WideString GetlockDocumentContent();
806 FX_INT32» » » » GetMDPPermissions(); 806 int32_t» » » » GetMDPPermissions();
807 XFA_ATTRIBUTEENUM GetMDPSignatureType(); 807 XFA_ATTRIBUTEENUM GetMDPSignatureType();
808 808
809 CXFA_Reasons GetReasons(FX_BOOL bModified = FALSE); 809 CXFA_Reasons GetReasons(FX_BOOL bModified = FALSE);
810 CFX_WideString GetTimeStampServer(); 810 CFX_WideString GetTimeStampServer();
811 XFA_ATTRIBUTEENUM GetTimeStampType(); 811 XFA_ATTRIBUTEENUM GetTimeStampType();
812 }; 812 };
813 class CXFA_Certificate : public CXFA_Data 813 class CXFA_Certificate : public CXFA_Data
814 { 814 {
815 public: 815 public:
816 CXFA_Certificate(CXFA_Node* pNode) : CXFA_Data(pNode) {} 816 CXFA_Certificate(CXFA_Node* pNode) : CXFA_Data(pNode) {}
817 CFX_WideString GetCertificateName(); 817 CFX_WideString GetCertificateName();
818 CFX_WideString GetCertificateContent(); 818 CFX_WideString GetCertificateContent();
819 }; 819 };
820 class CXFA_WrapCertificate : public CXFA_Data 820 class CXFA_WrapCertificate : public CXFA_Data
821 { 821 {
822 public: 822 public:
823 CXFA_WrapCertificate(CXFA_Node* pNode) : CXFA_Data(pNode) {} 823 CXFA_WrapCertificate(CXFA_Node* pNode) : CXFA_Data(pNode) {}
824 XFA_ATTRIBUTEENUM GetType(); 824 XFA_ATTRIBUTEENUM GetType();
825 FX_INT32» » » CountCertificates(); 825 int32_t» » » CountCertificates();
826 CXFA_Certificate» GetCertificate(FX_INT32 nIndex); 826 CXFA_Certificate» GetCertificate(int32_t nIndex);
827 }; 827 };
828 class CXFA_Oids : public CXFA_Data 828 class CXFA_Oids : public CXFA_Data
829 { 829 {
830 public: 830 public:
831 CXFA_Oids(CXFA_Node* pNode) : CXFA_Data(pNode) {} 831 CXFA_Oids(CXFA_Node* pNode) : CXFA_Data(pNode) {}
832 XFA_ATTRIBUTEENUM GetOidsType(); 832 XFA_ATTRIBUTEENUM GetOidsType();
833 FX_INT32» » » CountOids(); 833 int32_t» » » CountOids();
834 CFX_WideString» » GetOidContent(FX_INT32 nIndex); 834 CFX_WideString» » GetOidContent(int32_t nIndex);
835 }; 835 };
836 class CXFA_SubjectDNs : public CXFA_Data 836 class CXFA_SubjectDNs : public CXFA_Data
837 { 837 {
838 public: 838 public:
839 CXFA_SubjectDNs(CXFA_Node* pNode) : CXFA_Data(pNode) {} 839 CXFA_SubjectDNs(CXFA_Node* pNode) : CXFA_Data(pNode) {}
840 XFA_ATTRIBUTEENUM GetSubjectDNsType(); 840 XFA_ATTRIBUTEENUM GetSubjectDNsType();
841 FX_INT32» » » » CountSubjectDNs(); 841 int32_t» » » » CountSubjectDNs();
842 CFX_WideString» » » GetSubjectDNString(FX_INT32 nIndex, XFA_ ATTRIBUTE eAttribute); 842 CFX_WideString» » » GetSubjectDNString(int32_t nIndex, XFA_A TTRIBUTE eAttribute);
843 CFX_WideString» » » GetSubjectDNContent(FX_INT32 nIndex); 843 CFX_WideString» » » GetSubjectDNContent(int32_t nIndex);
844 }; 844 };
845 class CXFA_DigestMethods : public CXFA_Data 845 class CXFA_DigestMethods : public CXFA_Data
846 { 846 {
847 public: 847 public:
848 CXFA_DigestMethods(CXFA_Node* pNode) : CXFA_Data(pNode) {} 848 CXFA_DigestMethods(CXFA_Node* pNode) : CXFA_Data(pNode) {}
849 XFA_ATTRIBUTEENUM GetDigestMethodsType(); 849 XFA_ATTRIBUTEENUM GetDigestMethodsType();
850 FX_INT32» » » » CountDigestMethods(); 850 int32_t» » » » CountDigestMethods();
851 CFX_WideString» » » GetDigestMethodContent(FX_INT32 nIndex); 851 CFX_WideString» » » GetDigestMethodContent(int32_t nIndex);
852 }; 852 };
853 class CXFA_Encodings : public CXFA_Data 853 class CXFA_Encodings : public CXFA_Data
854 { 854 {
855 public: 855 public:
856 CXFA_Encodings(CXFA_Node* pNode) : CXFA_Data(pNode) {} 856 CXFA_Encodings(CXFA_Node* pNode) : CXFA_Data(pNode) {}
857 XFA_ATTRIBUTEENUM GetEncodingsType(); 857 XFA_ATTRIBUTEENUM GetEncodingsType();
858 FX_INT32» » » » CountEncodings(); 858 int32_t» » » » CountEncodings();
859 CFX_WideString» » » GetEncodingContent(FX_INT32 nIndex); 859 CFX_WideString» » » GetEncodingContent(int32_t nIndex);
860 }; 860 };
861 class CXFA_EncryptionMethods : public CXFA_Data 861 class CXFA_EncryptionMethods : public CXFA_Data
862 { 862 {
863 public: 863 public:
864 CXFA_EncryptionMethods(CXFA_Node* pNode) : CXFA_Data(pNode) {} 864 CXFA_EncryptionMethods(CXFA_Node* pNode) : CXFA_Data(pNode) {}
865 XFA_ATTRIBUTEENUM GetEncryptionMethodsType(); 865 XFA_ATTRIBUTEENUM GetEncryptionMethodsType();
866 FX_INT32» » » » CountEncryptionMethods(); 866 int32_t» » » » CountEncryptionMethods();
867 CFX_WideString» » » GetEncryptionMethodContent(FX_INT32 nInd ex); 867 CFX_WideString» » » GetEncryptionMethodContent(int32_t nInde x);
868 }; 868 };
869 class CXFA_Reasons : public CXFA_Data 869 class CXFA_Reasons : public CXFA_Data
870 { 870 {
871 public: 871 public:
872 CXFA_Reasons(CXFA_Node* pNode) : CXFA_Data(pNode) {} 872 CXFA_Reasons(CXFA_Node* pNode) : CXFA_Data(pNode) {}
873 XFA_ATTRIBUTEENUM GetReasonsType(); 873 XFA_ATTRIBUTEENUM GetReasonsType();
874 FX_INT32» » » » CountReasons(); 874 int32_t» » » » CountReasons();
875 CFX_WideString» » » GetReasonContent(FX_INT32 nIndex); 875 CFX_WideString» » » GetReasonContent(int32_t nIndex);
876 }; 876 };
877 class CXFA_Manifest : public CXFA_Data 877 class CXFA_Manifest : public CXFA_Data
878 { 878 {
879 public: 879 public:
880 CXFA_Manifest(CXFA_Node* pNode) : CXFA_Data(pNode) {} 880 CXFA_Manifest(CXFA_Node* pNode) : CXFA_Data(pNode) {}
881 XFA_ATTRIBUTEENUM GetAction(); 881 XFA_ATTRIBUTEENUM GetAction();
882 FX_INT32» » » CountReives(); 882 int32_t» » » CountReives();
883 CFX_WideString» » GetRefContent(FX_INT32 nIndex); 883 CFX_WideString» » GetRefContent(int32_t nIndex);
884 }; 884 };
885 #endif 885 #endif
OLDNEW
« no previous file with comments | « xfa/include/fxfa/fxfa_basic.h ('k') | xfa/include/fxfa/fxfa_widget.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698