[Tizen] Adds transition effect
[platform/core/uifw/dali-core.git] / dali / devel-api / actors / actor-devel.cpp
old mode 100644 (file)
new mode 100755 (executable)
index 52b4cf1..650fe92
@@ -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.
 
 namespace Dali
 {
-
 namespace DevelActor
 {
-
-void Raise( Actor actor )
-{
-  GetImplementation( actor ).Raise();
-}
-
-void Lower( Actor actor )
+Rect<> CalculateScreenExtents(Actor actor)
 {
-  GetImplementation( actor ).Lower();
+  return GetImplementation(actor).CalculateScreenExtents();
 }
 
-void RaiseToTop( Actor actor )
+VisibilityChangedSignalType& VisibilityChangedSignal(Actor actor)
 {
-  GetImplementation( actor ).RaiseToTop();
+  return GetImplementation(actor).VisibilityChangedSignal();
 }
 
-void LowerToBottom( Actor actor )
+ChildChangedSignalType& ChildAddedSignal(Actor actor)
 {
-  GetImplementation( actor ).LowerToBottom();
+  return GetImplementation(actor).ChildAddedSignal();
 }
 
-void RaiseAbove( Actor actor, Actor target )
+ChildChangedSignalType& ChildRemovedSignal(Actor actor)
 {
-  GetImplementation( actor ).RaiseAbove( GetImplementation( target ) );
+  return GetImplementation(actor).ChildRemovedSignal();
 }
 
-void LowerBelow( Actor actor, Actor target )
+ChildOrderChangedSignalType& ChildOrderChangedSignal(Actor actor)
 {
-  GetImplementation( actor ).LowerBelow( GetImplementation( target ) );
+  return GetImplementation(actor).ChildOrderChangedSignal();
 }
 
-VisibilityChangedSignalType& VisibilityChangedSignal( Actor actor )
+Actor::TouchEventSignalType& InterceptTouchedSignal(Actor actor)
 {
-  return GetImplementation( actor ).VisibilityChangedSignal();
+  return GetImplementation(actor).InterceptTouchedSignal();
 }
 
-LayoutDirectionChangedSignalType& LayoutDirectionChangedSignal( Actor actor )
+void SwitchParent(Actor actor, Actor newParent)
 {
-  return GetImplementation( actor ).LayoutDirectionChangedSignal();
+  return GetImplementation(actor).SwitchParent(GetImplementation(newParent));
 }
 
 } // namespace DevelActor