org.eclipse.jface.viewers.TableViewerFocusCellManager Maven / Gradle / Ivy
The newest version!
/*******************************************************************************
* Copyright (c) 2007, 2013 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 - initial API and implementation
* fix in bug: 210752
*******************************************************************************/
package org.eclipse.jface.viewers;
import org.eclipse.swt.graphics.Rectangle;
import org.eclipse.swt.widgets.Table;
/**
* This class is responsible to provide the concept of cells for {@link Table}.
* This concept is needed to provide features like editor activation with the
* keyboard
*
* @since 3.3
*/
public class TableViewerFocusCellManager extends SWTFocusCellManager {
private static final CellNavigationStrategy TABLE_NAVIGATE = new CellNavigationStrategy();
/**
* Create a new manager with a default navigation strategy:
*
* SWT.ARROW_UP
: navigate to cell above
* SWT.ARROW_DOWN
: navigate to cell below
* SWT.ARROW_RIGHT
: navigate to next visible cell on
* the right
* SWT.ARROW_LEFT
: navigate to next visible cell on the
* left
*
*
* @param viewer
* the viewer the manager is bound to
* @param focusDrawingDelegate
* the delegate responsible to highlight selected cell
*/
public TableViewerFocusCellManager(TableViewer viewer,
FocusCellHighlighter focusDrawingDelegate) {
this(viewer, focusDrawingDelegate, TABLE_NAVIGATE);
}
/**
* Create a new manager
*
* @param viewer
* the viewer the manager is bound to
* @param focusDrawingDelegate
* the delegate responsible to highlight selected cell
* @param navigationStrategy
* the strategy used to navigate the cells
* @since 3.4
*/
public TableViewerFocusCellManager(TableViewer viewer,
FocusCellHighlighter focusDrawingDelegate,
CellNavigationStrategy navigationStrategy) {
super(viewer, focusDrawingDelegate, navigationStrategy);
}
@Override
ViewerCell getInitialFocusCell() {
Table table = (Table) getViewer().getControl();
if (!table.isDisposed() && table.getItemCount() > 0
&& !table.getItem(table.getTopIndex()).isDisposed()) {
final ViewerRow aViewerRow = getViewer().getViewerRowFromItem(
table.getItem(table.getTopIndex()));
if (table.getColumnCount() == 0) {
return aViewerRow.getCell(0);
}
Rectangle clientArea = table.getClientArea();
for (int i = 0; i < table.getColumnCount(); i++) {
if (aViewerRow.getWidth(i) > 0 && columnInVisibleArea(clientArea,aViewerRow,i))
return aViewerRow.getCell(i);
}
}
return null;
}
private boolean columnInVisibleArea(Rectangle clientArea, ViewerRow row, int colIndex) {
return row.getBounds(colIndex).x >= clientArea.x;
}
@Override
public ViewerCell getFocusCell() {
ViewerCell cell = super.getFocusCell();
Table t = (Table) getViewer().getControl();
// It is possible that the selection has changed under the hood
if (cell != null) {
if (t.getSelection().length == 1
&& t.getSelection()[0] != cell.getItem()) {
setFocusCell(getViewer().getViewerRowFromItem(
t.getSelection()[0]).getCell(cell.getColumnIndex()));
}
}
return super.getFocusCell();
}
}