photosgallery/collectionframework/plugins/glxcollectionpluginalbums/data/20007196.rss
changeset 0 4e91876724a2
equal deleted inserted replaced
-1:000000000000 0:4e91876724a2
       
     1 /*
       
     2 * Copyright (c) 2000 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 definitions 
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 #include <ecom/registryinfo.rh>
       
    22 #include "glxcollectionpluginalbums.hrh"
       
    23 #include <photos.loc>
       
    24 #include <glxcollectionplugintype.hrh>
       
    25 #include <glxcollectionpluginpriority.hrh>              //Uid of the plugine for priority in opaque-data
       
    26 
       
    27 
       
    28 /**
       
    29  * @internal reviewed 14/06/2007 by Alex Birkett
       
    30  */
       
    31 
       
    32 /**
       
    33  * The opaque_data syntax is made up of three parts: 
       
    34  * a list of Uids for resolving the view plugin, feature flags, priority.
       
    35  * 
       
    36  * <p>uid1;uid2;uid3</p>
       
    37  *  uid*: Supported plugin types.
       
    38  *  E.g. if podcast plugin may support music plugin as well, KMPXColPluginMusic
       
    39  *
       
    40  * <t>uid</t>
       
    41  *  uid: plugin type uid.
       
    42  *  E.g. for music plugin will be: 0x101FFCDA
       
    43  *
       
    44  * <f>flags</f> [optional]
       
    45  *  flags: sum of the required feature flags, not used now
       
    46  *
       
    47  * <i>priority</i> [optional]
       
    48  *  priority: a value of type TMPXCollectionPluginPriorities. This value determines
       
    49  *  the returning order when several plugins can support the same set of Uids. 
       
    50  *  Default value of this field is EMPXCollectionPluginPriorityNormal.
       
    51  */
       
    52 RESOURCE REGISTRY_INFO theInfo
       
    53     {
       
    54     dll_uid = KGlxCollectionPluginAlbumsDllUid;
       
    55 
       
    56     interfaces = 
       
    57         {
       
    58         INTERFACE_INFO
       
    59             {
       
    60             interface_uid = 0x101FFC36;
       
    61             implementations = 
       
    62                 {
       
    63                 IMPLEMENTATION_INFO
       
    64                     {
       
    65                     implementation_uid = KGlxCollectionPluginAlbumsImplementationUid;
       
    66                     version_no = 1;
       
    67                     display_name = qtn_lgal_list_title_albums;
       
    68                     default_data = "";
       
    69                     opaque_data = "<t>"EGlxCollectionPluginShowInMainListView"</t>"
       
    70                                   "<i>"EGlxCollectionPluginAlbums"</i>"
       
    71                                   "<f>0x0001</f>";   // KMPXVpFeaturePreLoaded (yet to be defined) Keeps the plugin loaded
       
    72                     }
       
    73                 };
       
    74             }
       
    75         };
       
    76     }
       
    77             
       
    78 
       
    79 
       
    80