view dwtx/jface/viewers/TableViewerFocusCellManager.d @ 70:46a6e0e6ccd4

Merge with d-fied sources of 3.4M7
author Frank Benoit <benoit@tionex.de>
date Thu, 22 May 2008 01:36:46 +0200
parents ea8ff534f622
children 4878bef4a38e
line wrap: on
line source

/*******************************************************************************
 * Copyright (c) 2007, 2008 IBM Corporation and others.
 * 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:
 *     IBM Corporation - initial API and implementation
 *     Tom Schindl <tom.schindl@bestsolution.at> - initial API and implementation
 *                                                 fix in bug: 210752
 * Port to the D programming language:
 *     Frank Benoit <benoit@tionex.de>
 *******************************************************************************/

module dwtx.jface.viewers.TableViewerFocusCellManager;

import dwtx.jface.viewers.SWTFocusCellManager;
import dwtx.jface.viewers.CellNavigationStrategy;
import dwtx.jface.viewers.TableViewer;
import dwtx.jface.viewers.FocusCellHighlighter;
import dwtx.jface.viewers.ViewerCell;

import dwt.widgets.Table;

import dwt.dwthelper.utils;

/**
 * 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 : SWTFocusCellManager {
    private static const CellNavigationStrategy TABLE_NAVIGATE;
    static this(){
    /**
     * Create a new manager with a default navigation strategy:
     * <ul>
     * <li><code>DWT.ARROW_UP</code>: navigate to cell above</li>
     * <li><code>DWT.ARROW_DOWN</code>: navigate to cell below</li>
     * <li><code>DWT.ARROW_RIGHT</code>: navigate to next visible cell on
     * the right</li>
     * <li><code>DWT.ARROW_LEFT</code>: navigate to next visible cell on the
     * left</li>
     * </ul>
     *
     * @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
     */
    public TableViewerFocusCellManager(TableViewer viewer,
            FocusCellHighlighter focusDrawingDelegate,
            CellNavigationStrategy navigationStrategy) {
        super(viewer, focusDrawingDelegate, navigationStrategy);
    }

    override ViewerCell getInitialFocusCell() {
        Table table = cast(Table) getViewer().getControl();

        if (table.getItemCount() > 0) {
            return getViewer().getViewerRowFromItem_package(table.getItem(0))
                    .getCell(0);
        }

        return null;
    }

    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 !is null) {
            if (t.getSelection().length is 1
                    && t.getSelection()[0] !is cell.getItem()) {
                setFocusCell(getViewer().getViewerRowFromItem(
                        t.getSelection()[0]).getCell(cell.getColumnIndex()));
            }
        }

        return super.getFocusCell();
    }

}