vtuis/videotelui/inc/commands/tvtuicmdpolicypriority.h
branchRCL_3
changeset 24 f15ac8e65a02
parent 23 890b5dd735f8
child 25 779871d1e4f4
equal deleted inserted replaced
23:890b5dd735f8 24:f15ac8e65a02
     1 /*
       
     2 * Copyright (c) 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:  Command policy priorities.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef T_VTUICMDPOLICYPRIORITY_H
       
    20 #define T_VTUICMDPOLICYPRIORITY_H
       
    21 
       
    22 /**
       
    23  * Command priority enumeration
       
    24  *
       
    25  * @since S60 3.2
       
    26  */
       
    27 enum TVtUiCmdPolicyPriority
       
    28     {
       
    29     /** Undefined priority value */
       
    30     EVtUiCmdPolicyPriorityUndefined = 0,
       
    31 
       
    32     /** Lowest possible priority */
       
    33     EVtUiCmdPolicyPriorityLowest = 1,
       
    34 
       
    35     /** Number entry policy priority */
       
    36     EVtUiCmdPolicyPriorityNumberEntry,
       
    37 
       
    38     /** Menu policy priority */
       
    39     EVtUiCmdPolicyPriorityMenu = 100,
       
    40 
       
    41     /** Softkey policy priority */
       
    42     EVtUiCmdPolicyPrioritySoftkey = 200,
       
    43 
       
    44     /** Toolbar policy priority */
       
    45     EVtUiCmdPolicyPriorityToolbar = 300,
       
    46 
       
    47     /** Primary policy priority, must be highest */
       
    48     EVtUiCmdPolicyPriorityPrimary,
       
    49 
       
    50     /** Highest possible priority */
       
    51     EVtUiCmdPolicyPriorityHighest = EVtUiCmdPolicyPriorityPrimary
       
    52 
       
    53     };
       
    54 
       
    55 #endif // T_VTUICMDPOLICYPRIORITY_H