diff -r 88ee4cf65e19 -r 1aa8c82cb4cb remotestoragefw/remotedriveconfigurationbiocontrol/inc/rsfwmountconfbc.rss --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/remotestoragefw/remotedriveconfigurationbiocontrol/inc/rsfwmountconfbc.rss Wed Sep 01 12:15:08 2010 +0100 @@ -0,0 +1,148 @@ +/* +* Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "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: +* +* Description: Resource definitions for project ?myapp +* +*/ + + +NAME MCBC + +#include +#include + +#include +#include +#include +#include + +#include "rsfwmountconfbc.hrh" +#include // Localisable text +#include + + +RESOURCE RSS_SIGNATURE { } + +RESOURCE TBUF { buf = ""; } + +RESOURCE EIK_APP_INFO + { + status_pane = R_AVKON_STATUS_PANE_LAYOUT_USUAL; + cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT; + } + +RESOURCE TBUF r_sm_save + { + buf = qtn_rd_msg_option_save_drive; + } + + +RESOURCE TBUF r_sm_success_mount + { + buf = qtn_rd_msg_note_drive_saved; + } + +RESOURCE TBUF r_sm_default_drive_name + { + buf = qtn_rd_msg_query_default_name; + } +RESOURCE TBUF r_sm_too_many_remote_drives + { + buf = qtn_rd_error_max_drives; + } + +RESOURCE DIALOG r_name_query + { + flags = EEikDialogFlagWait | EEikDialogFlagNoDrag | EEikDialogFlagNoTitleBar | EEikDialogFlagCbaButtons | EEikDialogFlagNoShadow; + buttons = R_AVKON_SOFTKEYS_OK_CANCEL; + items = + { + DLG_LINE + { + type = EAknCtQuery; + id = EGeneralQuery; + control = AVKON_DATA_QUERY + { + layout = EDataLayout; + label = "Enter name"; + control = EDWIN + { + flags = EEikEdwinNoHorizScrolling; + avkon_flags = EAknEditorFlagNoT9; + maxlength = MAXCONFITEMLENGTH; + width = 16; + lines = 3; + }; + }; + } + }; + } + +RESOURCE DIALOG r_confirmation_query + { + flags = EGeneralQueryFlags; + buttons = R_AVKON_SOFTKEYS_OK_CANCEL; + items= + { + DLG_LINE + { + type = EAknCtQuery; + id = EGeneralQuery; + control = AVKON_CONFIRMATION_QUERY + { + layout =EConfirmationQueryLayout; + }; + } + }; + } +RESOURCE DIALOG r_file_name_query + { + flags = EGeneralQueryFlags; + buttons = R_AVKON_SOFTKEYS_OK_CANCEL; + items = + { + DLG_LINE + { + type = EAknCtQuery; + id = EGeneralQuery; + control = AVKON_DATA_QUERY + { + layout = EDataLayout; + label = qtn_fldr_item_name_prmpt; + control = EDWIN + { + flags = EEikEdwinNoHorizScrolling | EEikEdwinResizable; + lines = 1; + maxlength = 256; + }; + }; + } + }; + } + + +RESOURCE TBUF r_sm_title_mount_conf + { + buf = qtn_rd_msg_title_remote_drive; + } +//---------------------------------------------------- +// +// string resouces +// the strings can be localized in loc file +// +//---------------------------------------------------- +// +RESOURCE TBUF r_str_setting_item_drive_name { buf = qtn_rd_msg_label_drive_name; } +RESOURCE TBUF r_str_name_rename_query { buf = qtn_fldr_rename_query; } +RESOURCE TBUF r_str_new_name_prompt { buf = qtn_fldr_item_name_prmpt; } +RESOURCE TBUF r_str_saving_wait_note { buf = qtn_rd_msg_note_saving_drive; }