/******************************************************************************* * Copyright (c) 2008, 2011 Obeo. * 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: * Obeo - initial API and implementation *******************************************************************************/ package org.eclipse.emf.eef.runtime.ui.widgets; import java.util.List; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.eef.runtime.ui.utils.EditingUtils; import org.eclipse.jface.viewers.AbstractListViewer; import org.eclipse.jface.viewers.ILabelProvider; import org.eclipse.jface.viewers.ISelection; import org.eclipse.swt.SWT; import org.eclipse.swt.widgets.Combo; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Control; /** * @author <a href="mailto:goulwen.lefur@obeo.fr">Goulwen Le Fur</a> * @author <a href="mailto:stephane.bouchet@obeo.fr">Stephane Bouchet</a> */ public class EMFComboViewer extends AbstractListViewer { /** * This viewer's list control. */ private Combo combo; private boolean updating = false; /** * Creates a combo viewer on a newly-created combo control under the given parent. The viewer has no * input, no content provider, a default label provider, no sorter, and no filters. * * @param parent * the parent control */ public EMFComboViewer(Composite parent) { this(parent, SWT.READ_ONLY | SWT.BORDER); } /** * Creates a combo viewer on a newly-created combo control under the given parent. The combo control is * created using the given SWT style bits. The viewer has no input, no content provider, a default label * provider, no sorter, and no filters. * * @param parent * the parent control * @param style * the SWT style bits */ public EMFComboViewer(Composite parent, int style) { this(new Combo(parent, style)); } /** * Creates a combo viewer on the given combo control. The viewer has no input, no content provider, a * default label provider, no sorter, and no filters. * * @param list * the combo control */ public EMFComboViewer(Combo list) { this.combo = list; hookControl(list); EditingUtils.setEEFtype(combo, "eef::EMFComboViewer"); } protected void listAdd(String string, int index) { combo.add(string, index); } protected void listSetItem(int index, String string) { combo.setItem(index, string); } protected int[] listGetSelectionIndices() { return new int[] {combo.getSelectionIndex()}; } protected int listGetItemCount() { return combo.getItemCount(); } protected void listSetItems(String[] labels) { combo.setItems(labels); } protected void listRemoveAll() { combo.removeAll(); } protected void listRemove(int index) { combo.remove(index); } /** * {@inheritDoc} * * @see org.eclipse.jface.viewers.Viewer#getControl() */ public Control getControl() { return combo; } /** * Returns this list viewer's list control. * * @return the list control */ public Combo getCombo() { return combo; } /* * Do nothing -- combos only display the selected element, so there is no way we can ensure that the given * element is visible without changing the selection. Method defined on StructuredViewer. */ public void reveal(Object element) { return; } /** * Sets the given ID to the EMFComboViewer * * @param id * the ID to give */ public void setID(Object id) { EditingUtils.setID(combo, id); } /** * @return the ID of the EObjectFlatComboViewer */ public Object getID() { return EditingUtils.getID(combo); } /** * {@inheritDoc} * * @see org.eclipse.jface.viewers.AbstractListViewer#listSetSelection(int[]) */ protected void listSetSelection(int[] ixs) { for (int idx = 0; idx < ixs.length; idx++) { combo.select(ixs[idx]); } } /** * {@inheritDoc} * * @see org.eclipse.jface.viewers.AbstractListViewer#listDeselectAll() */ protected void listDeselectAll() { combo.deselectAll(); combo.clearSelection(); } /** * {@inheritDoc} * * @see org.eclipse.jface.viewers.AbstractListViewer#listShowSelection() */ protected void listShowSelection() { // nothing } /** * {@inheritDoc} * * @see org.eclipse.jface.viewers.AbstractListViewer#setSelectionToWidget(java.util.List, boolean) */ protected void setSelectionToWidget(List in, boolean reveal) { if (in == null || in.size() == 0) { // clear selection listDeselectAll(); } else { Object elem = in.get(0); int[] ixs = new int[1]; ixs[0] = -1; String[] literals = getCombo().getItems(); String literalToSelect = ""; //$NON-NLS-1$ // TODO : find a better way to differenciate enum and eObject if (elem instanceof EObject && getLabelProvider() instanceof ILabelProvider) { literalToSelect = ((ILabelProvider)getLabelProvider()).getText(elem); } else { literalToSelect = elem.toString(); } for (int i = 0; i < literals.length; i++) { String literal = literals[i]; if (literal.equals(literalToSelect)) { ixs[0] = i; break; } } listSetSelection(ixs); if (reveal) { listShowSelection(); } } } /** * {@inheritDoc} * * @see org.eclipse.jface.viewers.StructuredViewer#updateSelection(org.eclipse.jface.viewers.ISelection) */ protected void updateSelection(ISelection selection) { if (!updating) super.updateSelection(selection); } public void modelUpdating(ISelection selection) { updating = true; setSelection(selection); updating = false; } /** * Sets the viewer readonly or not * * @param enabled * to set the viewer readonly or not */ public void setEnabled(boolean enabled) { combo.setEnabled(enabled); } /** * @return if the combo is enabled */ public boolean isEnabled() { return combo.isEnabled(); } /** * Sets the tooltip text for the viewer * * @param tooltip * the tooltip text */ public void setToolTipText(String tooltip) { combo.setToolTipText(tooltip); } }