DALi Version 1.9.35
[platform/core/uifw/dali-adaptor.git] / dali / devel-api / adaptor-framework / atspi-accessibility.cpp
1 /*
2  * Copyright (c) 2019 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 #include <dali/devel-api/adaptor-framework/atspi-accessibility.h>
19 #include <dali/devel-api/adaptor-framework/accessibility-impl.h>
20
21 void Dali::AtspiAccessibility::Pause()
22 {
23   if( auto bridge = Dali::Accessibility::Bridge::GetCurrentBridge() )
24   {
25     bridge->Pause();
26   }
27 }
28
29 void Dali::AtspiAccessibility::Resume()
30 {
31   if( auto bridge = Dali::Accessibility::Bridge::GetCurrentBridge() )
32   {
33     bridge->Resume();
34   }
35 }
36
37 void Dali::AtspiAccessibility::Say( const std::string& text, bool discardable, std::function<void( std::string )> callback )
38 {
39   if( auto bridge = Dali::Accessibility::Bridge::GetCurrentBridge() )
40   {
41     bridge->Say(text, discardable, callback);
42   }
43 }
44
45 int Dali::AtspiAccessibility::SetForcefully( bool turnOn )
46 {
47   if( turnOn )
48   {
49     if( auto bridge = Dali::Accessibility::Bridge::GetCurrentBridge() )
50     {
51       bridge->Initialize();
52       auto ret = bridge->ForceUp();
53       return (int)ret;
54     }
55   }
56   else
57   {
58     if( auto bridge = Dali::Accessibility::Bridge::GetCurrentBridge() )
59     {
60       bridge->ForceDown();
61       return 0;
62     }
63   }
64   return -1;
65 }
66
67 int Dali::AtspiAccessibility::GetStatus()
68 {
69   //0(ATSPI OFF, ScreenReader OFF), 1(ATSPI ON, ScreenReader OFF), 2 (ATSPI OFF, ScreenReader ON), 3(ATSPI ON, ScreenReader ON)
70   if( auto bridge = Dali::Accessibility::Bridge::GetCurrentBridge() )
71   {
72     if( bridge->GetScreenReaderEnabled() )
73     {
74       if( bridge->GetIsEnabled() )
75       {
76         return 3;
77       }
78       else
79       {
80         return 2;
81       }
82     }
83     else
84     {
85       if( bridge->GetIsEnabled() )
86       {
87         return 1;
88       }
89       else
90       {
91         return 0;
92       }
93     }
94   }
95   return -1;
96 }