mpviewplugins/mpsettingsviewplugin/inc/mpmpxasframeworkwrapper.h
changeset 29 8192e5b5c935
parent 25 3ec52facab4d
child 32 c163ef0b758d
equal deleted inserted replaced
25:3ec52facab4d 29:8192e5b5c935
     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:  Framework wraper for Audio Settings
       
    15 *
       
    16 */
       
    17 /*
       
    18 * Initial Contributors:
       
    19 * Nokia Corporation - initial contribution.
       
    20 *
       
    21 * Contributors:
       
    22 *
       
    23 * Description: Framework wraper for Audio Settings
       
    24 *
       
    25 */
       
    26 
       
    27 #ifndef MPMPXASFRAMEWORKWRAPPER_H
       
    28 #define MPMPXASFRAMEWORKWRAPPER_H
       
    29 
       
    30 #include <QObject>
       
    31 
       
    32 class MpMpxAsFrameworkWrapperPrivate;
       
    33 
       
    34 class MpMpxAsFrameworkWrapper : public QObject
       
    35 {
       
    36     Q_OBJECT
       
    37     friend class MpMpxAsFrameworkWrapperPrivate;
       
    38 
       
    39 public:
       
    40     explicit MpMpxAsFrameworkWrapper();
       
    41     virtual ~MpMpxAsFrameworkWrapper();
       
    42     
       
    43     int balance();
       
    44     bool loudness();
       
    45     
       
    46 public slots:
       
    47     void setBalance( int balance );
       
    48     void setLoudness( bool mode );
       
    49     
       
    50 private:
       
    51     MpMpxAsFrameworkWrapperPrivate *d_ptr; //owned
       
    52    
       
    53 };
       
    54 
       
    55 #endif /*MPMPXASFRAMEWORKWRAPPER_H*/