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