All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.jface.viewers.TableViewer Maven / Gradle / Ivy

The newest version!
/*******************************************************************************
 * Copyright (c) 2000, 2015 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *     Tom Schindl  - concept of ViewerRow,
 *                                                 fix for 159597, refactoring (bug 153993),
 *                                                 widget-independency (bug 154329), fix for 187826, 191468
 *     Peter Centgraf - bug 251575
 *     Lars Vogel  - Bug 430873
 *******************************************************************************/

package org.eclipse.jface.viewers;

import org.eclipse.core.runtime.Assert;
import org.eclipse.jface.viewers.internal.ExpandableNode;
import org.eclipse.pde.api.tools.annotations.NoExtend;
import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Item;
import org.eclipse.swt.widgets.Table;
import org.eclipse.swt.widgets.TableItem;
import org.eclipse.swt.widgets.Widget;

/**
 * A concrete viewer based on a SWT Table control.
 * 

* This class is not intended to be subclassed outside the viewer framework. It * is designed to be instantiated with a pre-existing SWT table control and * configured with a domain-specific content provider, table label provider, * element filter (optional), and element sorter (optional). *

*

* Label providers for table viewers must implement either the * ITableLabelProvider or the ILabelProvider interface * (see TableViewer.setLabelProvider for more details). *

*

* As of 3.1 the TableViewer now supports the SWT.VIRTUAL flag. If the * underlying table is SWT.VIRTUAL, the content provider may implement {@link * ILazyContentProvider} instead of {@link IStructuredContentProvider} . Note * that in this case, the viewer does not support sorting or filtering. Also * note that in this case, the Widget based APIs may return null if the element * is not specified or not created yet. *

*

* Users of SWT.VIRTUAL should also avoid using getItems() from the Table within * the TreeViewer as this does not necessarily generate a callback for the * TreeViewer to populate the items. It also has the side effect of creating all * of the items thereby eliminating the performance improvements of SWT.VIRTUAL. *

*

* Users setting up an editable table with more than 1 column have to pass the * SWT.FULL_SELECTION style bit *

* * @see SWT#VIRTUAL * @see #doFindItem(Object) * @see #internalRefresh(Object, boolean) */ @NoExtend public class TableViewer extends AbstractTableViewer { /** * This viewer's table control. */ private Table table; /** * The cached row which is reused all over */ private TableViewerRow cachedRow; /** * Creates a table viewer on a newly-created table control under the given * parent. The table control is created using the SWT style bits * MULTI, H_SCROLL, V_SCROLL, and BORDER. The * viewer has no input, no content provider, a default label provider, no * sorter, and no filters. The table has no columns. * * @param parent * the parent control */ public TableViewer(Composite parent) { this(parent, SWT.MULTI | SWT.H_SCROLL | SWT.V_SCROLL | SWT.BORDER); } /** * Creates a table viewer on a newly-created table control under the given * parent. The table control is created using the given style bits. The * viewer has no input, no content provider, a default label provider, no * sorter, and no filters. The table has no columns. * * @param parent * the parent control * @param style * SWT style bits */ public TableViewer(Composite parent, int style) { this(new Table(parent, style)); } /** * Creates a table viewer on the given table control. The viewer has no * input, no content provider, a default label provider, no sorter, and no * filters. * * @param table * the table control */ public TableViewer(Table table) { this.table = table; hookControl(table); } @Override public Control getControl() { return table; } /** * Returns this table viewer's table control. * * @return the table control */ public Table getTable() { return table; } @Override protected ColumnViewerEditor createViewerEditor() { return new TableViewerEditor(this, null, new ColumnViewerEditorActivationStrategy(this), ColumnViewerEditor.DEFAULT); } /** *

* Sets a new selection for this viewer and optionally makes it visible. The * TableViewer implementation of this method is inefficient for the * ILazyContentProvider as lookup is done by indices rather than elements * and may require population of the entire table in worse case. *

*

* Use Table#setSelection(int[] indices) and Table#showSelection() if you * wish to set selection more efficiently when using a ILazyContentProvider. *

* * @param selection * the new selection * @param reveal * true if the selection is to be made visible, and * false otherwise * @see Table#setSelection(int[]) * @see Table#showSelection() */ @Override public void setSelection(ISelection selection, boolean reveal) { super.setSelection(selection, reveal); } @Override protected ViewerRow getViewerRowFromItem(Widget item) { if (cachedRow == null) { cachedRow = new TableViewerRow((TableItem) item); } else { cachedRow.setItem((TableItem) item); } return cachedRow; } /** * Create a new row with style at index * * @param style the row's style * @param rowIndex index of the new row * @return ViewerRow * @since 3.3 */ @Override protected ViewerRow internalCreateNewRowPart(int style, int rowIndex) { TableItem item; if (rowIndex >= 0) { item = new TableItem(table, style, rowIndex); } else { item = new TableItem(table, style); } return getViewerRowFromItem(item); } @Override protected Item getItemAt(Point p) { TableItem[] selection = table.getSelection(); if (selection.length == 1) { int columnCount = table.getColumnCount(); for (int i = 0; i < columnCount; i++) { if (selection[0].getBounds(i).contains(p)) { return selection[0]; } } } return table.getItem(p); } // Methods to provide widget independency @Override protected int doGetItemCount() { return table.getItemCount(); } @Override protected int doIndexOf(Item item) { return table.indexOf((TableItem) item); } @Override protected void doSetItemCount(int count) { table.setItemCount(count); } @Override protected Item[] doGetItems() { return table.getItems(); } @Override protected int doGetColumnCount() { return table.getColumnCount(); } @Override protected Widget doGetColumn(int index) { return table.getColumn(index); } @Override protected Item doGetItem(int index) { return table.getItem(index); } @Override protected Item[] doGetSelection() { return table.getSelection(); } @Override protected int[] doGetSelectionIndices() { return table.getSelectionIndices(); } @Override protected void doClearAll() { table.clearAll(); } @Override protected void doResetItem(Item item) { TableItem tableItem = (TableItem) item; int columnCount = Math.max(1, table.getColumnCount()); for (int i = 0; i < columnCount; i++) { tableItem.setText(i, ""); //$NON-NLS-1$ if (tableItem.getImage(i) != null) { tableItem.setImage(i, null); } } } @Override protected void doRemove(int start, int end) { table.remove(start, end); } @Override protected void doRemoveAll() { table.removeAll(); } @Override protected void doRemove(int[] indices) { table.remove(indices); } @Override protected void doShowItem(Item item) { table.showItem((TableItem) item); } @Override protected void doDeselectAll() { table.deselectAll(); } @Override protected void doSetSelection(Item[] items) { Assert.isNotNull(items, "Items-Array can not be null"); //$NON-NLS-1$ TableItem[] t = new TableItem[items.length]; System.arraycopy(items, 0, t, 0, t.length); table.setSelection(t); } @Override protected void doShowSelection() { table.showSelection(); } @Override protected void doSetSelection(int[] indices) { table.setSelection(indices); } @Override protected void doClear(int index) { table.clear(index); } @Override protected void doSelect(int[] indices) { table.select(indices); } /** * Refreshes this viewer starting with the given element. Labels are updated * as described in refresh(boolean updateLabels). The methods * attempts to preserve the selection. *

* Unlike the update methods, this handles structural changes * to the given element (e.g. addition or removal of children). If only the * given element needs updating, it is more efficient to use the * update methods. *

* *

* Subclasses who can provide this feature can open this method for the * public *

* * @param element * the element * @param updateLabels * true to update labels for existing elements, * false to only update labels as needed, assuming that labels * for existing elements are unchanged. * @param reveal * true to make the preserved selection visible afterwards * * @since 3.3 */ public void refresh(final Object element, final boolean updateLabels, boolean reveal) { if (checkBusy()) return; if (isCellEditorActive()) { cancelEditing(); } preservingSelection(() -> internalRefresh(element, updateLabels), reveal); } /** * Refreshes this viewer with information freshly obtained from this * viewer's model. If updateLabels is true then * labels for otherwise unaffected elements are updated as well. Otherwise, * it assumes labels for existing elements are unchanged, and labels are * only obtained as needed (for example, for new elements). *

* Calling refresh(true) has the same effect as * refresh(). *

* Note that the implementation may still obtain labels for existing * elements even if updateLabels is false. The intent is simply * to allow optimization where possible. * * @param updateLabels * true to update labels for existing elements, * false to only update labels as needed, assuming that labels * for existing elements are unchanged. * @param reveal * true to make the preserved selection visible afterwards * * @since 3.3 */ public void refresh(boolean updateLabels, boolean reveal) { refresh(getRoot(), updateLabels, reveal); } @Override public void remove(Object[] elements) { assertElementsNotNull(elements); if (checkBusy()) return; if (elements.length == 0) { return; } // deselect any items that are being removed, see bug 97786 boolean deselectedItems = false; Object elementToBeRemoved = null; CustomHashtable elementsToBeRemoved = null; if (elements.length == 1) { elementToBeRemoved = elements[0]; } else { elementsToBeRemoved = new CustomHashtable(getComparer()); for (Object element : elements) { elementsToBeRemoved.put(element, element); } } int[] selectionIndices = doGetSelectionIndices(); for (int index : selectionIndices) { Item item = doGetItem(index); Object data = item.getData(); if (data != null) { if ((elementsToBeRemoved != null && elementsToBeRemoved .containsKey(data)) || equals(elementToBeRemoved, data)) { table.deselect(index); deselectedItems = true; } } } super.remove(elements); if (deselectedItems) { ISelection sel = getSelection(); updateSelection(sel); firePostSelectionChanged(new SelectionChangedEvent(this, sel)); } } @Override protected Widget doFindItem(Object element) { IContentProvider contentProvider = getContentProvider(); if (contentProvider instanceof IIndexableLazyContentProvider) { IIndexableLazyContentProvider indexable = (IIndexableLazyContentProvider) contentProvider; int idx = indexable.findElement(element); if (idx != -1) { return doGetItem(idx); } return null; } return super.doFindItem(element); } @Override void handleExpandableNodeClicked(Widget w) { if (!(w instanceof Item item)) { return; } Object data = item.getData(); if (!(data instanceof ExpandableNode expNode)) { return; } boolean oldBusy = isBusy(); Table table = getTable(); try { setBusy(true); table.setRedraw(false); Object[] sortedChildren = expNode.getRemainingElements(); Object[] nextChildren = applyItemsLimit(data, sortedChildren); if (nextChildren.length > 0) { disassociate(item); int index = doIndexOf(item); // will also call item.dispose() doRemove(new int[] { index }); for (int i = 0; i < nextChildren.length; i++) { createItem(nextChildren[i], index++); } // If we've expanded but still have not reached the limit // select new expandable node, so user can click through // to the end if (getLastElement() instanceof ExpandableNode node) { setSelection(new StructuredSelection(node), true); } else { // reset the selection. client's selection listener should not be triggered. // there was only one selection on Expandable Node. int[] curSel = table.getSelectionIndices(); if (curSel.length == 1) { table.deselect(curSel[0]); } } } } finally { setBusy(oldBusy); table.setRedraw(true); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy