1 // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies). |
1 // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies). |
2 // All rights reserved. |
2 // All rights reserved. |
3 // This component and the accompanying materials are made available |
3 // This component and the accompanying materials are made available |
4 // under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members |
4 // under the terms of "Eclipse Public License v1.0" |
5 // which accompanies this distribution, and is available |
5 // which accompanies this distribution, and is available |
6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html". |
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
7 // |
7 // |
8 // Initial Contributors: |
8 // Initial Contributors: |
9 // Nokia Corporation - initial contribution. |
9 // Nokia Corporation - initial contribution. |
10 // |
10 // |
11 // Contributors: |
11 // Contributors: |
12 // |
12 // |
13 // Description: |
13 // Description: |
14 // |
14 // |
15 |
|
16 |
|
17 |
15 |
18 /** |
16 /** |
19 @file |
17 @file |
20 @publishedAll |
18 @publishedAll |
21 @released |
19 @released |
52 const TMsvPartList KMsvMessagePartDate = 0x00000010; |
50 const TMsvPartList KMsvMessagePartDate = 0x00000010; |
53 // Message attachments |
51 // Message attachments |
54 |
52 |
55 const TMsvPartList KMsvMessagePartAttachments = 0x00000020; |
53 const TMsvPartList KMsvMessagePartAttachments = 0x00000020; |
56 |
54 |
57 // find attributes |
|
58 //Flag to specify case-sensitive search. |
55 //Flag to specify case-sensitive search. |
|
56 const TMsvPartList KMsvFindCaseSensitive = 0x80000000; |
59 |
57 |
60 const TMsvPartList KMsvFindCaseSensitive = 0x80000000; |
|
61 // Flag to specify search for whole words. |
58 // Flag to specify search for whole words. |
62 |
|
63 const TMsvPartList KMsvFindWholeWord = 0x40000000; |
59 const TMsvPartList KMsvFindWholeWord = 0x40000000; |
64 |
60 |
|
61 |
65 // Maximum length (in characters) of find text. |
62 // Maximum length (in characters) of find text. |
66 |
|
67 const TInt KMsvMaxFindTextLength = 500; |
63 const TInt KMsvMaxFindTextLength = 500; |
68 |
64 |
69 #endif |
65 // These constants are used to do advance search in the message store |
|
66 // The old implementation does not make use of these constants |
|
67 // A search operation performed using these constants wont give any results |
|
68 |
|
69 // Message Part To |
|
70 const TMsvPartList KMsvMessagePartTo = 0x00000040; |
|
71 |
|
72 // Message Part From |
|
73 const TMsvPartList KMsvMessagePartFrom = 0x00000080; |
|
74 |
|
75 //Message Part Cc |
|
76 const TMsvPartList KMsvMessagePartCc = 0x00000100; |
|
77 |
|
78 //Message Part Bcc |
|
79 const TMsvPartList KMsvMessagePartBcc = 0x00000200; |
|
80 |
|
81 //Message Part Subject |
|
82 const TMsvPartList KMsvMessagePartSubject = 0x00000400; |
|
83 |
|
84 // Flag to specify wild card characters |
|
85 const TMsvPartList KMsvFindUsingWildCard = 0x00000800; |
|
86 |
|
87 |
|
88 #endif // mtmdef# |