Class Escalator.AbstractRowContainer
- java.lang.Object
-
- com.vaadin.v7.client.widgets.Escalator.AbstractRowContainer
-
- All Implemented Interfaces:
RowContainer
- Enclosing class:
- Escalator
public abstract class Escalator.AbstractRowContainer extends Object implements RowContainer
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.vaadin.v7.client.widget.escalator.RowContainer
RowContainer.BodyRowContainer
-
-
Field Summary
Fields Modifier and Type Field Description protected com.google.gwt.dom.client.TableSectionElementrootThe table section element (<thead>,<tbody>or<tfoot>) the rows (i.e.-
Fields inherited from interface com.vaadin.v7.client.widget.escalator.RowContainer
INITIAL_DEFAULT_ROW_HEIGHT
-
-
Constructor Summary
Constructors Constructor Description AbstractRowContainer(com.google.gwt.dom.client.TableSectionElement rowContainerElement)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected voidassertArgumentsAreValidAndWithinRange(int index, int numberOfRows)voidautodetectRowHeightLater()voidautodetectRowHeightNow()doublecalculateMaxColWidth(int index)Iterates through all the cells in a column and returns the width of the widest element in this RowContainer.protected doublecalculateTotalRowHeight()Returns the height of all rows in the row container.com.google.gwt.dom.client.TableCellElementcreateCellElement(double width)Create and setup an empty cell element.CellgetCell(com.google.gwt.dom.client.Element element)Returns the cell object which contains information about the cell the element is in.protected abstract StringgetCellElementTagName()Gets the tag name of an element to represent a cell in a row.doublegetDefaultRowHeight()Returns the default height of the rows in this RowContainer.com.google.gwt.dom.client.TableSectionElementgetElement()Returns the root element of RowContainer.EscalatorUpdatergetEscalatorUpdater()Returns the currentEscalatorUpdaterused to render cells.protected abstract doublegetHeightOfSection()The height of this table section.intgetLogicalRowIndex(com.google.gwt.dom.client.TableRowElement tr)Gets the logical row index for the given table row element.intgetRowCount()Gets the number of rows in the current row container.com.google.gwt.dom.client.TableRowElementgetRowElement(int index)Gets the row element with given logical index.protected doublegetRowTop(com.google.gwt.dom.client.TableRowElement tr)Returns the assigned top position for the given element.protected StringgetStylePrimaryName()Returns the primary style name of the container.protected abstract com.google.gwt.dom.client.TableRowElementgetTrByVisualIndex(int index)Gets the child element that is visually at a certain index.voidinsertRows(int index, int numberOfRows)Adds rows at a certain index in this row container.protected voidpaintInsertColumns(int offset, int numberOfColumns, boolean frozen)protected com.google.gwt.dom.client.NodepaintInsertRow(com.google.gwt.dom.client.Node referenceRow, com.google.gwt.dom.client.TableRowElement tr, int logicalRowIndex)Inserts a single row into the DOM, invokinggetEscalatorUpdater()preAttachandpostAttachbefore and after inserting the row, respectively.protected abstract voidpaintInsertRows(int visualIndex, int numberOfRows)Actually add rows into the DOM, now that everything can be calculated.protected List<com.google.gwt.dom.client.TableRowElement>paintInsertStaticRows(int visualIndex, int numberOfRows)protected voidpaintRemoveColumns(int offset, int numberOfColumns)protected voidpaintRemoveRow(com.google.gwt.dom.client.TableRowElement tr, int logicalRowIndex)Removes a row element from the DOM, invokinggetEscalatorUpdater()preDetachandpostDetachbefore and after removing the row, respectively.protected abstract voidpaintRemoveRows(int index, int numberOfRows)Removes those row elements from the DOM that correspond to the given range of logical indices.voidreapplyColumnWidths()Reapplies all the cells' widths according to the calculated widths in the column configuration.protected abstract voidreapplyDefaultRowHeights()The default height of rows has (most probably) changed.protected voidreapplyRowHeight(com.google.gwt.dom.client.TableRowElement tr, double heightPx)protected voidreapplyRowWidths()Applies the total length of the columns to each row element.protected abstract voidrecalculateSectionHeight()protected abstract voidrefreshCells(com.vaadin.shared.Range logicalRowRange, com.vaadin.shared.Range colRange)voidrefreshRows(int index, int numberOfRows)Refreshes a range of rows in the current row container.protected voidremoveRowPosition(com.google.gwt.dom.client.TableRowElement tr)voidremoveRows(int index, int numberOfRows)Removes rows at a certain index in the current row container.protected abstract booleanrowCanBeFrozen(com.google.gwt.dom.client.TableRowElement tr)Checks whether a row is an element, or contains such elements, that can be frozen.voidsetColumnFrozen(int column, boolean frozen)voidsetColumnLastFrozen(int column, boolean lastFrozen)voidsetDefaultRowHeight(double px)The default height of the rows in this RowContainer.voidsetEscalatorUpdater(EscalatorUpdater escalatorUpdater)Sets theEscalatorUpdaterto use when displaying data in the escalator.protected voidsetRowPosition(com.google.gwt.dom.client.TableRowElement tr, int x, double y)protected voidsetStylePrimaryName(String primaryStyleName)The primary style name for the container.voidupdateFreezePosition(int column, double scrollLeft)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.vaadin.v7.client.widget.escalator.RowContainer
getDomRowCount
-
-
-
-
Method Detail
-
getElement
public com.google.gwt.dom.client.TableSectionElement getElement()
Description copied from interface:RowContainerReturns the root element of RowContainer.- Specified by:
getElementin interfaceRowContainer- Returns:
- RowContainer root element
-
getCellElementTagName
protected abstract String getCellElementTagName()
Gets the tag name of an element to represent a cell in a row.Usually
"th"or"td".Note: To actually create such an element, use
#createCellElement(int, int)instead.- Returns:
- the tag name for the element to represent cells as
- See Also:
#createCellElement(int, int)
-
getEscalatorUpdater
public EscalatorUpdater getEscalatorUpdater()
Description copied from interface:RowContainerReturns the currentEscalatorUpdaterused to render cells.- Specified by:
getEscalatorUpdaterin interfaceRowContainer- Returns:
- the current escalator updater
-
setEscalatorUpdater
public void setEscalatorUpdater(EscalatorUpdater escalatorUpdater)
Sets theEscalatorUpdaterto use when displaying data in the escalator.Implementation detail: This method does no DOM modifications (i.e. is very cheap to call) if there is no data for rows or columns when this method is called.
- Specified by:
setEscalatorUpdaterin interfaceRowContainer- Parameters:
escalatorUpdater- the escalator updater to use to render cells. May not benull- See Also:
Escalator.hasColumnAndRowData()
-
removeRows
public void removeRows(int index, int numberOfRows)Removes rows at a certain index in the current row container.Implementation detail: This method does no DOM modifications (i.e. is very cheap to call) if there are no rows in the DOM when this method is called.
- Specified by:
removeRowsin interfaceRowContainer- Parameters:
index- the index of the first row to be removednumberOfRows- the number of rows to remove, starting from the index- See Also:
Escalator.hasSomethingInDom()
-
paintRemoveRows
protected abstract void paintRemoveRows(int index, int numberOfRows)Removes those row elements from the DOM that correspond to the given range of logical indices. This may be fewer thannumberOfRows, even zero, if not all the removed rows are actually visible.The implementation must call
#paintRemoveRow(Element, int)for each row that is removed from the DOM.- Parameters:
index- the logical index of the first removed rownumberOfRows- number of logical rows to remove
-
paintRemoveRow
protected void paintRemoveRow(com.google.gwt.dom.client.TableRowElement tr, int logicalRowIndex)Removes a row element from the DOM, invokinggetEscalatorUpdater()preDetachandpostDetachbefore and after removing the row, respectively.This method must be called for each removed DOM row by any
paintRemoveRows(int, int)implementation.- Parameters:
tr- the row element to remove.
-
assertArgumentsAreValidAndWithinRange
protected void assertArgumentsAreValidAndWithinRange(int index, int numberOfRows) throws IllegalArgumentException, IndexOutOfBoundsException
-
getRowCount
public int getRowCount()
Description copied from interface:RowContainerGets the number of rows in the current row container.- Specified by:
getRowCountin interfaceRowContainer- Returns:
- the number of rows in the current row container
-
insertRows
public void insertRows(int index, int numberOfRows)Adds rows at a certain index in this row container.The new rows will be inserted between the row at the index, and the row before (an index of 0 means that the rows are inserted at the beginning). Therefore, the rows currently at the index and afterwards will be moved downwards.
The contents of the inserted rows will subsequently be queried from the escalator updater.
Note: Only the contents of the inserted rows will be rendered. If inserting new rows affects the contents of existing rows,
RowContainer.refreshRows(int, int)needs to be called for those rows separately.Implementation detail: This method does no DOM modifications (i.e. is very cheap to call) if there is no data for columns when this method is called.
- Specified by:
insertRowsin interfaceRowContainer- Parameters:
index- the index of the row before which new rows are inserted, orRowContainer.getRowCount()to add rows at the endnumberOfRows- the number of rows to insert after theindex- See Also:
Escalator.hasColumnAndRowData()
-
paintInsertRows
protected abstract void paintInsertRows(int visualIndex, int numberOfRows)Actually add rows into the DOM, now that everything can be calculated.- Parameters:
visualIndex- the DOM index to add rows intonumberOfRows- the number of rows to insert
-
paintInsertStaticRows
protected List<com.google.gwt.dom.client.TableRowElement> paintInsertStaticRows(int visualIndex, int numberOfRows)
-
paintInsertRow
protected com.google.gwt.dom.client.Node paintInsertRow(com.google.gwt.dom.client.Node referenceRow, com.google.gwt.dom.client.TableRowElement tr, int logicalRowIndex)Inserts a single row into the DOM, invokinggetEscalatorUpdater()preAttachandpostAttachbefore and after inserting the row, respectively. The row should have its cells already inserted.- Parameters:
referenceRow- the row after which to insert or null if insert as firsttr- the row to be insertedlogicalRowIndex- the logical index of the inserted row- Returns:
- the inserted row to be used as the new reference
-
recalculateSectionHeight
protected abstract void recalculateSectionHeight()
-
calculateTotalRowHeight
protected double calculateTotalRowHeight()
Returns the height of all rows in the row container.
-
refreshRows
public void refreshRows(int index, int numberOfRows)Refreshes a range of rows in the current row container.The data for the refreshed rows is queried from the current cell renderer.
Implementation detail: This method does no DOM modifications (i.e. is very cheap to call) if there is no data for columns when this method is called.
- Specified by:
refreshRowsin interfaceRowContainer- Parameters:
index- the index of the first row that will be updatednumberOfRows- the number of rows to update, starting from the index- See Also:
Escalator.hasColumnAndRowData()
-
refreshCells
protected abstract void refreshCells(com.vaadin.shared.Range logicalRowRange, com.vaadin.shared.Range colRange)
-
createCellElement
public com.google.gwt.dom.client.TableCellElement createCellElement(double width)
Create and setup an empty cell element.- Parameters:
width- the width of the cell, in pixels- Returns:
- a set-up empty cell element
-
getRowElement
public com.google.gwt.dom.client.TableRowElement getRowElement(int index)
Description copied from interface:RowContainerGets the row element with given logical index. For lazy loaded containers such as Escalators BodyRowContainer visibility should be checked before calling this function. SeeEscalator.getVisibleRowRange().- Specified by:
getRowElementin interfaceRowContainer- Parameters:
index- the logical index of the element to retrieve- Returns:
- the element at position
index
-
getTrByVisualIndex
protected abstract com.google.gwt.dom.client.TableRowElement getTrByVisualIndex(int index) throws IndexOutOfBoundsExceptionGets the child element that is visually at a certain index.- Parameters:
index- the index of the element to retrieve- Returns:
- the element at position
index - Throws:
IndexOutOfBoundsException- ifindexis not valid withinroot
-
paintRemoveColumns
protected void paintRemoveColumns(int offset, int numberOfColumns)
-
paintInsertColumns
protected void paintInsertColumns(int offset, int numberOfColumns, boolean frozen)
-
setColumnFrozen
public void setColumnFrozen(int column, boolean frozen)
-
setColumnLastFrozen
public void setColumnLastFrozen(int column, boolean lastFrozen)
-
updateFreezePosition
public void updateFreezePosition(int column, double scrollLeft)
-
rowCanBeFrozen
protected abstract boolean rowCanBeFrozen(com.google.gwt.dom.client.TableRowElement tr)
Checks whether a row is an element, or contains such elements, that can be frozen.In practice, this applies for all header and footer rows. For body rows, it applies for all rows except spacer rows.
- Parameters:
tr- the row element to check for if it is or has elements that can be frozen- Returns:
trueif this the given element, or any of its descendants, can be frozen- Since:
- 7.5.0
-
calculateMaxColWidth
public double calculateMaxColWidth(int index)
Iterates through all the cells in a column and returns the width of the widest element in this RowContainer.- Parameters:
index- the index of the column to inspect- Returns:
- the pixel width of the widest element in the indicated column
-
reapplyColumnWidths
public void reapplyColumnWidths()
Reapplies all the cells' widths according to the calculated widths in the column configuration.
-
reapplyRowWidths
protected void reapplyRowWidths()
Applies the total length of the columns to each row element.Note: In contrast to
reapplyColumnWidths(), this method only modifies the width of the<tr>element, not the cells within.
-
setStylePrimaryName
protected void setStylePrimaryName(String primaryStyleName)
The primary style name for the container.- Parameters:
primaryStyleName- the style name to use as prefix for all row and cell style names.
-
getStylePrimaryName
protected String getStylePrimaryName()
Returns the primary style name of the container.- Returns:
- The primary style name or
nullif not set.
-
setDefaultRowHeight
public void setDefaultRowHeight(double px) throws IllegalArgumentExceptionDescription copied from interface:RowContainerThe default height of the rows in this RowContainer.- Specified by:
setDefaultRowHeightin interfaceRowContainer- Parameters:
px- the default height in pixels of the rows in this RowContainer- Throws:
IllegalArgumentException- ifpx < 1- See Also:
RowContainer.getDefaultRowHeight()
-
getDefaultRowHeight
public double getDefaultRowHeight()
Description copied from interface:RowContainerReturns the default height of the rows in this RowContainer.This value will be equal to
RowContainer.INITIAL_DEFAULT_ROW_HEIGHTif theEscalatorhas not yet had a chance to autodetect the row height, or no explicit value has yet given via#setDefaultRowHeight(int)- Specified by:
getDefaultRowHeightin interfaceRowContainer- Returns:
- the default height of the rows in this RowContainer, in pixels
- See Also:
#setDefaultRowHeight(int)
-
reapplyDefaultRowHeights
protected abstract void reapplyDefaultRowHeights()
The default height of rows has (most probably) changed.Make sure that the displayed rows with a default height are updated in height and top position.
Note:This implementation should not call
Escalator.recalculateElementSizes()- it is done by the discretion of the caller of this method.
-
reapplyRowHeight
protected void reapplyRowHeight(com.google.gwt.dom.client.TableRowElement tr, double heightPx)
-
setRowPosition
protected void setRowPosition(com.google.gwt.dom.client.TableRowElement tr, int x, double y)
-
getRowTop
protected double getRowTop(com.google.gwt.dom.client.TableRowElement tr)
Returns the assigned top position for the given element.Note: This method does not calculate what a row's top position should be. It just returns an assigned value, correct or not.
- Parameters:
tr- the table row element to measure- Returns:
- the current top position for
tr - See Also:
Escalator.BodyRowContainerImpl.getRowTop(int)
-
removeRowPosition
protected void removeRowPosition(com.google.gwt.dom.client.TableRowElement tr)
-
autodetectRowHeightLater
public void autodetectRowHeightLater()
-
autodetectRowHeightNow
public void autodetectRowHeightNow()
-
getCell
public Cell getCell(com.google.gwt.dom.client.Element element)
Description copied from interface:RowContainerReturns the cell object which contains information about the cell the element is in.- Specified by:
getCellin interfaceRowContainer- Parameters:
element- The element to get the cell for. If element is not present in row container thennullis returned.- Returns:
- the cell of the element, or
nullif element is not present in theRowContainer.
-
getHeightOfSection
protected abstract double getHeightOfSection()
The height of this table section.Note that
the bodywill calculate its height, while the others will return a precomputed value.- Returns:
- the height of this table section
- Since:
- 7.5.0
-
getLogicalRowIndex
public int getLogicalRowIndex(com.google.gwt.dom.client.TableRowElement tr)
Gets the logical row index for the given table row element.- Parameters:
tr- the table row element inside this container- Returns:
- the logical index of the given element
-
-