commondrm/drmrightsmanagerui/inc/DRMRightsManager.hrh
changeset 0 95b198f216e5
equal deleted inserted replaced
-1:000000000000 0:95b198f216e5
       
     1 /*
       
     2 * Copyright (c) 2003-2008 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:  Resource header file
       
    15 *                This file contains declarations for constants of 
       
    16 *                DRMRightsManager.
       
    17 *                The file can be included in C++ or resource file.
       
    18 *
       
    19 */
       
    20 
       
    21 
       
    22 
       
    23 #ifndef DRMRIGHTSMANAGER_HRH
       
    24 #define DRMRIGHTSMANAGER_HRH
       
    25 
       
    26 // DEFINES
       
    27 
       
    28 // Uid of the application
       
    29 #define EUidDRMRightsManager 0x101F85C7
       
    30 
       
    31 
       
    32 // ENUMERATIONS
       
    33 
       
    34 // Commands IDs
       
    35 enum TDRMRightsManagerCommandIds
       
    36     {
       
    37     EDRMRightsManagerCmdAppViewDet = 1      // View details
       
    38     };
       
    39  
       
    40 // IDs of the views
       
    41 enum TDRMViewId
       
    42     {
       
    43     EDRMDetailsView                         // Details View
       
    44     };
       
    45 
       
    46 // IDs of controls
       
    47 enum TDRMRightsMgrControlIds
       
    48     {
       
    49     EDRMRightsMgrCtrlIdWaitNote = 0x100     // Wait note
       
    50     };
       
    51 
       
    52 // Type of object
       
    53 enum TObjectType
       
    54     {
       
    55     EUndefinedObject   = 0x0000,            // No definition
       
    56     EValidObject       = 0x0001,            // Object is valid
       
    57     EInvalidObject     = 0x0002,            // Object is invalid
       
    58     EUnusedObject      = 0x0004,            // Object is unused
       
    59     EExpiredObject     = 0x0010,            // Object has expired rights
       
    60     EFutureObject      = 0x0020,            // Object has future rights
       
    61     EGroupObject       = 0x0100,            // Group Object
       
    62     EGroupObjectMember = 0x0200             // Object is a member of a group
       
    63     };
       
    64 
       
    65 
       
    66 #endif      // DRMRIGHTSMANAGER_HRH
       
    67 
       
    68 // End of File