Codebase list jd-gui / beb5dc6 app / src / main / java / org / jd / gui / view / component / IconButton.java
beb5dc6

Tree @beb5dc6 (Download .tar.gz)

IconButton.java @beb5dc6raw · history · blame

/*
 * Copyright (c) 2008-2019 Emmanuel Dupuy.
 * This project is distributed under the GPLv3 license.
 * This is a Copyleft license that gives the user the right to use,
 * copy and modify the code freely for non-commercial purposes.
 */

package org.jd.gui.view.component;

import javax.swing.*;
import java.awt.*;

public class IconButton extends JButton {
	protected static final Insets INSETS0 = new Insets(0, 0, 0, 0);

	public IconButton(String text, Action action) {
		setFocusPainted(false);
		setBorderPainted(false);
		setMargin(INSETS0);
		setAction(action);
		setText(text);
	}

	public IconButton(Action action) {
		this(null, action);
	}
}