CDT 的 Eclipse PDE 弹出窗口扩展
我刚刚将我的插件从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这不是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.