Fix gcc14 build issue and Update version (1.90.6)
[platform/core/uifw/tts.git] / doc / uix_tts_doc.h
index 17e3837..264417e 100644 (file)
@@ -11,7 +11,7 @@
  * distributed under the License is distributed on an AS IS BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
- * limitations under the License. 
+ * limitations under the License.
  */
 
 
  * @brief The @ref CAPI_UIX_TTS_MODULE API provides functions for synthesizing voice from text and playing synthesized sound data.
  * @section CAPI_UIX_TTS_MODULE_HEADER Required Header
  * \#include <tts.h>
- * 
+ *
  * @section CAPI_UIX_TTS_MODULE_OVERVIEW Overview
  * You can use Text-To-Speech (TTS) API to read sound data transformed by the engine from input texts.
  * Applications can add input-text to queue for reading continuously and control the player that can play, pause, and stop sound data synthesized from text.
  * To use TTS, follow these steps:<br>
  * 1. Create a handle <br>
- * 2. Register callback functions for notifications <br> 
+ * 2. Register callback functions for notifications <br>
  * 3. Prepare tts-daemon asynchronously <br>
  * 4. Add text to queue for speech <br>
  * 5. Start synthesizing voice from text and play synthesized sound data <br>
  * 7. Resume the player <br>
  * 8. Stop the player <br>
  * 9. Destroy a handle <br>
- * The TTS API also notifies you (by callback mechanism) when the state of TTS is changed, 
- * utterance is started and completed, default voice is changed or an error occured.
- * An application should register callback functions: tts_state_changed_cb(), tts_utterance_started_cb(), 
+ * The TTS API also notifies you (by callback mechanism) when the state of TTS is changed,
+ * utterance is started and completed, default voice is changed or an error occurred.
+ * An application should register callback functions: tts_state_changed_cb(), tts_utterance_started_cb(),
  * tts_utterance_completed_cb(), tts_default_voice_changed_cb(), tts_error_cb(), tts_engine_changed_cb().
  *
  * @section CAPI_UIX_TTS_MODULE_STATE_DIAGRAM State Diagram
- * The following diagram shows the life cycle and the states of the TTS. 
- * This state diagram shows that the state can be changed from 'None' to 'Created' by calling the tts_create() function. 
- * Similarly, you can know the relation between the states and API functions. 
- * You need to know the current state before calling the API, because the TTS API is based on state machine. 
+ * The following diagram shows the life cycle and the states of the TTS.
+ * This state diagram shows that the state can be changed from 'None' to 'Created' by calling the tts_create() function.
+ * Similarly, you can know the relation between the states and API functions.
+ * You need to know the current state before calling the API, because the TTS API is based on state machine.
  * The current state can be known from the state changed callback.
  *
  * @image html capi_uix_tts_state_diagram.png "State diagram"
  *
  * @section CAPI_UIX_TTS_MODULE_STATE_TRANSITIONS State Transitions
- * The following table shows previous state and post state of main function. 
- * It can be known what precondition is and which synchronous type is. 
+ * The following table shows previous state and post state of main function.
+ * It can be known what precondition is and which synchronous type is.
  * Please check both previous state and post state from the table carefully.
  * In case of tts_prepare() function, state doesn't be changed at once, but asynchronously.
- * From the above state diagram, you can see dotted line as asynchronous api. 
+ * From the above state diagram, you can see dotted line as asynchronous api.
  * In this case, the state changed callback is only way to know state transition as ready.
  * <table>
  * <tr>
  * <td> All callback function should be registered in Created state </td>
  * </tr>
  * </table>
- * 
+ *
  * @section CAPI_UIX_TTS_MODULE_FEATURE Related Features
  * This API is related with the following features:<br>
- * - http://tizen.org/feature/speech.synthesis<br>
+ * - %http://tizen.org/feature/speech.synthesis<br>
  * It is recommended to design feature related codes in your application for reliability.<br>
  * You can check if a device supports the related features for this API by using @ref CAPI_SYSTEM_SYSTEM_INFO_MODULE, thereby controlling the procedure of your application.<br>
  * To ensure your application is only running on the device with specific features, please define the features in your manifest file using the manifest editor in the SDK.<br>
- * More details on featuring your application can be found from <a href="https://developer.tizen.org/development/tizen-studio/native-tools/configuring-your-app/manifest-text-editor#feature"><b>Feature Element</b>.</a>
+ * More details on featuring your application can be found from <a href="https://docs.tizen.org/application/tizen-studio/native-tools/manifest-text-editor#feature-element"><b>Feature Element</b>.</a>
  */