2 * Copyright (c) 2021 Samsung Electronics Co., Ltd.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
19 #include <dali/internal/accessibility/bridge/bridge-value.h>
21 using namespace Dali::Accessibility;
23 BridgeValue::BridgeValue()
27 void BridgeValue::RegisterInterfaces()
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);
38 Value* BridgeValue::FindSelf() const
40 return FindCurrentObjectWithInterface<Dali::Accessibility::AtspiInterface::VALUE>();
43 double BridgeValue::GetCurrentValue()
45 return FindSelf()->GetCurrent();
48 void BridgeValue::SetCurrentValue(double newValue)
50 FindSelf()->SetCurrent(newValue);
53 std::string BridgeValue::GetCurrentValueText()
55 return FindSelf()->GetValueText();
58 double BridgeValue::GetMaximumValue()
60 return FindSelf()->GetMaximum();
63 double BridgeValue::GetMinimumIncrement()
65 return FindSelf()->GetMinimumIncrement();
68 double BridgeValue::GetMinimumValue()
70 return FindSelf()->GetMinimum();