1 akntreelistconstants.h |
1 /* |
|
2 * Copyright (c) 2006, 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 the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.symbianfoundation.org/legal/licencesv10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: Constants for hierarchical list. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef AKNTREELISTCONSTANTS_H |
|
20 #define AKNTREELISTCONSTANTS_H |
|
21 |
|
22 |
|
23 #include <e32def.h> |
|
24 |
|
25 |
|
26 /** Item ID for hierarchical list items. */ |
|
27 typedef TInt TAknTreeItemID; |
|
28 |
|
29 /** Constant Item ID for non-existent hierarchical list item. */ |
|
30 const TAknTreeItemID KAknTreeIIDNone = 0; |
|
31 |
|
32 /** Constant Item ID for the hierarchical list root node. */ |
|
33 const TAknTreeItemID KAknTreeIIDRoot = 1; |
|
34 |
|
35 |
|
36 /** Namespace for pre-defined tree list icon IDs. */ |
|
37 namespace AknTreeListIconID |
|
38 { |
|
39 /** Constant indicating that default icon is to be used. */ |
|
40 const TInt KDefault = -1; |
|
41 |
|
42 /** No icon. */ |
|
43 const TInt KNone = 0; |
|
44 |
|
45 /** Tree structure line with branch. */ |
|
46 const TInt KLineBranchIndication = 1; |
|
47 |
|
48 /** Tree structure end line. */ |
|
49 const TInt KLineEndIndication = 2; |
|
50 |
|
51 /** Tree structure straight line indication. */ |
|
52 const TInt KLineStraightIndication = 3; |
|
53 |
|
54 /** Default file indication. */ |
|
55 const TInt KDefaultFileIndication = 4; |
|
56 |
|
57 /** Closed folder indication. */ |
|
58 const TInt KClosedFolderIndication = 5; |
|
59 |
|
60 /** Open folder indication. */ |
|
61 const TInt KOpenFolderIndication = 6; |
|
62 |
|
63 /** Collapse function indication, superimposed. */ |
|
64 const TInt KCollapseFunctionIndication = 7; |
|
65 |
|
66 /** Expand function indication, superimposed. */ |
|
67 const TInt KExpandFunctionIndication = 8; |
|
68 |
|
69 /** Item marked indication. */ |
|
70 const TInt KMarkedIndication = 9; |
|
71 |
|
72 /** Highlighted item marked indication. */ |
|
73 const TInt KHighlightedMarkedIndication = 10; |
|
74 } |
|
75 |
|
76 |
|
77 #endif // AKNTREELISTCONSTANTS_H |