OLD | NEW |
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 XFA_SRC_FXFA_PARSER_XFA_LOCALEMGR_H_ | 7 #ifndef XFA_FXFA_PARSER_XFA_LOCALEMGR_H_ |
8 #define XFA_SRC_FXFA_PARSER_XFA_LOCALEMGR_H_ | 8 #define XFA_FXFA_PARSER_XFA_LOCALEMGR_H_ |
9 | 9 |
| 10 #include "xfa/fgas/localization/fgas_datetime.h" |
| 11 #include "xfa/fgas/localization/fgas_locale.h" |
| 12 #include "xfa/fxfa/parser/xfa_localemgr.h" |
10 #include "xfa/include/fxfa/fxfa_objectacc.h" | 13 #include "xfa/include/fxfa/fxfa_objectacc.h" |
11 #include "xfa/src/fgas/localization/fgas_datetime.h" | |
12 #include "xfa/src/fgas/localization/fgas_locale.h" | |
13 #include "xfa/src/fxfa/parser/xfa_localemgr.h" | |
14 | 14 |
15 class CXFA_Node; | 15 class CXFA_Node; |
16 class IFX_Locale; | 16 class IFX_Locale; |
17 | 17 |
18 #define XFA_LANGID_zh_CN 0x0804 | 18 #define XFA_LANGID_zh_CN 0x0804 |
19 #define XFA_LANGID_zh_TW 0x0404 | 19 #define XFA_LANGID_zh_TW 0x0404 |
20 #define XFA_LANGID_zh_HK 0x0c04 | 20 #define XFA_LANGID_zh_HK 0x0c04 |
21 #define XFA_LANGID_ja_JP 0x0411 | 21 #define XFA_LANGID_ja_JP 0x0411 |
22 #define XFA_LANGID_ko_KR 0x0412 | 22 #define XFA_LANGID_ko_KR 0x0412 |
23 #define XFA_LANGID_en_US 0x0409 | 23 #define XFA_LANGID_en_US 0x0409 |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 public: | 68 public: |
69 CXFA_TimeZoneProvider(); | 69 CXFA_TimeZoneProvider(); |
70 virtual ~CXFA_TimeZoneProvider(); | 70 virtual ~CXFA_TimeZoneProvider(); |
71 virtual void SetTimeZone(FX_TIMEZONE& tz); | 71 virtual void SetTimeZone(FX_TIMEZONE& tz); |
72 virtual void GetTimeZone(FX_TIMEZONE& tz); | 72 virtual void GetTimeZone(FX_TIMEZONE& tz); |
73 | 73 |
74 private: | 74 private: |
75 FX_TIMEZONE m_tz; | 75 FX_TIMEZONE m_tz; |
76 }; | 76 }; |
77 | 77 |
78 #endif // XFA_SRC_FXFA_PARSER_XFA_LOCALEMGR_H_ | 78 #endif // XFA_FXFA_PARSER_XFA_LOCALEMGR_H_ |
OLD | NEW |