diff -r e35735ece90c -r 3d8c721bf319 mmserv/tms/tmsserver/inc/tmsglobaleffectssettings.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mmserv/tms/tmsserver/inc/tmsglobaleffectssettings.h Wed Mar 31 22:29:45 2010 +0300 @@ -0,0 +1,119 @@ +/* + * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). + * All rights reserved. + * This component and the accompanying materials are made available + * under the terms of "Eclipse Public License v1.0" + * which accompanies this distribution, and is available + * at the URL "http://www.eclipse.org/legal/epl-v10.html". + * + * Initial Contributors: + * Nokia Corporation - initial contribution. + * + * Contributors: + * + * Description: Telephony Multimedia Service + * + */ + +#ifndef TMSGLOBALEFFECTSSETTINGS_H +#define TMSGLOBALEFFECTSSETTINGS_H + +// INCLUDES +#include +#include +#include + +namespace TMS { + +// CLASS DECLARATION +class TMSGlobalEffectsSettings + { +public: + /** + * Two-phased constructor. + */ + static TMSGlobalEffectsSettings* NewL(); + + /** + * Destructor. + */ + virtual ~TMSGlobalEffectsSettings(); + +public: + /** + * Store the current loud speaker volume. + * @param aVolume Volume + */ + void SetLoudSpkrVolume(TInt aVolume); + + /** + * Store the current earpiece volume. + * @param aVolume Volume + */ + void SetEarPieceVolume(TInt aVolume); + + + /** + * Retrieve the current loud speaker volume. + * @param aVolume Volume + */ + void GetLoudSpkrVolume(TInt& aVolume); + + /** + * Retrieve the current earpiece volume. + * @param aVolume Volume + */ + void GetEarPieceVolume(TInt& aVolume); + + /** + * Returns the current volume. + * @return Current volume + */ + TInt MaxVolume() const; + + /** + * Store the current gain. + * @param aVolume Volume + * @param aPublish ETrue to publish the status to clients + */ + void SetGain(TInt aGain); + + /** + * Returns the current gain. + * @return Current volume + */ + TInt Gain() const; + + /** + * Returns the max gain. + * @return Current volume + */ + TInt MaxGain() const; + +private: + + /** + * C++ default constructor. + */ + TMSGlobalEffectsSettings(); + + /** + * By default Symbian 2nd phase constructor is private. + */ + void ConstructL(); + +private: + TInt iGain; + TInt iMaxVolume; + TInt iMaxGain; + TInt iEarVolume; + TInt iLoudSpkrVolume; + + CRepository* iRepository; + }; + +} //namespace TMS + +#endif // TMSGLOBALEFFECTSSETTINGS_H + +// End of File