blob: 019e445023a3b09397d30af9fb6c0b3e7991aead [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012, 2020 Original authors and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Original authors and others - initial API and implementation
******************************************************************************/
package org.eclipse.nebula.widgets.nattable.group.painter;
import org.eclipse.nebula.widgets.nattable.config.IConfigRegistry;
import org.eclipse.nebula.widgets.nattable.layer.cell.ILayerCell;
import org.eclipse.nebula.widgets.nattable.painter.cell.CellPainterWrapper;
import org.eclipse.nebula.widgets.nattable.painter.cell.ICellPainter;
import org.eclipse.nebula.widgets.nattable.painter.cell.TextPainter;
import org.eclipse.nebula.widgets.nattable.painter.cell.decorator.CellPainterDecorator;
import org.eclipse.nebula.widgets.nattable.ui.util.CellEdgeEnum;
import org.eclipse.swt.graphics.GC;
public class RowGroupHeaderTextPainter extends CellPainterWrapper {
/**
* Creates the default {@link RowGroupHeaderTextPainter} that uses a
* {@link TextPainter} as base {@link ICellPainter} and decorate it with the
* {@link RowGroupExpandCollapseImagePainter} on the bottom edge of the
* cell.
*/
public RowGroupHeaderTextPainter() {
this(new TextPainter());
}
/**
* Creates a {@link RowGroupHeaderTextPainter} that uses the given
* {@link ICellPainter} as base {@link ICellPainter} and decorate it with
* the {@link RowGroupExpandCollapseImagePainter} on the bottom edge of the
* cell.
*
* @param interiorPainter
* the base {@link ICellPainter} to use
*/
public RowGroupHeaderTextPainter(ICellPainter interiorPainter) {
this(interiorPainter, CellEdgeEnum.BOTTOM);
}
/**
* Creates a {@link RowGroupHeaderTextPainter} that uses the given
* {@link ICellPainter} as base {@link ICellPainter} and decorate it with
* the {@link RowGroupExpandCollapseImagePainter} on the specified edge of
* the cell.
*
* @param interiorPainter
* the base {@link ICellPainter} to use
* @param cellEdge
* the edge of the cell on which the sort indicator decoration
* should be applied
*/
public RowGroupHeaderTextPainter(ICellPainter interiorPainter, CellEdgeEnum cellEdge) {
this(interiorPainter, cellEdge, new RowGroupExpandCollapseImagePainter(true));
}
/**
* Creates a {@link RowGroupHeaderTextPainter} that uses the given
* {@link ICellPainter} as base {@link ICellPainter} and decorate it with
* the given {@link ICellPainter} to use for sort related decoration on the
* specified edge of the cell.
*
* @param interiorPainter
* the base {@link ICellPainter} to use
* @param cellEdge
* the edge of the cell on which the sort indicator decoration
* should be applied
* @param decoratorPainter
* the {@link ICellPainter} that should be used to paint the sort
* related decoration (by default the
* {@link RowGroupExpandCollapseImagePainter} will be used)
*/
public RowGroupHeaderTextPainter(ICellPainter interiorPainter, CellEdgeEnum cellEdge, ICellPainter decoratorPainter) {
setWrappedPainter(new CellPainterDecorator(interiorPainter, cellEdge, decoratorPainter));
}
// the following constructors are intended to configure the
// CellPainterDecorator that is created as
// the wrapped painter of this RowGroupHeaderTextPainter
/**
* Creates a {@link RowGroupHeaderTextPainter} that uses the given
* {@link ICellPainter} as base {@link ICellPainter}. It will use the
* {@link RowGroupExpandCollapseImagePainter} as decorator for sort related
* decorations at the specified cell edge, which can be configured to render
* the background or not via method parameter. With the additional
* parameters, the behaviour of the created {@link CellPainterDecorator} can
* be configured in terms of rendering.
*
* @param interiorPainter
* the base {@link ICellPainter} to use
* @param cellEdge
* the edge of the cell on which the sort indicator decoration
* should be applied
* @param paintBg
* flag to configure whether the
* {@link RowGroupExpandCollapseImagePainter} should paint the
* background or not
* @param spacing
* the number of pixels that should be used as spacing between
* cell edge and decoration
* @param paintDecorationDependent
* flag to configure if the base {@link ICellPainter} should
* render decoration dependent or not. If it is set to
* <code>false</code>, the base painter will always paint at the
* same coordinates, using the whole cell bounds,
* <code>true</code> will cause the bounds of the cell to shrink
* for the base painter.
*/
public RowGroupHeaderTextPainter(
ICellPainter interiorPainter,
CellEdgeEnum cellEdge,
boolean paintBg,
int spacing,
boolean paintDecorationDependent) {
ICellPainter sortPainter = new RowGroupExpandCollapseImagePainter(paintBg);
CellPainterDecorator painter = new CellPainterDecorator(
interiorPainter,
cellEdge,
spacing,
sortPainter,
paintDecorationDependent,
paintBg);
setWrappedPainter(painter);
}
/**
* Creates a {@link RowGroupHeaderTextPainter} that uses the given
* {@link ICellPainter} as base {@link ICellPainter}. It will use the given
* {@link ICellPainter} as decorator for row group related decorations at
* the specified cell edge, which can be configured to render the background
* or not via method parameter. With the additional parameters, the
* behaviour of the created {@link CellPainterDecorator} can be configured
* in terms of rendering.
*
* @param interiorPainter
* the base {@link ICellPainter} to use
* @param cellEdge
* the edge of the cell on which the row group indicator
* decoration should be applied
* @param decoratorPainter
* the {@link ICellPainter} that should be used to paint the row
* group related decoration
* @param paintBg
* flag to configure whether the {@link CellPainterDecorator}
* should paint the background or not
* @param spacing
* the number of pixels that should be used as spacing between
* cell edge and decoration
* @param paintDecorationDependent
* flag to configure if the base {@link ICellPainter} should
* render decoration dependent or not. If it is set to
* <code>false</code>, the base painter will always paint at the
* same coordinates, using the whole cell bounds,
* <code>true</code> will cause the bounds of the cell to shrink
* for the base painter.
*/
public RowGroupHeaderTextPainter(
ICellPainter interiorPainter,
CellEdgeEnum cellEdge,
ICellPainter decoratorPainter,
boolean paintBg,
int spacing,
boolean paintDecorationDependent) {
CellPainterDecorator painter = new CellPainterDecorator(
interiorPainter,
cellEdge,
spacing,
decoratorPainter,
paintDecorationDependent,
paintBg);
setWrappedPainter(painter);
}
/**
* Creates a {@link RowGroupHeaderTextPainter} that uses the given
* {@link ICellPainter} as base {@link ICellPainter} and decorate it with
* the {@link RowGroupExpandCollapseImagePainter} on the bottom edge of the
* cell. This constructor gives the opportunity to configure the behaviour
* of the {@link RowGroupExpandCollapseImagePainter} and the
* {@link CellPainterDecorator} for some attributes. Remains because of
* downwards compatibility.
*
* @param interiorPainter
* the base {@link ICellPainter} to use
* @param paintBg
* flag to configure whether the
* {@link RowGroupExpandCollapseImagePainter} should paint the
* background or not
* @param interiorPainterToSpanFullWidth
* flag to configure how the bounds of the base painter should be
* calculated
*/
public RowGroupHeaderTextPainter(
ICellPainter interiorPainter, boolean paintBg, boolean interiorPainterToSpanFullWidth) {
ICellPainter sortPainter = new RowGroupExpandCollapseImagePainter(paintBg);
CellPainterDecorator painter = new CellPainterDecorator(
interiorPainter,
CellEdgeEnum.BOTTOM,
0,
sortPainter,
!interiorPainterToSpanFullWidth,
paintBg);
setWrappedPainter(painter);
}
@Override
public int getPreferredWidth(ILayerCell cell, GC gc, IConfigRegistry configRegistry) {
return 0;
}
}