Package com.samskivert.swing

Examples of com.samskivert.swing.DimmedIcon


    protected JButton addButton (JToolBar toolbar, String cmd, String tip,
                                 TileIcon icon)
    {
        // create the button and configure accordingly
        JButton button = new JButton(new DimmedIcon(icon));
        button.setSelectedIcon(icon);
        button.addActionListener(this);
        button.setActionCommand("tbar_" + cmd);
        button.setToolTipText(tip);
View Full Code Here

TOP

Related Classes of com.samskivert.swing.DimmedIcon

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.