Module com.googlecode.lanterna
Interface TableHeaderRenderer<V>
- Type Parameters:
V
- Type of data stored in each table cell
- All Known Implementing Classes:
DefaultTableHeaderRenderer
public interface TableHeaderRenderer<V>
This interface can be implemented if you want to customize how table headers are drawn.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
drawHeader
(Table<V> table, String label, int index, TextGUIGraphics textGUIGraphics) Called by the table when it's time to draw a header, you can see how much size is available by checking the size of thetextGUIGraphics
.getPreferredSize
(Table<V> table, String label, int columnIndex) Called by the table when it wants to know how big a particular table header should be
-
Method Details
-
getPreferredSize
Called by the table when it wants to know how big a particular table header should be- Parameters:
table
- Table containing the headerlabel
- Label for this headercolumnIndex
- Column index of the header- Returns:
- Size this renderer would like the header to have
-
drawHeader
Called by the table when it's time to draw a header, you can see how much size is available by checking the size of thetextGUIGraphics
. The top-left position of the graphics object is the top-left position of this header.- Parameters:
table
- Table containing the headerlabel
- Label for this headerindex
- Column index of the headertextGUIGraphics
- Graphics object to header with
-