com.google.code.gwt.crop.client.Constants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gwt-crop Show documentation
Show all versions of gwt-crop Show documentation
GWT plugin for image cropping
package com.google.code.gwt.crop.client;
/**
* Constants for the GWT cropper to match action type
*
* @author [email protected] (Ilja Hämäläinen)
*
*/
interface Constants {
byte DRAG_NONE = 0;
byte DRAG_BACKGROUND = 1;
byte DRAG_TOP_LEFT_CORNER = 2;
byte DRAG_TOP_RIGHT_CORNER = 3;
byte DRAG_BOTTOM_LEFT_CORNER = 4;
byte DRAG_BOTTOM_RIGHT_CORNER = 5;
}