mmserv/audioeffectsui/equalizer/inc/EqualizerPrivateConstants.h
changeset 16 43d09473c595
parent 14 80975da52420
child 22 128eb6a32b84
equal deleted inserted replaced
14:80975da52420 16:43d09473c595
     1 /*
       
     2 * Copyright (c) 2005 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:    This file contains declarations for private constants for 
       
    15 *                Equalizer
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 #ifndef EQUALIZERPRIVATECONSTANTS_H
       
    22 #define EQUALIZERPRIVATECONSTANTS_H
       
    23 
       
    24 //  INCLUDES
       
    25 
       
    26 #include <e32std.h>
       
    27 #include <bldvariant.hrh>
       
    28 #include "EqualizerConstants.h"
       
    29 
       
    30 // CONSTANTS
       
    31 
       
    32 // Used as the maximum length of a Preset name
       
    33 const TInt KMaxPresetNameLength = 32;
       
    34 // Uid of Equalizer
       
    35 const TUid KUidEqualizer = { 0x101FD659 };
       
    36 // Used to set the array granularity for dynamic arrays
       
    37 const TUint KEqualizerArrayGranularity = 4;
       
    38 // Equalizer rsc file name
       
    39 _LIT( KEqualizerResourceFileName, "Z:Equalizer.rsc" );
       
    40 // Equalizer mif file name
       
    41 _LIT(KIconsFilename, "Z:Equalizer.mbm");
       
    42 // Used if the number of bands returned from engine is 8
       
    43 const TInt KEqualizerEightBands = 8;
       
    44 // Used if the number of bands returned from engine is 5
       
    45 const TInt KEqualizerFiveBands = 5;
       
    46 // Number of slider movements
       
    47 const TInt KNumberOfSteps = 20;
       
    48 
       
    49 // for old s60 musicplayer
       
    50 //const TUid KCRUidMusicPlayerSettings = {0x101F880C};
       
    51 //const TUint32 KMPlayerEqPresetId       = 0x00000009;
       
    52 const TUid KCRUidMusicPlayerSettings = {0x101FFCDC};
       
    53 const TUint32 KMPlayerEqPresetId = 0x00000001;
       
    54 
       
    55 // MACROS
       
    56 //Used in model text
       
    57 _LIT(KEqrTab, "\t");
       
    58 
       
    59 // DATA TYPES
       
    60 
       
    61 #endif      // EQUALIZERPRIVATECONSTANTS_H
       
    62 
       
    63 // End of File