All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.code.gwt.crop.client.CropperStyleResource Maven / Gradle / Ivy

There is a newer version: 0.5.5
Show newest version
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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy