2023-01-12 10:51:42 -07:00
|
|
|
package popups
|
|
|
|
|
|
|
|
import "git.tebibyte.media/sashakoshka/tomo"
|
2023-03-04 21:09:46 -07:00
|
|
|
import "git.tebibyte.media/sashakoshka/tomo/theme"
|
2023-02-01 23:48:16 -07:00
|
|
|
import "git.tebibyte.media/sashakoshka/tomo/elements"
|
|
|
|
import "git.tebibyte.media/sashakoshka/tomo/layouts/basic"
|
2023-01-12 10:51:42 -07:00
|
|
|
import "git.tebibyte.media/sashakoshka/tomo/elements/basic"
|
|
|
|
|
2023-01-12 12:12:24 -07:00
|
|
|
// DialogKind defines the semantic role of a dialog window.
|
2023-01-12 10:51:42 -07:00
|
|
|
type DialogKind int
|
|
|
|
|
|
|
|
const (
|
|
|
|
DialogKindInfo DialogKind = iota
|
|
|
|
DialogKindQuestion
|
|
|
|
DialogKindWarning
|
|
|
|
DialogKindError
|
|
|
|
)
|
|
|
|
|
2023-01-12 12:12:24 -07:00
|
|
|
// Button represents a dialog response button.
|
2023-01-12 10:51:42 -07:00
|
|
|
type Button struct {
|
2023-01-12 12:12:24 -07:00
|
|
|
// Name contains the text to display on the button.
|
2023-01-12 10:51:42 -07:00
|
|
|
Name string
|
2023-01-12 12:12:24 -07:00
|
|
|
|
|
|
|
// OnPress specifies a callback to run when the button is pressed. If
|
|
|
|
// this callback is nil, the button will appear disabled.
|
2023-01-12 10:51:42 -07:00
|
|
|
OnPress func ()
|
|
|
|
}
|
|
|
|
|
2023-01-12 12:12:24 -07:00
|
|
|
// NewDialog creates a new dialog window and returns it.
|
|
|
|
func NewDialog (
|
|
|
|
kind DialogKind,
|
|
|
|
title, message string,
|
|
|
|
buttons ...Button,
|
|
|
|
) (
|
2023-02-01 23:48:16 -07:00
|
|
|
window elements.Window,
|
2023-01-12 12:12:24 -07:00
|
|
|
) {
|
|
|
|
window, _ = tomo.NewWindow(2, 2)
|
2023-01-12 10:51:42 -07:00
|
|
|
window.SetTitle(title)
|
2023-03-04 21:09:46 -07:00
|
|
|
|
2023-02-01 23:48:16 -07:00
|
|
|
container := basicElements.NewContainer(basicLayouts.Dialog { true, true })
|
2023-01-12 10:51:42 -07:00
|
|
|
window.Adopt(container)
|
|
|
|
|
2023-03-04 21:09:46 -07:00
|
|
|
messageContainer := basicElements.NewContainer(basicLayouts.Horizontal { true, false })
|
|
|
|
iconId := theme.IconInformation
|
|
|
|
switch kind {
|
|
|
|
case DialogKindInfo: iconId = theme.IconInformation
|
|
|
|
case DialogKindQuestion: iconId = theme.IconQuestion
|
|
|
|
case DialogKindWarning: iconId = theme.IconWarning
|
|
|
|
case DialogKindError: iconId = theme.IconError
|
|
|
|
}
|
|
|
|
|
|
|
|
messageContainer.Adopt(basicElements.NewIcon(iconId, theme.IconSizeSmall), false)
|
|
|
|
messageContainer.Adopt(basicElements.NewLabel(message, false), true)
|
|
|
|
container.Adopt(messageContainer, true)
|
|
|
|
|
2023-01-12 10:51:42 -07:00
|
|
|
if len(buttons) == 0 {
|
2023-02-01 23:48:16 -07:00
|
|
|
button := basicElements.NewButton("OK")
|
2023-01-12 10:51:42 -07:00
|
|
|
button.OnClick(window.Close)
|
|
|
|
container.Adopt(button, false)
|
2023-01-30 15:25:09 -07:00
|
|
|
button.Focus()
|
2023-01-12 10:51:42 -07:00
|
|
|
} else {
|
2023-02-01 23:48:16 -07:00
|
|
|
var button *basicElements.Button
|
2023-01-12 10:51:42 -07:00
|
|
|
for _, buttonDescriptor := range buttons {
|
2023-02-01 23:48:16 -07:00
|
|
|
button = basicElements.NewButton(buttonDescriptor.Name)
|
2023-01-12 10:51:42 -07:00
|
|
|
button.SetEnabled(buttonDescriptor.OnPress != nil)
|
|
|
|
button.OnClick (func () {
|
|
|
|
buttonDescriptor.OnPress()
|
|
|
|
window.Close()
|
|
|
|
})
|
|
|
|
container.Adopt(button, false)
|
|
|
|
}
|
2023-01-30 15:25:09 -07:00
|
|
|
button.Focus()
|
2023-01-12 10:51:42 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
window.Show()
|
2023-01-12 12:12:24 -07:00
|
|
|
return
|
2023-01-12 10:51:42 -07:00
|
|
|
}
|