blob: ddbfe0070beb58b28781d38793d8e35ce8bc7c88 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 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.jface.binding.internal.viewers;
import org.eclipse.jface.binding.IChangeEvent;
import org.eclipse.jface.binding.IChangeListener;
import org.eclipse.jface.binding.UpdatableValue;
import org.eclipse.jface.binding.swt.SWTBindingConstants;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.ISelectionChangedListener;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.viewers.SelectionChangedEvent;
import org.eclipse.jface.viewers.StructuredSelection;
import org.eclipse.jface.viewers.StructuredViewer;
/**
* @since 3.2
*
*/
public class StructuredViewerUpdatableValue extends UpdatableValue {
private final StructuredViewer viewer;
private final String attribute;
private boolean updating = false;
/**
* @param viewer
* @param attribute
*/
public StructuredViewerUpdatableValue(StructuredViewer viewer,
String attribute) {
this.viewer = viewer;
this.attribute = attribute;
if (attribute.equals(SWTBindingConstants.SELECTION)) {
viewer.addSelectionChangedListener(new ISelectionChangedListener() {
public void selectionChanged(SelectionChangedEvent event) {
if (!updating) {
fireChangeEvent(null,IChangeEvent.CHANGE, null, getValue());
}
}
});
} else {
throw new IllegalArgumentException(
"Attribute name not valid: " + attribute); //$NON-NLS-1$
}
}
public void setValue(Object value, IChangeListener listenerToOmit) {
try {
updating = true;
if (attribute.equals(SWTBindingConstants.SELECTION)) {
Object oldValue= getValue();
viewer.setSelection(value == null ? StructuredSelection.EMPTY
: new StructuredSelection(value));
fireChangeEvent(listenerToOmit, IChangeEvent.CHANGE, oldValue, getValue());
}
} finally {
updating = false;
}
}
public Object getValue() {
if (attribute.equals(SWTBindingConstants.SELECTION)) {
ISelection selection = viewer.getSelection();
if (selection instanceof IStructuredSelection) {
IStructuredSelection sel = (IStructuredSelection) selection;
return sel.getFirstElement();
}
}
return null;
}
public Class getValueType() {
if (attribute.equals(SWTBindingConstants.SELECTION)) {
return Object.class;
}
throw new AssertionError("unexpected attribute"); //$NON-NLS-1$
}
}