java – 在Eclipse RCP中使用导航历史记录

前端之家收集整理的这篇文章主要介绍了java – 在Eclipse RCP中使用导航历史记录前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我喜欢在我的RCP应用程序中使用Eclipse提供的导航历史记录.不幸的是,这个功能没有很好的记录事实上我只找到了这个Wiki条目:http://wiki.eclipse.org/FAQ_How_do_I_hook_my_editor_to_the_Back_and_Forward_buttons%3F

它提到可以在导航历史记录中标记每个编辑器,而无需指定位置.这正是我想要的.

Regardless of whether the specific editor has any support for navigation history,markLocation will work. If the editor doesn’t implement INavigationLocationProvider,a history entry will be added,allowing the user to jump back to that editor but without returning to any particular location.

我在应用程序中添加了以下代码行,以便每次打开新的编辑器时添加导航条目.

IWorkbenchPage page = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage();
IEditorPart editor = page.openEditor( input,MyEditor.ID );
page.getNavigationHistory().markLocation( editor );

我的问题是代码不起作用.命令org.eclipse.ui.navigate.backwardHistory和org.eclipse.ui.navigate.forwardHistory的工具栏图标保持灰色.

最佳答案
我找到了解决方案.要在Eclipse RCP应用程序中使用导航历史记录,您必须将以下代码添加到ApplicationActionBarAdvisor.

/**
 * Fills the cool bar with the main toolbars for the window.
 * 
原文链接:https://www.f2er.com/java/438080.html

猜你在找的Java相关文章