| 918 | } |
| 919 | |
| 920 | type FullscreenRenderer struct { |
| 921 | theme *ColorTheme |
| 922 | mouse bool |
| 923 | forceBlack bool |
| 924 | tabstop int |
| 925 | prevDownTime time.Time |
| 926 | clicks [][2]int |
| 927 | showCursor bool |
| 928 | } |
| 929 | |
| 930 | func NewFullscreenRenderer(theme *ColorTheme, forceBlack bool, mouse bool, tabstop int) Renderer { |
| 931 | r := &FullscreenRenderer{ |
nothing calls this directly
no outgoing calls
no test coverage detected