com.google.code.gwt.crop.client.CropperStyleResource 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;
import com.google.gwt.resources.client.CssResource;
/**
* CssResource interface for GWT Cropper styles
*
* @author [email protected] (Ilja Hämäläinen)
*/
interface CropperStyleResource extends CssResource {
String base();
String imageCanvas();
String selection();
String selectionDraggableBackground();
String handlesContainer();
String handle();
/**
* Declares the size of a handle. Assume, that it has the equal width and height
*
* @return handle size in pixels
*/
int handleSize();
}