1 /* |
|
2 * Copyright (c) 2000-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #if !defined __COMPLOCL_H__ |
|
20 #define __COMPLOCL_H__ |
|
21 |
|
22 #if !defined(__E32STD_H__) |
|
23 #include <E32std.h> |
|
24 #endif |
|
25 |
|
26 class LLocaleData |
|
27 { |
|
28 public: |
|
29 static const TLanguage Language; |
|
30 static const TInt CountryCode; |
|
31 static const TInt UniversalTimeOffset; |
|
32 static const TDateFormat DateFormat; |
|
33 static const TTimeFormat TimeFormat; |
|
34 static const TText * const CurrencySymbol; |
|
35 static const TLocalePos CurrencySymbolPosition; |
|
36 static const TBool CurrencySpaceBetween; |
|
37 static const TInt CurrencyDecimalPlaces; |
|
38 static const TLocale::TNegativeCurrencyFormat NegativeCurrencyFormat; |
|
39 static const TBool CurrencyTriadsAllowed; |
|
40 static const TText* const ShortDateFormatSpec; |
|
41 static const TText* const LongDateFormatSpec; |
|
42 static const TText* const TimeFormatSpec; |
|
43 static const TFatUtilityFunctions* const FatUtilityFunctions; |
|
44 static const TText * const ThousandsSeparator; |
|
45 static const TText * const DecimalSeparator; |
|
46 static const TText * const DateSeparator[KMaxDateSeparators]; |
|
47 static const TText * const TimeSeparator[KMaxTimeSeparators]; |
|
48 static const TLocalePos AmPmSymbolPosition; |
|
49 static const TBool AmPmSpaceBetween; |
|
50 static const TDaylightSavingZone HomeDaylightSavingZone; |
|
51 static const TUint WorkDays; |
|
52 static const TDay StartOfWeek; |
|
53 static const TClockFormat ClockFormat; |
|
54 static const TUnitsFormat UnitsGeneral; |
|
55 static const TUnitsFormat UnitsDistanceLong; |
|
56 static const TUnitsFormat UnitsDistanceShort; |
|
57 static const TUint ExtraNegativeCurrencyFormatFlags; |
|
58 static const TLanguage LanguageDowngrade[3]; |
|
59 static const TDigitType DigitType; |
|
60 }; |
|
61 |
|
62 #endif |
|
63 |
|
64 |
|