Package org.marian.eclipse

Source Code of org.marian.eclipse.Perspective

package org.marian.eclipse;

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(true);
    layout.addStandaloneView(MainView.ID,  false, IPageLayout.LEFT, 0.25f, editorArea);
   
//    layout.addStandaloneView(NavigationView.ID,  false, IPageLayout.LEFT, 0.25f, editorArea);
    IFolderLayout folder = layout.createFolder("messages", IPageLayout.TOP, 0.5f, editorArea);
    folder.addPlaceholder(View.ID + ":*");
    layout.addFastView(ContactsEditor.ID);
//    folder.addView(MainView.ID);
   
    layout.getViewLayout(NavigationView.ID).setCloseable(false);
  }
TOP

Related Classes of org.marian.eclipse.Perspective

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.