/******************************************************************************* * Copyright (c) 2011, 2014 Ericsson * * All rights reserved. This program and the accompanying materials are * made available under the terms of the Eclipse Public License v1.0 which * accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Francois Chouinard - Copied and adapted from NewFolderDialog * Patrick Tasse - Close editors to release resources *******************************************************************************/ package org.eclipse.tracecompass.tmf.ui.project.wizards; import org.eclipse.core.resources.IContainer; import org.eclipse.core.resources.IResource; import org.eclipse.core.resources.IWorkspace; import org.eclipse.core.runtime.IStatus; import org.eclipse.core.runtime.Status; import org.eclipse.jface.dialogs.IDialogConstants; import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.Font; import org.eclipse.swt.layout.GridData; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Control; import org.eclipse.swt.widgets.Event; import org.eclipse.swt.widgets.Label; import org.eclipse.swt.widgets.Listener; import org.eclipse.swt.widgets.Shell; import org.eclipse.swt.widgets.Text; import org.eclipse.tracecompass.internal.tmf.ui.Activator; import org.eclipse.tracecompass.tmf.ui.project.model.TmfTraceElement; import org.eclipse.ui.dialogs.SelectionStatusDialog; /** * Implementation of a dialog box to rename a trace. * <p> * @version 1.0 * @author Francois Chouinard */ public class RenameTraceDialog extends SelectionStatusDialog { // ------------------------------------------------------------------------ // Members // ------------------------------------------------------------------------ private final TmfTraceElement fTrace; private Text fNewTraceNameText; // ------------------------------------------------------------------------ // Constructor // ------------------------------------------------------------------------ /** * Constructor * @param shell The parent shell * @param trace The trace element to rename */ public RenameTraceDialog(Shell shell, TmfTraceElement trace) { super(shell); fTrace = trace; setTitle(Messages.RenameTraceDialog_DialogTitle); setStatusLineAboveButtons(true); } // ------------------------------------------------------------------------ // Dialog // ------------------------------------------------------------------------ @Override protected Control createDialogArea(Composite parent) { Composite composite = (Composite) super.createDialogArea(parent); composite.setLayout(new GridLayout()); composite.setLayoutData(new GridData(GridData.FILL_BOTH)); createNewTraceNameGroup(composite); return composite; } private void createNewTraceNameGroup(Composite parent) { Font font = parent.getFont(); Composite folderGroup = new Composite(parent, SWT.NONE); GridLayout layout = new GridLayout(); layout.numColumns = 2; folderGroup.setLayout(layout); folderGroup.setLayoutData(new GridData(GridData.FILL_HORIZONTAL)); // Old trace name label Label oldTraceLabel = new Label(folderGroup, SWT.NONE); oldTraceLabel.setFont(font); oldTraceLabel.setText(Messages.RenameTraceDialog_TraceName); // Old trace name field Text oldTraceName = new Text(folderGroup, SWT.BORDER); GridData data = new GridData(GridData.FILL_HORIZONTAL); data.widthHint = IDialogConstants.ENTRY_FIELD_WIDTH; oldTraceName.setLayoutData(data); oldTraceName.setFont(font); oldTraceName.setText(fTrace.getName()); oldTraceName.setEnabled(false); // New trace name label Label newTaceLabel = new Label(folderGroup, SWT.NONE); newTaceLabel.setFont(font); newTaceLabel.setText(Messages.RenameTraceDialog_TraceNewName); // New trace name entry field fNewTraceNameText = new Text(folderGroup, SWT.BORDER); data = new GridData(GridData.FILL_HORIZONTAL); data.widthHint = IDialogConstants.ENTRY_FIELD_WIDTH; fNewTraceNameText.setLayoutData(data); fNewTraceNameText.setFont(font); fNewTraceNameText.addListener(SWT.Modify, new Listener() { @Override public void handleEvent(Event event) { validateNewTraceName(); } }); } private void validateNewTraceName() { String newTraceName = fNewTraceNameText.getText(); IWorkspace workspace = fTrace.getResource().getWorkspace(); IStatus nameStatus = workspace.validateName(newTraceName, IResource.FOLDER); if ("".equals(newTraceName)) { //$NON-NLS-1$ updateStatus(new Status(IStatus.ERROR, Activator.PLUGIN_ID, IStatus.ERROR, Messages.Dialog_EmptyNameError, null)); return; } if (!nameStatus.isOK()) { updateStatus(nameStatus); return; } IContainer parentFolder = fTrace.getResource().getParent(); if (parentFolder.findMember(newTraceName) != null) { updateStatus(new Status(IStatus.ERROR, Activator.PLUGIN_ID, IStatus.ERROR, Messages.Dialog_ExistingNameError, null)); return; } updateStatus(new Status(IStatus.OK, Activator.PLUGIN_ID, "")); //$NON-NLS-1$ } // ------------------------------------------------------------------------ // SelectionStatusDialog // ------------------------------------------------------------------------ @Override protected void computeResult() { } @Override public void create() { super.create(); getButton(IDialogConstants.OK_ID).setEnabled(false); } @Override protected void okPressed() { setSelectionResult(new String[] { fNewTraceNameText.getText() }); super.okPressed(); } }