From: Seoyeon Kim Date: Tue, 23 Nov 2021 08:59:25 +0000 (+0000) Subject: Merge "[ATSPI] Implementation of Hypertext and Hyperlink in text controls" into devel... X-Git-Tag: dali_2.1.0~5 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=commitdiff_plain;h=79f571c4268280bc8384dae746193742f713e745;hp=c6aa87aaec61d4ab3638c397b3ba4bd08ecb13a6 Merge "[ATSPI] Implementation of Hypertext and Hyperlink in text controls" into devel/master --- diff --git a/build/tizen/docs/dali.doxy.in b/build/tizen/docs/dali.doxy.in index 27a21bc..0fefc0e 100644 --- a/build/tizen/docs/dali.doxy.in +++ b/build/tizen/docs/dali.doxy.in @@ -357,6 +357,7 @@ ALIASES += SINCE_1_3="@since 1.3" ALIASES += SINCE_1_4="@since 1.4" ALIASES += SINCE_1_9="@since 1.9" ALIASES += SINCE_2_0="@since 2.0" +ALIASES += SINCE_2_1="@since 2.1" # Extra tags for Tizen 3.0 ALIASES += SINCE_1_2_2="@since 1.2.2" @@ -385,6 +386,7 @@ ALIASES += DEPRECATED_1_3_39="@deprecated Deprecated since 1.3.39" ALIASES += DEPRECATED_1_3_51="@deprecated Deprecated since 1.3.51" ALIASES += DEPRECATED_1_4="@deprecated Deprecated since 1.4" ALIASES += DEPRECATED_2_0="@deprecated Deprecated since 2.0" +ALIASES += DEPRECATED_2_1="@deprecated Deprecated since 2.1" ALIASES += PLATFORM="" ALIASES += PRIVLEVEL_PLATFORM="" @@ -404,7 +406,8 @@ ALIASES += REMARK_RAWVIDEO="" #ALIASES += SINCE_1_3="\par Since:\n 5.0, DALi version 1.3" #ALIASES += SINCE_1_4="\par Since:\n 5.5, DALi version 1.4" #ALIASES += SINCE_1_9="\par Since:\n 6.0, DALi version 1.9" -#ALIASES += SINCE_2_0="\par Since:\n 6.0, DALi version 2.0" +#ALIASES += SINCE_2_0="\par Since:\n 6.5, DALi version 2.0" +#ALIASES += SINCE_2_1="\par Since:\n 7.0, DALi version 2.1" ## Extra tags for Tizen 3.0 #ALIASES += SINCE_1_2_2="\par Since:\n 3.0, DALi version 1.2.2" @@ -434,7 +437,8 @@ ALIASES += REMARK_RAWVIDEO="" #ALIASES += DEPRECATED_1_3_39="@deprecated Deprecated since 5.5, DALi version 1.3.39" #ALIASES += DEPRECATED_1_3_51="@deprecated Deprecated since 5.5, DALi version 1.3.51" #ALIASES += DEPRECATED_1_4="@deprecated Deprecated since 5.5, DALi version 1.4" -#ALIASES += DEPRECATED_2_0="@deprecated Deprecated since 5.5, DALi version 2.0" +#ALIASES += DEPRECATED_2_0="@deprecated Deprecated since 6.5, DALi version 2.0" +#ALIASES += DEPRECATED_2_1="@deprecated Deprecated since 7.0, DALi version 2.1" #ALIASES += PLATFORM="@platform" #ALIASES += PRIVLEVEL_PLATFORM="\par Privilege Level:\n platform" diff --git a/dali-toolkit/public-api/controls/control-impl.cpp b/dali-toolkit/public-api/controls/control-impl.cpp index 64745d0..db99728 100644 --- a/dali-toolkit/public-api/controls/control-impl.cpp +++ b/dali-toolkit/public-api/controls/control-impl.cpp @@ -572,14 +572,6 @@ void Control::OnPropertySet(Property::Index index, const Property::Value& proper } break; } - case Toolkit::DevelControl::Property::ACCESSIBILITY_ROLE: - { - if(Dali::Accessibility::IsUp()) - { - Dali::Accessibility::Accessible::Get(Self())->Emit(Dali::Accessibility::ObjectPropertyChangeEvent::ROLE); - } - break; - } } }