2018-02-19 15:25:02 +08:00
|
|
|
package widgets
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
ui "github.com/cjbassi/gotop/termui"
|
|
|
|
)
|
|
|
|
|
|
|
|
const KEYBINDS = `
|
|
|
|
Quit: 'q' or 'Ctrl-c'
|
|
|
|
|
|
|
|
Navigation:
|
|
|
|
- '<up>'/'<down>' and 'j'/'k': up and down
|
|
|
|
- 'C-d' and 'C-u': up and down half a page
|
|
|
|
- 'C-f' and 'C-b': up and down a full page
|
|
|
|
- 'gg' and 'G': jump to top and bottom
|
|
|
|
|
|
|
|
Process Sorting:
|
|
|
|
- 'c': CPU
|
|
|
|
- 'm': Mem
|
|
|
|
- 'p': PID
|
|
|
|
|
|
|
|
'<tab>': toggle process grouping
|
|
|
|
'dd': kill the selected process or process group
|
|
|
|
`
|
|
|
|
|
|
|
|
type HelpMenu struct {
|
2018-02-24 13:15:38 +08:00
|
|
|
*ui.Block
|
2018-02-19 15:25:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewHelpMenu() *HelpMenu {
|
2018-02-24 13:15:38 +08:00
|
|
|
block := ui.NewBlock()
|
2018-02-23 16:42:39 +08:00
|
|
|
block.X = 48 // width
|
|
|
|
block.Y = 15 // height
|
|
|
|
block.XOffset = (ui.Body.Width - block.X) / 2 // X coordinate
|
|
|
|
block.YOffset = (ui.Body.Height - block.Y) / 2 // Y coordinate
|
2018-02-19 15:25:02 +08:00
|
|
|
return &HelpMenu{block}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (hm *HelpMenu) Buffer() *ui.Buffer {
|
|
|
|
buf := hm.Block.Buffer()
|
|
|
|
|
|
|
|
for y, line := range strings.Split(KEYBINDS, "\n") {
|
|
|
|
for x, char := range line {
|
2018-02-21 19:50:18 +08:00
|
|
|
buf.SetCell(x+1, y, ui.NewCell(char, ui.Color(7), hm.Bg))
|
2018-02-19 15:25:02 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return buf
|
|
|
|
}
|