diff -r 000000000000 -r e686773b3f54 logsui/group/LogsGprsCounterView.rss --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/logsui/group/LogsGprsCounterView.rss Tue Feb 02 10:12:17 2010 +0200 @@ -0,0 +1,163 @@ +/* +* 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: +* Logs 'GPRS counter' view items (Logs.APP). +* +*/ + + +// RESOURCE IDENTIFIER + +// INCLUDES + +// CONSTANTS + +// MACROS + +// RESOURCE DEFINITIONS + +/** + * Note displayed if GPRS counters clearing is not allowed + */ +RESOURCE DIALOG r_counter_clearing_prohib_note + { + flags = EGeneralQueryFlags; + buttons = R_AVKON_SOFTKEYS_EMPTY; + items = + { + DLG_LINE + { + type = EAknCtNote; + id = EGeneralNote; + control = AVKON_NOTE + { + layout = EGeneralLayout; + singular_label = qtn_info_during_gprs_conn; + animation = R_QGN_NOTE_INFO_ANIM; + }; + } + }; + } + +/** + * Byte text + */ +RESOURCE TBUF r_logs_grps_b_text + { + buf = qtn_log_gprs_amount_b; + } + +/** + * Kilobyte text + */ +RESOURCE TBUF r_logs_grps_kb_text + { + buf = qtn_log_gprs_amount_kb; + } + +/** + * Megabyte text + */ +RESOURCE TBUF r_logs_grps_mb_text + { + buf = qtn_log_gprs_amount_mb; + } + +/** + * Gigabyte text + */ +RESOURCE TBUF r_logs_grps_gb_text + { + buf = qtn_log_gprs_amount_gb; + } + +/** + * Sent data text + */ +RESOURCE TBUF r_logs_grps_sent_text + { + buf = qtn_log_gprs_sent_data; + } + +/** + * Received data text + */ +RESOURCE TBUF r_logs_grps_received_text + { + buf = qtn_log_gprs_recei_data; + } + +/** + * Logs 'GPRS counter' view OK options list menu items. + */ +RESOURCE MENU_PANE r_logs_gprs_counter_ok_menu + { + items = + { + MENU_ITEM + { + command = ELogsCmdMenuClearGprs; + txt = qtn_log_gprs_clear_count; + } + }; + } + +/** + * Logs 'GPRS counter' view OK options list menu bar. + */ +RESOURCE MENU_BAR r_logs_gprs_counter_ok_menubar + { + titles = + { + MENU_TITLE { menu_pane = r_logs_gprs_counter_ok_menu; } + }; + } + +/** + * Logs 'GPRS counter' view menu items. + */ +RESOURCE MENU_PANE r_logs_gprs_counter_menu + { + items= + { + MENU_ITEM + { + command = ELogsCmdMenuClearGprs; + txt = qtn_log_gprs_clear_count; + } + }; + } + +/** + * Logs 'GPRS counter' view menubar. + */ +RESOURCE MENU_BAR r_logs_gprs_counter_menubar + { + titles = + { + MENU_TITLE { menu_pane = r_logs_system_menu_bottom; }, + MENU_TITLE { menu_pane = r_logs_gprs_counter_menu; } + }; + } + +/** + * Logs 'GPRS counter' view definition. + */ +RESOURCE AVKON_VIEW r_logs_gprs_counter_view + { + menubar = r_logs_gprs_counter_menubar; + cba = r_common_options_back_context; + } + +// End of File