imageeditor/EditorProvider/data/ImageEditorProvider.rss
changeset 1 edfc90759b9f
equal deleted inserted replaced
0:57d4cdd99204 1:edfc90759b9f
       
     1 /*
       
     2 * Copyright (c) 2010 Ixonos Plc.
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of the "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 * Ixonos Plc
       
    14 *
       
    15 * Description: 
       
    16 * Resource definitions for ImageEditorProvider.
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 #include <AiwCommon.hrh>
       
    22 #include <RegistryInfoV2.rh> 
       
    23 #include "ImageEditorUids.hrh"
       
    24 #include "ImageEditorProvider.hrh"
       
    25 
       
    26 RESOURCE REGISTRY_INFO r_theinfo
       
    27 {
       
    28 	resource_format_version = RESOURCE_FORMAT_VERSION_2;
       
    29 	dll_uid = UID_AIW_ECOM_DLL;
       
    30 	interfaces = 
       
    31 	{
       
    32 		INTERFACE_INFO
       
    33 		{
       
    34 			// Interface UID of resolvers
       
    35 			interface_uid = KAiwClassMenu;
       
    36 			implementations = 
       
    37 			{
       
    38 			    IMPLEMENTATION_INFO
       
    39 			    {
       
    40 					implementation_uid = KAiwCmdRotate;
       
    41 					version_no = 1;
       
    42 					display_name = "Rotator Menu Provider";
       
    43 					default_data = "image/jpeg";
       
    44 					opaque_data = KAiwCmdRotateStr;
       
    45 				},
       
    46 				IMPLEMENTATION_INFO
       
    47 				{
       
    48 					implementation_uid = UID_AIW_ECOM_IMPL;
       
    49 					version_no = 1;
       
    50 					display_name = "Edit Menu Provider";
       
    51 					default_data = "image/*";
       
    52 					opaque_data = KAiwCmdEditStr;
       
    53 				}
       
    54 			};
       
    55 		},
       
    56 		INTERFACE_INFO	
       
    57 		{
       
    58 			// Interface UID of resolvers
       
    59 		    interface_uid = KAiwClassBase;
       
    60 			implementations = 
       
    61 			{
       
    62 				IMPLEMENTATION_INFO
       
    63 				{
       
    64 					implementation_uid = UID_AIW_ECOM_IMPL;
       
    65 					version_no = 1;
       
    66 					display_name = "Editor Base Provider";
       
    67 					default_data = "image/*";
       
    68 					opaque_data = KAiwCmdEditStr;
       
    69 				},
       
    70 				IMPLEMENTATION_INFO
       
    71 				{
       
    72 					implementation_uid = KAiwCmdRotate;
       
    73 					version_no = 1;
       
    74 					display_name = "Rotator Base Provider";
       
    75 					default_data = "image/jpeg";
       
    76 					opaque_data = KAiwCmdRotateStr;
       
    77 				}
       
    78 			};
       
    79 		}
       
    80 	};
       
    81 }
       
    82