idlehomescreen/examples/carouselwidgetexample/renderer/group/carouselwidget.mmp
author jake
Mon, 02 Aug 2010 12:02:47 +0300
branchRCL_3
changeset 70 d12a7ea0f775
permissions -rw-r--r--
Example applications for various Homescreen APIs.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
70
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
     1
/*
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
     2
 * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
     3
 * All rights reserved.
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
     4
 * This component and the accompanying materials are made available
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
     5
 * under the terms of "Eclipse Public License v1.0"
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
     6
 * which accompanies this distribution, and is available
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
     7
 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
     8
 *
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
     9
 * Initial Contributors:
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    10
 * Nokia Corporation - initial contribution.
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    11
 *
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    12
 * Contributors:
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    13
 *
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    14
 * Description:  Carousel widget for Symbian Homescreen
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    15
 *
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    16
 */
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    17
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    18
#include <platform_paths.hrh>
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    19
#include <data_caging_paths.hrh>
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    20
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    21
TARGET          carouselwidget.dll
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    22
TARGETTYPE      PLUGIN
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    23
UID             0x10009d8d 0xEabba432
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    24
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    25
CAPABILITY      CAP_ECOM_PLUGIN
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    26
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    27
EPOCALLOWDLLDATA
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    28
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    29
SOURCEPATH      ../src 
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    30
SOURCE          carouselwidget.cpp
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    31
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    32
USERINCLUDE     ../inc
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    33
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    34
MW_LAYER_SYSTEMINCLUDE
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    35
APP_LAYER_SYSTEMINCLUDE
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    36
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    37
SOURCEPATH      ../data
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    38
START RESOURCE  carouselwidget.rss
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    39
HEADER
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    40
TARGETPATH      ECOM_RESOURCE_DIR
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    41
END
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    42
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    43
LIBRARY         extrenderingplugin.lib
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    44
LIBRARY         euser.lib
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    45
LIBRARY         eikcore.lib
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    46
LIBRARY         cone.lib
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    47
LIBRARY         xn3layoutengine.lib
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    48
LIBRARY         xn3utils.lib
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    49
LIBRARY         xn3domdocument.lib
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    50
LIBRARY	        avkon.lib
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    51
LIBRARY         ws32.lib
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    52
LIBRARY         fbscli.lib
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    53
LIBRARY         bitgdi.lib
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    54
LIBRARY         egul.lib
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    55
LIBRARY         bafl.lib
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    56
LIBRARY         eikcoctl.lib
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    57
LIBRARY         eikctl.lib
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    58
LIBRARY         gdi.lib
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    59
LIBRARY         aknicon.lib
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    60
LIBRARY         aknphysics.lib
d12a7ea0f775 Example applications for various Homescreen APIs.
jake
parents:
diff changeset
    61
LIBRARY         AknSkins.lib