mmsharing/mmshindicator/tsrc/IndicatorTestApp/group/IndicatorTestApp.rss
changeset 22 496ad160a278
equal deleted inserted replaced
15:ccd8e69b5392 22:496ad160a278
       
     1 /*
       
     2 * Copyright (c) 2007 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 *
       
    16 */
       
    17 
       
    18 NAME HELL
       
    19 
       
    20 #include <eikon.rh>
       
    21 #include <eikon.rsg>
       
    22 #include <avkon.rh>
       
    23 #include <avkon.rsg>
       
    24 
       
    25 #include "IndicatorTestApp.hrh"
       
    26 
       
    27 
       
    28 // ---------------------------------------------------------
       
    29 //   
       
    30 //    Define the resource file signature 
       
    31 //    This resource should be empty.
       
    32 //
       
    33 // ---------------------------------------------------------
       
    34 //
       
    35 RESOURCE RSS_SIGNATURE { }
       
    36 
       
    37 // ---------------------------------------------------------
       
    38 //   
       
    39 //    Default Document Name
       
    40 //
       
    41 // ---------------------------------------------------------
       
    42 //
       
    43 RESOURCE TBUF r_default_document_name { buf=""; }
       
    44 
       
    45 // ---------------------------------------------------------
       
    46 //   
       
    47 //    Define default menu and CBA key.
       
    48 //
       
    49 // ---------------------------------------------------------
       
    50 //
       
    51 RESOURCE EIK_APP_INFO
       
    52     {
       
    53     menubar = r_IndicatorTestApp_menubar;
       
    54     cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT;
       
    55     }
       
    56 
       
    57 
       
    58 // ---------------------------------------------------------
       
    59 //   
       
    60 //   r_IndicatorTestApp_menubar
       
    61 //   Menubar for IndicatorTestApp example
       
    62 //
       
    63 // ---------------------------------------------------------
       
    64 //
       
    65 RESOURCE MENU_BAR r_IndicatorTestApp_menubar
       
    66     {
       
    67     titles =
       
    68         {
       
    69         MENU_TITLE {menu_pane = r_IndicatorTestApp_menu;}
       
    70         };
       
    71     }
       
    72 
       
    73 
       
    74 // ---------------------------------------------------------
       
    75 //   
       
    76 //   r_IndicatorTestApp_menu
       
    77 //   Menu for "Options"
       
    78 //
       
    79 // ---------------------------------------------------------
       
    80 //
       
    81 RESOURCE MENU_PANE r_IndicatorTestApp_menu
       
    82     {
       
    83     items = 
       
    84         {
       
    85         MENU_ITEM {command = EIndicatorTestAppSharingAvailable;  txt = "Sharing Available";},
       
    86         MENU_ITEM {command = EIndicatorTestAppSharingNotAvailable;  txt = "Sharing Not Available";},
       
    87 
       
    88         MENU_ITEM {command = EIndicatorTestAppEnableOperator;  txt = "Set operator specific";},
       
    89         MENU_ITEM {command = EIndicatorTestAppDisableOperator;  txt = "Set non operator specific";},
       
    90 
       
    91 
       
    92         MENU_ITEM {command = EIndicatorTestAppAudiotoryNotification;  txt = "Set play sound";},
       
    93         MENU_ITEM {command = EIndicatorTestAppNoAudiotoryNotification;  txt = "Set no sound";},
       
    94 
       
    95         MENU_ITEM {command = EIndicatorTestAppPopUpNotification;  txt = "Set pop-up notification";},
       
    96         MENU_ITEM {command = EIndicatorTestAppNoPopUpNotification;  txt = "Set no pop-up notification";},
       
    97 
       
    98         MENU_ITEM {command = EIndicatorTestAppIconNotification;  txt = "Set icon notification";},
       
    99         MENU_ITEM {command = EIndicatorTestAppNoIconNotification;  txt = "Set no icon notification";},
       
   100 
       
   101         MENU_ITEM {command = EAknSoftkeyExit;   txt = "Exit";}
       
   102         };
       
   103     }