diff -r 000000000000 -r 951a5db380a0 videditor/VideoProvider/src/VideoProviderInternal.rss --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/videditor/VideoProvider/src/VideoProviderInternal.rss Fri Jan 29 14:08:33 2010 +0200 @@ -0,0 +1,144 @@ +/* +* Copyright (c) 2010 Ixonos Plc. +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of the "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: +* Ixonos Plc +* +* Description: +* Declares Base service API for all providers to implement in order to +* offer services to Application Interworking Framework. +* +*/ + + +NAME VEPI + +// INCLUDES +#include +#include +#include "RegistryInfoV2.rh" +#include "VideoProvider.rh" + +#include + +#include +#include +#include +#include +#include + + +RESOURCE RSS_SIGNATURE { } + +// Menu title for the Edit sub-menu +RESOURCE MENU_PANE r_videoeditorprovider_submenu_title +{ + items= + { + MENU_ITEM + { + command = AIW_SUBMENU_TITLE; + txt = qtn_vie_options_edit; + } + }; +} + + +// Menu item for "Simple Merge" +RESOURCE MENU_PANE r_videoeditorprovider_merge_menu +{ + items= + { + MENU_ITEM + { + command = EVideoEditorProviderCmdMerge; + txt = qtn_vie_options_merge; // menu text + extratxt = qtn_vie_options_sub_merge; // submenu text + } + }; +} + +// Menu item for "Simple Change audio" +RESOURCE MENU_PANE r_videoeditorprovider_add_audio_menu +{ + items= + { + MENU_ITEM + { + command = EVideoEditorProviderCmdAddAudio; + txt = qtn_vie_options_change_sound; // menu text + extratxt = qtn_vie_options_sub_change_sound; // submenu text + } + }; +} + +// Menu item for "Simple Add text" +RESOURCE MENU_PANE r_videoeditorprovider_add_text_menu +{ + items= + { + MENU_ITEM + { + command = EVideoEditorProviderCmdAddText; + txt = qtn_vie_options_add_text; // menu text + extratxt =qtn_vie_options_sub_add_text; // submenu text + } + }; +} + +// Menu item for "Simple Cut" +RESOURCE MENU_PANE r_videoeditorprovider_cut_menu +{ + items= + { + MENU_ITEM + { + command = EVideoEditorProviderCmdCut; + txt = qtn_vie_options_cut; // menu text + extratxt = qtn_vie_options_sub_cut; // submenu text + } + }; +} + +// Menu item for "Manual video editor", used when the +// item is displayed in sub-menu with other edit commands +RESOURCE MENU_PANE r_videoeditorprovider_advanced_menu +{ + items= + { + MENU_ITEM + { + command = EVideoEditorProviderCmdAdvanced; + txt = qtn_vei_menu_advanced; + } + }; +} + +// Menu item for "Manual video editor", used when there +// are no other editing options present (i.e. no sub-menu) +RESOURCE MENU_PANE r_videoeditorprovider_edit_menu +{ + items= + { + MENU_ITEM + { + command = EVideoEditorProviderCmdAdvanced; + txt = qtn_vei_menu_advanced; + }, + MENU_ITEM + { + command = AIW_SUBMENU_TITLE; + txt = qtn_form_litxt_edit; + } + }; +} + +// End of file