efl/src/lib/evas/canvas/efl_ui_draggable.eo

35 lines
969 B
Plaintext

interface Efl.Ui.Draggable ()
{
event_prefix: efl_ui;
methods {
@property drag_target {
[[Contrtol whether the object's content is changed by drag and drop.
If $drag_target is true, the object can be target of dragging
object and the content of this object can be changed into
dragging content. For example, If object deals with image and
$drag_target is true, user can drag new image and drop it into
this object. And then this object's image can be changed into
new image.]]
set {
}
get {
}
values {
set: bool; [[Turn on or off drop_target. Default is $false.]]
}
}
}
events {
drag;
drag,start;
drag,stop;
drag,end;
drag,start,up;
drag,start,down;
drag,start,right;
drag,start,left;
}
}