org.pushingpixels.substance.flamingo.ribbon.ui.SubstanceRibbonApplicationMenuPopupPanelUI Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of substance-flamingo Show documentation
Show all versions of substance-flamingo Show documentation
A fork of @kirilcool's substance project
The newest version!
/*
* Copyright (c) 2005-2010 Substance Flamingo / Substance Kirill Grouchnikov. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* o Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* o Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* o Neither the name of Substance Flamingo Kirill Grouchnikov nor the names of
* its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.pushingpixels.substance.flamingo.ribbon.ui;
import java.awt.*;
import javax.swing.CellRendererPane;
import javax.swing.JComponent;
import javax.swing.border.Border;
import javax.swing.border.CompoundBorder;
import javax.swing.plaf.ComponentUI;
import org.pushingpixels.flamingo.internal.ui.ribbon.appmenu.*;
import org.pushingpixels.substance.api.*;
import org.pushingpixels.substance.internal.painter.HighlightPainterUtils;
import org.pushingpixels.substance.internal.utils.SubstanceColorSchemeUtilities;
import org.pushingpixels.substance.internal.utils.SubstanceSizeUtils;
import org.pushingpixels.substance.internal.utils.border.SubstanceBorder;
/**
* UI for {@link JRibbonApplicationMenuPopupPanel} components in
* Substance look and feel.
*
* @author Kirill Grouchnikov
*/
public class SubstanceRibbonApplicationMenuPopupPanelUI extends
BasicRibbonApplicationMenuPopupPanelUI {
public static ComponentUI createUI(JComponent c) {
return new SubstanceRibbonApplicationMenuPopupPanelUI();
}
@Override
protected void installComponents() {
super.installComponents();
Border newBorder = new CompoundBorder(new SubstanceBorder(new Insets(2,
2, 2, 2)), new Border() {
@Override
public boolean isBorderOpaque() {
return true;
}
@Override
public Insets getBorderInsets(Component c) {
return new Insets(18, 0, 0, 0);
}
@Override
public void paintBorder(Component c, Graphics g, int x, int y,
int width, int height) {
SubstanceColorScheme bgFillScheme = SubstanceColorSchemeUtilities
.getColorScheme(c,
ColorSchemeAssociationKind.HIGHLIGHT,
ComponentState.ENABLED);
SubstanceColorScheme bgBorderScheme = SubstanceColorSchemeUtilities
.getColorScheme(c,
ColorSchemeAssociationKind.HIGHLIGHT_BORDER,
ComponentState.ENABLED);
HighlightPainterUtils.paintHighlight(g, null, c, new Rectangle(
x, y, width, height), 0.0f, null, bgFillScheme,
bgBorderScheme);
// draw the application menu button
JRibbonApplicationMenuButton rendererButton = new JRibbonApplicationMenuButton(
applicationMenuPopupPanel.getAppMenuButton()
.getRibbon());
JRibbonApplicationMenuButton appMenuButton = applicationMenuPopupPanel
.getAppMenuButton();
rendererButton.applyComponentOrientation(appMenuButton
.getComponentOrientation());
rendererButton.setPopupKeyTip(appMenuButton.getPopupKeyTip());
rendererButton.setIcon(appMenuButton.getIcon());
rendererButton.getPopupModel().setRollover(false);
rendererButton.getPopupModel().setPressed(true);
rendererButton.getPopupModel().setArmed(true);
rendererButton.getPopupModel().setPopupShowing(true);
CellRendererPane buttonRendererPane = new CellRendererPane();
Point buttonLoc = appMenuButton.getLocationOnScreen();
Point panelLoc = c.getLocationOnScreen();
buttonRendererPane.setBounds(panelLoc.x - buttonLoc.x,
panelLoc.y - buttonLoc.y, appMenuButton.getWidth(),
appMenuButton.getHeight());
buttonRendererPane.paintComponent(g, rendererButton,
(Container) c, -panelLoc.x + buttonLoc.x, -panelLoc.y
+ buttonLoc.y, appMenuButton.getWidth(),
appMenuButton.getHeight(), true);
}
});
this.applicationMenuPopupPanel.setBorder(newBorder);
this.panelLevel2.setBorder(new Border() {
@Override
public Insets getBorderInsets(Component c) {
boolean ltr = c.getComponentOrientation().isLeftToRight();
return new Insets(0, ltr ? 1 : 0, 0, ltr ? 0 : 1);
}
@Override
public boolean isBorderOpaque() {
return true;
}
@Override
public void paintBorder(Component c, Graphics g, int x, int y,
int width, int height) {
int componentFontSize = SubstanceSizeUtils
.getComponentFontSize(null);
int borderDelta = (int) Math.floor(SubstanceSizeUtils
.getBorderStrokeWidth(componentFontSize) / 2.0);
float borderThickness = SubstanceSizeUtils
.getBorderStrokeWidth(componentFontSize);
Graphics2D g2d = (Graphics2D) g.create();
SubstanceColorScheme scheme = SubstanceColorSchemeUtilities
.getColorScheme(applicationMenuPopupPanel,
ColorSchemeAssociationKind.BORDER,
ComponentState.ENABLED);
g2d.setColor(scheme.getMidColor());
g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
RenderingHints.VALUE_ANTIALIAS_ON);
g2d.setRenderingHint(RenderingHints.KEY_STROKE_CONTROL,
RenderingHints.VALUE_STROKE_NORMALIZE);
int joinKind = BasicStroke.JOIN_ROUND;
int capKind = BasicStroke.CAP_BUTT;
g2d.setStroke(new BasicStroke(borderThickness, capKind,
joinKind));
boolean ltr = applicationMenuPopupPanel
.getComponentOrientation().isLeftToRight();
int lineX = ltr ? borderDelta : c.getWidth() - borderDelta - 1;
g2d.drawLine(lineX, borderDelta, lineX, height - 1 - 2
* borderDelta);
g2d.dispose();
}
});
this.mainPanel.setBorder(new SubstanceBorder());
}
}