Tizen Native API  5.5

The Text-to-speech (TTS) Player. More...

Inheritance diagram for Dali::TtsPlayer:
Dali::BaseHandle

Public Types

enum  Mode
 Enumeration for the instance of TTS mode. More...
enum  State
 Enumeration for the instance of TTS state. More...
typedef Signal< void(const
Dali::TtsPlayer::State, const
Dali::TtsPlayer::State) > 
StateChangedSignalType
 Type of signal emitted when the TTS state changes.

Public Member Functions

 TtsPlayer ()
 Creates an uninitialized handle.
 ~TtsPlayer ()
 Destructor.
 TtsPlayer (const TtsPlayer &handle)
 This copy constructor is required for (smart) pointer semantics.
TtsPlayeroperator= (const TtsPlayer &rhs)
 This assignment operator is required for (smart) pointer semantics.
void Play (const std::string &text)
 Starts playing the audio data synthesized from the specified text.
void Stop ()
 Stops playing the utterance.
void Pause ()
 Pauses the currently playing utterance.
void Resume ()
 Resumes the previously paused utterance.
State GetState ()
 Gets the current state of the player.
Dali::TtsPlayer::StateChangedSignalTypeStateChangedSignal ()
 Allows connection TTS state change signal.

Static Public Member Functions

static TtsPlayer Get (Dali::TtsPlayer::Mode mode=Dali::TtsPlayer::DEFAULT)
 Gets the singleton of the TtsPlayer for the given mode.

Detailed Description

The Text-to-speech (TTS) Player.

Since:
3.0, DALi version 1.0.0

Member Typedef Documentation

Type of signal emitted when the TTS state changes.

Since:
3.0, DALi version 1.0.0

Member Enumeration Documentation

Enumeration for the instance of TTS mode.

Since:
3.0, DALi version 1.0.0
Enumerator:
DEFAULT 

Default mode for normal application.

Since:
3.0, DALi version 1.0.0
NOTIFICATION 

Notification mode, such as playing utterance is started or completed.

Since:
3.0, DALi version 1.0.0
SCREEN_READER 

Screen reader mode. To help visually impaired users interact with their devices, screen reader reads text or graphic elements on the screen using the TTS engine.

Since:
3.0, DALi version 1.0.0

Enumeration for the instance of TTS state.

Since:
3.0, DALi version 1.0.0
Enumerator:
UNAVAILABLE 

Player is not available.

Since:
3.0, DALi version 1.0.0
READY 

Player is ready to play.

Since:
3.0, DALi version 1.0.0
PLAYING 

Player is playing.

Since:
3.0, DALi version 1.0.0
PAUSED 

Player is paused.

Since:
3.0, DALi version 1.0.0

Constructor & Destructor Documentation

Creates an uninitialized handle.

This can be initialized by calling TtsPlayer::Get().

Since:
3.0, DALi version 1.0.0

Destructor.

This is non-virtual since derived Handle types must not contain data or virtual methods.

Since:
3.0, DALi version 1.0.0

This copy constructor is required for (smart) pointer semantics.

Since:
3.0, DALi version 1.0.0
Parameters:
[in]handleA reference to the copied handle

Member Function Documentation

Gets the singleton of the TtsPlayer for the given mode.

Since:
3.0, DALi version 1.0.0
Parameters:
modeThe mode of tts-player
Returns:
A handle of the Ttsplayer for the given mode

Gets the current state of the player.

Since:
3.0, DALi version 1.0.0
Returns:
The current TTS state
Precondition:
The TtsPlayer needs to be initialized.
TtsPlayer& Dali::TtsPlayer::operator= ( const TtsPlayer rhs)

This assignment operator is required for (smart) pointer semantics.

Since:
3.0, DALi version 1.0.0
Parameters:
[in]rhsA reference to the copied handle
Returns:
A reference to this

Pauses the currently playing utterance.

Since:
3.0, DALi version 1.0.0
Precondition:
The TtsPlayer needs to be initialized.
void Dali::TtsPlayer::Play ( const std::string &  text)

Starts playing the audio data synthesized from the specified text.

Since:
3.0, DALi version 1.0.0
Parameters:
[in]textThe text to play
Precondition:
The TtsPlayer needs to be initialized.

Resumes the previously paused utterance.

Since:
3.0, DALi version 1.0.0
Precondition:
The TtsPlayer needs to be initialized.

Allows connection TTS state change signal.

Since:
3.0, DALi version 1.0.0
Returns:
A reference to the signal for connection
Note:
Only supported by some adaptor types.

Stops playing the utterance.

Since:
3.0, DALi version 1.0.0
Precondition:
The TtsPlayer needs to be initialized.