jadex.base.gui.JadexLogoButton Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-tools-base-swing Show documentation
Show all versions of jadex-tools-base-swing Show documentation
GUI-dependent classes for jadex-tools-base.
package jadex.base.gui;
import javax.swing.UIDefaults;
import jadex.commons.gui.SGUI;
/**
* Button to start a web browser showing the Jadex Home page.
*/
public class JadexLogoButton extends LogoButton
{
private static UIDefaults icons = new UIDefaults(new Object[]
{
"JadexLogo", SGUI.makeIcon(JadexLogoButton.class, "/jadex/base/gui/images/jadexlogo.png"),
"JadexLogoV", SGUI.makeIcon(JadexLogoButton.class, "/jadex/base/gui/images/jadexlogoV.png")
});
/**
* Constructor for JadexLogoButton.
* @param tb
*/
public JadexLogoButton()
{
super(icons.getIcon("JadexLogo"), icons.getIcon("JadexLogoV"), "Go to Jadex Home Page", "http://www.activecomponents.org/");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy