X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fcontrols%2Fbuttons%2Ftoggle-button-impl.cpp;h=a756a22e71796395bc6386cdf7e615c586b845c0;hp=dca592a7a6e9e615f378507f9657e4fcedb31d9f;hb=e3d6a0a27fd980a4ced6e7257abdc32bc192e871;hpb=8c98262c52c72d5767c4552bb3c294a1565aefaa diff --git a/dali-toolkit/internal/controls/buttons/toggle-button-impl.cpp b/dali-toolkit/internal/controls/buttons/toggle-button-impl.cpp old mode 100755 new mode 100644 index dca592a..a756a22 --- a/dali-toolkit/internal/controls/buttons/toggle-button-impl.cpp +++ b/dali-toolkit/internal/controls/buttons/toggle-button-impl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 Samsung Electronics Co., Ltd. + * Copyright (c) 2020 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -21,7 +21,6 @@ // EXTERNAL INCLUDES #include #include -#include #include #include #include @@ -111,6 +110,11 @@ void ToggleButton::OnInitialize() // Toggle button requires the Leave event. Actor self = Self(); self.SetProperty( Actor::Property::LEAVE_REQUIRED, true ); + + DevelControl::SetAccessibilityConstructor( Self(), []( Dali::Actor actor ) { + return std::unique_ptr< Dali::Accessibility::Accessible >( + new AccessibleImpl( actor, Dali::Accessibility::Role::TOGGLE_BUTTON ) ); + } ); } void ToggleButton::SetProperty( BaseObject* object, Property::Index propertyIndex, const Property::Value& value ) @@ -137,7 +141,7 @@ void ToggleButton::SetProperty( BaseObject* object, Property::Index propertyInde } case Toolkit::ToggleButton::Property::TOOLTIPS: { - Property::Array* tipArray = value.GetArray(); + const Property::Array* tipArray = value.GetArray(); if( tipArray ) { std::vector tips; @@ -373,6 +377,45 @@ void ToggleButton::OnPressed() RelayoutRequest(); } +Dali::Accessibility::States ToggleButton::AccessibleImpl::CalculateStates() +{ + auto states = Button::AccessibleImpl::CalculateStates(); + auto button = Toolkit::ToggleButton::DownCast( self ); + if( button.GetProperty( Toolkit::ToggleButton::Property::CURRENT_STATE_INDEX ) ) + states[Dali::Accessibility::State::CHECKED] = true; + return states; +} + +std::string ToggleButton::AccessibleImpl::GetDescriptionRaw() +{ + auto button = Toolkit::ToggleButton::DownCast( self ); + auto index = button.GetProperty( Toolkit::ToggleButton::Property::CURRENT_STATE_INDEX ); + auto tooltips = button.GetProperty( Toolkit::ToggleButton::Property::TOOLTIPS ); + + return tooltips[index].Get(); +} + +Property::Index ToggleButton::AccessibleImpl::GetDescriptionPropertyIndex() +{ + return Toolkit::ToggleButton::Property::TOOLTIPS; +} + +void ToggleButton::OnStateChange( State newState ) +{ + // TODO: replace it with OnPropertySet hook once Button::Property::SELECTED will be consistently used + if (Dali::Accessibility::IsUp() && (newState == SELECTED_STATE || newState == UNSELECTED_STATE)) + { + Dali::Accessibility::Accessible::Get(Self())->EmitStateChanged( + Dali::Accessibility::State::CHECKED, mCurrentToggleIndex ? 1 : 0, 0 + ); + + if(Self() == Dali::Accessibility::Accessible::GetCurrentlyHighlightedActor()) + { + Dali::Accessibility::Accessible::Get(Self())->Emit(Dali::Accessibility::ObjectPropertyChangeEvent::DESCRIPTION); + } + } +} + } // namespace Internal } // namespace Toolkit