Package org.tools.ui

Examples of org.tools.ui.HyperlinkLabel


        frame.setLocationByPlatform(true);
        frame.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);

        // frame.getContentPane().setBackground(new Color(230,220,210));

        HyperlinkLabel title = new HyperlinkLabel("More information");
        title.setToolTipText("Click to open the project website.");
        title.setLink("http://remake.twelvepm.de/forum/");

        frame.setLayout(new MigLayout("wrap 2, fill", "", "[][][grow]"));
        frame.add(title, "span 2, alignx center");
        frame.add(makePatternPanel(), "aligny top, grow");
        frame.add(makeTileSelectionPanel());
View Full Code Here

TOP

Related Classes of org.tools.ui.HyperlinkLabel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.