appfw/viewserver/test/tviews/tview4/tview4.rss
changeset 0 2e3d3ce01487
equal deleted inserted replaced
-1:000000000000 0:2e3d3ce01487
       
     1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15  
       
    16 NAME TVW4
       
    17 
       
    18 #include <techview/eikon.hrh>
       
    19 #include <techview/eikon.rh>
       
    20 #include <techview/eikon.rsg>
       
    21 #include <eikon.mbg>
       
    22 
       
    23 #include "tview4.hrh"
       
    24 
       
    25 RESOURCE RSS_SIGNATURE { }
       
    26 
       
    27 RESOURCE TBUF16 { buf=""; }
       
    28 
       
    29 RESOURCE EIK_APP_INFO
       
    30 	{
       
    31 	hotkeys=r_tview4_hotkeys;
       
    32 	menubar=r_tview4_menubar;
       
    33 	toolbar=r_tcolovr_toolbar;
       
    34 	}
       
    35 
       
    36 RESOURCE HOTKEYS r_tview4_hotkeys
       
    37     {
       
    38     control=
       
    39         {
       
    40         HOTKEY {command=EEikCmdExit; key='e';}
       
    41         };
       
    42     }
       
    43 
       
    44 RESOURCE TOOLBAR r_tcolovr_toolbar
       
    45 	{
       
    46 	controls=
       
    47 		{
       
    48         TBAR_BUTTON {id=EAppCmdListOwnedFiles; txt="List files";}
       
    49 		};
       
    50 	}
       
    51 
       
    52 RESOURCE MENU_BAR r_tview4_menubar
       
    53     {
       
    54     titles=
       
    55         {
       
    56         MENU_TITLE { menu_pane=r_tview4_file_menu; txt="File"; },
       
    57         MENU_TITLE { menu_pane=r_tview4_test_menu; txt="Test"; }
       
    58         };
       
    59     }
       
    60 
       
    61 RESOURCE MENU_PANE r_tview4_file_menu
       
    62     {
       
    63     items=
       
    64         {
       
    65         MENU_ITEM
       
    66             {
       
    67             command=EEikCmdExit;
       
    68             txt="Exit";
       
    69             }
       
    70         };
       
    71     }
       
    72 
       
    73 RESOURCE MENU_PANE r_tview4_test_menu
       
    74     {
       
    75     items=
       
    76         {
       
    77 		 MENU_ITEM
       
    78             {
       
    79             command=EAppCmdListOwnedFiles;
       
    80             txt="List files";
       
    81             }
       
    82         };
       
    83     }
       
    84 RESOURCE DIALOG r_tview4_owned_file_dlg
       
    85     {
       
    86     title = "Owned files";
       
    87     flags=EEikDialogFlagWait;
       
    88     buttons=R_EIK_BUTTONS_CANCEL_OK;
       
    89     items =
       
    90         {
       
    91         DLG_LINE
       
    92             {
       
    93             type = EEikCtListBox;
       
    94             id = EAppDlgOwnedFilesId;
       
    95             control = LISTBOX
       
    96                 {
       
    97                 };
       
    98             }
       
    99         };
       
   100     }