gpt4 book ai didi

java - JMenuItem - 如何确定加速器是否调用了操作?

转载 作者:行者123 更新时间:2023-11-29 09:03:31 26 4
gpt4 key购买 nike

所以我必须在 Swing 中为我的 Java 类创建一个简单的 GUI,我偶然发现了这个小的装饰性问题。

我有以下代码:

    JMenuItem mntmQuit = new JMenuItem("Quit");
mntmQuit.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
if (e.getModifiers() == MouseEvent.BUTTON1_MASK) {
System.out.println("You should fire.");
} else if (e.getModifiers() == MouseEvent.BUTTON2_MASK || e.getModifiers() == MouseEvent.BUTTON3_MASK) {
System.out.println("Why do you fire this event?");
} else {
System.out.println("And how can I catch when the accelerator was used?");
}
}
});
mntmQuit.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_Q, 0));

我从未见过在右键单击或使用除按钮 1 以外的任何其他鼠标按钮时调用的菜单项。因为看起来 Swing 对此有不同的看法,并且无论按下哪个鼠标按钮都会发送一个 Action 事件 - 与一个 JButton,除非用鼠标按钮 1 单击它,否则不会触发任何东西。

现在我可以接受它了,因为我可以轻松地捕捉到鼠标按钮 1 并执行我的操作,但是捕捉加速器的使用情况如何呢?它会触发 Action 事件,但我看不到任何捕获它的可能性,因为它返回“0”作为修饰符(与除 1、2 和 3 之外的任何其他鼠标按钮相同)。

有什么方法可以告诉 JMenuItem 它应该只对鼠标按钮 1 和它的加速器使用react?类似于JButton的做法?

最佳答案

    JMenuItem mntmQuit = new JMenuItem("Quit");
mntmQuit.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
if (!(e.getModifiers() == InputEvent.BUTTON3_MASK)) {
System.out.println(e.getActionCommand());
}
}
});
mntmQuit.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_Q, 0));

编辑:

我已经更改了我的答案,而不是检查事件何时触发,您应该检查何时不触发它。所以在这种情况下,Button3 或右键单击。当您按下“q”或任何鼠标点击时,该事件将始终触发。

之前的答案很糟糕,您不想使用 e.getModifiers() 因为它可能会为您不想返回 true 的事件返回 true。例如如果您将“q”和“w”设置为同一个按钮,但它们执行不同的操作,则两个事件都会在第一个 if 语句检查 e.getModifiers() == 0 时触发

抱歉造成混淆,希望这更有意义。

关于java - JMenuItem - 如何确定加速器是否调用了操作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16176523/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com