2 * Copyright (c) 2006, 2007 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
14 * Description: Constants for hierarchical list.
19 #ifndef AKNTREELISTCONSTANTS_H
20 #define AKNTREELISTCONSTANTS_H
26 /** Item ID for hierarchical list items. */
27 typedef TInt TAknTreeItemID;
29 /** Constant Item ID for non-existent hierarchical list item. */
30 const TAknTreeItemID KAknTreeIIDNone = 0;
32 /** Constant Item ID for the hierarchical list root node. */
33 const TAknTreeItemID KAknTreeIIDRoot = 1;
36 /** Namespace for pre-defined tree list icon IDs. */
37 namespace AknTreeListIconID
39 /** Constant indicating that default icon is to be used. */
40 const TInt KDefault = -1;
45 /** Tree structure line with branch. */
46 const TInt KLineBranchIndication = 1;
48 /** Tree structure end line. */
49 const TInt KLineEndIndication = 2;
51 /** Tree structure straight line indication. */
52 const TInt KLineStraightIndication = 3;
54 /** Default file indication. */
55 const TInt KDefaultFileIndication = 4;
57 /** Closed folder indication. */
58 const TInt KClosedFolderIndication = 5;
60 /** Open folder indication. */
61 const TInt KOpenFolderIndication = 6;
63 /** Collapse function indication, superimposed. */
64 const TInt KCollapseFunctionIndication = 7;
66 /** Expand function indication, superimposed. */
67 const TInt KExpandFunctionIndication = 8;
69 /** Item marked indication. */
70 const TInt KMarkedIndication = 9;
72 /** Highlighted item marked indication. */
73 const TInt KHighlightedMarkedIndication = 10;
77 #endif // AKNTREELISTCONSTANTS_H