1 /* |
|
2 * Copyright (c) 2007-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: Resources for the camera application |
|
15 * |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 NAME SCRF |
|
21 |
|
22 // =========================================================================== |
|
23 // Includes |
|
24 |
|
25 #include <AvkonIcons.hrh> |
|
26 #include <appinfo.rh> |
|
27 #include <avkon.loc> |
|
28 #include <eikon.rh> |
|
29 #include <avkon.rh> // signature |
|
30 #include <avkon.rsg> |
|
31 #include <aknsconstants.hrh> |
|
32 #include <cameraapp.mbg> |
|
33 |
|
34 #include <cam.loc> // qtn_lcam_title_text_photo |
|
35 #include "Cam.hrh" |
|
36 #include "CamSettings.hrh" |
|
37 #include "CamSettingsInternal.hrh" |
|
38 #include "Cam.rh" |
|
39 |
|
40 // =========================================================================== |
|
41 // Resource definitions |
|
42 |
|
43 // --------------------------------------------------------- |
|
44 // |
|
45 // Define the resource file signature |
|
46 // This resource should be empty. |
|
47 // |
|
48 // --------------------------------------------------------- |
|
49 // |
|
50 RESOURCE RSS_SIGNATURE |
|
51 { |
|
52 } |
|
53 |
|
54 // --------------------------------------------------------- |
|
55 // |
|
56 // Default Document Name |
|
57 // |
|
58 // --------------------------------------------------------- |
|
59 // |
|
60 RESOURCE TBUF { buf=qtn_lcam_title_text_photo; } |
|
61 |
|
62 //---------------------------------------------------- |
|
63 // |
|
64 // r_cam_softkeys_options_exit |
|
65 // Softkeys definition which uses ECamCmdInternalExit |
|
66 // instead of EAknSoftkeyExit (as in r_avkon_softkeys_exit) |
|
67 // |
|
68 //---------------------------------------------------- |
|
69 RESOURCE CBA r_cameraapp_softkeys_options_exit |
|
70 { |
|
71 buttons = |
|
72 { |
|
73 CBA_BUTTON { id = EAknSoftkeyOptions; txt = text_softkey_option; }, |
|
74 CBA_BUTTON { id = ECamCmdInternalExit; txt = text_softkey_exit; } |
|
75 }; |
|
76 } |
|
77 |
|
78 RESOURCE EIK_APP_INFO |
|
79 { |
|
80 cba = r_cameraapp_softkeys_options_exit; |
|
81 } |
|
82 |
|
83 //---------------------------------------------------- |
|
84 // |
|
85 // r_cam_localisable_app_info |
|
86 // Localisable app info |
|
87 // |
|
88 //---------------------------------------------------- |
|
89 // |
|
90 RESOURCE LOCALISABLE_APP_INFO r_cam_localisable_app_info |
|
91 { |
|
92 short_caption = qtn_apps_lcam_grid; |
|
93 caption_and_icon = |
|
94 CAPTION_AND_ICON_INFO |
|
95 { |
|
96 caption = qtn_apps_lcam_list; |
|
97 number_of_icons = 1; |
|
98 icon_file = "z:\\resource\\apps\\cameraapp_aif.mif"; |
|
99 }; |
|
100 } |
|
101 |
|
102 // --------------------------------------------------------- |
|
103 // |
|
104 // r_ftu_message_dialog_text |
|
105 // FTU message dialog text |
|
106 // --------------------------------------------------------- |
|
107 // |
|
108 RESOURCE TBUF r_ftu_message_dialog_text { buf=qtn_lcam_location_ftu_text; } |
|
109 |
|
110 // --------------------------------------------------------- |
|
111 // |
|
112 // r_ftu_message_hyperlink_text |
|
113 // FTU message hyperlink text |
|
114 // --------------------------------------------------------- |
|
115 // |
|
116 RESOURCE TBUF r_ftu_message_hyperlink_text{ buf=qtn_lcam_location_ftu; } |
|
117 |
|
118 |
|
119 // --------------------------------------------------------- |
|
120 // |
|
121 // r_ftu_message_dialog |
|
122 // The FTU message dialog resource |
|
123 // --------------------------------------------------------- |
|
124 // |
|
125 RESOURCE DIALOG r_ftu_message_dialog |
|
126 { |
|
127 flags=EEikDialogFlagNoDrag |EEikDialogFlagCbaButtons |EEikDialogFlagWait; |
|
128 buttons = R_AVKON_SOFTKEYS_OK_EMPTY; |
|
129 items = |
|
130 { |
|
131 DLG_LINE |
|
132 { |
|
133 type = EAknCtPopupHeadingPane; |
|
134 id = EAknMessageQueryHeaderId; |
|
135 control = AVKON_HEADING |
|
136 { |
|
137 headinglayout = R_AVKON_LIST_HEADING_PANE_POPUPS; |
|
138 }; |
|
139 }, |
|
140 DLG_LINE |
|
141 { |
|
142 type = EAknCtMessageQuery; |
|
143 id = EAknMessageQueryContentId; |
|
144 control = AVKON_MESSAGE_QUERY |
|
145 { |
|
146 message = ""; |
|
147 }; |
|
148 } |
|
149 }; |
|
150 } |
|
151 // =========================================================================== |
|
152 // end of file |
|