blob: 876c43509dd0582e9a62987de2898c7777409729 [file] [log] [blame]
package org.eclipse.ui.internal.dialogs;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import org.eclipse.core.runtime.CoreException;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.wizard.IWizardNode;
import org.eclipse.jface.wizard.Wizard;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.ui.IWorkbench;
import org.eclipse.ui.IWorkbenchWizard;
import org.eclipse.ui.help.WorkbenchHelp;
import org.eclipse.ui.internal.*;
import org.eclipse.ui.internal.model.AdaptableList;
import org.eclipse.ui.internal.registry.WizardsRegistryReader;
/**
* The import wizard allows the user to choose which nested import wizard to run.
* The set of available wizards comes from the import wizard extension point.
*/
public class ImportWizard extends Wizard {
private IWorkbench workbench;
private IStructuredSelection selection;
//the list selection page
class SelectionPage extends WorkbenchWizardListSelectionPage {
SelectionPage(IWorkbench w, IStructuredSelection ss, AdaptableList e, String s) {
super(w, ss, e, s);
}
public void createControl(Composite parent) {
super.createControl(parent);
WorkbenchHelp.setHelp(getControl(), IHelpContextIds.IMPORT_WIZARD_SELECTION_WIZARD_PAGE);
}
public IWizardNode createWizardNode(WorkbenchWizardElement element) {
return new WorkbenchWizardNode(this, element) {
public IWorkbenchWizard createWizard() throws CoreException {
return (IWorkbenchWizard)wizardElement.createExecutableExtension();
}
};
}
}
/**
* Creates the wizard's pages lazily.
*/
public void addPages() {
addPage(
new SelectionPage(
this.workbench,
this.selection,
getAvailableImportWizards(),
WorkbenchMessages.getString("ImportWizard.selectSource"))); //$NON-NLS-1$
}
/**
* Returns the import wizards that are available for invocation.
*/
protected AdaptableList getAvailableImportWizards() {
return new WizardsRegistryReader(IWorkbenchConstants.PL_IMPORT).getWizards();
}
/**
* Initializes the wizard.
*/
public void init(IWorkbench aWorkbench, IStructuredSelection currentSelection) {
this.workbench = aWorkbench;
this.selection = currentSelection;
setWindowTitle(WorkbenchMessages.getString("ImportWizard.title")); //$NON-NLS-1$
setDefaultPageImageDescriptor(WorkbenchImages.getImageDescriptor(IWorkbenchGraphicConstants.IMG_WIZBAN_IMPORT_WIZ));
setNeedsProgressMonitor(true);
}
/**
* Subclasses must implement this <code>IWizard</code> method
* to perform any special finish processing for their wizard.
*/
public boolean performFinish() {
((SelectionPage)getPages()[0]).saveWidgetValues();
return true;
}
}