Uses of Interface
org.eclipse.nebula.widgets.nattable.layer.cell.ILayerCell

Packages that use ILayerCell
org.eclipse.nebula.widgets.nattable   
org.eclipse.nebula.widgets.nattable.blink   
org.eclipse.nebula.widgets.nattable.config   
org.eclipse.nebula.widgets.nattable.copy.command   
org.eclipse.nebula.widgets.nattable.copy.serializing   
org.eclipse.nebula.widgets.nattable.data.convert   
org.eclipse.nebula.widgets.nattable.data.validate   
org.eclipse.nebula.widgets.nattable.edit   
org.eclipse.nebula.widgets.nattable.edit.command   
org.eclipse.nebula.widgets.nattable.edit.editor   
org.eclipse.nebula.widgets.nattable.edit.gui   
org.eclipse.nebula.widgets.nattable.export   
org.eclipse.nebula.widgets.nattable.export.excel   
org.eclipse.nebula.widgets.nattable.extension.glazedlists.groupBy   
org.eclipse.nebula.widgets.nattable.extension.poi   
org.eclipse.nebula.widgets.nattable.filterrow   
org.eclipse.nebula.widgets.nattable.filterrow.combobox   
org.eclipse.nebula.widgets.nattable.grid.layer   
org.eclipse.nebula.widgets.nattable.group   
org.eclipse.nebula.widgets.nattable.group.painter   
org.eclipse.nebula.widgets.nattable.layer   
org.eclipse.nebula.widgets.nattable.layer.cell   
org.eclipse.nebula.widgets.nattable.painter.cell   
org.eclipse.nebula.widgets.nattable.painter.cell.decorator   
org.eclipse.nebula.widgets.nattable.painter.layer   
org.eclipse.nebula.widgets.nattable.selection   
org.eclipse.nebula.widgets.nattable.sort.painter   
org.eclipse.nebula.widgets.nattable.style   
org.eclipse.nebula.widgets.nattable.summaryrow   
org.eclipse.nebula.widgets.nattable.test.fixture   
org.eclipse.nebula.widgets.nattable.test.fixture.layer   
org.eclipse.nebula.widgets.nattable.tree   
org.eclipse.nebula.widgets.nattable.tree.config   
org.eclipse.nebula.widgets.nattable.tree.painter   
 

Uses of ILayerCell in org.eclipse.nebula.widgets.nattable
 

Methods in org.eclipse.nebula.widgets.nattable that return ILayerCell
 ILayerCell NatTable.getCellByPosition(int columnPosition, int rowPosition)
           
 

Methods in org.eclipse.nebula.widgets.nattable with parameters of type ILayerCell
 ICellPainter NatTable.getCellPainter(int columnPosition, int rowPosition, ILayerCell cell, IConfigRegistry configRegistry)
           
 

Uses of ILayerCell in org.eclipse.nebula.widgets.nattable.blink
 

Methods in org.eclipse.nebula.widgets.nattable.blink with parameters of type ILayerCell
 String[] IBlinkingCellResolver.resolve(ILayerCell cell, IConfigRegistry configRegistry, Object oldValue, Object newValue)
           
 String[] BlinkingCellResolver.resolve(ILayerCell cell, IConfigRegistry configRegistry, Object oldValue, Object newValue)
           
 LabelStack BlinkLayer.resolveConfigTypes(ILayerCell cell, Object oldValue, Object newValue)
          Find the IBlinkingCellResolver from the ConfigRegistry.
 

Uses of ILayerCell in org.eclipse.nebula.widgets.nattable.config
 

Methods in org.eclipse.nebula.widgets.nattable.config with parameters of type ILayerCell
 boolean IEditableRule.isEditable(ILayerCell cell, IConfigRegistry configRegistry)
           
 boolean EditableRule.isEditable(ILayerCell cell, IConfigRegistry configRegistry)
           
abstract  boolean ContextualEditableRule.isEditable(ILayerCell cell, IConfigRegistry configRegistry)
           
 

Uses of ILayerCell in org.eclipse.nebula.widgets.nattable.copy.command
 

Methods in org.eclipse.nebula.widgets.nattable.copy.command that return ILayerCell
protected  ILayerCell[] CopyDataCommandHandler.assembleBody(int currentRowPosition)
          Collects and assembles the selected data per row position that should be copied to the clipboard.
protected  ILayerCell[][] CopyDataCommandHandler.assembleColumnHeaders()
          Creates the two dimensional array whose dimensions are calculated based on the selection within the SelectionLayer and the configured column and row headers.
protected  ILayerCell[][] CopyDataCommandHandler.assembleCopiedDataStructure()
          Collects and assembles the selected data that should be copied to the clipboard.
 

Uses of ILayerCell in org.eclipse.nebula.widgets.nattable.copy.serializing
 

Methods in org.eclipse.nebula.widgets.nattable.copy.serializing with parameters of type ILayerCell
protected  String CopyFormattedTextToClipboardSerializer.getTextForCell(ILayerCell cell)
           
protected  String CopyDataToClipboardSerializer.getTextForCell(ILayerCell cell)
           
 

Constructors in org.eclipse.nebula.widgets.nattable.copy.serializing with parameters of type ILayerCell
CopyDataToClipboardSerializer(ILayerCell[][] copiedCells, CopyDataToClipboardCommand command)
           
CopyFormattedTextToClipboardSerializer(ILayerCell[][] copiedCells, CopyDataToClipboardCommand command)
           
 

Uses of ILayerCell in org.eclipse.nebula.widgets.nattable.data.convert
 

Methods in org.eclipse.nebula.widgets.nattable.data.convert with parameters of type ILayerCell
 Object IDisplayConverter.canonicalToDisplayValue(ILayerCell cell, IConfigRegistry configRegistry, Object canonicalValue)
          Convert backing data value to value to be displayed Typically converted to a String for display.
 Object DisplayConverter.canonicalToDisplayValue(ILayerCell cell, IConfigRegistry configRegistry, Object canonicalValue)
           
abstract  Object ContextualDisplayConverter.canonicalToDisplayValue(ILayerCell cell, IConfigRegistry configRegistry, Object canonicalValue)
           
 Object IDisplayConverter.displayToCanonicalValue(ILayerCell cell, IConfigRegistry configRegistry, Object displayValue)
          Convert from display value to value in the backing data structure NOTE: The type the display value is converted to must match the type in the setter of the backing bean/row object Use this method for contextual conversion.
 Object DisplayConverter.displayToCanonicalValue(ILayerCell cell, IConfigRegistry configRegistry, Object displayValue)
           
abstract  Object ContextualDisplayConverter.displayToCanonicalValue(ILayerCell cell, IConfigRegistry configRegistry, Object displayValue)
           
 

Uses of ILayerCell in org.eclipse.nebula.widgets.nattable.data.validate
 

Methods in org.eclipse.nebula.widgets.nattable.data.validate with parameters of type ILayerCell
 boolean IDataValidator.validate(ILayerCell cell, IConfigRegistry configRegistry, Object newValue)
           
 boolean DataValidator.validate(ILayerCell cell, IConfigRegistry configRegistry, Object newValue)
           
abstract  boolean ContextualDataValidator.validate(ILayerCell cell, IConfigRegistry configRegistry, Object newValue)
           
 

Uses of ILayerCell in org.eclipse.nebula.widgets.nattable.edit
 

Methods in org.eclipse.nebula.widgets.nattable.edit with parameters of type ILayerCell
static void EditController.editCell(ILayerCell cell, org.eclipse.swt.widgets.Composite parent, Object initialCanonicalValue, IConfigRegistry configRegistry)
          Activates the edit mode for the given cell.
 

Method parameters in org.eclipse.nebula.widgets.nattable.edit with type arguments of type ILayerCell
static void EditController.editCells(Collection<ILayerCell> cells, org.eclipse.swt.widgets.Composite parent, Object initialCanonicalValue, IConfigRegistry configRegistry)
          This method is used to edit cells in a sub dialog.
 

Uses of ILayerCell in org.eclipse.nebula.widgets.nattable.edit.command
 

Methods in org.eclipse.nebula.widgets.nattable.edit.command that return ILayerCell
 ILayerCell EditCellCommand.getCell()
           
static ILayerCell EditUtils.getLastSelectedCell(SelectionLayer selectionLayer)
           
 

Constructors in org.eclipse.nebula.widgets.nattable.edit.command with parameters of type ILayerCell
EditCellCommand(org.eclipse.swt.widgets.Composite parent, IConfigRegistry configRegistry, ILayerCell cell)
           
 

Uses of ILayerCell in org.eclipse.nebula.widgets.nattable.edit.editor
 

Fields in org.eclipse.nebula.widgets.nattable.edit.editor declared as ILayerCell
protected  ILayerCell AbstractCellEditor.layerCell
          The cell whose editor should be activated.
 

Methods in org.eclipse.nebula.widgets.nattable.edit.editor with parameters of type ILayerCell
 org.eclipse.swt.widgets.Control ICellEditor.activateCell(org.eclipse.swt.widgets.Composite parent, Object originalCanonicalValue, EditModeEnum editMode, ICellEditHandler editHandler, ILayerCell cell, IConfigRegistry configRegistry)
          This method will be called by the framework to activate this cell editor.
 org.eclipse.swt.widgets.Control AbstractCellEditor.activateCell(org.eclipse.swt.widgets.Composite parent, Object originalCanonicalValue, EditModeEnum editMode, ICellEditHandler editHandler, ILayerCell cell, IConfigRegistry configRegistry)
           
 

Uses of ILayerCell in org.eclipse.nebula.widgets.nattable.edit.gui
 

Fields in org.eclipse.nebula.widgets.nattable.edit.gui declared as ILayerCell
protected  ILayerCell CellEditDialog.cell
          The cell that should be edited.
protected  ILayerCell AbstractDialogCellEditor.layerCell
          The cell whose editor should be activated.
 

Methods in org.eclipse.nebula.widgets.nattable.edit.gui with parameters of type ILayerCell
 org.eclipse.swt.widgets.Control AbstractDialogCellEditor.activateCell(org.eclipse.swt.widgets.Composite parent, Object originalCanonicalValue, EditModeEnum editMode, ICellEditHandler editHandler, ILayerCell cell, IConfigRegistry configRegistry)
           
static ICellEditDialog CellEditDialogFactory.createCellEditDialog(org.eclipse.swt.widgets.Shell parentShell, Object originalCanonicalValue, ILayerCell cell, ICellEditor cellEditor, IConfigRegistry configRegistry)
          Will determine and return the ICellEditDialog to open for editing a cell value.
 

Constructors in org.eclipse.nebula.widgets.nattable.edit.gui with parameters of type ILayerCell
CellEditDialog(org.eclipse.swt.widgets.Shell parentShell, Object originalCanonicalValue, ILayerCell cell, ICellEditor cellEditor, IConfigRegistry configRegistry)
           
TickUpdateCellEditDialog(org.eclipse.swt.widgets.Shell parentShell, Object originalCanonicalValue, ILayerCell cell, ICellEditor cellEditor, IConfigRegistry configRegistry, ITickUpdateHandler tickUpdateHandler)
           
 

Uses of ILayerCell in org.eclipse.nebula.widgets.nattable.export
 

Methods in org.eclipse.nebula.widgets.nattable.export with parameters of type ILayerCell
 void ILayerExporter.exportCell(OutputStream outputStream, Object exportDisplayValue, ILayerCell cell, IConfigRegistry configRegistry)
          Exports one cell.
 Object IExportFormatter.formatForExport(ILayerCell cell, IConfigRegistry configRegistry)
           
 

Uses of ILayerCell in org.eclipse.nebula.widgets.nattable.export.excel
 

Methods in org.eclipse.nebula.widgets.nattable.export.excel with parameters of type ILayerCell
 void ExcelExporter.exportCell(OutputStream outputStream, Object exportDisplayValue, ILayerCell cell, IConfigRegistry configRegistry)
           
 Object DefaultExportFormatter.formatForExport(ILayerCell cell, IConfigRegistry configRegistry)
           
 

Uses of ILayerCell in org.eclipse.nebula.widgets.nattable.extension.glazedlists.groupBy
 

Methods in org.eclipse.nebula.widgets.nattable.extension.glazedlists.groupBy that return ILayerCell
 ILayerCell GroupByHeaderLayer.getCellByPosition(int columnPosition, int rowPosition)
           
 

Methods in org.eclipse.nebula.widgets.nattable.extension.glazedlists.groupBy with parameters of type ILayerCell
 int GroupByHeaderPainter.getPreferredHeight(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
 int GroupByHeaderPainter.getPreferredWidth(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
protected  String GroupByCellTextPainter.getTextToDisplay(ILayerCell cell, org.eclipse.swt.graphics.GC gc, int availableLength, String text)
           
 void GroupByHeaderPainter.paintCell(ILayerCell cell, org.eclipse.swt.graphics.GC gc, org.eclipse.swt.graphics.Rectangle bounds, IConfigRegistry configRegistry)
           
 

Uses of ILayerCell in org.eclipse.nebula.widgets.nattable.extension.poi
 

Methods in org.eclipse.nebula.widgets.nattable.extension.poi with parameters of type ILayerCell
 void PoiExcelExporter.exportCell(OutputStream outputStream, Object exportDisplayValue, ILayerCell cell, IConfigRegistry configRegistry)
           
protected  String PoiExcelExporter.getDataFormatString(ILayerCell cell, IConfigRegistry configRegistry)
           
 

Uses of ILayerCell in org.eclipse.nebula.widgets.nattable.filterrow
 

Methods in org.eclipse.nebula.widgets.nattable.filterrow with parameters of type ILayerCell
protected  org.eclipse.swt.graphics.Image FilterIconPainter.getImage(ILayerCell cell, IConfigRegistry configRegistry)
           
 

Uses of ILayerCell in org.eclipse.nebula.widgets.nattable.filterrow.combobox
 

Methods in org.eclipse.nebula.widgets.nattable.filterrow.combobox with parameters of type ILayerCell
protected  org.eclipse.swt.graphics.Image ComboBoxFilterIconPainter.getImage(ILayerCell cell, IConfigRegistry configRegistry)
           
 

Uses of ILayerCell in org.eclipse.nebula.widgets.nattable.grid.layer
 

Methods in org.eclipse.nebula.widgets.nattable.grid.layer that return ILayerCell
 ILayerCell CornerLayer.getCellByPosition(int columnPosition, int rowPosition)
           
 

Uses of ILayerCell in org.eclipse.nebula.widgets.nattable.group
 

Methods in org.eclipse.nebula.widgets.nattable.group that return ILayerCell
 ILayerCell RowGroupHeaderLayer.getCellByPosition(int columnPosition, int rowPosition)
          If a cell belongs to a column group: column position - set to the start position of the group span - set to the width/size of the row group NOTE: gc.setClip() is used in the CompositeLayerPainter to ensure that partially visible Column group header cells are rendered properly.
 ILayerCell ColumnGroupHeaderLayer.getCellByPosition(int columnPosition, int rowPosition)
          If a cell belongs to a column group: column position - set to the start position of the group span - set to the width/size of the column group NOTE: gc.setClip() is used in the CompositeLayerPainter to ensure that partially visible Column group header cells are rendered properly.
 ILayerCell ColumnGroupGroupHeaderLayer.getCellByPosition(int columnPosition, int rowPosition)
          If a cell belongs to a column group: column position - set to the start position of the group span - set to the width/size of the column group NOTE: gc.setClip() is used in the CompositeLayerPainter to ensure that partially visible Column group header cells are rendered properly.
 

Uses of ILayerCell in org.eclipse.nebula.widgets.nattable.group.painter
 

Methods in org.eclipse.nebula.widgets.nattable.group.painter with parameters of type ILayerCell
protected  org.eclipse.swt.graphics.Image RowGroupExpandCollapseImagePainter.getImage(ILayerCell cell, IConfigRegistry configRegistry)
           
protected  org.eclipse.swt.graphics.Image ColumnGroupExpandCollapseImagePainter.getImage(ILayerCell cell, IConfigRegistry configRegistry)
           
 int ColumnGroupHeaderTextPainter.getPreferredHeight(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
 int RowGroupHeaderTextPainter.getPreferredWidth(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
 int ColumnGroupHeaderTextPainter.getPreferredWidth(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
          Preferred width is used during auto resize.
 

Uses of ILayerCell in org.eclipse.nebula.widgets.nattable.layer
 

Methods in org.eclipse.nebula.widgets.nattable.layer that return ILayerCell
 ILayerCell SpanningDataLayer.getCellByPosition(int columnPosition, int rowPosition)
           
 ILayerCell InvertedLayer.getCellByPosition(int columnPosition, int rowPosition)
           
 ILayerCell ILayer.getCellByPosition(int columnPosition, int rowPosition)
           
 ILayerCell CompositeLayer.getCellByPosition(int compositeColumnPosition, int compositeRowPosition)
           
 ILayerCell AbstractLayerTransform.getCellByPosition(int columnPosition, int rowPosition)
           
 ILayerCell AbstractLayer.getCellByPosition(int columnPosition, int rowPosition)
           
 ILayerCell AbstractIndexLayerTransform.getCellByPosition(int columnPosition, int rowPosition)
           
 

Methods in org.eclipse.nebula.widgets.nattable.layer with parameters of type ILayerCell
 ICellPainter InvertedLayer.getCellPainter(int columnPosition, int rowPosition, ILayerCell cell, IConfigRegistry configRegistry)
           
 ICellPainter ILayer.getCellPainter(int columnPosition, int rowPosition, ILayerCell cell, IConfigRegistry configRegistry)
           
 ICellPainter CompositeLayer.getCellPainter(int compositeColumnPosition, int compositeRowPosition, ILayerCell cell, IConfigRegistry configRegistry)
           
 ICellPainter AbstractLayerTransform.getCellPainter(int columnPosition, int rowPosition, ILayerCell cell, IConfigRegistry configRegistry)
           
 ICellPainter AbstractLayer.getCellPainter(int columnPosition, int rowPosition, ILayerCell cell, IConfigRegistry configRegistry)
           
 ICellPainter AbstractIndexLayerTransform.getCellPainter(int columnPosition, int rowPosition, ILayerCell cell, IConfigRegistry configRegistry)
           
 

Uses of ILayerCell in org.eclipse.nebula.widgets.nattable.layer.cell
 

Classes in org.eclipse.nebula.widgets.nattable.layer.cell that implement ILayerCell
 class AbstractLayerCell
           
 class InvertedLayerCell
           
 class LayerCell
           
 class TransformedLayerCell
           
 class TranslatedLayerCell
          A transformed LayerCell that translates the position of the underlying cell.
 

Methods in org.eclipse.nebula.widgets.nattable.layer.cell with parameters of type ILayerCell
static String CellDisplayConversionUtils.convertDataType(ILayerCell cell, IConfigRegistry configRegistry)
           
 

Constructors in org.eclipse.nebula.widgets.nattable.layer.cell with parameters of type ILayerCell
InvertedLayerCell(ILayerCell layerCell)
           
TransformedLayerCell(ILayerCell cell)
           
TranslatedLayerCell(ILayerCell cell, ILayer layer, int originColumnPosition, int originRowPosition, int columnPosition, int rowPosition)
           
 

Uses of ILayerCell in org.eclipse.nebula.widgets.nattable.painter.cell
 

Methods in org.eclipse.nebula.widgets.nattable.painter.cell that return ILayerCell
protected  ILayerCell TableCellPainter.createSubLayerCell(ILayerCell cell, Object dataValue)
          Creating a temporary sub cell that represents one data value in the collection of data to be shown in the cell.
 

Methods in org.eclipse.nebula.widgets.nattable.painter.cell with parameters of type ILayerCell
static org.eclipse.swt.graphics.Color BlendedBackgroundPainter.blendBackgroundColour(ILayerCell cell, IConfigRegistry configRegistry, org.eclipse.swt.graphics.RGB baseColor)
          Returns a background colour for the specified cell.
protected  int VerticalTextPainter.calculatePadding(ILayerCell cell, int availableLength)
           
protected  int VerticalTextImagePainter.calculatePadding(ILayerCell cell, int availableLength)
           
protected  int TextPainter.calculatePadding(ILayerCell cell, int availableLength)
           
protected abstract  int AbstractTextPainter.calculatePadding(ILayerCell cell, int availableLength)
          This method is used to determine the padding from the cell to the available length.
protected  Boolean ColumnHeaderCheckBoxPainter.convertDataType(ILayerCell cell, IConfigRegistry configRegistry)
           
protected  Boolean CheckBoxPainter.convertDataType(ILayerCell cell, IConfigRegistry configRegistry)
           
protected  String AbstractTextPainter.convertDataType(ILayerCell cell, IConfigRegistry configRegistry)
          Convert the data value of the cell using the IDisplayConverter from the IConfigRegistry
protected  ILayerCell TableCellPainter.createSubLayerCell(ILayerCell cell, Object dataValue)
          Creating a temporary sub cell that represents one data value in the collection of data to be shown in the cell.
protected  org.eclipse.swt.graphics.Color GradientBackgroundPainter.getBackgroundColour(ILayerCell cell, IConfigRegistry configRegistry)
          Searches the background color to be used for gradient sweeping.
protected  org.eclipse.swt.graphics.Color BlendedBackgroundPainter.getBackgroundColour(ILayerCell cell, IConfigRegistry configRegistry)
           
protected  org.eclipse.swt.graphics.Color BackgroundPainter.getBackgroundColour(ILayerCell cell, IConfigRegistry configRegistry)
           
 ICellPainter ImagePainter.getCellPainterAt(int x, int y, ILayerCell cell, org.eclipse.swt.graphics.GC gc, org.eclipse.swt.graphics.Rectangle bounds, IConfigRegistry configRegistry)
           
 ICellPainter ICellPainter.getCellPainterAt(int x, int y, ILayerCell cell, org.eclipse.swt.graphics.GC gc, org.eclipse.swt.graphics.Rectangle adjustedCellBounds, IConfigRegistry configRegistry)
           
 ICellPainter CellPainterWrapper.getCellPainterAt(int x, int y, ILayerCell cell, org.eclipse.swt.graphics.GC gc, org.eclipse.swt.graphics.Rectangle adjustedCellBounds, IConfigRegistry configRegistry)
           
 ICellPainter AbstractCellPainter.getCellPainterAt(int x, int y, ILayerCell cell, org.eclipse.swt.graphics.GC gc, org.eclipse.swt.graphics.Rectangle adjustedCellBounds, IConfigRegistry configRegistry)
           
protected abstract  CheckBoxStateEnum TreeCheckBoxPainter.getCheckBoxState(ILayerCell cell)
           
protected  Object[] TableCellPainter.getDataAsArray(ILayerCell cell)
          Checks if the data value of the given cell is of type Collection or Array.
protected  org.eclipse.swt.graphics.Color GradientBackgroundPainter.getForeGroundColour(ILayerCell cell, IConfigRegistry configRegistry)
          Searches the foreground color to be used for gradient sweeping.
protected  org.eclipse.swt.graphics.Image TreeCheckBoxPainter.getImage(ILayerCell cell, IConfigRegistry configRegistry)
           
protected  org.eclipse.swt.graphics.Image ImagePainter.getImage(ILayerCell cell, IConfigRegistry configRegistry)
           
protected  org.eclipse.swt.graphics.Image ColumnHeaderCheckBoxPainter.getImage(ILayerCell cell, IConfigRegistry configRegistry)
           
protected  org.eclipse.swt.graphics.Image CheckBoxPainter.getImage(ILayerCell cell, IConfigRegistry configRegistry)
           
 int VerticalTextPainter.getPreferredHeight(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
 int VerticalTextImagePainter.getPreferredHeight(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
 int TextPainter.getPreferredHeight(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
 int TableCellPainter.getPreferredHeight(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
 int ImagePainter.getPreferredHeight(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
 int ICellPainter.getPreferredHeight(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
          Get the preferred height of the cell when rendered by this painter.
 int CellPainterWrapper.getPreferredHeight(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
 int ButtonCellPainter.getPreferredHeight(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
 int BackgroundImagePainter.getPreferredHeight(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
 int VerticalTextPainter.getPreferredWidth(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
 int VerticalTextImagePainter.getPreferredWidth(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
 int TextPainter.getPreferredWidth(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
 int TableCellPainter.getPreferredWidth(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
 int ImagePainter.getPreferredWidth(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
 int ICellPainter.getPreferredWidth(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
          Get the preferred width of the cell when rendered by this painter.
 int CellPainterWrapper.getPreferredWidth(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
 int ButtonCellPainter.getPreferredWidth(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
 int BackgroundImagePainter.getPreferredWidth(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
protected  int TableCellPainter.getSubCellHeight(ILayerCell subCell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
          Get the height for the sub cell.
protected  String PasswordTextPainter.getTextToDisplay(ILayerCell cell, org.eclipse.swt.graphics.GC gc, int availableLength, String text)
           
protected  String AbstractTextPainter.getTextToDisplay(ILayerCell cell, org.eclipse.swt.graphics.GC gc, int availableLength, String text)
          Computes dependent on the configuration of the TextPainter the text to display.
 org.eclipse.swt.graphics.Rectangle CellPainterWrapper.getWrappedPainterBounds(ILayerCell cell, org.eclipse.swt.graphics.GC gc, org.eclipse.swt.graphics.Rectangle bounds, IConfigRegistry configRegistry)
           
protected  boolean ColumnHeaderCheckBoxPainter.isChecked(ILayerCell cell, IConfigRegistry configRegistry)
           
protected  boolean CheckBoxPainter.isChecked(ILayerCell cell, IConfigRegistry configRegistry)
           
 void VerticalTextPainter.paintCell(ILayerCell cell, org.eclipse.swt.graphics.GC gc, org.eclipse.swt.graphics.Rectangle rectangle, IConfigRegistry configRegistry)
           
 void VerticalTextImagePainter.paintCell(ILayerCell cell, org.eclipse.swt.graphics.GC gc, org.eclipse.swt.graphics.Rectangle rectangle, IConfigRegistry configRegistry)
           
 void TextPainter.paintCell(ILayerCell cell, org.eclipse.swt.graphics.GC gc, org.eclipse.swt.graphics.Rectangle rectangle, IConfigRegistry configRegistry)
           
 void TableCellPainter.paintCell(ILayerCell cell, org.eclipse.swt.graphics.GC gc, org.eclipse.swt.graphics.Rectangle bounds, IConfigRegistry configRegistry)
           
 void PasswordTextPainter.paintCell(ILayerCell cell, org.eclipse.swt.graphics.GC gc, org.eclipse.swt.graphics.Rectangle rectangle, IConfigRegistry configRegistry)
           
 void ImagePainter.paintCell(ILayerCell cell, org.eclipse.swt.graphics.GC gc, org.eclipse.swt.graphics.Rectangle bounds, IConfigRegistry configRegistry)
           
 void ICellPainter.paintCell(ILayerCell cell, org.eclipse.swt.graphics.GC gc, org.eclipse.swt.graphics.Rectangle bounds, IConfigRegistry configRegistry)
           
 void GradientBackgroundPainter.paintCell(ILayerCell cell, org.eclipse.swt.graphics.GC gc, org.eclipse.swt.graphics.Rectangle bounds, IConfigRegistry configRegistry)
           
 void CellPainterWrapper.paintCell(ILayerCell cell, org.eclipse.swt.graphics.GC gc, org.eclipse.swt.graphics.Rectangle adjustedCellBounds, IConfigRegistry configRegistry)
           
 void ButtonCellPainter.paintCell(ILayerCell cell, org.eclipse.swt.graphics.GC gc, org.eclipse.swt.graphics.Rectangle bounds, IConfigRegistry configRegistry)
           
 void BackgroundPainter.paintCell(ILayerCell cell, org.eclipse.swt.graphics.GC gc, org.eclipse.swt.graphics.Rectangle bounds, IConfigRegistry configRegistry)
           
 void BackgroundImagePainter.paintCell(ILayerCell cell, org.eclipse.swt.graphics.GC gc, org.eclipse.swt.graphics.Rectangle rectangle, IConfigRegistry configRegistry)
           
protected  void VerticalTextPainter.setNewMinLength(ILayerCell cell, int contentHeight)
           
protected  void VerticalTextImagePainter.setNewMinLength(ILayerCell cell, int contentHeight)
           
protected  void TextPainter.setNewMinLength(ILayerCell cell, int contentWidth)
           
protected abstract  void AbstractTextPainter.setNewMinLength(ILayerCell cell, int contentLength)
          This method gets only called if automatic length calculation is enabled.
 

Uses of ILayerCell in org.eclipse.nebula.widgets.nattable.painter.cell.decorator
 

Methods in org.eclipse.nebula.widgets.nattable.painter.cell.decorator with parameters of type ILayerCell
protected  org.eclipse.swt.graphics.Color PaddingDecorator.getBackgroundColor(ILayerCell cell, IConfigRegistry configRegistry)
          Extract the background color that is registered for the given ILayerCell.
 org.eclipse.swt.graphics.Rectangle CellPainterDecorator.getBaseCellPainterBounds(ILayerCell cell, org.eclipse.swt.graphics.GC gc, org.eclipse.swt.graphics.Rectangle adjustedCellBounds, IConfigRegistry configRegistry)
           
 ICellPainter PaddingDecorator.getCellPainterAt(int x, int y, ILayerCell cell, org.eclipse.swt.graphics.GC gc, org.eclipse.swt.graphics.Rectangle adjustedCellBounds, IConfigRegistry configRegistry)
           
 ICellPainter CellPainterDecorator.getCellPainterAt(int x, int y, ILayerCell cell, org.eclipse.swt.graphics.GC gc, org.eclipse.swt.graphics.Rectangle adjustedCellBounds, IConfigRegistry configRegistry)
           
 org.eclipse.swt.graphics.Rectangle CellPainterDecorator.getDecoratorCellPainterBounds(ILayerCell cell, org.eclipse.swt.graphics.GC gc, org.eclipse.swt.graphics.Rectangle adjustedCellBounds, IConfigRegistry configRegistry)
           
 int XPBackgroundDecorator.getPreferredHeight(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
 int PaddingDecorator.getPreferredHeight(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
 int LineBorderDecorator.getPreferredHeight(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
 int CustomLineBorderDecorator.getPreferredHeight(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
 int CellPainterDecorator.getPreferredHeight(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
 int BeveledBorderDecorator.getPreferredHeight(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
 int XPBackgroundDecorator.getPreferredWidth(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
 int PaddingDecorator.getPreferredWidth(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
 int LineBorderDecorator.getPreferredWidth(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
 int CustomLineBorderDecorator.getPreferredWidth(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
 int CellPainterDecorator.getPreferredWidth(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
 int BeveledBorderDecorator.getPreferredWidth(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
 org.eclipse.swt.graphics.Rectangle BeveledBorderDecorator.getWrappedPainterBounds(ILayerCell cell, org.eclipse.swt.graphics.GC gc, org.eclipse.swt.graphics.Rectangle bounds, IConfigRegistry configRegistry)
           
 void XPBackgroundDecorator.paintCell(ILayerCell cell, org.eclipse.swt.graphics.GC gc, org.eclipse.swt.graphics.Rectangle rectangle, IConfigRegistry configRegistry)
           
 void PercentageBarDecorator.paintCell(ILayerCell cell, org.eclipse.swt.graphics.GC gc, org.eclipse.swt.graphics.Rectangle rectangle, IConfigRegistry configRegistry)
           
 void PaddingDecorator.paintCell(ILayerCell cell, org.eclipse.swt.graphics.GC gc, org.eclipse.swt.graphics.Rectangle adjustedCellBounds, IConfigRegistry configRegistry)
           
 void LineBorderDecorator.paintCell(ILayerCell cell, org.eclipse.swt.graphics.GC gc, org.eclipse.swt.graphics.Rectangle rectangle, IConfigRegistry configRegistry)
           
 void CustomLineBorderDecorator.paintCell(ILayerCell cell, org.eclipse.swt.graphics.GC gc, org.eclipse.swt.graphics.Rectangle rectangle, IConfigRegistry configRegistry)
           
 void CellPainterDecorator.paintCell(ILayerCell cell, org.eclipse.swt.graphics.GC gc, org.eclipse.swt.graphics.Rectangle adjustedCellBounds, IConfigRegistry configRegistry)
           
 void BeveledBorderDecorator.paintCell(ILayerCell cell, org.eclipse.swt.graphics.GC gc, org.eclipse.swt.graphics.Rectangle adjustedCellBounds, IConfigRegistry configRegistry)
           
 

Uses of ILayerCell in org.eclipse.nebula.widgets.nattable.painter.layer
 

Methods in org.eclipse.nebula.widgets.nattable.painter.layer with parameters of type ILayerCell
protected  void CellLayerPainter.paintCell(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
 

Uses of ILayerCell in org.eclipse.nebula.widgets.nattable.selection
 

Methods in org.eclipse.nebula.widgets.nattable.selection that return types with arguments of type ILayerCell
 Collection<ILayerCell> SelectionLayer.getSelectedCells()
          Retrieves the ILayerCells out of the SelectionLayer that are currently marked as selected in the SelectionModel.
 

Uses of ILayerCell in org.eclipse.nebula.widgets.nattable.sort.painter
 

Methods in org.eclipse.nebula.widgets.nattable.sort.painter with parameters of type ILayerCell
protected  org.eclipse.swt.graphics.Image SortIconPainter.getImage(ILayerCell cell, IConfigRegistry configRegistry)
           
 

Uses of ILayerCell in org.eclipse.nebula.widgets.nattable.style
 

Methods in org.eclipse.nebula.widgets.nattable.style with parameters of type ILayerCell
static List<org.eclipse.swt.graphics.Color> CellStyleUtil.getAllBackgroundColors(ILayerCell cell, IConfigRegistry configRegistry, String displayMode)
           
static IStyle CellStyleUtil.getCellStyle(ILayerCell cell, IConfigRegistry configRegistry)
           
 

Uses of ILayerCell in org.eclipse.nebula.widgets.nattable.summaryrow
 

Methods in org.eclipse.nebula.widgets.nattable.summaryrow that return ILayerCell
 ILayerCell SummaryRowLayer.getCellByPosition(int columnPosition, int rowPosition)
           
 

Uses of ILayerCell in org.eclipse.nebula.widgets.nattable.test.fixture
 

Classes in org.eclipse.nebula.widgets.nattable.test.fixture that implement ILayerCell
 class TestLayerCell
           
 

Methods in org.eclipse.nebula.widgets.nattable.test.fixture that return ILayerCell
 ILayerCell TestLayer.getCellByPosition(int columnPosition, int rowPosition)
           
 ILayerCell CellPainterFixture.getLastPaintedCell()
           
 

Methods in org.eclipse.nebula.widgets.nattable.test.fixture with parameters of type ILayerCell
 ICellPainter TestLayer.getCellPainter(int columnPosition, int rowPosition, ILayerCell cell, IConfigRegistry configRegistry)
           
 int CellPainterFixture.getPreferredHeight(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
 int CellPainterFixture.getPreferredWidth(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
 void CellPainterFixture.paintCell(ILayerCell cell, org.eclipse.swt.graphics.GC gc, org.eclipse.swt.graphics.Rectangle bounds, IConfigRegistry configRegistry)
           
 

Constructors in org.eclipse.nebula.widgets.nattable.test.fixture with parameters of type ILayerCell
TestLayerCell(ILayerCell cell)
           
 

Uses of ILayerCell in org.eclipse.nebula.widgets.nattable.test.fixture.layer
 

Classes in org.eclipse.nebula.widgets.nattable.test.fixture.layer that implement ILayerCell
 class CellFixture
           
 

Uses of ILayerCell in org.eclipse.nebula.widgets.nattable.tree
 

Methods in org.eclipse.nebula.widgets.nattable.tree with parameters of type ILayerCell
 ICellPainter TreeLayer.getCellPainter(int columnPosition, int rowPosition, ILayerCell cell, IConfigRegistry configRegistry)
           
 

Uses of ILayerCell in org.eclipse.nebula.widgets.nattable.tree.config
 

Methods in org.eclipse.nebula.widgets.nattable.tree.config with parameters of type ILayerCell
 Object TreeExportFormatter.formatForExport(ILayerCell cell, IConfigRegistry configRegistry)
           
 

Uses of ILayerCell in org.eclipse.nebula.widgets.nattable.tree.painter
 

Methods in org.eclipse.nebula.widgets.nattable.tree.painter with parameters of type ILayerCell
protected  org.eclipse.swt.graphics.Image TreeImagePainter.getImage(ILayerCell cell, IConfigRegistry configRegistry)
           
 int IndentedTreeImagePainter.getPreferredWidth(ILayerCell cell, org.eclipse.swt.graphics.GC gc, IConfigRegistry configRegistry)
           
 org.eclipse.swt.graphics.Rectangle IndentedTreeImagePainter.getWrappedPainterBounds(ILayerCell cell, org.eclipse.swt.graphics.GC gc, org.eclipse.swt.graphics.Rectangle bounds, IConfigRegistry configRegistry)
           
 void IndentedTreeImagePainter.paintCell(ILayerCell cell, org.eclipse.swt.graphics.GC gc, org.eclipse.swt.graphics.Rectangle bounds, IConfigRegistry configRegistry)
           
 



Copyright © 2014. All rights reserved.