blob: 1dc452acb9119137639e3216ed893cb0ccd10809 [file] [log] [blame]
package org.eclipse.ui.internal.views.markers;
/*******************************************************************************
* Copyright (c) 2007 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
******************************************************************************/
import org.eclipse.core.resources.IMarker;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.jface.viewers.CellEditor;
import org.eclipse.jface.viewers.ColumnViewer;
import org.eclipse.jface.viewers.EditingSupport;
import org.eclipse.jface.viewers.TextCellEditor;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.ui.views.markers.MarkerField;
import org.eclipse.ui.views.markers.MarkerItem;
import org.eclipse.ui.views.markers.MarkerSupportConstants;
import com.ibm.icu.text.CollationKey;
/**
* MarkerDescriptionField is the field for showing the description of a marker.
*
* @since 3.4
*
*/
public class MarkerDescriptionField extends MarkerField {
private class DescriptionEditingSupport extends EditingSupport {
private TextCellEditor editor;
/**
* Create a new instance of the receiver.
*
* @param viewer
*/
public DescriptionEditingSupport(ColumnViewer viewer) {
super(viewer);
this.editor = new TextCellEditor((Composite) viewer.getControl());
}
/*
* (non-Javadoc)
*
* @see org.eclipse.jface.viewers.EditingSupport#canEdit(java.lang.Object)
*/
protected boolean canEdit(Object element) {
if (element instanceof MarkerEntry) {
MarkerEntry entry = (MarkerEntry) element;
// Bookmarks are a special case
try {
if (entry.getMarker() != null
&& entry.getMarker().isSubtypeOf(IMarker.BOOKMARK))
return true;
} catch (CoreException e) {
MarkerSupportInternalUtilities.handle(e);
return false;
}
return entry.getAttributeValue(IMarker.USER_EDITABLE, false);
}
return false;
}
/*
* (non-Javadoc)
*
* @see org.eclipse.jface.viewers.EditingSupport#getCellEditor(java.lang.Object)
*/
protected CellEditor getCellEditor(Object element) {
return editor;
}
/*
* (non-Javadoc)
*
* @see org.eclipse.jface.viewers.EditingSupport#getValue(java.lang.Object)
*/
protected Object getValue(Object element) {
return ((MarkerEntry) element).getAttributeValue(IMarker.MESSAGE,
MarkerSupportConstants.EMPTY_STRING);
}
/*
* (non-Javadoc)
*
* @see org.eclipse.jface.viewers.EditingSupport#setValue(java.lang.Object,
* java.lang.Object)
*/
protected void setValue(Object element, Object value) {
MarkerEntry entry = (MarkerEntry) element;
try {
entry.getMarker().setAttribute(IMarker.MESSAGE, value);
} catch (CoreException e) {
MarkerSupportInternalUtilities.handle(e);
}
}
}
/**
* Create a new instance of the receiver.
*/
public MarkerDescriptionField() {
super();
}
/*
* (non-Javadoc)
*
* @see org.eclipse.ui.internal.provisional.views.markers.MarkerField#compare(org.eclipse.ui.internal.provisional.views.markers.MarkerItem,
* org.eclipse.ui.internal.provisional.views.markers.MarkerItem)
*/
public int compare(MarkerItem item1, MarkerItem item2) {
return getDescriptionKey(item1).compareTo(getDescriptionKey(item2));
}
/*
* (non-Javadoc)
*
* @see org.eclipse.ui.internal.provisional.views.markers.api.MarkerField#getDefaultColumnWidth(org.eclipse.swt.widgets.Control)
*/
public int getDefaultColumnWidth(Control control) {
return 50 * getFontWidth(control);
}
/**
* Return the collation key for the description.
*
* @param element
* @return CollationKey
*/
private CollationKey getDescriptionKey(Object element) {
if (element instanceof MarkerEntry)
return ((MarkerItem) element).getCollationKey(IMarker.MESSAGE,
MarkerSupportConstants.EMPTY_STRING);
return MarkerSupportInternalUtilities.EMPTY_COLLATION_KEY;
}
/*
* (non-Javadoc)
*
* @see org.eclipse.ui.internal.provisional.views.markers.MarkerField#getValue(org.eclipse.ui.internal.provisional.views.markers.MarkerItem)
*/
public String getValue(MarkerItem item) {
return item.getAttributeValue(IMarker.MESSAGE,
MarkerSupportConstants.EMPTY_STRING);
}
/*
* (non-Javadoc)
*
* @see org.eclipse.ui.internal.provisional.views.markers.api.MarkerField#getEditingSupport()
*/
public EditingSupport getEditingSupport(ColumnViewer viewer) {
return new DescriptionEditingSupport(viewer);
}
}