accounting-manager-theme/src/com/sencha/gxt/theme/neptune/client/SliderDetails.java

45 lines
1.3 KiB
Java

/**
* Sencha GXT 3.1.1 - Sencha for GWT
* Copyright(c) 2007-2014, Sencha, Inc.
* licensing@sencha.com
*
* http://www.sencha.com/products/gxt/license/
*/
package com.sencha.gxt.theme.neptune.client;
import com.sencha.gxt.themebuilder.base.client.config.TypeDetails;
/**
* Captures details for the Slider field appearance generation
*/
public interface SliderDetails {
@TypeDetails(sampleValue = "#f5f5f5", comment = "background color for slider track")
String trackBackgroundColor();
@TypeDetails(sampleValue = "util.border('solid', '#d4d4d4', 1)", comment = "border")
BorderDetails trackBorder();
@TypeDetails(sampleValue = "8", comment = "height of track, not the entire field")
int trackHeight();
@TypeDetails(sampleValue = "4", comment = "border radius for track")
int trackRadius();
@TypeDetails(sampleValue = "#f5f5f5", comment = "background color for thumb")
String thumbBackgroundColor();
@TypeDetails(sampleValue = "util.border('solid', '#777777', 1)", comment = "border")
BorderDetails thumbBorder();
@TypeDetails(sampleValue = "15", comment = "height of thumb")
int thumbHeight();
@TypeDetails(sampleValue = "8", comment = "border radius for thumb")
int thumbRadius();
@TypeDetails(sampleValue = "15", comment = "width of thumb")
int thumbWidth();
}