use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraTextInputSkin method setColor.
public final void setColor(int color) {
Theme theme = currentTheme();
setColor(theme.getColor(color));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraTextInputSkin method setDisabledBorderColor.
public final void setDisabledBorderColor(int color) {
Theme theme = currentTheme();
setDisabledBorderColor(theme.getColor(color));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraTextInputSkin method setInvalidBackgroundColor.
public final void setInvalidBackgroundColor(int color) {
Theme theme = currentTheme();
setInvalidBackgroundColor(theme.getColor(color));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraTextInputSkin method setInactiveSelectionColor.
public final void setInactiveSelectionColor(int color) {
Theme theme = currentTheme();
setInactiveSelectionColor(theme.getColor(color));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraTextInputSkin method setBackgroundColor.
public final void setBackgroundColor(int color) {
Theme theme = currentTheme();
setBackgroundColor(theme.getColor(color));
}
Aggregations