use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraExpanderSkin method setTitleBarBackgroundColor.
public final void setTitleBarBackgroundColor(int titleBarBackgroundColor) {
Theme theme = currentTheme();
setTitleBarBackgroundColor(theme.getColor(titleBarBackgroundColor));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraExpanderSkin method setShadeButtonColor.
public final void setShadeButtonColor(int shadeButtonColor) {
Theme theme = currentTheme();
setShadeButtonColor(theme.getColor(shadeButtonColor));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraGaugeSkin method setWarningColor.
public final void setWarningColor(int warningColor) {
Theme theme = currentTheme();
setWarningColor(theme.getColor(warningColor));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraGaugeSkin 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 TerraGaugeSkin method setTextColor.
public final void setTextColor(int textColor) {
Theme theme = currentTheme();
setTextColor(theme.getColor(textColor));
}
Aggregations