126 lines
2.6 KiB
Go
126 lines
2.6 KiB
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
//"fmt"
|
||
|
"fmt"
|
||
|
"log"
|
||
|
|
||
|
"github.com/jroimartin/gocui"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
ui()
|
||
|
}
|
||
|
|
||
|
func ui() {
|
||
|
g, err := gocui.NewGui(gocui.Output256)
|
||
|
if err != nil {
|
||
|
log.Panicln(err)
|
||
|
}
|
||
|
defer g.Close()
|
||
|
g.SetManagerFunc(layout)
|
||
|
g.Mouse = true
|
||
|
g.Cursor = true
|
||
|
|
||
|
initKeybindings(g)
|
||
|
|
||
|
if err := g.MainLoop(); err != nil && err != gocui.ErrQuit {
|
||
|
log.Panicln(err)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func quit(*gocui.Gui, *gocui.View) error {
|
||
|
return gocui.ErrQuit
|
||
|
}
|
||
|
|
||
|
// func sendmsg(g *gocui.Gui, v *gocui.View) error {
|
||
|
// chatbox, err := g.View("chatbox")
|
||
|
// textarea, err := g.View("textarea")
|
||
|
// if err != nil {
|
||
|
// log.Panicln(err)
|
||
|
// }
|
||
|
// message := textarea.Buffer()
|
||
|
// msg := string(message)
|
||
|
// if msg == "" {
|
||
|
// return nil
|
||
|
// }
|
||
|
//
|
||
|
// fmt.Fprint(chatbox, msg)
|
||
|
// textarea.Clear()
|
||
|
// textarea.SetCursor(0, 0)
|
||
|
// return nil
|
||
|
// }
|
||
|
|
||
|
func initKeybindings(g *gocui.Gui) error {
|
||
|
if err := g.SetKeybinding("", gocui.KeyCtrlC, gocui.ModNone, quit); err != nil {
|
||
|
log.Panicln(err)
|
||
|
}
|
||
|
|
||
|
// if err := g.SetKeybinding("button", gocui.MouseLeft, gocui.ModNone, sendmsg); err != nil {
|
||
|
// log.Panicln(err)
|
||
|
// }
|
||
|
//
|
||
|
if err := g.SetKeybinding("songSelection", gocui.KeyArrowDown, gocui.ModNone, func(g *gocui.Gui, v *gocui.View) error {
|
||
|
selectSongs(v, +1)
|
||
|
return nil
|
||
|
}); err != nil {
|
||
|
log.Panicln(err)
|
||
|
}
|
||
|
|
||
|
if err := g.SetKeybinding("songSelection", gocui.KeyArrowUp, gocui.ModNone, func(g *gocui.Gui, v *gocui.View) error {
|
||
|
selectSongs(v, -1)
|
||
|
return nil
|
||
|
}); err != nil {
|
||
|
log.Panicln(err)
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func selectSongs(v *gocui.View, dy int) error {
|
||
|
//songSelection, err := g.View("songSelection")
|
||
|
// if err != nil {
|
||
|
// return err
|
||
|
// }
|
||
|
|
||
|
_, currentY := v.Cursor()
|
||
|
v.SetCursor(0, currentY+dy)
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func layout(g *gocui.Gui) error {
|
||
|
maxX, maxY := g.Size()
|
||
|
|
||
|
if progressViewer, err := g.SetView("progressViewer", 2, 1, maxX-2, 4); err != nil {
|
||
|
if err != gocui.ErrUnknownView {
|
||
|
return err
|
||
|
}
|
||
|
progressViewer.Title = "Progress viewer"
|
||
|
}
|
||
|
|
||
|
if songSelection, err := g.SetView("songSelection", 2, 5, maxX/2+2, maxY-2); err != nil {
|
||
|
if err != gocui.ErrUnknownView {
|
||
|
return err
|
||
|
}
|
||
|
if _, err := g.SetCurrentView("songSelection"); err != nil {
|
||
|
log.Panicln(err)
|
||
|
}
|
||
|
for i := 0; i < 5; i++ {
|
||
|
songName := fmt.Sprintf(" SongNumber%v", i)
|
||
|
fmt.Fprintln(songSelection, songName)
|
||
|
}
|
||
|
songSelection.Title = "Song selection:"
|
||
|
songSelection.Wrap = true
|
||
|
songSelection.Editable = false
|
||
|
}
|
||
|
|
||
|
if currentlyPlaying, err := g.SetView("currentlyPlaying", maxX/2+4, 5, maxX-2, maxY-2); err != nil {
|
||
|
if err != gocui.ErrUnknownView {
|
||
|
return err
|
||
|
}
|
||
|
currentlyPlaying.Title = "Currently playing:"
|
||
|
currentlyPlaying.Wrap = true
|
||
|
}
|
||
|
return nil
|
||
|
}
|