--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/logsui/group/StmView.rss Tue Feb 02 10:12:17 2010 +0200
@@ -0,0 +1,240 @@
+/*
+* Copyright (c) 2002 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 IDENTIFIER
+//NAME CLSW // From Series 60 Stm View
+
+
+// INCLUDES
+#include "LogsConstants.hrh"
+
+
+//RESOURCE RSS_SIGNATURE { }
+
+/**
+ * STM Call Info title
+ */
+RESOURCE TBUF r_stm_title_text_call_info
+ {
+ buf = qtn_logs_stm_call_info_note;
+ }
+
+/**
+ * Call Info's name text
+ */
+RESOURCE TBUF r_stm_dll_name_text
+ {
+ buf = qtn_logs_stm_call_info_name;
+ }
+
+/**
+ * Call Info's telephone text
+ */
+RESOURCE TBUF r_stm_dll_telephone_text
+ {
+ buf = qtn_logs_stm_call_info_number;
+ }
+
+/**
+ * Call Info's time text
+ */
+RESOURCE TBUF r_stm_dll_time_text
+ {
+ buf = qtn_logs_stm_call_info_time;
+ }
+
+/**
+ * Call Info's date text
+ */
+RESOURCE TBUF r_stm_dll_date_text
+ {
+ buf = qtn_logs_stm_call_info_date;
+ }
+
+/**
+ * Use number query's definition
+ */
+RESOURCE DIALOG r_stm_use_number_query
+ {
+ flags= EGeneralQueryFlags;
+ buttons = R_AVKON_SOFTKEYS_CALL_CANCEL__CALL;
+ items=
+ {
+ DLG_LINE
+ {
+ type = EAknCtQuery;
+ id = EGeneralQuery;
+ control = AVKON_DATA_QUERY
+ {
+ layout = EPhoneLayout;
+ label = text_stm_use_number_popup_text;
+ control = EDWIN
+ {
+ flags = EEikEdwinNoHorizScrolling | EEikEdwinResizable |
+ EEikEdwinNoAutoSelection;
+ numeric_keymap = EAknEditorStandardNumberModeKeymap;
+ allowed_input_modes = EAknEditorNumericInputMode;
+ default_input_mode = EAknEditorNumericInputMode;
+ special_character_table = 0;
+ maxlength = KLogsPhoneNumberMaxLen;
+ lines = 1;
+ };
+ };
+ }
+ };
+ }
+
+/**
+ * Use address query's definition
+ */
+RESOURCE DIALOG r_stm_use_address_query
+ {
+ flags = EGeneralQueryFlags;
+ buttons = R_AVKON_SOFTKEYS_CALL_CANCEL__CALL; /*Fix for EYSI-6ZB3YE, old: R_AVKON_SOFTKEYS_CALL_CANCEL;*/
+ items =
+ {
+ DLG_LINE
+ {
+ type = EAknCtQuery; //Avkon.hrh
+ id = EGeneralQuery;
+ control = AVKON_DATA_QUERY
+ {
+ layout = EDataLayout;
+ label = qtn_voip_use_address_query;
+ control = EDWIN
+ {
+ flags = EEikEdwinNoAutoSelection;
+ numeric_keymap = EAknEditorAlphanumericNumberModeKeymap;
+ allowed_input_modes = EAknEditorAllInputModes;
+ default_input_mode = EAknEditorTextInputMode;
+ special_character_table = R_AVKON_SPECIAL_CHARACTER_TABLE_DIALOG;
+ maxlength = KLogsSipUriMaxLen;
+ width = 6;
+ lines = 1;
+ };
+ };
+ }
+ };
+ }
+
+
+/**
+ * STM's all views' menu bar
+ */
+RESOURCE MENU_BAR r_stm_common_menubar
+ {
+ titles =
+ {
+ MENU_TITLE { menu_pane = r_logs_system_menu_bottom; },
+ MENU_TITLE { menu_pane = r_common_event_menu_delete_events; },
+ MENU_TITLE { menu_pane = r_common_show_my_address_menu; },
+ MENU_TITLE { menu_pane = r_common_event_menu_edit_calls; },
+ MENU_TITLE { menu_pane = r_common_savetopbk_submenu; },
+ MENU_TITLE { menu_pane = r_common_menu_open_phonebook; },
+ MENU_TITLE { menu_pane = r_common_send_message_submenu; },
+ MENU_TITLE { menu_pane = r_common_poc_submenu; },
+ MENU_TITLE { menu_pane = r_common_callui_submenu; }
+ };
+ }
+
+
+/**
+ * STM common view definition
+ */
+RESOURCE AVKON_VIEW r_stm_common_view
+ {
+ menubar = r_stm_common_menubar;
+ cba = r_common_options_back_context;
+ }
+
+/**
+ * Exit CBA button when recents view started externally
+ */
+RESOURCE TBUF r_stm_exit_cba_button
+ {
+ buf = text_softkey_exit;
+ }
+
+/**
+ * Exit CBA button when recents view started externally
+ */
+RESOURCE TBUF r_stm_back_cba_button
+ {
+ buf = text_softkey_back;
+ }
+
+/**
+ * Write message menu option text
+ */
+RESOURCE TBUF r_stm_write_msg
+ {
+ buf = qtn_logs_opt_write_message;
+ }
+
+/**
+ * Write sms message menu option text
+ */
+RESOURCE TBUF r_stm_write_sms_msg
+ {
+ buf = qtn_logs_opt_send_sms;
+ }
+
+/**
+ * Write mms message menu option text
+ */
+RESOURCE TBUF r_stm_write_mms_msg
+ {
+ buf = qtn_logs_opt_send_mms;
+ }
+
+
+/**
+ * My address text
+ */
+RESOURCE TBUF r_stm_my_address
+ {
+ buf = qtn_stm_my_address;
+ }
+
+
+/**
+ * Voip address copied text
+ */
+RESOURCE TBUF r_voip_address_copied
+ {
+ buf = qtn_voip_address_copied;
+ }
+
+/**
+ * Poc address copied text
+ */
+RESOURCE TBUF r_poc_address_copied
+ {
+ buf = qtn_poc_address_copied;
+ }
+
+/**
+ * Prompt for "Use address" editing query
+ */
+RESOURCE TBUF r_logs_addr_prompt
+ {
+ buf = qtn_voip_use_address_query;
+ }
+
+// End of File