blob: 4dc157c7b7e94dbc8b0e1fa661997413a57bde57 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 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.api;
import org.eclipse.ui.IFolderLayout;
import org.eclipse.ui.IPageLayout;
import org.eclipse.ui.IPerspectiveFactory;
/**
* Supplies an arrangement of views to test various forms of view activation.
*
* @since 3.0
*/
public class ViewPerspective implements IPerspectiveFactory {
/* (non-Javadoc)
* @see org.eclipse.ui.IPerspectiveFactory#createInitialLayout(org.eclipse.ui.IPageLayout)
*/
public void createInitialLayout(IPageLayout layout) {
String editorArea = layout.getEditorArea();
IFolderLayout folder1 = layout.createFolder("folder1",
IPageLayout.LEFT, .25f, editorArea);
folder1.addView(MockViewPart.ID);
folder1.addPlaceholder(MockViewPart.ID2);
layout.addView(MockViewPart.ID3, IPageLayout.RIGHT, .75f, editorArea);
layout.addPlaceholder(MockViewPart.ID4, IPageLayout.BOTTOM, .75f,
editorArea);
}
}