perspective.java
来自「有限自动机输入,转换,识别,图形显示与化简」· Java 代码 · 共 25 行
JAVA
25 行
package cn.work.zdj.app;import org.eclipse.ui.IPageLayout;import org.eclipse.ui.IPerspectiveFactory;import cn.work.zdj.sys.IAppConstants;public class Perspective implements IPerspectiveFactory { public void createInitialLayout(IPageLayout layout) { String editorArea = layout.getEditorArea(); layout.setEditorAreaVisible(false); layout.setFixed(true); layout.addStandaloneView(IAppConstants.OLD_ZDJ_VIEW_ID, true, IPageLayout.LEFT, 0.22f, editorArea); layout.getViewLayout(IAppConstants.OLD_ZDJ_VIEW_ID).setCloseable(false); layout.getViewLayout(IAppConstants.OLD_ZDJ_VIEW_ID).setMoveable(false); layout.addView(IAppConstants.INPUT_ZDJ_VIEW_ID, IPageLayout.RIGHT, 0.78f, editorArea); layout.getViewLayout(IAppConstants.INPUT_ZDJ_VIEW_ID).setCloseable(false); layout.getViewLayout(IAppConstants.INPUT_ZDJ_VIEW_ID).setMoveable(false); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?