os/textandloc/localisation/localesupport/src/ls_table.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 1994-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
#include <ls_std.h>
sl@0
    20
#include "complocl.h"
sl@0
    21
sl@0
    22
sl@0
    23
/**
sl@0
    24
Gets the current language type.
sl@0
    25
@return language type.
sl@0
    26
*/
sl@0
    27
EXPORT_C TLanguage Locl::Language()
sl@0
    28
	{
sl@0
    29
sl@0
    30
	return(LLocaleData::Language);
sl@0
    31
	}
sl@0
    32
sl@0
    33
/**
sl@0
    34
Creates the localisation table.
sl@0
    35
@param aLocale A pointer to the structure to be created. It holds 
sl@0
    36
the system's locale settings.
sl@0
    37
*/
sl@0
    38
EXPORT_C void Locl::LocaleData(SLocaleData *aLocale)
sl@0
    39
	{
sl@0
    40
sl@0
    41
	aLocale->iCountryCode=LLocaleData::CountryCode;
sl@0
    42
	aLocale->iUniversalTimeOffset=LLocaleData::UniversalTimeOffset;
sl@0
    43
	aLocale->iDateFormat=LLocaleData::DateFormat;
sl@0
    44
	aLocale->iTimeFormat=LLocaleData::TimeFormat;
sl@0
    45
	aLocale->iCurrencySymbolPosition=LLocaleData::CurrencySymbolPosition;
sl@0
    46
	aLocale->iCurrencySpaceBetween=LLocaleData::CurrencySpaceBetween;
sl@0
    47
	aLocale->iCurrencyDecimalPlaces=LLocaleData::CurrencyDecimalPlaces;
sl@0
    48
	aLocale->iNegativeCurrencyFormat=TNegativeCurrencyFormat(LLocaleData::NegativeCurrencyFormat); // replaces iCurrencyNegativeInBrackets
sl@0
    49
	aLocale->iCurrencyTriadsAllowed=LLocaleData::CurrencyTriadsAllowed;
sl@0
    50
	aLocale->iThousandsSeparator=*LLocaleData::ThousandsSeparator;
sl@0
    51
	aLocale->iDecimalSeparator=*LLocaleData::DecimalSeparator;
sl@0
    52
	TInt i=0;
sl@0
    53
	for(;i<KMaxDateSeparators;i++)
sl@0
    54
		aLocale->iDateSeparator[i]=*LLocaleData::DateSeparator[i];
sl@0
    55
	for(i=0;i<KMaxTimeSeparators;i++)
sl@0
    56
		aLocale->iTimeSeparator[i]=*LLocaleData::TimeSeparator[i];
sl@0
    57
	aLocale->iAmPmSymbolPosition=LLocaleData::AmPmSymbolPosition;
sl@0
    58
	aLocale->iAmPmSpaceBetween=LLocaleData::AmPmSpaceBetween;
sl@0
    59
//	aLocale->iDaylightSaving=LLocaleData::DaylightSaving;
sl@0
    60
	aLocale->iHomeDaylightSavingZone=LLocaleData::HomeDaylightSavingZone;
sl@0
    61
	aLocale->iWorkDays=LLocaleData::WorkDays;
sl@0
    62
	aLocale->iStartOfWeek=LLocaleData::StartOfWeek;
sl@0
    63
	aLocale->iClockFormat=LLocaleData::ClockFormat;
sl@0
    64
	aLocale->iUnitsGeneral=LLocaleData::UnitsGeneral;
sl@0
    65
	aLocale->iUnitsDistanceLong=LLocaleData::UnitsDistanceLong;
sl@0
    66
	aLocale->iUnitsDistanceShort=LLocaleData::UnitsDistanceShort;
sl@0
    67
	aLocale->iExtraNegativeCurrencyFormatFlags=LLocaleData::ExtraNegativeCurrencyFormatFlags;
sl@0
    68
	aLocale->iLanguageDowngrade[0] = static_cast<TUint16>(LLocaleData::LanguageDowngrade[0]);
sl@0
    69
	aLocale->iLanguageDowngrade[1] = static_cast<TUint16>(LLocaleData::LanguageDowngrade[1]);
sl@0
    70
	aLocale->iLanguageDowngrade[2] = static_cast<TUint16>(LLocaleData::LanguageDowngrade[2]);
sl@0
    71
	}
sl@0
    72
sl@0
    73
/**
sl@0
    74
Gets the address of the currency symbol, e.g. '$' for US dollar.
sl@0
    75
@return The address of the currency symbol.
sl@0
    76
*/
sl@0
    77
EXPORT_C const TText * Locl::CurrencySymbol()
sl@0
    78
	{
sl@0
    79
sl@0
    80
	return(LLocaleData::CurrencySymbol);
sl@0
    81
	}
sl@0
    82
sl@0
    83
/**
sl@0
    84
Gets the address of the short date format.
sl@0
    85
@return The address of the short date format.
sl@0
    86
*/
sl@0
    87
EXPORT_C const TText* Locl::ShortDateFormatSpec()
sl@0
    88
	{
sl@0
    89
sl@0
    90
	return(LLocaleData::ShortDateFormatSpec);
sl@0
    91
	}
sl@0
    92
sl@0
    93
/**
sl@0
    94
Gets the address of the long date format.
sl@0
    95
@return The address of the long date format.
sl@0
    96
*/
sl@0
    97
EXPORT_C const TText* Locl::LongDateFormatSpec()
sl@0
    98
	{
sl@0
    99
sl@0
   100
	return(LLocaleData::LongDateFormatSpec);
sl@0
   101
	}
sl@0
   102
sl@0
   103
/**
sl@0
   104
Gets the address of the time format.
sl@0
   105
@return The address of the time format.
sl@0
   106
*/
sl@0
   107
EXPORT_C const TText* Locl::TimeFormatSpec()
sl@0
   108
	{
sl@0
   109
sl@0
   110
	return(LLocaleData::TimeFormatSpec);
sl@0
   111
	}
sl@0
   112
sl@0
   113
/**
sl@0
   114
Gets the address of the FAT utility functions.
sl@0
   115
@return The address of the FAT utility functions.
sl@0
   116
*/
sl@0
   117
EXPORT_C const TFatUtilityFunctions* Locl::FatUtilityFunctions()
sl@0
   118
	{
sl@0
   119
sl@0
   120
	return(LLocaleData::FatUtilityFunctions);
sl@0
   121
	}
sl@0
   122
sl@0
   123
/**
sl@0
   124
Gets the address of the date suffix table. A date suffix table
sl@0
   125
stores the suffix strings of the 31 days in a month, e.g. in English, 
sl@0
   126
"st" for first day of the month, "nd" for the second day of the month.
sl@0
   127
@return The address of the date suffix table.
sl@0
   128
*/
sl@0
   129
EXPORT_C const TText * const * Locl::DateSuffixTable()
sl@0
   130
	{
sl@0
   131
sl@0
   132
	return(&LLanguage::DateSuffixTable[0]);
sl@0
   133
	}
sl@0
   134
sl@0
   135
/**
sl@0
   136
Gets the address of the day table, which stores the names 
sl@0
   137
of weekdays. In English, it starts with "Monday" and ends
sl@0
   138
with "Sunday".
sl@0
   139
@return The address of the day table.
sl@0
   140
*/
sl@0
   141
EXPORT_C const TText * const * Locl::DayTable()
sl@0
   142
	{
sl@0
   143
sl@0
   144
	return(&LLanguage::DayTable[0]);
sl@0
   145
	}
sl@0
   146
sl@0
   147
/**
sl@0
   148
Gets the address of the abbreviated day table, which stores 
sl@0
   149
the abbreviated names of weekdays. In English, it starts
sl@0
   150
with "Mon" and ends with "Sun".
sl@0
   151
@return The address of the abbreviated day table.
sl@0
   152
*/
sl@0
   153
EXPORT_C const TText * const * Locl::DayAbbTable()
sl@0
   154
	{
sl@0
   155
sl@0
   156
	return(&LLanguage::DayAbbTable[0]);
sl@0
   157
	}
sl@0
   158
sl@0
   159
/**
sl@0
   160
Gets the address of the month table, which stores 
sl@0
   161
the names of the months. In English, it starts with 
sl@0
   162
"January", and ends with "December".
sl@0
   163
@return The address of the month table.
sl@0
   164
*/
sl@0
   165
EXPORT_C const TText * const * Locl::MonthTable()
sl@0
   166
	{
sl@0
   167
sl@0
   168
	return(&LLanguage::MonthTable[0]);
sl@0
   169
	}
sl@0
   170
sl@0
   171
/**
sl@0
   172
Gets the address of the abbreviated month table, which stores 
sl@0
   173
the abbreviated names of the months, In English, it starts
sl@0
   174
with "Jan", and ends with "Dec".
sl@0
   175
@return The address of the month table.
sl@0
   176
*/
sl@0
   177
EXPORT_C const TText * const * Locl::MonthAbbTable()
sl@0
   178
	{
sl@0
   179
sl@0
   180
	return(&LLanguage::MonthAbbTable[0]);
sl@0
   181
	}
sl@0
   182
sl@0
   183
/**
sl@0
   184
Gets the address of the AmPm table, which stores the expression 
sl@0
   185
for the morning and the afternoon, in English, "am" for the
sl@0
   186
morning and "pm" for the afternoon.
sl@0
   187
@return The address of the AmPm table.
sl@0
   188
*/
sl@0
   189
EXPORT_C const TText * const * Locl::AmPmTable()
sl@0
   190
	{
sl@0
   191
sl@0
   192
	return(&LLanguage::AmPmTable[0]);
sl@0
   193
	}
sl@0
   194
sl@0
   195
/**
sl@0
   196
Gets the address of the message table. The message table contains 
sl@0
   197
messages that the base software may need to issue without the 
sl@0
   198
benefit of access to compiled resources.
sl@0
   199
@return The address of the message table.
sl@0
   200
*/
sl@0
   201
EXPORT_C const TText * const * Locl::MsgTable()
sl@0
   202
	{
sl@0
   203
sl@0
   204
	return(&LMessages::MsgTable[0]);
sl@0
   205
	}
sl@0
   206
sl@0
   207
/**
sl@0
   208
Gets the address of the locale character set object which contains 
sl@0
   209
collation rules etc. It is used in Unicode builds to supply 
sl@0
   210
locale-specific character attribute and collation data.
sl@0
   211
@return The address of the locale character set object, or NULL 
sl@0
   212
in case of a non-UNICODE build.
sl@0
   213
*/
sl@0
   214
EXPORT_C const LCharSet* Locl::CharSet()
sl@0
   215
	{
sl@0
   216
	#ifdef _UNICODE
sl@0
   217
		return &TheCharSet;
sl@0
   218
	#else
sl@0
   219
		return NULL;
sl@0
   220
	#endif
sl@0
   221
	}
sl@0
   222
sl@0
   223
/**
sl@0
   224
Gets the address of the character type conversion table.
sl@0
   225
The character type conversion table does not exist in 
sl@0
   226
the Unicode build. This table has 256 items which classifies
sl@0
   227
256 ASCII codes into: Uppercase letter, Lowercase letter, 
sl@0
   228
Punctuation, Decimal digit etc..
sl@0
   229
@return The address of the character type conversion table, 
sl@0
   230
or NULL in case of a UNICODE build.
sl@0
   231
*/
sl@0
   232
EXPORT_C const TUint8 * Locl::TypeTable()
sl@0
   233
	{
sl@0
   234
	#ifdef _UNICODE
sl@0
   235
		return NULL;
sl@0
   236
	#else
sl@0
   237
		return(&LAlphabet::TypeTable[0]);
sl@0
   238
	#endif 		
sl@0
   239
	}
sl@0
   240
sl@0
   241
sl@0
   242
/**
sl@0
   243
Gets the address of the uppercase table. The uppercase table 
sl@0
   244
does not exist in the Unicode build. It is used to convert 
sl@0
   245
the letter in lowercase to uppercase.
sl@0
   246
@return The address of the uppercase table, or NULL
sl@0
   247
in case of a UNICODE build.
sl@0
   248
*/
sl@0
   249
EXPORT_C const TText * Locl::UpperTable()
sl@0
   250
	{
sl@0
   251
	#ifdef _UNICODE
sl@0
   252
		return NULL;
sl@0
   253
	#else
sl@0
   254
		return(&LAlphabet::UpperTable[0]);
sl@0
   255
	#endif 
sl@0
   256
sl@0
   257
	}
sl@0
   258
sl@0
   259
/**
sl@0
   260
Gets the address of the lowercase table. The lowercase table
sl@0
   261
does not exist in the Unicode build. It is used to convert 
sl@0
   262
the letter in uppercase to lowercase.
sl@0
   263
@return The address of the lowercase table, or NULL
sl@0
   264
in case of a UNICODE build.
sl@0
   265
*/
sl@0
   266
EXPORT_C const TText * Locl::LowerTable()
sl@0
   267
	{
sl@0
   268
	#ifdef _UNICODE
sl@0
   269
		return NULL;
sl@0
   270
	#else
sl@0
   271
		return(&LAlphabet::LowerTable[0]);
sl@0
   272
	#endif 
sl@0
   273
	}
sl@0
   274
sl@0
   275
/**
sl@0
   276
Gets the address of the fold table. The fold table does not exist 
sl@0
   277
in the Unicode build. It is used to fold the character according
sl@0
   278
to a specified folding method: converting characters to their 
sl@0
   279
lower case form, if any; stripping accents; converting digits 
sl@0
   280
representing values 0..9 to characters '0'..'9' etc..
sl@0
   281
@return The address of the fold table, or NULL
sl@0
   282
in case of a UNICODE build.
sl@0
   283
*/
sl@0
   284
EXPORT_C const TText * Locl::FoldTable()
sl@0
   285
	{
sl@0
   286
	#ifdef _UNICODE
sl@0
   287
		return NULL;
sl@0
   288
sl@0
   289
	#else
sl@0
   290
		return(&LAlphabet::FoldTable[0]);
sl@0
   291
	#endif 
sl@0
   292
	}
sl@0
   293
sl@0
   294
/**
sl@0
   295
Gets the address of the collate table. The collate table does
sl@0
   296
not exist in the Unicode build. This table is used to collate
sl@0
   297
strings to remove differences between characters that are deemed 
sl@0
   298
unimportant for the purposes of ordering characters.
sl@0
   299
@return The address of the collate table, or NULL
sl@0
   300
in case of a UNICODE build.
sl@0
   301
*/
sl@0
   302
EXPORT_C const TText * Locl::CollTable()
sl@0
   303
	{
sl@0
   304
	#ifdef _UNICODE
sl@0
   305
		return NULL;
sl@0
   306
	#else
sl@0
   307
		return(&LAlphabet::CollTable[0]);
sl@0
   308
	#endif 
sl@0
   309
	}
sl@0
   310
sl@0
   311
/**
sl@0
   312
Check whether it is a Unicode Build.
sl@0
   313
@return ETrue for Unicode Build, EFalse for non-Unicode Build.
sl@0
   314
*/
sl@0
   315
EXPORT_C TBool Locl::UniCode()
sl@0
   316
	{
sl@0
   317
	#ifdef _UNICODE
sl@0
   318
		return ETrue;
sl@0
   319
	#else
sl@0
   320
		return EFalse;
sl@0
   321
	#endif 
sl@0
   322
	}