equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002 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: Local variation constants |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef __MAILUILOCALVARIATIONFLAGS_HRH |
|
20 #define __MAILUILOCALVARIATIONFLAGS_HRH |
|
21 |
|
22 |
|
23 // DATA TYPES |
|
24 /** |
|
25 * Local variation flags for Mail UI. |
|
26 * Default values: |
|
27 * 3.common: 1 |
|
28 * >= 3.1: 7 |
|
29 */ |
|
30 enum TMailUiLocalVariantFlags |
|
31 { |
|
32 /** |
|
33 * Mail additional headers / bcc field variation. |
|
34 * Default values: |
|
35 * 3.x: enabled |
|
36 */ |
|
37 EMailAdditionalHeaders = 0x00000001, |
|
38 |
|
39 /** |
|
40 * Attachment field control. |
|
41 * Default values: |
|
42 * >= 3.1: enabled |
|
43 */ |
|
44 EMailAttachmentFieldNew = 0x00000002, |
|
45 |
|
46 /** |
|
47 * Sending options supports encoding setting. |
|
48 * Default values: |
|
49 * >= 3.1: enabled |
|
50 */ |
|
51 EMailEncodingSetting = 0x00000004, |
|
52 |
|
53 /** |
|
54 * Insert toolbar control. |
|
55 * Default values: disabled |
|
56 */ |
|
57 EMailInsertToolBar = 0x00000008 |
|
58 }; |
|
59 |
|
60 |
|
61 |
|
62 #endif // __MAILUILOCALVARIATIONFLAGS_HRH |
|
63 |
|
64 // End of File |