Symbian3/Examples/guid-6013a680-57f9-415b-8851-c4fa63356636/localeupdate_8cpp_source.html
changeset 6 43e37759235e
equal deleted inserted replaced
5:f345bda72bc4 6:43e37759235e
       
     1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
       
     2 <html xmlns="http://www.w3.org/1999/xhtml">
       
     3 <head>
       
     4 <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
       
     5 <title>TB9.2 Example Applications: examples/Base/Locale/localeupdate/src/localeupdate.cpp Source File</title>
       
     6 <link href="tabs.css" rel="stylesheet" type="text/css"/>
       
     7 <link href="doxygen.css" rel="stylesheet" type="text/css"/>
       
     8 </head>
       
     9 <body>
       
    10 <!-- Generated by Doxygen 1.6.2 -->
       
    11 <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>
       
    12 <a name="l00002"></a>00002 <span class="comment">// All rights reserved.</span>
       
    13 <a name="l00003"></a>00003 <span class="comment">// This component and the accompanying materials are made available</span>
       
    14 <a name="l00004"></a>00004 <span class="comment">// under the terms of &quot;Eclipse Public License v1.0&quot;</span>
       
    15 <a name="l00005"></a>00005 <span class="comment">// which accompanies this distribution, and is available</span>
       
    16 <a name="l00006"></a>00006 <span class="comment">// at the URL &quot;http://www.eclipse.org/legal/epl-v10.html&quot;.</span>
       
    17 <a name="l00007"></a>00007 <span class="comment">//</span>
       
    18 <a name="l00008"></a>00008 <span class="comment">// Initial Contributors:</span>
       
    19 <a name="l00009"></a>00009 <span class="comment">// Nokia Corporation - initial contribution.</span>
       
    20 <a name="l00010"></a>00010 <span class="comment">//</span>
       
    21 <a name="l00011"></a>00011 <span class="comment">// Contributors:</span>
       
    22 <a name="l00012"></a>00012 <span class="comment">//</span>
       
    23 <a name="l00013"></a>00013 <span class="comment">// Description:</span>
       
    24 <a name="l00014"></a>00014 <span class="comment">// Contains the definition of functions defined in the CLocaleSettings class.</span>
       
    25 <a name="l00015"></a>00015 <span class="comment">// It also contains the definition of the DoStartL()function.</span>
       
    26 <a name="l00016"></a>00016 <span class="comment">// This function displays a number of locale settings for a variety of locale DLLs.</span>
       
    27 <a name="l00017"></a>00017 <span class="comment">//</span>
       
    28 <a name="l00018"></a>00018 
       
    29 <a name="l00019"></a>00019 
       
    30 <a name="l00020"></a>00020 
       
    31 <a name="l00024"></a>00024 <span class="preprocessor">#include &quot;<a class="code" href="localeupdate_8h.html">localeupdate.h</a>&quot;</span>
       
    32 <a name="l00025"></a>00025 
       
    33 <a name="l00026"></a>00026 LOCAL_D CConsoleBase* console;
       
    34 <a name="l00027"></a>00027 
       
    35 <a name="l00028"></a>00028 LOCAL_C <span class="keywordtype">void</span> DoStartL();
       
    36 <a name="l00029"></a>00029 
       
    37 <a name="l00030"></a>00030 LOCAL_C <span class="keywordtype">void</span> CallExampleL();
       
    38 <a name="l00031"></a>00031 
       
    39 <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)
       
    40 <a name="l00039"></a>00039         {
       
    41 <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>;
       
    42 <a name="l00041"></a>00041         CleanupStack::PushL(<span class="keyword">self</span>);
       
    43 <a name="l00042"></a>00042         <span class="keyword">self</span>-&gt;ConstructL(aLocaleDLLName, aConsole);
       
    44 <a name="l00043"></a>00043         CleanupStack::Pop(<span class="keyword">self</span>);
       
    45 <a name="l00044"></a>00044         <span class="keywordflow">return</span> <span class="keyword">self</span>;
       
    46 <a name="l00045"></a>00045         }
       
    47 <a name="l00046"></a>00046 
       
    48 <a name="l00053"></a>00053 <span class="keywordtype">void</span> CLocaleSettings::ConstructL(TDesC16&amp; aLocaleDLLName, CConsoleBase* aConsole)
       
    49 <a name="l00054"></a>00054         {
       
    50 <a name="l00055"></a>00055         <span class="comment">// Store the name of the locale DLL.</span>
       
    51 <a name="l00056"></a>00056         iLocaleDLLName.Copy(aLocaleDLLName);
       
    52 <a name="l00057"></a>00057         iConsole = aConsole;
       
    53 <a name="l00058"></a>00058 
       
    54 <a name="l00059"></a>00059         <span class="comment">// Load the locale DLL.</span>
       
    55 <a name="l00060"></a>00060         User::LeaveIfError(iExtendedLocale.LoadLocale(iLocaleDLLName));
       
    56 <a name="l00061"></a>00061 
       
    57 <a name="l00062"></a>00062         <span class="comment">// Get the TLocale object from TExtendedLocale.</span>
       
    58 <a name="l00063"></a>00063         iLocale = iExtendedLocale.GetLocale();
       
    59 <a name="l00064"></a>00064 
       
    60 <a name="l00065"></a>00065         <span class="comment">// Get the first day of the week.</span>
       
    61 <a name="l00066"></a>00066         <span class="comment">// Monday is enumerated to 0, Tuesday to 1 and so on.</span>
       
    62 <a name="l00067"></a>00067         iStartOfWeek = iLocale-&gt;StartOfWeek();
       
    63 <a name="l00068"></a>00068 
       
    64 <a name="l00069"></a>00069         <span class="comment">// Get the working days mask.</span>
       
    65 <a name="l00070"></a>00070         <span class="comment">// Least significant bit corresponds to Monday.</span>
       
    66 <a name="l00071"></a>00071         <span class="comment">// A bit is set if it is a working day.</span>
       
    67 <a name="l00072"></a>00072         iWorkingDaysMask = iLocale-&gt;WorkDays();
       
    68 <a name="l00073"></a>00073 
       
    69 <a name="l00074"></a>00074         <span class="comment">// Get the collation method for the locale.</span>
       
    70 <a name="l00075"></a>00075         iCollationMethod = iExtendedLocale.GetPreferredCollationMethod();
       
    71 <a name="l00076"></a>00076 
       
    72 <a name="l00077"></a>00077         <span class="comment">// Get the country code.</span>
       
    73 <a name="l00078"></a>00078         iCountryCode = iLocale-&gt;CountryCode();
       
    74 <a name="l00079"></a>00079 
       
    75 <a name="l00080"></a>00080         <span class="comment">// Get the date format.</span>
       
    76 <a name="l00081"></a>00081         iDateFormat = iLocale-&gt;DateFormat();
       
    77 <a name="l00082"></a>00082 
       
    78 <a name="l00083"></a>00083         <span class="comment">// Get the time format.</span>
       
    79 <a name="l00084"></a>00084         iTimeFormat = iLocale-&gt;TimeFormat();
       
    80 <a name="l00085"></a>00085 
       
    81 <a name="l00086"></a>00086         <span class="comment">// Get numeric value settings.</span>
       
    82 <a name="l00087"></a>00087         iThousandsSeparator = iLocale-&gt;ThousandsSeparator();
       
    83 <a name="l00088"></a>00088         iDecimalSeparator = iLocale-&gt;DecimalSeparator();
       
    84 <a name="l00089"></a>00089 
       
    85 <a name="l00090"></a>00090         <span class="comment">// Get the units of measurement.</span>
       
    86 <a name="l00091"></a>00091         iUnitsFormat = iLocale-&gt;UnitsGeneral();
       
    87 <a name="l00092"></a>00092 
       
    88 <a name="l00093"></a>00093         <span class="comment">// Get the time zone information.</span>
       
    89 <a name="l00094"></a>00094         <span class="comment">// A locale&#39;s time zone is defined as an offset from UTC.</span>
       
    90 <a name="l00095"></a>00095         iUTCOffset = User::UTCOffset();
       
    91 <a name="l00096"></a>00096         }
       
    92 <a name="l00097"></a>00097 
       
    93 <a name="l00101"></a>00101 CLocaleSettings::CLocaleSettings()
       
    94 <a name="l00102"></a>00102         {
       
    95 <a name="l00103"></a>00103         }
       
    96 <a name="l00104"></a>00104 
       
    97 <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>()
       
    98 <a name="l00109"></a>00109         {
       
    99 <a name="l00110"></a>00110         <span class="comment">// Print the name of the locale DLL.</span>
       
   100 <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>);
       
   101 <a name="l00112"></a>00112         console-&gt;Printf(KTextDLLName);
       
   102 <a name="l00113"></a>00113         console-&gt;Printf(iLocaleDLLName);
       
   103 <a name="l00114"></a>00114         console-&gt;Printf(KTextNewLine);
       
   104 <a name="l00115"></a>00115 
       
   105 <a name="l00116"></a>00116         <span class="comment">// Print the calendar settings.</span>
       
   106 <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>);
       
   107 <a name="l00118"></a>00118         iConsole-&gt;Printf(KTextCalenderSettings, iStartOfWeek);
       
   108 <a name="l00119"></a>00119 
       
   109 <a name="l00120"></a>00120         <span class="comment">// Print the mask.</span>
       
   110 <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>);
       
   111 <a name="l00122"></a>00122         iConsole-&gt;Printf(KTextWorkingDays, iWorkingDaysMask);
       
   112 <a name="l00123"></a>00123 
       
   113 <a name="l00124"></a>00124         <span class="comment">// Print the collation method.</span>
       
   114 <a name="l00125"></a>00125         <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KTextCollationMethod, <span class="stringliteral">&quot;Collation method:&quot;</span>);
       
   115 <a name="l00126"></a>00126         iConsole-&gt;Printf(KTextCollationMethod);
       
   116 <a name="l00127"></a>00127         <span class="keywordflow">if</span>(iCollationMethod.iFlags &amp; TCollationMethod::EIgnoreNone)
       
   117 <a name="l00128"></a>00128                 {
       
   118 <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>);
       
   119 <a name="l00130"></a>00130                 iConsole-&gt;Printf(KTextIgnoreNone);
       
   120 <a name="l00131"></a>00131                 }
       
   121 <a name="l00132"></a>00132         <span class="keywordflow">else</span> <span class="keywordflow">if</span>(iCollationMethod.iFlags &amp; TCollationMethod::ESwapCase)
       
   122 <a name="l00133"></a>00133                 {
       
   123 <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>);
       
   124 <a name="l00135"></a>00135                 iConsole-&gt;Printf(KTextSwapCase);
       
   125 <a name="l00136"></a>00136                 }
       
   126 <a name="l00137"></a>00137         <span class="keywordflow">else</span> <span class="keywordflow">if</span>(iCollationMethod.iFlags &amp; TCollationMethod::EAccentsBackwards)
       
   127 <a name="l00138"></a>00138                 {
       
   128 <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>);
       
   129 <a name="l00140"></a>00140                 iConsole-&gt;Printf(KTextAccents);
       
   130 <a name="l00141"></a>00141                 }
       
   131 <a name="l00142"></a>00142         <span class="keywordflow">else</span> <span class="keywordflow">if</span>(iCollationMethod.iFlags &amp; TCollationMethod::ESwapKana)
       
   132 <a name="l00143"></a>00143                 {
       
   133 <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>);
       
   134 <a name="l00145"></a>00145                 iConsole-&gt;Printf(KTextSwapKana);
       
   135 <a name="l00146"></a>00146                 }
       
   136 <a name="l00147"></a>00147         <span class="keywordflow">else</span> <span class="keywordflow">if</span>(iCollationMethod.iFlags &amp; TCollationMethod::EFoldCase)
       
   137 <a name="l00148"></a>00148                 {
       
   138 <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>);
       
   139 <a name="l00150"></a>00150                 iConsole-&gt;Printf(KTextFoldCase);
       
   140 <a name="l00151"></a>00151                 }
       
   141 <a name="l00152"></a>00152         <span class="keywordflow">else</span>
       
   142 <a name="l00153"></a>00153                 {
       
   143 <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>);
       
   144 <a name="l00155"></a>00155                 iConsole-&gt;Printf(KTextStandard);
       
   145 <a name="l00156"></a>00156                 }
       
   146 <a name="l00157"></a>00157 
       
   147 <a name="l00158"></a>00158         <span class="comment">// Print the country code.</span>
       
   148 <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>);
       
   149 <a name="l00160"></a>00160         iConsole-&gt;Printf(KTextCountryCode, iCountryCode);
       
   150 <a name="l00161"></a>00161 
       
   151 <a name="l00162"></a>00162         <span class="comment">// Get the currency format.</span>
       
   152 <a name="l00163"></a>00163         TBuf&lt;50&gt; currency;
       
   153 <a name="l00164"></a>00164         <span class="comment">// A value for the currency.</span>
       
   154 <a name="l00165"></a>00165         TInt currencyValue = 10241024;
       
   155 <a name="l00166"></a>00166         iLocale-&gt;FormatCurrency(currency, currencyValue);
       
   156 <a name="l00167"></a>00167         <span class="comment">// Print the currency format.</span>
       
   157 <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>);
       
   158 <a name="l00169"></a>00169         iConsole-&gt;Printf(KTextCurrencyFormat, currencyValue);
       
   159 <a name="l00170"></a>00170         iConsole-&gt;Printf(currency);
       
   160 <a name="l00171"></a>00171         iConsole-&gt;Printf(KTextNewLine);
       
   161 <a name="l00172"></a>00172 
       
   162 <a name="l00173"></a>00173         <span class="comment">// Print the date format.</span>
       
   163 <a name="l00174"></a>00174         <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KTextDateFormat, <span class="stringliteral">&quot;Date Format: &quot;</span>);
       
   164 <a name="l00175"></a>00175         iConsole-&gt;Printf(KTextDateFormat);
       
   165 <a name="l00176"></a>00176         <span class="keywordflow">switch</span>(iDateFormat)
       
   166 <a name="l00177"></a>00177                 {
       
   167 <a name="l00178"></a>00178                 <span class="keywordflow">case</span> EDateAmerican:
       
   168 <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>);
       
   169 <a name="l00180"></a>00180                         iConsole-&gt;Printf(KTextUSFormat);
       
   170 <a name="l00181"></a>00181                         <span class="keywordflow">break</span>;
       
   171 <a name="l00182"></a>00182                 <span class="keywordflow">case</span> EDateEuropean:
       
   172 <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>);
       
   173 <a name="l00184"></a>00184                         iConsole-&gt;Printf(KTextEuropeanFormat);
       
   174 <a name="l00185"></a>00185                         <span class="keywordflow">break</span>;
       
   175 <a name="l00186"></a>00186                 <span class="keywordflow">case</span> EDateJapanese:
       
   176 <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>);
       
   177 <a name="l00188"></a>00188                         iConsole-&gt;Printf(KTextJapFormat);
       
   178 <a name="l00189"></a>00189                         <span class="keywordflow">break</span>;
       
   179 <a name="l00190"></a>00190                 }
       
   180 <a name="l00191"></a>00191 
       
   181 <a name="l00192"></a>00192         <span class="comment">// Print the time format.</span>
       
   182 <a name="l00193"></a>00193         <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KTextTimeFormat, <span class="stringliteral">&quot;Time Format: &quot;</span>);
       
   183 <a name="l00194"></a>00194         iConsole-&gt;Printf(KTextTimeFormat);
       
   184 <a name="l00195"></a>00195         <span class="keywordflow">if</span>(iTimeFormat == ETime12)
       
   185 <a name="l00196"></a>00196                 {
       
   186 <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>);
       
   187 <a name="l00198"></a>00198                 iConsole-&gt;Printf(KText12Hour);
       
   188 <a name="l00199"></a>00199                 }
       
   189 <a name="l00200"></a>00200         <span class="keywordflow">else</span>
       
   190 <a name="l00201"></a>00201                 {
       
   191 <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>);
       
   192 <a name="l00203"></a>00203                 iConsole-&gt;Printf(KText24Hour);
       
   193 <a name="l00204"></a>00204                 }
       
   194 <a name="l00205"></a>00205 
       
   195 <a name="l00206"></a>00206         <span class="comment">// Print the numeric value settings.</span>
       
   196 <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>);
       
   197 <a name="l00208"></a>00208         iConsole-&gt;Printf(KTextNumericValues);
       
   198 <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>);
       
   199 <a name="l00210"></a>00210         iConsole-&gt;Printf(KTextThousandsSeparator, TUint(iThousandsSeparator));
       
   200 <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>);
       
   201 <a name="l00212"></a>00212         iConsole-&gt;Printf(KTextDecimalSeparator, TUint(iDecimalSeparator));
       
   202 <a name="l00213"></a>00213 
       
   203 <a name="l00214"></a>00214         <span class="comment">// Print the time zone information.</span>
       
   204 <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>);
       
   205 <a name="l00216"></a>00216         iConsole-&gt;Printf(KTextTimeZone, iUTCOffset.Int());
       
   206 <a name="l00217"></a>00217 
       
   207 <a name="l00218"></a>00218         <span class="comment">// Print the units of measurement.</span>
       
   208 <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>);
       
   209 <a name="l00220"></a>00220         iConsole-&gt;Printf(KTextUnitsOfMeasure);
       
   210 <a name="l00221"></a>00221         <span class="keywordflow">if</span>(iUnitsFormat == EUnitsImperial)
       
   211 <a name="l00222"></a>00222                 {
       
   212 <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>);
       
   213 <a name="l00224"></a>00224                 iConsole-&gt;Printf(KTextImperial);
       
   214 <a name="l00225"></a>00225                 }
       
   215 <a name="l00226"></a>00226         <span class="keywordflow">else</span>
       
   216 <a name="l00227"></a>00227                 {
       
   217 <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>);
       
   218 <a name="l00229"></a>00229                 iConsole-&gt;Printf(KTextMetric);
       
   219 <a name="l00230"></a>00230                 }
       
   220 <a name="l00231"></a>00231         }
       
   221 <a name="l00232"></a>00232 
       
   222 <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>()
       
   223 <a name="l00237"></a>00237         {
       
   224 <a name="l00238"></a>00238         }
       
   225 <a name="l00239"></a>00239 
       
   226 <a name="l00240"></a>00240 LOCAL_C <span class="keywordtype">void</span> DoStartL()
       
   227 <a name="l00241"></a>00241         {
       
   228 <a name="l00242"></a>00242         <span class="comment">// UK English locale DLL.</span>
       
   229 <a name="l00243"></a>00243         <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KLocaleName1, <span class="stringliteral">&quot;elocl.01&quot;</span>);
       
   230 <a name="l00244"></a>00244         TBufC&lt;KLength&gt; localeName1(KLocaleName1);
       
   231 <a name="l00245"></a>00245         <span class="comment">// Create a CLocaleSettings object for the locale DLL eloc1.01.</span>
       
   232 <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);
       
   233 <a name="l00247"></a>00247         CleanupStack::PushL(obj);
       
   234 <a name="l00248"></a>00248         <span class="comment">// Display the locale settings for the locale DLL eloc1.01.</span>
       
   235 <a name="l00249"></a>00249         obj-&gt;<a class="code" href="class_c_locale_settings.html#a082c035077dc80e2d8668568234fbbf3">DisplayLocaleSettings</a>();
       
   236 <a name="l00250"></a>00250         <span class="comment">// Delete the CLocaleSettings object.</span>
       
   237 <a name="l00251"></a>00251         CleanupStack::PopAndDestroy(obj);
       
   238 <a name="l00252"></a>00252         <span class="comment">// Wait for a key press.</span>
       
   239 <a name="l00253"></a>00253         console-&gt;Printf(KTextPressAnyKey);
       
   240 <a name="l00254"></a>00254         console-&gt;Getch();
       
   241 <a name="l00255"></a>00255 
       
   242 <a name="l00256"></a>00256         <span class="comment">// American locale DLL.</span>
       
   243 <a name="l00257"></a>00257         <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KLocaleName2, <span class="stringliteral">&quot;elocl.10&quot;</span>);
       
   244 <a name="l00258"></a>00258         TBufC&lt;KLength&gt; localeName2(KLocaleName2);
       
   245 <a name="l00259"></a>00259         <span class="comment">// Create a CLocaleSettings object for the locale DLL eloc1.10.</span>
       
   246 <a name="l00260"></a>00260         obj = <a class="code" href="class_c_locale_settings.html#addd65d460422ee02045471178b6ac466">CLocaleSettings::NewL</a>(localeName2, console);
       
   247 <a name="l00261"></a>00261         CleanupStack::PushL(obj);
       
   248 <a name="l00262"></a>00262         <span class="comment">// Display the locale settings for the locale DLL eloc1.10.</span>
       
   249 <a name="l00263"></a>00263         obj-&gt;<a class="code" href="class_c_locale_settings.html#a082c035077dc80e2d8668568234fbbf3">DisplayLocaleSettings</a>();
       
   250 <a name="l00264"></a>00264         <span class="comment">// Delete the CLocaleSettings object.</span>
       
   251 <a name="l00265"></a>00265         CleanupStack::PopAndDestroy(obj);
       
   252 <a name="l00266"></a>00266         <span class="comment">// Wait for a key press.</span>
       
   253 <a name="l00267"></a>00267         console-&gt;Printf(KTextPressAnyKey);
       
   254 <a name="l00268"></a>00268         console-&gt;Getch();
       
   255 <a name="l00269"></a>00269 
       
   256 <a name="l00270"></a>00270         <span class="comment">// Taiwanese Chinese locale DLL.</span>
       
   257 <a name="l00271"></a>00271         <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KLocaleName3, <span class="stringliteral">&quot;elocl.29&quot;</span>);
       
   258 <a name="l00272"></a>00272         TBufC&lt;KLength&gt; localeName3(KLocaleName3);
       
   259 <a name="l00273"></a>00273         <span class="comment">// Create a CLocaleSettings object for the locale DLL eloc1.29.</span>
       
   260 <a name="l00274"></a>00274         obj = <a class="code" href="class_c_locale_settings.html#addd65d460422ee02045471178b6ac466">CLocaleSettings::NewL</a>(localeName3, console);
       
   261 <a name="l00275"></a>00275         CleanupStack::PushL(obj);
       
   262 <a name="l00276"></a>00276         <span class="comment">// Display the locale settings for the locale DLL eloc1.29.</span>
       
   263 <a name="l00277"></a>00277         obj-&gt;<a class="code" href="class_c_locale_settings.html#a082c035077dc80e2d8668568234fbbf3">DisplayLocaleSettings</a>();
       
   264 <a name="l00278"></a>00278         <span class="comment">// Delete the CLocaleSettings object.</span>
       
   265 <a name="l00279"></a>00279         CleanupStack::PopAndDestroy(obj);
       
   266 <a name="l00280"></a>00280         <span class="comment">// Wait for a key press.</span>
       
   267 <a name="l00281"></a>00281         console-&gt;Printf(KTextPressAnyKey);
       
   268 <a name="l00282"></a>00282         console-&gt;Getch();
       
   269 <a name="l00283"></a>00283 
       
   270 <a name="l00284"></a>00284         <span class="comment">// Japanese locale DLL.</span>
       
   271 <a name="l00285"></a>00285         <a class="code" href="secureclientandserver_8h.html#a5eadd4429627d82193b37536d4faa03a">_LIT</a>(KLocaleName4, <span class="stringliteral">&quot;elocl.32&quot;</span>);
       
   272 <a name="l00286"></a>00286         TBufC&lt;KLength&gt; localeName4(KLocaleName4);
       
   273 <a name="l00287"></a>00287         <span class="comment">// Create a CLocaleSettings object for the locale DLL eloc1.32.</span>
       
   274 <a name="l00288"></a>00288         obj = <a class="code" href="class_c_locale_settings.html#addd65d460422ee02045471178b6ac466">CLocaleSettings::NewL</a>(localeName4, console);
       
   275 <a name="l00289"></a>00289         CleanupStack::PushL(obj);
       
   276 <a name="l00290"></a>00290         <span class="comment">// Display the locale settings for the locale DLL eloc1.32.</span>
       
   277 <a name="l00291"></a>00291         obj-&gt;<a class="code" href="class_c_locale_settings.html#a082c035077dc80e2d8668568234fbbf3">DisplayLocaleSettings</a>();
       
   278 <a name="l00292"></a>00292         <span class="comment">// Delete the CLocaleSettings object.</span>
       
   279 <a name="l00293"></a>00293         CleanupStack::PopAndDestroy(obj);
       
   280 <a name="l00294"></a>00294         }
       
   281 <a name="l00295"></a>00295 
       
   282 <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>
       
   283 <a name="l00297"></a>00297     {
       
   284 <a name="l00298"></a>00298         __UHEAP_MARK;
       
   285 <a name="l00299"></a>00299         CTrapCleanup* cleanup=CTrapCleanup::New(); <span class="comment">// get clean-up stack</span>
       
   286 <a name="l00300"></a>00300         TRAPD(error, CallExampleL()); <span class="comment">// more initialization, then do example</span>
       
   287 <a name="l00301"></a>00301         <span class="keyword">delete</span> cleanup; <span class="comment">// destroy clean-up stack</span>
       
   288 <a name="l00302"></a>00302         __ASSERT_ALWAYS(!error, User::Panic(KTxtEPOC32EX, error));
       
   289 <a name="l00303"></a>00303         __UHEAP_MARKEND;
       
   290 <a name="l00304"></a>00304         <span class="keywordflow">return</span> 0; <span class="comment">// and return</span>
       
   291 <a name="l00305"></a>00305     }
       
   292 <a name="l00306"></a>00306 
       
   293 <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>
       
   294 <a name="l00308"></a>00308     {
       
   295 <a name="l00309"></a>00309         console=Console::NewL(KTxtExampleCode, TSize(KConsFullScreen, KConsFullScreen));
       
   296 <a name="l00310"></a>00310         CleanupStack::PushL(console);
       
   297 <a name="l00311"></a>00311         TRAPD(error, DoStartL()); <span class="comment">// perform example function</span>
       
   298 <a name="l00312"></a>00312         <span class="keywordflow">if</span> (error)
       
   299 <a name="l00313"></a>00313                 console-&gt;Printf(KFormatFailed, error);
       
   300 <a name="l00314"></a>00314         <span class="keywordflow">else</span>
       
   301 <a name="l00315"></a>00315                 console-&gt;Printf(KTxtOK);
       
   302 <a name="l00316"></a>00316         console-&gt;Printf(KTextPressAnyKey);
       
   303 <a name="l00317"></a>00317         console-&gt;Getch(); <span class="comment">// get and ignore character</span>
       
   304 <a name="l00318"></a>00318         CleanupStack::PopAndDestroy(); <span class="comment">// close console</span>
       
   305 <a name="l00319"></a>00319     }
       
   306 </pre></div></div>
       
   307 <hr size="1"/><address style="text-align: right;"><small>Generated by&nbsp;
       
   308 <a href="http://www.doxygen.org/index.html">
       
   309 <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.2 </small></address>
       
   310 </body>
       
   311 </html>