diff -r 5f8e5adbbed9 -r 29cda98b007e application/inc/Podcast.hrh --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/application/inc/Podcast.hrh Thu Feb 25 14:29:19 2010 +0000 @@ -0,0 +1,100 @@ +/* +* Copyright (c) 2007-2010 Sebastian Brannstrom, Lars Persson, EmbedDev AB +* +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of the License "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* EmbedDev AB - initial contribution. +* +* Contributors: +* +* Description: +* +*/ + +#ifndef PODCAST_HRH +#define PODCAST_HRH + +enum TPodcastCommandIds + { + EPodcastView = 0x1000, + EPodcastViewMain, + EPodcastViewNewShows, + EPodcastViewDownloadedShows, + EPodcastViewPendingShows, + EPodcastViewFeeds, + EPodcastPlay, + // Feeds commands + EPodcastAddFeed, + EPodcastEditFeed, + EPodcastDeleteFeed, + EPodcastDeleteFeedHardware, + EPodcastDeleteAllPlayed, + EPodcastUpdateFeed, + EPodcastUpdateAllFeeds, + EPodcastCancelUpdateAllFeeds, + EPodcastImportExportFeeds, + EPodcastImportFeeds, + EPodcastExportFeeds, + // Show commands + EPodcastDownloadShow, + EPodcastDeleteShow, + EPodcastRemoveDownload, + EPodcastRemoveAllDownloads, + EPodcastSuspendDownloads, + EPodcastResumeDownloads, + EPodcastMarkAllPlayed, + EPodcastMarkAsPlayed, + EPodcastMarkAsUnplayed, + EPodcastShowInfo, + // Common commands + EPodcastBack, + EPodcastSettings, + EPodcastSelectShowDir, + EPodcastAbout, + EPodcastHide, + EPodcastHelp, + EPodcastSearch, + EPodcastAddSearchResult +}; + +enum TPodcastControl + { + EPodcastListViewListCtrl= 0x1000, + EPodcastSettingShowDir, + EPodcastSettingAutoDownload, + EPodcastSettingAutoUpdate, + EPodcastSettingMaxsimdls, + EPodcastSettingConnection, + EPodcastSettingIAPList, + EPodcastAboutDlg, + EPodcastFeedsToolbarExtension, + EQueryControl, + EPodcastShowInfoImage, + EWaitDlg + }; + +enum TShowsIconIndex + { + EShowIcon, + ENewShowIcon, + EQuedShowIcon, + EDownloadingShowIcon, + EDownloadedShowIcon, + EDownloadedNewShowIcon, + EFailedShowIcon, + ESuspendedShowIcon + }; + +enum TConnectionSetting { + EConnectionDefault = 0, + EConnectionAlwaysAsk = 1, + EConnectionUseNetwork = 2, + EConnectionUseIap = 0x7FFF +}; + +#endif