widget: expose drag methods (#5735)

This commit is contained in:
Ron Young
2018-10-01 14:31:55 -05:00
committed by Tomas Slusny
parent 7fcd1e846c
commit 69170781a5
3 changed files with 39 additions and 1 deletions

View File

@@ -531,7 +531,7 @@ public interface Widget
Object[] getOnKeyListener();
/**
* Array of widget load listeners
* Array of widget load listeners
*/
Object[] getOnLoadListener();
@@ -567,4 +567,24 @@ public interface Widget
* Sets if text should be shadowed
*/
void setTextShadowed(boolean shadowed);
/**
* Returns the widget drag dead zone
*/
int getDragDeadZone();
/**
* Sets the widget drag dead zone
*/
void setDragDeadZone(int deadZone);
/**
* Returns the widget drag dead time
*/
int getDragDeadTime();
/**
* Sets the widget drag dead time
*/
void setDragDeadTime(int deadTime);
}