|
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 TLCH |
|
17 |
|
18 #include <techview/eikon.rh> |
|
19 #include "tlch.hrh" |
|
20 |
|
21 RESOURCE RSS_SIGNATURE { } |
|
22 |
|
23 RESOURCE TBUF { buf=""; } |
|
24 |
|
25 RESOURCE EIK_APP_INFO |
|
26 { |
|
27 menubar=r_tlch_menubar; |
|
28 hotkeys=r_tlch_hotkeys; |
|
29 // toolbar=r_tlch_toolbar; |
|
30 } |
|
31 |
|
32 RESOURCE HOTKEYS r_tlch_hotkeys |
|
33 { |
|
34 control= |
|
35 { |
|
36 HOTKEY { command=EEikCmdExit; key='e'; }, |
|
37 HOTKEY { command=ETlchMenuHelpC; key='h'; }, |
|
38 HOTKEY { command=ETlchMenuHelp; key='i'; } |
|
39 }; |
|
40 } |
|
41 |
|
42 RESOURCE MENU_BAR r_tlch_menubar |
|
43 { |
|
44 titles= |
|
45 { |
|
46 MENU_TITLE { menu_pane=r_tlch_file_menu; txt="File"; }, |
|
47 MENU_TITLE { menu_pane=r_tlch_view_menu; txt="View"; } |
|
48 }; |
|
49 } |
|
50 |
|
51 RESOURCE MENU_PANE r_tlch_file_menu |
|
52 { |
|
53 items= |
|
54 { |
|
55 MENU_ITEM { command=ETlchMenuHelpC; txt="Help with contexts"; }, |
|
56 MENU_ITEM { command=ETlchMenuHelp; txt="Help without contexts"; flags=EEikMenuItemSeparatorAfter; }, |
|
57 MENU_ITEM { command=EEikCmdExit; txt="Close"; } |
|
58 }; |
|
59 } |
|
60 |
|
61 RESOURCE MENU_PANE r_tlch_view_menu |
|
62 { |
|
63 items= |
|
64 { |
|
65 MENU_ITEM { command=ETlchAppView; txt="View"; }, |
|
66 MENU_ITEM { command=ETlchDialogView; txt="Dialog"; } |
|
67 }; |
|
68 } |
|
69 |
|
70 |