64
|
1 |
/*
|
|
2 |
* Copyright (c) 2008 - 2010 Nokia Corporation and/or its subsidiary(-ies).
|
|
3 |
* All rights reserved.
|
|
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".
|
|
8 |
*
|
|
9 |
* Initial Contributors:
|
|
10 |
* Nokia Corporation - initial contribution.
|
|
11 |
*
|
|
12 |
* Contributors:
|
|
13 |
*
|
|
14 |
* Description: Constants for cmailhandlerplugin Central Repository keys.
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
#ifndef CMAILCENREPKEYSINTERNAL_H
|
|
19 |
#define CMAILCENREPKEYSINTERNAL_H
|
|
20 |
|
|
21 |
#include <e32std.h>
|
|
22 |
|
|
23 |
#include "cmailwidgetcenrepkeys.h"
|
|
24 |
|
|
25 |
// Key to a bit mask value containing various configuration items
|
|
26 |
// (see also constants below)
|
|
27 |
const TUint32 KCmailCPConfiguration = 0x10000001;
|
|
28 |
|
|
29 |
// 1st bit: whether email content publisher listens to commands/events sent by Homescreen framework
|
|
30 |
// value == 0: default behaviour, events are handled as normal
|
|
31 |
// value != 0: publisher ignores HS events
|
|
32 |
const TUint32 KCMailIgnoreHsEvents = 1;
|
|
33 |
|
|
34 |
#endif // CMAILCENREPKEYSINTERNAL_H
|