You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
accounting-manager-theme/src/com/sencha/gxt/theme/neptune/client/FramedPanelDetails.java

48 lines
1.5 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;
public interface FramedPanelDetails extends PanelDetails {
@TypeDetails(sampleValue = "1", comment = "border radius of the framed panel")
int borderRadius();
@TypeDetails(sampleValue = "util.radiusMinusBorderWidth(border, borderRadius)", comment = "helper for leftover space in css3 versus sliced images")
EdgeDetails radiusMinusBorderWidth();
@Override
@TypeDetails(sampleValue = "#ffffff", comment = "background color for the panel body")
String backgroundColor();
@Override
@TypeDetails(sampleValue = "util.padding(0)", comment = "entire panel padding")
EdgeDetails padding();
@Override
@TypeDetails(sampleValue = "util.padding(10)", comment = "header padding")
EdgeDetails headerPadding();
@Override
@TypeDetails(sampleValue = "#ccffff", comment = "background color to fill behind the header gradient")
String headerBackgroundColor();
@Override
@TypeDetails(sampleValue = "#ccffff, #ccffff", comment = "header gradient string")
String headerGradient();
@Override
@TypeDetails(sampleValue = "util.border('solid', '#000000', 1)", comment = "border around the contentpanel")
BorderDetails border();
@Override
@TypeDetails(sampleValue = "util.fontStyle('sans-serif','medium')", comment = "panel heading text style")
FontDetails font();
}