author | teknolog |
Wed, 13 Oct 2010 23:58:25 +0100 | |
branch | RCL_3 |
changeset 236 | f952f3a1a786 |
parent 151 | 17da6d3a5a4b |
child 272 | e6d095ba6756 |
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, |
|
56 |
// Common commands |
|
57 |
EPodcastBack, |
|
58 |
EPodcastSettings, |
|
59 |
EPodcastSelectShowDir, |
|
60 |
EPodcastAbout, |
|
61 |
EPodcastHide, |
|
62 |
EPodcastHelp, |
|
63 |
EPodcastSearch, |
|
110
403412eb5292
Added "Reset database" option in settings. Further robustness fixes for Feeds.
teknolog
parents:
2
diff
changeset
|
64 |
EPodcastAddSearchResult, |
403412eb5292
Added "Reset database" option in settings. Further robustness fixes for Feeds.
teknolog
parents:
2
diff
changeset
|
65 |
EPodcastResetDb |
2 | 66 |
}; |
67 |
||
68 |
enum TPodcastControl |
|
69 |
{ |
|
70 |
EPodcastListViewListCtrl= 0x1000, |
|
71 |
EPodcastSettingShowDir, |
|
72 |
EPodcastSettingAutoDownload, |
|
73 |
EPodcastSettingAutoUpdate, |
|
74 |
EPodcastSettingMaxsimdls, |
|
75 |
EPodcastSettingConnection, |
|
76 |
EPodcastSettingIAPList, |
|
77 |
EPodcastAboutDlg, |
|
78 |
EPodcastFeedsToolbarExtension, |
|
79 |
EQueryControl, |
|
80 |
EPodcastShowInfoImage, |
|
81 |
EWaitDlg |
|
82 |
}; |
|
83 |
||
84 |
enum TShowsIconIndex |
|
85 |
{ |
|
120
31d05afa1a52
Added video podcast icons, but they don't work correctly yet.
teknolog
parents:
110
diff
changeset
|
86 |
EShowIcon = 0, |
2 | 87 |
ENewShowIcon, |
88 |
EQuedShowIcon, |
|
89 |
EDownloadingShowIcon, |
|
90 |
EDownloadedShowIcon, |
|
91 |
EDownloadedNewShowIcon, |
|
92 |
EFailedShowIcon, |
|
93 |
ESuspendedShowIcon |
|
94 |
}; |
|
95 |
||
96 |
enum TConnectionSetting { |
|
97 |
EConnectionDefault = 0, |
|
98 |
EConnectionAlwaysAsk = 1, |
|
99 |
EConnectionUseNetwork = 2, |
|
100 |
EConnectionUseIap = 0x7FFF |
|
101 |
}; |
|
102 |
||
103 |
#endif |