docs: efl_ui: fill gaps in efl_ui eo file documentation

This commit is contained in:
Stefan Schmidt 2016-11-15 11:50:13 +01:00
parent b768a365e6
commit a198c2423c
2 changed files with 13 additions and 13 deletions

View File

@ -23,13 +23,13 @@ interface Efl.Ui.Draggable ()
}
events {
drag;
drag,start;
drag,stop;
drag,end;
drag,start,up;
drag,start,down;
drag,start,right;
drag,start,left;
drag; [[Called when drag operation starts]]
drag,start; [[Called when drag started]]
drag,stop; [[Called when drag stopped]]
drag,end; [[Called when drag operation ends]]
drag,start,up; [[Called when drag starts into up direction]]
drag,start,down; [[Called when drag starts into down direction]]
drag,start,right; [[Called when drag starts into right direction]]
drag,start,left; [[Called when drag starts into left direction]]
}
}

View File

@ -3,10 +3,10 @@ interface Efl.Ui.Scrollable ()
[[Efl UI scrollable interface]]
event_prefix: efl_ui;
events {
scroll;
scroll,anim,start;
scroll,anim,stop;
scroll,drag,start;
scroll,drag,stop;
scroll; [[Called when scroll operation started]]
scroll,anim,start; [[Called when scroll animation started]]
scroll,anim,stop; [[Called when scroll animation stopped]]
scroll,drag,start; [[Called when scroll drag started]]
scroll,drag,stop; [[Called when scroll drag stopped]]
}
}