1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/textandloc/localisation/localesupport/src/ls_table.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,322 @@
1.4 +/*
1.5 +* Copyright (c) 1994-2009 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description:
1.18 +*
1.19 +*/
1.20 +
1.21 +
1.22 +#include <ls_std.h>
1.23 +#include "complocl.h"
1.24 +
1.25 +
1.26 +/**
1.27 +Gets the current language type.
1.28 +@return language type.
1.29 +*/
1.30 +EXPORT_C TLanguage Locl::Language()
1.31 + {
1.32 +
1.33 + return(LLocaleData::Language);
1.34 + }
1.35 +
1.36 +/**
1.37 +Creates the localisation table.
1.38 +@param aLocale A pointer to the structure to be created. It holds
1.39 +the system's locale settings.
1.40 +*/
1.41 +EXPORT_C void Locl::LocaleData(SLocaleData *aLocale)
1.42 + {
1.43 +
1.44 + aLocale->iCountryCode=LLocaleData::CountryCode;
1.45 + aLocale->iUniversalTimeOffset=LLocaleData::UniversalTimeOffset;
1.46 + aLocale->iDateFormat=LLocaleData::DateFormat;
1.47 + aLocale->iTimeFormat=LLocaleData::TimeFormat;
1.48 + aLocale->iCurrencySymbolPosition=LLocaleData::CurrencySymbolPosition;
1.49 + aLocale->iCurrencySpaceBetween=LLocaleData::CurrencySpaceBetween;
1.50 + aLocale->iCurrencyDecimalPlaces=LLocaleData::CurrencyDecimalPlaces;
1.51 + aLocale->iNegativeCurrencyFormat=TNegativeCurrencyFormat(LLocaleData::NegativeCurrencyFormat); // replaces iCurrencyNegativeInBrackets
1.52 + aLocale->iCurrencyTriadsAllowed=LLocaleData::CurrencyTriadsAllowed;
1.53 + aLocale->iThousandsSeparator=*LLocaleData::ThousandsSeparator;
1.54 + aLocale->iDecimalSeparator=*LLocaleData::DecimalSeparator;
1.55 + TInt i=0;
1.56 + for(;i<KMaxDateSeparators;i++)
1.57 + aLocale->iDateSeparator[i]=*LLocaleData::DateSeparator[i];
1.58 + for(i=0;i<KMaxTimeSeparators;i++)
1.59 + aLocale->iTimeSeparator[i]=*LLocaleData::TimeSeparator[i];
1.60 + aLocale->iAmPmSymbolPosition=LLocaleData::AmPmSymbolPosition;
1.61 + aLocale->iAmPmSpaceBetween=LLocaleData::AmPmSpaceBetween;
1.62 +// aLocale->iDaylightSaving=LLocaleData::DaylightSaving;
1.63 + aLocale->iHomeDaylightSavingZone=LLocaleData::HomeDaylightSavingZone;
1.64 + aLocale->iWorkDays=LLocaleData::WorkDays;
1.65 + aLocale->iStartOfWeek=LLocaleData::StartOfWeek;
1.66 + aLocale->iClockFormat=LLocaleData::ClockFormat;
1.67 + aLocale->iUnitsGeneral=LLocaleData::UnitsGeneral;
1.68 + aLocale->iUnitsDistanceLong=LLocaleData::UnitsDistanceLong;
1.69 + aLocale->iUnitsDistanceShort=LLocaleData::UnitsDistanceShort;
1.70 + aLocale->iExtraNegativeCurrencyFormatFlags=LLocaleData::ExtraNegativeCurrencyFormatFlags;
1.71 + aLocale->iLanguageDowngrade[0] = static_cast<TUint16>(LLocaleData::LanguageDowngrade[0]);
1.72 + aLocale->iLanguageDowngrade[1] = static_cast<TUint16>(LLocaleData::LanguageDowngrade[1]);
1.73 + aLocale->iLanguageDowngrade[2] = static_cast<TUint16>(LLocaleData::LanguageDowngrade[2]);
1.74 + }
1.75 +
1.76 +/**
1.77 +Gets the address of the currency symbol, e.g. '$' for US dollar.
1.78 +@return The address of the currency symbol.
1.79 +*/
1.80 +EXPORT_C const TText * Locl::CurrencySymbol()
1.81 + {
1.82 +
1.83 + return(LLocaleData::CurrencySymbol);
1.84 + }
1.85 +
1.86 +/**
1.87 +Gets the address of the short date format.
1.88 +@return The address of the short date format.
1.89 +*/
1.90 +EXPORT_C const TText* Locl::ShortDateFormatSpec()
1.91 + {
1.92 +
1.93 + return(LLocaleData::ShortDateFormatSpec);
1.94 + }
1.95 +
1.96 +/**
1.97 +Gets the address of the long date format.
1.98 +@return The address of the long date format.
1.99 +*/
1.100 +EXPORT_C const TText* Locl::LongDateFormatSpec()
1.101 + {
1.102 +
1.103 + return(LLocaleData::LongDateFormatSpec);
1.104 + }
1.105 +
1.106 +/**
1.107 +Gets the address of the time format.
1.108 +@return The address of the time format.
1.109 +*/
1.110 +EXPORT_C const TText* Locl::TimeFormatSpec()
1.111 + {
1.112 +
1.113 + return(LLocaleData::TimeFormatSpec);
1.114 + }
1.115 +
1.116 +/**
1.117 +Gets the address of the FAT utility functions.
1.118 +@return The address of the FAT utility functions.
1.119 +*/
1.120 +EXPORT_C const TFatUtilityFunctions* Locl::FatUtilityFunctions()
1.121 + {
1.122 +
1.123 + return(LLocaleData::FatUtilityFunctions);
1.124 + }
1.125 +
1.126 +/**
1.127 +Gets the address of the date suffix table. A date suffix table
1.128 +stores the suffix strings of the 31 days in a month, e.g. in English,
1.129 +"st" for first day of the month, "nd" for the second day of the month.
1.130 +@return The address of the date suffix table.
1.131 +*/
1.132 +EXPORT_C const TText * const * Locl::DateSuffixTable()
1.133 + {
1.134 +
1.135 + return(&LLanguage::DateSuffixTable[0]);
1.136 + }
1.137 +
1.138 +/**
1.139 +Gets the address of the day table, which stores the names
1.140 +of weekdays. In English, it starts with "Monday" and ends
1.141 +with "Sunday".
1.142 +@return The address of the day table.
1.143 +*/
1.144 +EXPORT_C const TText * const * Locl::DayTable()
1.145 + {
1.146 +
1.147 + return(&LLanguage::DayTable[0]);
1.148 + }
1.149 +
1.150 +/**
1.151 +Gets the address of the abbreviated day table, which stores
1.152 +the abbreviated names of weekdays. In English, it starts
1.153 +with "Mon" and ends with "Sun".
1.154 +@return The address of the abbreviated day table.
1.155 +*/
1.156 +EXPORT_C const TText * const * Locl::DayAbbTable()
1.157 + {
1.158 +
1.159 + return(&LLanguage::DayAbbTable[0]);
1.160 + }
1.161 +
1.162 +/**
1.163 +Gets the address of the month table, which stores
1.164 +the names of the months. In English, it starts with
1.165 +"January", and ends with "December".
1.166 +@return The address of the month table.
1.167 +*/
1.168 +EXPORT_C const TText * const * Locl::MonthTable()
1.169 + {
1.170 +
1.171 + return(&LLanguage::MonthTable[0]);
1.172 + }
1.173 +
1.174 +/**
1.175 +Gets the address of the abbreviated month table, which stores
1.176 +the abbreviated names of the months, In English, it starts
1.177 +with "Jan", and ends with "Dec".
1.178 +@return The address of the month table.
1.179 +*/
1.180 +EXPORT_C const TText * const * Locl::MonthAbbTable()
1.181 + {
1.182 +
1.183 + return(&LLanguage::MonthAbbTable[0]);
1.184 + }
1.185 +
1.186 +/**
1.187 +Gets the address of the AmPm table, which stores the expression
1.188 +for the morning and the afternoon, in English, "am" for the
1.189 +morning and "pm" for the afternoon.
1.190 +@return The address of the AmPm table.
1.191 +*/
1.192 +EXPORT_C const TText * const * Locl::AmPmTable()
1.193 + {
1.194 +
1.195 + return(&LLanguage::AmPmTable[0]);
1.196 + }
1.197 +
1.198 +/**
1.199 +Gets the address of the message table. The message table contains
1.200 +messages that the base software may need to issue without the
1.201 +benefit of access to compiled resources.
1.202 +@return The address of the message table.
1.203 +*/
1.204 +EXPORT_C const TText * const * Locl::MsgTable()
1.205 + {
1.206 +
1.207 + return(&LMessages::MsgTable[0]);
1.208 + }
1.209 +
1.210 +/**
1.211 +Gets the address of the locale character set object which contains
1.212 +collation rules etc. It is used in Unicode builds to supply
1.213 +locale-specific character attribute and collation data.
1.214 +@return The address of the locale character set object, or NULL
1.215 +in case of a non-UNICODE build.
1.216 +*/
1.217 +EXPORT_C const LCharSet* Locl::CharSet()
1.218 + {
1.219 + #ifdef _UNICODE
1.220 + return &TheCharSet;
1.221 + #else
1.222 + return NULL;
1.223 + #endif
1.224 + }
1.225 +
1.226 +/**
1.227 +Gets the address of the character type conversion table.
1.228 +The character type conversion table does not exist in
1.229 +the Unicode build. This table has 256 items which classifies
1.230 +256 ASCII codes into: Uppercase letter, Lowercase letter,
1.231 +Punctuation, Decimal digit etc..
1.232 +@return The address of the character type conversion table,
1.233 +or NULL in case of a UNICODE build.
1.234 +*/
1.235 +EXPORT_C const TUint8 * Locl::TypeTable()
1.236 + {
1.237 + #ifdef _UNICODE
1.238 + return NULL;
1.239 + #else
1.240 + return(&LAlphabet::TypeTable[0]);
1.241 + #endif
1.242 + }
1.243 +
1.244 +
1.245 +/**
1.246 +Gets the address of the uppercase table. The uppercase table
1.247 +does not exist in the Unicode build. It is used to convert
1.248 +the letter in lowercase to uppercase.
1.249 +@return The address of the uppercase table, or NULL
1.250 +in case of a UNICODE build.
1.251 +*/
1.252 +EXPORT_C const TText * Locl::UpperTable()
1.253 + {
1.254 + #ifdef _UNICODE
1.255 + return NULL;
1.256 + #else
1.257 + return(&LAlphabet::UpperTable[0]);
1.258 + #endif
1.259 +
1.260 + }
1.261 +
1.262 +/**
1.263 +Gets the address of the lowercase table. The lowercase table
1.264 +does not exist in the Unicode build. It is used to convert
1.265 +the letter in uppercase to lowercase.
1.266 +@return The address of the lowercase table, or NULL
1.267 +in case of a UNICODE build.
1.268 +*/
1.269 +EXPORT_C const TText * Locl::LowerTable()
1.270 + {
1.271 + #ifdef _UNICODE
1.272 + return NULL;
1.273 + #else
1.274 + return(&LAlphabet::LowerTable[0]);
1.275 + #endif
1.276 + }
1.277 +
1.278 +/**
1.279 +Gets the address of the fold table. The fold table does not exist
1.280 +in the Unicode build. It is used to fold the character according
1.281 +to a specified folding method: converting characters to their
1.282 +lower case form, if any; stripping accents; converting digits
1.283 +representing values 0..9 to characters '0'..'9' etc..
1.284 +@return The address of the fold table, or NULL
1.285 +in case of a UNICODE build.
1.286 +*/
1.287 +EXPORT_C const TText * Locl::FoldTable()
1.288 + {
1.289 + #ifdef _UNICODE
1.290 + return NULL;
1.291 +
1.292 + #else
1.293 + return(&LAlphabet::FoldTable[0]);
1.294 + #endif
1.295 + }
1.296 +
1.297 +/**
1.298 +Gets the address of the collate table. The collate table does
1.299 +not exist in the Unicode build. This table is used to collate
1.300 +strings to remove differences between characters that are deemed
1.301 +unimportant for the purposes of ordering characters.
1.302 +@return The address of the collate table, or NULL
1.303 +in case of a UNICODE build.
1.304 +*/
1.305 +EXPORT_C const TText * Locl::CollTable()
1.306 + {
1.307 + #ifdef _UNICODE
1.308 + return NULL;
1.309 + #else
1.310 + return(&LAlphabet::CollTable[0]);
1.311 + #endif
1.312 + }
1.313 +
1.314 +/**
1.315 +Check whether it is a Unicode Build.
1.316 +@return ETrue for Unicode Build, EFalse for non-Unicode Build.
1.317 +*/
1.318 +EXPORT_C TBool Locl::UniCode()
1.319 + {
1.320 + #ifdef _UNICODE
1.321 + return ETrue;
1.322 + #else
1.323 + return EFalse;
1.324 + #endif
1.325 + }