blob: 04991bd6721398416e303a1a14b19788a0453b73 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2014 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.cdt.internal.ui.wizards.settingswizards;
import org.eclipse.core.resources.IProject;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.wizard.Wizard;
import org.eclipse.ui.IWorkbench;
/**
* @since 5.1
*/
public abstract class ProjectSettingsWizard extends Wizard {
private ProjectSettingsWizardPage mainPage;
private IStructuredSelection selection;
public abstract ProjectSettingsWizardPage getPage();
private boolean finishedPressed;
@Override
public void addPages() {
super.addPages();
mainPage = getPage();
// happens if the user invoked the wizard by right clicking on a project element
if (selection != null) {
final Object firstElement = selection.getFirstElement();
if (firstElement instanceof IProject) {
mainPage.setInitialProject((IProject) firstElement);
}
}
addPage(mainPage);
}
@Override
public boolean performFinish() {
finishedPressed = true;
return mainPage.finish();
}
public boolean isFinishedPressed() {
return finishedPressed;
}
public void init(IWorkbench workbench, IStructuredSelection selection) {
this.selection = selection;
setNeedsProgressMonitor(true);
}
}