application/data/Podcast.rss
changeset 2 29cda98b007e
equal deleted inserted replaced
1:5f8e5adbbed9 2:29cda98b007e
       
     1 /*
       
     2  * Copyright (c) 2007-2010 Sebastian Brannstrom, Lars Persson, EmbedDev AB
       
     3  *
       
     4  * All rights reserved.
       
     5  * This component and the accompanying materials are made available
       
     6  * under the terms of the License "Eclipse Public License v1.0"
       
     7  * which accompanies this distribution, and is available
       
     8  * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     9  *
       
    10  * Initial Contributors:
       
    11  * EmbedDev AB - initial contribution.
       
    12  *
       
    13  * Contributors:
       
    14  *
       
    15  * Description:
       
    16  *
       
    17  */
       
    18 
       
    19 //  RESOURCE IDENTIFIER
       
    20 NAME    PODC // 4 letter ID
       
    21 
       
    22 #include <eikon.hrh>
       
    23 #include <eikon.rh>
       
    24 #include <avkon.rsg>
       
    25 #include <avkon.rh>
       
    26 #include <avkon.mbg>
       
    27 #include <appinfo.rh>
       
    28 #include <podcast.mbg>
       
    29 #include <commondialogs.rh>
       
    30 #include <commondialogs.hrh>
       
    31 
       
    32 #include "Podcast.hrh"
       
    33 #include "languages.rss"
       
    34 
       
    35 #define APPICON "\\resource\\apps\\Podcast.mif"
       
    36 RESOURCE RSS_SIGNATURE { }
       
    37 
       
    38 RESOURCE TBUF { buf = "Podcatcher"; }
       
    39 
       
    40 RESOURCE EIK_APP_INFO
       
    41     {
       
    42     }
       
    43 
       
    44 RESOURCE LOCALISABLE_APP_INFO r_podcast_localisable_app_info
       
    45     {
       
    46     short_caption = STRING_r_short_caption;
       
    47     caption_and_icon = 
       
    48     CAPTION_AND_ICON_INFO
       
    49         {
       
    50         caption = STRING_r_caption;
       
    51         number_of_icons = 1;
       
    52         icon_file = APPICON;
       
    53 	};
       
    54     }
       
    55 
       
    56 RESOURCE DIALOG r_dlg_about
       
    57     {
       
    58     flags = EAknDialogGenericNoteFlags;
       
    59     buttons = R_AVKON_SOFTKEYS_CLOSE;
       
    60     items =
       
    61         {
       
    62         DLG_LINE
       
    63             {
       
    64             type = EAknCtNote;
       
    65             id = EPodcastAboutDlg;
       
    66             control = AVKON_NOTE
       
    67 				{
       
    68 				layout = EGeneralLayout;
       
    69 				singular_label = STRING_r_about_text_s60; 
       
    70 				imagefile = APPICON;
       
    71 				imageid = EMbmPodcastPodcatcher_64px;
       
    72 				imagemask = EMbmPodcastPodcatcher_64px_mask;
       
    73 				};
       
    74 			}
       
    75         };
       
    76     }
       
    77 
       
    78 
       
    79 
       
    80 #include "PodcastStrings.ra"
       
    81 #include "PodcastFeedView.ra"
       
    82 #include "PodcastShowsView.ra"
       
    83 #include "PodcastSettingsView.ra"
       
    84 #include "PodcastSearchView.ra"
       
    85 #include "PodcastQueueView.ra"
       
    86 #include "PodcastDialogs.ra"