protected int dragStartX;
protected int dragStartY;
public MouseDragHandler(Widget dragHandle) {
this.dragHandle = dragHandle;
HasAllMouseHandlers hamh = (HasAllMouseHandlers) dragHandle;
hamh.addMouseDownHandler(this);
hamh.addMouseUpHandler(this);
hamh.addMouseMoveHandler(this);
}