[dali_2.3.25] Merge branch 'devel/master'
[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{Accessible::GetInterfaceName(AtspiInterface::SELECTION)};
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   mDbusServer.addInterface("/", desc, true);
35 }
36
37 Selection* BridgeSelection::FindSelf() const
38 {
39   return FindCurrentObjectWithInterface<Dali::Accessibility::AtspiInterface::SELECTION>();
40 }
41
42 DBus::ValueOrError<int32_t> BridgeSelection::GetSelectedChildrenCount()
43 {
44   return FindSelf()->GetSelectedChildrenCount();
45 }
46
47 DBus::ValueOrError<Dali::Accessibility::Accessible*> BridgeSelection::GetSelectedChild(int32_t selectedChildIndex)
48 {
49   return FindSelf()->GetSelectedChild(selectedChildIndex);
50 }
51
52 DBus::ValueOrError<bool> BridgeSelection::SelectChild(int32_t childIndex)
53 {
54   return FindSelf()->SelectChild(childIndex);
55 }
56
57 DBus::ValueOrError<bool> BridgeSelection::DeselectSelectedChild(int32_t selectedChildIndex)
58 {
59   return FindSelf()->DeselectSelectedChild(selectedChildIndex);
60 }
61
62 DBus::ValueOrError<bool> BridgeSelection::IsChildSelected(int32_t childIndex)
63 {
64   return FindSelf()->IsChildSelected(childIndex);
65 }
66
67 DBus::ValueOrError<bool> BridgeSelection::SelectAll()
68 {
69   return FindSelf()->SelectAll();
70 }
71
72 DBus::ValueOrError<bool> BridgeSelection::ClearSelection()
73 {
74   return FindSelf()->ClearSelection();
75 }
76
77 DBus::ValueOrError<bool> BridgeSelection::DeselectChild(int32_t childIndex)
78 {
79   return FindSelf()->DeselectChild(childIndex);
80 }