summaryrefslogtreecommitdiff
path: root/xfa/fxfa/parser/xfa_localevalue.h
blob: bd88b0c325d496ad6b5f414de8815dcea2fe4763 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
// Copyright 2014 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_XFA_LOCALEVALUE_H_
#define XFA_FXFA_PARSER_XFA_LOCALEVALUE_H_

#include "xfa/include/fxfa/fxfa_objectacc.h"

class IFX_Locale;
class CFX_Unitime;
class CXFA_LocaleMgr;

#define XFA_VT_NULL 0
#define XFA_VT_BOOLEAN 1
#define XFA_VT_INTEGER 2
#define XFA_VT_DECIMAL 4
#define XFA_VT_FLOAT 8
#define XFA_VT_TEXT 16
#define XFA_VT_DATE 32
#define XFA_VT_TIME 64
#define XFA_VT_DATETIME 128

class CXFA_LocaleValue {
 public:
  CXFA_LocaleValue();
  CXFA_LocaleValue(const CXFA_LocaleValue& value);
  CXFA_LocaleValue(uint32_t dwType, CXFA_LocaleMgr* pLocaleMgr);
  CXFA_LocaleValue(uint32_t dwType,
                   const CFX_WideString& wsValue,
                   CXFA_LocaleMgr* pLocaleMgr);
  CXFA_LocaleValue(uint32_t dwType,
                   const CFX_WideString& wsValue,
                   const CFX_WideString& wsFormat,
                   IFX_Locale* pLocale,
                   CXFA_LocaleMgr* pLocaleMgr);
  ~CXFA_LocaleValue();
  CXFA_LocaleValue& operator=(const CXFA_LocaleValue& value);

  FX_BOOL ValidateValue(const CFX_WideString& wsValue,
                        const CFX_WideString& wsPattern,
                        IFX_Locale* pLocale,
                        CFX_WideString* pMatchFormat = NULL);
  FX_BOOL FormatPatterns(CFX_WideString& wsResult,
                         const CFX_WideString& wsFormat,
                         IFX_Locale* pLocale,
                         XFA_VALUEPICTURE eValueType) const;
  FX_BOOL FormatSinglePattern(CFX_WideString& wsResult,
                              const CFX_WideString& wsFormat,
                              IFX_Locale* pLocale,
                              XFA_VALUEPICTURE eValueType) const;
  FX_BOOL ValidateCanonicalValue(const CFX_WideString& wsValue,
                                 uint32_t dwVType);
  FX_BOOL ValidateCanonicalDate(const CFX_WideString& wsDate,
                                CFX_Unitime& unDate);
  FX_BOOL ValidateCanonicalTime(const CFX_WideString& wsTime);
  FX_BOOL ValidateCanonicalDateTime(const CFX_WideString& wsDateTime);
  void GetNumbericFormat(CFX_WideString& wsFormat,
                         int32_t nIntLen,
                         int32_t nDecLen,
                         FX_BOOL bSign = TRUE);
  FX_BOOL ValidateNumericTemp(CFX_WideString& wsNumeric,
                              CFX_WideString& wsFormat,
                              IFX_Locale* pLocale = NULL,
                              int32_t* pos = NULL);

  CFX_WideString GetValue() const;
  uint32_t GetType() const;
  void SetValue(const CFX_WideString& wsValue, uint32_t dwType);
  CFX_WideString GetText() const;
  FX_FLOAT GetNum() const;
  FX_DOUBLE GetDoubleNum() const;
  CFX_Unitime GetDate() const;
  CFX_Unitime GetTime() const;
  CFX_Unitime GetDateTime() const;
  FX_BOOL SetText(const CFX_WideString& wsText);
  FX_BOOL SetText(const CFX_WideString& wsText,
                  const CFX_WideString& wsFormat,
                  IFX_Locale* pLocale);
  FX_BOOL SetNum(FX_FLOAT fNum);
  FX_BOOL SetNum(const CFX_WideString& wsNum,
                 const CFX_WideString& wsFormat,
                 IFX_Locale* pLocale);
  FX_BOOL SetDate(const CFX_Unitime& d);
  FX_BOOL SetDate(const CFX_WideString& wsDate,
                  const CFX_WideString& wsFormat,
                  IFX_Locale* pLocale);
  FX_BOOL SetTime(const CFX_Unitime& t);
  FX_BOOL SetTime(const CFX_WideString& wsTime,
                  const CFX_WideString& wsFormat,
                  IFX_Locale* pLocale);
  FX_BOOL SetDateTime(const CFX_Unitime& dt);
  FX_BOOL SetDateTime(const CFX_WideString& wsDateTime,
                      const CFX_WideString& wsFormat,
                      IFX_Locale* pLocale);
  bool IsNull() const { return m_dwType == XFA_VT_NULL; }
  FX_BOOL IsEmpty() const { return m_wsValue.IsEmpty(); }
  FX_BOOL IsValid() const { return m_bValid; }

 protected:
  FX_BOOL ParsePatternValue(const CFX_WideString& wsValue,
                            const CFX_WideString& wsPattern,
                            IFX_Locale* pLocale);
  CXFA_LocaleMgr* m_pLocaleMgr;
  CFX_WideString m_wsValue;
  uint32_t m_dwType;
  FX_BOOL m_bValid;
};

#endif  // XFA_FXFA_PARSER_XFA_LOCALEVALUE_H_