Evas: Move smart_move_children_relative to evas smart
authorJean-Philippe Andre <jp.andre@samsung.com>
Thu, 16 Jun 2016 08:56:18 +0000 (17:56 +0900)
committerJean-Philippe Andre <jp.andre@samsung.com>
Fri, 17 Jun 2016 02:37:39 +0000 (11:37 +0900)
This is temporary...

src/lib/evas/canvas/evas_object.eo
src/lib/evas/canvas/evas_object_smart.eo

index 952e97f..dc004d2 100644 (file)
@@ -652,23 +652,6 @@ abstract Evas.Object (Eo.Base, Evas.Common_Interface, Efl.Gfx, Efl.Gfx.Stack,
            See also @.clip.set, @.clipees.get and @.clip.get.
          ]]
       }
-      smart_move_children_relative {
-         [[Moves all children objects of a given smart object relative to a
-           given offset.
-
-           This will make each of $obj object's children to move, from where
-           they before, with those delta values (offsets) on both directions.
-
-           Note: This is most useful on custom smart $move functions.
-
-           Note: Clipped smart objects already make use of this function on
-           their $move smart function definition.
-         ]]
-         params {
-            @in dx: Evas.Coord; [[Horizontal offset (delta).]]
-            @in dy: Evas.Coord; [[Vertical offset (delta).]]
-         }
-      }
       @property no_render {
          get {
             [[Returns the state of the "no-render" flag, which means, when
index 4859528..754c0bb 100644 (file)
@@ -299,6 +299,23 @@ class Evas.Object.Smart (Evas.Object)
          }
          legacy: null;
       }
+      move_children_relative {
+         [[Moves all children objects of a given smart object relative to a
+           given offset.
+
+           This will make each of $obj object's children to move, from where
+           they before, with those delta values (offsets) on both directions.
+
+           Note: This is most useful on custom smart $move functions.
+
+           Note: Clipped smart objects already make use of this function on
+           their $move smart function definition.
+         ]]
+         params {
+            @in dx: Evas.Coord; [[Horizontal offset (delta).]]
+            @in dy: Evas.Coord; [[Vertical offset (delta).]]
+         }
+      }
    }
    implements {
       class.constructor;