[dali_2.3.25] Merge branch 'devel/master'
[platform/core/uifw/dali-adaptor.git] / dali / internal / accessibility / bridge / bridge-hyperlink.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 // EXTERNAL INCLUDES
19 #include <string>
20
21 // INTERNAL INCLUDES
22 #include <dali/internal/accessibility/bridge/bridge-hyperlink.h>
23
24 using namespace Dali::Accessibility;
25
26 void BridgeHyperlink::RegisterInterfaces()
27 {
28   DBus::DBusInterfaceDescription desc{Accessible::GetInterfaceName(AtspiInterface::HYPERLINK)};
29   AddGetPropertyToInterface(desc, "NAnchors", &BridgeHyperlink::GetAnchorCount);
30   AddGetPropertyToInterface(desc, "StartIndex", &BridgeHyperlink::GetStartIndex);
31   AddGetPropertyToInterface(desc, "EndIndex", &BridgeHyperlink::GetEndIndex);
32   AddFunctionToInterface(desc, "GetObject", &BridgeHyperlink::GetAnchorAccessible);
33   AddFunctionToInterface(desc, "GetURI", &BridgeHyperlink::GetAnchorUri);
34   AddFunctionToInterface(desc, "IsValid", &BridgeHyperlink::IsValid);
35   mDbusServer.addInterface("/", desc, true);
36 }
37
38 Hyperlink* BridgeHyperlink::FindSelf() const
39 {
40   return FindCurrentObjectWithInterface<Dali::Accessibility::AtspiInterface::HYPERLINK>();
41 }
42
43 DBus::ValueOrError<int32_t> BridgeHyperlink::GetEndIndex()
44 {
45   return FindSelf()->GetEndIndex();
46 }
47
48 DBus::ValueOrError<int32_t> BridgeHyperlink::GetStartIndex()
49 {
50   return FindSelf()->GetStartIndex();
51 }
52
53 DBus::ValueOrError<int32_t> BridgeHyperlink::GetAnchorCount()
54 {
55   return FindSelf()->GetAnchorCount();
56 }
57
58 DBus::ValueOrError<Dali::Accessibility::Accessible*> BridgeHyperlink::GetAnchorAccessible(int32_t anchorIndex)
59 {
60   return FindSelf()->GetAnchorAccessible(anchorIndex);
61 }
62
63 DBus::ValueOrError<std::string> BridgeHyperlink::GetAnchorUri(int32_t anchorIndex)
64 {
65   return FindSelf()->GetAnchorUri(anchorIndex);
66 }
67
68 DBus::ValueOrError<bool> BridgeHyperlink::IsValid()
69 {
70   return FindSelf()->IsValid();
71 }