use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraTextInputSkin method setSelectionColor.
public final void setSelectionColor(int color) {
Theme theme = currentTheme();
setSelectionColor(theme.getColor(color));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraTextInputSkin method setInactiveSelectionBackgroundColor.
public final void setInactiveSelectionBackgroundColor(int color) {
Theme theme = currentTheme();
setInactiveSelectionBackgroundColor(theme.getColor(color));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraTextPaneSkin method setSelectionColor.
public final void setSelectionColor(int selectionColor) {
Theme theme = currentTheme();
setSelectionColor(theme.getColor(selectionColor));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraTextPaneSkin 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 TerraTextPaneSkin method setInactiveSelectionBackgroundColor.
public final void setInactiveSelectionBackgroundColor(int inactiveSelectionBackgroundColor) {
Theme theme = currentTheme();
setInactiveSelectionBackgroundColor(theme.getColor(inactiveSelectionBackgroundColor));
}
Aggregations