use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraScrollBarSkin method setScrollButtonHighlightedBackgroundColor.
public final void setScrollButtonHighlightedBackgroundColor(int scrollButtonHighlightedBackgroundColor) {
Theme theme = currentTheme();
setScrollButtonHighlightedBackgroundColor(theme.getColor(scrollButtonHighlightedBackgroundColor));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraScrollBarSkin method setScrollButtonBackgroundColor.
public final void setScrollButtonBackgroundColor(int scrollButtonBackgroundColor) {
Theme theme = currentTheme();
setScrollButtonBackgroundColor(theme.getColor(scrollButtonBackgroundColor));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraScrollBarSkin 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 TerraScrollBarSkin method setScrollButtonDisabledBackgroundColor.
public final void setScrollButtonDisabledBackgroundColor(int scrollButtonDisabledBackgroundColor) {
Theme theme = currentTheme();
setScrollButtonDisabledBackgroundColor(theme.getColor(scrollButtonDisabledBackgroundColor));
}
use of org.apache.pivot.wtk.Theme in project pivot by apache.
the class TerraScrollBarSkin method setScrollButtonPressedBackgroundColor.
public final void setScrollButtonPressedBackgroundColor(int scrollButtonPressedBackgroundColor) {
Theme theme = currentTheme();
setScrollButtonPressedBackgroundColor(theme.getColor(scrollButtonPressedBackgroundColor));
}
Aggregations