inc/NPR.hrh
changeset 0 0049171ecffb
equal deleted inserted replaced
-1:000000000000 0:0049171ecffb
       
     1 /*
       
     2  ============================================================================
       
     3  Name	: NPR.hrh
       
     4  Author	: John Kern
       
     5  
       
     6  Copyright (c) 2009 Symbian Foundation Ltd
       
     7  This component and the accompanying materials are made available
       
     8  under the terms of the License "Eclipse Public License v1.0"
       
     9  which accompanies this distribution, and is available
       
    10  at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
    11 
       
    12  Initial Contributors:
       
    13  - Symbian Foundation Ltd - initial contribution.
       
    14  
       
    15  Contributors:
       
    16  - John Kern
       
    17  - Symsource
       
    18  
       
    19  Description:
       
    20  ============================================================================
       
    21  */
       
    22 
       
    23 #ifndef __NPR_HRH__
       
    24 #define __NPR_HRH__
       
    25 
       
    26 #define _UID3 0xEEB0E481
       
    27 
       
    28 // NPR enumerate AppUi commands code
       
    29 enum TNPRAppUiIds
       
    30 	{
       
    31 	EPlayCmd = 0x6001, // start value must not be 0
       
    32 	EPauseCmd,
       
    33 	ERequestNprCmd, 
       
    34 	EListen,
       
    35 	ESelect,
       
    36 	EShare, 
       
    37 	EHelp, 
       
    38 	EAbout,
       
    39 	ELoadPage
       
    40 	};
       
    41 
       
    42 // NPR enumerate command codes
       
    43 enum TNPRCommands
       
    44 	{
       
    45 	ENewsCmd = 0x0,
       
    46 	EStationsCmd,
       
    47 	EPlayStationStream,
       
    48 	EPlayNewsStream,
       
    49 	EPlaylist,
       
    50 	ESettings
       
    51 	};
       
    52 
       
    53 // NPR enumerate topic codes
       
    54 enum TNPRTopics
       
    55 	{
       
    56 	ENews = 0x0,
       
    57 	EStations,
       
    58 	EPrograms
       
    59 	};
       
    60 
       
    61 // NPR enumerate search codes
       
    62 enum TNPRStationSearch
       
    63 	{
       
    64 	EZipCode = 0x0,
       
    65 	ECurrentLocation,
       
    66 	ECityName,
       
    67 	EShowAll
       
    68 	};
       
    69 
       
    70 // NPR enumerate aknview uid
       
    71 enum TNPRViewUids
       
    72 	{
       
    73 	ENPRListBoxViewId = 0x1,
       
    74 	ENPRStationListBoxViewId,
       
    75 	ENPRSearchStationListBoxViewId,
       
    76 	ENPRStoryListBoxViewId,
       
    77 	ENPRBrowserViewId,
       
    78 	ENPRStoryViewerContainerViewId
       
    79 	};
       
    80 
       
    81 #endif // __NPR_HRH__