Package nodebox.ui

Examples of nodebox.ui.ShadowLabel


        setLayout(new BoxLayout(this, BoxLayout.LINE_AXIS));

        Dimension labelSize = new Dimension(PortView.LABEL_WIDTH, 16);

        Port port = getPort();
        label = new ShadowLabel(port.getDisplayLabel());
        if (! port.getDescription().isEmpty())
            label.setToolTipText(port.getName() + ": " + port.getDescription());
        else
            label.setToolTipText(port.getName());
        label.setBorder(null);
View Full Code Here

TOP

Related Classes of nodebox.ui.ShadowLabel

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.