2 * Copyright (c) 2009 - 2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
14 * Description: Helper classes for interface.
18 #ifndef MEMAILAPPLAUNCHDATA_H
19 #define MEMAILAPPLAUNCHDATA_H
23 namespace EmailInterface {
26 * Container for launch parameters
27 * When user touches the widget, an application launch is initiated with
29 * (see MMailboxData::LaunchParameters() )
31 class MEmailLaunchParameters
35 * Application UID identifying the application to be launched
37 virtual TUid ApplicationUid() const = 0;
40 * ViewId within the application
42 virtual TUid ViewId() const = 0;
45 * TUid that will be delivered to the launched application
47 virtual TUid CustomMessageId() const = 0;
50 * Data that will be delivered to the launched application
52 virtual const TDesC8& CustomMessage() const = 0;
57 #endif // MEMAILAPPLAUNCHDATA_H