blob: 1dc3357f981bda36575ac1737cf791e90398e915 [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.ant.ui.internal.preferences;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import org.eclipse.ant.core.AntCorePlugin;
import org.eclipse.ant.core.AntCorePreferences;
import org.eclipse.ant.core.Task;
import org.eclipse.ant.ui.internal.model.IAntUIHelpContextIds;
import org.eclipse.jface.dialogs.Dialog;
import org.eclipse.jface.dialogs.IDialogConstants;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.viewers.ITableLabelProvider;
import org.eclipse.jface.viewers.LabelProvider;
import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.TabFolder;
import org.eclipse.swt.widgets.TabItem;
import org.eclipse.ui.ISharedImages;
import org.eclipse.ui.PlatformUI;
/**
* Sub-page that allows the user to enter custom tasks
* to be used when running Ant build files.
*/
public class AntTasksPage extends AntPage {
private static final int ADD_TASK_BUTTON = IDialogConstants.CLIENT_ID + 1;
private static final int EDIT_TASK_BUTTON = IDialogConstants.CLIENT_ID + 2;
private static final int REMOVE_BUTTON = IDialogConstants.CLIENT_ID + 3;
private final AntTasksLabelProvider labelProvider = new AntTasksLabelProvider();
/**
* Creates an instance.
*/
public AntTasksPage(AntRuntimePreferencePage preferencePage) {
super(preferencePage);
}
/* (non-Javadoc)
* Method declared on AntPage.
*/
protected void addButtonsToButtonGroup(Composite parent) {
createPushButton(parent, AntPreferencesMessages.getString("AntTasksPage.addTaskButtonTitle"), ADD_TASK_BUTTON); //$NON-NLS-1$
editButton = createPushButton(parent, AntPreferencesMessages.getString("AntTasksPage.editTaskButtonTitle"), EDIT_TASK_BUTTON); //$NON-NLS-1$
createSeparator(parent);
removeButton = createPushButton(parent, AntPreferencesMessages.getString("AntTasksPage.removeButtonTitle"), REMOVE_BUTTON); //$NON-NLS-1$
}
/**
* Allows the user to enter a custom task.
*/
private void addTask() {
AddCustomDialog dialog = getCustomDialog();
if (dialog.open() == Dialog.CANCEL) {
return;
}
Task task = new Task();
task.setTaskName(dialog.getName());
task.setClassName(dialog.getClassName());
task.setLibrary(dialog.getLibrary());
addContent(task);
}
private AddCustomDialog getCustomDialog() {
String title = AntPreferencesMessages.getString("AntTasksPage.addTaskDialogTitle"); //$NON-NLS-1$
Iterator tasks= getContents(true).iterator();
List names= new ArrayList();
while (tasks.hasNext()) {
Task task = (Task) tasks.next();
names.add(task.getTaskName());
}
AddCustomDialog dialog = new AddCustomDialog(getShell(), getPreferencePage().getLibraryURLs(), names);
dialog.setTitle(title);
dialog.setAlreadyExistsErrorMsg(AntPreferencesMessages.getString("AntTasksPage.8")); //$NON-NLS-1$
dialog.setNoNameErrorMsg(AntPreferencesMessages.getString("AntTasksPage.9")); //$NON-NLS-1$
return dialog;
}
/* (non-Javadoc)
* Method declared on AntPage.
*/
protected void buttonPressed(int buttonId) {
switch (buttonId) {
case ADD_TASK_BUTTON :
addTask();
break;
case EDIT_TASK_BUTTON :
edit(getSelection());
break;
case REMOVE_BUTTON :
remove();
break;
}
}
/**
* Creates the tab item that contains this sub-page.
*/
protected TabItem createTabItem(TabFolder folder) {
TabItem item = new TabItem(folder, SWT.NONE);
item.setText(AntPreferencesMessages.getString("AntTasksPage.title")); //$NON-NLS-1$
item.setImage(labelProvider.getTaskImage());
item.setData(this);
Composite top = new Composite(folder, SWT.NONE);
top.setFont(folder.getFont());
item.setControl(createContents(top));
connectToFolder(item, folder);
return item;
}
/**
* Allows the user to edit a custom Ant task.
*/
protected void edit(IStructuredSelection selection) {
Task task= (Task)selection.getFirstElement();
if (task == null) {
return;
}
AddCustomDialog dialog = getCustomDialog();
dialog.setClassName(task.getClassName());
dialog.setName(task.getTaskName());
dialog.setLibrary(task.getLibrary());
if (dialog.open() == Dialog.CANCEL) {
return;
}
task.setTaskName(dialog.getName());
task.setClassName(dialog.getClassName());
task.setLibrary(dialog.getLibrary());
updateContent(task);
}
/* (non-Javadoc)
* Method declared on AntPage.
*/
protected ITableLabelProvider getLabelProvider() {
return labelProvider;
}
/**
* Label provider for task elements
*/
private static final class AntTasksLabelProvider extends LabelProvider implements ITableLabelProvider {
private Image taskImage;
/**
* Creates an instance.
*/
public AntTasksLabelProvider() {
}
/* (non-Javadoc)
* Method declared on IBaseLabelProvider.
*/
public void dispose() {
// Task image is shared, do not dispose.
taskImage = null;
}
/* (non-Javadoc)
* Method declared on ITableLabelProvider.
*/
public Image getColumnImage(Object element, int columnIndex) {
return getTaskImage();
}
/* (non-Javadoc)
* Method declared on ITableLabelProvider.
*/
public String getColumnText(Object element, int columnIndex) {
Task task = (Task) element;
StringBuffer text= new StringBuffer(task.getTaskName());
text.append(" ("); //$NON-NLS-1$
text.append(task.getLibrary().getFile());
text.append(": "); //$NON-NLS-1$
text.append(task.getClassName());
text.append(')');
if (task.isDefault()) {
text.append(AntPreferencesMessages.getString("AntTasksPage._[system_task]_3")); //$NON-NLS-1$
}
return text.toString();
}
public Image getTaskImage() {
if (taskImage == null) {
taskImage = PlatformUI.getWorkbench().getSharedImages().getImage(ISharedImages.IMG_OBJS_TASK_TSK);
}
return taskImage;
}
}
/* (non-Javadoc)
* @see org.eclipse.ant.ui.internal.preferences.AntPage#initialize()
*/
protected void initialize() {
AntCorePreferences prefs = AntCorePlugin.getPlugin().getPreferences();
setInput(prefs.getTasks());
}
/* (non-Javadoc)
* @see org.eclipse.ant.ui.internal.preferences.AntPage#getHelpContextId()
*/
protected String getHelpContextId() {
return IAntUIHelpContextIds.ANT_TASKS_PAGE;
}
}