mmserv/audioeffectsui/equalizer/inc/Equalizer.hrh
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 constants of Equalizer
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef EQUALIZER_HRH
       
    21 #define EQUALIZER_HRH
       
    22 
       
    23 // DATA TYPES
       
    24 
       
    25 // Used as Command ids for menubar
       
    26 enum TEqualizerCommandIds
       
    27     {
       
    28     EEqualizerCmdActivate = 1,
       
    29     EEqualizerCmdEdit,
       
    30     EEqualizerCmdCreateNew,
       
    31     EEqualizerCmdDelete,
       
    32     EEqualizerCmdRename,
       
    33     EEqualizerCmdHelp,
       
    34     EEqualizerCmdReset
       
    35     };
       
    36 
       
    37 // Used for custom Control Id and type   
       
    38 enum TEqualizerCustomControlIds
       
    39     {    
       
    40     EEqualizerCustomCtrlDlgCIdCustomControl = 1000,
       
    41     EEqualizerCustomCtrlDlgCtCustomControl
       
    42     };
       
    43 
       
    44 //Used for the equalizer varieties   
       
    45 enum TEqualizerVarieties
       
    46     {
       
    47     EEqualizerVarietyNotUsed = -1,
       
    48     EEqualizerVarietyOne = 0,
       
    49     EEqualizerVarietyTwo
       
    50     };    
       
    51 
       
    52 //Used for retriving the rect from the layout information
       
    53 enum TEqualizerComponents
       
    54     {
       
    55     EEqualizerFreqBand1 = 0,
       
    56     EEqualizerFreqBand2,
       
    57     EEqualizerFreqBand3,
       
    58     EEqualizerFreqBand4,
       
    59     EEqualizerFreqBand5,
       
    60     EEqualizerFreqBand6,
       
    61     EEqualizerFreqBand7,
       
    62     EEqualizerFreqBand8,
       
    63     EEqualizerMainPane,
       
    64     EEqualizerScale,
       
    65     EEqualizerBackground,
       
    66     EEqualizerSlider
       
    67     };    
       
    68     
       
    69 #endif     //EQUALIZER_HRH
       
    70 // End of File