Merge "Fix Svace issue" into devel/master
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit / dali-toolkit-test-utils / toolkit-tts-player.h
1 #ifndef __DALI_TOOLKIT_TTS_PLAYER_H__
2 #define __DALI_TOOLKIT_TTS_PLAYER_H__
3
4 /*
5  * Copyright (c) 2015 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 #include <dali/public-api/signals/dali-signal.h>
24
25 namespace Dali
26 {
27
28 namespace Internal DALI_INTERNAL
29 {
30 namespace Adaptor
31 {
32 class TtsPlayer;
33 }
34 }
35
36 class DALI_IMPORT_API TtsPlayer : public BaseHandle
37 {
38 public:
39
40   enum Mode
41   {
42     DEFAULT = 0,        ///< Default mode for normal application
43     NOTIFICATION,       ///< Notification mode
44     SCREEN_READER,      ///< Screen reader mode
45     MODE_NUM
46   };
47
48   enum State
49   {
50     UNAVAILABLE = 0,    ///< Player is not available
51     READY,              ///< Player is ready to play
52     PLAYING,            ///< Player is playing
53     PAUSED              ///< Player is paused
54   };
55
56   typedef Signal< void ( const Dali::TtsPlayer::State, const Dali::TtsPlayer::State ) > StateChangedSignalType;
57
58   TtsPlayer();
59   static TtsPlayer Get(Dali::TtsPlayer::Mode mode = Dali::TtsPlayer::DEFAULT);
60   ~TtsPlayer();
61
62   TtsPlayer(const TtsPlayer& handle);
63   TtsPlayer& operator=(const TtsPlayer& rhs);
64   void Play(const std::string& text);
65   void Stop();
66   void Pause();
67   void Resume();
68   State GetState();
69   Dali::TtsPlayer::StateChangedSignalType& StateChangedSignal();
70
71 public:
72
73   // explicit DALI_INTERNAL TtsPlayer( Internal::Adaptor::TtsPlayer* ttsPlayer );
74
75 private:
76
77   StateChangedSignalType mStateChangedSignal;
78 };
79
80 } // namespace Dali
81
82 #endif // __DALI_TOOLKIT_TTS_PLAYER_H__