use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraGaugeSkin method setTickColor.
public final void setTickColor(int tickColor) {
Theme theme = currentTheme();
setTickColor(theme.getColor(tickColor));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraGaugeSkin method setBorderColor.
public final void setBorderColor(int borderColor) {
Theme theme = currentTheme();
setBorderColor(theme.getColor(borderColor));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraGridPaneSkin method setVerticalGridColor.
public final void setVerticalGridColor(int verticalGridColor) {
Theme theme = currentTheme();
setVerticalGridColor(theme.getColor(verticalGridColor));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraSeparatorSkin method setColor.
public 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 TerraSpinnerSkin method setButtonBackgroundColor.
public final void setButtonBackgroundColor(int buttonBackgroundColor) {
Theme theme = currentTheme();
setButtonBackgroundColor(theme.getColor(buttonBackgroundColor));
}
Aggregations