epoc32/include/mw/akntreelistconstants.h
branchSymbian2
changeset 2 2fe1408b6811
parent 1 666f914201fb
child 4 837f303aceeb
     1.1 --- a/epoc32/include/mw/akntreelistconstants.h	Tue Nov 24 13:55:44 2009 +0000
     1.2 +++ b/epoc32/include/mw/akntreelistconstants.h	Tue Mar 16 16:12:26 2010 +0000
     1.3 @@ -1,1 +1,77 @@
     1.4 -akntreelistconstants.h
     1.5 +/*
     1.6 +* Copyright (c) 2006, 2007 Nokia Corporation and/or its subsidiary(-ies).
     1.7 +* All rights reserved.
     1.8 +* This component and the accompanying materials are made available
     1.9 +* 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
    1.10 +* which accompanies this distribution, and is available
    1.11 +* at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
    1.12 +*
    1.13 +* Initial Contributors:
    1.14 +* Nokia Corporation - initial contribution.
    1.15 +*
    1.16 +* Contributors:
    1.17 +*
    1.18 +* Description:  Constants for hierarchical list.
    1.19 +*
    1.20 +*/
    1.21 +
    1.22 +
    1.23 +#ifndef AKNTREELISTCONSTANTS_H
    1.24 +#define AKNTREELISTCONSTANTS_H
    1.25 +
    1.26 +
    1.27 +#include <e32def.h>
    1.28 +
    1.29 +
    1.30 +/** Item ID for hierarchical list items. */
    1.31 +typedef TInt TAknTreeItemID;
    1.32 +
    1.33 +/** Constant Item ID for non-existent hierarchical list item. */
    1.34 +const TAknTreeItemID KAknTreeIIDNone = 0;
    1.35 +
    1.36 +/** Constant Item ID for the hierarchical list root node. */
    1.37 +const TAknTreeItemID KAknTreeIIDRoot = 1;
    1.38 +
    1.39 +
    1.40 +/** Namespace for pre-defined tree list icon IDs. */
    1.41 +namespace AknTreeListIconID
    1.42 +    {
    1.43 +    /** Constant indicating that default icon is to be used. */
    1.44 +    const TInt KDefault = -1;
    1.45 +
    1.46 +    /** No icon. */
    1.47 +    const TInt KNone = 0;
    1.48 +
    1.49 +    /** Tree structure line with branch. */
    1.50 +    const TInt KLineBranchIndication = 1;
    1.51 +
    1.52 +    /** Tree structure end line. */
    1.53 +    const TInt KLineEndIndication = 2;
    1.54 +
    1.55 +    /** Tree structure straight line indication. */
    1.56 +    const TInt KLineStraightIndication = 3;
    1.57 +
    1.58 +    /** Default file indication. */
    1.59 +    const TInt KDefaultFileIndication = 4;
    1.60 +
    1.61 +    /** Closed folder indication. */
    1.62 +    const TInt KClosedFolderIndication = 5;
    1.63 +
    1.64 +    /** Open folder indication. */
    1.65 +    const TInt KOpenFolderIndication = 6;
    1.66 +
    1.67 +    /** Collapse function indication, superimposed. */
    1.68 +    const TInt KCollapseFunctionIndication = 7;
    1.69 +
    1.70 +    /** Expand function indication, superimposed. */
    1.71 +    const TInt KExpandFunctionIndication = 8;
    1.72 +
    1.73 +    /** Item marked indication. */
    1.74 +    const TInt KMarkedIndication = 9;
    1.75 +
    1.76 +    /** Highlighted item marked indication. */
    1.77 +    const TInt KHighlightedMarkedIndication = 10;
    1.78 +    }
    1.79 +
    1.80 +
    1.81 +#endif // AKNTREELISTCONSTANTS_H