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

org.eclipse.nebula.jface.gridviewer.GridColumnLabelProvider Maven / Gradle / Ivy

/*******************************************************************************
 * Copyright (c) 2007, 2020 Tom Schindl 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:
 *     Tom Schindl - initial API and implementation
 *     Claes Rosell - rowspan in bug 272384
 *******************************************************************************/
package org.eclipse.nebula.jface.gridviewer;

import org.eclipse.jface.viewers.ColumnLabelProvider;
import org.eclipse.jface.viewers.ViewerCell;
import org.eclipse.nebula.widgets.grid.Grid;
import org.eclipse.nebula.widgets.grid.GridItem;


/**
 * A label provider that provides hooks for extra functionality in the {@link Grid}. This is
 * currently limited to supplying the row header text.
 * 

* Only one from all {@link GridColumnLabelProvider} in a viewer should return a none * null *

*/ public class GridColumnLabelProvider extends ColumnLabelProvider { /** * Returns the row header text for this element. * * @param element the model element * @return the text displayed in the row-header or null if this label provider would * not like to modify the default text */ public String getRowHeaderText( Object element ) { return null; } /** * Returns the number of columns this element should span * * @param element the model element * @return colSpan */ public int getColumnSpan( Object element ) { return 0; } /** * Returns the number of rows this element should span * * @param element the model element * @return rowSpan */ public int getRowSpan( Object element ) { return 0; } /** * {@inheritDoc} */ @Override public void update( ViewerCell cell ) { super.update( cell ); Object element = cell.getElement(); String rowText = getRowHeaderText( element ); int colSpan = getColumnSpan( element ); int rowSpan = getRowSpan( element ); GridItem gridItem = ( GridItem )cell.getViewerRow().getItem(); if( rowText != null ) { gridItem.setHeaderText( rowText ); } gridItem.setColumnSpan( cell.getColumnIndex(), colSpan ); // [RAP] setRowSpan missing // gridItem.setRowSpan(cell.getColumnIndex(), rowSpan); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy