/******************************************************************************* * Copyright (c) 2004, 2006 IBM Corporation and others. * 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: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.ui.tests.performance.presentations; import org.eclipse.ui.IPageLayout; import org.eclipse.ui.IPerspectiveFactory; /** * @since 3.1 */ public class StandaloneViewPerspective implements IPerspectiveFactory { /* (non-Javadoc) * @see org.eclipse.ui.IPerspectiveFactory#createInitialLayout(org.eclipse.ui.IPageLayout) */ public void createInitialLayout(IPageLayout layout) { // One standalone view (bookmarks) with trim layout.addStandaloneView(IPageLayout.ID_BOOKMARKS, true, IPageLayout.LEFT, 0.5f, IPageLayout.ID_EDITOR_AREA); // One standalone view (problems) without trim layout.addStandaloneView(IPageLayout.ID_PROBLEM_VIEW, false, IPageLayout.RIGHT, 0.5f, IPageLayout.ID_EDITOR_AREA); // One regular view (outline) layout.addView(IPageLayout.ID_OUTLINE, IPageLayout.BOTTOM, 0.5f, IPageLayout.ID_EDITOR_AREA); } }