use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraTableViewSkin method setInactiveSelectionColor.
public final void setInactiveSelectionColor(int inactiveSelectionColor) {
Theme theme = Theme.getTheme();
setInactiveSelectionColor(theme.getColor(inactiveSelectionColor));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraTableViewSkin method setHorizontalGridColor.
public final void setHorizontalGridColor(int horizontalGridColor) {
Theme theme = Theme.getTheme();
setHorizontalGridColor(theme.getColor(horizontalGridColor));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraTableViewSkin method setSelectionColor.
public final void setSelectionColor(int selectionColor) {
Theme theme = Theme.getTheme();
setSelectionColor(theme.getColor(selectionColor));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraTableViewSkin method setVerticalGridColor.
public final void setVerticalGridColor(int verticalGridColor) {
Theme theme = Theme.getTheme();
setVerticalGridColor(theme.getColor(verticalGridColor));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraTextAreaSkin method setColor.
public final void setColor(int color) {
Theme theme = currentTheme();
setColor(theme.getColor(color));
}
Aggregations