use of org.apache.pivot.wtk.MenuBar in project pivot by apache.
the class TerraMenuBarItemSkin method isOpaque.
@Override
public boolean isOpaque() {
boolean opaque = false;
MenuBar.Item menuBarItem = (MenuBar.Item) getComponent();
if (menuBarItem.isActive()) {
MenuBar menuBar = (MenuBar) menuBarItem.getParent();
Color activeBackgroundColor = menuBar.getStyles().getColor(Style.activeBackgroundColor);
opaque = (activeBackgroundColor.getTransparency() == Transparency.OPAQUE);
}
return opaque;
}
Aggregations