author | Sebastian Brannstrom <sebastianb@symbian.org> |
Mon, 15 Nov 2010 22:54:58 +0000 | |
branch | newlist |
changeset 354 | a2713e6a41a9 |
parent 350 | 9c4fd008e20f |
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 AVKON_VIEW r_podcast_searchview |
|
20 |
{ |
|
21 |
menubar = r_podcast_searchview_menubar; |
|
22 |
cba = R_AVKON_SOFTKEYS_OPTIONS_BACK; |
|
23 |
} |
|
24 |
||
25 |
||
26 |
RESOURCE MENU_BAR r_podcast_searchview_menubar |
|
27 |
{ |
|
28 |
titles = |
|
29 |
{ |
|
30 |
MENU_TITLE { menu_pane = r_podcast_searchview_menu; txt = ""; } |
|
31 |
}; |
|
32 |
} |
|
33 |
||
34 |
RESOURCE MENU_PANE r_podcast_searchview_menu |
|
35 |
{ |
|
36 |
items = |
|
37 |
{ |
|
38 |
MENU_ITEM |
|
39 |
{ |
|
40 |
command = EPodcastAbout; |
|
41 |
txt = STRING_r_view_about_cmd; |
|
42 |
}, |
|
43 |
MENU_ITEM |
|
44 |
{ |
|
45 |
command = EPodcastHelp; |
|
46 |
txt = STRING_r_view_help; |
|
47 |
}, |
|
48 |
MENU_ITEM |
|
49 |
{ |
|
50 |
command = EAknSoftkeyExit; |
|
51 |
txt = STRING_r_exit_cmd; |
|
52 |
} |
|
53 |
}; |
|
54 |
} |
|
55 |
||
56 |
||
57 |
RESOURCE CBA r_podcast_search_cba |
|
58 |
{ |
|
59 |
buttons = |
|
60 |
{ |
|
61 |
CBA_BUTTON |
|
62 |
{id=EAknSoftkeyOk; txt = STRING_r_cba_search;}, |
|
63 |
CBA_BUTTON |
|
64 |
{id=EAknSoftkeyCancel; txt = STRING_r_cba_cancel;} |
|
65 |
}; |
|
66 |
} |
|
336
3d6c1417e8bd
Merged all the later Symbian3 updates into Symbian1 branch; new SIS v. 1.00.32
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
2
diff
changeset
|
67 |
|
2 | 68 |
RESOURCE DIALOG r_podcast_search_dlg |
69 |
{ |
|
70 |
buttons = r_podcast_search_cba; |
|
71 |
||
72 |
flags = EGeneralQueryFlags; |
|
73 |
title = STRING_r_search_title; |
|
74 |
items = |
|
75 |
{ |
|
76 |
DLG_LINE |
|
77 |
{ |
|
78 |
type = EAknCtQuery; |
|
79 |
id = EGeneralQuery; |
|
80 |
control= AVKON_DATA_QUERY |
|
81 |
{ |
|
82 |
layout = EDataLayout; |
|
83 |
control = EDWIN |
|
84 |
{ |
|
85 |
flags= EEikEdwinNoHorizScrolling | EEikEdwinResizable; |
|
86 |
maxlength = 256; |
|
87 |
width = 4; |
|
88 |
lines = 5; |
|
89 |
}; |
|
90 |
}; |
|
91 |
} |
|
92 |
}; |
|
93 |
} |
|
94 |
||
95 |
RESOURCE DIALOG r_waitdlg |
|
96 |
{ |
|
97 |
flags = EAknWaitNoteFlags; |
|
98 |
buttons = R_AVKON_SOFTKEYS_CANCEL; |
|
99 |
items = |
|
100 |
{ |
|
101 |
DLG_LINE |
|
102 |
{ |
|
103 |
type = EAknCtNote; |
|
104 |
id = EWaitDlg; |
|
105 |
control= AVKON_NOTE |
|
106 |
{ |
|
107 |
layout = EWaitLayout; |
|
108 |
flags= EAknWaitNoteFlags; |
|
109 |
singular_label = STRING_r_searching; |
|
110 |
imagefile = APPICON; |
|
350
9c4fd008e20f
Updated icons and other UI fixes
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
336
diff
changeset
|
111 |
imageid = EMbmPodcastAppicon; |
9c4fd008e20f
Updated icons and other UI fixes
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
336
diff
changeset
|
112 |
imagemask = EMbmPodcastAppicon_mask; |
2 | 113 |
animation = R_QGN_GRAF_WAIT_BAR_ANIM; |
114 |
}; |
|
115 |
} |
|
116 |
}; |
|
117 |
} |