termbox-util/termbox_confirmmodal.go

203 lines
5.3 KiB
Go
Raw Permalink Normal View History

2015-10-21 16:24:32 +00:00
package termboxUtil
import (
"github.com/nsf/termbox-go"
)
2015-10-21 16:24:32 +00:00
// ConfirmModal is a modal with yes/no (or similar) buttons
type ConfirmModal struct {
2016-02-09 16:21:57 +00:00
id string
title string
text string
x, y, width, height int
2015-10-21 16:24:32 +00:00
showHelp bool
cursor int
2019-03-25 15:10:25 +00:00
fg, bg termbox.Attribute
activeFg, activeBg termbox.Attribute
2015-10-21 16:24:32 +00:00
isDone bool
accepted bool
value string
2015-10-21 16:24:32 +00:00
isVisible bool
2016-02-09 16:21:57 +00:00
bordered bool
tabSkip bool
}
2015-10-21 16:24:32 +00:00
// CreateConfirmModal Creates a confirmation modal with the specified attributes
func CreateConfirmModal(title string, x, y, width, height int, fg, bg termbox.Attribute) *ConfirmModal {
2019-03-25 15:10:25 +00:00
i := ConfirmModal{title: title, x: x, y: y, width: width, height: height, fg: fg, bg: bg, activeFg: fg, activeBg: bg}
if i.title == "" && i.text == "" {
i.title = "Confirm?"
}
2015-10-21 16:24:32 +00:00
i.showHelp = true
return &i
}
2016-02-09 16:21:57 +00:00
// GetID returns this control's ID
func (i *ConfirmModal) GetID() string { return i.id }
// SetID sets this control's ID
func (i *ConfirmModal) SetID(newID string) {
i.id = newID
}
2015-10-21 16:24:32 +00:00
// GetTitle returns the current title of the modal
func (i *ConfirmModal) GetTitle() string { return i.title }
2015-10-21 16:24:32 +00:00
// SetTitle sets the current title of the modal to s
func (i *ConfirmModal) SetTitle(s string) {
i.title = s
}
2015-10-21 16:24:32 +00:00
// GetText returns the current text of the modal
func (i *ConfirmModal) GetText() string { return i.text }
2015-10-21 16:24:32 +00:00
// SetText sets the text of the modal to s
func (i *ConfirmModal) SetText(s string) {
i.text = s
}
2015-10-21 16:24:32 +00:00
// GetX returns the current x coordinate of the modal
func (i *ConfirmModal) GetX() int { return i.x }
2015-10-21 16:24:32 +00:00
// SetX sets the current x coordinate of the modal to x
func (i *ConfirmModal) SetX(x int) {
i.x = x
}
2015-10-21 16:24:32 +00:00
// GetY returns the current y coordinate of the modal
func (i *ConfirmModal) GetY() int { return i.y }
2015-10-21 16:24:32 +00:00
// SetY sets the current y coordinate of the modal to y
func (i *ConfirmModal) SetY(y int) {
i.y = y
}
2015-10-21 16:24:32 +00:00
// GetWidth returns the current width of the modal
func (i *ConfirmModal) GetWidth() int { return i.width }
2015-10-21 16:24:32 +00:00
// SetWidth sets the current modal width to width
func (i *ConfirmModal) SetWidth(width int) {
i.width = width
}
2015-10-21 16:24:32 +00:00
// GetHeight returns the current height of the modal
func (i *ConfirmModal) GetHeight() int { return i.height }
2015-10-21 16:24:32 +00:00
// SetHeight set the height of the modal to height
func (i *ConfirmModal) SetHeight(height int) {
i.height = height
}
2015-10-21 16:24:32 +00:00
// HelpIsShown returns true or false if the help is displayed
func (i *ConfirmModal) HelpIsShown() bool { return i.showHelp }
// ShowHelp sets whether or not to display the help text
func (i *ConfirmModal) ShowHelp(b bool) {
2015-10-21 16:24:32 +00:00
i.showHelp = b
}
2016-02-09 16:21:57 +00:00
// GetFgColor returns the foreground color
func (i *ConfirmModal) GetFgColor() termbox.Attribute { return i.fg }
2015-10-21 16:24:32 +00:00
2016-02-09 16:21:57 +00:00
// SetFgColor sets the foreground color
func (i *ConfirmModal) SetFgColor(fg termbox.Attribute) {
i.fg = fg
}
2016-02-09 16:21:57 +00:00
// GetBgColor returns the background color
func (i *ConfirmModal) GetBgColor() termbox.Attribute { return i.bg }
2015-10-21 16:24:32 +00:00
2016-02-09 16:21:57 +00:00
// SetBgColor sets the current background color
func (i *ConfirmModal) SetBgColor(bg termbox.Attribute) {
i.bg = bg
}
2015-10-21 16:24:32 +00:00
// IsDone returns whether the user has answered the modal
func (i *ConfirmModal) IsDone() bool { return i.isDone }
// SetDone sets whether the modal has completed it's purpose
func (i *ConfirmModal) SetDone(b bool) {
2015-10-21 16:24:32 +00:00
i.isDone = b
}
2015-10-21 16:24:32 +00:00
// Show sets the visibility flag of the modal to true
func (i *ConfirmModal) Show() {
2015-10-21 16:24:32 +00:00
i.isVisible = true
}
2015-10-21 16:24:32 +00:00
// Hide sets the visibility flag of the modal to false
func (i *ConfirmModal) Hide() {
2015-10-21 16:24:32 +00:00
i.isVisible = false
}
2015-10-21 16:24:32 +00:00
// IsAccepted returns whether the user accepted the modal
func (i *ConfirmModal) IsAccepted() bool { return i.accepted }
2015-10-21 16:24:32 +00:00
// Clear clears all of the non-positional parameters of the modal
func (i *ConfirmModal) Clear() {
i.title = ""
i.text = ""
i.accepted = false
2015-10-21 16:24:32 +00:00
i.isDone = false
}
2016-02-09 16:21:57 +00:00
// IsBordered returns whether this modal is bordered or not
func (i *ConfirmModal) IsBordered() bool {
return i.bordered
}
// SetBordered sets whether we render a border around the frame
func (i *ConfirmModal) SetBordered(b bool) {
i.bordered = b
}
// IsTabSkipped returns whether this modal has it's tabskip flag set
func (i *ConfirmModal) IsTabSkipped() bool {
return i.tabSkip
}
// SetTabSkip sets the tabskip flag for this control
func (i *ConfirmModal) SetTabSkip(b bool) {
i.tabSkip = b
}
// HandleEvent handles the termbox event and returns whether it was consumed
func (i *ConfirmModal) HandleEvent(event termbox.Event) bool {
if event.Ch == 'Y' || event.Ch == 'y' {
i.accepted = true
i.isDone = true
return true
} else if event.Ch == 'N' || event.Ch == 'n' {
i.accepted = false
i.isDone = true
return true
}
return false
}
2015-10-21 16:24:32 +00:00
// Draw draws the modal
func (i *ConfirmModal) Draw() {
// First blank out the area we'll be putting the modal
FillWithChar(' ', i.x, i.y, i.x+i.width, i.y+i.height, i.fg, i.bg)
// Now draw the border
DrawBorder(i.x, i.y, i.x+i.width, i.y+i.height, i.fg, i.bg)
2015-10-21 16:24:32 +00:00
nextY := i.y + 1
// The title
if i.title != "" {
2015-10-21 16:24:32 +00:00
DrawStringAtPoint(i.title, i.x+1, nextY, i.fg, i.bg)
nextY++
FillWithChar('-', i.x+1, nextY, i.x+i.width-1, nextY, i.fg, i.bg)
nextY++
}
if i.text != "" {
2015-10-21 16:24:32 +00:00
DrawStringAtPoint(i.text, i.x+1, nextY, i.fg, i.bg)
}
2015-10-21 16:24:32 +00:00
nextY += 2
if i.showHelp {
helpString := " (Y/y) Confirm. (N/n) Reject. "
helpX := (i.x + i.width) - len(helpString) - 1
DrawStringAtPoint(helpString, helpX, nextY, i.fg, i.bg)
}
}