musicplayer_plat/mpx_music_player_app_api/inc/mpxinternalcrkeys.h
changeset 0 ff3acec5bc43
child 9 13afc0e517bd
equal deleted inserted replaced
-1:000000000000 0:ff3acec5bc43
       
     1 /*
       
     2 * Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  MPX internal CenRep keys.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef MPXINTERNALCRKEYS_H
       
    21 #define MPXINTERNALCRKEYS_H
       
    22 
       
    23 
       
    24 // Music Player Application Features Uid
       
    25 const TUid KCRUidMPXMPFeatures = { 0x101FFCD0 };
       
    26 
       
    27 
       
    28 // Local variation property value
       
    29 const TUint32 KMPXMPLocalVariation   = 0x00000001;
       
    30 
       
    31 // Feature flag definitions for local variation
       
    32 
       
    33 
       
    34 // Feature to enable changing ringing tone for all profiles. When disabled
       
    35 // ringing tone is changed only for the active profile.
       
    36 #define KMPXChangeRTForAll      0x0001
       
    37 
       
    38 // Feature to enable marquee (scrolling) text for artist name label in
       
    39 // Music Player. When enabled and if the artist name is too long to fit into
       
    40 // space reserved for it, the label starts scrolling. Scrolling is associated
       
    41 // to player state, when playing is started the label starts scrolling and if
       
    42 // the playing is stopped the scrolling stops, too.
       
    43 #define KMPXMarqueeArtistName   0x0002
       
    44 
       
    45 // Feature to enable Rocker Key Mapping support.
       
    46 #define KMPXRockerMappingSupport 0x0004
       
    47 
       
    48 // Feature to disable podcasting from music player
       
    49 // +128 to disable podcasting
       
    50 #define KMPXDisablePodcastingOption 0x0008
       
    51 
       
    52 // Feature to enable Go To MusicShop option in option menus.
       
    53 #define KMPXEnableGoToMusicShopOption 0x0010
       
    54 
       
    55 // Feature to enable Find In MusicShop option in option menus
       
    56 #define KMPXEnableFindInMusicShopOption 0x0020
       
    57 
       
    58 // Feature to enable exit option in option menus.
       
    59 #define KMPXEnableExitOption 0x0040
       
    60 
       
    61 // Feature to open Music Player in Artists & Album collection view.
       
    62 #define KMPXStartMusicPlayerinArtistsandAlbums 0x0080
       
    63 
       
    64 // Speed Scroll settings feature Uid
       
    65 const TUid KCRUidMPXMPExtendedFeatures = { 0x101FFCD1 };
       
    66 
       
    67 // Speed scrolling settings
       
    68 // setting for buffer time from idle to first speed
       
    69 const TUint32 KMPXMPSpeedScrollFirBuffTime    = 0x00000001;
       
    70 // setting for buffer time from first speed to second speed
       
    71 const TUint32 KMPXMPSpeedScrollSecBuffTime    = 0x00000002;
       
    72 // value for first speed
       
    73 const TUint32 KMPXMPSpeedScrollFirSpeed       = 0x00000003;
       
    74 // value for second speed
       
    75 const TUint32 KMPXMPSpeedScrollSecSpeed       = 0x00000004;
       
    76 
       
    77 #endif  // MPXINTERNALCRKEYS_H
       
    78 
       
    79 // End of file