blob: 8b00b3a5c7b21fa81df1ed0fe6ad0cd92a37fd3c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 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.team.internal.ui.synchronize;
import org.eclipse.core.resources.IResource;
import org.eclipse.jface.wizard.*;
import org.eclipse.team.internal.ui.ITeamUIImages;
import org.eclipse.team.internal.ui.Policy;
import org.eclipse.team.ui.TeamImages;
import org.eclipse.team.ui.TeamUI;
import org.eclipse.team.ui.synchronize.*;
/**
* This is the class registered with the org.eclipse.team.ui.synchronizeWizard
*/
public abstract class SubscriberParticipantWizard extends Wizard {
private GlobalRefreshResourceSelectionPage selectionPage;
private IWizard importWizard;
public SubscriberParticipantWizard() {
setDefaultPageImageDescriptor(TeamImages.getImageDescriptor(ITeamUIImages.IMG_WIZBAN_SHARE));
setNeedsProgressMonitor(false);
}
/* (non-Javadoc)
* @see org.eclipse.jface.wizard.Wizard#getWindowTitle()
*/
public String getWindowTitle() {
return Policy.bind("GlobalRefreshSubscriberPage.0"); //$NON-NLS-1$
}
/* (non-Javadoc)
* @see org.eclipse.jface.wizard.Wizard#addPages()
*/
public void addPages() {
if (getRootResources().length == 0) {
importWizard = getImportWizard();
importWizard.setContainer(getContainer());
importWizard.addPages();
IWizardPage startingPage = importWizard.getStartingPage();
if (startingPage != null) {
startingPage.setTitle(Policy.bind("SubscriberParticipantWizard.0", getName())); //$NON-NLS-1$
startingPage.setDescription(Policy.bind("SubscriberParticipantWizard.1", importWizard.getWindowTitle())); //$NON-NLS-1$
}
} else {
selectionPage = new GlobalRefreshResourceSelectionPage(getRootResources());
selectionPage.setTitle(Policy.bind("GlobalRefreshSubscriberPage.1", getName())); //$NON-NLS-1$
selectionPage.setMessage(Policy.bind("GlobalRefreshSubscriberPage.2")); //$NON-NLS-1$
addPage(selectionPage);
}
}
/* (non-Javadoc)
* @see org.eclipse.jface.wizard.IWizard#performFinish()
*/
public boolean performFinish() {
if (importWizard != null) {
return importWizard.performFinish();
} else {
IResource[] resources = selectionPage.getRootResources();
if (resources != null && resources.length > 0) {
SubscriberParticipant participant = createParticipant(selectionPage.getSynchronizeScope());
TeamUI.getSynchronizeManager().addSynchronizeParticipants(new ISynchronizeParticipant[]{participant});
// We don't know in which site to show progress because a participant could actually be shown in multiple sites.
participant.run(null /* no site */);
}
return true;
}
}
/* (non-Javadoc)
* @see org.eclipse.jface.wizard.Wizard#getNextPage(org.eclipse.jface.wizard.IWizardPage)
*/
public IWizardPage getNextPage(IWizardPage page) {
if(importWizard != null ) {
return importWizard.getNextPage(page);
}
return super.getNextPage(page);
}
/* (non-Javadoc)
* @see org.eclipse.jface.wizard.Wizard#performCancel()
*/
public boolean performCancel() {
if(importWizard != null) {
return importWizard.performCancel();
}
return super.performCancel();
}
/* (non-Javadoc)
* @see org.eclipse.jface.wizard.Wizard#canFinish()
*/
public boolean canFinish() {
if(importWizard != null) {
return importWizard.canFinish();
}
return super.canFinish();
}
/* (non-Javadoc)
* @see org.eclipse.jface.wizard.Wizard#getStartingPage()
*/
public IWizardPage getStartingPage() {
if(importWizard != null) {
return importWizard.getStartingPage();
}
return super.getStartingPage();
}
protected abstract IResource[] getRootResources();
protected abstract SubscriberParticipant createParticipant(ISynchronizeScope scope);
protected abstract String getName();
protected abstract IWizard getImportWizard();
}