author | Sebastian Brannstrom <sebastianb@symbian.org> |
Sun, 14 Nov 2010 13:05:37 +0000 | |
branch | RCL_3 |
changeset 367 | 4b75876aa85a |
parent 272 | e6d095ba6756 |
child 368 | b131f7696342 |
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 |
#ifndef PODCAST_HRH |
|
20 |
#define PODCAST_HRH |
|
21 |
||
22 |
enum TPodcastCommandIds |
|
23 |
{ |
|
24 |
EPodcastView = 0x1000, |
|
25 |
EPodcastViewMain, |
|
26 |
EPodcastViewNewShows, |
|
27 |
EPodcastViewDownloadedShows, |
|
28 |
EPodcastViewPendingShows, |
|
29 |
EPodcastViewFeeds, |
|
30 |
EPodcastPlay, |
|
31 |
// Feeds commands |
|
32 |
EPodcastAddFeed, |
|
33 |
EPodcastEditFeed, |
|
34 |
EPodcastDeleteFeed, |
|
35 |
EPodcastDeleteFeedHardware, |
|
36 |
EPodcastDeleteAllPlayed, |
|
37 |
EPodcastUpdateFeed, |
|
38 |
EPodcastUpdateAllFeeds, |
|
39 |
EPodcastCancelUpdateAllFeeds, |
|
40 |
EPodcastImportExportFeeds, |
|
41 |
EPodcastImportFeeds, |
|
42 |
EPodcastExportFeeds, |
|
43 |
// Show commands |
|
44 |
EPodcastDownloadShow, |
|
45 |
EPodcastDeleteShow, |
|
46 |
EPodcastRemoveDownload, |
|
151 | 47 |
EPodcastMoveDownloadUp, |
48 |
EPodcastMoveDownloadDown, |
|
2 | 49 |
EPodcastRemoveAllDownloads, |
50 |
EPodcastSuspendDownloads, |
|
51 |
EPodcastResumeDownloads, |
|
52 |
EPodcastMarkAllPlayed, |
|
53 |
EPodcastMarkAsPlayed, |
|
54 |
EPodcastMarkAsUnplayed, |
|
55 |
EPodcastShowInfo, |
|
367
4b75876aa85a
Added new shows list
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
272
diff
changeset
|
56 |
EPodcastDownloadAll, |
2 | 57 |
// Common commands |
58 |
EPodcastBack, |
|
59 |
EPodcastSettings, |
|
60 |
EPodcastSelectShowDir, |
|
61 |
EPodcastAbout, |
|
62 |
EPodcastHide, |
|
63 |
EPodcastHelp, |
|
64 |
EPodcastSearch, |
|
110
403412eb5292
Added "Reset database" option in settings. Further robustness fixes for Feeds.
teknolog
parents:
2
diff
changeset
|
65 |
EPodcastAddSearchResult, |
272
e6d095ba6756
Icons in tabs
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
151
diff
changeset
|
66 |
EPodcastResetDb, |
e6d095ba6756
Icons in tabs
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
151
diff
changeset
|
67 |
EPodcastTabFeeds, |
367
4b75876aa85a
Added new shows list
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
272
diff
changeset
|
68 |
EPodcastTabQueue, |
4b75876aa85a
Added new shows list
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
272
diff
changeset
|
69 |
EPodcastTabNew |
4b75876aa85a
Added new shows list
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
272
diff
changeset
|
70 |
}; |
2 | 71 |
|
72 |
enum TPodcastControl |
|
73 |
{ |
|
74 |
EPodcastListViewListCtrl= 0x1000, |
|
75 |
EPodcastSettingShowDir, |
|
76 |
EPodcastSettingAutoDownload, |
|
77 |
EPodcastSettingAutoUpdate, |
|
78 |
EPodcastSettingMaxsimdls, |
|
79 |
EPodcastSettingConnection, |
|
80 |
EPodcastSettingIAPList, |
|
81 |
EPodcastAboutDlg, |
|
82 |
EPodcastFeedsToolbarExtension, |
|
83 |
EQueryControl, |
|
84 |
EPodcastShowInfoImage, |
|
85 |
EWaitDlg |
|
86 |
}; |
|
87 |
||
88 |
enum TShowsIconIndex |
|
89 |
{ |
|
120
31d05afa1a52
Added video podcast icons, but they don't work correctly yet.
teknolog
parents:
110
diff
changeset
|
90 |
EShowIcon = 0, |
2 | 91 |
ENewShowIcon, |
92 |
EQuedShowIcon, |
|
93 |
EDownloadingShowIcon, |
|
94 |
EDownloadedShowIcon, |
|
95 |
EDownloadedNewShowIcon, |
|
96 |
EFailedShowIcon, |
|
97 |
ESuspendedShowIcon |
|
98 |
}; |
|
99 |
||
100 |
enum TConnectionSetting { |
|
101 |
EConnectionDefault = 0, |
|
102 |
EConnectionAlwaysAsk = 1, |
|
103 |
EConnectionUseNetwork = 2, |
|
104 |
EConnectionUseIap = 0x7FFF |
|
105 |
}; |
|
106 |
||
107 |
#endif |