X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Fpublic-api%2Fcontrols%2Fcontrol-impl.cpp;h=2c904524f21b0b562e063aaf29c34ce65a35da07;hb=f2039d47f9bed8104575da80a2ecf0bb6e37ff8d;hp=b4bb4da58a875321d9dfb5a8020d64bcf10348e2;hpb=5359a575636e678baf178dab5209b587be1a7551;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/public-api/controls/control-impl.cpp b/dali-toolkit/public-api/controls/control-impl.cpp index b4bb4da..2c90452 100644 --- a/dali-toolkit/public-api/controls/control-impl.cpp +++ b/dali-toolkit/public-api/controls/control-impl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 Samsung Electronics Co., Ltd. + * Copyright (c) 2021 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. @@ -19,9 +19,12 @@ #include // EXTERNAL INCLUDES +#include +#include #include #include #include +#include #include #include #include // for strcmp @@ -30,6 +33,7 @@ #include // INTERNAL INCLUDES +#include #include #include #include @@ -41,6 +45,7 @@ #include #include #include +#include #include #include #include @@ -234,6 +239,7 @@ void Control::EnableGestureDetection(GestureType::Value type) if((type & GestureType::PAN) && !mImpl->mPanGestureDetector) { mImpl->mPanGestureDetector = PanGestureDetector::New(); + mImpl->mPanGestureDetector.SetMaximumTouchesRequired(2); mImpl->mPanGestureDetector.DetectedSignal().Connect(mImpl, &Impl::PanDetected); mImpl->mPanGestureDetector.Attach(Self()); } @@ -367,7 +373,11 @@ void Control::KeyboardEnter() bool Control::OnAccessibilityActivated() { - return false; // Accessibility activation is not handled by default + if(Toolkit::KeyboardFocusManager::Get().SetCurrentFocusActor(Self())) + { + return OnKeyboardEnter(); + } + return false; } bool Control::OnKeyboardEnter() @@ -476,6 +486,17 @@ void Control::Initialize() { SetKeyboardNavigationSupport(true); } + + Dali::TypeInfo type; + Self().GetTypeInfo(type); + if(type) + { + auto typeName = type.GetName(); + DevelControl::AppendAccessibilityAttribute(Self(), "t", typeName); + } + + if(Accessibility::IsUp()) + mImpl->AccessibilityRegister(); } void Control::OnInitialize() @@ -524,6 +545,17 @@ void Control::EmitKeyInputFocusSignal(bool focusGained) { Dali::Toolkit::Control handle(GetOwner()); + if(Accessibility::IsUp()) + { + auto self = mImpl->GetAccessibilityObject(Self()); + self->EmitFocused(focusGained); + auto parent = self->GetParent(); + if(parent && !self->GetStates()[Dali::Accessibility::State::MANAGES_DESCENDANTS]) + { + parent->EmitActiveDescendantChanged(parent, self); + } + } + if(focusGained) { // signals are allocated dynamically when someone connects @@ -563,10 +595,18 @@ void Control::OnSceneConnection(int depth) // Request to be laid out when the control is connected to the Scene. // Signal that a Relayout may be needed + if(Accessibility::IsUp()) + { + mImpl->AccessibilityRegister(); + } } void Control::OnSceneDisconnection() { + if(Accessibility::IsUp()) + { + mImpl->AccessibilityDeregister(); + } mImpl->OnSceneDisconnection(); } @@ -592,10 +632,33 @@ void Control::OnPropertySet(Property::Index index, const Property::Value& proper { // If the clipping mode has been set, we may need to create a renderer. // Only do this if we are already on-stage as the OnSceneConnection will handle the off-stage clipping controls. - if((index == Actor::Property::CLIPPING_MODE) && Self().GetProperty(Actor::Property::CONNECTED_TO_SCENE)) + switch(index) { - // Note: This method will handle whether creation of the renderer is required. - CreateClippingRenderer(*this); + case Actor::Property::CLIPPING_MODE: + { + if(Self().GetProperty(Actor::Property::CONNECTED_TO_SCENE)) + { + // Note: This method will handle whether creation of the renderer is required. + CreateClippingRenderer(*this); + } + break; + } + case Actor::Property::VISIBLE: + { + if(Dali::Accessibility::IsUp()) + { + Dali::Accessibility::Accessible::Get(Self())->EmitVisible(Self().GetProperty(Actor::Property::VISIBLE).Get()); + } + break; + } + case Toolkit::DevelControl::Property::ACCESSIBILITY_ROLE: + { + if(Dali::Accessibility::IsUp()) + { + Dali::Accessibility::Accessible::Get(Self())->Emit(Dali::Accessibility::ObjectPropertyChangeEvent::ROLE); + } + break; + } } }