|
1 /* |
|
2 * Copyright (c) 2003 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: This file contains all the resources for the SVGT Plugin. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 // RESOURCE IDENTIFIER |
|
20 NAME SVGT |
|
21 |
|
22 // INCLUDES |
|
23 #include <eikon.rh> |
|
24 #include "SvgtPlugin.hrh" |
|
25 #include <npSvgtPlugin.loc> |
|
26 |
|
27 RESOURCE RSS_SIGNATURE { } |
|
28 |
|
29 RESOURCE TBUF { buf=""; } |
|
30 |
|
31 RESOURCE EIK_APP_INFO |
|
32 { |
|
33 } |
|
34 |
|
35 RESOURCE MNBUT r_svgtplugin_menu_button |
|
36 { |
|
37 popout = r_svgtplugin_menu_pane; |
|
38 } |
|
39 |
|
40 RESOURCE MENU_PANE r_svgtplugin_menu_pane |
|
41 { |
|
42 items= |
|
43 { |
|
44 MENU_ITEM { command=ESVGTPluginPause; txt=SVGT_ME_MEN001_PAUSE; }, |
|
45 MENU_ITEM { command=ESVGTPluginResume; txt=SVGT_ME_MEN001_RESUME; }, |
|
46 MENU_ITEM { command=ESVGTPluginReset; txt=SVGT_ME_MEN001_RESET; }, |
|
47 MENU_ITEM { command=ESVGTPluginReplay; txt=SVGT_ME_MEN001_REPLAY; }, |
|
48 MENU_ITEM { command=ESVGTPluginZoomSubMenu; txt=SVGT_ME_MEN001_ZOOM; cascade=r_svgtplugin_zoom_cascaded_menu; }, |
|
49 MENU_ITEM { command=ESVGTPluginRotateSubMenu; txt=SVGT_ME_MEN001_ROTATE; cascade=r_svgtplugin_rotate_cascaded_menu;} |
|
50 }; |
|
51 } |
|
52 |
|
53 RESOURCE MENU_PANE r_svgtplugin_zoom_cascaded_menu |
|
54 { |
|
55 items = |
|
56 { |
|
57 MENU_ITEM { command = ESVGTPluginZoomIn; txt = SVGT_ME_MEN001_ZOOM_IN; }, |
|
58 MENU_ITEM { command = ESVGTPluginZoomOut; txt = SVGT_ME_MEN001_ZOOM_OUT; } |
|
59 }; |
|
60 } |
|
61 |
|
62 RESOURCE MENU_PANE r_svgtplugin_rotate_cascaded_menu |
|
63 { |
|
64 items = |
|
65 { |
|
66 MENU_ITEM { command = ESVGTPluginRotate90; txt = SVGT_ME_MEN001_ROTATE_90;}, |
|
67 MENU_ITEM { command = ESVGTPluginRotate180; txt = SVGT_ME_MEN001_ROTATE_180; }, |
|
68 MENU_ITEM { command = ESVGTPluginRotate270; txt = SVGT_ME_MEN001_ROTATE_270; } |
|
69 }; |
|
70 } |
|
71 |
|
72 |
|
73 // End of File |
|
74 |