1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/devsound/a3fcharacterisationtest/src/char_a3f_devsound_toneclient.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,72 @@
1.4 +// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#ifndef CHAR_A3F_DEVSOUND_TONECLIENT_H
1.20 +#define CHAR_A3F_DEVSOUND_TONECLIENT_H
1.21 +
1.22 +#include <mmf/server/sounddevice.h>
1.23 +#include "char_a3f_devsound_compliancesuiteconstants.h"
1.24 +#include <testframework.h>
1.25 +/*
1.26 +An interface to a set of DevSound callback functions.
1.27 +*/
1.28 +class MA3FDevsoundToneClientObserver
1.29 + {
1.30 +public:
1.31 + virtual void ClientInitializeCompleteCallback(TInt aError) = 0;
1.32 + virtual void ClientToneFinishedCallback(TInt aError) = 0;
1.33 + };
1.34 +
1.35 +class CA3FDevSoundToneClient : public CBase, public MDevSoundObserver
1.36 + {
1.37 +public:
1.38 + static CA3FDevSoundToneClient* NewL(MA3FDevsoundToneClientObserver &aObserver);
1.39 + ~CA3FDevSoundToneClient();
1.40 +
1.41 + void SetPriority(TInt priority);
1.42 + TInt InitTonePlay(TInt aFrequency,TInt aDuration);
1.43 + TInt InitDualTonePlay(TInt aFrequency, TInt aFrequencyTwo, TInt aDuration);
1.44 + TInt InitDTMFStringPlay(const TDesC &aDTMFString);
1.45 + TInt InitToneSequencePlay();
1.46 + TInt PlayTone();
1.47 + TInt PlayDualTone();
1.48 + TInt PlayDTMFString();
1.49 + TInt PlayToneSequence();
1.50 +
1.51 +private:
1.52 + CA3FDevSoundToneClient(MA3FDevsoundToneClientObserver &aObserver);
1.53 + void ConstructL();
1.54 + // from MDevSoundObserver
1.55 + void BufferToBeFilled(CMMFBuffer *aBuffer);
1.56 + void BufferToBeEmptied(CMMFBuffer *aBuffer);
1.57 + void DeviceMessage(TUid aMessageType, const TDesC8& aMsg);
1.58 + void ConvertError(TInt aError);
1.59 + void PlayError(TInt aError);
1.60 + void RecordError(TInt aError);
1.61 +
1.62 + void InitializeComplete(TInt aError);
1.63 + void ToneFinished(TInt aError);
1.64 +private:
1.65 + CMMFDevSound* iDevSound;
1.66 + MA3FDevsoundToneClientObserver& iObserver;
1.67 + TInt iDuration;
1.68 + TInt iFrequency;
1.69 + TInt iFrequencyTwo;
1.70 + TBuf16<KMaxStringLength> iDTMFString;
1.71 + };
1.72 +
1.73 +#endif //CHAR_A3F_DEVSOUND_TONECLIENT_H
1.74 +
1.75 +