equal
deleted
inserted
replaced
|
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: Phonebook 2 store information definitions. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef PBK2STOREINFO_HRH |
|
20 #define PBK2STOREINFO_HRH |
|
21 |
|
22 // -------------------------------------------------------------------------- |
|
23 // Phonebook 2 store information item text type |
|
24 // -------------------------------------------------------------------------- |
|
25 // |
|
26 enum TPbk2StoreInfoItemTextType |
|
27 { |
|
28 /// Heading text is either the singular or plural text of |
|
29 /// the item depending on the data value |
|
30 EPbk2StoreInfoDefinedInItem, |
|
31 /// Heading text is the store name |
|
32 EPbk2StoreInfoStoreName |
|
33 }; |
|
34 |
|
35 // -------------------------------------------------------------------------- |
|
36 // Phonebook 2 store information flags |
|
37 // -------------------------------------------------------------------------- |
|
38 // |
|
39 /// One item for each store should be created |
|
40 #define KPbk2StoreInfoOneItemForEachStore 0x01 |
|
41 |
|
42 #endif // PBK2STOREINFO_HRH |
|
43 |
|
44 // End of File |