blob: cbe19a14f967d632777acec1885b540c31bead81 [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 Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.internal;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.ui.IPerspectiveDescriptor;
import org.eclipse.ui.IViewPart;
import org.eclipse.ui.IViewReference;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.PartInitException;
import org.eclipse.ui.internal.intro.IIntroConstants;
import org.eclipse.ui.internal.intro.IntroMessages;
import org.eclipse.ui.intro.IIntroManager;
import org.eclipse.ui.intro.IIntroPart;
/**
* Workbench implementation of the IIntroManager interface.
*
* @since 3.0
*/
public class WorkbenchIntroManager implements IIntroManager {
private final Workbench workbench;
/**
* Create a new instance of the receiver.
*
* @param workbench the workbench instance
*/
WorkbenchIntroManager(Workbench workbench) {
this.workbench = workbench;
}
/**
* The currently active introPart in this workspace, <code>null</code> if none.
*/
private IIntroPart introPart;
/* (non-Javadoc)
* @see org.eclipse.ui.IWorkbench#closeIntro(org.eclipse.ui.intro.IIntroPart)
*/
public boolean closeIntro(IIntroPart part) {
if (introPart == null || !introPart.equals(part))
return false;
introPart = null;
IViewPart introView = getViewIntroAdapterPart();
if (introView != null) {
getViewIntroAdapterPart().getSite().getPage().hideView(introView);
}
return true;
}
/* (non-Javadoc)
* @see org.eclipse.ui.IWorkbench#showIntro(org.eclipse.ui.IWorkbenchWindow)
*/
public IIntroPart showIntro(IWorkbenchWindow preferredWindow, boolean standby) {
if (preferredWindow == null)
preferredWindow = this.workbench.getActiveWorkbenchWindow();
if (preferredWindow == null)
return null;
if (getViewIntroAdapterPart() == null) {
createIntro((WorkbenchWindow) preferredWindow);
}
else {
try {
ViewIntroAdapterPart viewPart = getViewIntroAdapterPart();
WorkbenchPage page = (WorkbenchPage) viewPart.getSite().getPage();
WorkbenchWindow window = (WorkbenchWindow) page.getWorkbenchWindow();
if (!window.equals(preferredWindow)) {
window.getShell().setActive();
}
page.showView(IIntroConstants.INTRO_VIEW_ID);
} catch (PartInitException e) {
WorkbenchPlugin.log("Could not open intro", new Status(IStatus.ERROR, WorkbenchPlugin.PI_WORKBENCH, IStatus.ERROR, "Could not open intro", e)); //$NON-NLS-1$ //$NON-NLS-2$
}
}
setIntroStandby(introPart, standby);
return introPart;
}
/**
* @param window the window to test
* @return whether the intro exists in the given window
* @since 3.0
*/
/*package*/ boolean isIntroInWindow(IWorkbenchWindow testWindow) {
ViewIntroAdapterPart viewPart = getViewIntroAdapterPart();
if (viewPart == null)
return false;
WorkbenchPage page = (WorkbenchPage) viewPart.getSite().getPage();
WorkbenchWindow window = (WorkbenchWindow) page.getWorkbenchWindow();
if (window.equals(testWindow)) {
return true;
}
return false;
}
/**
* Create a new Intro area (a view, currently) in the provided window. If there is no intro
* descriptor for this workbench then no work is done.
*
* @param preferredWindow the window to create the intro in.
* @since 3.0
*/
private void createIntro(WorkbenchWindow preferredWindow) {
if (this.workbench.getIntroDescriptor() == null)
return;
WorkbenchPage workbenchPage = preferredWindow.getActiveWorkbenchPage();
if (workbenchPage == null)
return;
try {
workbenchPage.showView(IIntroConstants.INTRO_VIEW_ID);
} catch (PartInitException e) {
WorkbenchPlugin.log(IntroMessages.getString("Intro.could_not_create_part"), new Status(IStatus.ERROR, WorkbenchPlugin.PI_WORKBENCH, IStatus.ERROR, IntroMessages.getString("Intro.could_not_create_part"), e)); //$NON-NLS-1$ //$NON-NLS-2$
}
}
/* (non-Javadoc)
* @see org.eclipse.ui.IWorkbench#setIntroStandby(org.eclipse.ui.intro.IIntroPart, boolean)
*/
public void setIntroStandby(IIntroPart part, boolean standby) {
if (introPart == null || !introPart.equals(part))
return;
PartPane pane = ((PartSite)getViewIntroAdapterPart().getSite()).getPane();
if (standby == !pane.isZoomed()) {
// the zoom state is already correct - just update the part's state.
getViewIntroAdapterPart().setStandby(standby);
return;
}
((WorkbenchPage)getViewIntroAdapterPart().getSite().getPage()).toggleZoom(pane.getPartReference());
}
/* (non-Javadoc)
* @see org.eclipse.ui.IWorkbench#isIntroStandby(org.eclipse.ui.intro.IIntroPart)
*/
public boolean isIntroStandby(IIntroPart part) {
if (introPart == null || !introPart.equals(part))
return false;
return !((PartSite)getViewIntroAdapterPart().getSite()).getPane().isZoomed();
}
/* (non-Javadoc)
* @see org.eclipse.ui.IWorkbench#findIntro()
*/
public IIntroPart getIntro() {
return introPart;
}
/**
* @return the <code>ViewIntroAdapterPart</code> for this workbench, <code>null</code> if it
* cannot be found.
* @since 3.0
*/
/*package*/ ViewIntroAdapterPart getViewIntroAdapterPart() {
IWorkbenchWindow [] windows = this.workbench.getWorkbenchWindows();
for (int i = 0; i < windows.length; i++) {
IWorkbenchWindow window = windows[i];
WorkbenchPage page = (WorkbenchPage) window.getActivePage();
if (page == null) {
continue;
}
IPerspectiveDescriptor [] perspDescs = page.getOpenedPerspectives();
for (int j = 0; j < perspDescs.length; j++) {
IPerspectiveDescriptor descriptor = perspDescs[j];
IViewReference reference = page.findPerspective(descriptor).findView(IIntroConstants.INTRO_VIEW_ID);
if (reference != null) {
ViewIntroAdapterPart part = (ViewIntroAdapterPart) reference.getView(false);
if (part != null)
return part;
}
}
}
return null;
}
/**
* @return a new IIntroPart. This has the side effect of setting the introPart field to the new
* value.
* @since 3.0
*/
/*package*/ IIntroPart createNewIntroPart() throws CoreException {
return introPart = workbench.getIntroDescriptor() == null ? null : workbench.getIntroDescriptor().createIntro();
}
/* (non-Javadoc)
* @see org.eclipse.ui.IWorkbench#hasIntro()
*/
public boolean hasIntro() {
return workbench.getIntroDescriptor() != null;
}
}