【问题标题】:Is it possible to use KeyBindings in JFrame & Canvas?是否可以在 JFrame 和 Canvas 中使用 KeyBindings?
【发布时间】:2018-03-17 14:47:01
【问题描述】:

我在使用KeyListener(未检测到键)时遇到困难,我正在尝试切换到 KeyBindings,但JFrame 没有扩展 getInputMap() 函数所需的 JComponent。有什么想法吗?

【问题讨论】:

  • 尝试使用自定义contentPane(类似于JPanel),然后将Canvas 添加到它上面
  • @MadProgrammer 我会试试的

标签: java swing input keyboard-shortcuts jcomponent


【解决方案1】:

请改用代理 JComponent。例如,将框架的contentPane 设置为JPanel 并使用它来注册键绑定。

这是一个非常基本的示例,它使用JPanel 作为contentPane,并在其中添加Canvas。然后通过JPanel 代表实际用于响应它们的Canvas 注册键绑定。

import java.awt.BorderLayout;
import java.awt.Canvas;
import java.awt.Dimension;
import java.awt.EventQueue;
import java.awt.FontMetrics;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.event.ActionEvent;
import java.awt.event.KeyEvent;
import javax.swing.AbstractAction;
import javax.swing.Action;
import javax.swing.ActionMap;
import javax.swing.InputMap;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.KeyStroke;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;

public class Test {

    public static void main(String[] args) {
        new Test();
    }

    public Test() {
        EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                try {
                    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
                    ex.printStackTrace();
                }

                JFrame frame = new JFrame("Testing");
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.setContentPane(new TestPane());
                frame.pack();
                frame.setLocationRelativeTo(null);
                frame.setVisible(true);
            }
        });
    }

    public class TestPane extends JPanel {

        private Surface surface;

        public TestPane() {
            setLayout(new BorderLayout());

            surface = new Surface();

            InputMap inputMap = getInputMap(WHEN_IN_FOCUSED_WINDOW);
            ActionMap actionMap = getActionMap();

            inputMap.put(KeyStroke.getKeyStroke(KeyEvent.VK_A, 0, false), "Pressed.left");
            inputMap.put(KeyStroke.getKeyStroke(KeyEvent.VK_A, 0, true), "Release.left");
            inputMap.put(KeyStroke.getKeyStroke(KeyEvent.VK_D, 0, false), "Pressed.right");
            inputMap.put(KeyStroke.getKeyStroke(KeyEvent.VK_D, 0, true), "Release.right");
            inputMap.put(KeyStroke.getKeyStroke(KeyEvent.VK_W, 0, false), "Pressed.up");
            inputMap.put(KeyStroke.getKeyStroke(KeyEvent.VK_W, 0, true), "Release.up");
            inputMap.put(KeyStroke.getKeyStroke(KeyEvent.VK_S, 0, false), "Pressed.down");
            inputMap.put(KeyStroke.getKeyStroke(KeyEvent.VK_S, 0, true), "Release.down");

            actionMap.put("Pressed.left", surface.getLeftPressAction());
            actionMap.put("Release.left", surface.getLeftReleaseAction());
            actionMap.put("Pressed.right", surface.getRightPressAction());
            actionMap.put("Release.right", surface.getRightReleaseAction());
            actionMap.put("Pressed.up", surface.getUpPressAction());
            actionMap.put("Release.up", surface.getUpReleaseAction());
            actionMap.put("Pressed.down", surface.getDownPressAction());
            actionMap.put("Release.down", surface.getDownReleaseAction());

            add(surface);
        }

    }

    public class Surface extends Canvas {

        private String displayText = "...";

        @Override
        public void paint(Graphics g) {
            super.paint(g); 
            Graphics2D g2d = (Graphics2D) g.create();
            FontMetrics fm = g2d.getFontMetrics();
            int x = (getWidth() - fm.stringWidth(displayText)) / 2;
            int y = ((getHeight() - fm.getHeight()) / 2) + fm.getAscent();
            g2d.drawString(displayText, x, y);
        }

        @Override
        public Dimension getPreferredSize() {
            return new Dimension(200, 200);
        }

        public Action getLeftPressAction() {
            return new TextAction("Left");
        }

        public Action getLeftReleaseAction() {
            return new ClearAction();
        }

        public Action getRightPressAction() {
            return new TextAction("Right");
        }

        public Action getRightReleaseAction() {
            return new ClearAction();
        }

        public Action getUpPressAction() {
            return new TextAction("Up");
        }

        public Action getUpReleaseAction() {
            return new ClearAction();
        }

        public Action getDownPressAction() {
            return new TextAction("Down");
        }

        public Action getDownReleaseAction() {
            return new ClearAction();
        }

        public class TextAction extends AbstractAction {
            private String text;

            public TextAction(String text) {
                this.text = text;
            }

            @Override
            public void actionPerformed(ActionEvent e) {
                displayText = text;
                repaint();
            }

        }

        public class ClearAction extends AbstractAction {

            @Override
            public void actionPerformed(ActionEvent e) {
                displayText = "...";
                repaint();
            }

        }

    }

}

此示例仅覆盖 Canvass paint 方法,但该概念仍适用于使用 BufferStrategy 的实现

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2018-05-25
    • 2011-02-20
    • 1970-01-01
    • 2013-09-08
    • 2014-02-25
    • 1970-01-01
    相关资源
    最近更新 更多