Symbian3/Examples/guid-6013a680-57f9-415b-8851-c4fa63356636/smsexample_8cpp-source.html
Week 12 contribution of SDK documentation_content. See release notes for details. Fixes Bug 1892, Bug 1522, Bug 1520, Bug 394, Bug 1319, Bug 344, Bug 1897
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>TB10.1 Example Applications: examples/Messaging/smsexample/src/smsexample.cpp Source File</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.5.3 -->
<h1>examples/Messaging/smsexample/src/smsexample.cpp</h1><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">// Copyright (c) 2005-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 "Eclipse Public License v1.0"</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 "http://www.eclipse.org/legal/epl-v10.html".</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">//</span>
<a name="l00015"></a>00015
<a name="l00016"></a>00016 <span class="preprocessor">#include "smsexample.h"</span>
<a name="l00017"></a>00017 <span class="preprocessor">#include <msvuids.h></span>
<a name="l00018"></a>00018 <span class="preprocessor">#include <csmsaccount.h></span>
<a name="l00019"></a>00019
<a name="l00023"></a><a class="code" href="class_c_example_active.html#c711f336bb14f8be5baeca5433f3b57c">00023</a> <a class="code" href="class_c_example_active.html#c711f336bb14f8be5baeca5433f3b57c">CExampleActive::CExampleActive</a>()
<a name="l00024"></a>00024 : CActive(0)
<a name="l00025"></a>00025 {
<a name="l00026"></a>00026 CActiveScheduler::Add(<span class="keyword">this</span>);
<a name="l00027"></a>00027 }
<a name="l00031"></a><a class="code" href="class_c_example_active.html#5e16b98522e4f8beed5878df7518e490">00031</a> <a class="code" href="class_c_example_active.html#5e16b98522e4f8beed5878df7518e490">CExampleActive::~CExampleActive</a>()
<a name="l00032"></a>00032 {
<a name="l00033"></a>00033 Cancel();
<a name="l00034"></a>00034 }
<a name="l00035"></a>00035
<a name="l00039"></a><a class="code" href="class_c_example_active.html#e89dee9e4c8834602beec7cccac397ac">00039</a> <span class="keywordtype">void</span> <a class="code" href="class_c_example_active.html#e89dee9e4c8834602beec7cccac397ac">CExampleActive::DoCancel</a>()
<a name="l00040"></a>00040 {
<a name="l00041"></a>00041 TRequestStatus* s=&iStatus;
<a name="l00042"></a>00042 User::RequestComplete(s, KErrCancel);
<a name="l00043"></a>00043 }
<a name="l00044"></a>00044
<a name="l00048"></a><a class="code" href="class_c_example_active.html#fa71fae9d0c2e66624ee7eebe9dd4819">00048</a> <span class="keywordtype">void</span> <a class="code" href="class_c_example_active.html#fa71fae9d0c2e66624ee7eebe9dd4819">CExampleActive::StartL</a>()
<a name="l00049"></a>00049 {
<a name="l00050"></a>00050 SetActive();
<a name="l00051"></a>00051 }
<a name="l00052"></a>00052
<a name="l00056"></a><a class="code" href="class_c_example_active.html#e6bb631dcee538dd5b2536e1b9a316b5">00056</a> <span class="keywordtype">void</span> <a class="code" href="class_c_example_active.html#e6bb631dcee538dd5b2536e1b9a316b5">CExampleActive::RunL</a>()
<a name="l00057"></a>00057 {
<a name="l00058"></a>00058 CActiveScheduler::Stop();
<a name="l00059"></a>00059 }
<a name="l00060"></a>00060
<a name="l00064"></a><a class="code" href="class_c_sms_example.html#53745054d62b4340f05193612b4d2c37">00064</a> <a class="code" href="class_c_sms_example.html">CSmsExample</a>* <a class="code" href="class_c_sms_example.html#53745054d62b4340f05193612b4d2c37">CSmsExample::NewLC</a>()
<a name="l00065"></a>00065 {
<a name="l00066"></a>00066 <a class="code" href="class_c_sms_example.html">CSmsExample</a>* <span class="keyword">self</span>=<span class="keyword">new</span>(ELeave)<a class="code" href="class_c_sms_example.html#c6efe0b8cbd746a3ae1c6b0165bade09">CSmsExample</a>();
<a name="l00067"></a>00067 CleanupStack::PushL(<span class="keyword">self</span>);
<a name="l00068"></a>00068 <span class="keyword">self</span>->ConstructL();
<a name="l00069"></a>00069 <span class="keywordflow">return</span> <span class="keyword">self</span>;
<a name="l00070"></a>00070 }
<a name="l00071"></a>00071
<a name="l00075"></a>00075 <span class="keywordtype">void</span> CSmsExample::ConstructL()
<a name="l00076"></a>00076 {
<a name="l00077"></a>00077 <a class="code" href="class_c_sms_example.html#8a0295fca4e9c0f7868210642f3007c1">iParaFormat</a> = CParaFormatLayer::NewL();
<a name="l00078"></a>00078 <a class="code" href="class_c_sms_example.html#4bb891831d10254f1785866fe30fd8be">iCharFormat</a> = CCharFormatLayer::NewL();
<a name="l00079"></a>00079 <a class="code" href="class_c_sms_example.html#7d11a0e745efde77ff86911b06a386f7">iRichText</a> = CRichText::NewL(<a class="code" href="class_c_sms_example.html#8a0295fca4e9c0f7868210642f3007c1">iParaFormat</a>, <a class="code" href="class_c_sms_example.html#4bb891831d10254f1785866fe30fd8be">iCharFormat</a>);
<a name="l00080"></a>00080 }
<a name="l00081"></a>00081
<a name="l00085"></a><a class="code" href="class_c_sms_example.html#c6efe0b8cbd746a3ae1c6b0165bade09">00085</a> <a class="code" href="class_c_sms_example.html#c6efe0b8cbd746a3ae1c6b0165bade09">CSmsExample::CSmsExample</a>()
<a name="l00086"></a>00086 {
<a name="l00087"></a>00087 <a class="code" href="class_c_sms_example.html#4f3896b420c532d08edfbb03e046161f">iSmsServiceId</a> = KMsvNullIndexEntryId;
<a name="l00088"></a>00088 }
<a name="l00089"></a>00089
<a name="l00093"></a><a class="code" href="class_c_sms_example.html#b95a2dd6711f9bbf5843a492f89d4e2a">00093</a> <a class="code" href="class_c_sms_example.html#b95a2dd6711f9bbf5843a492f89d4e2a">CSmsExample::~CSmsExample</a>()
<a name="l00094"></a>00094 {
<a name="l00095"></a>00095 <span class="keyword">delete</span> <a class="code" href="class_c_sms_example.html#681a2129a46f72b6a68850a9ffbdf112">iServiceSettings</a>;
<a name="l00096"></a>00096 <span class="keyword">delete</span> <a class="code" href="class_c_sms_example.html#7d11a0e745efde77ff86911b06a386f7">iRichText</a>;
<a name="l00097"></a>00097 <span class="keyword">delete</span> <a class="code" href="class_c_sms_example.html#4bb891831d10254f1785866fe30fd8be">iCharFormat</a>;
<a name="l00098"></a>00098 <span class="keyword">delete</span> <a class="code" href="class_c_sms_example.html#8a0295fca4e9c0f7868210642f3007c1">iParaFormat</a>;
<a name="l00099"></a>00099 <span class="keyword">delete</span> <a class="code" href="class_c_sms_example.html#578295e093ba7da9c76bd873442fdd02">iMsvEntry</a>;
<a name="l00100"></a>00100 <span class="keyword">delete</span> <a class="code" href="class_c_sms_example.html#c9f2964547de6033e892059c1ba8d215">iSessionObserver</a>;
<a name="l00101"></a>00101 <span class="keyword">delete</span> <a class="code" href="class_c_sms_example.html#c6fb50b9ae9ced27168871e87b9334e6">iSession</a>;
<a name="l00102"></a>00102 <span class="keyword">delete</span> <a class="code" href="class_c_sms_example.html#24197fdbd0ad4f6106989f859bcecb38">iOperation</a>;
<a name="l00103"></a>00103 <span class="keyword">delete</span> <a class="code" href="class_c_sms_example.html#1fd2c628905018ada1fc9a1c5f0a5cab">iActive</a>;
<a name="l00104"></a>00104 <span class="keyword">delete</span> <a class="code" href="class_c_sms_example.html#ac1aa974dbadff2a9216c6077413ec01">iServerEntry</a>;
<a name="l00105"></a>00105 <span class="keyword">delete</span> <a class="code" href="class_c_sms_example.html#d4f3b06f8fb7f39bd40769c05a166ed1">ircpt</a>;
<a name="l00106"></a>00106 <span class="keyword">delete</span> <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>;
<a name="l00107"></a>00107 }
<a name="l00111"></a>00111 TBuf<220> CSmsExample::GetUserInput()
<a name="l00112"></a>00112 {
<a name="l00113"></a>00113 TBuf<220> buf;
<a name="l00114"></a>00114 TKeyCode ch = <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Getch();
<a name="l00115"></a>00115 <span class="keywordflow">while</span>(ch != EKeyEnter)
<a name="l00116"></a>00116 {
<a name="l00117"></a>00117 _LIT(KChar, <span class="stringliteral">"%c"</span>);
<a name="l00118"></a>00118 <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Printf(KChar,ch);
<a name="l00119"></a>00119 <span class="keywordflow">if</span>(ch!= EKeyBackspace)
<a name="l00120"></a>00120 {
<a name="l00121"></a>00121 buf.Append(ch);
<a name="l00122"></a>00122 }
<a name="l00123"></a>00123 ch=<a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Getch();
<a name="l00124"></a>00124 }
<a name="l00125"></a>00125 <span class="keywordflow">return</span> buf;
<a name="l00126"></a>00126 }
<a name="l00127"></a>00127
<a name="l00131"></a>00131 <span class="keywordtype">void</span> CSmsExample::ServiceIdL(TUid aMtm, TMsvId& aFirstId, CMsvEntrySelection* aServiceIds)
<a name="l00132"></a>00132 {
<a name="l00133"></a>00133 <span class="comment">//Returns the Service IDs of MTM aMtm</span>
<a name="l00134"></a>00134 TMsvSelectionOrdering ordering;
<a name="l00135"></a>00135 <a class="code" href="class_c_sms_example.html#c9f2964547de6033e892059c1ba8d215">iSessionObserver</a> = <span class="keyword">new</span> (ELeave) <a class="code" href="class_c_session_observer.html">CSessionObserver</a>();
<a name="l00136"></a>00136 <a class="code" href="class_c_sms_example.html#c6fb50b9ae9ced27168871e87b9334e6">iSession</a> = CMsvSession::OpenSyncL(*<a class="code" href="class_c_sms_example.html#c9f2964547de6033e892059c1ba8d215">iSessionObserver</a>);
<a name="l00137"></a>00137 <a class="code" href="class_c_sms_example.html#578295e093ba7da9c76bd873442fdd02">iMsvEntry</a> = CMsvEntry::NewL(*<a class="code" href="class_c_sms_example.html#c6fb50b9ae9ced27168871e87b9334e6">iSession</a>, KMsvGlobalInBoxIndexEntryIdValue,ordering);
<a name="l00138"></a>00138 aFirstId = KMsvNullIndexEntryId;
<a name="l00139"></a>00139 <a class="code" href="class_c_sms_example.html#578295e093ba7da9c76bd873442fdd02">iMsvEntry</a>->SetEntryL(KMsvRootIndexEntryId);
<a name="l00140"></a>00140
<a name="l00141"></a>00141 TMsvSelectionOrdering order;
<a name="l00142"></a>00142 order.SetShowInvisibleEntries(ETrue);
<a name="l00143"></a>00143 <a class="code" href="class_c_sms_example.html#578295e093ba7da9c76bd873442fdd02">iMsvEntry</a>->SetSortTypeL(order);
<a name="l00144"></a>00144
<a name="l00145"></a>00145 <span class="comment">//Get the children on the Root Index Entry</span>
<a name="l00146"></a>00146 CMsvEntrySelection* selection = <a class="code" href="class_c_sms_example.html#578295e093ba7da9c76bd873442fdd02">iMsvEntry</a>->ChildrenWithTypeL(KUidMsvServiceEntry);
<a name="l00147"></a>00147 CleanupStack::PushL(selection);
<a name="l00148"></a>00148
<a name="l00149"></a>00149 TInt count = selection->Count();
<a name="l00150"></a>00150
<a name="l00151"></a>00151 <span class="comment">//Find an entry for MTM aMtm</span>
<a name="l00152"></a>00152 <span class="keywordflow">for</span> (TInt curChild = 0; curChild < count && (aFirstId == KMsvNullIndexEntryId || aServiceIds); curChild++)
<a name="l00153"></a>00153 {
<a name="l00154"></a>00154 <a class="code" href="class_c_sms_example.html#578295e093ba7da9c76bd873442fdd02">iMsvEntry</a>->SetEntryL(selection->At(curChild));
<a name="l00155"></a>00155
<a name="l00156"></a>00156 <span class="keywordflow">if</span> (<a class="code" href="class_c_sms_example.html#578295e093ba7da9c76bd873442fdd02">iMsvEntry</a>->Entry().iMtm == aMtm)
<a name="l00157"></a>00157 {
<a name="l00158"></a>00158 TMsvId <span class="keywordtype">id</span> = <a class="code" href="class_c_sms_example.html#578295e093ba7da9c76bd873442fdd02">iMsvEntry</a>->Entry().Id();
<a name="l00159"></a>00159
<a name="l00160"></a>00160 <span class="keywordflow">if</span> (aFirstId == KMsvNullIndexEntryId)
<a name="l00161"></a>00161 {
<a name="l00162"></a>00162 aFirstId = id;
<a name="l00163"></a>00163 }
<a name="l00164"></a>00164
<a name="l00165"></a>00165 <span class="keywordflow">if</span> (aServiceIds)
<a name="l00166"></a>00166 {
<a name="l00167"></a>00167 aServiceIds->AppendL(<span class="keywordtype">id</span>);
<a name="l00168"></a>00168 }
<a name="l00169"></a>00169 }
<a name="l00170"></a>00170 }
<a name="l00171"></a>00171
<a name="l00172"></a>00172 <span class="comment">//Leave if no Service Entry found for MTM aMtm</span>
<a name="l00173"></a>00173 <span class="keywordflow">if</span> (aFirstId == KMsvNullIndexEntryId)
<a name="l00174"></a>00174 {
<a name="l00175"></a>00175 CleanupStack::PopAndDestroy(); <span class="comment">//selection</span>
<a name="l00176"></a>00176 User::Leave(KErrNotFound);
<a name="l00177"></a>00177 }
<a name="l00178"></a>00178 CleanupStack::PopAndDestroy(selection); <span class="comment">//selection</span>
<a name="l00179"></a>00179 }
<a name="l00180"></a>00180
<a name="l00185"></a>00185 <span class="keywordtype">void</span> CSmsExample::CreateSmsServiceL()
<a name="l00186"></a>00186 {
<a name="l00187"></a>00187 <span class="comment">// create service in root</span>
<a name="l00188"></a>00188 TInt err = KErrNone;
<a name="l00189"></a>00189 <a class="code" href="class_c_sms_example.html#4f3896b420c532d08edfbb03e046161f">iSmsServiceId</a> = 0;
<a name="l00190"></a>00190 TRAP(err, ServiceIdL(KUidMsgTypeSMS, <a class="code" href="class_c_sms_example.html#4f3896b420c532d08edfbb03e046161f">iSmsServiceId</a>));
<a name="l00191"></a>00191 TMsvSelectionOrdering ordering;
<a name="l00192"></a>00192 <span class="comment">// service settings.</span>
<a name="l00193"></a>00193
<a name="l00194"></a>00194 CSmsAccount* account = CSmsAccount::NewLC();
<a name="l00195"></a>00195 <a class="code" href="class_c_sms_example.html#681a2129a46f72b6a68850a9ffbdf112">iServiceSettings</a> = CSmsSettings::NewL();
<a name="l00196"></a>00196 account->LoadSettingsL(*<a class="code" href="class_c_sms_example.html#681a2129a46f72b6a68850a9ffbdf112">iServiceSettings</a>);
<a name="l00197"></a>00197
<a name="l00198"></a>00198 <span class="comment">// Remove the default service centres from the service settings</span>
<a name="l00199"></a>00199 TInt count = <a class="code" href="class_c_sms_example.html#681a2129a46f72b6a68850a9ffbdf112">iServiceSettings</a>->ServiceCenterCount();
<a name="l00200"></a>00200 <span class="keywordflow">while</span>( count-- )
<a name="l00201"></a>00201 {
<a name="l00202"></a>00202 <a class="code" href="class_c_sms_example.html#681a2129a46f72b6a68850a9ffbdf112">iServiceSettings</a>->RemoveServiceCenter(count);
<a name="l00203"></a>00203 }
<a name="l00204"></a>00204
<a name="l00205"></a>00205 _LIT(KTxtServiceCenter,<span class="stringliteral">"Add Service Center\n"</span>);
<a name="l00206"></a>00206 _LIT(KTxtServiceCenterLimit,<span class="stringliteral">"Service Center Name and Number should not be more than 15 characters\n"</span>);
<a name="l00207"></a>00207 _LIT(KTxtServiceCenterName,<span class="stringliteral">"Name is : "</span>);
<a name="l00208"></a>00208 _LIT(KTxtServiceCenterNumber,<span class="stringliteral">"\nNumber : "</span>);
<a name="l00209"></a>00209 <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Printf(KTxtServiceCenterLimit);
<a name="l00210"></a>00210 <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Printf(KTxtServiceCenter);
<a name="l00211"></a>00211 <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Printf(KTxtServiceCenterName);
<a name="l00212"></a>00212 TBuf<15> name = GetUserInput();
<a name="l00213"></a>00213 <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Printf(KTxtServiceCenterNumber);
<a name="l00214"></a>00214 TBuf<15> number = GetUserInput();
<a name="l00215"></a>00215 <span class="comment">// Add the Vodafone service centre - store the settings.</span>
<a name="l00216"></a>00216 <a class="code" href="class_c_sms_example.html#681a2129a46f72b6a68850a9ffbdf112">iServiceSettings</a>->AddServiceCenterL(name, number);
<a name="l00217"></a>00217
<a name="l00218"></a>00218 <span class="comment">// Set delivery options - do matching and make reports visible. </span>
<a name="l00219"></a>00219 <a class="code" href="class_c_sms_example.html#681a2129a46f72b6a68850a9ffbdf112">iServiceSettings</a>->SetDeliveryReport(ETrue);
<a name="l00220"></a>00220 <a class="code" href="class_c_sms_example.html#681a2129a46f72b6a68850a9ffbdf112">iServiceSettings</a>->SetStatusReportHandling(CSmsSettings::EMoveReportToInboxVisibleAndMatch);
<a name="l00221"></a>00221 account->SaveSettingsL(*<a class="code" href="class_c_sms_example.html#681a2129a46f72b6a68850a9ffbdf112">iServiceSettings</a>);
<a name="l00222"></a>00222
<a name="l00223"></a>00223 <span class="comment">//Get the service centre information.</span>
<a name="l00224"></a>00224 CSmsServiceCenter* serviceCenter = CSmsServiceCenter::NewL(<a class="code" href="class_c_sms_example.html#681a2129a46f72b6a68850a9ffbdf112">iServiceSettings</a>->GetServiceCenter(0));
<a name="l00225"></a>00225 TPtrC name1 = serviceCenter->Name(); <span class="comment">//Name of the service center</span>
<a name="l00226"></a>00226 TPtrC number1 = serviceCenter->Address(); <span class="comment">//Address details of the service center</span>
<a name="l00227"></a>00227 _LIT(KTxtDisplayServiceCenterDetails,<span class="stringliteral">"\nService centre name is %S \n Number is %S \n"</span>);
<a name="l00228"></a>00228 <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Printf(KTxtDisplayServiceCenterDetails,&name1,&number1);
<a name="l00229"></a>00229 CleanupStack::PopAndDestroy(account);
<a name="l00230"></a>00230
<a name="l00231"></a>00231 <span class="comment">//used for asynchronous calls</span>
<a name="l00232"></a>00232 <a class="code" href="class_c_sms_example.html#1fd2c628905018ada1fc9a1c5f0a5cab">iActive</a>=<span class="keyword">new</span>(ELeave) <a class="code" href="class_c_example_active.html">CExampleActive</a>;
<a name="l00233"></a>00233 <span class="keyword">delete</span> serviceCenter;
<a name="l00234"></a>00234 }
<a name="l00235"></a>00235
<a name="l00239"></a>00239 <span class="keywordtype">void</span> CSmsExample::SetRecipientsL(CSmsHeader& aHeader)
<a name="l00240"></a>00240 {
<a name="l00241"></a>00241 _LIT(KTxtSetReceipent,<span class="stringliteral">"\nGive the receipent number\n"</span>);
<a name="l00242"></a>00242 <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Printf(KTxtSetReceipent);
<a name="l00243"></a>00243 CSmsNumber* <a class="code" href="class_c_sms_example.html#d4f3b06f8fb7f39bd40769c05a166ed1">ircpt</a> = CSmsNumber::NewL();
<a name="l00244"></a>00244 _LIT(KTxtReceipentNumberLimit,<span class="stringliteral">"Receipent Number should not be more than 15 characters :\n"</span>);
<a name="l00245"></a>00245 <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Printf(KTxtReceipentNumberLimit);
<a name="l00246"></a>00246 TBuf<15> receipent = GetUserInput();
<a name="l00247"></a>00247 ircpt->SetAddressL(receipent);
<a name="l00248"></a>00248 aHeader.Recipients().AppendL(ircpt);
<a name="l00249"></a>00249 }
<a name="l00250"></a>00250
<a name="l00254"></a>00254 <span class="keywordtype">void</span> CSmsExample::CreateMessageL()
<a name="l00255"></a>00255 {
<a name="l00256"></a>00256 _LIT(KTxtCreateMessage,<span class="stringliteral">"Creating message...\n"</span>);
<a name="l00257"></a>00257 <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Printf(KTxtCreateMessage);
<a name="l00258"></a>00258 TMsvEntry entry;
<a name="l00259"></a>00259 entry.SetVisible(ETrue);
<a name="l00260"></a>00260 entry.SetInPreparation(ETrue);
<a name="l00261"></a>00261 entry.iServiceId = <a class="code" href="class_c_sms_example.html#4f3896b420c532d08edfbb03e046161f">iSmsServiceId</a>; <span class="comment">//iSmsServiceId</span>
<a name="l00262"></a>00262 entry.iType = KUidMsvMessageEntry;
<a name="l00263"></a>00263 entry.iMtm = KUidMsgTypeSMS;
<a name="l00264"></a>00264 entry.iDate.HomeTime();
<a name="l00265"></a>00265 entry.iSize = 0;
<a name="l00266"></a>00266 entry.iDescription.Set(KNullDesC);
<a name="l00267"></a>00267 entry.iDetails.Set(KNullDesC);
<a name="l00268"></a>00268 entry.SetSendingState(KMsvSendStateScheduled);
<a name="l00269"></a>00269
<a name="l00270"></a>00270 <span class="comment">// Create the SMS header object...</span>
<a name="l00271"></a>00271 CSmsHeader* header = CSmsHeader::NewL(CSmsPDU::ESmsSubmit, *<a class="code" href="class_c_sms_example.html#7d11a0e745efde77ff86911b06a386f7">iRichText</a>);
<a name="l00272"></a>00272
<a name="l00273"></a>00273 <span class="comment">// Set the body text...</span>
<a name="l00274"></a>00274 <a class="code" href="class_c_sms_example.html#7d11a0e745efde77ff86911b06a386f7">iRichText</a>->Reset();
<a name="l00275"></a>00275 _LIT(KMessageData, <span class="stringliteral">"Write the Message description\n"</span>);
<a name="l00276"></a>00276 <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Printf(KMessageData);
<a name="l00277"></a>00277
<a name="l00278"></a>00278 _LIT(KTxtMessageLimit,<span class="stringliteral">"Total number of characters in the message should not be more than 220 :\n"</span>);
<a name="l00279"></a>00279 <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Printf(KTxtMessageLimit);
<a name="l00280"></a>00280 TBuf<220> message = GetUserInput();
<a name="l00281"></a>00281 <a class="code" href="class_c_sms_example.html#7d11a0e745efde77ff86911b06a386f7">iRichText</a>->InsertL(0, message);
<a name="l00282"></a>00282
<a name="l00283"></a>00283 <span class="comment">// Copy the message settings...</span>
<a name="l00284"></a>00284 header->SetSmsSettingsL(*<a class="code" href="class_c_sms_example.html#681a2129a46f72b6a68850a9ffbdf112">iServiceSettings</a>);
<a name="l00285"></a>00285
<a name="l00286"></a>00286 <span class="comment">// Set the service centre</span>
<a name="l00287"></a>00287 TInt defaultIndex = <a class="code" href="class_c_sms_example.html#681a2129a46f72b6a68850a9ffbdf112">iServiceSettings</a>->DefaultServiceCenter();
<a name="l00288"></a>00288 header->SetServiceCenterAddressL(<a class="code" href="class_c_sms_example.html#681a2129a46f72b6a68850a9ffbdf112">iServiceSettings</a>->GetServiceCenter(defaultIndex).Address());
<a name="l00289"></a>00289
<a name="l00290"></a>00290 <span class="comment">// Set recipient - ask derived class</span>
<a name="l00291"></a>00291 SetRecipientsL(*header);
<a name="l00292"></a>00292
<a name="l00293"></a>00293 <span class="comment">// Update entry description and details...</span>
<a name="l00294"></a>00294 CArrayPtrFlat<CSmsNumber>& recipient = header->Recipients();
<a name="l00295"></a>00295 entry.iDetails.Set(recipient[0]->Address());
<a name="l00296"></a>00296 entry.iDescription.Set(<a class="code" href="class_c_sms_example.html#7d11a0e745efde77ff86911b06a386f7">iRichText</a>->Read(0, <a class="code" href="class_c_sms_example.html#681a2129a46f72b6a68850a9ffbdf112">iServiceSettings</a>->DescriptionLength()));
<a name="l00297"></a>00297 entry.SetInPreparation(EFalse);
<a name="l00298"></a>00298
<a name="l00299"></a>00299 <span class="comment">// Create the entry - set context to the global outbox.</span>
<a name="l00300"></a>00300 <a class="code" href="class_c_sms_example.html#578295e093ba7da9c76bd873442fdd02">iMsvEntry</a>->SetEntryL(KMsvGlobalOutBoxIndexEntryId);
<a name="l00301"></a>00301 <a class="code" href="class_c_sms_example.html#578295e093ba7da9c76bd873442fdd02">iMsvEntry</a>->CreateL(entry);
<a name="l00302"></a>00302
<a name="l00303"></a>00303 <span class="comment">// Create new store and save header information </span>
<a name="l00304"></a>00304 <a class="code" href="class_c_sms_example.html#578295e093ba7da9c76bd873442fdd02">iMsvEntry</a>->SetEntryL(entry.Id());
<a name="l00305"></a>00305 CMsvStore* store = <a class="code" href="class_c_sms_example.html#578295e093ba7da9c76bd873442fdd02">iMsvEntry</a>->EditStoreL();
<a name="l00306"></a>00306 CleanupStack::PushL(store);
<a name="l00307"></a>00307 header->StoreL(*store);
<a name="l00308"></a>00308 store->StoreBodyTextL(*<a class="code" href="class_c_sms_example.html#7d11a0e745efde77ff86911b06a386f7">iRichText</a>);
<a name="l00309"></a>00309 store->CommitL();
<a name="l00310"></a>00310 <span class="keyword">delete</span> header;
<a name="l00311"></a>00311 CleanupStack::PopAndDestroy(store);
<a name="l00312"></a>00312 <a class="code" href="class_c_sms_example.html#896350e1ad0fe7055fa2a0a4a316376f">iMessageId</a> = entry.Id();
<a name="l00313"></a>00313 }
<a name="l00314"></a>00314
<a name="l00318"></a>00318 <span class="keywordtype">void</span> CSmsExample::DisplayMessagesL(TMsvId aFolder)
<a name="l00319"></a>00319 {
<a name="l00320"></a>00320 <a class="code" href="class_c_sms_example.html#578295e093ba7da9c76bd873442fdd02">iMsvEntry</a>->SetEntryL(aFolder);
<a name="l00321"></a>00321 CMsvEntrySelection* sel = <a class="code" href="class_c_sms_example.html#578295e093ba7da9c76bd873442fdd02">iMsvEntry</a>->ChildrenL();
<a name="l00322"></a>00322 TInt count = sel->Count();
<a name="l00323"></a>00323 <span class="keywordflow">for</span>(TInt i=0;i<count;i++)
<a name="l00324"></a>00324 {
<a name="l00325"></a>00325 <a class="code" href="class_c_sms_example.html#578295e093ba7da9c76bd873442fdd02">iMsvEntry</a>->SetEntryL(sel->At(i));
<a name="l00326"></a>00326 TMsvEntry sel = <a class="code" href="class_c_sms_example.html#578295e093ba7da9c76bd873442fdd02">iMsvEntry</a>->Entry();
<a name="l00327"></a>00327 _LIT(KTxtMessageDescription,<span class="stringliteral">"\nMessage Description is : %S\n"</span>);
<a name="l00328"></a>00328 <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Printf(KTxtMessageDescription,&sel.iDescription);
<a name="l00329"></a>00329 _LIT(KTxtMessageDetails,<span class="stringliteral">"\nMessage Details are : %S\n"</span>);
<a name="l00330"></a>00330 <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Printf(KTxtMessageDetails,&sel.iDetails);
<a name="l00331"></a>00331 }
<a name="l00332"></a>00332 <span class="keyword">delete</span> sel;
<a name="l00333"></a>00333 }
<a name="l00334"></a>00334
<a name="l00342"></a>00342 <span class="keywordtype">void</span> CSmsExample::SendMessageL()
<a name="l00343"></a>00343 {
<a name="l00344"></a>00344 _LIT(KTxtSendingMessage,<span class="stringliteral">"\nSending message...\n"</span>);
<a name="l00345"></a>00345 <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Printf(KTxtSendingMessage);
<a name="l00346"></a>00346 <span class="keyword">delete</span> <a class="code" href="class_c_sms_example.html#24197fdbd0ad4f6106989f859bcecb38">iOperation</a>;
<a name="l00347"></a>00347 <a class="code" href="class_c_sms_example.html#24197fdbd0ad4f6106989f859bcecb38">iOperation</a> = NULL;
<a name="l00348"></a>00348 CMsvEntrySelection* sel = <span class="keyword">new</span> (ELeave) CMsvEntrySelection();
<a name="l00349"></a>00349 CleanupStack::PushL(sel);
<a name="l00350"></a>00350 sel->AppendL(<a class="code" href="class_c_sms_example.html#896350e1ad0fe7055fa2a0a4a316376f">iMessageId</a>);
<a name="l00351"></a>00351 <a class="code" href="class_c_sms_example.html#578295e093ba7da9c76bd873442fdd02">iMsvEntry</a>->SetEntryL(KMsvGlobalOutBoxIndexEntryId);
<a name="l00357"></a>00357 <a class="code" href="class_c_sms_example.html#24197fdbd0ad4f6106989f859bcecb38">iOperation</a> = <a class="code" href="class_c_sms_example.html#578295e093ba7da9c76bd873442fdd02">iMsvEntry</a>->CopyL(*sel, KMsvSentEntryId,<a class="code" href="class_c_sms_example.html#1fd2c628905018ada1fc9a1c5f0a5cab">iActive</a>->iStatus);
<a name="l00358"></a>00358 <a class="code" href="class_c_sms_example.html#1fd2c628905018ada1fc9a1c5f0a5cab">iActive</a>-><a class="code" href="class_c_example_active.html#fa71fae9d0c2e66624ee7eebe9dd4819">StartL</a>();
<a name="l00359"></a>00359 CActiveScheduler::Start();
<a name="l00360"></a>00360 CleanupStack::PopAndDestroy(sel);
<a name="l00361"></a>00361 }
<a name="l00362"></a>00362
<a name="l00366"></a>00366 <span class="keywordtype">void</span> CSmsExample::DeleteMessagesL(TMsvId aFolder)
<a name="l00367"></a>00367 {
<a name="l00368"></a>00368 <a class="code" href="class_c_sms_example.html#578295e093ba7da9c76bd873442fdd02">iMsvEntry</a>->SetEntryL(aFolder);
<a name="l00369"></a>00369 CMsvEntrySelection* sel = <a class="code" href="class_c_sms_example.html#578295e093ba7da9c76bd873442fdd02">iMsvEntry</a>->ChildrenL();
<a name="l00370"></a>00370 TInt count = sel->Count();
<a name="l00371"></a>00371 <span class="keywordflow">while</span> (count--)
<a name="l00372"></a>00372 {
<a name="l00373"></a>00373 <a class="code" href="class_c_sms_example.html#578295e093ba7da9c76bd873442fdd02">iMsvEntry</a>->DeleteL(sel->At(count));
<a name="l00374"></a>00374 }
<a name="l00375"></a>00375 <span class="keyword">delete</span> sel; <span class="comment">//delete selection</span>
<a name="l00376"></a>00376 }
<a name="l00377"></a>00377
<a name="l00381"></a>00381 <span class="keywordtype">void</span> CSmsExample::ReceiveMessagesL()
<a name="l00382"></a>00382 {
<a name="l00383"></a>00383 _LIT(KTxtReceivingMessage,<span class="stringliteral">"Receiving message...\n"</span>);
<a name="l00384"></a>00384 <span class="comment">/*</span>
<a name="l00385"></a>00385 <span class="comment"> * Messaging framework receives the messages from the Watchers. The watchers place them in the</span>
<a name="l00386"></a>00386 <span class="comment"> * INBOX. For this example, as the network simulation is not present, we are moving the message from </span>
<a name="l00387"></a>00387 <span class="comment"> * OutBox to INBOX and reading it. </span>
<a name="l00388"></a>00388 <span class="comment"> */</span>
<a name="l00389"></a>00389 <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Printf(KTxtReceivingMessage);
<a name="l00390"></a>00390 <span class="keyword">delete</span> <a class="code" href="class_c_sms_example.html#24197fdbd0ad4f6106989f859bcecb38">iOperation</a>;
<a name="l00391"></a>00391 <a class="code" href="class_c_sms_example.html#24197fdbd0ad4f6106989f859bcecb38">iOperation</a> = NULL;
<a name="l00392"></a>00392 CMsvEntrySelection* sel = <span class="keyword">new</span> (ELeave) CMsvEntrySelection();
<a name="l00393"></a>00393 CleanupStack::PushL(sel);
<a name="l00394"></a>00394 sel->AppendL(<a class="code" href="class_c_sms_example.html#896350e1ad0fe7055fa2a0a4a316376f">iMessageId</a>);
<a name="l00395"></a>00395 <a class="code" href="class_c_sms_example.html#578295e093ba7da9c76bd873442fdd02">iMsvEntry</a>->SetEntryL(KMsvGlobalOutBoxIndexEntryId);
<a name="l00396"></a>00396 <a class="code" href="class_c_sms_example.html#24197fdbd0ad4f6106989f859bcecb38">iOperation</a> = <a class="code" href="class_c_sms_example.html#578295e093ba7da9c76bd873442fdd02">iMsvEntry</a>->CopyL(*sel, KMsvGlobalInBoxIndexEntryId,<a class="code" href="class_c_sms_example.html#1fd2c628905018ada1fc9a1c5f0a5cab">iActive</a>->iStatus);
<a name="l00397"></a>00397 <a class="code" href="class_c_sms_example.html#1fd2c628905018ada1fc9a1c5f0a5cab">iActive</a>-><a class="code" href="class_c_example_active.html#fa71fae9d0c2e66624ee7eebe9dd4819">StartL</a>();
<a name="l00398"></a>00398 CActiveScheduler::Start();
<a name="l00399"></a>00399 DisplayMessagesL(KMsvGlobalInBoxIndexEntryId);
<a name="l00400"></a>00400 CleanupStack::PopAndDestroy(sel);
<a name="l00401"></a>00401 }
<a name="l00402"></a>00402
<a name="l00406"></a><a class="code" href="class_c_sms_example.html#b11a492516d1dfb18b64e8e5cf393643">00406</a> <span class="keywordtype">void</span> <a class="code" href="class_c_sms_example.html#b11a492516d1dfb18b64e8e5cf393643">CSmsExample::SendReceiveSmsL</a>()
<a name="l00407"></a>00407 {
<a name="l00408"></a>00408 <span class="comment">// Create and install the active scheduler</span>
<a name="l00409"></a>00409 CActiveScheduler* scheduler= <span class="keyword">new</span> (ELeave) CActiveScheduler();
<a name="l00410"></a>00410 CleanupStack::PushL(scheduler);
<a name="l00411"></a>00411 CActiveScheduler::Install(scheduler);
<a name="l00412"></a>00412 _LIT(KTxtExampleCode,<span class="stringliteral">"SMS Example \n"</span>);
<a name="l00413"></a>00413 <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>= Console::NewL(KTxtExampleCode,TSize(KConsFullScreen,KConsFullScreen));
<a name="l00414"></a>00414 <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Printf(KTxtExampleCode);
<a name="l00415"></a>00415 _LIT(KTxtEsc,<span class="stringliteral">"Press ESC to exit the example\n"</span>);
<a name="l00416"></a>00416 _LIT(KTxtPressAnyKey,<span class="stringliteral">"Press any key to continue\n"</span>);
<a name="l00417"></a>00417 _LIT(KFormat,<span class="stringliteral">"************************************************************************************\n"</span>);
<a name="l00418"></a>00418 _LIT(KTxtSmsExampleInfo1,<span class="stringliteral">"Create an SMS service by giving the service center details like name and number.\n \</span>
<a name="l00419"></a>00419 <span class="stringliteral"> \nCreate a SMS message, with message details and recipient number...\n \</span>
<a name="l00420"></a>00420 <span class="stringliteral"> \nOnce you have added a service center, you will use this to send messages.\n"</span>);
<a name="l00421"></a>00421 _LIT(KTxtSmsExampleInfo2,<span class="stringliteral">"\nAll options will allow you to create a service ID if required. \n \</span>
<a name="l00422"></a>00422 <span class="stringliteral"> The send and receive options allow you to create a message if required.\n"</span>);
<a name="l00423"></a>00423 _LIT(KTxtSmsExampleInfo3,<span class="stringliteral">"\nSo the options do not need to be selected sequentially.\n"</span>);
<a name="l00424"></a>00424 <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Printf(KFormat);
<a name="l00425"></a>00425 <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Printf(KTxtSmsExampleInfo1);
<a name="l00426"></a>00426 <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Printf(KTxtSmsExampleInfo2);
<a name="l00427"></a>00427 <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Printf(KTxtSmsExampleInfo3);
<a name="l00428"></a>00428 <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Printf(KFormat);
<a name="l00429"></a>00429 <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Printf(KTxtPressAnyKey);
<a name="l00430"></a>00430 <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Printf(KTxtEsc);
<a name="l00431"></a>00431 TBool serviceCreated = EFalse;
<a name="l00432"></a>00432 TBool messageCreated = EFalse;
<a name="l00433"></a>00433 TBool messageSent = EFalse;
<a name="l00434"></a>00434 TChar tchar = <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Getch();
<a name="l00435"></a>00435 <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->ClearScreen();
<a name="l00436"></a>00436 <span class="comment">//make a choice</span>
<a name="l00437"></a>00437 <span class="keywordflow">while</span> (tchar != EKeyEscape)
<a name="l00438"></a>00438 {
<a name="l00439"></a>00439 _LIT(KCreateSmsService,<span class="stringliteral">"Option 1 : Create an SMS Service \n"</span>);
<a name="l00440"></a>00440 _LIT(KCreateSms,<span class="stringliteral">"Option 2 : Create an SMS message \n"</span>);
<a name="l00441"></a>00441 _LIT(KCreateSendSMS,<span class="stringliteral">"Option 3 : Send the message \n"</span>);
<a name="l00442"></a>00442 _LIT(KCreateReceiveSMS,<span class="stringliteral">"Option 4 : Receive the message \n"</span>);
<a name="l00443"></a>00443 _LIT(KTxtOptionNotSupported,<span class="stringliteral">" Option is not supported \n"</span>);
<a name="l00444"></a>00444 <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Printf(KFormat);
<a name="l00445"></a>00445 <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Printf(KCreateSmsService);
<a name="l00446"></a>00446 <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Printf(KCreateSms);
<a name="l00447"></a>00447 <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Printf(KCreateSendSMS);
<a name="l00448"></a>00448 <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Printf(KCreateReceiveSMS);
<a name="l00449"></a>00449 <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Printf(KFormat);
<a name="l00450"></a>00450 TChar option = <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Getch();
<a name="l00451"></a>00451 <span class="keywordflow">switch</span>(option)
<a name="l00452"></a>00452 {
<a name="l00453"></a>00453 <span class="keywordflow">case</span> <span class="charliteral">'1'</span>:
<a name="l00454"></a>00454 {
<a name="l00455"></a>00455 <span class="keywordflow">if</span>(!serviceCreated)
<a name="l00456"></a>00456 {
<a name="l00457"></a>00457 CreateSmsServiceL();
<a name="l00458"></a>00458 serviceCreated = ETrue;
<a name="l00459"></a>00459 }
<a name="l00460"></a>00460 <span class="keywordflow">else</span>
<a name="l00461"></a>00461 {
<a name="l00462"></a>00462 _LIT(KTxtServiceCenterAlreadyExists,<span class="stringliteral">"Service center already exists\n"</span>);
<a name="l00463"></a>00463 <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Printf(KTxtServiceCenterAlreadyExists);
<a name="l00464"></a>00464 }
<a name="l00465"></a>00465 <span class="keywordflow">break</span>;
<a name="l00466"></a>00466 }
<a name="l00467"></a>00467 <span class="keywordflow">case</span> <span class="charliteral">'2'</span>:
<a name="l00468"></a>00468 {
<a name="l00469"></a>00469 <span class="keywordflow">if</span>(!serviceCreated)
<a name="l00470"></a>00470 {
<a name="l00471"></a>00471 serviceCreated = ETrue;
<a name="l00472"></a>00472 CreateSmsServiceL();
<a name="l00473"></a>00473 }
<a name="l00474"></a>00474 messageCreated = ETrue;
<a name="l00475"></a>00475 DeleteMessagesL(KMsvGlobalOutBoxIndexEntryId);
<a name="l00476"></a>00476 DeleteMessagesL(KMsvSentEntryId);
<a name="l00477"></a>00477 CreateMessageL();
<a name="l00478"></a>00478 DisplayMessagesL(KMsvGlobalOutBoxIndexEntryId);
<a name="l00479"></a>00479 <span class="keywordflow">break</span>;
<a name="l00480"></a>00480 }
<a name="l00481"></a>00481 <span class="keywordflow">case</span> <span class="charliteral">'3'</span>:
<a name="l00482"></a>00482 {
<a name="l00483"></a>00483 <span class="keywordflow">if</span>(!serviceCreated)
<a name="l00484"></a>00484 {
<a name="l00485"></a>00485 serviceCreated = ETrue;
<a name="l00486"></a>00486 CreateSmsServiceL();
<a name="l00487"></a>00487 }
<a name="l00488"></a>00488 <span class="keywordflow">if</span>(!messageCreated)
<a name="l00489"></a>00489 {
<a name="l00490"></a>00490 messageCreated = ETrue;
<a name="l00491"></a>00491 DeleteMessagesL(KMsvGlobalOutBoxIndexEntryId);
<a name="l00492"></a>00492 DeleteMessagesL(KMsvSentEntryId);
<a name="l00493"></a>00493 CreateMessageL();
<a name="l00494"></a>00494 DisplayMessagesL(KMsvGlobalOutBoxIndexEntryId);
<a name="l00495"></a>00495 }
<a name="l00496"></a>00496 messageSent = ETrue;
<a name="l00497"></a>00497 SendMessageL();
<a name="l00498"></a>00498 DisplayMessagesL(KMsvSentEntryId);
<a name="l00499"></a>00499 <span class="keywordflow">break</span>;
<a name="l00500"></a>00500 }
<a name="l00501"></a>00501 <span class="keywordflow">case</span> <span class="charliteral">'4'</span>:
<a name="l00502"></a>00502 {
<a name="l00503"></a>00503 <span class="keywordflow">if</span>(!serviceCreated)
<a name="l00504"></a>00504 {
<a name="l00505"></a>00505 serviceCreated = ETrue;
<a name="l00506"></a>00506 CreateSmsServiceL();
<a name="l00507"></a>00507 }
<a name="l00508"></a>00508 <span class="keywordflow">if</span>(!messageCreated)
<a name="l00509"></a>00509 {
<a name="l00510"></a>00510 messageCreated = ETrue;
<a name="l00511"></a>00511 DeleteMessagesL(KMsvGlobalOutBoxIndexEntryId);
<a name="l00512"></a>00512 DeleteMessagesL(KMsvSentEntryId);
<a name="l00513"></a>00513 CreateMessageL();
<a name="l00514"></a>00514 DisplayMessagesL(KMsvGlobalOutBoxIndexEntryId);
<a name="l00515"></a>00515 }
<a name="l00516"></a>00516 <span class="keywordflow">if</span>(!messageSent)
<a name="l00517"></a>00517 {
<a name="l00518"></a>00518 messageSent = ETrue;
<a name="l00519"></a>00519 SendMessageL();
<a name="l00520"></a>00520 DisplayMessagesL(KMsvSentEntryId);
<a name="l00521"></a>00521 }
<a name="l00522"></a>00522 DeleteMessagesL(KMsvGlobalInBoxIndexEntryId);
<a name="l00523"></a>00523 ReceiveMessagesL();
<a name="l00524"></a>00524 <span class="keywordflow">break</span>;
<a name="l00525"></a>00525 }
<a name="l00526"></a>00526 <span class="keywordflow">default</span>:
<a name="l00527"></a>00527 {
<a name="l00528"></a>00528 <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Printf(KTxtOptionNotSupported);
<a name="l00529"></a>00529 <span class="keywordflow">break</span>;
<a name="l00530"></a>00530 }
<a name="l00531"></a>00531 }
<a name="l00532"></a>00532 <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Printf(KTxtPressAnyKey);
<a name="l00533"></a>00533 <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Printf(KTxtEsc);
<a name="l00534"></a>00534 tchar = <a class="code" href="class_c_sms_example.html#bc60e36feecbd73261f7a829b0d09d87">iConsole</a>->Getch();
<a name="l00535"></a>00535 }
<a name="l00536"></a>00536 CleanupStack::PopAndDestroy(scheduler);
<a name="l00537"></a>00537 }
<a name="l00538"></a>00538
<a name="l00542"></a>00542 <span class="keywordtype">void</span> callExampleL()
<a name="l00543"></a>00543 {
<a name="l00544"></a>00544 <a class="code" href="class_c_sms_example.html">CSmsExample</a>* sendreceive = <a class="code" href="class_c_sms_example.html#53745054d62b4340f05193612b4d2c37">CSmsExample::NewLC</a>();
<a name="l00545"></a>00545 sendreceive-><a class="code" href="class_c_sms_example.html#b11a492516d1dfb18b64e8e5cf393643">SendReceiveSmsL</a>();
<a name="l00546"></a>00546 CleanupStack::PopAndDestroy(sendreceive);
<a name="l00547"></a>00547 }
<a name="l00548"></a>00548
<a name="l00549"></a>00549 <span class="keyword">extern</span> TInt <a class="code" href="dbllist_8cpp.html#0f358e9c4355138f629b8c4f37310295">E32Main</a>()
<a name="l00550"></a>00550 {
<a name="l00551"></a>00551 __UHEAP_MARK;
<a name="l00552"></a>00552 CTrapCleanup* cleanup=CTrapCleanup::New(); <span class="comment">// Create clean-up stack.</span>
<a name="l00553"></a>00553 <span class="keywordflow">if</span>(cleanup!=NULL)
<a name="l00554"></a>00554 {
<a name="l00555"></a>00555 TRAPD (<a class="code" href="_camera___app_ui_8cpp.html#711e7d3cb49b7e0de7880fed269134d3">error</a>,callExampleL());
<a name="l00556"></a>00556 _LIT(KTxtSmsExample,<span class="stringliteral">"SMS Example"</span>);
<a name="l00557"></a>00557 __ASSERT_ALWAYS(!<a class="code" href="_camera___app_ui_8cpp.html#711e7d3cb49b7e0de7880fed269134d3">error</a>,User::Panic(KTxtSmsExample,<a class="code" href="_camera___app_ui_8cpp.html#711e7d3cb49b7e0de7880fed269134d3">error</a>));
<a name="l00558"></a>00558 }
<a name="l00559"></a>00559 <span class="keyword">delete</span> cleanup; <span class="comment">// Delete clean-up stack.</span>
<a name="l00560"></a>00560 __UHEAP_MARKEND;
<a name="l00561"></a>00561 <span class="keywordflow">return</span> KErrNone;
<a name="l00562"></a>00562 }
</pre></div><hr size="1"><address style="text-align: right;"><small>Generated on Thu Jan 21 10:32:59 2010 for TB10.1 Example Applications by
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.3 </small></address>
</body>
</html>