Package com.biglybt.pif.ui.tables
Interface TableCellToolTipListener
-
- All Known Implementing Classes:
AbstractTrackerCell
,BadAvailTimeItem
,ColumnActivityDate
,ColumnActivityText
,ColumnDateSizer
,ColumnStream
,ColumnSubscriptionLastChecked
,ColumnSubscriptionNewestDate
,ColumnTC_NameInfo
,ColumnThumbnail
,CommentIconItem
,ConnectHealthItem
,DateAddedItem
,DateCompletedItem
,DateFileCompletedItem
,DateLastActiveItem
,DownItem
,FileModifiedItem
,IpItem
,LastUpdateItem
,LocProvUtils.FlagListener
,MergedDataItem
,NameItem
,PeersItem.Cell
,SeedsItem.Cell
,ShareRatioProgressItem
,SizeItem
,SizeItem
,TableColumnOTOF_Size
,TagAddedToDateItem
,TagsItem
,TorrentCreateDateItem
,TrackerNameItem
,TrackerNextAccessItem
,TrackerStatusItem
,TrackerStatusItem.Cell
,TypeItem
public interface TableCellToolTipListener
A listener that triggers when a cell's tooltip is about to be displayed or removed
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
cellHover(TableCell cell)
triggered when a cell's tooltip is about to be displayed.void
cellHoverComplete(TableCell cell)
triggered when a cell's tooltip is about to be removed.
-
-
-
Method Detail
-
cellHover
void cellHover(TableCell cell)
triggered when a cell's tooltip is about to be displayed.- Parameters:
cell
- TableCell which the tooltip will be displayed for
-
cellHoverComplete
void cellHoverComplete(TableCell cell)
triggered when a cell's tooltip is about to be removed.- Parameters:
cell
- TableCell which the tooltip will be removed
-
-