blob: 74990f59d3863e745d2af8ae2956927a805ba537 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2021 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.tests.dnd;
import org.eclipse.ui.IPageLayout;
import org.eclipse.ui.IPerspectiveFactory;
/**
*
* @since 3.1.1
*/
public class StandaloneViewPerspective implements IPerspectiveFactory {
public static final String OUTLINE_ID = IPageLayout.ID_OUTLINE;
public static final String RESOURCE_ID = IPageLayout.ID_PROJECT_EXPLORER;
public static final String TASK_ID = IPageLayout.ID_TASK_LIST;
public static final String PERSP_ID = "org.eclipse.ui.tests.dnd.StandaloneViewPerspective";
public StandaloneViewPerspective() {
// do nothing
}
@Override
public void createInitialLayout(IPageLayout layout) {
layout.setEditorAreaVisible(true);
layout.addStandaloneView(RESOURCE_ID, true, IPageLayout.LEFT, 0.25f, IPageLayout.ID_EDITOR_AREA);
layout.addStandaloneView(OUTLINE_ID, true, IPageLayout.RIGHT, 0.25f, IPageLayout.ID_EDITOR_AREA);
layout.getViewLayout(OUTLINE_ID).setCloseable(false);
layout.addStandaloneView(TASK_ID, true, IPageLayout.BOTTOM, 0.25f, IPageLayout.ID_EDITOR_AREA);
}
}