mpviewplugins/mpsettingsviewplugin/inc/mpmpxasframeworkwrapper_p.h
changeset 20 82baf59ce8dd
equal deleted inserted replaced
19:4e84c994a771 20:82baf59ce8dd
       
     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 - Private.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef MPMPXASFRAMEWORKWRAPPER_P_H
       
    19 #define MPMPXASFRAMEWORKWRAPPER_P_H
       
    20 
       
    21 #include <mpxaudioeffectproperties.h>
       
    22 
       
    23 class MMPXPlaybackUtility;
       
    24 class CMPXAudioEffectProperties;
       
    25 
       
    26 class MpMpxAsFrameworkWrapperPrivate 
       
    27 {
       
    28 public:
       
    29     explicit MpMpxAsFrameworkWrapperPrivate(); 
       
    30     virtual ~MpMpxAsFrameworkWrapperPrivate();
       
    31     
       
    32     
       
    33 public:
       
    34     
       
    35     void init();
       
    36     void setBalance(int balance);
       
    37     void setLoudness(bool mode);
       
    38     int  balance();
       
    39     bool loudness();
       
    40             
       
    41 private:
       
    42     
       
    43     void doInitL();
       
    44     void doSetBalanceL(int balance);
       
    45     void doSetLoudnessL(bool mode);
       
    46     int  balanceL();
       
    47     bool loudnessL();
       
    48              
       
    49 private:
       
    50     MMPXPlaybackUtility           *iPlaybackUtility; // owned
       
    51     CMPXAudioEffectProperties     *iAudioEffectProperties; // owned
       
    52 };
       
    53 
       
    54 #endif /*MPMPXASFRAMEWORKWRAPPER_P_H*/