Java JButton Create createHyperlinkButton(String text, String tip, ActionListener action)

Here you can find the source of createHyperlinkButton(String text, String tip, ActionListener action)

Description

create Hyperlink Button

License

Open Source License

Declaration

public static JButton createHyperlinkButton(String text, String tip, ActionListener action) 

Method Source Code


//package com.java2s;
/*//from ww  w. j  av a  2s  .  com
 * Copyright 2011 Luke Usherwood.
 * 
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 2.1 of the License, or
 * (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

import java.awt.Color;
import java.awt.Cursor;

import java.awt.event.ActionListener;
import javax.swing.BorderFactory;
import javax.swing.JButton;

import javax.swing.SwingConstants;

public class Main {
    public static JButton createHyperlinkButton(String text, String tip, ActionListener action) {
        JButton button = new JButton();
        button.setText("<html><a href=\"#\">" + text + "</a></html>");
        button.setHorizontalAlignment(SwingConstants.LEFT);
        button.setBorderPainted(false);
        button.setBorder(BorderFactory.createEmptyBorder());
        button.setOpaque(false);
        button.setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR));
        button.setBackground(new Color(0, 0, 0, 0));
        button.setToolTipText(tip);
        button.addActionListener(action);
        return button;
    }
}

Related

  1. createButtonsPanel(JComponent... components)
  2. createCheckbox(String boxlabel, String[] buttons, boolean[] checked, ActionListener al)
  3. createCustomButton(Action a)
  4. CreateFlatButton()
  5. createGameRadioButton(String answer, int fontSize)
  6. createIconButton(Class klass, String resource, String fallbackText)
  7. createIconButton(ImageIcon icon, int dimension, String tooltipText, java.awt.event.ActionListener action)
  8. createJButton(Container c, String caption, int x, int y, int width, int height, ActionListener al)
  9. createJButton(final String label, final Font font)