summaryrefslogtreecommitdiff
path: root/src/lib/efl/interfaces
diff options
context:
space:
mode:
authorCedric BAIL <cedric@osg.samsung.com>2016-03-10 13:03:02 -0800
committerCedric BAIL <cedric@osg.samsung.com>2016-03-10 13:14:13 -0800
commit685681c8643a143a6ec708d56fc03366b66f80a5 (patch)
tree31037e40478d33c6503662a9be2e90ddb76ed1d6 /src/lib/efl/interfaces
parent9646f8e9ecf9a148f0811a7d01398d97bf50d168 (diff)
downloadefl-685681c8643a143a6ec708d56fc03366b66f80a5.tar.gz
efl: rename efl.core.animator to efl.animator.
It has been decided that we would not use any namespace for interface and they will sit in efl main namespace. This patch doesn't correct the naming of the event has we don't have a prefix for event. We do still have EFL_ANIMATOR_EVENT_ANIMATOR_TICK, instead of a nicer EFL_EVENT_ANIMATOR_TICK.
Diffstat (limited to 'src/lib/efl/interfaces')
-rw-r--r--src/lib/efl/interfaces/efl_animator.eo13
-rw-r--r--src/lib/efl/interfaces/efl_core_animator.eo13
-rw-r--r--src/lib/efl/interfaces/efl_interfaces_main.c2
3 files changed, 14 insertions, 14 deletions
diff --git a/src/lib/efl/interfaces/efl_animator.eo b/src/lib/efl/interfaces/efl_animator.eo
new file mode 100644
index 0000000000..b9a32e996a
--- /dev/null
+++ b/src/lib/efl/interfaces/efl_animator.eo
@@ -0,0 +1,13 @@
+import eina_types;
+
+struct Efl.Event.Animator_Tick {
+ update_area: Eina.Rectangle; [[Area of the canvas that will be pushed to screen.]]
+}
+
+interface Efl.Animator {
+ legacy_prefix: null;
+ eo_prefix: efl_animator;
+ events {
+ animator,tick: Efl.Event.Animator_Tick; [[Animator tick synchronized with screen vsync if possible.]]
+ }
+}
diff --git a/src/lib/efl/interfaces/efl_core_animator.eo b/src/lib/efl/interfaces/efl_core_animator.eo
deleted file mode 100644
index f652ec8a4f..0000000000
--- a/src/lib/efl/interfaces/efl_core_animator.eo
+++ /dev/null
@@ -1,13 +0,0 @@
-import eina_types;
-
-struct Efl.Core.Event.Animator_Tick {
- update_area: Eina.Rectangle; [[Area of the canvas that will be pushed to screen.]]
-}
-
-interface Efl.Core.Animator {
- legacy_prefix: null;
- eo_prefix: efl_animator;
- events {
- animator,tick: Efl.Core.Event.Animator_Tick; [[Animator tick synchronized with screen vsync if possible.]]
- }
-}
diff --git a/src/lib/efl/interfaces/efl_interfaces_main.c b/src/lib/efl/interfaces/efl_interfaces_main.c
index ff090cbcfc..cd962dd86f 100644
--- a/src/lib/efl/interfaces/efl_interfaces_main.c
+++ b/src/lib/efl/interfaces/efl_interfaces_main.c
@@ -29,4 +29,4 @@ EAPI const Eo_Event_Description _EFL_GFX_PATH_CHANGED =
EO_EVENT_DESCRIPTION("Graphics path changed");
#include "interfaces/efl_model_base.eo.c"
-#include "interfaces/efl_core_animator.eo.c"
+#include "interfaces/efl_animator.eo.c"