perspective.java

来自「mywork是rcp开发的很好的例子」· Java 代码 · 共 22 行

JAVA
22
字号
package net.sf.p2pim;import org.eclipse.ui.IFolderLayout;import org.eclipse.ui.IPageLayout;import org.eclipse.ui.IPerspectiveFactory;public class Perspective implements IPerspectiveFactory {	public void createInitialLayout(IPageLayout layout) {		String editorArea = layout.getEditorArea();		layout.setEditorAreaVisible(false);				layout.addStandaloneView(BuddyListView.ID,  false, IPageLayout.LEFT, 0.25f, editorArea);		IFolderLayout folder = layout.createFolder("messages", IPageLayout.TOP, 0.5f, editorArea);		folder.addPlaceholder(ChatView.ID + ":*");//		folder.addView(ChatView.ID);				layout.addActionSet("MyWork-p2pim.actionSet");		layout.getViewLayout(BuddyListView.ID).setCloseable(false);	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?