sl@0: // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // Part of the MVS Application for TechView sl@0: // sl@0: sl@0: sl@0: NAME NEWA sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: #include sl@0: sl@0: sl@0: //enums for the resource file and application sl@0: #include "MVSApp.hrh" sl@0: sl@0: //string defs sl@0: #include "MVSApp.rls" sl@0: sl@0: RESOURCE RSS_SIGNATURE { } sl@0: sl@0: RESOURCE TBUF sl@0: { sl@0: buf = ""; sl@0: } sl@0: sl@0: RESOURCE EIK_APP_INFO sl@0: { sl@0: hotkeys = r_mvs_hotkeys; sl@0: menubar = r_mvs_menubar; sl@0: toolbar = r_mvs_toolbar; sl@0: toolband = r_mvs_toolbar2; sl@0: } sl@0: sl@0: RESOURCE HOTKEYS r_mvs_hotkeys sl@0: { sl@0: control = sl@0: { sl@0: HOTKEY sl@0: { sl@0: command = EMVSCmdExit; sl@0: key = HOTKEY_EEikCmdExit; sl@0: }, sl@0: HOTKEY sl@0: { sl@0: command = EMVSCmdNew; sl@0: key = HOTKEY_EMVSNew; sl@0: }, sl@0: HOTKEY sl@0: { sl@0: command = EMVSCmdOpen; sl@0: key = HOTKEY_EMVSOpen; sl@0: }, sl@0: HOTKEY sl@0: { sl@0: command = EMVSCmdRecord; sl@0: key = HOTKEY_EMVSRecord; sl@0: }, sl@0: HOTKEY sl@0: { sl@0: command = EMVSCmdClose; sl@0: key = HOTKEY_EMVSClose; sl@0: }, sl@0: HOTKEY sl@0: { sl@0: command = EMVSButtonCancel; sl@0: key = HOTKEY_EMVSCancel; sl@0: } sl@0: }; sl@0: plain = sl@0: { sl@0: HOTKEY sl@0: { sl@0: command = EMVSCmdPlay; sl@0: key = HOTKEY_EMVSPlay; sl@0: }, sl@0: HOTKEY sl@0: { sl@0: command = EMVSCmdPause; sl@0: key = HOTKEY_EMVSPause; sl@0: }, sl@0: HOTKEY sl@0: { sl@0: command = EMVSCmdStop; sl@0: key = HOTKEY_EMVSStop; sl@0: } sl@0: }; sl@0: } sl@0: sl@0: RESOURCE MENU_BAR r_mvs_menubar sl@0: { sl@0: titles = sl@0: { sl@0: MENU_TITLE sl@0: { sl@0: menu_pane = r_mvs_file_menu; sl@0: txt = STRING_mvs_file_menu; sl@0: }, sl@0: MENU_TITLE sl@0: { sl@0: menu_pane = r_mvs_edit_menu; sl@0: txt = STRING_mvs_edit_menu; sl@0: }, sl@0: MENU_TITLE sl@0: { sl@0: menu_pane = r_mvs_settings_menu; sl@0: txt = STRING_mvs_settings_menu; sl@0: }, sl@0: MENU_TITLE sl@0: { sl@0: menu_pane = r_mvs_controls_menu; sl@0: txt = STRING_mvs_controls_menu; sl@0: } sl@0: }; sl@0: } sl@0: sl@0: RESOURCE MENU_PANE r_mvs_file_menu sl@0: { sl@0: items = sl@0: { sl@0: MENU_ITEM sl@0: { sl@0: command = EMVSCmdNew; sl@0: txt = STRING_mvs_file_menu_record; sl@0: }, sl@0: MENU_ITEM sl@0: { sl@0: command = EMVSCmdOpen; sl@0: txt = STRING_mvs_file_menu_play; sl@0: }, sl@0: MENU_ITEM sl@0: { sl@0: command = EMVSCmdClose; sl@0: txt = STRING_mvs_file_menu_close; sl@0: }, sl@0: MENU_ITEM sl@0: { sl@0: command = EMVSCmdSystemInfo; sl@0: txt = STRING_mvs_file_menu_systeminfo; sl@0: }, sl@0: MENU_ITEM sl@0: { sl@0: command = EMVSCmdExit; sl@0: txt = STRING_mvs_file_menu_exit; sl@0: } sl@0: }; sl@0: } sl@0: sl@0: RESOURCE MENU_PANE r_mvs_edit_menu sl@0: { sl@0: items = sl@0: { sl@0: MENU_ITEM sl@0: { sl@0: command = EMVSCmdSetCropWindow; sl@0: txt = STRING_mvs_edit_menu_setcropwindow; sl@0: }, sl@0: MENU_ITEM sl@0: { sl@0: command = EMVSCmdSetPlayWindow; sl@0: txt = STRING_mvs_edit_menu_setplaywindow; sl@0: }, sl@0: MENU_ITEM sl@0: { sl@0: command = EMVSCmdClearPlayWindow; sl@0: txt = STRING_mvs_edit_menu_clearplaywindow; sl@0: } sl@0: }; sl@0: } sl@0: sl@0: sl@0: RESOURCE MENU_PANE r_mvs_settings_menu sl@0: { sl@0: items = sl@0: { sl@0: MENU_ITEM sl@0: { sl@0: command = EMVSCmdAudioSetting; sl@0: txt = STRING_mvs_settings_audio_menu; sl@0: }, sl@0: MENU_ITEM sl@0: { sl@0: command = EMVSVideoCmdSettings; sl@0: txt = STRING_mvs_settings_video_menu; sl@0: }, sl@0: MENU_ITEM sl@0: { sl@0: command = EMVSCmdEditMetadata; sl@0: txt = STRING_mvs_settings_metadata_menu; sl@0: }, sl@0: MENU_ITEM sl@0: { sl@0: command = EMVSCmdMultiScreen; sl@0: txt = STRING_mvs_multiscreen_option; sl@0: }, sl@0: MENU_ITEM sl@0: { sl@0: command = EMVSRegisterForNotification; sl@0: txt = STRING_mvs_settings_register_menu; sl@0: }, sl@0: MENU_ITEM sl@0: { sl@0: command = EMVSCmdClearLog; sl@0: txt = STRING_mvs_settings_clearlog_menu; sl@0: #ifdef SYMBIAN_MULTIMEDIA_SUBTITLE_SUPPORT sl@0: flags = EEikMenuItemSeparatorAfter; sl@0: }, sl@0: MENU_ITEM sl@0: { sl@0: command = EMVSCmdEnableSubtitles; sl@0: txt = STRING_mvs_settings_menu_enable_subtitles; sl@0: }, sl@0: MENU_ITEM sl@0: { sl@0: command = EMVSCmdDisableSubtitles; sl@0: txt = STRING_mvs_settings_menu_disable_subtitles; sl@0: #endif // SYMBIAN_MULTIMEDIA_SUBTITLE_SUPPORT sl@0: } sl@0: }; sl@0: } sl@0: sl@0: sl@0: RESOURCE MENU_PANE r_mvs_controls_menu sl@0: { sl@0: items = sl@0: { sl@0: MENU_ITEM sl@0: { sl@0: command = EMVSCmdPlay; sl@0: txt = STRING_mvs_controls_menu_play; sl@0: }, sl@0: MENU_ITEM sl@0: { sl@0: command = EMVSCmdPause; sl@0: txt = STRING_mvs_controls_menu_pause; sl@0: }, sl@0: MENU_ITEM sl@0: { sl@0: command = EMVSCmdStop; sl@0: txt = STRING_mvs_controls_menu_stop; sl@0: flags = EEikMenuItemSeparatorAfter; sl@0: }, sl@0: MENU_ITEM sl@0: { sl@0: command = EMVSCmdRewind; sl@0: txt = STRING_mvs_controls_menu_rewind; sl@0: }, sl@0: MENU_ITEM sl@0: { sl@0: command = EMVSCmdFastForward; sl@0: txt = STRING_mvs_controls_menu_forward; sl@0: }, sl@0: MENU_ITEM sl@0: { sl@0: command = EMVSCmdRecord; sl@0: txt = STRING_mvs_controls_menu_record; sl@0: } sl@0: sl@0: }; sl@0: } sl@0: sl@0: sl@0: sl@0: RESOURCE MENU_PANE r_mvs_settings_audio_menu sl@0: { sl@0: items= sl@0: { sl@0: MENU_ITEM sl@0: { sl@0: command = EMVSCmdSetVolume; sl@0: txt = STRING_mvs_settings_audio_menu_setvolume; sl@0: }, sl@0: MENU_ITEM sl@0: { sl@0: command = EMVSCmdSetRepeats; sl@0: txt = STRING_mvs_settings_audio_menu_setrepeats; sl@0: }, sl@0: MENU_ITEM sl@0: { sl@0: command = EMVSCmdSetPlayBalance; sl@0: txt = STRING_mvs_settings_audio_menu_setplaybackbalance; sl@0: }, sl@0: MENU_ITEM sl@0: { sl@0: command = EMVSCmdSetGain; sl@0: txt = STRING_mvs_settings_audio_menu_setgain; sl@0: }, sl@0: MENU_ITEM sl@0: { sl@0: command = EMVSCmdSetRecordBalance; sl@0: txt = STRING_mvs_settings_audio_menu_setrecordbalance; sl@0: }, sl@0: MENU_ITEM sl@0: { sl@0: command = EMVSCmdSetAudioPriority; sl@0: txt = STRING_mvs_settings_audio_menu_setaudiopriority; sl@0: } sl@0: sl@0: }; sl@0: } sl@0: sl@0: sl@0: RESOURCE TOOLBAND r_mvs_toolbar1 sl@0: { sl@0: breadth=100; sl@0: controls= sl@0: { sl@0: DLG_TBAR_SPACER sl@0: { sl@0: type=EEikCtSpacer; sl@0: flags=EEikToolBarCtrlHasSetMinLength; sl@0: length = 638; sl@0: width=25; sl@0: color=3; sl@0: } sl@0: }; sl@0: } sl@0: sl@0: RESOURCE TOOLBAND r_mvs_toolbar sl@0: { sl@0: breadth=30; sl@0: controls= sl@0: { sl@0: TBAR_BUTTON sl@0: { sl@0: id=EMVSCmdPlay; sl@0: flags=EEikToolBarCtrlHasSetMinLength; sl@0: length = 30; sl@0: bmpfile="*"; sl@0: bmpid=EMbmMvsappPlay; sl@0: bmpmask=EMbmMvsappPlaymask; sl@0: }, sl@0: sl@0: TBAR_BUTTON sl@0: { sl@0: id=EMVSCmdPause; sl@0: flags=EEikToolBarCtrlHasSetMinLength; sl@0: length = 30; sl@0: bmpfile="*"; sl@0: bmpid=EMbmMvsappPause; sl@0: bmpmask=EMbmMvsappPausemask; sl@0: }, sl@0: sl@0: TBAR_BUTTON sl@0: { sl@0: id=EMVSCmdStop; sl@0: flags=EEikToolBarCtrlHasSetMinLength; sl@0: length = 30; sl@0: bmpfile="*"; sl@0: bmpid=EMbmMvsappStop; sl@0: bmpmask=EMbmMvsappStopmask; sl@0: }, sl@0: sl@0: TBAR_BUTTON sl@0: { sl@0: id=EMVSCmdRecord; sl@0: flags=EEikToolBarCtrlHasSetMinLength; sl@0: length = 30; sl@0: bmpfile="*"; sl@0: bmpid=EMbmMvsappRec; sl@0: bmpmask=EMbmMvsappRecmask; sl@0: }, sl@0: sl@0: DLG_TBAR_SPACER sl@0: { sl@0: type=EEikCtSpacer; sl@0: flags=EEikToolBarCtrlHasSetMinLength; sl@0: length = 35; sl@0: width=25; sl@0: color=3; sl@0: }, sl@0: sl@0: TBAR_BUTTON sl@0: { sl@0: id=EMVSCmdSetRepeats; sl@0: flags=EEikToolBarCtrlHasSetMinLength; sl@0: length = 30; sl@0: bmpfile="*"; sl@0: bmpid=EMbmMvsappCirc; sl@0: bmpmask=EMbmMvsappCircmask; sl@0: }, sl@0: sl@0: TBAR_BUTTON sl@0: { sl@0: id=EMVSCmdSetVolume; sl@0: flags=EEikToolBarCtrlHasSetMinLength; sl@0: length = 45; sl@0: bmpfile="*"; sl@0: bmpid=EMbmMvsappSound; sl@0: bmpmask=EMbmMvsappSoundmask; sl@0: }, sl@0: sl@0: TBAR_BUTTON sl@0: { sl@0: id=EMVSCmdSetPlayBalance; sl@0: flags=EEikToolBarCtrlHasSetMinLength; sl@0: length = 45; sl@0: bmpfile="*"; sl@0: bmpid=EMbmMvsappBalance; sl@0: bmpmask=EMbmMvsappBalancemask; sl@0: }, sl@0: sl@0: DLG_TBAR_SPACER sl@0: { sl@0: type=EEikCtSpacer; sl@0: flags=EEikToolBarCtrlHasSetMinLength; sl@0: length = 52; sl@0: width=10; sl@0: color=3; sl@0: }, sl@0: sl@0: TBAR_BUTTON sl@0: { sl@0: id=EMVSCmdRewind; sl@0: flags=EEikToolBarCtrlHasSetMinLength; sl@0: length = 45; sl@0: bmpfile="*"; sl@0: bmpid=EMbmMvsappRwd; sl@0: bmpmask=EMbmMvsappRwdmask; sl@0: }, sl@0: sl@0: DLG_TBAR_SPACER sl@0: { sl@0: type=EEikCtSpacer; sl@0: flags=EEikToolBarCtrlHasSetMinLength; sl@0: length = 6; sl@0: width=25; sl@0: color=3; sl@0: }, sl@0: sl@0: TBAR_BUTTON sl@0: { sl@0: id=EMVSCmdFastForward; sl@0: flags=EEikToolBarCtrlHasSetMinLength; sl@0: length = 45; sl@0: bmpfile="*"; sl@0: bmpid=EMbmMvsappFwd; sl@0: bmpmask=EMbmMvsappFwdmask; sl@0: }, sl@0: sl@0: sl@0: DLG_TBAR_SPACER sl@0: { sl@0: type=EEikCtSpacer; sl@0: flags=EEikToolBarCtrlHasSetMinLength; sl@0: length = 215; sl@0: width=25; sl@0: color=3; sl@0: } sl@0: }; sl@0: sl@0: } sl@0: sl@0: RESOURCE TOOLBAND r_mvs_toolbar2 sl@0: { sl@0: breadth=5; sl@0: controls= sl@0: { sl@0: DLG_TBAR_SPACER sl@0: { sl@0: type=EEikCtSpacer; sl@0: flags=EEikToolBarCtrlHasSetMinLength; sl@0: length = 638; sl@0: width=25; sl@0: color=3; sl@0: } sl@0: }; sl@0: } sl@0: sl@0: //buttons sl@0: RESOURCE DLG_BUTTONS r_mvs_buttons_up_down_ok_cancel sl@0: { sl@0: buttons= sl@0: { sl@0: DLG_BUTTON sl@0: { sl@0: id = EMVSButtonDown; sl@0: button = CMBUT {txt = STRING_r_mvs_buttons_down;}; sl@0: hotkey = EEikBidBlank; sl@0: }, sl@0: DLG_BUTTON sl@0: { sl@0: id = EMVSButtonUp; sl@0: button = CMBUT {txt = STRING_r_mvs_buttons_up;}; sl@0: hotkey = EEikBidSpace; sl@0: }, sl@0: DLG_BUTTON sl@0: { sl@0: id = EMVSButtonCancel; sl@0: button = CMBUT {txt = STRING_r_mvs_buttons_cancel;}; sl@0: hotkey = EEikBidCancel; sl@0: }, sl@0: DLG_BUTTON sl@0: { sl@0: id = EMVSButtonOk; sl@0: button = CMBUT {txt = STRING_r_mvs_buttons_ok;}; sl@0: hotkey = EEikBidOk; sl@0: } sl@0: }; sl@0: } sl@0: sl@0: RESOURCE DIALOG r_mvs_dialog_setvolume sl@0: { sl@0: flags=EEikDialogFlagWait; sl@0: title=STRING_r_mvs_dialog_setvolume_setvolume; sl@0: buttons = r_mvs_buttons_up_down_ok_cancel; sl@0: items= sl@0: { sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_mvs_dialog_setvolume_specifyvolume; sl@0: type=EEikCtProgInfo; sl@0: id=EMVSCmdSetVolume; sl@0: control=PROGRESSINFO sl@0: { sl@0: finalval=KMVSProgressLabelMaxValue; // Maximum number of values the bar can have. sl@0: width=200; // The width of the bar. sl@0: text_type=EEikProgressTextPercentage; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_mvs_dialog_setvolume_specifyvolumeramp; sl@0: type=EEikCtNumberEditor; sl@0: id=EMVSCmdSetVolumeRamp; sl@0: control= NUMBER_EDITOR sl@0: { sl@0: min = 0; sl@0: max = 10; sl@0: }; sl@0: } sl@0: }; sl@0: } sl@0: sl@0: RESOURCE DLG_BUTTONS r_mvs_buttons_left_right_ok_cancel sl@0: { sl@0: buttons= sl@0: { sl@0: DLG_BUTTON sl@0: { sl@0: id = EMVSButtonLeft; sl@0: button = CMBUT {txt = STRING_r_mvs_buttons_left;}; sl@0: }, sl@0: DLG_BUTTON sl@0: { sl@0: id = EMVSButtonRight; sl@0: button = CMBUT {txt = STRING_r_mvs_buttons_right;}; sl@0: }, sl@0: DLG_BUTTON sl@0: { sl@0: id = EMVSButtonCancel; sl@0: button = CMBUT {txt = STRING_r_mvs_buttons_cancel;}; sl@0: }, sl@0: DLG_BUTTON sl@0: { sl@0: id = EMVSButtonOk; sl@0: button = CMBUT {txt = STRING_r_mvs_buttons_ok;}; sl@0: } sl@0: }; sl@0: } sl@0: sl@0: RESOURCE DIALOG r_mvs_dialog_setbalance sl@0: { sl@0: flags=EEikDialogFlagWait; sl@0: title=STRING_r_mvs_dialog_setbalance_setbalance; sl@0: buttons = r_mvs_buttons_left_right_ok_cancel; sl@0: items= sl@0: { sl@0: DLG_LINE sl@0: { sl@0: sl@0: prompt=STRING_r_mvs_dialog_setbalance_specifybalance; sl@0: type=EEikCtProgInfo; sl@0: id=EMVSSetBalance; sl@0: control=PROGRESSINFO sl@0: { sl@0: finalval=KMVSProgressLabelMaxValue; // Maximum number of values the bar can have. sl@0: width=200; // The width of the bar. sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=""; sl@0: type=EEikCtLabel; sl@0: id=EMVSSetBalanceLR; sl@0: control= LABEL sl@0: { sl@0: txt = "Left Right "; sl@0: }; sl@0: } sl@0: }; sl@0: } sl@0: sl@0: RESOURCE DIALOG r_mvs_dialog_setgain sl@0: { sl@0: flags=EEikDialogFlagWait; sl@0: title=STRING_r_mvs_dialog_setgain_setgain; sl@0: buttons = r_mvs_buttons_up_down_ok_cancel; sl@0: items= sl@0: { sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_mvs_dialog_setgain_specifygain; sl@0: type=EEikCtProgInfo; sl@0: id=EMVSCmdSetGain; sl@0: control=PROGRESSINFO sl@0: { sl@0: finalval=KMVSProgressLabelMaxValue; // Maximum number of values the bar can have. sl@0: width=200; // The width of the bar. sl@0: text_type=EEikProgressTextPercentage; sl@0: }; sl@0: } sl@0: }; sl@0: } sl@0: sl@0: RESOURCE DIALOG r_mvs_dialog_setrepeats sl@0: { sl@0: flags = EEikDialogFlagWait; sl@0: title=STRING_r_mvs_dialog_setrepeats_setrepeats; sl@0: buttons = R_EIK_BUTTONS_CANCEL_OK; sl@0: items= sl@0: { sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_mvs_dialog_setrepeats_specifyrepeats; sl@0: type=EEikCtNumberEditor; sl@0: id=EMVSCmdSetRepeats; sl@0: control= NUMBER_EDITOR sl@0: { sl@0: min = 0; sl@0: max = 1000; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_mvs_dialog_setrepeats_specifytrailingsilence; sl@0: type=EEikCtNumberEditor; sl@0: id=EMVSCmdSetTrailingSilence; sl@0: control= NUMBER_EDITOR sl@0: { sl@0: min = 1; sl@0: max = 10; sl@0: }; sl@0: } sl@0: }; sl@0: } sl@0: sl@0: RESOURCE DIALOG r_mvs_dialog_multiplescreen sl@0: { sl@0: flags = EEikDialogFlagWait; sl@0: title=STRING_r_mvs_dialog_setscreen; sl@0: buttons = R_EIK_BUTTONS_CANCEL_OK; sl@0: items= sl@0: { sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_mvs_dialog_setscreen_specifyscreen; sl@0: type=EEikCtNumberEditor; sl@0: id=EMVSCmdMultiScreen; sl@0: control= NUMBER_EDITOR sl@0: { sl@0: min = 0; sl@0: max = 1000; sl@0: }; sl@0: } sl@0: }; sl@0: } sl@0: sl@0: RESOURCE DIALOG r_mvs_dialog_register sl@0: { sl@0: flags=EEikDialogFlagWait; sl@0: title=STRING_r_mvs_dialog_registerfornotification; sl@0: buttons = R_EIK_BUTTONS_CANCEL_OK; sl@0: items= sl@0: { sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_mvs_dialog_registerfornotification_label; sl@0: type=EEikCtCheckBox; sl@0: id=EMVSRegisterForNotification; sl@0: } sl@0: }; sl@0: } sl@0: sl@0: RESOURCE DLG_BUTTONS r_mvs_buttons_cancel_next sl@0: { sl@0: buttons= sl@0: { sl@0: DLG_BUTTON sl@0: { sl@0: id = EMVSButtonCancel; sl@0: button = CMBUT {txt = STRING_r_mvs_buttons_cancel;}; sl@0: }, sl@0: DLG_BUTTON sl@0: { sl@0: id = EMVSButtonNext; sl@0: button = CMBUT {txt = STRING_r_mvs_buttons_next;}; sl@0: hotkey = EEikBidOk; sl@0: } sl@0: }; sl@0: } sl@0: sl@0: RESOURCE ARRAY r_mvs_array_none sl@0: { sl@0: items= sl@0: { sl@0: LBUF { txt= STRING_r_mvs_dialog_none; } sl@0: }; sl@0: } sl@0: sl@0: RESOURCE DIALOG r_mvs_dialog_selectplugins sl@0: { sl@0: flags=EEikDialogFlagWait; sl@0: title=STRING_r_mvs_dialog_selectplugins_selectplugins; sl@0: buttons = r_mvs_buttons_cancel_next; sl@0: items= sl@0: { sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_mvs_dialog_selectplugins_type; sl@0: type=EEikCtHorOptionButList; sl@0: id=EMVSCmdSelectMediaType; sl@0: control= HOROPBUT sl@0: { sl@0: array_id=r_mvs_media_type_array; sl@0: }; sl@0: }, sl@0: sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_mvs_dialog_selectplugins_format; sl@0: type=EEikCtChoiceList; sl@0: id=EMVSCmdSelectFormat; sl@0: control= CHOICELIST sl@0: { sl@0: array_id = r_mvs_array_none; sl@0: }; sl@0: }, sl@0: sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_mvs_dialog_selectplugins_controller; sl@0: type=EEikCtChoiceList; sl@0: id=EMVSCmdSelectControllerPlugin; sl@0: control=CHOICELIST sl@0: { sl@0: array_id = r_mvs_array_none; sl@0: }; sl@0: } sl@0: sl@0: }; sl@0: } sl@0: sl@0: RESOURCE DIALOG r_mvs_dialog_videoplugins sl@0: { sl@0: flags=EEikDialogFlagWait; sl@0: title=STRING_r_mvs_dialog_selectplugins_videoplugins; sl@0: buttons = r_mvs_buttons_update_cancel; sl@0: items= sl@0: { sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_mvs_dialog_selectvideomime_codec; sl@0: type=EEikCtChoiceList; sl@0: id=EMVSCmdSelectVideoMimeCodec; sl@0: control= CHOICELIST sl@0: { sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_mvs_dialog_selectvideoframerate; sl@0: type=EEikCtChoiceList; sl@0: id=EMVSCmdSelectVideoFrameRate; sl@0: control= CHOICELIST sl@0: { sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_mvs_dialog_selectvideoFrameSize; sl@0: type=EEikCtChoiceList; sl@0: id=EMVSCmdSelectVideoFrameSize; sl@0: control= CHOICELIST sl@0: { sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: type=EEikCtCheckBox; sl@0: prompt=STRING_r_audioenabled_dialog_settings; sl@0: id=EMVSEnableAudio; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: type=EEikCtCheckBox; sl@0: prompt=STRING_r_audio_dialog_settings; sl@0: id=EMVSRestoreVideoSettings; sl@0: } sl@0: }; sl@0: } sl@0: sl@0: RESOURCE ARRAY r_mvs_media_type_array sl@0: { sl@0: items= sl@0: { sl@0: OPBUT { id = EMVSHorOptButtonAudio; sl@0: text=STRING_r_mvs_dialog_selectplugins_audiochkbox; }, sl@0: OPBUT { id = EMVSHorOptButtonVideo; sl@0: text=STRING_r_mvs_dialog_selectplugins_videochkbox; } sl@0: }; sl@0: } sl@0: sl@0: RESOURCE DLG_BUTTONS r_mvs_buttons_update_cancel sl@0: { sl@0: buttons= sl@0: { sl@0: DLG_BUTTON sl@0: { sl@0: id = EMVSButtonCancel; sl@0: button = CMBUT {txt = STRING_r_mvs_buttons_cancel;}; sl@0: hotkey = EEikBidCancel; sl@0: }, sl@0: DLG_BUTTON sl@0: { sl@0: id = EMVSButtonUpdate; sl@0: button = CMBUT {txt = STRING_r_mvs_buttons_ok;}; sl@0: hotkey = EEikBidOk; sl@0: } sl@0: }; sl@0: } sl@0: sl@0: RESOURCE DLG_BUTTONS r_mvs_buttons_update sl@0: { sl@0: buttons= sl@0: { sl@0: DLG_BUTTON sl@0: { sl@0: id = EMVSButtonOnlyUpdate; sl@0: button = CMBUT {txt = STRING_r_mvs_buttons_ok;}; sl@0: hotkey = EEikBidOk; sl@0: } sl@0: }; sl@0: } sl@0: sl@0: RESOURCE DIALOG r_mvs_dialog_configuredataformat sl@0: { sl@0: flags=EEikDialogFlagWait; sl@0: title=r_mvs_dialog_configuredataformat_configuredataformat; sl@0: buttons = r_mvs_buttons_update_cancel; sl@0: items= sl@0: { sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_mvs_dialog_selectplugins_codec; sl@0: type=EEikCtChoiceList; sl@0: id=EMVSCmdSelectCodec; sl@0: control= CHOICELIST sl@0: { sl@0: }; sl@0: }, sl@0: sl@0: DLG_LINE sl@0: { sl@0: prompt=r_mvs_dialog_configuredataformat_bitrate; sl@0: type=EEikCtChoiceList; sl@0: id=EMVSSetBitrate; sl@0: control= CHOICELIST sl@0: { sl@0: }; sl@0: }, sl@0: sl@0: DLG_LINE sl@0: { sl@0: prompt=r_mvs_dialog_configuredataformat_nochannels; sl@0: type=EEikCtChoiceList; sl@0: id=EMVSSetNoOfChannels; sl@0: control= CHOICELIST sl@0: { sl@0: }; sl@0: }, sl@0: sl@0: DLG_LINE sl@0: { sl@0: prompt=r_mvs_dialog_configuredataformat_samplerate; sl@0: type=EEikCtChoiceList; sl@0: id=EMVSSetSamplerate; sl@0: control= CHOICELIST sl@0: { sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: type=EEikCtCheckBox; sl@0: prompt=STRING_r_audio_dialog_settings; sl@0: id=EMVSRestoreAudioSettings; sl@0: } sl@0: }; sl@0: } sl@0: sl@0: RESOURCE ARRAY r_mvs_dialog_configuredataformat_formats sl@0: { sl@0: items= sl@0: { sl@0: LBUF { txt= STRING_r_mvs_dialog_configuredataformat_formats_wav; } sl@0: }; sl@0: sl@0: } sl@0: sl@0: RESOURCE ARRAY r_mvs_dialog_configuredataformat_codecs sl@0: { sl@0: items= sl@0: { sl@0: LBUF { txt= STRING_r_mvs_dialog_configuredataformat_codecs_pcm16; } sl@0: }; sl@0: sl@0: } sl@0: sl@0: // The array associated with the configure data format dialog. sl@0: sl@0: RESOURCE ARRAY r_mvs_dialog_configuredataformat_bitrates sl@0: { sl@0: items= sl@0: { sl@0: LBUF { txt= STRING_r_mvs_dialog_configuredataformat_bitrates_128; } sl@0: }; sl@0: sl@0: } sl@0: sl@0: sl@0: RESOURCE ARRAY r_mvs_dialog_configuredataformat_samplerates sl@0: { sl@0: items= sl@0: { sl@0: LBUF { txt= STRING_r_mvs_dialog_configuredataformat_samplerates_8000; }, sl@0: LBUF { txt= STRING_r_mvs_dialog_configuredataformat_samplerates_11025; }, sl@0: LBUF { txt= STRING_r_mvs_dialog_configuredataformat_samplerates_16000; }, sl@0: LBUF { txt= STRING_r_mvs_dialog_configuredataformat_samplerates_22050; }, sl@0: LBUF { txt= STRING_r_mvs_dialog_configuredataformat_samplerates_32000; }, sl@0: LBUF { txt= STRING_r_mvs_dialog_configuredataformat_samplerates_44100; }, sl@0: LBUF { txt= STRING_r_mvs_dialog_configuredataformat_samplerates_48000; } sl@0: }; sl@0: sl@0: } sl@0: sl@0: RESOURCE ARRAY r_mvs_dialog_configuredataformat_no_of_channels sl@0: { sl@0: items= sl@0: { sl@0: LBUF { txt= STRING_r_mvs_dialog_configuredataformat_nochannels_mono; }, sl@0: LBUF { txt= STRING_r_mvs_dialog_configuredataformat_nochannels_stereo; } sl@0: }; sl@0: sl@0: } sl@0: sl@0: sl@0: RESOURCE DIALOG r_mvs_dialog_setmetainfo sl@0: { sl@0: flags=EEikDialogFlagWait; sl@0: title=STRING_r_mvs_dialog_setmetainfo_setmetainfo; sl@0: buttons = r_mvs_buttons_update_cancel; sl@0: items= sl@0: { sl@0: DLG_LINE sl@0: { sl@0: prompt= STRING_r_mvs_dialog_viewmetainfo_title; sl@0: type=EEikCtEdwin; sl@0: id=EMVSMeta1; sl@0: control= EDWIN sl@0: { sl@0: flags = 0; sl@0: width = 15; sl@0: lines = 1; sl@0: maxlength = 20; sl@0: }; sl@0: }, sl@0: sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_mvs_dialog_viewmetainfo_author; sl@0: type=EEikCtEdwin; sl@0: id=EMVSMeta2; sl@0: control= EDWIN sl@0: { sl@0: flags = 0; sl@0: width = 15; sl@0: lines = 1; sl@0: maxlength = 20; sl@0: }; sl@0: }, sl@0: sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_mvs_dialog_viewmetainfo_copyright; sl@0: type=EEikCtEdwin; sl@0: id=EMVSMeta3; sl@0: control= EDWIN sl@0: { sl@0: flags = 0; sl@0: width = 10; sl@0: lines = 1; sl@0: maxlength = 15; sl@0: }; sl@0: }, sl@0: sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_mvs_dialog_viewmetainfo_revision; sl@0: type=EEikCtEdwin; sl@0: id=EMVSMeta4; sl@0: control= EDWIN sl@0: { sl@0: flags = 0; sl@0: width = 5; sl@0: lines = 1; sl@0: maxlength = 8; sl@0: }; sl@0: }, sl@0: sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_mvs_dialog_viewmetainfo_category; sl@0: type=EEikCtEdwin; sl@0: id=EMVSMeta5; sl@0: control= EDWIN sl@0: { sl@0: flags = 0; sl@0: width = 10; sl@0: lines = 1; sl@0: maxlength = 15; sl@0: }; sl@0: }, sl@0: sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_mvs_dialog_viewmetainfo_comments; sl@0: type=EEikCtEdwin; sl@0: id=EMVSMeta6; sl@0: control= EDWIN sl@0: { sl@0: flags = 0; sl@0: width = 15; sl@0: lines = 2; sl@0: maxlength = 40; sl@0: }; sl@0: } sl@0: }; sl@0: } sl@0: sl@0: sl@0: // sl@0: // sl@0: //SYSTEM INFO sl@0: RESOURCE DIALOG r_new_mvs_dialog_systeminfo sl@0: { sl@0: flags=EEikDialogFlagWait; sl@0: title=STRING_mvs_file_menu_systeminfo; sl@0: buttons = r_mvs_buttons_update; sl@0: items= sl@0: { sl@0: DLG_LINE sl@0: { sl@0: prompt=""; sl@0: type=EEikCtEdwin; sl@0: id=EMVSCmdSystemInfo; sl@0: control=EDWIN sl@0: { sl@0: width=45; sl@0: lines=25; sl@0: }; sl@0: } sl@0: }; sl@0: } sl@0: sl@0: sl@0: // sl@0: // sl@0: //VIDEO SETTINGS sl@0: RESOURCE DIALOG r_mvs_video_dialog_videosetting sl@0: { sl@0: flags=EEikDialogFlagWait; sl@0: title=STRING_r_newvideo_dialog_video_videosetting; sl@0: buttons = r_mvs_buttons_update_cancel; sl@0: items= sl@0: { sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_newvideo_dialog_video_rotation; sl@0: type=EEikCtChoiceList; sl@0: id=EMVSVideoRotationSettings; sl@0: control= CHOICELIST sl@0: { sl@0: array_id = r_newmvs_dialog_setvideorotation_choicelist; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_newvideo_dialog_video_scalewidth; sl@0: type=EEikCtFlPtEd; sl@0: id=EMVSCmdScaleWidth; sl@0: control= FLPTED sl@0: { sl@0: min = 1; sl@0: max = 1000; sl@0: }; sl@0: trailer="%"; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_newvideo_dialog_video_scaleheight; sl@0: type=EEikCtFlPtEd; sl@0: id=EMVSCmdScaleHeight; sl@0: control= FLPTED sl@0: { sl@0: min = 1; sl@0: max = 1000; sl@0: }; sl@0: trailer="%"; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_newvideo_dialog_video_antialiasfiltering; sl@0: type=EEikCtCheckBox; sl@0: id=EMVSAntiAliasFiltering; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=""; sl@0: type=EEikCtLabel; sl@0: id=EMVSVideoCmdSettings; sl@0: control=LABEL sl@0: { sl@0: txt = "_____________________________________________________"; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=""; sl@0: type=EEikCtLabel; sl@0: id=EMVSVideoCmdSettings; sl@0: control=LABEL sl@0: { sl@0: txt = "CROP REGION"; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_newvideo_dialog_video_top_left_x; sl@0: type=EEikCtNumberEditor; sl@0: id=EMVSCmdSetTopLeftx; sl@0: control= NUMBER_EDITOR sl@0: { sl@0: min = 0; sl@0: max = 1000; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_newvideo_dialog_video_top_left_y; sl@0: type=EEikCtNumberEditor; sl@0: id=EMVSCmdSetTopLefty; sl@0: control= NUMBER_EDITOR sl@0: { sl@0: min = 0; sl@0: max = 1000; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_newvideo_dialog_video_bottom_right_x; sl@0: type=EEikCtNumberEditor; sl@0: id=EMVSCmdSetBottomRightx; sl@0: control= NUMBER_EDITOR sl@0: { sl@0: min = 0; sl@0: max = 1000; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_newvideo_dialog_video_bottom_right_y; sl@0: type=EEikCtNumberEditor; sl@0: id=EMVSCmdSetBottomRighty; sl@0: control= NUMBER_EDITOR sl@0: { sl@0: min = 0; sl@0: max = 1000; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=""; sl@0: type=EEikCtLabel; sl@0: id=EMVSVideoCmdSettings; sl@0: control=LABEL sl@0: { sl@0: txt = "_____________________________________________________"; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=""; sl@0: type=EEikCtLabel; sl@0: id=EMVSVideoCmdSettings; sl@0: control=LABEL sl@0: { sl@0: txt = "VIDEO EXTENT REGION"; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_newvideo_dialog_video_top_left_x; sl@0: type=EEikCtNumberEditor; sl@0: id=EMVSCmdSetVideoExtentTopLeftx; sl@0: control= NUMBER_EDITOR sl@0: { sl@0: min = 0; sl@0: max = 1000; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_newvideo_dialog_video_top_left_y; sl@0: type=EEikCtNumberEditor; sl@0: id=EMVSCmdSetVideoExtentTopLefty; sl@0: control= NUMBER_EDITOR sl@0: { sl@0: min = 0; sl@0: max = 1000; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_newvideo_dialog_video_bottom_right_x; sl@0: type=EEikCtNumberEditor; sl@0: id=EMVSCmdSetVideoExtentBottomRightx; sl@0: control= NUMBER_EDITOR sl@0: { sl@0: min = 0; sl@0: max = 1000; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_newvideo_dialog_video_bottom_right_y; sl@0: type=EEikCtNumberEditor; sl@0: id=EMVSCmdSetVideoExtentBottomRighty; sl@0: control= NUMBER_EDITOR sl@0: { sl@0: min = 0; sl@0: max = 1000; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=""; sl@0: type=EEikCtLabel; sl@0: id=EMVSVideoCmdSettings; sl@0: control=LABEL sl@0: { sl@0: txt = "_____________________________________________________"; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=""; sl@0: type=EEikCtLabel; sl@0: id=EMVSVideoCmdSettings; sl@0: control=LABEL sl@0: { sl@0: txt = "WINDOW CLIPPING REGION"; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_newvideo_dialog_video_top_left_x; sl@0: type=EEikCtNumberEditor; sl@0: id=EMVSCmdSetWindowClipTopLeftx; sl@0: control= NUMBER_EDITOR sl@0: { sl@0: min = 0; sl@0: max = 1000; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_newvideo_dialog_video_top_left_y; sl@0: type=EEikCtNumberEditor; sl@0: id=EMVSCmdSetWindowClipTopLefty; sl@0: control= NUMBER_EDITOR sl@0: { sl@0: min = 0; sl@0: max = 1000; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_newvideo_dialog_video_bottom_right_x; sl@0: type=EEikCtNumberEditor; sl@0: id=EMVSCmdSetWindowClipBottomRightx; sl@0: control= NUMBER_EDITOR sl@0: { sl@0: min = 0; sl@0: max = 1000; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_newvideo_dialog_video_bottom_right_y; sl@0: type=EEikCtNumberEditor; sl@0: id=EMVSCmdSetWindowClipBottomRighty; sl@0: control= NUMBER_EDITOR sl@0: { sl@0: min = 0; sl@0: max = 1000; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=""; sl@0: type=EEikCtLabel; sl@0: id=EMVSVideoCmdSettings; sl@0: control=LABEL sl@0: { sl@0: txt = "_______________________________________________________"; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: type=EEikCtCheckBox; sl@0: prompt=STRING_r_newvideo_dialog_video_display_overlay_text; sl@0: id=EMVSCmdSetDisplayOverlayText; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_newvideo_dialog_video_display_overlay_text; sl@0: type=EEikCtEdwin; sl@0: id=EMVSCmdSetOverlayText; sl@0: control= EDWIN sl@0: { sl@0: width = 20; sl@0: maxlength = 50; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=""; sl@0: type=EEikCtLabel; sl@0: id=EMVSVideoCmdSettings; sl@0: control=LABEL sl@0: { sl@0: txt = "_____________________________________________________"; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: type=EEikCtCheckBox; sl@0: prompt=STRING_r_newvideo_dialog_video_viewfinder; sl@0: id=EMVSVideoCmdSettings; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_newvideo_dialog_video_cameraindex; sl@0: type=EEikCtNumberEditor; sl@0: id=EMVSVideoCmdSettings; sl@0: control= NUMBER_EDITOR sl@0: { sl@0: min = 1; sl@0: max = 1000; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=""; sl@0: type=EEikCtLabel; sl@0: id=EMVSVideoCmdSettings; sl@0: control=LABEL sl@0: { sl@0: txt = "_______________________________________________________"; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_newvideo_dialog_video_camerapriority; sl@0: type=EEikCtNumberEditor; sl@0: id=EMVSVideoCmdSettings; sl@0: control= NUMBER_EDITOR sl@0: { sl@0: min = 1; sl@0: max = 1000; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=""; sl@0: type=EEikCtLabel; sl@0: id=EMVSVideoCmdSettings; sl@0: control= LABEL sl@0: { sl@0: sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=""; sl@0: type=EEikCtLabel; sl@0: id=EMVSVideoCmdSettings; sl@0: control=LABEL sl@0: { sl@0: txt = "_______________________________________________________"; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_newvideo_dialog_video_auto_scale_type; sl@0: type=EEikCtChoiceList; sl@0: id=EMVSAutoScaleType; sl@0: control= CHOICELIST sl@0: { sl@0: array_id = r_newmvs_dialog_setautoscale_type_choicelist; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_newvideo_dialog_video_auto_scale_horiz; sl@0: type=EEikCtChoiceList; sl@0: id=EMVSAutoScaleHoriz; sl@0: control= CHOICELIST sl@0: { sl@0: array_id = r_newmvs_dialog_setautoscale_horiz_choicelist; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_newvideo_dialog_video_auto_scale_horiz_pos; sl@0: type=EEikCtNumberEditor; sl@0: id=EMVSAutoScaleHorizPos; sl@0: control= NUMBER_EDITOR sl@0: { sl@0: min = -1000; sl@0: max = 1000; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_newvideo_dialog_video_auto_scale_vert; sl@0: type=EEikCtChoiceList; sl@0: id=EMVSAutoScaleVert; sl@0: control= CHOICELIST sl@0: { sl@0: array_id = r_newmvs_dialog_setautoscale_vert_choicelist; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_newvideo_dialog_video_auto_scale_vert_pos; sl@0: type=EEikCtNumberEditor; sl@0: id=EMVSAutoScaleVertPos; sl@0: control= NUMBER_EDITOR sl@0: { sl@0: min = -1000; sl@0: max = 1000; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_newvideo_dialog_pip; sl@0: type=EEikCtCheckBox; sl@0: id=EMVSPIP; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_newvideo_dialog_crp; sl@0: type=EEikCtCheckBox; sl@0: id=EMVSCRP; sl@0: } sl@0: }; sl@0: } sl@0: sl@0: sl@0: RESOURCE ARRAY r_newmvs_dialog_setvideorotation_choicelist sl@0: { sl@0: items= sl@0: { sl@0: LBUF { txt= STRING_r_mvs_dialog_setrotationnone; }, sl@0: LBUF { txt= STRING_r_mvs_dialog_setrotationClockwise90; }, sl@0: LBUF { txt= STRING_r_mvs_dialog_setrotationClockwise180; }, sl@0: LBUF { txt= STRING_r_mvs_dialog_setrotationClockwise270; } sl@0: }; sl@0: sl@0: } sl@0: sl@0: RESOURCE ARRAY r_newmvs_dialog_setautoscale_type_choicelist sl@0: { sl@0: items= sl@0: { sl@0: LBUF { txt= STRING_r_newvideo_dialog_video_auto_scale_none; }, sl@0: LBUF { txt= STRING_r_newvideo_dialog_video_auto_scale_best_fit; }, sl@0: LBUF { txt= STRING_r_newvideo_dialog_video_auto_scale_clip; }, sl@0: LBUF { txt= STRING_r_newvideo_dialog_video_auto_scale_stretch; } sl@0: }; sl@0: } sl@0: sl@0: RESOURCE ARRAY r_newmvs_dialog_setautoscale_horiz_choicelist sl@0: { sl@0: items= sl@0: { sl@0: LBUF { txt= STRING_r_newvideo_dialog_video_auto_scale_left; }, sl@0: LBUF { txt= STRING_r_newvideo_dialog_video_auto_scale_center; }, sl@0: LBUF { txt= STRING_r_newvideo_dialog_video_auto_scale_right; }, sl@0: LBUF { txt= STRING_r_newvideo_dialog_video_auto_scale_custom; } sl@0: }; sl@0: } sl@0: sl@0: RESOURCE ARRAY r_newmvs_dialog_setautoscale_vert_choicelist sl@0: { sl@0: items= sl@0: { sl@0: LBUF { txt= STRING_r_newvideo_dialog_video_auto_scale_top; }, sl@0: LBUF { txt= STRING_r_newvideo_dialog_video_auto_scale_center; }, sl@0: LBUF { txt= STRING_r_newvideo_dialog_video_auto_scale_bottom; }, sl@0: LBUF { txt= STRING_r_newvideo_dialog_video_auto_scale_custom; } sl@0: }; sl@0: } sl@0: sl@0: /*// sl@0: // sl@0: //Audio Settings*/ sl@0: RESOURCE DIALOG r_new_mvs_dialog_audiosetting sl@0: { sl@0: flags=EEikDialogFlagWait; sl@0: title=STRING_mvs_file_menu_audiosetting; sl@0: buttons = r_mvs_buttons_update_cancel; sl@0: items= sl@0: { sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_mvs_settings_audio_menu_setrepeats; sl@0: type=EEikCtNumberEditor; sl@0: id=EMVSCmdSetRepeats; sl@0: control= NUMBER_EDITOR sl@0: { sl@0: min = 0; sl@0: max = 1000; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_mvs_audiosetting_dialog_delay; sl@0: type=EEikCtNumberEditor; sl@0: id=EMVSCmdSetTrailingSilence; sl@0: control= NUMBER_EDITOR sl@0: { sl@0: min = 1; sl@0: max = 10; sl@0: }; sl@0: trailer="sec"; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: type=EEikCtCheckBox; sl@0: prompt=STRING_r_audiosetting_dialog_playonopen; sl@0: id=EMVSCmdAudioSetting; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_mvs_settings_audio_menu_setaudiopriority; sl@0: type=EEikCtChoiceList; sl@0: id=EMVSCmdSetAudioPriority; sl@0: control= CHOICELIST sl@0: { sl@0: array_id = r_newmvs_dialog_setaudiopriority_choicelist; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt= STRING_mvs_settings_audio_menu_setaudioprioritypreference; sl@0: type=EEikCtChoiceList; sl@0: id=EMVSCmdSetAudioPriorityPreference; sl@0: control= CHOICELIST sl@0: { sl@0: array_id = r_newmvs_dialog_setprioritypreference_choicelist; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: type=EEikCtCheckBox; sl@0: prompt=STRING_r_audiosetting_dialog_autopauseresume; sl@0: id=EMVSAutoPauseResume; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: type=EEikCtNumberEditor; sl@0: prompt=STRING_r_audiosetting_dialog_maxfilesize; sl@0: id=EMVSCmdSetMaxFileSizeNum; sl@0: control= NUMBER_EDITOR sl@0: { sl@0: min = 0; sl@0: max = 2147483647; sl@0: }; sl@0: } sl@0: }; sl@0: } sl@0: sl@0: RESOURCE ARRAY r_newmvs_dialog_setaudiopriority_choicelist sl@0: { sl@0: items= sl@0: { sl@0: LBUF { txt= STRING_r_mvs_dialog_setaudiopriority_min; }, sl@0: LBUF { txt= STRING_r_mvs_dialog_setaudiopriority_normal; }, sl@0: LBUF { txt= STRING_r_mvs_dialog_setaudiopriority_max; } sl@0: }; sl@0: sl@0: } sl@0: sl@0: RESOURCE ARRAY r_newmvs_dialog_setprioritypreference_choicelist sl@0: { sl@0: items= sl@0: { sl@0: LBUF { txt= STRING_r_mvs_dialog_setprioritypreference_None; }, sl@0: LBUF { txt= STRING_r_mvs_dialog_setprioritypreference_time; }, sl@0: LBUF { txt= STRING_r_mvs_dialog_setprioritypreference_quality; }, sl@0: LBUF { txt= STRING_r_mvs_dialog_setprioritypreference_both; } sl@0: }; sl@0: sl@0: } sl@0: sl@0: sl@0: sl@0: // sl@0: // sl@0: //SETPLAYWINDOW sl@0: sl@0: RESOURCE DIALOG r_mvs_dialog_setplaywindow sl@0: { sl@0: flags=EEikDialogFlagWait; sl@0: title=STRING_r_mvs_dialog_setplaywindow ; sl@0: buttons = r_mvs_buttons_update_cancel; sl@0: items= sl@0: { sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_mvs_dialog_setplaywindow_start; sl@0: type=EEikCtNumberEditor; sl@0: id=EMVSCmdSetPlayWindowStart; sl@0: control= NUMBER_EDITOR sl@0: { sl@0: min = 0; sl@0: max = 2147483647; sl@0: }; sl@0: trailer="ms"; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_mvs_dialog_setplaywindow_end; sl@0: type=EEikCtNumberEditor; sl@0: id=EMVSCmdSetPlayWindowEnd; sl@0: control= NUMBER_EDITOR sl@0: { sl@0: min = 0; sl@0: max = 2147483647;//This will be updated when seeded sl@0: }; sl@0: trailer="ms"; sl@0: } sl@0: }; sl@0: } sl@0: sl@0: // sl@0: //CROP DIALOG sl@0: // This dialog is used to crop the audio clip. sl@0: // sl@0: RESOURCE DIALOG r_mvs_dialog_crop sl@0: { sl@0: flags=EEikDialogFlagWait; sl@0: title=STRING_r_mvs_dialog_crop_crop; sl@0: buttons = r_mvs_buttons_crop_cancel; sl@0: items= sl@0: { sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_mvs_dialog_crop_leftright; sl@0: type=EEikCtHorOptionButList; sl@0: id=EMVSCmdCropLeftRight; sl@0: control= HOROPBUT sl@0: { sl@0: array_id=r_mvs_crop_left_right_array; sl@0: }; sl@0: }, sl@0: DLG_LINE sl@0: { sl@0: prompt=STRING_r_mvs_dialog_crop_position; sl@0: type=EEikCtNumberEditor; sl@0: id=EMVSCmdCropPositionNumber; sl@0: control= NUMBER_EDITOR sl@0: { sl@0: min = 0; sl@0: max = 9999999;//This will be updated when seeded sl@0: }; sl@0: trailer="sec"; sl@0: } sl@0: }; sl@0: } sl@0: sl@0: RESOURCE ARRAY r_mvs_crop_left_right_array sl@0: { sl@0: items= sl@0: { sl@0: OPBUT { id = EMVSHorOptButtonCropFromBeginning; sl@0: text=STRING_r_mvs_crop_left_right_array_left; }, sl@0: OPBUT { id = EMVSHorOptButtonCropFromEnd; sl@0: text=STRING_r_mvs_crop_left_right_array_right; } sl@0: }; sl@0: } sl@0: sl@0: sl@0: RESOURCE PROGRESSINFO r_clip_progressinfo sl@0: { sl@0: text_type=0; sl@0: splits_in_block=50; sl@0: finalval=200; sl@0: width=0; sl@0: height=0; sl@0: } sl@0: sl@0: // sl@0: // sl@0: // sl@0: //Crop button sl@0: // sl@0: // sl@0: RESOURCE DLG_BUTTONS r_mvs_buttons_crop_cancel sl@0: { sl@0: buttons= sl@0: { sl@0: DLG_BUTTON sl@0: { sl@0: id = EMVSButtonCancel; sl@0: button = CMBUT {txt = STRING_r_mvs_buttons_cancel;}; sl@0: hotkey = EEikBidCancel; sl@0: }, sl@0: DLG_BUTTON sl@0: { sl@0: id = EMVSButtonUpdate; sl@0: button = CMBUT {txt = STRING_r_mvs_buttons_crop;}; sl@0: hotkey = EEikBidOk; sl@0: } sl@0: }; sl@0: } sl@0: sl@0: // sl@0: //View Related// sl@0: // sl@0: RESOURCE TBUF r_idle { buf = STRING_KIdle; } sl@0: RESOURCE TBUF r_playing { buf = STRING_KPlaying; } sl@0: RESOURCE TBUF r_ready { buf = STRING_KReady; } sl@0: RESOURCE TBUF r_paused { buf = STRING_KPaused; } sl@0: RESOURCE TBUF r_recording { buf = STRING_KRecording; } sl@0: RESOURCE TBUF r_nofile { buf = STRING_KNoFile; } sl@0: RESOURCE TBUF r_open { buf = STRING_KOpen; } sl@0: RESOURCE TBUF r_zerotime { buf = STRING_KZeroTime; } sl@0: sl@0: RESOURCE TBUF r_dollardollar { buf = STRING_KDollarDollar; } sl@0: RESOURCE TBUF r_percent { buf = STRING_KPercent; } sl@0: RESOURCE TBUF r_volume { buf = STRING_KVolume; } sl@0: RESOURCE TBUF r_volumeramp { buf = STRING_KVolumeRamp; } sl@0: RESOURCE TBUF r_balance { buf = STRING_KBalance; } sl@0: RESOURCE TBUF r_cropstart { buf = STRING_KCropStart; } sl@0: RESOURCE TBUF r_cropend { buf = STRING_KCropEnd; } sl@0: RESOURCE TBUF r_norepeats { buf = STRING_KNoRepeats; } sl@0: RESOURCE TBUF r_repeatdelay { buf = STRING_KRepeatDelay; } sl@0: RESOURCE TBUF r_audiopriority { buf = STRING_KAudioPriority; } sl@0: RESOURCE TBUF r_gain { buf = STRING_KGain; } sl@0: RESOURCE TBUF r_tabspace { buf = STRING_KTabSpace; } sl@0: RESOURCE TBUF r_ms { buf = STRING_Kms; } sl@0: RESOURCE TBUF r_cliplength { buf = STRING_KClipLength; } sl@0: RESOURCE TBUF r_left { buf = STRING_KLeftOpen; } sl@0: RESOURCE TBUF r_right { buf = STRING_KRightOpen; } sl@0: RESOURCE TBUF r_close { buf = STRING_KClose; } sl@0: RESOURCE TBUF r_nocrop { buf = STRING_KNoCrop; } sl@0: RESOURCE TBUF r_welcome { buf = STRING_KWelcome; } sl@0: RESOURCE TBUF r_center { buf = STRING_KCenter; } sl@0: RESOURCE TBUF r_ramp { buf = STRING_KRamp; } sl@0: RESOURCE TBUF r_format { buf = STRING_KFormat; } sl@0: RESOURCE TBUF r_bitrate { buf = STRING_KBitRate; } sl@0: RESOURCE TBUF r_samplerate { buf = STRING_KSampleRate; } sl@0: RESOURCE TBUF r_channels { buf = STRING_KChannels; } sl@0: RESOURCE TBUF r_audioenabled { buf = STRING_KAudioEnabled; } sl@0: RESOURCE TBUF r_audionotenabled { buf = STRING_KAudioNotEnabled; }