在Java中,如何制作类似Emacs的快捷方式?
我想知道如何在我的 Java 应用程序中添加类似于 Emacs 的快捷方式。例如 Cx Cf 和 Cx b。
谢谢。
I want to know how to add shortcuts similar to Emacs's in my Java application. For example C-x C-f and C-x b.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Java 提供了一种识别修饰符键的方法。
我所说的修饰键是指
这些可以与键盘上的其他普通按键配对,以识别是否已按下组合。
e.getModifiers() 可用于识别修饰符以及单击的鼠标按钮。这将返回位掩码。
请参见此处。
http://www.leepoint.net /notes-java/GUI-lowlevel/keyboard/keyboard.html
我会像这样使用 Ctrl。这是过于简化的代码,但您会明白的。
Java provides a means to identify Modifier keys.
By Modifier keys I mean
These acan be paired with other normal key press buttons from your keyboard to identify whether a combination has been pressed.
e.getModifiers() can be used to identify the modifier as well as the mouse button clicked. This returns bit mask.
See here.
http://www.leepoint.net/notes-java/GUI-lowlevel/keyboard/keyboard.html
I would use it something like this for Ctrl. This is overly simplified code, but you will get an idea.
据我所知EMACS是一个编辑器。如果要更改 Swing 文本组件上编辑命令的 KeyStrokes,则需要使用键绑定。您可以使用现有的文本操作,但只需将它们绑定到不同的 KeyStrokes。有关所有默认绑定的列表和一些示例,请参阅 按键绑定如何重新绑定和操作。
As far as I know EMACS is an editor. If you want to change the KeyStrokes for editing command on Swing text components then you need to use Key Bindings. You can use the existing text Actions but just bind them to different KeyStrokes. See Key Bindings for a list of all the default bindings an some example of how to rebind and Action.