Public API headers are installed in the correct folder
[platform/core/uifw/dali-adaptor.git] / adaptors / public-api / adaptor-framework / tts-player.h
1 #ifndef __DALI_TTS_PLAYER_H__
2 #define __DALI_TTS_PLAYER_H__
3
4 /*
5  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // EXTERNAL INCLUDES
22 #include <dali/public-api/object/base-handle.h>
23
24 namespace Dali DALI_IMPORT_API
25 {
26
27 namespace Internal DALI_INTERNAL
28 {
29 namespace Adaptor
30 {
31 class TtsPlayer;
32 }
33 }
34
35 /**
36  * @brief The Text-to-speech Player.
37  */
38 class TtsPlayer : public BaseHandle
39 {
40 public: // ENUMs
41
42   /**
43    * @brief Enumeration of TTS mode.
44    */
45   enum Mode
46   {
47     DEFAULT = 0,  ///< Default mode for normal application
48     NOTIFICATION, ///< Notification mode
49     SCREEN_READER, ///< Screen reader mode
50     MODE_NUM
51   };
52
53 public: // API
54
55   /**
56    * @brief Create an uninitialized handle.
57    *
58    * This can be initialized by calling TtsPlayer::Get().
59    */
60   TtsPlayer();
61
62   /**
63    * @brief Gets the singleton of the TtsPlayer for each mode.
64    *
65    * Internally, each tts player handles (singleton instance) are managed for each mode.
66    * @param mode the mode of tts-player
67    * @return A handle of the Ttsplayer for given mode.
68    */
69   static TtsPlayer Get(Dali::TtsPlayer::Mode mode = Dali::TtsPlayer::DEFAULT);
70
71   /**
72    * @brief Destructor
73    *
74    * This is non-virtual since derived Handle types must not contain data or virtual methods.
75    */
76   ~TtsPlayer();
77
78   /**
79    * @brief Start playing the audio data synthesized from the specified text.
80    *
81    * @pre The TtsPlayer needs to be initialized.
82    * @param[in] text to play.
83    */
84   void Play(const std::string& text);
85
86   /**
87    * @brief Stops playing the utterance.
88    * @pre The TtsPlayer needs to be initialized.
89    */
90   void Stop();
91
92   /**
93    * @brief Pauses the currently playing utterance.
94    * @pre The TtsPlayer needs to be initialized.
95    */
96   void Pause();
97
98   /**
99    * @brief Resumes the previously paused utterance.
100    * @pre The TtsPlayer needs to be initialized.
101    */
102   void Resume();
103
104 public: // Not intended for application developers
105
106   /**
107    * @brief This constructor is used by TtsPlayer::Get().
108    * @param[in] ttsPlayer A pointer to the TTS player.
109    */
110   TtsPlayer( Internal::Adaptor::TtsPlayer* ttsPlayer );
111 };
112
113 } // namespace Dali
114
115 #endif // __DALI_TTS_PLAYER_H__