use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraTableViewHeaderSkin method setDisabledBackgroundColor.
public final void setDisabledBackgroundColor(int disabledBackgroundColor) {
Theme theme = Theme.getTheme();
setDisabledBackgroundColor(theme.getColor(disabledBackgroundColor));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraTableViewSkin method setHighlightBackgroundColor.
public final void setHighlightBackgroundColor(int highlightBackgroundColor) {
Theme theme = Theme.getTheme();
setHighlightBackgroundColor(theme.getColor(highlightBackgroundColor));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraTableViewSkin method setBackgroundColor.
public final void setBackgroundColor(int backgroundColor) {
Theme theme = Theme.getTheme();
setBackgroundColor(theme.getColor(backgroundColor));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraTableViewSkin method setColumnSelectionColor.
public final void setColumnSelectionColor(int columnSelectionColor) {
Theme theme = Theme.getTheme();
setColumnSelectionColor(theme.getColor(columnSelectionColor));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraTableViewSkin method setColumnSelectionHorizontalGridColor.
public final void setColumnSelectionHorizontalGridColor(int columnSelectionHorizontalGridColor) {
Theme theme = Theme.getTheme();
setColumnSelectionHorizontalGridColor(theme.getColor(columnSelectionHorizontalGridColor));
}
Aggregations