use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraMenuBarSkin method setActiveColor.
public final void setActiveColor(int color) {
Theme theme = currentTheme();
setActiveColor(theme.getColor(color));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraMenuButtonSkin method setDisabledBorderColor.
public final void setDisabledBorderColor(int disabledBorderColor) {
Theme theme = currentTheme();
setDisabledBorderColor(theme.getColor(disabledBorderColor));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraAccordionSkin 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 TerraAccordionSkin method setDisabledButtonColor.
public final void setDisabledButtonColor(int disabledButtonColor) {
Theme theme = currentTheme();
setDisabledButtonColor(theme.getColor(disabledButtonColor));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraActivityIndicatorSkin method setBackgroundColor.
public final void setBackgroundColor(int backgroundColor) {
Theme theme = currentTheme();
setBackgroundColor(theme.getColor(backgroundColor));
}
Aggregations