949bc553875760b7060b460ee35b93615323b730
[platform/core/uifw/dali-adaptor.git] / dali / internal / accessibility / bridge / bridge-selection.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 // CLASS HEADER
19 #include <dali/internal/accessibility/bridge/bridge-selection.h>
20
21 using namespace Dali::Accessibility;
22
23 void BridgeSelection::RegisterInterfaces()
24 {
25   DBus::DBusInterfaceDescription desc{AtspiDbusInterfaceSelection};
26   AddGetPropertyToInterface(desc, "NSelectedChildren", &BridgeSelection::GetSelectedChildrenCount);
27   AddFunctionToInterface(desc, "GetSelectedChild", &BridgeSelection::GetSelectedChild);
28   AddFunctionToInterface(desc, "SelectChild", &BridgeSelection::SelectChild);
29   AddFunctionToInterface(desc, "DeselectSelectedChild", &BridgeSelection::DeselectSelectedChild);
30   AddFunctionToInterface(desc, "IsChildSelected", &BridgeSelection::IsChildSelected);
31   AddFunctionToInterface(desc, "SelectAll", &BridgeSelection::SelectAll);
32   AddFunctionToInterface(desc, "ClearSelection", &BridgeSelection::ClearSelection);
33   AddFunctionToInterface(desc, "DeselectChild", &BridgeSelection::DeselectChild);
34   dbusServer.addInterface("/", desc, true);
35 }
36
37 Selection* BridgeSelection::FindSelf() const
38 {
39   auto s = BridgeBase::FindSelf();
40   assert(s);
41   auto s2 = dynamic_cast<Selection*>(s);
42   if(!s2)
43     throw std::domain_error{"object " + s->GetAddress().ToString() + " doesn't have Selection interface"};
44   return s2;
45 }
46
47 DBus::ValueOrError<int32_t> BridgeSelection::GetSelectedChildrenCount()
48 {
49   return FindSelf()->GetSelectedChildrenCount();
50 }
51
52 DBus::ValueOrError<Dali::Accessibility::Accessible*> BridgeSelection::GetSelectedChild(int32_t selectedChildIndex)
53 {
54   return FindSelf()->GetSelectedChild(selectedChildIndex);
55 }
56
57 DBus::ValueOrError<bool> BridgeSelection::SelectChild(int32_t childIndex)
58 {
59   return FindSelf()->SelectChild(childIndex);
60 }
61
62 DBus::ValueOrError<bool> BridgeSelection::DeselectSelectedChild(int32_t selectedChildIndex)
63 {
64   return FindSelf()->DeselectSelectedChild(selectedChildIndex);
65 }
66
67 DBus::ValueOrError<bool> BridgeSelection::IsChildSelected(int32_t childIndex)
68 {
69   return FindSelf()->IsChildSelected(childIndex);
70 }
71
72 DBus::ValueOrError<bool> BridgeSelection::SelectAll()
73 {
74   return FindSelf()->SelectAll();
75 }
76
77 DBus::ValueOrError<bool> BridgeSelection::ClearSelection()
78 {
79   return FindSelf()->ClearSelection();
80 }
81
82 DBus::ValueOrError<bool> BridgeSelection::DeselectChild(int32_t childIndex)
83 {
84   return FindSelf()->DeselectChild(childIndex);
85 }