[Tizen][AT-SPI] Add Value::GetValueText()
[platform/core/uifw/dali-adaptor.git] / dali / internal / accessibility / bridge / bridge-value.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-value.h>
20
21 using namespace Dali::Accessibility;
22
23 BridgeValue::BridgeValue()
24 {
25 }
26
27 void BridgeValue::RegisterInterfaces()
28 {
29   DBus::DBusInterfaceDescription desc{Accessible::GetInterfaceName(AtspiInterface::VALUE)};
30   AddGetSetPropertyToInterface(desc, "CurrentValue", &BridgeValue::GetCurrentValue, &BridgeValue::SetCurrentValue);
31   AddGetPropertyToInterface(desc, "Text", &BridgeValue::GetCurrentValueText);
32   AddGetPropertyToInterface(desc, "MaximumValue", &BridgeValue::GetMaximumValue);
33   AddGetPropertyToInterface(desc, "MinimumIncrement", &BridgeValue::GetMinimumIncrement);
34   AddGetPropertyToInterface(desc, "MinimumValue", &BridgeValue::GetMinimumValue);
35   mDbusServer.addInterface("/", desc, true);
36 }
37
38 Value* BridgeValue::FindSelf() const
39 {
40   return FindCurrentObjectWithInterface<Dali::Accessibility::AtspiInterface::VALUE>();
41 }
42
43 double BridgeValue::GetCurrentValue()
44 {
45   return FindSelf()->GetCurrent();
46 }
47
48 void BridgeValue::SetCurrentValue(double newValue)
49 {
50   FindSelf()->SetCurrent(newValue);
51 }
52
53 std::string BridgeValue::GetCurrentValueText()
54 {
55   return FindSelf()->GetValueText();
56 }
57
58 double BridgeValue::GetMaximumValue()
59 {
60   return FindSelf()->GetMaximum();
61 }
62
63 double BridgeValue::GetMinimumIncrement()
64 {
65   return FindSelf()->GetMinimumIncrement();
66 }
67
68 double BridgeValue::GetMinimumValue()
69 {
70   return FindSelf()->GetMinimum();
71 }