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

41 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;
/**
*
*/
public interface TreeDetails {
@TypeDetails(sampleValue = "#e2eff8", comment = "tree node drag over background color")
String dragOverBackgroundColor();
@TypeDetails(sampleValue = "#e2eff8", comment = "tree node drop background color")
String dropBackgroundColor();
@TypeDetails(sampleValue = "util.margin(4, 3, 0, 2)", comment = "margins for tree element icon")
EdgeDetails iconMargin();
@TypeDetails(sampleValue = "25px", comment = "tree item height")
String itemHeight();
@TypeDetails(sampleValue = "util.padding(0, 6)", comment = "tree node padding")
EdgeDetails nodePadding();
@TypeDetails(sampleValue = "#e2eff8", comment = "tree node over background color")
String overBackgroundColor();
@TypeDetails(sampleValue = "#c1ddf1", comment = "tree node selected background color")
String selectedBackgroundColor();
@TypeDetails(sampleValue = "util.fontStyle('sans-serif', 'large','#ffffff','bold')", comment = "tree node text style")
FontDetails text();
}