application/data/PodcastShowsView.ra
author Sebastian Brannstrom <sebastianb@symbian.org>
Sun, 21 Nov 2010 20:11:07 +0000
branchRCL_3
changeset 383 931d0db6374d
parent 376 31968c23152c
permissions -rw-r--r--
Catchup with Symbian1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
     1
/*
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
     2
* Copyright (c) 2007-2010 Sebastian Brannstrom, Lars Persson, EmbedDev AB
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
     3
*
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
     4
* All rights reserved.
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
     5
* This component and the accompanying materials are made available
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
     6
* under the terms of the License "Eclipse Public License v1.0"
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
     7
* which accompanies this distribution, and is available
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
     8
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
     9
*
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    10
* Initial Contributors:
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    11
* EmbedDev AB - initial contribution.
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    12
*
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    13
* Contributors:
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    14
*
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    15
* Description:
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    16
*
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    17
*/
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    18
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    19
RESOURCE AVKON_VIEW r_podcast_showsview
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    20
{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    21
	menubar = r_podcast_showsview_menubar;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    22
	cba = R_AVKON_SOFTKEYS_OPTIONS_BACK;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    23
	toolbar = r_showsview_toolbar;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    24
}
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    25
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    26
RESOURCE MENU_BAR r_podcast_showsview_menubar
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    27
    {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    28
    titles =
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    29
        {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    30
        MENU_TITLE { menu_pane = r_podcast_showsview_menu; txt = "Shows"; }
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    31
        };
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    32
    }
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    33
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    34
RESOURCE MENU_PANE r_podcast_showsview_menu
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    35
    {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    36
    items =
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    37
        {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    38
		MENU_ITEM
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    39
			{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    40
			command = EPodcastAbout;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    41
			txt = STRING_r_view_about_cmd;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    42
			}, 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    43
		MENU_ITEM
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    44
			{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    45
			command = EPodcastHelp;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    46
			txt = STRING_r_view_help;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    47
			},
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    48
		MENU_ITEM
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    49
			{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    50
			command = EAknSoftkeyExit;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    51
			txt = STRING_r_exit_cmd;
243
44d205147a83 Fix for bug 3730 by switching to proper S3 context menu handling
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 126
diff changeset
    52
			},
44d205147a83 Fix for bug 3730 by switching to proper S3 context menu handling
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 126
diff changeset
    53
		MENU_ITEM
44d205147a83 Fix for bug 3730 by switching to proper S3 context menu handling
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 126
diff changeset
    54
			{
44d205147a83 Fix for bug 3730 by switching to proper S3 context menu handling
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 126
diff changeset
    55
			txt = STRING_r_view_show_info_cmd;
44d205147a83 Fix for bug 3730 by switching to proper S3 context menu handling
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 126
diff changeset
    56
			command = EPodcastShowInfo;
44d205147a83 Fix for bug 3730 by switching to proper S3 context menu handling
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 126
diff changeset
    57
			flags = EEikMenuItemSpecific;
44d205147a83 Fix for bug 3730 by switching to proper S3 context menu handling
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 126
diff changeset
    58
			},
44d205147a83 Fix for bug 3730 by switching to proper S3 context menu handling
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 126
diff changeset
    59
		MENU_ITEM
44d205147a83 Fix for bug 3730 by switching to proper S3 context menu handling
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 126
diff changeset
    60
			{
44d205147a83 Fix for bug 3730 by switching to proper S3 context menu handling
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 126
diff changeset
    61
			txt = STRING_r_view_mark_as_unplayed_cmd_short;
44d205147a83 Fix for bug 3730 by switching to proper S3 context menu handling
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 126
diff changeset
    62
			command = EPodcastMarkAsUnplayed;
44d205147a83 Fix for bug 3730 by switching to proper S3 context menu handling
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 126
diff changeset
    63
			flags = EEikMenuItemSpecific;
44d205147a83 Fix for bug 3730 by switching to proper S3 context menu handling
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 126
diff changeset
    64
			},
44d205147a83 Fix for bug 3730 by switching to proper S3 context menu handling
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 126
diff changeset
    65
		MENU_ITEM
44d205147a83 Fix for bug 3730 by switching to proper S3 context menu handling
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 126
diff changeset
    66
			{
44d205147a83 Fix for bug 3730 by switching to proper S3 context menu handling
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 126
diff changeset
    67
			txt = STRING_r_view_mark_as_played_cmd_short;
44d205147a83 Fix for bug 3730 by switching to proper S3 context menu handling
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 126
diff changeset
    68
			command = EPodcastMarkAsPlayed;
44d205147a83 Fix for bug 3730 by switching to proper S3 context menu handling
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 126
diff changeset
    69
			flags = EEikMenuItemSpecific;
44d205147a83 Fix for bug 3730 by switching to proper S3 context menu handling
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 126
diff changeset
    70
			},
44d205147a83 Fix for bug 3730 by switching to proper S3 context menu handling
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 126
diff changeset
    71
		MENU_ITEM
44d205147a83 Fix for bug 3730 by switching to proper S3 context menu handling
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 126
diff changeset
    72
			{
376
31968c23152c Merging fixes from Symbian 1
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 368
diff changeset
    73
			txt = STRING_r_view_download_show_cmd_short;
243
44d205147a83 Fix for bug 3730 by switching to proper S3 context menu handling
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 126
diff changeset
    74
			command = EPodcastDownloadShow;
44d205147a83 Fix for bug 3730 by switching to proper S3 context menu handling
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 126
diff changeset
    75
			flags = EEikMenuItemSpecific;
44d205147a83 Fix for bug 3730 by switching to proper S3 context menu handling
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 126
diff changeset
    76
			},
44d205147a83 Fix for bug 3730 by switching to proper S3 context menu handling
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 126
diff changeset
    77
		MENU_ITEM
44d205147a83 Fix for bug 3730 by switching to proper S3 context menu handling
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 126
diff changeset
    78
			{
376
31968c23152c Merging fixes from Symbian 1
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 368
diff changeset
    79
			txt = STRING_r_view_delete_show_cmd_short;
243
44d205147a83 Fix for bug 3730 by switching to proper S3 context menu handling
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 126
diff changeset
    80
			command = EPodcastDeleteShow;
44d205147a83 Fix for bug 3730 by switching to proper S3 context menu handling
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 126
diff changeset
    81
			flags = EEikMenuItemSpecific;
2
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    82
			}
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    83
        };
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    84
    }
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    85
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    86
RESOURCE AVKON_TOOLBAR r_showsview_toolbar
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    87
    {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    88
    flags = KAknToolbarFixed;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    89
    items =
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    90
        {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    91
        TBAR_CTRL
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    92
            {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    93
            type = EAknCtButton;
367
4b75876aa85a Added new shows list
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 290
diff changeset
    94
            id = EPodcastUpdateAllFeeds;
4b75876aa85a Added new shows list
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 290
diff changeset
    95
            control = AVKON_BUTTON
4b75876aa85a Added new shows list
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 290
diff changeset
    96
                {
4b75876aa85a Added new shows list
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 290
diff changeset
    97
                states =
4b75876aa85a Added new shows list
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 290
diff changeset
    98
                    {
4b75876aa85a Added new shows list
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 290
diff changeset
    99
                    AVKON_BUTTON_STATE
4b75876aa85a Added new shows list
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 290
diff changeset
   100
                        {
4b75876aa85a Added new shows list
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 290
diff changeset
   101
                        bmpfile = APPICON;
368
b131f7696342 Catch up with 5th edition
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 367
diff changeset
   102
                        bmpid = EMbmPodcastUpdate_all;
b131f7696342 Catch up with 5th edition
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 367
diff changeset
   103
                        bmpmask = EMbmPodcastUpdate_all_mask;
367
4b75876aa85a Added new shows list
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 290
diff changeset
   104
                        //txt = STRING_r_update_feed_short_cmd;
4b75876aa85a Added new shows list
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 290
diff changeset
   105
                        helptxt = STRING_r_update_all_feeds_cmd;
4b75876aa85a Added new shows list
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 290
diff changeset
   106
                        }  
4b75876aa85a Added new shows list
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 290
diff changeset
   107
                    };
4b75876aa85a Added new shows list
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 290
diff changeset
   108
                };
4b75876aa85a Added new shows list
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 290
diff changeset
   109
            },
4b75876aa85a Added new shows list
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 290
diff changeset
   110
        TBAR_CTRL
4b75876aa85a Added new shows list
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 290
diff changeset
   111
            {
4b75876aa85a Added new shows list
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 290
diff changeset
   112
            type = EAknCtButton;
2
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   113
            id = EPodcastUpdateFeed;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   114
            control = AVKON_BUTTON
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   115
                {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   116
                states =
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   117
                    {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   118
                    AVKON_BUTTON_STATE
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   119
                        {
264
6dfdf1d9da5c Adding new toolbar icons
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 243
diff changeset
   120
                        bmpfile = APPICON;
368
b131f7696342 Catch up with 5th edition
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 367
diff changeset
   121
                        bmpid = EMbmPodcastUpdate;
b131f7696342 Catch up with 5th edition
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 367
diff changeset
   122
                        bmpmask = EMbmPodcastUpdate_mask;
264
6dfdf1d9da5c Adding new toolbar icons
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 243
diff changeset
   123
                        //txt = STRING_r_update_feed_short_cmd;
2
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   124
                        helptxt = STRING_r_update_feed_cmd;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   125
                        }  
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   126
                    };
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   127
                };
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   128
            },
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   129
            TBAR_CTRL
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   130
                {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   131
                type = EAknCtButton;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   132
                id = EPodcastCancelUpdateAllFeeds;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   133
                control = AVKON_BUTTON
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   134
                    {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   135
                    states =
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   136
                        {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   137
                        AVKON_BUTTON_STATE
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   138
                            {
264
6dfdf1d9da5c Adding new toolbar icons
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 243
diff changeset
   139
                            bmpfile = APPICON;
368
b131f7696342 Catch up with 5th edition
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 367
diff changeset
   140
                            bmpid = EMbmPodcastUpdate_cancel;
b131f7696342 Catch up with 5th edition
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 367
diff changeset
   141
                            bmpmask = EMbmPodcastUpdate_cancel_mask;
264
6dfdf1d9da5c Adding new toolbar icons
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 243
diff changeset
   142
                            //txt = STRING_r_cancel_update_all_feeds_short_cmd;
2
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   143
                            helptxt = STRING_r_cancel_update_all_feeds_cmd;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   144
                           }  
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   145
                        };
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   146
                    };
54
21ffe6559297 Fix for middle toolbar button being drawn in single tap mode when there is only 1 button
teknolog
parents: 29
diff changeset
   147
                },
376
31968c23152c Merging fixes from Symbian 1
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 368
diff changeset
   148
				TBAR_CTRL
31968c23152c Merging fixes from Symbian 1
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 368
diff changeset
   149
					 {
31968c23152c Merging fixes from Symbian 1
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 368
diff changeset
   150
					 type = EAknCtButton;
31968c23152c Merging fixes from Symbian 1
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 368
diff changeset
   151
					 id = EPodcastDownloadAll;
31968c23152c Merging fixes from Symbian 1
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 368
diff changeset
   152
					 control = AVKON_BUTTON
31968c23152c Merging fixes from Symbian 1
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 368
diff changeset
   153
						 {
31968c23152c Merging fixes from Symbian 1
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 368
diff changeset
   154
						 states =
31968c23152c Merging fixes from Symbian 1
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 368
diff changeset
   155
							 {
31968c23152c Merging fixes from Symbian 1
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 368
diff changeset
   156
							 AVKON_BUTTON_STATE
31968c23152c Merging fixes from Symbian 1
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 368
diff changeset
   157
								 {
31968c23152c Merging fixes from Symbian 1
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 368
diff changeset
   158
								 bmpfile = APPICON;
31968c23152c Merging fixes from Symbian 1
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 368
diff changeset
   159
								 bmpid = EMbmPodcastDownload_all;
31968c23152c Merging fixes from Symbian 1
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 368
diff changeset
   160
								 bmpmask = EMbmPodcastDownload_all_mask;
31968c23152c Merging fixes from Symbian 1
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 368
diff changeset
   161
								 //txt = STRING_r_cancel_update_all_feeds_short_cmd;
31968c23152c Merging fixes from Symbian 1
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 368
diff changeset
   162
								 helptxt = STRING_r_download_all_shows;
31968c23152c Merging fixes from Symbian 1
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 368
diff changeset
   163
								}  
31968c23152c Merging fixes from Symbian 1
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 368
diff changeset
   164
							 };
31968c23152c Merging fixes from Symbian 1
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 368
diff changeset
   165
						 };
31968c23152c Merging fixes from Symbian 1
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 368
diff changeset
   166
					 },
290
0d5e69a7cda9 Added Mark all played button in show view
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 264
diff changeset
   167
                TBAR_CTRL
0d5e69a7cda9 Added Mark all played button in show view
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 264
diff changeset
   168
                    {
0d5e69a7cda9 Added Mark all played button in show view
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 264
diff changeset
   169
                    type = EAknCtButton;
0d5e69a7cda9 Added Mark all played button in show view
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 264
diff changeset
   170
                    id = EPodcastMarkAllPlayed;
0d5e69a7cda9 Added Mark all played button in show view
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 264
diff changeset
   171
                    control = AVKON_BUTTON
0d5e69a7cda9 Added Mark all played button in show view
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 264
diff changeset
   172
                        {
0d5e69a7cda9 Added Mark all played button in show view
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 264
diff changeset
   173
                        states =
0d5e69a7cda9 Added Mark all played button in show view
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 264
diff changeset
   174
                            {
0d5e69a7cda9 Added Mark all played button in show view
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 264
diff changeset
   175
                            AVKON_BUTTON_STATE
0d5e69a7cda9 Added Mark all played button in show view
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 264
diff changeset
   176
                                {
0d5e69a7cda9 Added Mark all played button in show view
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 264
diff changeset
   177
                                bmpfile = APPICON;
368
b131f7696342 Catch up with 5th edition
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 367
diff changeset
   178
                                bmpid = EMbmPodcastMark_old_all;
b131f7696342 Catch up with 5th edition
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 367
diff changeset
   179
                                bmpmask = EMbmPodcastMark_old_all_mask;
290
0d5e69a7cda9 Added Mark all played button in show view
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 264
diff changeset
   180
                                //txt = STRING_r_cancel_update_all_feeds_short_cmd;
0d5e69a7cda9 Added Mark all played button in show view
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 264
diff changeset
   181
                                helptxt = STRING_r_view_mark_all_played_cmd;
0d5e69a7cda9 Added Mark all played button in show view
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 264
diff changeset
   182
                               }  
0d5e69a7cda9 Added Mark all played button in show view
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 264
diff changeset
   183
                            };
0d5e69a7cda9 Added Mark all played button in show view
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 264
diff changeset
   184
                        };
0d5e69a7cda9 Added Mark all played button in show view
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 264
diff changeset
   185
                    },
54
21ffe6559297 Fix for middle toolbar button being drawn in single tap mode when there is only 1 button
teknolog
parents: 29
diff changeset
   186
            TBAR_CTRL
2
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   187
			{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   188
			type = EAknCtButton;
383
931d0db6374d Catchup with Symbian1
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 376
diff changeset
   189
			id = EPodcastEmpty;
2
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   190
			control = AVKON_BUTTON
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   191
				{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   192
				states =
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   193
					{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   194
					AVKON_BUTTON_STATE
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   195
						{
264
6dfdf1d9da5c Adding new toolbar icons
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 243
diff changeset
   196
						bmpfile = APPICON;
383
931d0db6374d Catchup with Symbian1
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 376
diff changeset
   197
						bmpid = EMbmPodcastEmpty;
931d0db6374d Catchup with Symbian1
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 376
diff changeset
   198
						bmpmask = EMbmPodcastEmpty_mask;
931d0db6374d Catchup with Symbian1
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 376
diff changeset
   199
						helptxt = "";
2
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   200
						}  
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   201
					};
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   202
				};
54
21ffe6559297 Fix for middle toolbar button being drawn in single tap mode when there is only 1 button
teknolog
parents: 29
diff changeset
   203
			}
2
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   204
        };
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   205
    }
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   206
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   207
RESOURCE DIALOG r_show_info_note
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   208
{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   209
   flags = EAknDialogGenericQueryFlags | EEikDialogFlagNoBorder | EEikDialogFlagNoShadow;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   210
   buttons = R_AVKON_SOFTKEYS_OK_EMPTY;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   211
   items=
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   212
   {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   213
  
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   214
      DLG_LINE 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   215
      {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   216
      	 type = EAknCtPopupHeadingPane;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   217
      	 id = EAknMessageQueryHeaderId;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   218
         itemflags = EEikDlgItemNonFocusing;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   219
         control = AVKON_HEADING
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   220
         {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   221
		headinglayout=R_AVKON_LIST_HEADING_PANE_POPUPS;		
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   222
         };
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   223
      },  
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   224
      DLG_LINE
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   225
      {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   226
         type = EAknCtMessageQuery;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   227
         id = EAknMessageQueryContentId;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   228
         control = AVKON_MESSAGE_QUERY
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   229
         {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   230
          
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   231
         };
24
ca50ea154990 Moved search result title to navipane. Fixed but 1832
teknolog
parents: 23
diff changeset
   232
      }
2
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   233
   };
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   234
}
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   235