Example usage for javax.swing JButton subclass-usage

List of usage examples for javax.swing JButton subclass-usage

Introduction

In this page you can find the example usage for javax.swing JButton subclass-usage.

Usage

From source file JToolbarButton.java

/**
 * This class represents the buttons used in toolbars.
 *
 * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
 * @version $Id: JToolbarButton.java 498555 2007-01-22 08:09:33Z cam $
 */

From source file com.tag.Hyperlink.java

@SuppressWarnings("serial")
public class Hyperlink extends JButton {

    private URI uri;

    public Hyperlink(String text, String uri) {

From source file JButtonKnowsBgColor.java

/**
 * GUI control to easy choose foreground or background color.
 * Indicates color to be stored by its own foreground or background.
 * 
 * @author bsv
 * 

From source file at.tuwien.ifs.commons.gui.controls.MultiOptionToggleButton.java

/**
 * This class provides a control similar to a {@link JToggleButton}, but with multiple options popping out. It is
 * different from a {@link JComboBox}, as it provides a nicer visual appearance.
 * 
 * @author Rudolf Mayer
 * @author Jakob Frank

From source file ImageTest.java

class ImageButton extends JButton {

    public ImageButton(String img) {
        this(new ImageIcon(img));
    }

From source file se.trixon.jota.client.ui.SpeedDialButton.java

/**
 *
 * @author Patrik Karlsson
 */
public class SpeedDialButton extends JButton {

From source file edu.ku.brc.af.ui.forms.BrowserLauncherBtn.java

/**
 * @author jstewart
 * @code_status Alpha
 */
public class BrowserLauncherBtn extends JButton implements GetSetValueIFace {
    protected String url = null;

From source file Main.java

class MyCloseButton extends JButton {
    public MyCloseButton() {
        super("x");
        setBorder(BorderFactory.createEmptyBorder());
        setFocusPainted(false);
        setBorderPainted(false);

From source file sk.stuba.fiit.kvasnicka.topologyvisual.gui.components.DropDownButton.java

/**
 *
 * @author Igor Kvasnicka
 */
public class DropDownButton extends JButton implements ActionListener {

From source file edu.ku.brc.ui.GradiantButton.java

/**
 * A gradiant filled button button.
 * A renderer need to be created so GradiantLabel and GradiantButton can share all the code.
 *
 * When the icon is set into the JButton constructor it changes the font size
 * @code_status Beta