blob: e7838cd9918786c10a1e8482a44765939c73ffb3 [file] [log] [blame]
/*
* Copyright (c) 2002 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 - Initial API and implementation
* Jens Lukowski/Innoopract - initial renaming/restructuring
*
*/
package org.eclipse.wst.common.ui.wizards;
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.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.jface.viewers.IStructuredSelection;
import org.eclipse.swt.widgets.Display;
import org.eclipse.ui.INewWizard;
import org.eclipse.ui.IWorkbench;
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.ide.IDE;
import org.eclipse.ui.wizards.newresource.BasicNewProjectResourceWizard;
import org.eclipse.ui.wizards.newresource.BasicNewResourceWizard;
import org.eclipse.wst.common.ui.UIPlugin;
public class ExampleProjectCreationWizard extends BasicNewResourceWizard implements INewWizard, IExecutableExtension {
private ExampleProjectCreationWizardPage[] fPages;
private IConfigurationElement fConfigElement;
public ExampleProjectCreationWizard() {
super();
setDialogSettings(UIPlugin.getDefault().getDialogSettings());
setWindowTitle(UIPlugin.getResourceString("ExampleProjectCreationWizard.title")); //$NON-NLS-1$
setNeedsProgressMonitor(true);
}
public void initializeDefaultPageImageDescriptor() {
if (fConfigElement != null) {
String banner= fConfigElement.getAttribute("banner"); //$NON-NLS-1$
if (banner != null) {
ImageDescriptor desc= this.getImageDescriptor(banner);
setDefaultPageImageDescriptor(desc);
}
}
}
protected ImageDescriptor getImageDescriptor(String banner) {
return null;
}
/*
* @see Wizard#addPages
*/
public void addPages() {
super.addPages();
IConfigurationElement[] children = fConfigElement.getChildren("projectsetup"); //$NON-NLS-1$
if (children == null || children.length == 0) {
UIPlugin.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++) {
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= UIPlugin.getResourceString("ExampleProjectCreationWizard.op_error.title"); //$NON-NLS-1$
String message= UIPlugin.getResourceString("ExampleProjectCreationWizard.op_error.message"); //$NON-NLS-1$
if (target instanceof CoreException) {
IStatus status= ((CoreException)target).getStatus();
ErrorDialog.openError(getShell(), title, message, status);
UIPlugin.log(status);
} else {
MessageDialog.openError(getShell(), title, target.getMessage());
UIPlugin.log(target);
}
}
private void openResource(final IResource resource) {
if (resource.getType() != IResource.FILE) {
return;
}
IWorkbenchWindow window= UIPlugin.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 {
IDE.openEditor(activePage, (IFile)resource, true);
} catch (PartInitException e) {
UIPlugin.log(e);
}
}
});
BasicNewResourceWizard.selectAndReveal(resource, activePage.getWorkbenchWindow());
}
}
/**
* 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;
initializeDefaultPageImageDescriptor();
String title= fConfigElement.getAttribute("name"); //$NON-NLS-1$
if (title != null) {
//setWindowTitle(title);
}
}
// 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= UIPlugin.getResourceString("ExampleProjectCreationWizard.overwritequery.title"); //$NON-NLS-1$
String msg= UIPlugin.getDefault().getString("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];
}
}
/* (non-Javadoc)
* @see org.eclipse.ui.IWorkbenchWizard#init(org.eclipse.ui.IWorkbench, org.eclipse.jface.viewers.IStructuredSelection)
*/
public void init(IWorkbench workbench, IStructuredSelection selection) {
// Empty
}
}