Symbian3/Examples/guid-6013a680-57f9-415b-8851-c4fa63356636/localeupdate_8cpp_source.html
author Dominic Pinkman <dominic.pinkman@nokia.com>
Fri, 13 Aug 2010 16:47:46 +0100
changeset 14 578be2adaf3e
parent 6 43e37759235e
permissions -rw-r--r--
Week 32 contribution of PDK documentation content. See release notes for details. Fixes bug Bug 3582

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>TB9.2 Example Applications: examples/Base/Locale/localeupdate/src/localeupdate.cpp Source File</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- Generated by Doxygen 1.6.2 -->
<h1>examples/Base/Locale/localeupdate/src/localeupdate.cpp</h1><a href="localeupdate_8cpp.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).</span>
<a name="l00002"></a>00002 <span class="comment">// All rights reserved.</span>
<a name="l00003"></a>00003 <span class="comment">// This component and the accompanying materials are made available</span>
<a name="l00004"></a>00004 <span class="comment">// under the terms of &quot;Eclipse Public License v1.0&quot;</span>
<a name="l00005"></a>00005 <span class="comment">// which accompanies this distribution, and is available</span>
<a name="l00006"></a>00006 <span class="comment">// at the URL &quot;http://www.eclipse.org/legal/epl-v10.html&quot;.</span>
<a name="l00007"></a>00007 <span class="comment">//</span>
<a name="l00008"></a>00008 <span class="comment">// Initial Contributors:</span>
<a name="l00009"></a>00009 <span class="comment">// Nokia Corporation - initial contribution.</span>
<a name="l00010"></a>00010 <span class="comment">//</span>
<a name="l00011"></a>00011 <span class="comment">// Contributors:</span>
<a name="l00012"></a>00012 <span class="comment">//</span>
<a name="l00013"></a>00013 <span class="comment">// Description:</span>
<a name="l00014"></a>00014 <span class="comment">// Contains the definition of functions defined in the CLocaleSettings class.</span>
<a name="l00015"></a>00015 <span class="comment">// It also contains the definition of the DoStartL()function.</span>
<a name="l00016"></a>00016 <span class="comment">// This function displays a number of locale settings for a variety of locale DLLs.</span>
<a name="l00017"></a>00017 <span class="comment">//</span>
<a name="l00018"></a>00018 
<a name="l00019"></a>00019 
<a name="l00020"></a>00020 
<a name="l00024"></a>00024 <span class="preprocessor">#include &quot;<a class="code" href="localeupdate_8h.html">localeupdate.h</a>&quot;</span>
<a name="l00025"></a>00025 
<a name="l00026"></a>00026 LOCAL_D CConsoleBase* console;
<a name="l00027"></a>00027 
<a name="l00028"></a>00028 LOCAL_C <span class="keywordtype">void</span> DoStartL();
<a name="l00029"></a>00029 
<a name="l00030"></a>00030 LOCAL_C <span class="keywordtype">void</span> CallExampleL();
<a name="l00031"></a>00031 
<a name="l00038"></a><a class="code" href="class_c_locale_settings.html#addd65d460422ee02045471178b6ac466">00038</a> <a class="code" href="class_c_locale_settings.html">CLocaleSettings</a>* <a class="code" href="class_c_locale_settings.html#addd65d460422ee02045471178b6ac466">CLocaleSettings::NewL</a>(TDesC16&amp; aLocaleDLLName, CConsoleBase* aConsole)
<a name="l00039"></a>00039         {
<a name="l00040"></a>00040         <a class="code" href="class_c_locale_settings.html">CLocaleSettings</a>* <span class="keyword">self</span> = <span class="keyword">new</span> (ELeave) <a class="code" href="class_c_locale_settings.html">CLocaleSettings</a>;
<a name="l00041"></a>00041         CleanupStack::PushL(<span class="keyword">self</span>);
<a name="l00042"></a>00042         <span class="keyword">self</span>-&gt;ConstructL(aLocaleDLLName, aConsole);
<a name="l00043"></a>00043         CleanupStack::Pop(<span class="keyword">self</span>);
<a name="l00044"></a>00044         <span class="keywordflow">return</span> <span class="keyword">self</span>;
<a name="l00045"></a>00045         }
<a name="l00046"></a>00046 
<a name="l00053"></a>00053 <span class="keywordtype">void</span> CLocaleSettings::ConstructL(TDesC16&amp; aLocaleDLLName, CConsoleBase* aConsole)
<a name="l00054"></a>00054         {
<a name="l00055"></a>00055         <span class="comment">// Store the name of the locale DLL.</span>
<a name="l00056"></a>00056         iLocaleDLLName.Copy(aLocaleDLLName);
<a name="l00057"></a>00057         iConsole = aConsole;
<a name="l00058"></a>00058 
<a name="l00059"></a>00059         <span class="comment">// Load the locale DLL.</span>
<a name="l00060"></a>00060         User::LeaveIfError(iExtendedLocale.LoadLocale(iLocaleDLLName));
<a name="l00061"></a>00061 
<a name="l00062"></a>00062         <span class="comment">// Get the TLocale object from TExtendedLocale.</span>
<a name="l00063"></a>00063         iLocale = iExtendedLocale.GetLocale();
<a name="l00064"></a>00064 
<a name="l00065"></a>00065         <span class="comment">// Get the first day of the week.</span>
<a name="l00066"></a>00066         <span class="comment">// Monday is enumerated to 0, Tuesday to 1 and so on.</span>
<a name="l00067"></a>00067         iStartOfWeek = iLocale-&gt;StartOfWeek();
<a name="l00068"></a>00068 
<a name="l00069"></a>00069         <span class="comment">// Get the working days mask.</span>
<a name="l00070"></a>00070         <span class="comment">// Least significant bit corresponds to Monday.</span>
<a name="l00071"></a>00071         <span class="comment">// A bit is set if it is a working day.</span>
<a name="l00072"></a>00072         iWorkingDaysMask = iLocale-&gt;WorkDays();
<a name="l00073"></a>00073 
<a name="l00074"></a>00074         <span class="comment">// Get the collation method for the locale.</span>
<a name="l00075"></a>00075         iCollationMethod = iExtendedLocale.GetPreferredCollationMethod();
<a name="l00076"></a>00076 
<a name="l00077"></a>00077         <span class="comment">// Get the country code.</span>
<a name="l00078"></a>00078         iCountryCode = iLocale-&gt;CountryCode();
<a name="l00079"></a>00079 
<a name="l00080"></a>00080         <span class="comment">// Get the date format.</span>
<a name="l00081"></a>00081         iDateFormat = iLocale-&gt;DateFormat();
<a name="l00082"></a>00082 
<a name="l00083"></a>00083         <span class="comment">// Get the time format.</span>
<a name="l00084"></a>00084         iTimeFormat = iLocale-&gt;TimeFormat();
<a name="l00085"></a>00085 
<a name="l00086"></a>00086         <span class="comment">// Get numeric value settings.</span>
<a name="l00087"></a>00087         iThousandsSeparator = iLocale-&gt;ThousandsSeparator();
<a name="l00088"></a>00088         iDecimalSeparator = iLocale-&gt;DecimalSeparator();
<a name="l00089"></a>00089 
<a name="l00090"></a>00090         <span class="comment">// Get the units of measurement.</span>
<a name="l00091"></a>00091         iUnitsFormat = iLocale-&gt;UnitsGeneral();
<a name="l00092"></a>00092 
<a name="l00093"></a>00093         <span class="comment">// Get the time zone information.</span>
<a name="l00094"></a>00094         <span class="comment">// A locale&#39;s time zone is defined as an offset from UTC.</span>
<a name="l00095"></a>00095         iUTCOffset = User::UTCOffset();
<a name="l00096"></a>00096         }
<a name="l00097"></a>00097 
<a name="l00101"></a>00101 CLocaleSettings::CLocaleSettings()
<a name="l00102"></a>00102         {
<a name="l00103"></a>00103         }
<a name="l00104"></a>00104 
<a name="l00108"></a><a class="code" href="class_c_locale_settings.html#a082c035077dc80e2d8668568234fbbf3">00108</a> <span class="keywordtype">void</span> <a class="code" href="class_c_locale_settings.html#a082c035077dc80e2d8668568234fbbf3">CLocaleSettings::DisplayLocaleSettings</a>()
<a name="l00109"></a>00109         {
<a name="l00110"></a>00110         <span class="comment">// Print the name of the locale DLL.</span>
<a name="l00111"></a>00111         <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KTextDLLName, <span class="stringliteral">&quot;\r\nLocale Settings for the DLL:&quot;</span>);
<a name="l00112"></a>00112         console-&gt;Printf(KTextDLLName);
<a name="l00113"></a>00113         console-&gt;Printf(iLocaleDLLName);
<a name="l00114"></a>00114         console-&gt;Printf(KTextNewLine);
<a name="l00115"></a>00115 
<a name="l00116"></a>00116         <span class="comment">// Print the calendar settings.</span>
<a name="l00117"></a>00117         <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KTextCalenderSettings, <span class="stringliteral">&quot;Calendar Settings:\r\n1. First day of the week: %d\r\n&quot;</span>);
<a name="l00118"></a>00118         iConsole-&gt;Printf(KTextCalenderSettings, iStartOfWeek);
<a name="l00119"></a>00119 
<a name="l00120"></a>00120         <span class="comment">// Print the mask.</span>
<a name="l00121"></a>00121         <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KTextWorkingDays, <span class="stringliteral">&quot;2. Working days of the week [LSB - Monday]: %07b\r\n&quot;</span>);
<a name="l00122"></a>00122         iConsole-&gt;Printf(KTextWorkingDays, iWorkingDaysMask);
<a name="l00123"></a>00123 
<a name="l00124"></a>00124         <span class="comment">// Print the collation method.</span>
<a name="l00125"></a>00125         <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KTextCollationMethod, <span class="stringliteral">&quot;Collation method:&quot;</span>);
<a name="l00126"></a>00126         iConsole-&gt;Printf(KTextCollationMethod);
<a name="l00127"></a>00127         <span class="keywordflow">if</span>(iCollationMethod.iFlags &amp; TCollationMethod::EIgnoreNone)
<a name="l00128"></a>00128                 {
<a name="l00129"></a>00129                 <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KTextIgnoreNone, <span class="stringliteral">&quot;IgnoreNone\r\n&quot;</span>);
<a name="l00130"></a>00130                 iConsole-&gt;Printf(KTextIgnoreNone);
<a name="l00131"></a>00131                 }
<a name="l00132"></a>00132         <span class="keywordflow">else</span> <span class="keywordflow">if</span>(iCollationMethod.iFlags &amp; TCollationMethod::ESwapCase)
<a name="l00133"></a>00133                 {
<a name="l00134"></a>00134                 <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KTextSwapCase, <span class="stringliteral">&quot;SwapCase\r\n&quot;</span>);
<a name="l00135"></a>00135                 iConsole-&gt;Printf(KTextSwapCase);
<a name="l00136"></a>00136                 }
<a name="l00137"></a>00137         <span class="keywordflow">else</span> <span class="keywordflow">if</span>(iCollationMethod.iFlags &amp; TCollationMethod::EAccentsBackwards)
<a name="l00138"></a>00138                 {
<a name="l00139"></a>00139                 <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KTextAccents, <span class="stringliteral">&quot;AccentsBackwards\r\n&quot;</span>);
<a name="l00140"></a>00140                 iConsole-&gt;Printf(KTextAccents);
<a name="l00141"></a>00141                 }
<a name="l00142"></a>00142         <span class="keywordflow">else</span> <span class="keywordflow">if</span>(iCollationMethod.iFlags &amp; TCollationMethod::ESwapKana)
<a name="l00143"></a>00143                 {
<a name="l00144"></a>00144                 <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KTextSwapKana, <span class="stringliteral">&quot;SwapKana\r\n&quot;</span>);
<a name="l00145"></a>00145                 iConsole-&gt;Printf(KTextSwapKana);
<a name="l00146"></a>00146                 }
<a name="l00147"></a>00147         <span class="keywordflow">else</span> <span class="keywordflow">if</span>(iCollationMethod.iFlags &amp; TCollationMethod::EFoldCase)
<a name="l00148"></a>00148                 {
<a name="l00149"></a>00149                 <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KTextFoldCase, <span class="stringliteral">&quot;FoldCase\r\n&quot;</span>);
<a name="l00150"></a>00150                 iConsole-&gt;Printf(KTextFoldCase);
<a name="l00151"></a>00151                 }
<a name="l00152"></a>00152         <span class="keywordflow">else</span>
<a name="l00153"></a>00153                 {
<a name="l00154"></a>00154                 <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KTextStandard, <span class="stringliteral">&quot;Standard\r\n&quot;</span>);
<a name="l00155"></a>00155                 iConsole-&gt;Printf(KTextStandard);
<a name="l00156"></a>00156                 }
<a name="l00157"></a>00157 
<a name="l00158"></a>00158         <span class="comment">// Print the country code.</span>
<a name="l00159"></a>00159         <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KTextCountryCode, <span class="stringliteral">&quot;Country code: %d\r\n&quot;</span>);
<a name="l00160"></a>00160         iConsole-&gt;Printf(KTextCountryCode, iCountryCode);
<a name="l00161"></a>00161 
<a name="l00162"></a>00162         <span class="comment">// Get the currency format.</span>
<a name="l00163"></a>00163         TBuf&lt;50&gt; currency;
<a name="l00164"></a>00164         <span class="comment">// A value for the currency.</span>
<a name="l00165"></a>00165         TInt currencyValue = 10241024;
<a name="l00166"></a>00166         iLocale-&gt;FormatCurrency(currency, currencyValue);
<a name="l00167"></a>00167         <span class="comment">// Print the currency format.</span>
<a name="l00168"></a>00168         <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KTextCurrencyFormat, <span class="stringliteral">&quot;Currency format of %d:&quot;</span>);
<a name="l00169"></a>00169         iConsole-&gt;Printf(KTextCurrencyFormat, currencyValue);
<a name="l00170"></a>00170         iConsole-&gt;Printf(currency);
<a name="l00171"></a>00171         iConsole-&gt;Printf(KTextNewLine);
<a name="l00172"></a>00172 
<a name="l00173"></a>00173         <span class="comment">// Print the date format.</span>
<a name="l00174"></a>00174         <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KTextDateFormat, <span class="stringliteral">&quot;Date Format: &quot;</span>);
<a name="l00175"></a>00175         iConsole-&gt;Printf(KTextDateFormat);
<a name="l00176"></a>00176         <span class="keywordflow">switch</span>(iDateFormat)
<a name="l00177"></a>00177                 {
<a name="l00178"></a>00178                 <span class="keywordflow">case</span> EDateAmerican:
<a name="l00179"></a>00179                         <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KTextUSFormat, <span class="stringliteral">&quot;US Format (mm/dd/yy)\r\n&quot;</span>);
<a name="l00180"></a>00180                         iConsole-&gt;Printf(KTextUSFormat);
<a name="l00181"></a>00181                         <span class="keywordflow">break</span>;
<a name="l00182"></a>00182                 <span class="keywordflow">case</span> EDateEuropean:
<a name="l00183"></a>00183                         <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KTextEuropeanFormat, <span class="stringliteral">&quot;European format (dd/mm/yyyy)\r\n&quot;</span>);
<a name="l00184"></a>00184                         iConsole-&gt;Printf(KTextEuropeanFormat);
<a name="l00185"></a>00185                         <span class="keywordflow">break</span>;
<a name="l00186"></a>00186                 <span class="keywordflow">case</span> EDateJapanese:
<a name="l00187"></a>00187                         <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KTextJapFormat, <span class="stringliteral">&quot;Japanese format (yyyy/mm/dd)\r\n&quot;</span>);
<a name="l00188"></a>00188                         iConsole-&gt;Printf(KTextJapFormat);
<a name="l00189"></a>00189                         <span class="keywordflow">break</span>;
<a name="l00190"></a>00190                 }
<a name="l00191"></a>00191 
<a name="l00192"></a>00192         <span class="comment">// Print the time format.</span>
<a name="l00193"></a>00193         <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KTextTimeFormat, <span class="stringliteral">&quot;Time Format: &quot;</span>);
<a name="l00194"></a>00194         iConsole-&gt;Printf(KTextTimeFormat);
<a name="l00195"></a>00195         <span class="keywordflow">if</span>(iTimeFormat == ETime12)
<a name="l00196"></a>00196                 {
<a name="l00197"></a>00197                 <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KText12Hour, <span class="stringliteral">&quot;12 hour format\r\n&quot;</span>);
<a name="l00198"></a>00198                 iConsole-&gt;Printf(KText12Hour);
<a name="l00199"></a>00199                 }
<a name="l00200"></a>00200         <span class="keywordflow">else</span>
<a name="l00201"></a>00201                 {
<a name="l00202"></a>00202                 <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KText24Hour, <span class="stringliteral">&quot;24 hour format\r\n&quot;</span>);
<a name="l00203"></a>00203                 iConsole-&gt;Printf(KText24Hour);
<a name="l00204"></a>00204                 }
<a name="l00205"></a>00205 
<a name="l00206"></a>00206         <span class="comment">// Print the numeric value settings.</span>
<a name="l00207"></a>00207         <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KTextNumericValues, <span class="stringliteral">&quot;Numeric Values: \r\n&quot;</span>);
<a name="l00208"></a>00208         iConsole-&gt;Printf(KTextNumericValues);
<a name="l00209"></a>00209         <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KTextThousandsSeparator, <span class="stringliteral">&quot;\tThousands separator: %c\r\n&quot;</span>);
<a name="l00210"></a>00210         iConsole-&gt;Printf(KTextThousandsSeparator, TUint(iThousandsSeparator));
<a name="l00211"></a>00211         <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KTextDecimalSeparator, <span class="stringliteral">&quot;\tDecimal separator: %c\r\n&quot;</span>);
<a name="l00212"></a>00212         iConsole-&gt;Printf(KTextDecimalSeparator, TUint(iDecimalSeparator));
<a name="l00213"></a>00213 
<a name="l00214"></a>00214         <span class="comment">// Print the time zone information.</span>
<a name="l00215"></a>00215         <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KTextTimeZone, <span class="stringliteral">&quot;UTC Offset in seconds (Time Zone Information): %d\r\n&quot;</span>);
<a name="l00216"></a>00216         iConsole-&gt;Printf(KTextTimeZone, iUTCOffset.Int());
<a name="l00217"></a>00217 
<a name="l00218"></a>00218         <span class="comment">// Print the units of measurement.</span>
<a name="l00219"></a>00219         <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KTextUnitsOfMeasure, <span class="stringliteral">&quot;Units of measurement: &quot;</span>);
<a name="l00220"></a>00220         iConsole-&gt;Printf(KTextUnitsOfMeasure);
<a name="l00221"></a>00221         <span class="keywordflow">if</span>(iUnitsFormat == EUnitsImperial)
<a name="l00222"></a>00222                 {
<a name="l00223"></a>00223                 <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KTextImperial, <span class="stringliteral">&quot;Imperial\r\n&quot;</span>);
<a name="l00224"></a>00224                 iConsole-&gt;Printf(KTextImperial);
<a name="l00225"></a>00225                 }
<a name="l00226"></a>00226         <span class="keywordflow">else</span>
<a name="l00227"></a>00227                 {
<a name="l00228"></a>00228                 <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KTextMetric, <span class="stringliteral">&quot;Metric\r\n&quot;</span>);
<a name="l00229"></a>00229                 iConsole-&gt;Printf(KTextMetric);
<a name="l00230"></a>00230                 }
<a name="l00231"></a>00231         }
<a name="l00232"></a>00232 
<a name="l00236"></a><a class="code" href="class_c_locale_settings.html#af80c0b0fe569d5d7edea2629304a9059">00236</a> <a class="code" href="class_c_locale_settings.html#af80c0b0fe569d5d7edea2629304a9059">CLocaleSettings::~CLocaleSettings</a>()
<a name="l00237"></a>00237         {
<a name="l00238"></a>00238         }
<a name="l00239"></a>00239 
<a name="l00240"></a>00240 LOCAL_C <span class="keywordtype">void</span> DoStartL()
<a name="l00241"></a>00241         {
<a name="l00242"></a>00242         <span class="comment">// UK English locale DLL.</span>
<a name="l00243"></a>00243         <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KLocaleName1, <span class="stringliteral">&quot;elocl.01&quot;</span>);
<a name="l00244"></a>00244         TBufC&lt;KLength&gt; localeName1(KLocaleName1);
<a name="l00245"></a>00245         <span class="comment">// Create a CLocaleSettings object for the locale DLL eloc1.01.</span>
<a name="l00246"></a>00246         <a class="code" href="class_c_locale_settings.html">CLocaleSettings</a>* obj = <a class="code" href="class_c_locale_settings.html#addd65d460422ee02045471178b6ac466">CLocaleSettings::NewL</a>(localeName1, console);
<a name="l00247"></a>00247         CleanupStack::PushL(obj);
<a name="l00248"></a>00248         <span class="comment">// Display the locale settings for the locale DLL eloc1.01.</span>
<a name="l00249"></a>00249         obj-&gt;<a class="code" href="class_c_locale_settings.html#a082c035077dc80e2d8668568234fbbf3">DisplayLocaleSettings</a>();
<a name="l00250"></a>00250         <span class="comment">// Delete the CLocaleSettings object.</span>
<a name="l00251"></a>00251         CleanupStack::PopAndDestroy(obj);
<a name="l00252"></a>00252         <span class="comment">// Wait for a key press.</span>
<a name="l00253"></a>00253         console-&gt;Printf(KTextPressAnyKey);
<a name="l00254"></a>00254         console-&gt;Getch();
<a name="l00255"></a>00255 
<a name="l00256"></a>00256         <span class="comment">// American locale DLL.</span>
<a name="l00257"></a>00257         <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KLocaleName2, <span class="stringliteral">&quot;elocl.10&quot;</span>);
<a name="l00258"></a>00258         TBufC&lt;KLength&gt; localeName2(KLocaleName2);
<a name="l00259"></a>00259         <span class="comment">// Create a CLocaleSettings object for the locale DLL eloc1.10.</span>
<a name="l00260"></a>00260         obj = <a class="code" href="class_c_locale_settings.html#addd65d460422ee02045471178b6ac466">CLocaleSettings::NewL</a>(localeName2, console);
<a name="l00261"></a>00261         CleanupStack::PushL(obj);
<a name="l00262"></a>00262         <span class="comment">// Display the locale settings for the locale DLL eloc1.10.</span>
<a name="l00263"></a>00263         obj-&gt;<a class="code" href="class_c_locale_settings.html#a082c035077dc80e2d8668568234fbbf3">DisplayLocaleSettings</a>();
<a name="l00264"></a>00264         <span class="comment">// Delete the CLocaleSettings object.</span>
<a name="l00265"></a>00265         CleanupStack::PopAndDestroy(obj);
<a name="l00266"></a>00266         <span class="comment">// Wait for a key press.</span>
<a name="l00267"></a>00267         console-&gt;Printf(KTextPressAnyKey);
<a name="l00268"></a>00268         console-&gt;Getch();
<a name="l00269"></a>00269 
<a name="l00270"></a>00270         <span class="comment">// Taiwanese Chinese locale DLL.</span>
<a name="l00271"></a>00271         <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KLocaleName3, <span class="stringliteral">&quot;elocl.29&quot;</span>);
<a name="l00272"></a>00272         TBufC&lt;KLength&gt; localeName3(KLocaleName3);
<a name="l00273"></a>00273         <span class="comment">// Create a CLocaleSettings object for the locale DLL eloc1.29.</span>
<a name="l00274"></a>00274         obj = <a class="code" href="class_c_locale_settings.html#addd65d460422ee02045471178b6ac466">CLocaleSettings::NewL</a>(localeName3, console);
<a name="l00275"></a>00275         CleanupStack::PushL(obj);
<a name="l00276"></a>00276         <span class="comment">// Display the locale settings for the locale DLL eloc1.29.</span>
<a name="l00277"></a>00277         obj-&gt;<a class="code" href="class_c_locale_settings.html#a082c035077dc80e2d8668568234fbbf3">DisplayLocaleSettings</a>();
<a name="l00278"></a>00278         <span class="comment">// Delete the CLocaleSettings object.</span>
<a name="l00279"></a>00279         CleanupStack::PopAndDestroy(obj);
<a name="l00280"></a>00280         <span class="comment">// Wait for a key press.</span>
<a name="l00281"></a>00281         console-&gt;Printf(KTextPressAnyKey);
<a name="l00282"></a>00282         console-&gt;Getch();
<a name="l00283"></a>00283 
<a name="l00284"></a>00284         <span class="comment">// Japanese locale DLL.</span>
<a name="l00285"></a>00285         <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KLocaleName4, <span class="stringliteral">&quot;elocl.32&quot;</span>);
<a name="l00286"></a>00286         TBufC&lt;KLength&gt; localeName4(KLocaleName4);
<a name="l00287"></a>00287         <span class="comment">// Create a CLocaleSettings object for the locale DLL eloc1.32.</span>
<a name="l00288"></a>00288         obj = <a class="code" href="class_c_locale_settings.html#addd65d460422ee02045471178b6ac466">CLocaleSettings::NewL</a>(localeName4, console);
<a name="l00289"></a>00289         CleanupStack::PushL(obj);
<a name="l00290"></a>00290         <span class="comment">// Display the locale settings for the locale DLL eloc1.32.</span>
<a name="l00291"></a>00291         obj-&gt;<a class="code" href="class_c_locale_settings.html#a082c035077dc80e2d8668568234fbbf3">DisplayLocaleSettings</a>();
<a name="l00292"></a>00292         <span class="comment">// Delete the CLocaleSettings object.</span>
<a name="l00293"></a>00293         CleanupStack::PopAndDestroy(obj);
<a name="l00294"></a>00294         }
<a name="l00295"></a>00295 
<a name="l00296"></a><a class="code" href="localeupdate_8cpp.html#a0f358e9c4355138f629b8c4f37310295">00296</a> GLDEF_C TInt E32Main() <span class="comment">// main function called by E32</span>
<a name="l00297"></a>00297     {
<a name="l00298"></a>00298         __UHEAP_MARK;
<a name="l00299"></a>00299         CTrapCleanup* cleanup=CTrapCleanup::New(); <span class="comment">// get clean-up stack</span>
<a name="l00300"></a>00300         TRAPD(error, CallExampleL()); <span class="comment">// more initialization, then do example</span>
<a name="l00301"></a>00301         <span class="keyword">delete</span> cleanup; <span class="comment">// destroy clean-up stack</span>
<a name="l00302"></a>00302         __ASSERT_ALWAYS(!error, User::Panic(KTxtEPOC32EX, error));
<a name="l00303"></a>00303         __UHEAP_MARKEND;
<a name="l00304"></a>00304         <span class="keywordflow">return</span> 0; <span class="comment">// and return</span>
<a name="l00305"></a>00305     }
<a name="l00306"></a>00306 
<a name="l00307"></a>00307 LOCAL_C <span class="keywordtype">void</span> CallExampleL() <span class="comment">// initialize and call example code under cleanup stack</span>
<a name="l00308"></a>00308     {
<a name="l00309"></a>00309         console=Console::NewL(KTxtExampleCode, TSize(KConsFullScreen, KConsFullScreen));
<a name="l00310"></a>00310         CleanupStack::PushL(console);
<a name="l00311"></a>00311         TRAPD(error, DoStartL()); <span class="comment">// perform example function</span>
<a name="l00312"></a>00312         <span class="keywordflow">if</span> (error)
<a name="l00313"></a>00313                 console-&gt;Printf(KFormatFailed, error);
<a name="l00314"></a>00314         <span class="keywordflow">else</span>
<a name="l00315"></a>00315                 console-&gt;Printf(KTxtOK);
<a name="l00316"></a>00316         console-&gt;Printf(KTextPressAnyKey);
<a name="l00317"></a>00317         console-&gt;Getch(); <span class="comment">// get and ignore character</span>
<a name="l00318"></a>00318         CleanupStack::PopAndDestroy(); <span class="comment">// close console</span>
<a name="l00319"></a>00319     }
</pre></div></div>
<hr size="1"/><address style="text-align: right;"><small>Generated by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.2 </small></address>
</body>
</html>