X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Fpublic-api%2Factors%2Factor.cpp;h=b96283f7b49967824178a6eccaef2b5d6d7a99a6;hb=a62dc57b01b08ebcfd0aed24afc8f156fbe7c619;hp=34b8690533c6f44e9b82a6e1eac1644026279d8c;hpb=dd4bc34bdeb8d96806a4683367d08af4f98fbb51;p=platform%2Fcore%2Fuifw%2Fdali-core.git diff --git a/dali/public-api/actors/actor.cpp b/dali/public-api/actors/actor.cpp index 34b8690..b96283f 100644 --- a/dali/public-api/actors/actor.cpp +++ b/dali/public-api/actors/actor.cpp @@ -28,7 +28,6 @@ #include #include #include -#include #include #include @@ -248,11 +247,15 @@ Vector3 Actor::GetCurrentWorldPosition() const void Actor::SetPositionInheritanceMode( PositionInheritanceMode mode ) { + DALI_LOG_WARNING_NOFN("DEPRECATION WARNING: SetPositionInheritanceMode() is deprecated and will be removed from next release. Use SetInheritPosition() instead.\n" ); + GetImplementation(*this).SetPositionInheritanceMode( mode ); } PositionInheritanceMode Actor::GetPositionInheritanceMode() const { + DALI_LOG_WARNING_NOFN("DEPRECATION WARNING: GetPositionInheritanceMode() is deprecated and will be removed from next release. Use IsPositionInherited() instead.\n" ); + return GetImplementation(*this).GetPositionInheritanceMode(); } @@ -537,9 +540,16 @@ int Actor::GetHierarchyDepth() Actor::TouchSignalType& Actor::TouchedSignal() { + DALI_LOG_WARNING_NOFN("DEPRECATION WARNING: TouchedSignal() is deprecated and will be removed from next release. Use TouchSignal() instead.\n" ); + return GetImplementation(*this).TouchedSignal(); } +Actor::TouchDataSignalType& Actor::TouchSignal() +{ + return GetImplementation( *this ).TouchSignal(); +} + Actor::HoverSignalType& Actor::HoveredSignal() { return GetImplementation(*this).HoveredSignal();