efl/player: progress -> playback_progress

no functional changes

ref T7877

Reviewed-by: Cedric BAIL <cedric.bail@free.fr>
Differential Revision: https://phab.enlightenment.org/D10116
This commit is contained in:
Mike Blumenkrantz 2019-09-24 14:21:04 -04:00 committed by Cedric Bail
parent b730443e2d
commit 4b9d85173b
5 changed files with 7 additions and 7 deletions

View File

@ -57,7 +57,7 @@ interface @beta Efl.Player
sec: double; [[The position (in seconds).]]
}
}
@property progress {
@property playback_progress {
[[How much of the file has been played.
This function gets the progress in playing the file, the

View File

@ -60,7 +60,7 @@ class @beta Efl.Canvas.Video extends Efl.Canvas.Group
Efl.Player.playing { get; set; }
Efl.Player.paused { get; set; }
Efl.Player.playback_position { get; set; }
Efl.Player.progress { get; }
Efl.Player.playback_progress { get; }
Efl.Audio_Control.volume { get; set; }
Efl.Audio_Control.mute { get; set; }
Efl.Playable.length { get; }

View File

@ -1207,11 +1207,11 @@ emotion_object_progress_info_get(const Evas_Object *obj)
EAPI double
emotion_object_progress_status_get(const Evas_Object *obj)
{
return efl_player_progress_get(obj);
return efl_player_playback_progress_get(obj);
}
EOLIAN static double
_efl_canvas_video_efl_player_progress_get(const Eo *obj EINA_UNUSED, Efl_Canvas_Video_Data *sd)
_efl_canvas_video_efl_player_playback_progress_get(const Eo *obj EINA_UNUSED, Efl_Canvas_Video_Data *sd)
{
return sd->progress.stat;
}

View File

@ -336,7 +336,7 @@ _efl_canvas_animation_player_efl_player_playback_position_get(const Eo *eo_obj,
Efl_Canvas_Animation *anim = efl_animation_player_animation_get(eo_obj);
double length = efl_animation_duration_get(anim);
return length * efl_player_progress_get(eo_obj);
return length * efl_player_playback_progress_get(eo_obj);
}
EOLIAN static void
@ -360,7 +360,7 @@ _efl_canvas_animation_player_efl_player_playback_position_set(Eo *eo_obj,
}
EOLIAN static double
_efl_canvas_animation_player_efl_player_progress_get(const Eo *eo_obj EINA_UNUSED,
_efl_canvas_animation_player_efl_player_playback_progress_get(const Eo *eo_obj EINA_UNUSED,
Efl_Canvas_Animation_Player_Data *pd)
{
return pd->progress;

View File

@ -39,7 +39,7 @@ class @beta Efl.Canvas.Animation_Player extends Efl.Object implements Efl.Player
Efl.Player.paused { get; set; }
Efl.Playable.playable { get; }
Efl.Player.playback_position { get; set; }
Efl.Player.progress { get;}
Efl.Player.playback_progress { get;}
Efl.Player.playback_speed { get; set; }
//Efl.Player.volume { get; set; }
//Efl.Player.mute { get; set; }