⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 perspective.java

📁 一个基于eclipse插件开发的聊天程序
💻 JAVA
字号:
package talkServer;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(NavigationView.ID,  false, IPageLayout.LEFT, 0.25f, editorArea);		IFolderLayout folder = layout.createFolder("messages", IPageLayout.TOP, 0.5f, editorArea);		folder.addPlaceholder(IPPasswordMapView.ID + ":*");		folder.addView(IPPasswordMapView.ID);		folder.addView(IPStateMapView.ID);		//		layout.getViewLayout(NavigationView.ID).setCloseable(false);	}}

⌨️ 快捷键说明

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