use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraTreeViewSkin method setBranchControlInactiveSelectionColor.
public final void setBranchControlInactiveSelectionColor(int branchControlInactiveSelectionColor) {
Theme theme = currentTheme();
setBranchControlInactiveSelectionColor(theme.getColor(branchControlInactiveSelectionColor));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraTreeViewSkin method setDisabledColor.
public final void setDisabledColor(int disabledColor) {
Theme theme = currentTheme();
setDisabledColor(theme.getColor(disabledColor));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraTreeViewSkin method setHighlightColor.
public final void setHighlightColor(int highlightColor) {
Theme theme = currentTheme();
setHighlightColor(theme.getColor(highlightColor));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraExpanderSkin method setTitleBarBorderColor.
public final void setTitleBarBorderColor(int titleBarBorderColor) {
Theme theme = currentTheme();
setTitleBarBorderColor(theme.getColor(titleBarBorderColor));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraExpanderSkin method setTitleBarColor.
public final void setTitleBarColor(int titleBarColor) {
Theme theme = currentTheme();
setTitleBarColor(theme.getColor(titleBarColor));
}
Aggregations