tsrc/fusionmpxplayer_test/FusionMpxPlayerTestExeUi/data/FusionMpxPlayerTestExeUi.rss
branchRCL_3
changeset 10 112a725ff2c2
parent 9 5294c000a26d
child 11 8970fbd719ec
equal deleted inserted replaced
9:5294c000a26d 10:112a725ff2c2
     1 /*
       
     2 * Copyright (c) 2008 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 the License "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 
       
    19 
       
    20 NAME HELL
       
    21 
       
    22 #include <eikon.rh>
       
    23 #include <avkon.rh>
       
    24 #include <avkon.rsg>
       
    25 
       
    26 #include "FusionPlayerTestApp.hrh"
       
    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_fusionmpxplayertestexeui_menubar;
       
    54     cba = R_AVKON_SOFTKEYS_CLOSE;
       
    55     //cba = R_AVKON_SOFTKEYS_OPTIONS_BACK;
       
    56     }
       
    57 
       
    58 // ---------------------------------------------------------
       
    59 //
       
    60 //   r_fusionmpxplayertestexeui_menubar
       
    61 //   Menubar for Settings Example
       
    62 //
       
    63 // ---------------------------------------------------------
       
    64 //
       
    65 RESOURCE MENU_BAR r_fusionmpxplayertestexeui_menubar
       
    66     {
       
    67     titles =
       
    68         {
       
    69         MENU_TITLE 
       
    70             {
       
    71             menu_pane = r_fusionmpxplayertestexeui_menu;
       
    72             }
       
    73         };
       
    74     }
       
    75 
       
    76 // ---------------------------------------------------------
       
    77 //
       
    78 //   r_fusionmpxplayertestexeui_menu
       
    79 //   Menu for "Options"
       
    80 //
       
    81 // ---------------------------------------------------------
       
    82 //
       
    83 RESOURCE MENU_PANE r_fusionmpxplayertestexeui_menu
       
    84     {
       
    85     items =
       
    86         {
       
    87         MENU_ITEM
       
    88 		    {
       
    89 			command = ESettingCmdPlayVideo;
       
    90 			txt = "Play video";
       
    91 			},
       
    92         MENU_ITEM
       
    93 		    {
       
    94 			command = EAknSoftkeyExit;
       
    95 			txt = "Exit";
       
    96 			}
       
    97         };
       
    98     }
       
    99