|
1 /* |
|
2 * Copyright (c) 2009 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 defines UITestServerStarter resources. |
|
15 * |
|
16 */ |
|
17 |
|
18 // RESOURCE IDENTIFIER |
|
19 NAME UITE // 4 letter ID |
|
20 |
|
21 |
|
22 // INCLUDES |
|
23 #include <eikon.rh> |
|
24 #include <avkon.rsg> |
|
25 #include <avkon.rh> |
|
26 #include <appinfo.rh> |
|
27 #include "UITestServerStarter.hrh" |
|
28 #include "UITestServerStarter.rls" |
|
29 |
|
30 // RESOURCE DEFINITIONS |
|
31 // ----------------------------------------------------------------------------- |
|
32 // |
|
33 // Define the resource file signature |
|
34 // This resource should be empty. |
|
35 // |
|
36 // ----------------------------------------------------------------------------- |
|
37 // |
|
38 RESOURCE RSS_SIGNATURE |
|
39 { |
|
40 } |
|
41 |
|
42 // ----------------------------------------------------------------------------- |
|
43 // |
|
44 // Default Document Name |
|
45 // |
|
46 // ----------------------------------------------------------------------------- |
|
47 // |
|
48 RESOURCE TBUF r_default_document_name |
|
49 { |
|
50 buf="UITE"; |
|
51 } |
|
52 |
|
53 // ----------------------------------------------------------------------------- |
|
54 // |
|
55 // Define default menu and CBA key. |
|
56 // |
|
57 // ----------------------------------------------------------------------------- |
|
58 // |
|
59 RESOURCE EIK_APP_INFO |
|
60 { |
|
61 //menubar = r_menubar; |
|
62 cba = R_AVKON_SOFTKEYS_EXIT; |
|
63 } |
|
64 |
|
65 |
|
66 // ----------------------------------------------------------------------------- |
|
67 // |
|
68 // r_menubar |
|
69 // Main menubar |
|
70 // |
|
71 // ----------------------------------------------------------------------------- |
|
72 // |
|
73 RESOURCE MENU_BAR r_menubar |
|
74 { |
|
75 titles = |
|
76 { |
|
77 MENU_TITLE { menu_pane = r_menu; } |
|
78 }; |
|
79 } |
|
80 |
|
81 |
|
82 // ----------------------------------------------------------------------------- |
|
83 // |
|
84 // r_menu |
|
85 // Menu for "Options" |
|
86 // |
|
87 // ----------------------------------------------------------------------------- |
|
88 // |
|
89 RESOURCE MENU_PANE r_menu |
|
90 { |
|
91 items = |
|
92 { |
|
93 MENU_ITEM |
|
94 { |
|
95 command = EAknSoftkeyExit; |
|
96 txt = qtn_exit; |
|
97 } |
|
98 }; |
|
99 } |
|
100 |
|
101 // ----------------------------------------------------------------------------- |
|
102 // |
|
103 // About dialog resource. |
|
104 // |
|
105 // ----------------------------------------------------------------------------- |
|
106 // |
|
107 // None |
|
108 |
|
109 // ----------------------------------------------------------------------------- |
|
110 // |
|
111 // Resources for messages. |
|
112 // |
|
113 // ----------------------------------------------------------------------------- |
|
114 // |
|
115 RESOURCE TBUF32 r_caption_string { buf=qtn_caption_string; } |
|
116 |
|
117 // ---------------------------------------------------------------------------- |
|
118 // |
|
119 // r_localisable_app_info |
|
120 // |
|
121 // ---------------------------------------------------------------------------- |
|
122 // |
|
123 RESOURCE LOCALISABLE_APP_INFO r_localisable_app_info |
|
124 { |
|
125 short_caption = qtn_caption_string; |
|
126 caption_and_icon = |
|
127 CAPTION_AND_ICON_INFO |
|
128 { |
|
129 caption = qtn_caption_string; |
|
130 |
|
131 number_of_icons = 1; |
|
132 icon_file = "\\resource\\apps\\UITestServerStarter.mif"; |
|
133 }; |
|
134 } |
|
135 |
|
136 // End of File |