[Tizen] Implement partial update
[platform/core/uifw/dali-core.git] / dali / devel-api / actors / actor-devel.cpp
index 5b63c86..3f3b9ab 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2018 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.
@@ -25,35 +25,32 @@ namespace Dali
 namespace DevelActor
 {
 
-void Raise( Actor actor )
+Rect<> CalculateScreenExtents( Actor actor )
 {
-  GetImplementation( actor ).Raise();
+  return GetImplementation( actor ).CalculateScreenExtents();
 }
 
-void Lower( Actor actor )
+VisibilityChangedSignalType& VisibilityChangedSignal( Actor actor )
 {
-  GetImplementation( actor ).Lower();
+  return GetImplementation( actor ).VisibilityChangedSignal();
 }
 
-void RaiseToTop( Actor actor )
+ChildChangedSignalType& ChildAddedSignal( Actor actor )
 {
-  GetImplementation( actor ).RaiseToTop();
+  return GetImplementation( actor ).ChildAddedSignal();
 }
 
-void LowerToBottom( Actor actor )
+ChildChangedSignalType& ChildRemovedSignal( Actor actor )
 {
-  GetImplementation( actor ).LowerToBottom();
+  return GetImplementation( actor ).ChildRemovedSignal();
 }
 
-void RaiseAbove( Actor actor, Dali::Actor target )
+ChildOrderChangedSignalType& ChildOrderChangedSignal( Actor actor )
 {
-  GetImplementation( actor ).RaiseAbove( target );
+  return GetImplementation( actor ).ChildOrderChangedSignal();
 }
 
-void LowerBelow( Actor actor, Actor target )
-{
-  GetImplementation( actor ).LowerBelow( target);
-}
+
 
 } // namespace DevelActor