blob: 9a304f7c5e7fc701669d81d901700dffb16080a5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 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.ide.dialogs;
import java.net.MalformedURLException;
import java.net.URL;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.Platform;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.wizard.Wizard;
import org.eclipse.ui.IWorkbench;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.internal.ide.IDEWorkbenchMessages;
public class ProjectCapabilitySimpleAddWizard extends Wizard {
private ProjectCapabilitySimpleSelectionPage mainPage;
private IWorkbench workbench;
private IStructuredSelection selection;
private IProject project;
public ProjectCapabilitySimpleAddWizard(IWorkbench workbench, IStructuredSelection selection, IProject project) {
super();
this.workbench = workbench;
this.selection = selection;
this.project = project;
setForcePreviousAndNextButtons(true);
setNeedsProgressMonitor(true);
initializeDefaultPageImageDescriptor();
setWindowTitle(IDEWorkbenchMessages.getString("ProjectCapabilitySimpleSelectionPage.windowTitle")); //$NON-NLS-1$
}
/* (non-Javadoc)
* Method declared on IWizard
*/
public void addPages() {
mainPage =
new ProjectCapabilitySimpleSelectionPage(
"projectCapabilitySimpleSelectionPage", //$NON-NLS-1$
workbench,
selection,
project);
mainPage.setTitle(IDEWorkbenchMessages.getString("ProjectCapabilitySimpleSelectionPage.title")); //$NON-NLS-1$
mainPage.setDescription(IDEWorkbenchMessages.getString("ProjectCapabilitySimpleSelectionPage.description")); //$NON-NLS-1$
addPage(mainPage);
}
/* (non-Javadoc)
* Method declared on IWizard.
*/
public boolean canFinish() {
return false;
}
/**
* Sets the image banner for the wizard
*/
protected void initializeDefaultPageImageDescriptor() {
String iconPath = "icons/full/";//$NON-NLS-1$
try {
// @issue when icons move to IDE, need to update the following
URL installURL = Platform.getPlugin(PlatformUI.PLUGIN_ID).getDescriptor().getInstallURL();
URL url = new URL(installURL, iconPath + "wizban/newprj_wiz.gif");//$NON-NLS-1$
ImageDescriptor desc = ImageDescriptor.createFromURL(url);
setDefaultPageImageDescriptor(desc);
}
catch (MalformedURLException e) {
// Should not happen. Ignore.
}
}
/* (non-Javadoc)
* Method declared on IWizard
*/
public boolean performFinish() {
return true;
}
}