Search in sources :

Example 26 with CopyDataToClipboardCommand

use of org.eclipse.nebula.widgets.nattable.copy.command.CopyDataToClipboardCommand in project nebula.widgets.nattable by eclipse.

the class FillHandleSeriesTest method testMultiCellSameDiffDoubleValueDragDown.

@Test
public void testMultiCellSameDiffDoubleValueDragDown() {
    this.dataProvider.setDataValue(4, 4, Double.valueOf("1.3"));
    this.dataProvider.setDataValue(4, 5, Double.valueOf("2.6"));
    this.dataProvider.setDataValue(4, 6, Double.valueOf("3.9"));
    this.selectionLayer.selectCell(4, 4, false, true);
    this.selectionLayer.selectCell(4, 5, false, true);
    this.selectionLayer.selectCell(4, 6, false, true);
    this.natTable.doCommand(new CopyDataToClipboardCommand(// $NON-NLS-1$
    "\t", // $NON-NLS-1$
    System.getProperty("line.separator"), this.natTable.getConfigRegistry()));
    this.selectionLayer.setFillHandleRegion(new Rectangle(4, 4, 1, 6));
    this.natTable.doCommand(new FillHandlePasteCommand(FillHandleOperation.SERIES, MoveDirectionEnum.DOWN, this.natTable.getConfigRegistry()));
    assertEquals(Double.valueOf("1.3"), this.selectionLayer.getDataValueByPosition(4, 4));
    assertEquals(Double.valueOf("2.6"), this.selectionLayer.getDataValueByPosition(4, 5));
    assertEquals(Double.valueOf("3.9"), this.selectionLayer.getDataValueByPosition(4, 6));
    assertEquals(Double.valueOf("5.2"), this.selectionLayer.getDataValueByPosition(4, 7));
    assertEquals(Double.valueOf("6.5"), this.selectionLayer.getDataValueByPosition(4, 8));
    assertEquals(Double.valueOf("7.8"), this.selectionLayer.getDataValueByPosition(4, 9));
}
Also used : FillHandlePasteCommand(org.eclipse.nebula.widgets.nattable.fillhandle.command.FillHandlePasteCommand) CopyDataToClipboardCommand(org.eclipse.nebula.widgets.nattable.copy.command.CopyDataToClipboardCommand) Rectangle(org.eclipse.swt.graphics.Rectangle) Test(org.junit.Test)

Example 27 with CopyDataToClipboardCommand

use of org.eclipse.nebula.widgets.nattable.copy.command.CopyDataToClipboardCommand in project nebula.widgets.nattable by eclipse.

the class FillHandleSeriesTest method testBigDecimalNullCellValueDragDown.

@Test
public void testBigDecimalNullCellValueDragDown() {
    this.dataProvider.setDataValue(4, 4, BigDecimal.valueOf(1));
    this.selectionLayer.selectCell(4, 4, false, true);
    this.selectionLayer.selectCell(4, 5, false, true);
    this.natTable.doCommand(new CopyDataToClipboardCommand(// $NON-NLS-1$
    "\t", // $NON-NLS-1$
    System.getProperty("line.separator"), this.natTable.getConfigRegistry()));
    this.selectionLayer.setFillHandleRegion(new Rectangle(4, 4, 1, 6));
    this.natTable.doCommand(new FillHandlePasteCommand(FillHandleOperation.SERIES, MoveDirectionEnum.DOWN, this.natTable.getConfigRegistry()));
    assertEquals(BigDecimal.valueOf(1), this.selectionLayer.getDataValueByPosition(4, 4));
    assertNull(this.selectionLayer.getDataValueByPosition(4, 5));
    assertEquals(BigDecimal.valueOf(1), this.selectionLayer.getDataValueByPosition(4, 6));
    assertNull(this.selectionLayer.getDataValueByPosition(4, 7));
    assertEquals(BigDecimal.valueOf(1), this.selectionLayer.getDataValueByPosition(4, 8));
    assertNull(this.selectionLayer.getDataValueByPosition(4, 9));
}
Also used : FillHandlePasteCommand(org.eclipse.nebula.widgets.nattable.fillhandle.command.FillHandlePasteCommand) CopyDataToClipboardCommand(org.eclipse.nebula.widgets.nattable.copy.command.CopyDataToClipboardCommand) Rectangle(org.eclipse.swt.graphics.Rectangle) Test(org.junit.Test)

Example 28 with CopyDataToClipboardCommand

use of org.eclipse.nebula.widgets.nattable.copy.command.CopyDataToClipboardCommand in project nebula.widgets.nattable by eclipse.

the class FillHandleSeriesTest method testSingleCellDoubleValueDragDown.

@Test
public void testSingleCellDoubleValueDragDown() {
    this.dataProvider.setDataValue(4, 4, Double.valueOf("1.6"));
    this.selectionLayer.setSelectedCell(4, 4);
    this.natTable.doCommand(new CopyDataToClipboardCommand(// $NON-NLS-1$
    "\t", // $NON-NLS-1$
    System.getProperty("line.separator"), this.natTable.getConfigRegistry()));
    this.selectionLayer.setFillHandleRegion(new Rectangle(4, 4, 1, 4));
    this.natTable.doCommand(new FillHandlePasteCommand(FillHandleOperation.SERIES, MoveDirectionEnum.DOWN, this.natTable.getConfigRegistry()));
    assertEquals(Double.valueOf("1.6"), this.selectionLayer.getDataValueByPosition(4, 4));
    assertEquals(Double.valueOf("2.6"), this.selectionLayer.getDataValueByPosition(4, 5));
    assertEquals(Double.valueOf("3.6"), this.selectionLayer.getDataValueByPosition(4, 6));
    assertEquals(Double.valueOf("4.6"), this.selectionLayer.getDataValueByPosition(4, 7));
}
Also used : FillHandlePasteCommand(org.eclipse.nebula.widgets.nattable.fillhandle.command.FillHandlePasteCommand) CopyDataToClipboardCommand(org.eclipse.nebula.widgets.nattable.copy.command.CopyDataToClipboardCommand) Rectangle(org.eclipse.swt.graphics.Rectangle) Test(org.junit.Test)

Example 29 with CopyDataToClipboardCommand

use of org.eclipse.nebula.widgets.nattable.copy.command.CopyDataToClipboardCommand in project nebula.widgets.nattable by eclipse.

the class FillHandleSeriesTest method testDoubleNullCellValueDragDown.

@Test
public void testDoubleNullCellValueDragDown() {
    this.dataProvider.setDataValue(4, 4, Double.valueOf("1"));
    this.selectionLayer.selectCell(4, 4, false, true);
    this.selectionLayer.selectCell(4, 5, false, true);
    this.natTable.doCommand(new CopyDataToClipboardCommand(// $NON-NLS-1$
    "\t", // $NON-NLS-1$
    System.getProperty("line.separator"), this.natTable.getConfigRegistry()));
    this.selectionLayer.setFillHandleRegion(new Rectangle(4, 4, 1, 6));
    this.natTable.doCommand(new FillHandlePasteCommand(FillHandleOperation.SERIES, MoveDirectionEnum.DOWN, this.natTable.getConfigRegistry()));
    assertEquals(Double.valueOf("1"), this.selectionLayer.getDataValueByPosition(4, 4));
    assertNull(this.selectionLayer.getDataValueByPosition(4, 5));
    assertEquals(Double.valueOf("1"), this.selectionLayer.getDataValueByPosition(4, 6));
    assertNull(this.selectionLayer.getDataValueByPosition(4, 7));
    assertEquals(Double.valueOf("1"), this.selectionLayer.getDataValueByPosition(4, 8));
    assertNull(this.selectionLayer.getDataValueByPosition(4, 9));
}
Also used : FillHandlePasteCommand(org.eclipse.nebula.widgets.nattable.fillhandle.command.FillHandlePasteCommand) CopyDataToClipboardCommand(org.eclipse.nebula.widgets.nattable.copy.command.CopyDataToClipboardCommand) Rectangle(org.eclipse.swt.graphics.Rectangle) Test(org.junit.Test)

Example 30 with CopyDataToClipboardCommand

use of org.eclipse.nebula.widgets.nattable.copy.command.CopyDataToClipboardCommand in project nebula.widgets.nattable by eclipse.

the class FillHandleSeriesTest method testMultiCellSameDiffFloatValueDragDown.

@Test
public void testMultiCellSameDiffFloatValueDragDown() {
    this.dataProvider.setDataValue(4, 4, Float.valueOf("1.3"));
    this.dataProvider.setDataValue(4, 5, Float.valueOf("2.6"));
    this.dataProvider.setDataValue(4, 6, Float.valueOf("3.9"));
    this.selectionLayer.selectCell(4, 4, false, true);
    this.selectionLayer.selectCell(4, 5, false, true);
    this.selectionLayer.selectCell(4, 6, false, true);
    this.natTable.doCommand(new CopyDataToClipboardCommand(// $NON-NLS-1$
    "\t", // $NON-NLS-1$
    System.getProperty("line.separator"), this.natTable.getConfigRegistry()));
    this.selectionLayer.setFillHandleRegion(new Rectangle(4, 4, 1, 6));
    this.natTable.doCommand(new FillHandlePasteCommand(FillHandleOperation.SERIES, MoveDirectionEnum.DOWN, this.natTable.getConfigRegistry()));
    assertEquals(Float.valueOf("1.3"), this.selectionLayer.getDataValueByPosition(4, 4));
    assertEquals(Float.valueOf("2.6"), this.selectionLayer.getDataValueByPosition(4, 5));
    assertEquals(Float.valueOf("3.9"), this.selectionLayer.getDataValueByPosition(4, 6));
    assertEquals(Float.valueOf("5.2"), this.selectionLayer.getDataValueByPosition(4, 7));
    assertEquals(Float.valueOf("6.5"), this.selectionLayer.getDataValueByPosition(4, 8));
    assertEquals(Float.valueOf("7.8"), this.selectionLayer.getDataValueByPosition(4, 9));
}
Also used : FillHandlePasteCommand(org.eclipse.nebula.widgets.nattable.fillhandle.command.FillHandlePasteCommand) CopyDataToClipboardCommand(org.eclipse.nebula.widgets.nattable.copy.command.CopyDataToClipboardCommand) Rectangle(org.eclipse.swt.graphics.Rectangle) Test(org.junit.Test)

Aggregations

CopyDataToClipboardCommand (org.eclipse.nebula.widgets.nattable.copy.command.CopyDataToClipboardCommand)84 FillHandlePasteCommand (org.eclipse.nebula.widgets.nattable.fillhandle.command.FillHandlePasteCommand)83 Rectangle (org.eclipse.swt.graphics.Rectangle)82 Test (org.junit.Test)82 Point (org.eclipse.swt.graphics.Point)34 Date (java.util.Date)6 BigDecimal (java.math.BigDecimal)2 HashMap (java.util.HashMap)1 NatTable (org.eclipse.nebula.widgets.nattable.NatTable)1 CopyDataCommandHandler (org.eclipse.nebula.widgets.nattable.copy.command.CopyDataCommandHandler)1 IDataProvider (org.eclipse.nebula.widgets.nattable.data.IDataProvider)1 DefaultBodyDataProvider (org.eclipse.nebula.widgets.nattable.grid.data.DefaultBodyDataProvider)1 DefaultColumnHeaderDataProvider (org.eclipse.nebula.widgets.nattable.grid.data.DefaultColumnHeaderDataProvider)1 DefaultCornerDataProvider (org.eclipse.nebula.widgets.nattable.grid.data.DefaultCornerDataProvider)1 DefaultRowHeaderDataProvider (org.eclipse.nebula.widgets.nattable.grid.data.DefaultRowHeaderDataProvider)1 ColumnHeaderLayer (org.eclipse.nebula.widgets.nattable.grid.layer.ColumnHeaderLayer)1 CornerLayer (org.eclipse.nebula.widgets.nattable.grid.layer.CornerLayer)1 DefaultColumnHeaderDataLayer (org.eclipse.nebula.widgets.nattable.grid.layer.DefaultColumnHeaderDataLayer)1 DefaultRowHeaderDataLayer (org.eclipse.nebula.widgets.nattable.grid.layer.DefaultRowHeaderDataLayer)1 GridLayer (org.eclipse.nebula.widgets.nattable.grid.layer.GridLayer)1