author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
Tue, 14 Sep 2010 20:48:24 +0300 | |
branch | RCL_3 |
changeset 70 | 968773a0b6ef |
parent 64 | 3533d4323edc |
child 80 | 726fba06891a |
permissions | -rw-r--r-- |
64 | 1 |
/* |
2 |
* Copyright (c) 2005-2007 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: Freestyle Email application internal Central Repository keys |
|
15 |
* |
|
16 |
*/ |
|
17 |
||
18 |
#ifndef FSEMAILINTERNALCRKEYS_H |
|
19 |
#define FSEMAILINTERNALCRKEYS_H |
|
20 |
||
21 |
#include <e32std.h> |
|
22 |
||
23 |
// |
|
24 |
// Fs Email repository in the central repository |
|
25 |
// |
|
26 |
||
27 |
// <cmail> S60 UID update |
|
28 |
const TUid KFreestyleEmailCenRep = {0x2001E277}; |
|
29 |
// </cmail> S60 UID update |
|
30 |
||
31 |
// Global settings values |
|
32 |
||
33 |
const TUint32 KFreestyleEmailMessageListLayout = {0x00000001}; |
|
34 |
const TInt KFreestyleEmailMessageListLayoutDefault = 2; |
|
35 |
||
36 |
const TUint32 KFreestyleEmailBodyPreview = {0x00000002}; |
|
37 |
const TInt KFreestyleEmailBodyPreviewDefault = 0; |
|
38 |
||
39 |
const TUint32 KFreestyleEmailTitleDividers = {0x00000003}; |
|
40 |
const TInt KFreestyleEmailTitleDividersDefault = 1; |
|
41 |
||
42 |
const TUint32 KFreestyleEmailDownloadNotification = {0x00000004}; |
|
43 |
const TInt KFreestyleEmailDownloadNotificationDefault = 1; |
|
44 |
||
45 |
const TUint32 KFreestyleEmailActiveIdle = {0x00000005}; |
|
46 |
const TInt KFreestyleEmailActiveIdleDefault = 1; |
|
47 |
||
48 |
const TUint32 KFreestyleEmailWarnBeforeDelete = {0x00000006}; |
|
49 |
const TInt KFreestyleEmailWarnBeforeDeleteDefault = 1; |
|
50 |
||
51 |
const TUint32 KFreestyleEmailDownloadHTMLImages = {0x00000007}; |
|
52 |
const TInt KFreestyleEmailDownloadHTMLImagesDefault = 1; |
|
53 |
||
54 |
// Other CR values for FS Email application internal use |
|
55 |
||
56 |
const TUint32 KFreestyleEmailEditorCCVisible = {0x00000080}; |
|
57 |
const TInt KFreestyleEmailEditorCCVisibleDefault = 1; |
|
58 |
||
59 |
const TUint32 KFreestyleEmailEditorBCVisible = {0x00000081}; |
|
60 |
const TInt KFreestyleEmailEditorBCVisibleDefault = 0; |
|
61 |
||
62 |
// Used by Integration MTM |
|
63 |
const TUint32 KFreestyleMtmMessageId = {0x00000090}; |
|
64 |
||
65 |
// Used by White Label Branding |
|
66 |
const TUint32 KFreestyleWLBBrandIdMatchString = {0x00000120}; |
|
67 |
const TUint32 KFreestyleWLBMailboxName = {0x00000121}; |
|
68 |
const TUint32 KFreestyleWLBMIFFilePathWithTargetFilename = {0x00000122}; |
|
69 |
const TUint32 KFreestyleWLBMailboxIconID = {0x00000123}; |
|
70 |
||
71 |
// used for email indicator popup-note handling |
|
72 |
// First key tells how many mailboxes have new emails |
|
73 |
const TUint32 KNumberOfMailboxesWithNewEmails = {0x00001000}; |
|
74 |
||
75 |
||
76 |
// These keys define limits on how much data is allowed to load by plugins |
|
77 |
/* The setting allows to limit max body size, KB */ |
|
78 |
const TUint32 KFreestyleMaxBodySize = 0x00002000; |
|
79 |
/* The setting allows to limit max body size in reply/forward, KB. */ |
|
80 |
const TUint32 KFreestyleReplyMaxBodySize = 0x00002001; |
|
81 |
/* The setting allows to limit max total size of mail attachments shown in mail viewer, KB */ |
|
82 |
const TUint32 KFreestyleViewerMaxAttachmentsSize = 0x00002002; |
|
83 |
||
84 |
||
85 |
// |
|
86 |
// Email local variation flags. Flags are defined in emailvariant.hrh |
|
87 |
const TUint32 KEmailLocalVariationFlags = {0x0000FFFE}; |
|
88 |
||
89 |
// FS 2.05 variation. |
|
90 |
// Values: 1 = hide, 0 = show. |
|
91 |
const TUint32 KEmailHideFS205UIFeature = {0x0000FFFF}; |
|
92 |
const TUint32 KEmailHideFSHiLightUIFeature = {0x0000FFFF}; |
|
93 |
// PS2 variation |
|
94 |
// one centrep key for every feature, 0 means disabled |
|
95 |
const TUint32 KEmailFeatureSplitScreen = {0x00001001}; |
|
70
968773a0b6ef
Revision: 201033
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
96 |
const TUint32 KMfEFeatureCertificateBasedAuthentication = {0x00001003}; |
968773a0b6ef
Revision: 201033
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
64
diff
changeset
|
97 |
const TUint32 KMfEFeatureAdvancedSecurity = {0x00001004}; |
64 | 98 |
|
99 |
// |
|
100 |
// TP Wizard repository in the central repository |
|
101 |
// - used for parameter passing (for creating a new mailbox) |
|
102 |
// |
|
103 |
const TUid KSetupWizardCenRep = {0x2000B112}; |
|
104 |
||
105 |
// New mailbox parameter values |
|
106 |
||
107 |
const TUint32 KSetupWizardAccountType = {0x00000001}; |
|
108 |
||
109 |
const TUint32 KSetupWizardCentrepStartKey = {0x00000002}; |
|
110 |
||
111 |
#endif |