application/data/PodcastQueueView.ra
author Sebastian Brannstrom <sebastianb@symbian.org>
Sun, 31 Oct 2010 14:15:37 +0000
branchRCL_3
changeset 321 7a0fb290f9c6
parent 308 1b717a43a7ee
child 368 b131f7696342
permissions -rw-r--r--
Re-enabled max items parsed, because disabling this causes shows to turn up as new multiple times. This again breaks feeds that add new shows at the bottom, so we need to solve this properly.

/*
* 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:
*
*/

RESOURCE AVKON_VIEW r_podcast_queueview
{
	menubar = r_podcast_queueview_menubar;
	cba = r_podcast_cba;
	toolbar = r_queueview_toolbar;
}

RESOURCE MENU_BAR r_podcast_queueview_menubar
    {
    titles =
        {
        MENU_TITLE { menu_pane = r_podcast_queueview_menu; txt = ""; }
        };
    }

RESOURCE MENU_PANE r_podcast_queueview_menu
    {
    items =
        {
 		MENU_ITEM
			{
			command = EPodcastAbout;
			txt = STRING_r_view_about_cmd;
			}, 
		MENU_ITEM
			{
			command = EPodcastHelp;
			txt = STRING_r_view_help;
			},
		MENU_ITEM
			{
			command = EAknSoftkeyExit;
			txt = STRING_r_exit_cmd;
			},
		MENU_ITEM
			{
			txt = STRING_r_view_show_info_cmd;
			command = EPodcastShowInfo;
			flags = EEikMenuItemSpecific;
			},
		MENU_ITEM
			{
			txt = STRING_r_view_remove_download_short_cmd;
			command = EPodcastRemoveDownload;
			flags = EEikMenuItemSpecific;
			},
		MENU_ITEM
			{
			txt = STRING_r_view_move_up_short_cmd;
			command = EPodcastMoveDownloadUp;
			flags = EEikMenuItemSpecific;
			},
		MENU_ITEM
			{
			txt = STRING_r_view_move_down_short_cmd;
			command = EPodcastMoveDownloadDown;
			flags = EEikMenuItemSpecific;
			}
        };
    }

RESOURCE AVKON_TOOLBAR r_queueview_toolbar
    {
    flags = KAknToolbarFixed;
    items =
        {

		TBAR_CTRL
			{
			type = EAknCtButton;
			id =EPodcastSuspendDownloads;
			control = AVKON_BUTTON
				{
				states =
					{
					AVKON_BUTTON_STATE
						{
						bmpfile = APPICON;
						bmpid = EMbmPodcastDwn_pause;
						bmpmask = EMbmPodcastDwn_pause_mask;
						//txt = STRING_r_suspend_download_cmd;
						helptxt = STRING_r_view_stop_downloads_cmd;
						}  
					};
				};
			},
		TBAR_CTRL
			{
			type = EAknCtButton;
			id =EPodcastResumeDownloads;
			control = AVKON_BUTTON
				{
				states =
					{
					AVKON_BUTTON_STATE
						{
						bmpfile = APPICON;
						bmpid = EMbmPodcastDwn_start;
						bmpmask = EMbmPodcastDwn_start_mask;
						//txt = STRING_r_view_resume_short_dls_cmd;
						helptxt = STRING_r_view_resume_downloads_cmd;
						}  
					};
				};
			},
		TBAR_CTRL
			{
			type = EAknCtButton;
			id =EPodcastRemoveAllDownloads;
			control = AVKON_BUTTON
				{
				states =
					{
					AVKON_BUTTON_STATE
						{
						bmpfile = APPICON;
						bmpid = EMbmPodcastRemove_all;
						bmpmask = EMbmPodcastRemove_all_mask;
						//txt = STRING_r_view_remove_all_downloads_cmd_short;
						helptxt = STRING_r_view_remove_all_downloads_cmd;
						}  
					};
				};
			}
        };
    }