/******************************************************************************* * Copyright (c) 2010-2015 Henshin developers. All rights reserved. * This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * TU Berlin, University of Luxembourg, SES S.A. *******************************************************************************/ package de.tub.tfs.muvitor.ui.utils; import org.eclipse.ui.IFolderLayout; import org.eclipse.ui.IPageLayout; import org.eclipse.ui.IPerspectiveFactory; import de.tub.tfs.muvitor.ui.MuvitorTreeEditor; /** * This the default definition of the perspective for the RON editor. * {@link MuvitorTreeEditor} can automatically activate this perspective if it * is declared in the plugin.xml. See {@link MuvitorTreeEditor} for details. * * @author Tony Modica */ public class PerspectiveTemplate implements IPerspectiveFactory { /* * (non-Javadoc) * @see * org.eclipse.ui.IPerspectiveFactory#createInitialLayout(org.eclipse.ui * .IPageLayout) */ @Override public void createInitialLayout(final IPageLayout layout) { defineActions(layout); defineLayout(layout); } /** * Defines the initial actions for a page. * * @param layout * The layout we are filling */ private void defineActions(final IPageLayout layout) { // insert the id of your creation wizard here layout.addNewWizardShortcut("roneditor.dialogs.RONFileCreationWizard"); //$NON-NLS-1$ // Add "show views". layout.addShowViewShortcut(IPageLayout.ID_PROP_SHEET); layout.addShowViewShortcut(IPageLayout.ID_PROBLEM_VIEW); layout.addShowViewShortcut("org.eclipse.pde.runtime.LogView"); layout.addShowViewShortcut("de.tub.tfs.muvitor.CommonNavigator"); } /** * Defines the initial perspective layout. * * @param layout * The layout we are filling */ private void defineLayout(final IPageLayout layout) { final String editorArea = layout.getEditorArea(); final IFolderLayout bottomRight = layout.createFolder("bottomRight", IPageLayout.RIGHT, 0.2f, editorArea); bottomRight.addView(IPageLayout.ID_PROP_SHEET); bottomRight.addView("org.eclipse.pde.runtime.LogView"); bottomRight.addView(IPageLayout.ID_PROBLEM_VIEW); final IFolderLayout bottomLeft = layout.createFolder("bottomLeft", IPageLayout.BOTTOM, 0.7f, editorArea); bottomLeft.addView("de.tub.tfs.muvitor.CommonNavigator"); // final IPlaceholderFolderLayout middleRight = layout.createPlaceholderFolder("middleRight", // IPageLayout.TOP, 0.8f, "bottomRight"); /* * the suffix ":*" is needed for all MuvitorPageBookViews as a * placeholder for the views' different secondary IDs */ // middleRight.addPlaceholder(RONTreeEditor.ronViewID + ":*"); // // final IPlaceholderFolderLayout topRight = layout // .createPlaceholderFolder("topRight", IPageLayout.TOP, 0.5f, // "middleRight"); // topRight.addPlaceholder(RONTreeEditor.objectNetViewID + ":*"); // topRight.addPlaceholder(RONTreeEditor.ruleViewID + ":*"); } }