8ac9007046ebd35efe40421bab30552fded75979
[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, "MaximumValue", &BridgeValue::GetMaximumValue);
32   AddGetPropertyToInterface(desc, "MinimumIncrement", &BridgeValue::GetMinimumIncrement);
33   AddGetPropertyToInterface(desc, "MinimumValue", &BridgeValue::GetMinimumValue);
34   mDbusServer.addInterface("/", desc, true);
35 }
36
37 Value* BridgeValue::FindSelf() const
38 {
39   return FindCurrentObjectWithInterface<Dali::Accessibility::AtspiInterface::VALUE>();
40 }
41
42 double BridgeValue::GetCurrentValue()
43 {
44   return FindSelf()->GetCurrent();
45 }
46
47 void BridgeValue::SetCurrentValue(double newValue)
48 {
49   FindSelf()->SetCurrent(newValue);
50 }
51
52 double BridgeValue::GetMaximumValue()
53 {
54   return FindSelf()->GetMaximum();
55 }
56
57 double BridgeValue::GetMinimumIncrement()
58 {
59   return FindSelf()->GetMinimumIncrement();
60 }
61
62 double BridgeValue::GetMinimumValue()
63 {
64   return FindSelf()->GetMinimum();
65 }