idlehomescreen/widgetmanager/inc/wmcommon.h
branchRCL_3
changeset 83 5456b4e8b3a8
child 93 b01126ce0bec
equal deleted inserted replaced
82:5f0182e07bfb 83:5456b4e8b3a8
       
     1 /*
       
     2 * Copyright (c) 2009 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:
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef WMCOMMON_H
       
    20 #define WMCOMMON_H
       
    21 
       
    22 //includes
       
    23 #include <e32base.h>
       
    24 
       
    25 // widgetmanager UID
       
    26 const TUid KUidWidgetManager = { 0x200255FF };
       
    27 
       
    28 // HsContentInfo types
       
    29 _LIT8( KContentWidget, "widget" );
       
    30 _LIT8( KContentTemplate, "template" );
       
    31 
       
    32 // UI related const
       
    33 const TInt KWidgetHeight = 90;
       
    34 
       
    35 // UI component ID's
       
    36 enum TWmUiControlIds
       
    37     {
       
    38     EPortalOne = 0x1,
       
    39     EPortalTwo,
       
    40     ELastPortal,
       
    41     EWidgetsList,
       
    42     EFindBox,
       
    43     EMaximumWidgets = 0xC8
       
    44     };
       
    45 
       
    46 #endif //WMCOMMON_H