All Downloads are FREE. Search and download functionalities are using the official Maven repository.

convex.gui.components.ActionPanel Maven / Gradle / Ivy

There is a newer version: 0.7.15
Show newest version
package convex.gui.components;

import java.awt.FlowLayout;

import javax.swing.JPanel;
import javax.swing.border.BevelBorder;

/**
 * A panel used for displaying a list of action buttons at the bottom of the
 * screen.
 */
@SuppressWarnings("serial")
public class ActionPanel extends JPanel {

	public ActionPanel() {
		super();

		FlowLayout flowLayout = new FlowLayout(FlowLayout.LEFT);
		setLayout(flowLayout);

		setBorder(new BevelBorder(BevelBorder.RAISED, null, null, null, null));
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy