blob: bcaa9c48f522d9e70938b3e350a3d74ee0126902 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html
*
* Contributors:
* IBM Corporation - initial API and implementation
* Michael Fraenkel (fraenkel@us.ibm.com) - contributed a fix for:
* o Go to next match on last match does nothing
* (see https://bugs.eclipse.org/bugs/show_bug.cgi?id=58311)
*******************************************************************************/
package org.eclipse.sphinx.emf.search.ui.internal;
import org.eclipse.jface.viewers.TableViewer;
public class TableViewerNavigator implements INavigate {
private TableViewer fViewer;
public TableViewerNavigator(TableViewer viewer) {
fViewer = viewer;
}
@Override
public void navigateNext(boolean forward) {
int itemCount = fViewer.getTable().getItemCount();
if (itemCount == 0) {
return;
}
int[] selection = fViewer.getTable().getSelectionIndices();
int nextIndex = 0;
if (selection.length > 0) {
if (forward) {
nextIndex = selection[selection.length - 1] + 1;
if (nextIndex >= itemCount) {
nextIndex = 0;
}
} else {
nextIndex = selection[0] - 1;
if (nextIndex < 0) {
nextIndex = itemCount - 1;
}
}
}
fViewer.getTable().setSelection(nextIndex);
fViewer.getTable().showSelection();
}
}