ch.randelshofer.quaqua.QuaquaPopupMenuBorder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Quaqua Show documentation
Show all versions of Quaqua Show documentation
A Mavenisation of the Quaqua Mac OSX Swing Look and Feel (Java library)
Quaqua Look and Feel (C) 2003-2010, Werner Randelshofer.
Mavenisation by Matt Gumbley, DevZendo.org - for problems with
Mavenisation, see Matt; for issues with Quaqua, see the Quaqua home page.
For full license details, see http://randelshofer.ch/quaqua/license.html
The newest version!
/*
* @(#)QuaquaPopupMenuBorder.java
*
* Copyright (c) 2003-2010 Werner Randelshofer, Immensee, Switzerland.
* http://www.randelshofer.ch
* All rights reserved.
*
* You may not use, copy or modify this file, except in compliance with the
* license agreement you entered into with Werner Randelshofer.
* For details see accompanying license terms.
*/
package ch.randelshofer.quaqua;
import java.awt.*;
import javax.swing.border.*;
/**
* A replacement for the AquaMenuBorder.
*
* This class provides the following workaround for a bug in Apple's
* implementation of the Aqua Look and Feel in Java 1.4.1:
*
* - Draws a border at the top and the bottom of JPopupMenu's.
*
*
* @author Werner Randelshofer
* @version $Id: QuaquaPopupMenuBorder.java 361 2010-11-21 11:19:20Z wrandelshofer $
*/
public class QuaquaPopupMenuBorder implements Border {
public void paintBorder(Component component, Graphics g, int x,
int y, int width, int height) {
/* empty */
}
public Insets getBorderInsets(Component component) {
return new Insets(4, 0, 4, 0);
}
public boolean isBorderOpaque() {
return false;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy