mpxplugins/viewplugins/plugins/podcastplaybackviewplugin/data/101ffcb9.rss
author Simon Howkins <simonh@symbian.org>
Mon, 22 Nov 2010 16:33:08 +0000
branchRCL_3
changeset 69 1a9731de4f7b
parent 53 3de6c4cf6b67
permissions -rw-r--r--
Adjusted to avoid exports, etc, from a top-level bld.inf

/*
* Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:  Resource definitions for project mpxpodcastplaybackviewplugin
*
*/



// INCLUDES
#include <ecom/registryinfo.rh>
#include <mpxviewplugin.hrh>

#include "mpxpodcastplaybackviewplugin.hrh"


// RESOURCE DEFINITIONS 

/**
 * The opaque_data syntax is made up of three parts: 
 * a list of Uids for resolving the view plugin, feature flags, priority.
 * 
 * <p>uid1;uid2;uid3</p>
 *  uid*: uid of the supported Playback/Collection plugin.
 *  E.g. if the view plugin supports Local Playback plugin, the list of
 *  uids will be: 0x101FFC06
 *
 * <t>uid</t>
 *  uid: plugin type uid.
 *  E.g. if the view plugin supports playback type, uid will be: 0x101FFCA0
 *
 * <f>flags</f> [optional]
 *  flags: sum of the required feature flags that listed in mpxviewplugin.hrh. 
 *  E.g. if the view plugin needs to be pre-loaded and it's user-selectable,
 *  then flags = KMPXVpFeaturePreLoaded + KMPXVpFeatureUserSelectable = 0x0003.
 *
 * <i>priority</i> [optional]
 *  priority: a value of type TMPXViewPluginPriorities. This value determines
 *  which view plugin will be resolved when several plugins can support the 
 *  same set of Uids. 
 *  Default value of this field is EMPXViewPluginPriorityNormal.
 */
RESOURCE REGISTRY_INFO theInfo
    {
    dll_uid = 0x101FFCB9;

    interfaces = 
        {
        INTERFACE_INFO
            {
            interface_uid = KMPXViewPluginInterfaceUid;
            implementations = 
                {
                IMPLEMENTATION_INFO
                    {
                    implementation_uid = KMPXPodcastPlaybackViewImplementationId;
                    version_no = 1;
                    display_name = "Podcast Playback view";
                    default_data = "";
                    opaque_data = "<p>0x101FFC06;0x101FFC3C</p>"
                                  "<t>0x101FFCA0;</t>"
                                  "<a>0x102072C3;</a>"
                                  "<i>"EMPXViewPluginPriorityLowest"</i>";
                    }
                };
            }
        };
    }

// End of File