symhelp/helpmodel/tsrc/THelpView.rss
changeset 0 1f04cf54edd8
equal deleted inserted replaced
-1:000000000000 0:1f04cf54edd8
       
     1 // Copyright (c) 2003-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 THVW
       
    17 
       
    18 #include <techview/eikon.rh>
       
    19 #include "THelpView.hrh"
       
    20 
       
    21 //
       
    22 // STANDARD APP RESOURCES
       
    23 //
       
    24 RESOURCE RSS_SIGNATURE { }
       
    25 
       
    26 RESOURCE TBUF { buf=""; }
       
    27 
       
    28 RESOURCE EIK_APP_INFO
       
    29 	{
       
    30 	menubar	= r_helpview_menubar;
       
    31 	hotkeys = r_helpview_hotkeys;
       
    32 	}
       
    33 
       
    34 RESOURCE HOTKEYS r_helpview_hotkeys
       
    35     {
       
    36     control=
       
    37         {
       
    38         HOTKEY { command=EEikCmdExit;			key='e'; },
       
    39         HOTKEY { command=EHlpCmdSearchDone;		key='d'; } 
       
    40         };
       
    41     }
       
    42 
       
    43 RESOURCE MENU_BAR r_helpview_menubar
       
    44     {
       
    45     titles=
       
    46         {
       
    47         MENU_TITLE { menu_pane = r_helpview_file_menu;	txt="File"; },
       
    48         MENU_TITLE { menu_pane = r_helpview_view_menu;	txt="View"; },
       
    49         MENU_TITLE { menu_pane = r_helpview_tools_menu;	txt="Tools"; }
       
    50 		};
       
    51     }
       
    52 
       
    53 RESOURCE MENU_PANE r_helpview_file_menu
       
    54 	{
       
    55 	items=
       
    56 		{
       
    57 		MENU_ITEM { command=EEikCmdExit; txt="Close"; }
       
    58         };
       
    59     }
       
    60 
       
    61 RESOURCE MENU_PANE r_helpview_view_menu
       
    62 	{
       
    63 	items=
       
    64 		{
       
    65 		MENU_ITEM { command=EEikCmdZoomIn;	txt="Zoom in"; },
       
    66 		MENU_ITEM { command=EEikCmdZoomOut; txt="Zoom out"; }
       
    67 		};
       
    68 	}
       
    69 
       
    70 RESOURCE MENU_PANE r_helpview_tools_menu
       
    71 	{
       
    72 	items=
       
    73 		{
       
    74 		MENU_ITEM { command=EHlpCmdSearch;		txt="Search"<KEllipsis>; },
       
    75  		MENU_ITEM { command=EHlpCmdSearchDone;	txt="Hide results"; }
       
    76 		};
       
    77     }
       
    78 
       
    79 
       
    80 
       
    81 //
       
    82 // TEXT RESOURCEs
       
    83 //
       
    84 RESOURCE TBUF r_helpview_text_no_search_results { buf = "No search results found"; }
       
    85 RESOURCE TBUF r_helpview_text_no_topic_for_id	{ buf = "Topic not found"; }
       
    86 RESOURCE TBUF r_helpview_text_searching			{ buf = "Searching"<KEllipsis>; }
       
    87