blob: 04f2b837a3da7d20ee9b86a4c718bc3f9fbb90ab [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2005 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.internal.presentations;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.ui.presentations.IStackPresentationSite;
import org.eclipse.ui.presentations.StackPresentation;
import org.eclipse.ui.presentations.WorkbenchPresentationFactory;
/**
* A presentation factory that creates a look similar to previous verisons of eclipse.
*/
public class R21PresentationFactory extends WorkbenchPresentationFactory {
/* (non-Javadoc)
* @see org.eclipse.ui.presentations.AbstractPresentationFactory
*/
public StackPresentation createEditorPresentation(Composite parent,
IStackPresentationSite site) {
return new R21EditorStackPresentation(parent, site);
}
/* (non-Javadoc)
* @see org.eclipse.ui.presentations.AbstractPresentationFactory
*/
public StackPresentation createViewPresentation(Composite parent,
IStackPresentationSite site) {
return new R21ViewStackPresentation(parent, site);
}
/* (non-Javadoc)
* @see org.eclipse.ui.presentations.AbstractPresentationFactory
*/
public StackPresentation createStandaloneViewPresentation(Composite parent,
IStackPresentationSite site, boolean showTitle) {
// TODO: honour showTitle
return new R21ViewStackPresentation(parent, site);
}
}