SWT/JFace 最小化/最大化编辑器区域
我没有找到任何以编程方式最小化/最大化的功能。 当所有编辑器都关闭时,我想最小化我的编辑器区域。 有什么建议吗?
提前致谢。
I didn't manage to find any functionalities for minimizing/maximizing programatically.
I want to minimize my editorArea when all the editors are closed.
Any suggestions?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我找到了最小化编辑器区域的解决方法。它不是很好,但它正在完成工作。
我真的不喜欢那个演员,但我无法得到具体的课程。
有什么改进的建议吗?
I found a workaround to minimize the editorArea. It's not very nice but it's doing the job.
I really don't like that cast but I cant get the concrete class.
Any suggestions for improving this?
您可以使用
IWorkbenchPage
.setEditorAreaVisible()
。您可以通过添加IPerspectiveListener
到窗口。虽然也可以使用页面的
setPartState()
方法最小化编辑器区域,但在所有编辑器关闭后无法完成此操作。尽管最后一个编辑器引用在关闭编辑器事件处理程序中可用,但对 ILayoutContainer 的引用已被删除,因此不能用于更改状态。You can show/hide editor area using
IWorkbenchPage
.setEditorAreaVisible()
. You could do this by addingIPerspectiveListener
to the window.While it is also possible to minimize editor area using
setPartState()
method of the page, this can't be done after all editors are closed. Even though the last editor reference is available in close editor event handler, the reference toILayoutContainer
has already been removed and thus can't be used to change the state.我在 bugs.eclipse.com 上发现了这个错误:https://bugs.eclipse。 org/bugs/show_bug.cgi?id=29840 但我找不到 ZoomManagement。
I found this bug on bugs.eclipse.com: https://bugs.eclipse.org/bugs/show_bug.cgi?id=29840 but i can't find the ZoomManagement.