2021-07-30 22:29:20 +00:00
|
|
|
package hinters
|
|
|
|
|
|
|
|
import (
|
|
|
|
"image"
|
2023-01-16 02:11:07 +00:00
|
|
|
"tuxpa.in/t/erm/app/darktile/termutil"
|
2021-07-30 22:29:20 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type HintAPI interface {
|
|
|
|
ShowMessage(msg string)
|
|
|
|
SetCursorToPointer()
|
|
|
|
ResetCursor()
|
|
|
|
Highlight(start termutil.Position, end termutil.Position, label string, img image.Image)
|
|
|
|
ClearHighlight()
|
|
|
|
CellSize() image.Point
|
|
|
|
}
|