diff -r 000000000000 -r e686773b3f54 phonebookui/Phonebook2/CommonUtility/src/Pbk2LaunchNewContact.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/phonebookui/Phonebook2/CommonUtility/src/Pbk2LaunchNewContact.cpp Tue Feb 02 10:12:17 2010 +0200 @@ -0,0 +1,61 @@ +/* +* Copyright (c) 2005-2007 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: Implements Phonebook 2 launch New Contact directly from client application. +* +*/ + +// Phonebook 2 +#include "Pbk2LaunchNewContact.h" +#include +#include +#include +#include +#include +#include +// System includes +//const TUid KPbk2LaunchNewContactProperty = {0xEC42FD42};//AnyKey Uid//0x2002680C(protected UID) //0x3D335E82(random) +const TUid KNewContactLauncherUid = {0x20026FC2}; + +EXPORT_C void Pbk2LaunchNewContact::LaunchNewContactL() + { + _LIT8(dontActivate, "dontactivate"); + HBufC* param = HBufC::NewLC( 256 ); + param->Des().Format( _L( "4 %S" ),&dontActivate ); + + TUid id( KNewContactLauncherUid ); + + TApaTaskList taskList( CEikonEnv::Static()->WsSession() ); + TApaTask task = taskList.FindApp( id ); + if ( task.Exists() ) + { + HBufC8* param8 = HBufC8::NewLC( param->Length() ); + param8->Des().Append( *param ); + task.SendMessage( TUid::Uid( 0 ), *param8 ); // Uid is not used + task.BringToForeground(); + CleanupStack::PopAndDestroy(); // param8 + } + else + { + RApaLsSession appArcSession; + User::LeaveIfError(appArcSession.Connect()); // connect to AppArc server + TThreadId id; + appArcSession.StartDocument( *param, KNewContactLauncherUid, id ); + appArcSession.Close(); + } + CleanupStack::PopAndDestroy(); // param + + + } + +// End of File