删除默认的 JButton 输入映射 [英] Removing Default JButton input map

查看:15
本文介绍了删除默认的 JButton 输入映射的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在删除 java swing 应用程序中组件的默认输入映射信息时遇到了一些问题.这就是我想要做的:

I am having some trouble removing the default input map information on my components in a java swing application. This is what I am trying to do:

//List of keys to remove
public static final int[] OVERWRITTEN_KEYS = 
{
    VK_SPACE
};

//Get default input maps
InputMap[] im = { 
    (InputMap)UIManager.get("Button.focusInputMap"),
    (InputMap)UIManager.get("ToggleButton.focusInputMap"),
    (InputMap)UIManager.get("Slider.focusInputMap"),
    (InputMap)UIManager.get("RadioButton.focusInputMap"),
    (InputMap)UIManager.get("TextArea.focusInputMap"),
    (InputMap)UIManager.get("TextField.focusInputMap")
};

//Loop through input maps        
for(int i = 0; i < im.length; i++)
{
    //Loop through keys
    for(int j = 0; j < OVERWRITTEN_KEYS.length; j++)
    {
        if(im[i] != null)
        {
            //Overwrite press and release of button
            im[i].put(KeyStroke.getKeyStroke(OVERWRITTEN_KEYS[j],0,false), "none");
            im[i].put(KeyStroke.getKeyStroke(OVERWRITTEN_KEYS[j],0,true), "none");
        }
    }
}

但是,由于某种原因,这没有效果.按空格键仍会触发 JButton 单击等.有人看到此代码块有什么问题吗?先谢谢了.

But, for some reason, this has no effect. Pressing the spacebar still fires a JButton click, etc. Does anyone see something wrong with this code block? Thanks beforehand.

推荐答案

我无法重现您描述的问题.我通常会修改组件的InputMap,但UIManager 实例具有默认绑定.在下面的例子中,

I'm having trouble reproducing the problem you describe. I usually modify the component's InputMap, but the UIManager instance has the default bindings. In the example below,

im.put(KeyStroke.getKeyStroke(KeyEvent.VK_SPACE, 0), NIL);

有效地阻止 Space 键调用按钮的 ActionListener.取消注释行

effectively blocks the Space key from invoking the button's ActionListener. Uncommenting the line

button.getActionMap().put(NIL, nil);

Space 键与有效的空操作相关联,如 如何创建和删除键绑定.

associates the Space key with an effectively empty action, as shown in the doNothing action described in How to Make and Remove Key Bindings.

/**
 * @see http://stackoverflow.com/q/12133795/230513
 */
public class NilBindingTest extends JPanel {

    private static final String NIL = "none";
    private Action nil = new AbstractAction(NIL) {

        @Override
        public void actionPerformed(ActionEvent e) {
            System.out.println("\"" + e.getActionCommand() + "\"");
        }
    };
    private JButton button = new JButton(nil);
    //private InputMap im = button.getInputMap();
    private InputMap im = (InputMap) UIManager.get("Button.focusInputMap");

    public NilBindingTest() {
        this.add(new JButton("foo"));
        System.out.println(Arrays.toString(im.keys()));
        im.put(KeyStroke.getKeyStroke(KeyEvent.VK_SPACE, 0), NIL);
        //button.getActionMap().put(NIL, nil);
        this.add(button);
    }

    private void display() {
        JFrame f = new JFrame("NilBindingTest");
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.add(this);
        f.pack();
        f.setLocationRelativeTo(null);
        f.setVisible(true);
    }

    public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {

            @Override
            public void run() {
                new NilBindingTest().display();
            }
        });
    }
}

这篇关于删除默认的 JButton 输入映射的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆