|
1 /* |
|
2 * Copyright (c) 2004,2005 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: Resource file for SVGT Viewer Applicaton |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 // RESOURCE IDENTIFIER |
|
20 |
|
21 NAME SVGT |
|
22 |
|
23 // INCLUDES |
|
24 |
|
25 #include <eikon.rh> |
|
26 #include <avkon.rh> |
|
27 #include <avkon.rsg> |
|
28 #include <avkon.loc> |
|
29 #include <appinfo.rh> |
|
30 #include "SVGTViewerApp.hrh" |
|
31 #include "SVGTViewerAppDbgFlags.hrh" |
|
32 #include <svgtuicontrol.loc> |
|
33 #include <data_caging_paths_strings.hrh> |
|
34 #include <pathconfiguration.hrh> |
|
35 |
|
36 // --------------------------------------------------------- |
|
37 // |
|
38 // Define the resource file signature |
|
39 // This resource should be empty. |
|
40 // |
|
41 // --------------------------------------------------------- |
|
42 // |
|
43 RESOURCE RSS_SIGNATURE |
|
44 { |
|
45 } |
|
46 |
|
47 // --------------------------------------------------------- |
|
48 // |
|
49 // Default Document Name |
|
50 // |
|
51 // --------------------------------------------------------- |
|
52 // |
|
53 RESOURCE TBUF r_default_document_name |
|
54 { |
|
55 buf=""; |
|
56 } |
|
57 |
|
58 // --------------------------------------------------------- |
|
59 // |
|
60 // Define default menu and CBA key. |
|
61 // |
|
62 // --------------------------------------------------------- |
|
63 // |
|
64 RESOURCE EIK_APP_INFO |
|
65 { |
|
66 menubar = r_svgtviewerapp_menubar; |
|
67 cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT; |
|
68 } |
|
69 |
|
70 |
|
71 // --------------------------------------------------------- |
|
72 // |
|
73 // r_svgtviewerapp_localisable_app_info |
|
74 // Provide Caption and Icon Info for Scalable UI |
|
75 // |
|
76 // --------------------------------------------------------- |
|
77 // |
|
78 RESOURCE LOCALISABLE_APP_INFO r_svgtviewerapp_localisable_app_info |
|
79 { |
|
80 short_caption = qtn_apps_sv_grid; // TODO: Replace String with |
|
81 // L10n caption |
|
82 caption_and_icon = |
|
83 CAPTION_AND_ICON_INFO |
|
84 { |
|
85 caption = qtn_apps_sv_grid; // TODO: Replace String with |
|
86 // L10n caption |
|
87 #ifdef __SCALABLE_ICONS |
|
88 number_of_icons = 1; |
|
89 icon_file = APP_BITMAP_DIR"\\SvgtViewerApp_aif.mif"; |
|
90 #else // __SCALABLE_ICONS |
|
91 number_of_icons = 2; |
|
92 icon_file = APP_BITMAP_DIR"\\SvgtViewerApp_aif.mbm"; |
|
93 #endif // __SCALABLE_ICONS |
|
94 }; |
|
95 } |
|
96 // --------------------------------------------------------- |
|
97 // |
|
98 // r_svgtviewerapp_menubar |
|
99 // Menubar for SVGTViewerApp |
|
100 // |
|
101 // --------------------------------------------------------- |
|
102 // |
|
103 RESOURCE MENU_BAR r_svgtviewerapp_menubar |
|
104 { |
|
105 titles = |
|
106 { |
|
107 MENU_TITLE |
|
108 { |
|
109 menu_pane = r_svgtviewerapp_menu; |
|
110 } |
|
111 }; |
|
112 } |
|
113 |
|
114 |
|
115 // --------------------------------------------------------- |
|
116 // |
|
117 // r_svgtviewerapp_menu |
|
118 // Menu for "Options" |
|
119 // |
|
120 // --------------------------------------------------------- |
|
121 // |
|
122 RESOURCE MENU_PANE r_svgtviewerapp_menu |
|
123 { |
|
124 items = |
|
125 { |
|
126 MENU_ITEM |
|
127 { |
|
128 command = EAknSoftkeyExit; |
|
129 txt = qtn_options_exit; |
|
130 } |
|
131 #ifdef SVGTVIEWERAPP_DBG_OPEN_HARDCODE_FILE |
|
132 , |
|
133 MENU_ITEM |
|
134 { |
|
135 command = ESVGTViewerAppCommand1; |
|
136 txt = "Open"; |
|
137 } |
|
138 #endif |
|
139 }; |
|
140 } |
|
141 |
|
142 // --------------------------------------------------- |
|
143 // |
|
144 // r_svgt_viewer_info_video_call_ongoing |
|
145 // |
|
146 // --------------------------------------------------- |
|
147 // |
|
148 RESOURCE TBUF r_svgt_viewer_info_video_call_ongoing |
|
149 { |
|
150 buf = qtn_svgt_info_video_call_ongoing; |
|
151 } |
|
152 |
|
153 RESOURCE TBUF r_svgt_viewer_phone_memory_images_path |
|
154 { |
|
155 buf = text_phone_memory_root_path; |
|
156 } |
|
157 |
|
158 RESOURCE TBUF r_svgt_viewer_memorycard_images_path |
|
159 { |
|
160 buf = text_memory_card_root_path; |
|
161 } |
|
162 |
|
163 |
|
164 // End of File |