|
1 /**************************************************************************** |
|
2 ** |
|
3 ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
4 ** All rights reserved. |
|
5 ** Contact: Nokia Corporation (qt-info@nokia.com) |
|
6 ** |
|
7 ** This file is part of the utility applications of the Qt Toolkit. |
|
8 ** |
|
9 ** $QT_BEGIN_LICENSE:LGPL$ |
|
10 ** No Commercial Usage |
|
11 ** This file contains pre-release code and may not be distributed. |
|
12 ** You may use this file in accordance with the terms and conditions |
|
13 ** contained in the Technology Preview License Agreement accompanying |
|
14 ** this package. |
|
15 ** |
|
16 ** GNU Lesser General Public License Usage |
|
17 ** Alternatively, this file may be used under the terms of the GNU Lesser |
|
18 ** General Public License version 2.1 as published by the Free Software |
|
19 ** Foundation and appearing in the file LICENSE.LGPL included in the |
|
20 ** packaging of this file. Please review the following information to |
|
21 ** ensure the GNU Lesser General Public License version 2.1 requirements |
|
22 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. |
|
23 ** |
|
24 ** In addition, as a special exception, Nokia gives you certain additional |
|
25 ** rights. These rights are described in the Nokia Qt LGPL Exception |
|
26 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. |
|
27 ** |
|
28 ** If you have questions regarding the use of this file, please contact |
|
29 ** Nokia at qt-info@nokia.com. |
|
30 ** |
|
31 ** |
|
32 ** |
|
33 ** |
|
34 ** |
|
35 ** |
|
36 ** |
|
37 ** |
|
38 ** $QT_END_LICENSE$ |
|
39 ** |
|
40 ****************************************************************************/ |
|
41 |
|
42 |
|
43 // RESOURCE IDENTIFIER |
|
44 NAME TATR |
|
45 |
|
46 |
|
47 // INCLUDES |
|
48 #include <eikon.rh> |
|
49 #include <avkon.rh> |
|
50 #include <avkon.mbg> |
|
51 #include <avkon.rsg> |
|
52 #include <avkon.hrh> |
|
53 #include <uikon.hrh> |
|
54 #include <avkonIcons.hrh> |
|
55 #include <data_caging_paths_strings.hrh> |
|
56 #include <appinfo.rh> |
|
57 |
|
58 #include "pm_mapper.hrh" |
|
59 |
|
60 |
|
61 // RESOURCE DEFINITIONS |
|
62 |
|
63 // ----------------------------------------------------------------------------- |
|
64 // |
|
65 // RSS_SIGNATURE |
|
66 // |
|
67 // |
|
68 // ----------------------------------------------------------------------------- |
|
69 // |
|
70 RESOURCE RSS_SIGNATURE { } |
|
71 |
|
72 |
|
73 // ----------------------------------------------------------------------------- |
|
74 // |
|
75 // TBUF |
|
76 // |
|
77 // |
|
78 // ----------------------------------------------------------------------------- |
|
79 // |
|
80 RESOURCE TBUF { buf = "pm_mapper"; } |
|
81 |
|
82 |
|
83 // ----------------------------------------------------------------------------- |
|
84 // |
|
85 // EIK_APP_INFO |
|
86 // |
|
87 // |
|
88 // ----------------------------------------------------------------------------- |
|
89 // |
|
90 RESOURCE EIK_APP_INFO |
|
91 { |
|
92 } |
|
93 |
|
94 // ----------------------------------------------------------------------------- |
|
95 // |
|
96 // r_pmmapper_localisable_app_info |
|
97 // Captions for this application. |
|
98 // |
|
99 // ----------------------------------------------------------------------------- |
|
100 // |
|
101 RESOURCE LOCALISABLE_APP_INFO r_pmmapper_localisable_app_info |
|
102 { |
|
103 short_caption = "pm_mapper"; |
|
104 caption_and_icon = |
|
105 CAPTION_AND_ICON_INFO |
|
106 { |
|
107 caption = "PixelMetricsMapper"; |
|
108 }; |
|
109 } |
|
110 |
|
111 // ----------------------------------------------------------------------------- |
|
112 // |
|
113 // r_pmmapper_view |
|
114 // |
|
115 // |
|
116 // ----------------------------------------------------------------------------- |
|
117 // |
|
118 RESOURCE AVKON_VIEW r_pmmapper_view |
|
119 { |
|
120 menubar = r_pmmapper_view_menu; |
|
121 cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT; |
|
122 } |
|
123 |
|
124 |
|
125 // ----------------------------------------------------------------------------- |
|
126 // |
|
127 // r_pmmapper_view_menu |
|
128 // |
|
129 // |
|
130 // ----------------------------------------------------------------------------- |
|
131 // |
|
132 RESOURCE MENU_BAR r_pmmapper_view_menu |
|
133 { |
|
134 titles= |
|
135 { |
|
136 MENU_TITLE { txt = "A"; menu_pane = r_pmmapper_system_menu; } |
|
137 }; |
|
138 } |
|
139 |
|
140 // ----------------------------------------------------------------------------- |
|
141 // |
|
142 // r_pmmapper_system_menu |
|
143 // |
|
144 // |
|
145 // ----------------------------------------------------------------------------- |
|
146 // |
|
147 RESOURCE MENU_PANE r_pmmapper_system_menu |
|
148 { |
|
149 items = |
|
150 { |
|
151 MENU_ITEM { command = ECmdStartCalculations; txt = "Start calculations"; }, |
|
152 MENU_ITEM { command = ECmdSwitchOrientation; txt = "Switch orientation"; }, |
|
153 MENU_ITEM { command = ECmdSwitchMirroring; txt = "Switch mirroring";}, |
|
154 MENU_ITEM { command = ECmdStatus; txt = "Status"; }, |
|
155 MENU_ITEM { command = ECmdSwitchOutput; txt = "Switch output (file/screen)"; }, |
|
156 MENU_ITEM { command = ECmdCreateHeaderFile; txt = "Create header file"; }, |
|
157 MENU_ITEM { command = ECmdSetAutoMode; txt = "Switch autoMode";} |
|
158 }; |
|
159 } |
|
160 |
|
161 |
|
162 // End of File |