X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Fdevel-api%2Fcontrols%2Faccessible-impl.cpp;h=774a280b7095e62e0ca0fba6cc9522e45842e46c;hp=c42cb8a40bc72a5bf00959351471b21345319903;hb=19a2b7b2c24a6b90750973de0a184f42338194b6;hpb=e8956b0df337f506154812b298eb5407a65711b2 diff --git a/dali-toolkit/devel-api/controls/accessible-impl.cpp b/dali-toolkit/devel-api/controls/accessible-impl.cpp index c42cb8a..774a280 100644 --- a/dali-toolkit/devel-api/controls/accessible-impl.cpp +++ b/dali-toolkit/devel-api/controls/accessible-impl.cpp @@ -328,6 +328,22 @@ void AccessibleImpl::ScrollToSelf() } } +void AccessibleImpl::RegisterPositionPropertyNotification() +{ + auto control = Dali::Toolkit::Control::DownCast(Self()); + Internal::Control& internalControl = Toolkit::Internal::GetImplementation(control); + Internal::Control::Impl& controlImpl = Internal::Control::Impl::Get(internalControl); + controlImpl.RegisterAccessibilityPositionPropertyNotification(); +} + +void AccessibleImpl::UnregisterPositionPropertyNotification() +{ + auto control = Dali::Toolkit::Control::DownCast(Self()); + Internal::Control& internalControl = Toolkit::Internal::GetImplementation(control); + Internal::Control::Impl& controlImpl = Internal::Control::Impl::Get(internalControl); + controlImpl.UnregisterAccessibilityPositionPropertyNotification(); +} + bool AccessibleImpl::GrabHighlight() { Dali::Actor self = Self(); @@ -360,11 +376,15 @@ bool AccessibleImpl::GrabHighlight() SetHighlightActor(highlight); } - highlight.SetProperty(Actor::Property::PARENT_ORIGIN, ParentOrigin::CENTER); - highlight.SetProperty(Actor::Property::ANCHOR_POINT, AnchorPoint::CENTER); + highlight.SetProperty(Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT); highlight.SetProperty(Actor::Property::POSITION_Z, 1.0f); highlight.SetProperty(Actor::Property::POSITION, Vector2(0.0f, 0.0f)); + // Need to set resize policy again, to update SIZE property which is set by + // AccessibleImpl_NUI. The highlight could move from AccessibleImpl_NUI to + // AccessibleImpl. In this case, highlight has incorrect size. + highlight.SetResizePolicy(ResizePolicy::FILL_TO_PARENT, Dimension::ALL_DIMENSIONS); + // Remember the highlight actor, so that when the default is changed with // SetHighlightActor(), the currently displayed highlight can still be cleared. mCurrentHighlightActor = highlight; @@ -372,6 +392,7 @@ bool AccessibleImpl::GrabHighlight() self.Add(highlight); SetCurrentlyHighlightedActor(self); EmitHighlighted(true); + RegisterPositionPropertyNotification(); return true; } @@ -387,6 +408,7 @@ bool AccessibleImpl::ClearHighlight() if(GetCurrentlyHighlightedActor() == self) { + UnregisterPositionPropertyNotification(); self.Remove(mCurrentHighlightActor.GetHandle()); mCurrentHighlightActor = {}; SetCurrentlyHighlightedActor({}); @@ -495,4 +517,14 @@ Dali::Property::Index AccessibleImpl::GetDescriptionPropertyIndex() return Dali::Property::INVALID_INDEX; } +void AccessibleImpl::SetLastPosition(Vector2 position) +{ + mLastPosition = position; +} + +Vector2 AccessibleImpl::GetLastPosition() const +{ + return mLastPosition; +} + } // namespace Dali::Toolkit::DevelControl