logsui/group/LogsEventListView.rss
changeset 0 e686773b3f54
equal deleted inserted replaced
-1:000000000000 0:e686773b3f54
       
     1 /*
       
     2 * Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: 
       
    15 *     Resource file for the application view "log".
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 //  RESOURCE IDENTIFIER
       
    21 
       
    22 //  INCLUDES
       
    23 
       
    24 //  CONSTANTS
       
    25 
       
    26 //  MACROS
       
    27 
       
    28 //  RESOURCE DEFINITIONS
       
    29 
       
    30 /**
       
    31  * Logs 'event list' view menu items. 
       
    32  */
       
    33 RESOURCE MENU_PANE r_logs_event_list_menu_details
       
    34     {
       
    35     items =
       
    36         {
       
    37         MENU_ITEM
       
    38             {
       
    39             command = ELogsCmdMenuDetails;
       
    40             txt = qtn_logs_cmd_details;
       
    41             flags = EEikMenuItemAction;
       
    42             }
       
    43         };
       
    44     }
       
    45 
       
    46 RESOURCE MENU_PANE r_logs_event_list_menu_clear_list
       
    47     {
       
    48     items =
       
    49         {
       
    50         MENU_ITEM
       
    51             {
       
    52             command = ELogsCmdMenuClearList;
       
    53             txt = qtn_logs_cmd_clear_list;
       
    54             }
       
    55         };
       
    56     }
       
    57 
       
    58 RESOURCE MENU_PANE r_logs_event_list_menu_filter
       
    59     {
       
    60     items =
       
    61         {
       
    62         MENU_ITEM
       
    63             {
       
    64             command = ELogsCmdMenuFilter;
       
    65             txt = qtn_logs_cmd_filter;
       
    66             }
       
    67         };
       
    68     }
       
    69 
       
    70 /**
       
    71  * Logs 'event list' view menubar.
       
    72  */
       
    73 RESOURCE MENU_BAR r_logs_log_event_list_menubar
       
    74     {
       
    75     titles =
       
    76         {
       
    77         MENU_TITLE { menu_pane = r_logs_system_menu_bottom; },
       
    78         MENU_TITLE { menu_pane = r_common_show_my_address_menu; }, 
       
    79         MENU_TITLE { menu_pane = r_common_event_menu_edit_calls; },
       
    80         MENU_TITLE { menu_pane = r_common_savetopbk_submenu; },  
       
    81         MENU_TITLE { menu_pane = r_common_menu_open_phonebook; }, 
       
    82         MENU_TITLE { menu_pane = r_logs_event_list_menu_filter; },
       
    83         MENU_TITLE { menu_pane = r_logs_event_list_menu_clear_list; },
       
    84         MENU_TITLE { menu_pane = r_common_send_message_submenu; }, 
       
    85         MENU_TITLE { menu_pane = r_common_poc_submenu; },   
       
    86         MENU_TITLE { menu_pane = r_common_callui_submenu; },
       
    87         MENU_TITLE { menu_pane = r_logs_event_list_menu_details; }
       
    88         };
       
    89     }
       
    90 
       
    91 /**
       
    92  * Logs 'event list' view definition.
       
    93  */
       
    94 RESOURCE AVKON_VIEW r_logs_event_list_view
       
    95     {
       
    96     menubar = r_logs_log_event_list_menubar;
       
    97     cba = r_common_options_exit_view; 
       
    98     }
       
    99 
       
   100 /**
       
   101  *  Clear list query's definition
       
   102  */
       
   103 RESOURCE DIALOG r_clear_list_confirmation_query
       
   104     {
       
   105     flags = EGeneralQueryFlags;
       
   106     buttons = R_AVKON_SOFTKEYS_YES_NO;
       
   107     items =
       
   108         {
       
   109         DLG_LINE
       
   110             {
       
   111             type = EAknCtQuery;
       
   112             id = EGeneralQuery;
       
   113             control = AVKON_CONFIRMATION_QUERY
       
   114                 {
       
   115                 layout = EConfirmationLayout;
       
   116                 label = qtn_logs_query_clear_log_list;
       
   117                 };
       
   118             }
       
   119         };
       
   120     }
       
   121 
       
   122 /**
       
   123  * Event list view's "Fetching data..." text when event are under fetching.
       
   124  */
       
   125 RESOURCE TBUF r_logs_eventview_fetching_text
       
   126     {
       
   127     buf = qtn_logs_wait_fetching_data;
       
   128     }
       
   129 
       
   130 /**
       
   131  * Event list view's "empty" text when there is no listbox created.
       
   132  */
       
   133 RESOURCE TBUF r_logs_eventview_no_data_text
       
   134     {
       
   135     buf = qtn_log_no_events;
       
   136     }
       
   137 
       
   138 /**
       
   139  * When event list view if empty due to filter selection.
       
   140  */
       
   141 RESOURCE TBUF r_logs_eventview_no_data_dtfs_text
       
   142     {
       
   143     buf = qtn_log_no_events_filter;
       
   144     }
       
   145 
       
   146 /**
       
   147  * The options menu command "View" used when MSK label is enabled
       
   148  */
       
   149 RESOURCE TBUF r_qtn_logs_cmd_view
       
   150     {
       
   151     buf = qtn_logs_cmd_view;
       
   152     }
       
   153 
       
   154 // End of File
       
   155