mpviewplugins/mpsettingsviewplugin/inc/mpsettingsaudioeffectswidget.h
branchRCL_3
changeset 52 14979e23cb5e
equal deleted inserted replaced
50:26a1709b9fec 52:14979e23cb5e
       
     1 /*
       
     2 * Copyright (c) 2009 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: Music Player Settings view - audio settings.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef MPSETTINGSAUDIOEFFECTSWIDGET_H
       
    19 #define MPSETTINGSAUDIOEFFECTSWIDGET_H
       
    20 
       
    21 
       
    22 // INCLUDES
       
    23 #include <QObject>
       
    24 #include <hbwidget.h>
       
    25 #include <hbdataform.h>
       
    26 #include <hbdataformmodel.h>
       
    27 
       
    28 // CLASS DECLARATION
       
    29 class MpEngine;
       
    30 class HbSlider;
       
    31 
       
    32 /**
       
    33  *  Audio Effects widget definition.
       
    34  *
       
    35  */
       
    36 class MpSettingsAudioEffectsWidget : public HbWidget
       
    37     {
       
    38     Q_OBJECT
       
    39     
       
    40 public:
       
    41     explicit MpSettingsAudioEffectsWidget( QGraphicsItem *parent=0  );
       
    42     virtual ~MpSettingsAudioEffectsWidget();
       
    43     
       
    44     void initialize();
       
    45 
       
    46 public slots:
       
    47     
       
    48     void filterSignals( QModelIndex startIn, QModelIndex endIn );
       
    49     
       
    50 private:
       
    51 
       
    52     MpEngine                *mMpEngine;         // Own
       
    53     HbDataFormModel         *mModel;
       
    54     };
       
    55 
       
    56 #endif  // MPSETTINGSAUDIOEFFECTSWIDGET_H
       
    57 
       
    58 // End of File