use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraTreeViewSkin method setSelectionBackgroundColor.
public final void setSelectionBackgroundColor(int selectionBackgroundColor) {
Theme theme = currentTheme();
setSelectionBackgroundColor(theme.getColor(selectionBackgroundColor));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraTreeViewSkin method setBackgroundColor.
public final void setBackgroundColor(int backgroundColor) {
Theme theme = currentTheme();
setBackgroundColor(theme.getColor(backgroundColor));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraTreeViewSkin method setInactiveSelectionBackgroundColor.
public final void setInactiveSelectionBackgroundColor(int inactiveSelectionBackgroundColor) {
Theme theme = currentTheme();
setInactiveSelectionBackgroundColor(theme.getColor(inactiveSelectionBackgroundColor));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraTreeViewSkin method setHighlightBackgroundColor.
public final void setHighlightBackgroundColor(int highlightBackgroundColor) {
Theme theme = currentTheme();
setHighlightBackgroundColor(theme.getColor(highlightBackgroundColor));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraTreeViewSkin method setBranchControlColor.
public final void setBranchControlColor(int branchControlColor) {
Theme theme = currentTheme();
setBranchControlColor(theme.getColor(branchControlColor));
}
Aggregations