blob: 001bdc3107920d1b3fa68e02534abd89fbce0c84 [file] [log] [blame]
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.exampleprojects;
import java.lang.reflect.InvocationTargetException;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IConfigurationElement;
import org.eclipse.core.runtime.IExecutableExtension;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.swt.widgets.Display;
import org.eclipse.jface.dialogs.ErrorDialog;
import org.eclipse.jface.dialogs.IDialogConstants;
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.jface.operation.IRunnableWithProgress;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.ui.INewWizard;
import org.eclipse.ui.IWorkbenchPage;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.PartInitException;
import org.eclipse.ui.actions.WorkspaceModifyDelegatingOperation;
import org.eclipse.ui.dialogs.IOverwriteQuery;
import org.eclipse.ui.wizards.newresource.BasicNewProjectResourceWizard;
import org.eclipse.ui.wizards.newresource.BasicNewResourceWizard;
public class ExampleProjectCreationWizard extends BasicNewResourceWizard implements INewWizard, IExecutableExtension {
private ExampleProjectCreationWizardPage[] fPages;
private IConfigurationElement fConfigElement;
public ExampleProjectCreationWizard() {
super();
setDialogSettings(ExampleProjectsPlugin.getDefault().getDialogSettings());
setWindowTitle(ExampleProjectMessages.getString("ExampleProjectCreationWizard.title")); //$NON-NLS-1$
setNeedsProgressMonitor(true);
}
/*
* @see BasicNewResourceWizard#initializeDefaultPageImageDescriptor
*/
protected void initializeDefaultPageImageDescriptor() {
if (fConfigElement != null) {
String banner= fConfigElement.getAttribute("banner"); //$NON-NLS-1$
if (banner != null) {
ImageDescriptor desc= ExampleProjectsPlugin.getDefault().getImageDescriptor(banner);
setDefaultPageImageDescriptor(desc);
}
}
}
/*
* @see Wizard#addPages
*/
public void addPages() {
super.addPages();
IConfigurationElement[] children = fConfigElement.getChildren("projectsetup"); //$NON-NLS-1$
if (children == null || children.length == 0) {
ExampleProjectsPlugin.log("descriptor must contain one ore more projectsetup tags"); //$NON-NLS-1$
return;
}
fPages= new ExampleProjectCreationWizardPage[children.length];
for (int i= 0; i < children.length; i++) {
IConfigurationElement curr= children[i];
fPages[i]= new ExampleProjectCreationWizardPage(i, children[i]);
addPage(fPages[i]);
}
}
/*
* @see Wizard#performFinish
*/
public boolean performFinish() {
ExampleProjectCreationOperation runnable= new ExampleProjectCreationOperation(fPages, new ImportOverwriteQuery());
IRunnableWithProgress op= new WorkspaceModifyDelegatingOperation(runnable);
try {
getContainer().run(false, true, op);
} catch (InvocationTargetException e) {
handleException(e.getTargetException());
return false;
} catch (InterruptedException e) {
return false;
}
BasicNewProjectResourceWizard.updatePerspective(fConfigElement);
IResource res= runnable.getElementToOpen();
if (res != null) {
openResource(res);
}
return true;
}
private void handleException(Throwable target) {
String title= ExampleProjectMessages.getString("ExampleProjectCreationWizard.op_error.title"); //$NON-NLS-1$
String message= ExampleProjectMessages.getString("ExampleProjectCreationWizard.op_error.message"); //$NON-NLS-1$
if (target instanceof CoreException) {
IStatus status= ((CoreException)target).getStatus();
ErrorDialog.openError(getShell(), title, message, status);
ExampleProjectsPlugin.log(status);
} else {
MessageDialog.openError(getShell(), title, target.getMessage());
ExampleProjectsPlugin.log(target);
}
}
private void openResource(final IResource resource) {
if (resource.getType() != IResource.FILE) {
return;
}
IWorkbenchWindow window= ExampleProjectsPlugin.getDefault().getWorkbench().getActiveWorkbenchWindow();
if (window == null) {
return;
}
final IWorkbenchPage activePage= window.getActivePage();
if (activePage != null) {
final Display display= getShell().getDisplay();
display.asyncExec(new Runnable() {
public void run() {
try {
activePage.openEditor((IFile)resource);
} catch (PartInitException e) {
ExampleProjectsPlugin.log(e);
}
}
});
selectAndReveal(resource);
}
}
/**
* Stores the configuration element for the wizard. The config element will be used
* in <code>performFinish</code> to set the result perspective.
*/
public void setInitializationData(IConfigurationElement cfig, String propertyName, Object data) {
fConfigElement= cfig;
}
// overwrite dialog
private class ImportOverwriteQuery implements IOverwriteQuery {
public String queryOverwrite(String file) {
String[] returnCodes= { YES, NO, ALL, CANCEL};
int returnVal= openDialog(file);
return returnVal < 0 ? CANCEL : returnCodes[returnVal];
}
private int openDialog(final String file) {
final int[] result= { IDialogConstants.CANCEL_ID };
getShell().getDisplay().syncExec(new Runnable() {
public void run() {
String title= ExampleProjectMessages.getString("ExampleProjectCreationWizard.overwritequery.title"); //$NON-NLS-1$
String msg= ExampleProjectMessages.getFormattedString("ExampleProjectCreationWizard.overwritequery.message", file); //$NON-NLS-1$
String[] options= {IDialogConstants.YES_LABEL, IDialogConstants.NO_LABEL, IDialogConstants.YES_TO_ALL_LABEL, IDialogConstants.CANCEL_LABEL};
MessageDialog dialog= new MessageDialog(getShell(), title, null, msg, MessageDialog.QUESTION, options, 0);
result[0]= dialog.open();
}
});
return result[0];
}
}
}