summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJunsuChoi <jsuya.choi@samsung.com>2020-01-16 20:11:49 +0900
committerJunsuChoi <jsuya.choi@samsung.com>2020-01-16 20:11:49 +0900
commit2f4ca46544c93a7d7bbbded0cf37cb34f1672b53 (patch)
tree27134d8cb2cd7bbaf20924492d4e062d5dfc656c /src
parent05bb02cbb021e97bbb4caf21af756ee15f144e9d (diff)
downloadefl-2f4ca46544c93a7d7bbbded0cf37cb34f1672b53.tar.gz
Efl.Ui.Vg_Animation: Change property name autorepeat to looping
Summary: autoplay and autorepeat look similar and can be confusing. so change autorepeat to looping. ref T8476 Depends on D11022 Test Plan: N/A Reviewers: Hermet, bu5hm4n, kimcinoo, segfaultxavi, zmike Reviewed By: Hermet, segfaultxavi Subscribers: cedric, #reviewers, #committers Tags: #efl Maniphest Tasks: T8476 Differential Revision: https://phab.enlightenment.org/D11061
Diffstat (limited to 'src')
-rw-r--r--src/bin/elementary/test_efl_gfx_vg_value_provider.c2
-rw-r--r--src/bin/elementary/test_efl_ui_vg_animation.c2
-rw-r--r--src/lib/elementary/efl_ui_vg_animation.c16
-rw-r--r--src/lib/elementary/efl_ui_vg_animation.eo10
-rw-r--r--src/lib/elementary/efl_ui_vg_animation_eo.legacy.c4
-rw-r--r--src/lib/elementary/efl_ui_vg_animation_private.h2
-rw-r--r--src/tests/elementary/efl_ui_test_vg_animation.c4
7 files changed, 20 insertions, 20 deletions
diff --git a/src/bin/elementary/test_efl_gfx_vg_value_provider.c b/src/bin/elementary/test_efl_gfx_vg_value_provider.c
index 5b9424c8d6..5127bb0eb2 100644
--- a/src/bin/elementary/test_efl_gfx_vg_value_provider.c
+++ b/src/bin/elementary/test_efl_gfx_vg_value_provider.c
@@ -159,7 +159,7 @@ static void
check_changed_cb(void *data, const Efl_Event *event)
{
Evas_Object *anim_view = data;
- efl_ui_vg_animation_autorepeat_set(anim_view, efl_ui_selectable_selected_get(event->object));
+ efl_ui_vg_animation_looping_set(anim_view, efl_ui_selectable_selected_get(event->object));
}
static void
diff --git a/src/bin/elementary/test_efl_ui_vg_animation.c b/src/bin/elementary/test_efl_ui_vg_animation.c
index b51491906d..5d943a795f 100644
--- a/src/bin/elementary/test_efl_ui_vg_animation.c
+++ b/src/bin/elementary/test_efl_ui_vg_animation.c
@@ -52,7 +52,7 @@ static void
check_changed_cb(void *data, const Efl_Event *event)
{
Evas_Object *anim_view = data;
- efl_ui_vg_animation_autorepeat_set(anim_view, efl_ui_selectable_selected_get(event->object));
+ efl_ui_vg_animation_looping_set(anim_view, efl_ui_selectable_selected_get(event->object));
}
static void
diff --git a/src/lib/elementary/efl_ui_vg_animation.c b/src/lib/elementary/efl_ui_vg_animation.c
index 503ea856e6..e723a922a4 100644
--- a/src/lib/elementary/efl_ui_vg_animation.c
+++ b/src/lib/elementary/efl_ui_vg_animation.c
@@ -217,7 +217,7 @@ _transit_cb(Elm_Transit_Effect *effect, Elm_Transit *transit, double progress)
evas_object_vg_animated_frame_set(pd->vg, update_frame);
- if (pd->autorepeat)
+ if (pd->looping)
{
int repeat_times = elm_transit_current_repeat_times_get(pd->transit);
if (pd->repeat_times != repeat_times)
@@ -327,7 +327,7 @@ _ready_play(Eo *obj, Efl_Ui_Vg_Animation_Data *pd)
double speed = pd->playback_speed < 0 ? pd->playback_speed * -1 : pd->playback_speed;
Elm_Transit *transit = elm_transit_add();
elm_transit_object_add(transit, pd->vg);
- if (pd->autorepeat) elm_transit_repeat_times_set(transit, -1);
+ if (pd->looping) elm_transit_repeat_times_set(transit, -1);
elm_transit_effect_add(transit, _transit_cb, obj, _transit_del_cb);
elm_transit_progress_value_set(transit, pd->progress);
elm_transit_objects_final_state_keep_set(transit, EINA_TRUE);
@@ -462,21 +462,21 @@ _efl_ui_vg_animation_efl_gfx_view_view_size_get(const Eo *obj EINA_UNUSED,
}
EOLIAN static void
-_efl_ui_vg_animation_autorepeat_set(Eo *obj EINA_UNUSED, Efl_Ui_Vg_Animation_Data *pd, Eina_Bool autorepeat)
+_efl_ui_vg_animation_looping_set(Eo *obj EINA_UNUSED, Efl_Ui_Vg_Animation_Data *pd, Eina_Bool looping)
{
- if (pd->autorepeat == autorepeat) return;
- pd->autorepeat = autorepeat;
+ if (pd->looping == looping) return;
+ pd->looping = looping;
if (pd->transit)
{
- if (autorepeat) elm_transit_repeat_times_set(pd->transit, -1);
+ if (looping) elm_transit_repeat_times_set(pd->transit, -1);
else elm_transit_repeat_times_set(pd->transit, 0);
}
}
EOLIAN static Eina_Bool
-_efl_ui_vg_animation_autorepeat_get(const Eo *obj EINA_UNUSED, Efl_Ui_Vg_Animation_Data *pd)
+_efl_ui_vg_animation_looping_get(const Eo *obj EINA_UNUSED, Efl_Ui_Vg_Animation_Data *pd)
{
- return pd->autorepeat;
+ return pd->looping;
}
EOLIAN static void
diff --git a/src/lib/elementary/efl_ui_vg_animation.eo b/src/lib/elementary/efl_ui_vg_animation.eo
index 12dcfe96c6..9c44a93665 100644
--- a/src/lib/elementary/efl_ui_vg_animation.eo
+++ b/src/lib/elementary/efl_ui_vg_animation.eo
@@ -47,20 +47,20 @@ class @beta Efl.Ui.Vg_Animation extends Efl.Ui.Widget implements Efl.Gfx.View, E
autoplay: bool(false); [[Auto play mode.]]
}
}
- @property autorepeat {
+ @property looping {
[[Turn on/off animation looping.
- If @.autorepeat is $true, it repeats animation when animation frame is reached to
- end. This auto repeat mode is valid to both playing and playing_backwards cases.
+ When $true, animation is restarted when it reaches the last frame.
+ This works both when playing forward and backward.
- $true Enable auto play mode, disable otherwise.
+ $true Enable loop mode, disable otherwise.
]]
set {
}
get {
}
values {
- autorepeat: bool; [[Loop mode, Default is $false.]]
+ looping: bool; [[Loop mode, Default is $false.]]
}
}
@property frame {
diff --git a/src/lib/elementary/efl_ui_vg_animation_eo.legacy.c b/src/lib/elementary/efl_ui_vg_animation_eo.legacy.c
index 04aba9206f..78c24cfe11 100644
--- a/src/lib/elementary/efl_ui_vg_animation_eo.legacy.c
+++ b/src/lib/elementary/efl_ui_vg_animation_eo.legacy.c
@@ -14,13 +14,13 @@ elm_animation_view_auto_play_get(const Efl_Ui_Vg_Animation *obj)
EAPI void
elm_animation_view_auto_repeat_set(Efl_Ui_Vg_Animation *obj, Eina_Bool autorepeat)
{
- efl_ui_vg_animation_autorepeat_set(obj, autorepeat);
+ efl_ui_vg_animation_looping_set(obj, autorepeat);
}
EAPI Eina_Bool
elm_animation_view_auto_repeat_get(const Efl_Ui_Vg_Animation *obj)
{
- return efl_ui_vg_animation_autorepeat_get(obj);
+ return efl_ui_vg_animation_looping_get(obj);
}
EAPI Eina_Bool
diff --git a/src/lib/elementary/efl_ui_vg_animation_private.h b/src/lib/elementary/efl_ui_vg_animation_private.h
index b36ba79d79..98304f39ad 100644
--- a/src/lib/elementary/efl_ui_vg_animation_private.h
+++ b/src/lib/elementary/efl_ui_vg_animation_private.h
@@ -24,7 +24,7 @@ struct _Efl_Ui_Vg_Animation_Data
Eina_Bool playing_reverse : 1;
Eina_Bool autoplay : 1;
Eina_Bool autoplay_pause: 1;
- Eina_Bool autorepeat : 1;
+ Eina_Bool looping : 1;
Eina_Bool playback_direction_changed : 1;
};
diff --git a/src/tests/elementary/efl_ui_test_vg_animation.c b/src/tests/elementary/efl_ui_test_vg_animation.c
index 0a0f397156..2da7d0fbde 100644
--- a/src/tests/elementary/efl_ui_test_vg_animation.c
+++ b/src/tests/elementary/efl_ui_test_vg_animation.c
@@ -50,8 +50,8 @@ EFL_START_TEST(vg_anim_playing_control)
ck_assert_int_eq(efl_ui_vg_animation_state_get(vg_anim), EFL_UI_VG_ANIMATION_STATE_STOPPED);
// Auto repeat
- efl_ui_vg_animation_autorepeat_set(vg_anim, EINA_TRUE);
- ck_assert_int_eq(efl_ui_vg_animation_autorepeat_get(vg_anim), EINA_TRUE);
+ efl_ui_vg_animation_looping_set(vg_anim, EINA_TRUE);
+ ck_assert_int_eq(efl_ui_vg_animation_looping_get(vg_anim), EINA_TRUE);
// Auto play
efl_ui_vg_animation_autoplay_set(vg_anim, EINA_TRUE);