mpviewplugins/mpsettingsviewplugin/inc/mpsettingsview.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.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef MPSETTINGSVIEW_H
       
    19 #define MPSETTINGSVIEW_H
       
    20 
       
    21 #include "mpviewbase.h"
       
    22 
       
    23 
       
    24 class HbAction;
       
    25 class HbMainWindow;
       
    26 class MpSettingsAudioEffectsWidget;
       
    27 
       
    28 //class declaration
       
    29 class MpSettingsView : public MpViewBase
       
    30 {
       
    31     Q_OBJECT
       
    32 
       
    33 public:
       
    34     explicit MpSettingsView();
       
    35     virtual ~MpSettingsView();
       
    36     
       
    37     void initializeView();
       
    38     void activateView();
       
    39     void deactivateView();
       
    40 
       
    41 signals:
       
    42     void command( int aCommand );
       
    43 
       
    44 public slots:
       
    45     void back();
       
    46         
       
    47 private:
       
    48     HbMainWindow                 *mWindow;             // not own
       
    49     HbAction                     *mSoftKeyBack;        // own
       
    50     MpSettingsAudioEffectsWidget *mAudioEffectsWidget; // not own
       
    51 
       
    52     Q_DISABLE_COPY(MpSettingsView)
       
    53 };
       
    54 
       
    55 
       
    56 #endif //MPSETTINGSVIEW_H