如何在自定义文本编辑器中捕获 CTRL+CLICK

发布于 2024-11-17 16:03:54 字数 277 浏览 2 评论 0原文

我通过在 Eclipse 插件中子类化 TextEditor 获得了一个自定义编辑器。我正在尝试在自定义编辑器中实现 CTRL+CLICK 操作(如 java 编辑器中的“open statements”)。但我不知道如何捕获CTRL+CLICK。我尝试在其构造函数或initialzeEditor() 中将KeyListener 添加到编辑器的sourceViewer 中,但这不起作用。有谁知道如何做到这一点?

感谢。

I got a custom editor by subclassing TextEditor in Eclipse plugin. I am trying to implement a CTRL+CLICK action(like 'open declaration' in java editor) in my custom editor. But I cannot figure out how to capture CTRL+CLICK. I tried to add a KeyListener to the editor's sourceViewer in its constructor or initialzeEditor(), which didn't work. Has anyone have an idea how to do this?

Thank.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

岁月如刀 2024-11-24 16:03:54

查看

  • 扩展点“org.eclipse.ui.workbench.texteditor.hyperlinkDetectors”
  • 类 org.eclipse.jface.text.hyperlink.AbstractHyperlinkDetector、org.eclipse.jface.text.hyperlink.IHyperlinkDetector 和 org.eclipse.jface。 text.hyperlink.IHyperlink

如果你需要详细的例子,那么看看plugin.xml的org.eclipse.jdt.ui。 (您可以从 CVS 或 Eclipse Classic SDK 安装中获取 org.eclipse.jdt.ui 的源代码)

Take a look at

  • extension point 'org.eclipse.ui.workbench.texteditor.hyperlinkDetectors'
  • classes org.eclipse.jface.text.hyperlink.AbstractHyperlinkDetector, org.eclipse.jface.text.hyperlink.IHyperlinkDetector and org.eclipse.jface.text.hyperlink.IHyperlink

If you need detailed examples, then take a look at plugin.xml of org.eclipse.jdt.ui. (You can get the source for org.eclipse.jdt.ui either from CVS or from Eclipse Classic SDK install)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文