Archived:AIW Dial Data Consumer Symbian API
hamishwillee
(Talk | contribs) m (Removed protection from "CS001026 - AIW Dial Data Consumer API") |
hamishwillee
(Talk | contribs) m (Hamishwillee - Bot update - Merge KB into wiki) |
||
| Line 1: | Line 1: | ||
| + | {{Archived|timestamp=20120313123724|user=roy.debjit| }} | ||
[[Category:Symbian C++]][[Category:S60 3rd Edition FP2]][[Category:Telephony]][[Category:Code Examples]][[Category:Code Snippet]] | [[Category:Symbian C++]][[Category:S60 3rd Edition FP2]][[Category:Telephony]][[Category:Code Examples]][[Category:Code Snippet]] | ||
| − | + | {{ArticleMetaData <!-- v1.2 --> | |
| − | + | |sourcecode= [[Media:AiwConsumerFP2Ex.zip]] | |
| − | + | ||
| − | {{ArticleMetaData | + | |
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
|installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) --> | |installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) --> | ||
| − | |sdk=<!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Nokia Qt SDK 1.1]) --> | + | |devices= <!-- Devices tested against - e.g. ''devices=Nokia 6131 NFC, Nokia C7-00'') --> |
| − | |devicecompatability=<!-- Compatible devices (e.g.: All* (must have GPS) ) --> | + | |sdk= <!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Nokia Qt SDK 1.1]) --> |
| − | |signing=<!-- Empty or one of Self-Signed, DevCert, Manufacturer --> | + | |platform= S60 3rd Edition, FP2 |
| − | |capabilities=<!-- Capabilities required (e.g. Location, NetworkServices. --> | + | |devicecompatability= <!-- Compatible devices (e.g.: All* (must have GPS) ) --> |
| − | |author=[[User:Technical writer 1]] | + | |dependencies= <!-- Any other/external dependencies e.g.: Google Maps Api v1.0 --> |
| + | |signing= <!-- Empty or one of Self-Signed, DevCert, Manufacturer --> | ||
| + | |capabilities= <!-- Capabilities required by the article/code example (e.g. Location, NetworkServices. --> | ||
| + | |keywords= AIW Dial Data Consumer API | ||
| + | |language= <!-- Language category code for non-English topics - e.g. Lang-Chinese --> | ||
| + | |translated-by= <!-- [[User:XXXX]] --> | ||
| + | |translated-from-title= <!-- Title only --> | ||
| + | |translated-from-id= <!-- Id of translated revision --> | ||
| + | |review-by= <!-- After re-review: [[User:username]] --> | ||
| + | |review-timestamp= <!-- After re-review: YYYYMMDD --> | ||
| + | |update-by= <!-- After significant update: [[User:username]]--> | ||
| + | |update-timestamp= <!-- After significant update: YYYYMMDD --> | ||
| + | |creationdate= 20080613 | ||
| + | |author= [[User:Technical writer 1]] | ||
| + | <!-- The following are not in current metadata --> | ||
| + | |subcategory= Telephony | ||
| + | |id= CS001026 | ||
}} | }} | ||
| Line 25: | Line 31: | ||
:This API is not part of the public SDK. It can be found in the [[SDK API Plug-in]]. | :This API is not part of the public SDK. It can be found in the [[SDK API Plug-in]]. | ||
}} | }} | ||
| − | |||
| − | The AIW Dial Data Consumer API (class | + | The AIW Dial Data Consumer API (class {{Icode|CAiwDialData}}) is introduced in the S60 3rd Edition, Feature Pack 2 SDK API Plug-in Pack. |
| − | The API can be used instead of | + | The API can be used instead of {{Icode|TAiwDialDataV1}}, {{Icode|TAiwDialDataV1Pckg}}, {{Icode|TAiwVariant}}, {{Icode|TAiwGenericParam}}. |
| − | Using | + | Using {{Icode|CAiwDialData}} simplifies parameter passing when the AIW framework is used for call dialing. |
==Header file== | ==Header file== | ||
| Line 41: | Line 46: | ||
aiwdialdata.lib | aiwdialdata.lib | ||
| − | ==Dialing a voice call with | + | ==Dialing a voice call with {{Icode|CAiwDialData}}== |
<code cpp> | <code cpp> | ||
| Line 77: | Line 82: | ||
==Example project== | ==Example project== | ||
| − | [[ | + | [[File:AiwConsumerFP2Ex.zip]] |
Revision as of 08:57, 13 June 2012
Archived: This article is archived because it is not considered relevant for third-party developers creating commercial solutions today. If you think this article is still relevant, let us know by adding the template {{ReviewForRemovalFromArchive|user=~~~~|write your reason here}}.
Article Metadata
Code Example
Source file: Media:AiwConsumerFP2Ex.zip
Compatibility
Platform(s): S60 3rd Edition, FP2
Article
Keywords: AIW Dial Data Consumer API
Created: User:Technical writer 1
(13 Jun 2008)
Last edited: hamishwillee
(13 Jun 2012)
Note: :This API is not part of the public SDK. It can be found in the SDK API Plug-in.
The AIW Dial Data Consumer API (class CAiwDialData) is introduced in the S60 3rd Edition, Feature Pack 2 SDK API Plug-in Pack.
The API can be used instead of TAiwDialDataV1, TAiwDialDataV1Pckg, TAiwVariant, TAiwGenericParam.
Using CAiwDialData simplifies parameter passing when the AIW framework is used for call dialing.
Contents |
Header file
aiwdialdata.h
Library
aiwdialdata.lib
Dialing a voice call with CAiwDialData
CAiwServiceHandler* serviceHandler = CAiwServiceHandler::NewLC();
RCriteriaArray interest;
CleanupClosePushL( interest );
CAiwCriteriaItem* criteria =
CAiwCriteriaItem::NewLC(KAiwCmdCall, KAiwCmdCall,_L8("*"));
TUid base;
base.iUid = KAiwClassBase;
criteria->SetServiceClass( base );
User::LeaveIfError( interest.Append( criteria ) );
// Attach to AIW interest
serviceHandler->AttachL( interest );
//Create CAiwDialData instance
CAiwDialData* dialData = CAiwDialData::NewLC();
dialData->SetCallType( CAiwDialData::EAIWVoice );
//Define call parameters
_LIT(phoneNumber, "+35840123456");
dialData->SetPhoneNumberL(phoneNumber);
dialData->SetWindowGroup( AIWDialData::KAiwGoToIdle );
CAiwGenericParamList& paramList = serviceHandler->InParamListL();
// Fill in the parameter list
dialData->FillInParamListL( paramList );
// Execute call command
serviceHandler->ExecuteServiceCmdL( KAiwCmdCall, paramList,
serviceHandler->OutParamListL() );
CleanupStack::PopAndDestroy( 3 ); // dialData, criteria, interest

