X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Fdevel-api%2Factors%2Factor-devel.cpp;h=650fe92500bbdab4e14935032b007df73d8d5376;hb=c419689d2ee590bceab57b1f8786d64ee0536520;hp=eabcb3a93f2c9834000bf1fd939d629b46ceaf55;hpb=63c292a68921d0087b9509933f838558c90e9e69;p=platform%2Fcore%2Fuifw%2Fdali-core.git diff --git a/dali/devel-api/actors/actor-devel.cpp b/dali/devel-api/actors/actor-devel.cpp old mode 100644 new mode 100755 index eabcb3a..650fe92 --- a/dali/devel-api/actors/actor-devel.cpp +++ b/dali/devel-api/actors/actor-devel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017 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. @@ -21,13 +21,41 @@ namespace Dali { - namespace DevelActor { +Rect<> CalculateScreenExtents(Actor actor) +{ + return GetImplementation(actor).CalculateScreenExtents(); +} + +VisibilityChangedSignalType& VisibilityChangedSignal(Actor actor) +{ + return GetImplementation(actor).VisibilityChangedSignal(); +} + +ChildChangedSignalType& ChildAddedSignal(Actor actor) +{ + return GetImplementation(actor).ChildAddedSignal(); +} + +ChildChangedSignalType& ChildRemovedSignal(Actor actor) +{ + return GetImplementation(actor).ChildRemovedSignal(); +} + +ChildOrderChangedSignalType& ChildOrderChangedSignal(Actor actor) +{ + return GetImplementation(actor).ChildOrderChangedSignal(); +} + +Actor::TouchEventSignalType& InterceptTouchedSignal(Actor actor) +{ + return GetImplementation(actor).InterceptTouchedSignal(); +} -VisibilityChangedSignalType& VisibilityChangedSignal( Actor actor ) +void SwitchParent(Actor actor, Actor newParent) { - return GetImplementation( actor ).VisibilityChangedSignal(); + return GetImplementation(actor).SwitchParent(GetImplementation(newParent)); } } // namespace DevelActor