Revert "[Tizen] Add DALi Autofill implementation"
[platform/core/uifw/dali-adaptor.git] / dali / public-api / adaptor-framework / tts-player.cpp
1 /*
2  * Copyright (c) 2015 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // CLASS HEADER
19 #include <dali/public-api/adaptor-framework/tts-player.h>
20
21 // INTERNAL INCLUDES
22 #include <dali/internal/accessibility/common/tts-player-impl.h>
23 #include <dali/internal/adaptor/common/adaptor-impl.h>
24
25 namespace Dali
26 {
27
28 TtsPlayer::TtsPlayer()
29 {
30 }
31
32 TtsPlayer TtsPlayer::Get(Dali::TtsPlayer::Mode mode)
33 {
34   TtsPlayer ttsPlayer;
35
36   if ( Adaptor::IsAvailable() )
37   {
38     ttsPlayer = Internal::Adaptor::Adaptor::GetImplementation( Adaptor::Get() ).GetTtsPlayer(mode);
39   }
40
41   return ttsPlayer;
42 }
43
44 TtsPlayer::~TtsPlayer()
45 {
46 }
47
48 TtsPlayer::TtsPlayer( const TtsPlayer& copy ) = default;
49
50 TtsPlayer& TtsPlayer::operator=( const TtsPlayer& rhs ) = default;
51
52 TtsPlayer::TtsPlayer( TtsPlayer&& rhs ) = default;
53
54 TtsPlayer& TtsPlayer::operator=( TtsPlayer&& rhs ) = default;
55
56 void TtsPlayer::Play(const std::string& text)
57 {
58   GetImplementation(*this).Play(text);
59 }
60
61 void TtsPlayer::Stop()
62 {
63   GetImplementation(*this).Stop();
64 }
65
66 void TtsPlayer::Pause()
67 {
68   GetImplementation(*this).Pause();
69 }
70
71 void TtsPlayer::Resume()
72 {
73   GetImplementation(*this).Resume();
74 }
75
76 TtsPlayer::State TtsPlayer::GetState()
77 {
78   return GetImplementation(*this).GetState();
79 }
80
81 TtsPlayer::StateChangedSignalType& TtsPlayer::StateChangedSignal()
82 {
83   return GetImplementation(*this).StateChangedSignal();
84 }
85
86 TtsPlayer::TtsPlayer( Internal::Adaptor::TtsPlayer* player )
87 : BaseHandle( player )
88 {
89 }
90
91 } // namespace Dali