diff -r cad71a31b7fc -r e36f3802f733 srsf/speechsynthesis/tsrc/speechsynthesistest/inc/speechsynthesistester.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/srsf/speechsynthesis/tsrc/speechsynthesistest/inc/speechsynthesistester.h Wed Sep 01 12:29:17 2010 +0100 @@ -0,0 +1,126 @@ +/* +* Copyright (c) 2006-2007 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: +* +*/ + + +#ifndef SPEECHSYNTHESISTESTER_H +#define SPEECHSYNTHESISTESTER_H + +#include +#include + +// CLASS DECLARATIONS + +NONSHARABLE_CLASS( MTesterObserver ) + { + + public: + + virtual void SynthesisInitComplete( TInt aError ) = 0; + virtual void SynthesisComplete( TInt aError ) = 0; + + }; + + +/** +* This class encapsulates resource file handling functions +*/ +NONSHARABLE_CLASS( CSpeechSynthesisTester ) : public CActive + { + public: // Constructors and destructor + + /** + * Two-phased constructor. + */ + static CSpeechSynthesisTester* NewL( MTesterObserver& aObserver ); + + /** + * Destructor. + */ + virtual ~CSpeechSynthesisTester(); + + public: + + TInt Open(); + void Close(); + + void SynthesisInit( TDesC& aText, const TDesC& aFileName = KNullDesC ); + void Synthesise(); + void StopL(); + void PauseL(); + + void GetSupportedLanguagesL( RArray& aLanguages ); + + void GetSupportedVoicesL( RArray& aVoices, TLanguage aLanguage ); + TVoice VoiceL( ); + void SetVoiceL( TVoice& aVoice ); + + TInt MaxSpeakingRateL(); + TInt SpeakingRateL(); + void SetSpeakingRateL( TInt aRate ); + + TInt MaxVolumeL(); + TInt VolumeL(); + void SetVolumeL( TInt aVolume ); + + void SetAudioPriorityL( TInt aPriority, TInt aPreference ); + + void CustomCommandL( TInt aCommand, TInt aValue ); + + protected: // From CActive + + /** + * CActive::RunL + */ + void RunL(); + + /** + * CActive::DoCancel() + */ + void DoCancel(); + + private: + + /** + * C++ default constructor. + */ + CSpeechSynthesisTester( MTesterObserver& aObserver ); + + /** + * By default Symbian 2nd phase constructor is private. + */ + void ConstructL(); + + + private: // Data + + RSpeechSynthesis iSpeechSynthesis; + + enum TTestStatus + { + EIdle, + EPriming, + EPlaying + }; + + TTestStatus iTestStatus; + + MTesterObserver& iObserver; + }; + +#endif // SPEECHSYNTHESISTESTER_H + +// End of File