Swing JToolbarButton pressing

ぃ、小莉子 提交于 2019-11-26 16:49:03
Andrew Thompson

As mentioned in Costis' reply, you are probably after a JToggleButton. It might also be necessary to suppress the painting of the border, as in the 2nd tool bar in this example.

import java.awt.*;
import java.awt.image.*;
import javax.swing.*;

class ToggleBar {

    public static JToggleButton getButton(
        Image selected,
        Image unselected,
        boolean decorated) {

        JToggleButton b = new JToggleButton();
        b.setSelectedIcon(new ImageIcon(selected));
        b.setIcon(new ImageIcon(unselected));
        b.setBorderPainted(decorated);

        return b;
    }

    public static Image getCircleImage(Color c) {
        BufferedImage bi = new BufferedImage(
            32,32,BufferedImage.TYPE_INT_ARGB);
        Graphics2D g = bi.createGraphics();

        g.setColor(c);
        g.fillOval(0,0,32,32);

        g.dispose();
        return bi;
    }

    public static void main(String[] args) {
        SwingUtilities.invokeLater( new Runnable() {
            public void run() {
                Image red = getCircleImage(Color.RED);
                Image green = getCircleImage(Color.GREEN);

                JPanel p = new JPanel(new GridLayout(0,1));

                JToolBar tb1 = new JToolBar();
                for (int ii=0; ii<5; ii++) {
                    tb1.add( getButton(red, green, true) );
                }
                p.add(tb1);

                JToolBar tb2 = new JToolBar();
                for (int ii=0; ii<5; ii++) {
                    tb2.add( getButton(red, green, false) );
                }
                p.add(tb2);

                JOptionPane.showMessageDialog(null, p);
            }
        });
    }
}

There is a JToolbarButton in Apache Batik.

It seems to me though that what you are looking for is a JToggleButton. You can adjust it to display a small image and to be small.

jToggleButton1.setIcon(new javax.swing.ImageIcon("image.png"));
jToggleButton1.setSelectedIcon(new javax.swing.ImageIcon("selected_image.png"));

Add another image with setSelectedIcon in order to make you button look pressed.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!