author | Sebastian Brannstrom <sebastianb@symbian.org> |
Sat, 10 Jul 2010 13:35:21 +0100 | |
branch | 3rded |
changeset 176 | 1c8b56cb6409 |
parent 60 | 4d230e702aa3 |
child 177 | 269e3f3e544a |
permissions | -rw-r--r-- |
2 | 1 |
/* |
2 |
* Copyright (c) 2007-2010 Sebastian Brannstrom, Lars Persson, EmbedDev AB |
|
3 |
* |
|
4 |
* All rights reserved. |
|
5 |
* This component and the accompanying materials are made available |
|
6 |
* under the terms of the License "Eclipse Public License v1.0" |
|
7 |
* which accompanies this distribution, and is available |
|
8 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
9 |
* |
|
10 |
* Initial Contributors: |
|
11 |
* EmbedDev AB - initial contribution. |
|
12 |
* |
|
13 |
* Contributors: |
|
14 |
* |
|
15 |
* Description: |
|
16 |
* |
|
17 |
*/ |
|
18 |
||
19 |
RESOURCE HOTKEYS r_podcast_feedview_hotkeys |
|
20 |
{ |
|
21 |
control = |
|
22 |
{ |
|
23 |
HOTKEY { command = EAknCmdExit; key='e'; } |
|
24 |
}; |
|
25 |
} |
|
26 |
||
27 |
RESOURCE MENU_BAR r_podcast_feedview_menubar |
|
28 |
{ |
|
29 |
titles = |
|
30 |
{ |
|
31 |
MENU_TITLE { menu_pane = r_podcast_feedview_menu; txt = "Feeds"; } |
|
32 |
}; |
|
33 |
} |
|
34 |
||
35 |
RESOURCE MENU_PANE r_podcast_feedview_menu |
|
36 |
{ |
|
37 |
items = |
|
38 |
{ |
|
39 |
MENU_ITEM |
|
40 |
{ |
|
41 |
command = EPodcastImportExportFeeds; |
|
42 |
txt = STRING_r_view_import_export_feeds_cmd; |
|
43 |
cascade = r_importexport_menu; |
|
44 |
}, |
|
45 |
MENU_ITEM |
|
46 |
{ |
|
47 |
command = EPodcastAbout; |
|
48 |
txt = STRING_r_view_about_cmd; |
|
49 |
}, |
|
50 |
MENU_ITEM |
|
51 |
{ |
|
52 |
command = EPodcastHelp; |
|
53 |
txt = STRING_r_view_help; |
|
54 |
}, |
|
55 |
MENU_ITEM |
|
56 |
{ |
|
57 |
command = EAknSoftkeyExit; |
|
58 |
txt = STRING_r_exit_cmd; |
|
59 |
} |
|
60 |
}; |
|
61 |
} |
|
62 |
||
63 |
RESOURCE MENU_PANE r_importexport_menu |
|
64 |
{ |
|
65 |
items = { |
|
66 |
MENU_ITEM |
|
67 |
{ |
|
68 |
command = EPodcastImportFeeds; |
|
69 |
txt = STRING_r_view_import_feeds_cmd; |
|
70 |
}, |
|
71 |
MENU_ITEM |
|
72 |
{ |
|
73 |
command = EPodcastExportFeeds; |
|
74 |
txt = STRING_r_view_export_feeds_cmd; |
|
75 |
} |
|
76 |
}; |
|
77 |
} |
|
78 |
||
79 |
RESOURCE CBA r_podcast_cba |
|
80 |
{ |
|
81 |
buttons = |
|
82 |
{ |
|
83 |
CBA_BUTTON |
|
84 |
{id=EAknSoftkeyOptions; txt = STRING_r_cba_options;}, |
|
85 |
CBA_BUTTON |
|
86 |
{id=EPodcastHide; txt = STRING_r_cba_hide;} |
|
87 |
}; |
|
88 |
} |
|
89 |
||
90 |
RESOURCE AVKON_VIEW r_podcast_feedview |
|
91 |
{ |
|
92 |
hotkeys = r_podcast_feedview_hotkeys; |
|
93 |
menubar = r_podcast_feedview_menubar; |
|
94 |
cba = r_podcast_cba; |
|
176
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
95 |
// toolbar = r_feedview_toolbar; |
2 | 96 |
} |
97 |
||
176
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
98 |
//RESOURCE AVKON_TOOLBAR r_feedview_toolbar |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
99 |
// { |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
100 |
// flags = KAknToolbarFixed; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
101 |
// items = |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
102 |
// { |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
103 |
// TBAR_CTRL |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
104 |
// { |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
105 |
// type = EAknCtButton; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
106 |
// id = EPodcastUpdateAllFeeds; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
107 |
// control = AVKON_BUTTON |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
108 |
// { |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
109 |
// states = |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
110 |
// { |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
111 |
// AVKON_BUTTON_STATE |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
112 |
// { |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
113 |
// //bmpfile = AVKON_BITMAP_FILE; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
114 |
// //bmpid = EMbmAvkonQgn_indi_find_goto; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
115 |
// txt = STRING_r_update_feed_short_cmd; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
116 |
// helptxt = STRING_r_update_all_feeds_cmd; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
117 |
// } |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
118 |
// }; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
119 |
// }; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
120 |
// }, |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
121 |
// TBAR_CTRL |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
122 |
// { |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
123 |
// type = EAknCtButton; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
124 |
// id = EPodcastCancelUpdateAllFeeds; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
125 |
// control = AVKON_BUTTON |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
126 |
// { |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
127 |
// states = |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
128 |
// { |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
129 |
// AVKON_BUTTON_STATE |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
130 |
// { |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
131 |
// //bmpfile = AVKON_BITMAP_FILE; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
132 |
// //bmpid = EMbmAvkonQgn_indi_find_goto; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
133 |
// txt = STRING_r_cancel_update_all_feeds_short_cmd; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
134 |
// helptxt = STRING_r_cancel_update_all_feeds_cmd; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
135 |
// } |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
136 |
// }; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
137 |
// }; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
138 |
// }, |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
139 |
// TBAR_CTRL |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
140 |
// { |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
141 |
// type = EAknCtButton; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
142 |
// id = EPodcastAddFeed; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
143 |
// control = AVKON_BUTTON |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
144 |
// { |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
145 |
// flags = KAknButtonTextInsideFrame; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
146 |
// states = |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
147 |
// { |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
148 |
// AVKON_BUTTON_STATE |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
149 |
// { |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
150 |
// //bmpfile = AVKON_BITMAP_FILE; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
151 |
// //bmpid = EMbmAvkonQgn_indi_find_goto; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
152 |
// //press_bmpid = EMbmAvkonQgn_indi_find_goto; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
153 |
// txt = STRING_r_view_add_feed_cmd_short; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
154 |
// helptxt = STRING_r_view_add_feed_cmd; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
155 |
// } |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
156 |
// }; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
157 |
// }; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
158 |
// }, |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
159 |
// TBAR_CTRL |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
160 |
// { |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
161 |
// type = EAknCtButton; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
162 |
// id = EPodcastSettings; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
163 |
// control = AVKON_BUTTON |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
164 |
// { |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
165 |
// states = |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
166 |
// { |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
167 |
// AVKON_BUTTON_STATE |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
168 |
// { |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
169 |
// //bmpfile = AVKON_BITMAP_FILE; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
170 |
// //bmpid = EMbmAvkonQgn_indi_find_goto; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
171 |
// //press_bmpid = EMbmAvkonQgn_indi_find_goto; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
172 |
// txt = STRING_r_settings_cmd; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
173 |
// helptxt = STRING_r_settings_cmd; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
174 |
// } |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
175 |
// }; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
176 |
// }; |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
177 |
// } |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
178 |
// };// items |
1c8b56cb6409
Now compiles for 3rd ed, but does not launch due to malloc error in SQLite
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
60
diff
changeset
|
179 |
// } |
2 | 180 |
|
181 |
RESOURCE DIALOG r_podcast_add_feed_dlg |
|
182 |
{ |
|
183 |
buttons = R_AVKON_SOFTKEYS_OK_CANCEL; |
|
184 |
||
185 |
flags = EGeneralQueryFlags; |
|
186 |
title = STRING_r_add_feed_title; |
|
187 |
items = |
|
188 |
{ |
|
189 |
DLG_LINE |
|
190 |
{ |
|
191 |
type = EAknCtQuery; |
|
192 |
id = EGeneralQuery; |
|
193 |
control= AVKON_DATA_QUERY |
|
194 |
{ |
|
195 |
layout = EDataLayout; |
|
196 |
control = EDWIN |
|
197 |
{ |
|
198 |
flags= EEikEdwinNoHorizScrolling | EEikEdwinResizable; // | EEikEdwinNoAutoSelection; |
|
199 |
maxlength = 256; |
|
200 |
width = 4; |
|
201 |
lines = 5; |
|
202 |
}; |
|
203 |
}; |
|
204 |
} |
|
205 |
}; |
|
206 |
} |
|
207 |
||
208 |
RESOURCE DIALOG r_podcast_edit_feed_dlg |
|
209 |
{ |
|
210 |
buttons = R_AVKON_SOFTKEYS_OK_CANCEL; |
|
211 |
||
212 |
flags = EGeneralQueryFlags; |
|
213 |
items = |
|
214 |
{ |
|
215 |
DLG_LINE |
|
216 |
{ |
|
217 |
type = EAknCtMultilineQuery; |
|
218 |
id = EMultilineFirstLine; |
|
219 |
control= AVKON_DATA_QUERY |
|
220 |
{ |
|
221 |
layout = EMultiDataFirstEdwin; |
|
222 |
label = STRING_r_add_feed_title_prompt; |
|
223 |
control = EDWIN |
|
224 |
{ |
|
225 |
flags= EEikEdwinNoHorizScrolling | EEikEdwinResizable; |
|
226 |
maxlength = 256; |
|
227 |
width = 4; |
|
228 |
lines = 5; |
|
229 |
}; |
|
230 |
}; |
|
231 |
}, |
|
232 |
DLG_LINE |
|
233 |
{ |
|
234 |
type = EAknCtMultilineQuery; |
|
235 |
id = EMultilineSecondLine; |
|
236 |
control= AVKON_DATA_QUERY |
|
237 |
{ |
|
238 |
layout = EMultiDataSecondEdwin; |
|
239 |
label = STRING_r_edit_feed_prompt; |
|
240 |
control = EDWIN |
|
241 |
{ |
|
242 |
flags= EEikEdwinNoHorizScrolling | EEikEdwinResizable; |
|
243 |
maxlength = 1024; |
|
244 |
width = 4; |
|
245 |
lines = 5; |
|
246 |
}; |
|
247 |
}; |
|
248 |
} |
|
249 |
}; |
|
250 |
} |
|
251 |
||
252 |
RESOURCE STYLUS_POPUP_MENU r_feedview_popup_menu |
|
253 |
{ |
|
254 |
items = |
|
255 |
{ |
|
256 |
STYLUS_POPUP_MENU_ITEM |
|
257 |
{ |
|
258 |
txt = STRING_r_view_edit_feed_cmd_short; |
|
259 |
command = EPodcastEditFeed; |
|
260 |
}, |
|
261 |
STYLUS_POPUP_MENU_ITEM |
|
262 |
{ |
|
263 |
txt = STRING_r_view_delete_feed_cmd_short; |
|
264 |
command = EPodcastDeleteFeed; |
|
265 |
}, |
|
266 |
STYLUS_POPUP_MENU_ITEM |
|
267 |
{ |
|
268 |
txt = STRING_r_update_feed_short_cmd; |
|
269 |
command = EPodcastUpdateFeed; |
|
270 |
} |
|
271 |
}; |
|
272 |
} |