application/data/PodcastShowsView.ra
author Sebastian Brannstrom <sebastianb@symbian.org>
Sat, 13 Nov 2010 22:05:25 +0000
branchnewlist
changeset 347 b8d687bb7ca1
parent 261 55305e953f12
child 349 4538abb763e4
permissions -rw-r--r--
Experimenting with adding a new view to list all new shows
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 = EPodcastMarkAllPlayed;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    41
			txt = STRING_r_view_mark_all_played_cmd;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    42
			},
164
000f9fc147b2 Catch up with default branch; New v 27 SIS
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 130
diff changeset
    43
//		MENU_ITEM
000f9fc147b2 Catch up with default branch; New v 27 SIS
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 130
diff changeset
    44
//			{
000f9fc147b2 Catch up with default branch; New v 27 SIS
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 130
diff changeset
    45
//			command = EPodcastFilterShows;
000f9fc147b2 Catch up with default branch; New v 27 SIS
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 130
diff changeset
    46
//			txt = STRING_r_view_filter_shows_cmd;
000f9fc147b2 Catch up with default branch; New v 27 SIS
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 130
diff changeset
    47
//			cascade = r_filtershows_menu;
000f9fc147b2 Catch up with default branch; New v 27 SIS
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 130
diff changeset
    48
//			},
130
92572a695a1d Added new experimental feature to show only new and downloaded shows; Updated SIS files
teknolog
parents: 70
diff changeset
    49
		MENU_ITEM
92572a695a1d Added new experimental feature to show only new and downloaded shows; Updated SIS files
teknolog
parents: 70
diff changeset
    50
			{
2
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    51
			command = EPodcastAbout;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    52
			txt = STRING_r_view_about_cmd;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    53
			}, 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    54
		MENU_ITEM
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    55
			{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    56
			command = EPodcastHelp;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    57
			txt = STRING_r_view_help;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    58
			},
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    59
		MENU_ITEM
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    60
			{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    61
			command = EAknSoftkeyExit;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    62
			txt = STRING_r_exit_cmd;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    63
			}
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    64
        };
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    65
    }
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    66
130
92572a695a1d Added new experimental feature to show only new and downloaded shows; Updated SIS files
teknolog
parents: 70
diff changeset
    67
RESOURCE MENU_PANE r_filtershows_menu
92572a695a1d Added new experimental feature to show only new and downloaded shows; Updated SIS files
teknolog
parents: 70
diff changeset
    68
	{
92572a695a1d Added new experimental feature to show only new and downloaded shows; Updated SIS files
teknolog
parents: 70
diff changeset
    69
	items =	{
92572a695a1d Added new experimental feature to show only new and downloaded shows; Updated SIS files
teknolog
parents: 70
diff changeset
    70
		MENU_ITEM
92572a695a1d Added new experimental feature to show only new and downloaded shows; Updated SIS files
teknolog
parents: 70
diff changeset
    71
			{
92572a695a1d Added new experimental feature to show only new and downloaded shows; Updated SIS files
teknolog
parents: 70
diff changeset
    72
			command = EPodcastFilterShowsAll;
92572a695a1d Added new experimental feature to show only new and downloaded shows; Updated SIS files
teknolog
parents: 70
diff changeset
    73
			txt = STRING_r_view_filter_all_shows_cmd;
92572a695a1d Added new experimental feature to show only new and downloaded shows; Updated SIS files
teknolog
parents: 70
diff changeset
    74
			},
92572a695a1d Added new experimental feature to show only new and downloaded shows; Updated SIS files
teknolog
parents: 70
diff changeset
    75
/*		MENU_ITEM
92572a695a1d Added new experimental feature to show only new and downloaded shows; Updated SIS files
teknolog
parents: 70
diff changeset
    76
			{
92572a695a1d Added new experimental feature to show only new and downloaded shows; Updated SIS files
teknolog
parents: 70
diff changeset
    77
			command = EPodcastFilterShowsNew;
92572a695a1d Added new experimental feature to show only new and downloaded shows; Updated SIS files
teknolog
parents: 70
diff changeset
    78
			txt = STRING_r_view_filter_new_shows_cmd;
92572a695a1d Added new experimental feature to show only new and downloaded shows; Updated SIS files
teknolog
parents: 70
diff changeset
    79
			},
92572a695a1d Added new experimental feature to show only new and downloaded shows; Updated SIS files
teknolog
parents: 70
diff changeset
    80
		MENU_ITEM
92572a695a1d Added new experimental feature to show only new and downloaded shows; Updated SIS files
teknolog
parents: 70
diff changeset
    81
			{
92572a695a1d Added new experimental feature to show only new and downloaded shows; Updated SIS files
teknolog
parents: 70
diff changeset
    82
			command = EPodcastFilterShowsDownloaded;
92572a695a1d Added new experimental feature to show only new and downloaded shows; Updated SIS files
teknolog
parents: 70
diff changeset
    83
			txt = STRING_r_view_filter_downloaded_shows_cmd;
92572a695a1d Added new experimental feature to show only new and downloaded shows; Updated SIS files
teknolog
parents: 70
diff changeset
    84
			},*/
92572a695a1d Added new experimental feature to show only new and downloaded shows; Updated SIS files
teknolog
parents: 70
diff changeset
    85
		MENU_ITEM
92572a695a1d Added new experimental feature to show only new and downloaded shows; Updated SIS files
teknolog
parents: 70
diff changeset
    86
			{
92572a695a1d Added new experimental feature to show only new and downloaded shows; Updated SIS files
teknolog
parents: 70
diff changeset
    87
			command = EPodcastFilterShowsNewAndDownloaded;
92572a695a1d Added new experimental feature to show only new and downloaded shows; Updated SIS files
teknolog
parents: 70
diff changeset
    88
			txt = STRING_r_view_filter_downloaded_new_shows_cmd;
92572a695a1d Added new experimental feature to show only new and downloaded shows; Updated SIS files
teknolog
parents: 70
diff changeset
    89
			}
92572a695a1d Added new experimental feature to show only new and downloaded shows; Updated SIS files
teknolog
parents: 70
diff changeset
    90
	};	
92572a695a1d Added new experimental feature to show only new and downloaded shows; Updated SIS files
teknolog
parents: 70
diff changeset
    91
	}
92572a695a1d Added new experimental feature to show only new and downloaded shows; Updated SIS files
teknolog
parents: 70
diff changeset
    92
2
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    93
RESOURCE AVKON_TOOLBAR r_showsview_toolbar
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    94
    {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    95
    flags = KAknToolbarFixed;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    96
    items =
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    97
        {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    98
        TBAR_CTRL
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    99
            {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   100
            type = EAknCtButton;
347
b8d687bb7ca1 Experimenting with adding a new view to list all new shows
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 261
diff changeset
   101
            id = EPodcastUpdateAllFeeds;
b8d687bb7ca1 Experimenting with adding a new view to list all new shows
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 261
diff changeset
   102
            control = AVKON_BUTTON
b8d687bb7ca1 Experimenting with adding a new view to list all new shows
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 261
diff changeset
   103
                {
b8d687bb7ca1 Experimenting with adding a new view to list all new shows
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 261
diff changeset
   104
                states =
b8d687bb7ca1 Experimenting with adding a new view to list all new shows
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 261
diff changeset
   105
                    {
b8d687bb7ca1 Experimenting with adding a new view to list all new shows
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 261
diff changeset
   106
                    AVKON_BUTTON_STATE
b8d687bb7ca1 Experimenting with adding a new view to list all new shows
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 261
diff changeset
   107
                        {
b8d687bb7ca1 Experimenting with adding a new view to list all new shows
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 261
diff changeset
   108
                        bmpfile = APPICON;
b8d687bb7ca1 Experimenting with adding a new view to list all new shows
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 261
diff changeset
   109
                        bmpid = EMbmPodcastReload_all;
b8d687bb7ca1 Experimenting with adding a new view to list all new shows
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 261
diff changeset
   110
                        bmpmask = EMbmPodcastReload_all_mask;
b8d687bb7ca1 Experimenting with adding a new view to list all new shows
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 261
diff changeset
   111
                        //txt = STRING_r_update_feed_short_cmd;
b8d687bb7ca1 Experimenting with adding a new view to list all new shows
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 261
diff changeset
   112
                        helptxt = STRING_r_update_all_feeds_cmd;
b8d687bb7ca1 Experimenting with adding a new view to list all new shows
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 261
diff changeset
   113
                        }  
b8d687bb7ca1 Experimenting with adding a new view to list all new shows
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 261
diff changeset
   114
                    };
b8d687bb7ca1 Experimenting with adding a new view to list all new shows
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 261
diff changeset
   115
                };
b8d687bb7ca1 Experimenting with adding a new view to list all new shows
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 261
diff changeset
   116
            },
b8d687bb7ca1 Experimenting with adding a new view to list all new shows
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 261
diff changeset
   117
        TBAR_CTRL
b8d687bb7ca1 Experimenting with adding a new view to list all new shows
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 261
diff changeset
   118
            {
b8d687bb7ca1 Experimenting with adding a new view to list all new shows
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 261
diff changeset
   119
            type = EAknCtButton;
2
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   120
            id = EPodcastUpdateFeed;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   121
            control = AVKON_BUTTON
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   122
                {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   123
                states =
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   124
                    {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   125
                    AVKON_BUTTON_STATE
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   126
                        {
261
55305e953f12 Bug 3367 - new icons!
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 164
diff changeset
   127
                        bmpfile = APPICON;
55305e953f12 Bug 3367 - new icons!
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 164
diff changeset
   128
                        bmpid = EMbmPodcastReload;
55305e953f12 Bug 3367 - new icons!
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 164
diff changeset
   129
                        bmpmask = EMbmPodcastReload_mask;
55305e953f12 Bug 3367 - new icons!
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 164
diff changeset
   130
                        //txt = STRING_r_update_feed_short_cmd;
2
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   131
                        helptxt = STRING_r_update_feed_cmd;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   132
                        }  
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   133
                    };
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
            },
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   136
            TBAR_CTRL
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   137
                {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   138
                type = EAknCtButton;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   139
                id = EPodcastCancelUpdateAllFeeds;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   140
                control = AVKON_BUTTON
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   141
                    {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   142
                    states =
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   143
                        {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   144
                        AVKON_BUTTON_STATE
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   145
                            {
261
55305e953f12 Bug 3367 - new icons!
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 164
diff changeset
   146
                            bmpfile = APPICON;
55305e953f12 Bug 3367 - new icons!
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 164
diff changeset
   147
                            bmpid = EMbmPodcastCancel;
55305e953f12 Bug 3367 - new icons!
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 164
diff changeset
   148
                            bmpmask = EMbmPodcastCancel_mask;
55305e953f12 Bug 3367 - new icons!
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 164
diff changeset
   149
                            //txt = STRING_r_cancel_update_all_feeds_short_cmd;
2
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   150
                            helptxt = STRING_r_cancel_update_all_feeds_cmd;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   151
                           }  
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   152
                        };
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   153
                    };
54
21ffe6559297 Fix for middle toolbar button being drawn in single tap mode when there is only 1 button
teknolog
parents: 29
diff changeset
   154
                },
21ffe6559297 Fix for middle toolbar button being drawn in single tap mode when there is only 1 button
teknolog
parents: 29
diff changeset
   155
// we keep the download toolbar button in S^3, but always disable it
21ffe6559297 Fix for middle toolbar button being drawn in single tap mode when there is only 1 button
teknolog
parents: 29
diff changeset
   156
// because there are drawing issues with only one item in the toolbar
21ffe6559297 Fix for middle toolbar button being drawn in single tap mode when there is only 1 button
teknolog
parents: 29
diff changeset
   157
            TBAR_CTRL
2
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   158
			{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   159
			type = EAknCtButton;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   160
			id = EPodcastDownloadShow;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   161
			control = AVKON_BUTTON
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   162
				{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   163
				states =
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   164
					{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   165
					AVKON_BUTTON_STATE
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   166
						{
261
55305e953f12 Bug 3367 - new icons!
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 164
diff changeset
   167
						bmpfile = APPICON;
55305e953f12 Bug 3367 - new icons!
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 164
diff changeset
   168
						bmpid = EMbmPodcastDownload;
55305e953f12 Bug 3367 - new icons!
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 164
diff changeset
   169
						bmpmask = EMbmPodcastDownload_mask;
55305e953f12 Bug 3367 - new icons!
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 164
diff changeset
   170
						//txt = STRING_r_view_download_show_cmd;
2
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   171
						helptxt = STRING_r_view_download_show_cmd;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   172
						}  
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   173
					};
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   174
				};
54
21ffe6559297 Fix for middle toolbar button being drawn in single tap mode when there is only 1 button
teknolog
parents: 29
diff changeset
   175
			}
21ffe6559297 Fix for middle toolbar button being drawn in single tap mode when there is only 1 button
teknolog
parents: 29
diff changeset
   176
        ,		
2
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   177
		TBAR_CTRL
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   178
			{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   179
			type = EAknCtButton;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   180
			id =EPodcastDeleteShow;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   181
			control = AVKON_BUTTON
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   182
				{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   183
				states =
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   184
					{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   185
					AVKON_BUTTON_STATE
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   186
						{
261
55305e953f12 Bug 3367 - new icons!
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 164
diff changeset
   187
						bmpfile = APPICON;
55305e953f12 Bug 3367 - new icons!
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 164
diff changeset
   188
						bmpid = EMbmPodcastDelete;
55305e953f12 Bug 3367 - new icons!
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 164
diff changeset
   189
						bmpmask = EMbmPodcastDelete_mask;
55305e953f12 Bug 3367 - new icons!
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 164
diff changeset
   190
						//txt = STRING_r_view_delete_show_cmd;
2
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   191
						helptxt = STRING_r_view_delete_show_cmd;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   192
						}  
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
				};
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   195
			},
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   196
		TBAR_CTRL
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   197
			{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   198
			type = EAknCtButton;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   199
			id = EPodcastMarkAsPlayed;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   200
			control = AVKON_BUTTON
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
				states =
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   203
					{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   204
					AVKON_BUTTON_STATE
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   205
						{
261
55305e953f12 Bug 3367 - new icons!
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 164
diff changeset
   206
						bmpfile = APPICON;
55305e953f12 Bug 3367 - new icons!
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 164
diff changeset
   207
						bmpid = EMbmPodcastMarkold;
55305e953f12 Bug 3367 - new icons!
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 164
diff changeset
   208
						bmpmask = EMbmPodcastMarkold_mask;
55305e953f12 Bug 3367 - new icons!
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 164
diff changeset
   209
						//txt = STRING_r_view_mark_as_played_cmd_short;
2
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   210
						helptxt = STRING_r_view_mark_as_played_cmd_short;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   211
						}  
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
			},
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   215
			TBAR_CTRL
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   216
				{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   217
				type = EAknCtButton;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   218
				id =EPodcastMarkAsUnplayed;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   219
				control = AVKON_BUTTON
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
					states =
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
						AVKON_BUTTON_STATE
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   224
							{
261
55305e953f12 Bug 3367 - new icons!
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 164
diff changeset
   225
							bmpfile = APPICON;
55305e953f12 Bug 3367 - new icons!
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 164
diff changeset
   226
							bmpid = EMbmPodcastMarknew;
55305e953f12 Bug 3367 - new icons!
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 164
diff changeset
   227
							bmpmask = EMbmPodcastMarknew_mask;
55305e953f12 Bug 3367 - new icons!
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 164
diff changeset
   228
							//txt = STRING_r_view_mark_as_unplayed_cmd_short;
2
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   229
							helptxt = STRING_r_view_mark_as_unplayed_cmd_short;
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
						};
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   232
					};
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
    }
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   236
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   237
RESOURCE STYLUS_POPUP_MENU r_showview_popup_menu
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   238
	{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   239
		items =
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   240
		{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   241
			STYLUS_POPUP_MENU_ITEM
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   242
				{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   243
					txt = STRING_r_view_show_info_cmd;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   244
					command = EPodcastShowInfo;
29
08733234ccb1 S1 UI should only have Info in popup for show view
teknolog
parents: 24
diff changeset
   245
				}
2
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   246
		};
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   247
	}
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   248
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   249
RESOURCE DIALOG r_show_info_note
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   250
{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   251
   flags = EAknDialogGenericQueryFlags | EEikDialogFlagNoBorder | EEikDialogFlagNoShadow;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   252
   buttons = R_AVKON_SOFTKEYS_OK_EMPTY;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   253
   items=
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   254
   {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   255
  
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   256
      DLG_LINE 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   257
      {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   258
      	 type = EAknCtPopupHeadingPane;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   259
      	 id = EAknMessageQueryHeaderId;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   260
         itemflags = EEikDlgItemNonFocusing;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   261
         control = AVKON_HEADING
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   262
         {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   263
		headinglayout=R_AVKON_LIST_HEADING_PANE_POPUPS;		
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   264
         };
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   265
      },  
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   266
      DLG_LINE
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   267
      {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   268
         type = EAknCtMessageQuery;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   269
         id = EAknMessageQueryContentId;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   270
         control = AVKON_MESSAGE_QUERY
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   271
         {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   272
          
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   273
         };
24
ca50ea154990 Moved search result title to navipane. Fixed but 1832
teknolog
parents: 23
diff changeset
   274
      }
2
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   275
   };
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   276
}
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   277