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 |
RESOURCE CBA r_podcast_search_cba
|
|
57 |
{
|
|
58 |
buttons =
|
|
59 |
{
|
|
60 |
CBA_BUTTON
|
|
61 |
{id=EAknSoftkeyOk; txt = STRING_r_cba_search;},
|
|
62 |
CBA_BUTTON
|
|
63 |
{id=EAknSoftkeyCancel; txt = STRING_r_cba_cancel;}
|
|
64 |
};
|
|
65 |
}
|
|
66 |
RESOURCE DIALOG r_podcast_search_dlg
|
|
67 |
{
|
|
68 |
buttons = r_podcast_search_cba;
|
|
69 |
|
|
70 |
flags = EGeneralQueryFlags;
|
|
71 |
title = STRING_r_search_title;
|
|
72 |
items =
|
|
73 |
{
|
|
74 |
DLG_LINE
|
|
75 |
{
|
|
76 |
type = EAknCtQuery;
|
|
77 |
id = EGeneralQuery;
|
|
78 |
control= AVKON_DATA_QUERY
|
|
79 |
{
|
|
80 |
layout = EDataLayout;
|
|
81 |
control = EDWIN
|
|
82 |
{
|
|
83 |
flags= EEikEdwinNoHorizScrolling | EEikEdwinResizable;
|
|
84 |
maxlength = 256;
|
|
85 |
width = 4;
|
|
86 |
lines = 5;
|
|
87 |
};
|
|
88 |
};
|
|
89 |
}
|
|
90 |
};
|
|
91 |
}
|
|
92 |
|
|
93 |
RESOURCE DIALOG r_waitdlg
|
|
94 |
{
|
|
95 |
flags = EAknWaitNoteFlags;
|
|
96 |
buttons = R_AVKON_SOFTKEYS_CANCEL;
|
|
97 |
items =
|
|
98 |
{
|
|
99 |
DLG_LINE
|
|
100 |
{
|
|
101 |
type = EAknCtNote;
|
|
102 |
id = EWaitDlg;
|
|
103 |
control= AVKON_NOTE
|
|
104 |
{
|
|
105 |
layout = EWaitLayout;
|
|
106 |
flags= EAknWaitNoteFlags;
|
|
107 |
singular_label = STRING_r_searching;
|
|
108 |
imagefile = APPICON;
|
|
109 |
imageid = EMbmPodcastPodcatcher_64px;
|
|
110 |
imagemask = EMbmPodcastPodcatcher_64px_mask;
|
|
111 |
animation = R_QGN_GRAF_WAIT_BAR_ANIM;
|
|
112 |
};
|
|
113 |
}
|
|
114 |
};
|
|
115 |
}
|