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

Side by Side Diff: fpdfsdk/include/javascript/PublicMethods.h

Issue 1252613002: FX_BOOL considered harmful. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Manual edits. Created 5 years, 5 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 | « fpdfsdk/include/javascript/JS_Value.h ('k') | fpdfsdk/include/javascript/app.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 FPDFSDK_INCLUDE_JAVASCRIPT_PUBLICMETHODS_H_ 7 #ifndef FPDFSDK_INCLUDE_JAVASCRIPT_PUBLICMETHODS_H_
8 #define FPDFSDK_INCLUDE_JAVASCRIPT_PUBLICMETHODS_H_ 8 #define FPDFSDK_INCLUDE_JAVASCRIPT_PUBLICMETHODS_H_
9 9
10 #include "JS_Define.h" 10 #include "JS_Define.h"
11 11
12 class CJS_PublicMethods : public CJS_Object 12 class CJS_PublicMethods : public CJS_Object
13 { 13 {
14 public: 14 public:
15 CJS_PublicMethods(JSFXObject pObject) : CJS_Object(pObject) {}; 15 CJS_PublicMethods(JSFXObject pObject) : CJS_Object(pObject) {};
16 virtual ~CJS_PublicMethods(void){}; 16 virtual ~CJS_PublicMethods(void){};
17 17
18 public: 18 public:
19 » static FX_BOOL AFNumber_Format(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError); 19 » static bool AFNumber_Format(IFXJS_Context* cc, const CJS_Parameters& par ams, CJS_Value& vRet, CFX_WideString& sError);
20 » static FX_BOOL AFNumber_Keystroke(IFXJS_Context* cc, const CJS_Parameter s& params, CJS_Value& vRet, CFX_WideString& sError); 20 » static bool AFNumber_Keystroke(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError);
21 » static FX_BOOL AFPercent_Format(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError); 21 » static bool AFPercent_Format(IFXJS_Context* cc, const CJS_Parameters& pa rams, CJS_Value& vRet, CFX_WideString& sError);
22 » static FX_BOOL AFPercent_Keystroke(IFXJS_Context* cc, const CJS_Paramete rs& params, CJS_Value& vRet, CFX_WideString& sError); 22 » static bool AFPercent_Keystroke(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError);
23 » static FX_BOOL AFDate_FormatEx(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError); 23 » static bool AFDate_FormatEx(IFXJS_Context* cc, const CJS_Parameters& par ams, CJS_Value& vRet, CFX_WideString& sError);
24 » static FX_BOOL AFDate_KeystrokeEx(IFXJS_Context* cc, const CJS_Parameter s& params, CJS_Value& vRet, CFX_WideString& sError); 24 » static bool AFDate_KeystrokeEx(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError);
25 » static FX_BOOL AFDate_Format(IFXJS_Context* cc, const CJS_Parameters& pa rams, CJS_Value& vRet, CFX_WideString& sError); 25 » static bool AFDate_Format(IFXJS_Context* cc, const CJS_Parameters& param s, CJS_Value& vRet, CFX_WideString& sError);
26 » static FX_BOOL AFDate_Keystroke(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError); 26 » static bool AFDate_Keystroke(IFXJS_Context* cc, const CJS_Parameters& pa rams, CJS_Value& vRet, CFX_WideString& sError);
27 » static FX_BOOL AFTime_FormatEx(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError); // 27 » static bool AFTime_FormatEx(IFXJS_Context* cc, const CJS_Parameters& par ams, CJS_Value& vRet, CFX_WideString& sError); //
28 » static FX_BOOL AFTime_KeystrokeEx(IFXJS_Context* cc, const CJS_Parameter s& params, CJS_Value& vRet, CFX_WideString& sError); 28 » static bool AFTime_KeystrokeEx(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError);
29 » static FX_BOOL AFTime_Format(IFXJS_Context* cc, const CJS_Parameters& pa rams, CJS_Value& vRet, CFX_WideString& sError); 29 » static bool AFTime_Format(IFXJS_Context* cc, const CJS_Parameters& param s, CJS_Value& vRet, CFX_WideString& sError);
30 » static FX_BOOL AFTime_Keystroke(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError); 30 » static bool AFTime_Keystroke(IFXJS_Context* cc, const CJS_Parameters& pa rams, CJS_Value& vRet, CFX_WideString& sError);
31 » static FX_BOOL AFSpecial_Format(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError); 31 » static bool AFSpecial_Format(IFXJS_Context* cc, const CJS_Parameters& pa rams, CJS_Value& vRet, CFX_WideString& sError);
32 » static FX_BOOL AFSpecial_Keystroke(IFXJS_Context* cc, const CJS_Paramete rs& params, CJS_Value& vRet, CFX_WideString& sError); 32 » static bool AFSpecial_Keystroke(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError);
33 » static FX_BOOL AFSpecial_KeystrokeEx(IFXJS_Context* cc, const CJS_Parame ters& params, CJS_Value& vRet, CFX_WideString& sError);// 33 » static bool AFSpecial_KeystrokeEx(IFXJS_Context* cc, const CJS_Parameter s& params, CJS_Value& vRet, CFX_WideString& sError);//
34 » static FX_BOOL AFSimple(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError); 34 » static bool AFSimple(IFXJS_Context* cc, const CJS_Parameters& params, CJ S_Value& vRet, CFX_WideString& sError);
35 » static FX_BOOL AFMakeNumber(IFXJS_Context* cc, const CJS_Parameters& par ams, CJS_Value& vRet, CFX_WideString& sError); 35 » static bool AFMakeNumber(IFXJS_Context* cc, const CJS_Parameters& params , CJS_Value& vRet, CFX_WideString& sError);
36 » static FX_BOOL AFSimple_Calculate(IFXJS_Context* cc, const CJS_Parameter s& params, CJS_Value& vRet, CFX_WideString& sError); 36 » static bool AFSimple_Calculate(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError);
37 » static FX_BOOL AFRange_Validate(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError); 37 » static bool AFRange_Validate(IFXJS_Context* cc, const CJS_Parameters& pa rams, CJS_Value& vRet, CFX_WideString& sError);
38 » static FX_BOOL AFMergeChange(IFXJS_Context* cc, const CJS_Parameters& pa rams, CJS_Value& vRet, CFX_WideString& sError); 38 » static bool AFMergeChange(IFXJS_Context* cc, const CJS_Parameters& param s, CJS_Value& vRet, CFX_WideString& sError);
39 » static FX_BOOL AFParseDateEx(IFXJS_Context* cc, const CJS_Parameters& pa rams, CJS_Value& vRet, CFX_WideString& sError); 39 » static bool AFParseDateEx(IFXJS_Context* cc, const CJS_Parameters& param s, CJS_Value& vRet, CFX_WideString& sError);
40 » static FX_BOOL AFExtractNums(IFXJS_Context* cc, const CJS_Parameters& pa rams, CJS_Value& vRet, CFX_WideString& sError); 40 » static bool AFExtractNums(IFXJS_Context* cc, const CJS_Parameters& param s, CJS_Value& vRet, CFX_WideString& sError);
41 41
42 public: 42 public:
43 JS_STATIC_GLOBAL_FUN(AFNumber_Format); 43 JS_STATIC_GLOBAL_FUN(AFNumber_Format);
44 JS_STATIC_GLOBAL_FUN(AFNumber_Keystroke); 44 JS_STATIC_GLOBAL_FUN(AFNumber_Keystroke);
45 JS_STATIC_GLOBAL_FUN(AFPercent_Format); 45 JS_STATIC_GLOBAL_FUN(AFPercent_Format);
46 JS_STATIC_GLOBAL_FUN(AFPercent_Keystroke); 46 JS_STATIC_GLOBAL_FUN(AFPercent_Keystroke);
47 JS_STATIC_GLOBAL_FUN(AFDate_FormatEx); 47 JS_STATIC_GLOBAL_FUN(AFDate_FormatEx);
48 JS_STATIC_GLOBAL_FUN(AFDate_KeystrokeEx); 48 JS_STATIC_GLOBAL_FUN(AFDate_KeystrokeEx);
49 JS_STATIC_GLOBAL_FUN(AFDate_Format); 49 JS_STATIC_GLOBAL_FUN(AFDate_Format);
50 JS_STATIC_GLOBAL_FUN(AFDate_Keystroke); 50 JS_STATIC_GLOBAL_FUN(AFDate_Keystroke);
(...skipping 10 matching lines...) Expand all
61 JS_STATIC_GLOBAL_FUN(AFRange_Validate); 61 JS_STATIC_GLOBAL_FUN(AFRange_Validate);
62 JS_STATIC_GLOBAL_FUN(AFMergeChange); 62 JS_STATIC_GLOBAL_FUN(AFMergeChange);
63 JS_STATIC_GLOBAL_FUN(AFParseDateEx); 63 JS_STATIC_GLOBAL_FUN(AFParseDateEx);
64 JS_STATIC_GLOBAL_FUN(AFExtractNums); 64 JS_STATIC_GLOBAL_FUN(AFExtractNums);
65 65
66 JS_STATIC_DECLARE_GLOBAL_FUN(); 66 JS_STATIC_DECLARE_GLOBAL_FUN();
67 67
68 public: 68 public:
69 static int ParseStringInteger(const CFX_Wid eString & string,int nStart,int & nSkip, int nMaxStep); 69 static int ParseStringInteger(const CFX_Wid eString & string,int nStart,int & nSkip, int nMaxStep);
70 static CFX_WideString ParseStringString(const CFX_WideString& string, int nStart, int& nSkip); 70 static CFX_WideString ParseStringString(const CFX_WideString& string, int nStart, int& nSkip);
71 » static double» » » MakeRegularDate(const CFX_WideString & v alue,const CFX_WideString & format, FX_BOOL& bWrongFormat); 71 » static double» » » MakeRegularDate(const CFX_WideString & v alue,const CFX_WideString & format, bool& bWrongFormat);
72 static CFX_WideString MakeFormatDate(double dDate,const CFX_WideString & format); 72 static CFX_WideString MakeFormatDate(double dDate,const CFX_WideString & format);
73 » static FX_BOOL» » » ConvertStringToNumber(const FX_WCHAR* sw Source, double & dRet, FX_BOOL & bDot); 73 » static bool» » » ConvertStringToNumber(const FX_WCHAR* sw Source, double & dRet, bool & bDot);
74 static double ParseStringToNumber(const FX_WCHAR* swSo urce); 74 static double ParseStringToNumber(const FX_WCHAR* swSo urce);
75 » static double» » » ParseNormalDate(const CFX_WideString & v alue, FX_BOOL& bWrongFormat); 75 » static double» » » ParseNormalDate(const CFX_WideString & v alue, bool& bWrongFormat);
76 static double MakeInterDate(CFX_WideString strValue); 76 static double MakeInterDate(CFX_WideString strValue);
77 » static double» » » ParseNumber(const FX_WCHAR* swSource, FX _BOOL& bAllDigits, FX_BOOL& bDot, FX_BOOL& bSign, FX_BOOL& bKXJS); 77 » static double» » » ParseNumber(const FX_WCHAR* swSource, bo ol& bAllDigits, bool& bDot, bool& bSign, bool& bKXJS);
78 78
79 public: 79 public:
80 static CFX_WideString StrLTrim(const FX_WCHAR* pStr); 80 static CFX_WideString StrLTrim(const FX_WCHAR* pStr);
81 static CFX_WideString StrRTrim(const FX_WCHAR* pStr); 81 static CFX_WideString StrRTrim(const FX_WCHAR* pStr);
82 static CFX_WideString StrTrim(const FX_WCHAR* pStr); 82 static CFX_WideString StrTrim(const FX_WCHAR* pStr);
83 83
84 static CFX_ByteString StrLTrim(const FX_CHAR* pStr); 84 static CFX_ByteString StrLTrim(const FX_CHAR* pStr);
85 static CFX_ByteString StrRTrim(const FX_CHAR* pStr); 85 static CFX_ByteString StrRTrim(const FX_CHAR* pStr);
86 static CFX_ByteString StrTrim(const FX_CHAR* pStr); 86 static CFX_ByteString StrTrim(const FX_CHAR* pStr);
87 87
88 » static FX_BOOL» » » IsNumber(const FX_CHAR* string); 88 » static bool» » » IsNumber(const FX_CHAR* string);
89 » static FX_BOOL» » » IsNumber(const FX_WCHAR* string); 89 » static bool» » » IsNumber(const FX_WCHAR* string);
90 90
91 » static FX_BOOL» » » IsDigit(char ch); 91 » static bool» » » IsDigit(char ch);
92 » static FX_BOOL» » » IsDigit(wchar_t ch); 92 » static bool» » » IsDigit(wchar_t ch);
93 » static FX_BOOL» » » IsAlphabetic(wchar_t ch); 93 » static bool» » » IsAlphabetic(wchar_t ch);
94 » static FX_BOOL» » » IsAlphaNumeric(wchar_t ch); 94 » static bool» » » IsAlphaNumeric(wchar_t ch);
95 95
96 » static FX_BOOL» » » maskSatisfied(wchar_t c_Change,wchar_t c _Mask); 96 » static bool» » » maskSatisfied(wchar_t c_Change,wchar_t c _Mask);
97 » static FX_BOOL» » » isReservedMaskChar(wchar_t ch); 97 » static bool» » » isReservedMaskChar(wchar_t ch);
98 98
99 static double AF_Simple(const FX_WCHAR* sFuction, doub le dValue1, double dValue2); 99 static double AF_Simple(const FX_WCHAR* sFuction, doub le dValue1, double dValue2);
100 static CJS_Array AF_MakeArrayFromList(v8::Isolate* isolat e, CJS_Value val); 100 static CJS_Array AF_MakeArrayFromList(v8::Isolate* isolat e, CJS_Value val);
101 }; 101 };
102 102
103 #endif // FPDFSDK_INCLUDE_JAVASCRIPT_PUBLICMETHODS_H_ 103 #endif // FPDFSDK_INCLUDE_JAVASCRIPT_PUBLICMETHODS_H_
OLDNEW
« no previous file with comments | « fpdfsdk/include/javascript/JS_Value.h ('k') | fpdfsdk/include/javascript/app.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698