blob: 3170b72652fa29f95e47df51141935d99070b4fa [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.team.internal.ccvs.ui.wizards;
import org.eclipse.core.resources.IProject;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Event;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Listener;
import org.eclipse.team.core.TeamException;
import org.eclipse.team.internal.ccvs.core.CVSException;
import org.eclipse.team.internal.ccvs.core.ICVSFolder;
import org.eclipse.team.internal.ccvs.core.ICVSRepositoryLocation;
import org.eclipse.team.internal.ccvs.core.connection.CVSRepositoryLocation;
import org.eclipse.team.internal.ccvs.core.resources.CVSWorkspaceRoot;
import org.eclipse.team.internal.ccvs.core.syncinfo.FolderSyncInfo;
import org.eclipse.team.internal.ccvs.ui.CVSUIPlugin;
import org.eclipse.team.internal.ccvs.ui.IHelpContextIds;
import org.eclipse.team.internal.ccvs.ui.Policy;
import org.eclipse.ui.help.WorkbenchHelp;
/**
* This configuration page explains to the user that CVS/ directories already exists and
* it will attach the selected project to the repository that is specified in the CVS/ files.
*
* This is useful for people who have checked out a project using command-line tools.
*/
public class ConfigurationWizardAutoconnectPage extends CVSWizardPage {
private boolean validate = true;
private FolderSyncInfo info;
ICVSRepositoryLocation location;
public ConfigurationWizardAutoconnectPage(String pageName, String title, ImageDescriptor titleImage) {
super(pageName, title, titleImage);
}
/*
* @see IDialogPage#createControl(Composite)
*/
public void createControl(Composite parent) {
Composite composite = createComposite(parent, 2);
setControl(composite);
// set F1 help
WorkbenchHelp.setHelp(composite, IHelpContextIds.SHARING_AUTOCONNECT_PAGE);
Label description = new Label(composite, SWT.WRAP);
GridData data = new GridData();
data.horizontalSpan = 2;
data.widthHint = 350;
description.setLayoutData(data);
description.setText(Policy.bind("ConfigurationWizardAutoconnectPage.description")); //$NON-NLS-1$
if (location == null) return;
// Spacer
createLabel(composite, ""); //$NON-NLS-1$
createLabel(composite, ""); //$NON-NLS-1$
createLabel(composite, Policy.bind("ConfigurationWizardAutoconnectPage.user")); //$NON-NLS-1$
createLabel(composite, location.getUsername());
createLabel(composite, Policy.bind("ConfigurationWizardAutoconnectPage.host")); //$NON-NLS-1$
createLabel(composite, location.getHost());
createLabel(composite, Policy.bind("ConfigurationWizardAutoconnectPage.port")); //$NON-NLS-1$
int port = location.getPort();
if (port == ICVSRepositoryLocation.USE_DEFAULT_PORT) {
createLabel(composite, Policy.bind("ConfigurationWizardAutoconnectPage.default")); //$NON-NLS-1$
} else {
createLabel(composite, "" + port); //$NON-NLS-1$
}
createLabel(composite, Policy.bind("ConfigurationWizardAutoconnectPage.connectionType")); //$NON-NLS-1$
createLabel(composite, location.getMethod().getName());
createLabel(composite, Policy.bind("ConfigurationWizardAutoconnectPage.repositoryPath")); //$NON-NLS-1$
createLabel(composite, location.getRootDirectory());
createLabel(composite, Policy.bind("ConfigurationWizardAutoconnectPage.module")); //$NON-NLS-1$
createLabel(composite, info.getRepository());
// Spacer
createLabel(composite, ""); //$NON-NLS-1$
createLabel(composite, ""); //$NON-NLS-1$
final Button check = new Button(composite, SWT.CHECK);
data = new GridData();
data.horizontalSpan = 2;
check.setText(Policy.bind("ConfigurationWizardAutoconnectPage.validate")); //$NON-NLS-1$
check.addListener(SWT.Selection, new Listener() {
public void handleEvent(Event event) {
validate = check.getSelection();
}
});
check.setSelection(true);
}
public FolderSyncInfo getFolderSyncInfo() {
return info;
}
public boolean getValidate() {
return validate;
}
public void setProject(IProject project) {
try {
ICVSFolder folder = (ICVSFolder)CVSWorkspaceRoot.getCVSResourceFor(project);
info = folder.getFolderSyncInfo();
if (info == null) {
// This should never happen
CVSUIPlugin.openError(null, Policy.bind("ConfigurationWizardAutoconnectPage.noSyncInfo"), Policy.bind("ConfigurationWizardAutoconnectPage.noCVSDirectory"), null); //$NON-NLS-1$ //$NON-NLS-2$
return;
}
location = CVSRepositoryLocation.fromString(info.getRoot());
} catch (TeamException e) {
CVSUIPlugin.openError(null, null, null, e);
}
}
public void setSharing(FolderSyncInfo info) {
this.info = info;
try {
this. location = CVSRepositoryLocation.fromString(info.getRoot());
} catch (CVSException e) {
CVSUIPlugin.openError(null, null, null, e);
}
}
public FolderSyncInfo getSharing() {
return info;
}
/**
* Gets the location.
* @return Returns a ICVSRepositoryLocation
*/
public ICVSRepositoryLocation getLocation() {
return location;
}
}