use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraListButtonSkin method setDisabledBorderColor.
public final void setDisabledBorderColor(int disabledBorderColor) {
Theme theme = currentTheme();
setDisabledBorderColor(theme.getColor(disabledBorderColor));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraListButtonSkin 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 TerraListButtonSkin method setDisabledBackgroundColor.
public final void setDisabledBackgroundColor(int disabledBackgroundColor) {
Theme theme = currentTheme();
setDisabledBackgroundColor(theme.getColor(disabledBackgroundColor));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraListViewSkin method setInactiveSelectionColor.
public final void setInactiveSelectionColor(int inactiveSelectionColor) {
Theme theme = currentTheme();
setInactiveSelectionColor(theme.getColor(inactiveSelectionColor));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraListViewSkin method setHighlightBackgroundColor.
public final void setHighlightBackgroundColor(int highlightBackgroundColor) {
Theme theme = currentTheme();
setHighlightBackgroundColor(theme.getColor(highlightBackgroundColor));
}
Aggregations