Merge "Add APIs for intercepting http request in web engine." into devel/master
[platform/core/uifw/dali-adaptor.git] / dali / devel-api / adaptor-framework / atspi-accessibility.cpp
1 /*
2  * Copyright (c) 2021 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/accessibility-impl.h>
19 #include <dali/devel-api/adaptor-framework/atspi-accessibility.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::StopReading(bool alsoNonDiscardable)
38 {
39   if(auto bridge = Dali::Accessibility::Bridge::GetCurrentBridge())
40   {
41     bridge->StopReading(alsoNonDiscardable);
42   }
43 }
44
45 void Dali::AtspiAccessibility::Say(const std::string& text, bool discardable, std::function<void(std::string)> callback)
46 {
47   if(auto bridge = Dali::Accessibility::Bridge::GetCurrentBridge())
48   {
49     bridge->Say(text, discardable, callback);
50   }
51 }
52
53 int Dali::AtspiAccessibility::SetForcefully(bool turnOn)
54 {
55   if(turnOn)
56   {
57     if(auto bridge = Dali::Accessibility::Bridge::GetCurrentBridge())
58     {
59       bridge->Initialize();
60       auto ret = bridge->ForceUp();
61       return (int)ret;
62     }
63   }
64   else
65   {
66     if(auto bridge = Dali::Accessibility::Bridge::GetCurrentBridge())
67     {
68       bridge->ForceDown();
69       return 0;
70     }
71   }
72   return -1;
73 }
74
75 int Dali::AtspiAccessibility::GetStatus()
76 {
77   //0(ATSPI OFF, ScreenReader OFF), 1(ATSPI ON, ScreenReader OFF), 2 (ATSPI OFF, ScreenReader ON), 3(ATSPI ON, ScreenReader ON)
78   if(auto bridge = Dali::Accessibility::Bridge::GetCurrentBridge())
79   {
80     if(bridge->GetScreenReaderEnabled())
81     {
82       if(bridge->GetIsEnabled())
83       {
84         return 3;
85       }
86       else
87       {
88         return 2;
89       }
90     }
91     else
92     {
93       if(bridge->GetIsEnabled())
94       {
95         return 1;
96       }
97       else
98       {
99         return 0;
100       }
101     }
102   }
103   return -1;
104 }