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