CDT 的 Eclipse PDE 弹出窗口扩展

发布于 2024-07-19 03:32:20 字数 165 浏览 6 评论 0原文

我刚刚将我的插件从 Eclipse 版本 3.3.2 移至版本 3.4.1。 我添加到项目导航器(通过对象贡献 IFile)的弹出菜单扩展不会出现在 C++ 可执行文件中。 IResource 对象贡献不会出现在“调试”和“发布”文件夹中。 这些类型的贡献是否已被禁用? 有没有办法扩展这些对象的上下文菜单?

I just moved my plugin from Version 3.3.2 of Eclipse to Version 3.4.1. The popup menu extensions I added to the project navigator (via Object Contribution IFile) do not appear for C++ executables. IResource object Contributions to not appear on the Debug and Release folders. Have contributions been disabled for these types? Is there someway to extend the context menu on these objects?

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

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

发布评论

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

评论(1

不甘平庸 2024-07-26 03:32:20

这不是Eclipse版本不同的问题,而是Eclipse视角不同的问题。

当在 C++ 透视图中打开项目导航器时,表示项目、发布/调试容器和二进制文件的对象不是从 IResource / IFile 派生的,因此无法使用对象贡献 IFile。 这些对象位于“CDT”包层次结构中。

在其他视角中,例如 PDE 视角,树中的对象确实派生自 IResource。

This is not an issue of different versions of Eclipse, but rather different Eclipse perspectives.

When the Project Navigator is opened in a C++ perspective, the objects representing the project, release/debug containers, and binary are not derived from IResource / IFile so the Object Contribution IFile cannot be used. These objects are in the 'CDT' package hierarchy.

In other perspectives, such as the PDE perspective, the objects in the tree do derive from IResource.

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