application/data/PodcastShowsView.ra
author skip
Thu, 25 Feb 2010 14:29:19 +0000
changeset 2 29cda98b007e
child 23 cf4b850bbffb
permissions -rw-r--r--
Initial import of Podcatcher from the Bergamot project
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
			},
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 = EPodcastAbout;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    46
			txt = STRING_r_view_about_cmd;
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 = EPodcastHelp;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    51
			txt = STRING_r_view_help;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    52
			},
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    53
		MENU_ITEM
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    54
			{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    55
			command = EAknSoftkeyExit;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    56
			txt = STRING_r_exit_cmd;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    57
			}
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
    }
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
RESOURCE AVKON_TOOLBAR r_showsview_toolbar
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    62
    {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    63
    flags = KAknToolbarFixed;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    64
    items =
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
        TBAR_CTRL
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    67
            {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    68
            type = EAknCtButton;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    69
            id = EPodcastUpdateFeed;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    70
            control = AVKON_BUTTON
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    71
                {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    72
                states =
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    73
                    {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    74
                    AVKON_BUTTON_STATE
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    75
                        {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    76
                        //bmpfile = AVKON_BITMAP_FILE;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    77
                        //bmpid = EMbmAvkonQgn_indi_find_goto;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    78
                        txt = STRING_r_update_feed_short_cmd;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    79
                        helptxt = STRING_r_update_feed_cmd;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    80
                        }  
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    81
                    };
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
            TBAR_CTRL
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
                type = EAknCtButton;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    87
                id = EPodcastCancelUpdateAllFeeds;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    88
                control = AVKON_BUTTON
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    89
                    {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    90
                    states =
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    91
                        {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    92
                        AVKON_BUTTON_STATE
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    93
                            {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    94
                            //bmpfile = AVKON_BITMAP_FILE;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    95
                            //bmpid = EMbmAvkonQgn_indi_find_goto;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    96
                            txt = STRING_r_cancel_update_all_feeds_short_cmd;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    97
                            helptxt = STRING_r_cancel_update_all_feeds_cmd;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
    98
                           }  
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
                    };
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   101
                },
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   102
        TBAR_CTRL
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   103
			{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   104
			type = EAknCtButton;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   105
			id = EPodcastDownloadShow;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   106
			control = AVKON_BUTTON
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   107
				{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   108
				states =
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   109
					{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   110
					AVKON_BUTTON_STATE
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   111
						{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   112
						//bmpfile = AVKON_BITMAP_FILE;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   113
						//bmpid = EMbmAvkonQgn_indi_find_goto;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   114
						txt = STRING_r_view_download_show_cmd;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   115
						helptxt = STRING_r_view_download_show_cmd;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   116
						}  
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
				};
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   119
			},		
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   120
		TBAR_CTRL
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   121
			{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   122
			type = EAknCtButton;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   123
			id =EPodcastDeleteShow;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   124
			control = AVKON_BUTTON
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
				states =
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
					AVKON_BUTTON_STATE
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   129
						{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   130
						//bmpfile = AVKON_BITMAP_FILE;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   131
						//bmpid = EMbmAvkonQgn_indi_find_goto;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   132
						txt = STRING_r_view_delete_show_cmd;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   133
						helptxt = STRING_r_view_delete_show_cmd;
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
				};
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
		TBAR_CTRL
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   139
			{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   140
			type = EAknCtButton;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   141
			id = EPodcastMarkAsPlayed;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   142
			control = AVKON_BUTTON
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
				states =
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
					AVKON_BUTTON_STATE
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   147
						{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   148
						//bmpfile = AVKON_BITMAP_FILE;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   149
						//bmpid = EMbmAvkonQgn_indi_find_goto;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   150
						txt = STRING_r_view_mark_as_played_cmd_short;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   151
						helptxt = STRING_r_view_mark_as_played_cmd_short;
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
					};
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   154
				};
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   155
			},
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   156
			TBAR_CTRL
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   157
				{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   158
				type = EAknCtButton;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   159
				id =EPodcastMarkAsUnplayed;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   160
				control = AVKON_BUTTON
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   161
					{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   162
					states =
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   163
						{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   164
						AVKON_BUTTON_STATE
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   165
							{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   166
							//bmpfile = AVKON_BITMAP_FILE;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   167
							//bmpid = EMbmAvkonQgn_indi_find_goto;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   168
							txt = STRING_r_view_mark_as_unplayed_cmd_short;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   169
							helptxt = STRING_r_view_mark_as_unplayed_cmd_short;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   170
							}  
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   171
						};
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
        };
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   175
    }
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   176
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   177
RESOURCE STYLUS_POPUP_MENU r_showview_popup_menu
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
		items =
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   180
		{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   181
/*			STYLUS_POPUP_MENU_ITEM
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
					txt = STRING_r_view_show_play_cmd;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   184
					command = EPodcastPlay; 
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   185
				},*/
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   186
			STYLUS_POPUP_MENU_ITEM
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
					txt = STRING_r_view_show_info_cmd;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   189
					command = EPodcastShowInfo;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   190
				},
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   191
			STYLUS_POPUP_MENU_ITEM
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
					txt = STRING_r_view_mark_as_unplayed_cmd_short;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   194
					command = EPodcastMarkAsUnplayed;
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
			STYLUS_POPUP_MENU_ITEM
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
					txt = STRING_r_view_mark_as_played_cmd_short;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   199
					command = EPodcastMarkAsPlayed;
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
			STYLUS_POPUP_MENU_ITEM
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   202
				{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   203
					txt = STRING_r_view_download_show_cmd;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   204
					command = EPodcastDownloadShow;
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
			STYLUS_POPUP_MENU_ITEM
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   207
				{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   208
					txt = STRING_r_view_delete_show_cmd;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   209
					command = EPodcastDeleteShow;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   210
				}
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
RESOURCE DIALOG r_show_info_note
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
    flags = EEikDialogFlagNoDrag |
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   218
            EEikDialogFlagNoTitleBar |
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   219
            EEikDialogFlagCbaButtons |
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   220
            EEikDialogFlagFillAppClientRect;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   221
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   222
    buttons = R_AVKON_SOFTKEYS_OK_EMPTY ;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   223
    items =
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   224
		{    	
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   225
        DLG_LINE
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   226
            {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   227
            type = EAknCtNote;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   228
            id = EGeneralNote;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   229
            control = AVKON_NOTE
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
                layout = ENotificationWithGraphicsLayout;                                
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
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   238
RESOURCE DIALOG r_show_info_note
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   239
{
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   240
   flags = EAknDialogGenericQueryFlags | EEikDialogFlagNoBorder | EEikDialogFlagNoShadow;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   241
   buttons = R_AVKON_SOFTKEYS_OK_EMPTY;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   242
   items=
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   243
   {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   244
  
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   245
      DLG_LINE 
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
      	 type = EAknCtPopupHeadingPane;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   248
      	 id = EAknMessageQueryHeaderId;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   249
         itemflags = EEikDlgItemNonFocusing;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   250
         control = AVKON_HEADING
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   251
         {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   252
		headinglayout=R_AVKON_LIST_HEADING_PANE_POPUPS;		
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   253
         };
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
      DLG_LINE
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   256
      {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   257
         type = EAknCtMessageQuery;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   258
         id = EAknMessageQueryContentId;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   259
         control = AVKON_MESSAGE_QUERY
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   260
         {
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   261
          
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
      }  ,      
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   264
      DLG_LINE
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
    	  itemflags = EEikDlgItemNonFocusing;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   267
    	  type = EEikCtImage;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   268
    	  id = EPodcastShowInfoImage;
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   269
    	  control = IMAGE
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   270
    		  {
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
    	  }
29cda98b007e Initial import of Podcatcher from the Bergamot project
skip
parents:
diff changeset
   274
   };
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