ch.randelshofer.quaqua.QuaquaComboBoxVisualMargin 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!
/*
* @(#)QuaquaComboBoxVisualMargin.java
*
* Copyright (c) 2007-2010 Werner Randelshofer, Immensee, Switzerland.
* 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.*;
/**
* QuaquaComboBoxVisualMargin.
*
* @author Werner Randelshofer
* @version $Id: QuaquaComboBoxVisualMargin.java 361 2010-11-21 11:19:20Z wrandelshofer $
*/
public class QuaquaComboBoxVisualMargin extends VisualMargin {
/** Creates a new instance. */
public QuaquaComboBoxVisualMargin() {
super();
}
/**
* Creates a new VisualMargin.
*
* @param top Defines the margin from the clip bounds of the
* component to its visual bounds.
* @param left Defines the margin from the clip bounds of the
* component to its visual bounds.
* @param bottom Defines the margin from the clip bounds of the
* component to its visual bounds.
* @param right Defines the margin from the clip bounds of the
* component to its visual bounds.
*/
public QuaquaComboBoxVisualMargin(int top, int left, int bottom, int right) {
super(top, left, bottom, right);
}
public QuaquaComboBoxVisualMargin(int top, int left, int bottom, int right, boolean ftop, boolean fleft, boolean fbottom, boolean fright) {
super(top, left, bottom, right, ftop, fleft, fbottom, fright);
}
public QuaquaComboBoxVisualMargin(boolean ftop, boolean fleft, boolean fbottom, boolean fright) {
super(ftop, fleft, fbottom, fright);
}
/**
* Creates a new VisualMargin.
*
* @param layoutMargin Defines the margin from the clip bounds of the
* component to its visual bounds. The margin has usually negative values!
*/
public QuaquaComboBoxVisualMargin(Insets layoutMargin) {
super(layoutMargin);
}
/**
* Reinitializes the insets parameter with this Border's current Insets.
* @param c the component for which this border insets value applies
* @param insets the object to be reinitialized
* @return the insets
object
*/
protected Insets getVisualMargin(Component c, Insets insets) {
Insets i = super.getVisualMargin(c, insets);
if (UIManager.getBoolean("ComboBox.harmonizePreferredHeight")) {
if (! ((JComboBox) c).isEditable()) {
i.top += 1;
i.bottom += 1;
}
}
return i;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy