videditor/VideoProvider/src/VideoProviderInternal.rss
branchRCL_3
changeset 3 e0b5df5c0969
parent 0 951a5db380a0
child 5 4c409de21d23
equal deleted inserted replaced
0:951a5db380a0 3:e0b5df5c0969
     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 * Declares Base service API for all providers to implement in order to
       
    17 * offer services to Application Interworking Framework.
       
    18 *
       
    19 */
       
    20 
       
    21 
       
    22 NAME	VEPI
       
    23 
       
    24 // INCLUDES
       
    25 #include <Eikon.rh>
       
    26 #include <avkon.loc>
       
    27 #include "RegistryInfoV2.rh" 
       
    28 #include "VideoProvider.rh"
       
    29 
       
    30 #include <AiwCommon.hrh>
       
    31 
       
    32 #include <avkon.rsg>
       
    33 #include <avkon.rh>
       
    34 #include <avkon.mbg>
       
    35 #include <AvkonIcons.hrh>
       
    36 #include <SimpleVideoEditor.loc>
       
    37 
       
    38 
       
    39 RESOURCE RSS_SIGNATURE { }
       
    40 
       
    41 // Menu title for the Edit sub-menu
       
    42 RESOURCE MENU_PANE r_videoeditorprovider_submenu_title
       
    43 {
       
    44     items=
       
    45     {
       
    46         MENU_ITEM
       
    47         {
       
    48             command = AIW_SUBMENU_TITLE;
       
    49             txt = qtn_vie_options_edit;
       
    50         }
       
    51     };
       
    52 }
       
    53 
       
    54 
       
    55 // Menu item for "Simple Merge"
       
    56 RESOURCE MENU_PANE r_videoeditorprovider_merge_menu
       
    57 {
       
    58     items=
       
    59     {
       
    60         MENU_ITEM 
       
    61         { 
       
    62             command = EVideoEditorProviderCmdMerge; 
       
    63             txt = qtn_vie_options_merge; // menu text
       
    64             extratxt = qtn_vie_options_sub_merge; // submenu text
       
    65         }
       
    66     };
       
    67 }
       
    68 
       
    69 // Menu item for "Simple Change audio"
       
    70 RESOURCE MENU_PANE r_videoeditorprovider_add_audio_menu
       
    71 {
       
    72     items=
       
    73     {
       
    74         MENU_ITEM 
       
    75         { 
       
    76             command = EVideoEditorProviderCmdAddAudio; 
       
    77             txt = qtn_vie_options_change_sound; // menu text
       
    78             extratxt = qtn_vie_options_sub_change_sound; // submenu text
       
    79         }
       
    80     };
       
    81 }
       
    82 
       
    83 // Menu item for "Simple Add text"
       
    84 RESOURCE MENU_PANE r_videoeditorprovider_add_text_menu
       
    85 {
       
    86     items=
       
    87     {
       
    88         MENU_ITEM 
       
    89         { 
       
    90             command = EVideoEditorProviderCmdAddText; 
       
    91             txt = qtn_vie_options_add_text; // menu text
       
    92             extratxt =qtn_vie_options_sub_add_text; // submenu text
       
    93         }
       
    94     };
       
    95 }
       
    96 
       
    97 // Menu item for "Simple Cut"
       
    98 RESOURCE MENU_PANE r_videoeditorprovider_cut_menu
       
    99 {
       
   100     items=
       
   101     {
       
   102         MENU_ITEM 
       
   103         { 
       
   104             command = EVideoEditorProviderCmdCut; 
       
   105             txt = qtn_vie_options_cut; // menu text
       
   106             extratxt = qtn_vie_options_sub_cut; // submenu text
       
   107         }
       
   108     };
       
   109 }
       
   110 
       
   111 // Menu item for "Manual video editor", used when the 
       
   112 // item is displayed in sub-menu with other edit commands
       
   113 RESOURCE MENU_PANE r_videoeditorprovider_advanced_menu
       
   114 {
       
   115     items=
       
   116     {
       
   117         MENU_ITEM 
       
   118         { 
       
   119             command = EVideoEditorProviderCmdAdvanced; 
       
   120             txt = qtn_vei_menu_advanced;
       
   121         }
       
   122     };
       
   123 }
       
   124 
       
   125 // Menu item for "Manual video editor", used when there
       
   126 // are no other editing options present (i.e. no sub-menu)
       
   127 RESOURCE MENU_PANE r_videoeditorprovider_edit_menu
       
   128 {
       
   129     items=
       
   130     {
       
   131         MENU_ITEM 
       
   132         { 
       
   133             command = EVideoEditorProviderCmdAdvanced; 
       
   134             txt = qtn_vei_menu_advanced;
       
   135         },
       
   136         MENU_ITEM
       
   137         {
       
   138             command = AIW_SUBMENU_TITLE;
       
   139             txt = qtn_form_litxt_edit;
       
   140         }
       
   141     };
       
   142 }
       
   143 
       
   144 // End of file