author | Sebastian Brannstrom <sebastianb@symbian.org> |
Mon, 26 Jul 2010 17:02:05 +0100 | |
branch | symbian1 |
changeset 209 | 1457ec698c2b |
parent 182 | 828b50176e56 |
child 261 | 55305e953f12 |
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_queueview |
|
20 |
{ |
|
21 |
menubar = r_podcast_queueview_menubar; |
|
22 |
cba = R_AVKON_SOFTKEYS_OPTIONS_BACK; |
|
23 |
toolbar = r_queueview_toolbar; |
|
24 |
} |
|
25 |
||
26 |
RESOURCE MENU_BAR r_podcast_queueview_menubar |
|
27 |
{ |
|
28 |
titles = |
|
29 |
{ |
|
30 |
MENU_TITLE { menu_pane = r_podcast_queueview_menu; txt = ""; } |
|
31 |
}; |
|
32 |
} |
|
33 |
||
34 |
RESOURCE MENU_PANE r_podcast_queueview_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 AVKON_TOOLBAR r_queueview_toolbar |
|
57 |
{ |
|
58 |
flags = KAknToolbarFixed; |
|
59 |
items = |
|
60 |
{ |
|
61 |
||
62 |
TBAR_CTRL |
|
63 |
{ |
|
64 |
type = EAknCtButton; |
|
65 |
id =EPodcastSuspendDownloads; |
|
66 |
control = AVKON_BUTTON |
|
67 |
{ |
|
68 |
states = |
|
69 |
{ |
|
70 |
AVKON_BUTTON_STATE |
|
71 |
{ |
|
72 |
//bmpfile = AVKON_BITMAP_FILE; |
|
73 |
//bmpid = EMbmAvkonQgn_indi_find_goto; |
|
74 |
txt = STRING_r_suspend_download_cmd; |
|
75 |
helptxt = STRING_r_view_stop_downloads_cmd; |
|
76 |
} |
|
77 |
}; |
|
78 |
}; |
|
79 |
}, |
|
80 |
TBAR_CTRL |
|
81 |
{ |
|
82 |
type = EAknCtButton; |
|
83 |
id =EPodcastResumeDownloads; |
|
84 |
control = AVKON_BUTTON |
|
85 |
{ |
|
86 |
states = |
|
87 |
{ |
|
88 |
AVKON_BUTTON_STATE |
|
89 |
{ |
|
90 |
//bmpfile = AVKON_BITMAP_FILE; |
|
91 |
//bmpid = EMbmAvkonQgn_indi_find_goto; |
|
92 |
txt = STRING_r_view_resume_short_dls_cmd; |
|
93 |
helptxt = STRING_r_view_resume_downloads_cmd; |
|
94 |
} |
|
95 |
}; |
|
96 |
}; |
|
97 |
}, |
|
98 |
TBAR_CTRL |
|
99 |
{ |
|
100 |
type = EAknCtButton; |
|
101 |
id = EPodcastRemoveDownload; |
|
102 |
control = AVKON_BUTTON |
|
103 |
{ |
|
104 |
states = |
|
105 |
{ |
|
106 |
AVKON_BUTTON_STATE |
|
107 |
{ |
|
108 |
//bmpfile = AVKON_BITMAP_FILE; |
|
109 |
//bmpid = EMbmAvkonQgn_indi_find_goto; |
|
110 |
txt = STRING_r_view_remove_download_short_cmd; |
|
111 |
helptxt = STRING_r_view_remove_download_cmd; |
|
112 |
} |
|
113 |
}; |
|
114 |
}; |
|
115 |
}, |
|
116 |
TBAR_CTRL |
|
117 |
{ |
|
118 |
type = EAknCtButton; |
|
119 |
id =EPodcastRemoveAllDownloads; |
|
120 |
control = AVKON_BUTTON |
|
121 |
{ |
|
122 |
states = |
|
123 |
{ |
|
124 |
AVKON_BUTTON_STATE |
|
125 |
{ |
|
126 |
//bmpfile = AVKON_BITMAP_FILE; |
|
127 |
//bmpid = EMbmAvkonQgn_indi_find_goto; |
|
128 |
txt = STRING_r_view_remove_all_downloads_cmd_short; |
|
129 |
helptxt = STRING_r_view_remove_all_downloads_cmd; |
|
130 |
} |
|
131 |
}; |
|
132 |
}; |
|
133 |
} |
|
134 |
}; |
|
135 |
} |
|
136 |
||
137 |
RESOURCE STYLUS_POPUP_MENU r_queueview_popup_menu |
|
138 |
{ |
|
139 |
items = |
|
140 |
{ |
|
182
828b50176e56
Removing "Remove" command from popup in queue view. This command exists as a toolbar button.
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
149
diff
changeset
|
141 |
// STYLUS_POPUP_MENU_ITEM |
828b50176e56
Removing "Remove" command from popup in queue view. This command exists as a toolbar button.
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
149
diff
changeset
|
142 |
// { |
828b50176e56
Removing "Remove" command from popup in queue view. This command exists as a toolbar button.
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
149
diff
changeset
|
143 |
// txt = STRING_r_view_remove_download_short_cmd; |
828b50176e56
Removing "Remove" command from popup in queue view. This command exists as a toolbar button.
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
149
diff
changeset
|
144 |
// command = EPodcastRemoveDownload; |
828b50176e56
Removing "Remove" command from popup in queue view. This command exists as a toolbar button.
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
149
diff
changeset
|
145 |
// }, |
145
cc0182a5da39
Fix for Bug 2604 and bulk of the work towards implementing Bug 2737
Brendan Donegan <brendand@symbian.org>
parents:
70
diff
changeset
|
146 |
STYLUS_POPUP_MENU_ITEM |
cc0182a5da39
Fix for Bug 2604 and bulk of the work towards implementing Bug 2737
Brendan Donegan <brendand@symbian.org>
parents:
70
diff
changeset
|
147 |
{ |
cc0182a5da39
Fix for Bug 2604 and bulk of the work towards implementing Bug 2737
Brendan Donegan <brendand@symbian.org>
parents:
70
diff
changeset
|
148 |
txt = STRING_r_view_move_up_short_cmd; |
cc0182a5da39
Fix for Bug 2604 and bulk of the work towards implementing Bug 2737
Brendan Donegan <brendand@symbian.org>
parents:
70
diff
changeset
|
149 |
command = EPodcastMoveDownloadUp; |
cc0182a5da39
Fix for Bug 2604 and bulk of the work towards implementing Bug 2737
Brendan Donegan <brendand@symbian.org>
parents:
70
diff
changeset
|
150 |
}, |
cc0182a5da39
Fix for Bug 2604 and bulk of the work towards implementing Bug 2737
Brendan Donegan <brendand@symbian.org>
parents:
70
diff
changeset
|
151 |
STYLUS_POPUP_MENU_ITEM |
cc0182a5da39
Fix for Bug 2604 and bulk of the work towards implementing Bug 2737
Brendan Donegan <brendand@symbian.org>
parents:
70
diff
changeset
|
152 |
{ |
cc0182a5da39
Fix for Bug 2604 and bulk of the work towards implementing Bug 2737
Brendan Donegan <brendand@symbian.org>
parents:
70
diff
changeset
|
153 |
txt = STRING_r_view_move_down_short_cmd; |
cc0182a5da39
Fix for Bug 2604 and bulk of the work towards implementing Bug 2737
Brendan Donegan <brendand@symbian.org>
parents:
70
diff
changeset
|
154 |
command = EPodcastMoveDownloadDown; |
2 | 155 |
} |
156 |
}; |
|
157 |
} |