20
|
1 |
/*
|
|
2 |
* Copyright (c) 2005-2007 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: Phonebook 2 Commands resources.
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
|
|
19 |
NAME PB2C // Phonebook 2 Commands
|
|
20 |
|
|
21 |
// INCLUDES
|
|
22 |
#include "Pbk2Commands.hrh"
|
|
23 |
#include <eikon.rh>
|
|
24 |
#include <eikon.rsg>
|
|
25 |
#include <avkon.rsg>
|
|
26 |
#include <avkon.rh>
|
|
27 |
#include <avkon.mbg> // Icon in save query
|
|
28 |
#include <avkon.loc>
|
|
29 |
#include <VPbkContactView.rh>
|
|
30 |
#include <VPbkFieldType.rh>
|
|
31 |
#include <AvkonIcons.hrh>
|
|
32 |
#include <Pbk2Icons.hrh>
|
|
33 |
#include <phonebook2.loc>
|
|
34 |
#include <phonebook2ece.loc>
|
|
35 |
|
|
36 |
// --------------------------------------------------------------------------
|
|
37 |
// RSS_SIGNATURE
|
|
38 |
// Standard resource signature
|
|
39 |
// --------------------------------------------------------------------------
|
|
40 |
//
|
|
41 |
RESOURCE RSS_SIGNATURE { }
|
|
42 |
|
|
43 |
// --------------------------------------------------------------------------
|
|
44 |
// DIALOG
|
|
45 |
// General wait note 'processing'
|
|
46 |
// --------------------------------------------------------------------------
|
|
47 |
//
|
|
48 |
RESOURCE DIALOG r_qtn_gen_note_processing
|
|
49 |
{
|
|
50 |
flags = EAknWaitNoteFlags;
|
|
51 |
buttons = R_AVKON_SOFTKEYS_EMPTY;
|
|
52 |
items =
|
|
53 |
{
|
|
54 |
DLG_LINE
|
|
55 |
{
|
|
56 |
type = EAknCtNote;
|
|
57 |
id = EPbk2NoteProcessing;
|
|
58 |
control = AVKON_NOTE
|
|
59 |
{
|
|
60 |
layout = EWaitLayout;
|
|
61 |
animation = R_QGN_GRAF_WAIT_BAR_ANIM;
|
|
62 |
singular_label = qtn_gen_note_processing;
|
|
63 |
};
|
|
64 |
}
|
|
65 |
};
|
|
66 |
}
|
|
67 |
|
|
68 |
// --------------------------------------------------------------------------
|
|
69 |
// DIALOG
|
|
70 |
// General copy progress note
|
|
71 |
// --------------------------------------------------------------------------
|
|
72 |
//
|
|
73 |
RESOURCE DIALOG r_general_copy_progress_note
|
|
74 |
{
|
|
75 |
flags = EAknProgressNoteFlags;
|
|
76 |
buttons = R_AVKON_SOFTKEYS_CANCEL;
|
|
77 |
items =
|
|
78 |
{
|
|
79 |
DLG_LINE
|
|
80 |
{
|
|
81 |
type = EAknCtNote;
|
|
82 |
id = EGeneralQuery;
|
|
83 |
control = AVKON_NOTE
|
|
84 |
{
|
|
85 |
layout = EProgressLayout;
|
|
86 |
singular_label = qtn_gen_note_copying;
|
|
87 |
imagefile = AVKON_ICON_FILE;
|
|
88 |
imageid = EMbmAvkonQgn_note_copy;
|
|
89 |
imagemask = EMbmAvkonQgn_note_copy_mask;
|
|
90 |
};
|
|
91 |
}
|
|
92 |
};
|
|
93 |
}
|
|
94 |
|
|
95 |
// --------------------------------------------------------------------------
|
|
96 |
// DIALOG
|
|
97 |
// Deletion wait note
|
|
98 |
// --------------------------------------------------------------------------
|
|
99 |
//
|
|
100 |
RESOURCE DIALOG r_qtn_phob_note_clearing_pb
|
|
101 |
{
|
|
102 |
flags = EAknProgressNoteFlags;
|
|
103 |
buttons = R_AVKON_SOFTKEYS_EMPTY;
|
|
104 |
items =
|
|
105 |
{
|
|
106 |
DLG_LINE
|
|
107 |
{
|
|
108 |
type = EAknCtNote;
|
|
109 |
id = EPbk2NoteMemoryDeleteInProgress;
|
|
110 |
control = AVKON_NOTE
|
|
111 |
{
|
|
112 |
layout = EProgressLayout;
|
|
113 |
singular_label = qtn_fldr_deleting_wait_note;
|
|
114 |
imagefile = AVKON_ICON_FILE;
|
|
115 |
imageid = qgn_note_erased;
|
|
116 |
imagemask = qgn_note_erased_mask;
|
|
117 |
};
|
|
118 |
}
|
|
119 |
};
|
|
120 |
}
|
|
121 |
|
|
122 |
// --------------------------------------------------------------------------
|
|
123 |
// DIALOG
|
|
124 |
// Deletion wait note with cancel button
|
|
125 |
// --------------------------------------------------------------------------
|
|
126 |
//
|
|
127 |
RESOURCE DIALOG r_qtn_phob_note_clearing_pb_with_cancel
|
|
128 |
{
|
|
129 |
flags = EAknProgressNoteFlags;
|
|
130 |
buttons = R_AVKON_SOFTKEYS_CANCEL;
|
|
131 |
items =
|
|
132 |
{
|
|
133 |
DLG_LINE
|
|
134 |
{
|
|
135 |
type = EAknCtNote;
|
|
136 |
id = EPbk2NoteMemoryDeleteInProgress;
|
|
137 |
control = AVKON_NOTE
|
|
138 |
{
|
|
139 |
layout = EProgressLayout;
|
|
140 |
singular_label = qtn_phob_note_clearing_pb;
|
|
141 |
imagefile = AVKON_ICON_FILE;
|
|
142 |
imageid = qgn_note_erased;
|
|
143 |
imagemask = qgn_note_erased_mask;
|
|
144 |
};
|
|
145 |
}
|
|
146 |
};
|
|
147 |
}
|
|
148 |
|
|
149 |
// --------------------------------------------------------------------------
|
|
150 |
// TBUF
|
|
151 |
// r_qtn_phob_query_title_select_mem
|
|
152 |
// --------------------------------------------------------------------------
|
|
153 |
//
|
|
154 |
RESOURCE TBUF r_qtn_phob_query_title_select_mem
|
|
155 |
{
|
|
156 |
buf = qtn_phob_query_title_select_mem;
|
|
157 |
}
|
|
158 |
|
|
159 |
// --------------------------------------------------------------------------
|
|
160 |
// TBUF
|
|
161 |
// r_qtn_phob_query_select_mem_all
|
|
162 |
// --------------------------------------------------------------------------
|
|
163 |
//
|
|
164 |
RESOURCE TBUF r_qtn_phob_query_select_mem_all
|
|
165 |
{
|
|
166 |
buf = qtn_phob_query_select_mem_all;
|
|
167 |
}
|
|
168 |
|
|
169 |
// --------------------------------------------------------------------------
|
|
170 |
// TBUF
|
|
171 |
// r_qtn_phob_qtl_call_to_name
|
|
172 |
// --------------------------------------------------------------------------
|
|
173 |
//
|
|
174 |
RESOURCE TBUF r_qtn_phob_qtl_call_to_name
|
|
175 |
{
|
|
176 |
buf = qtn_phob_qtl_call_to_name;
|
|
177 |
}
|
|
178 |
|
|
179 |
// --------------------------------------------------------------------------
|
|
180 |
// TBUF
|
|
181 |
// r_pbk2_postcard_write_attachment_tag
|
|
182 |
// Postcard contact link attachment file name
|
|
183 |
// --------------------------------------------------------------------------
|
|
184 |
//
|
|
185 |
RESOURCE TBUF r_pbk2_postcard_write_attachment_tag
|
|
186 |
{
|
|
187 |
buf = "X-Nokia-PhonebookId_temp";
|
|
188 |
}
|
|
189 |
|
|
190 |
// Additional resource files
|
|
191 |
#include "ThumbnailCmds.rss"
|
|
192 |
#include "ImageCmds.rss"
|
|
193 |
#include "SetToneCmd.rss"
|
|
194 |
#include "CopyContactsStarterCmd.rss"
|
|
195 |
#include "CopyContactsCmd.rss"
|
|
196 |
#include "SystemMenu.rss"
|
|
197 |
#include "NamesListView.rss"
|
|
198 |
#include "SettingsView.rss"
|
|
199 |
#include "Pbk2AiwInterest.rss"
|
|
200 |
#include "Pbk2ToolbarResources.rss"
|
|
201 |
#include "CopyToClipboardCmd.rss"
|
|
202 |
#include "ContactInfoView.rss"
|
|
203 |
|
|
204 |
// End of File
|