This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
tomo-old/popups/dialog.go

89 lines
2.1 KiB
Go
Raw Normal View History

2023-01-12 17:51:42 +00:00
package popups
import "image"
2023-05-03 23:40:30 +00:00
import "tomo"
import "tomo/elements"
2023-01-12 17:51:42 +00:00
2023-01-12 19:12:24 +00:00
// DialogKind defines the semantic role of a dialog window.
2023-01-12 17:51:42 +00:00
type DialogKind int
const (
DialogKindInfo DialogKind = iota
DialogKindQuestion
DialogKindWarning
DialogKindError
)
2023-04-15 23:14:44 +00:00
// TODO: add ability to have an icon for buttons
2023-01-12 19:12:24 +00:00
// Button represents a dialog response button.
2023-01-12 17:51:42 +00:00
type Button struct {
2023-01-12 19:12:24 +00:00
// Name contains the text to display on the button.
2023-01-12 17:51:42 +00:00
Name string
2023-01-12 19:12:24 +00: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 17:51:42 +00:00
OnPress func ()
}
// NewDialog creates a new modal dialog window and returns it. If parent is nil,
// the dialog will just be a normal window
2023-01-12 19:12:24 +00:00
func NewDialog (
kind DialogKind,
2023-03-31 03:19:04 +00:00
parent tomo.Window,
2023-01-12 19:12:24 +00:00
title, message string,
buttons ...Button,
) (
2023-03-31 03:19:04 +00:00
window tomo.Window,
2023-01-12 19:12:24 +00:00
) {
if parent == nil {
window, _ = tomo.GetBackend().NewWindow(image.Rectangle { })
} else {
window, _ = parent.NewModal(image.Rectangle { })
}
2023-01-12 17:51:42 +00:00
window.SetTitle(title)
2023-04-15 23:14:44 +00:00
box := elements.NewVBox(elements.SpaceBoth)
messageRow := elements.NewHBox(elements.SpaceMargin)
controlRow := elements.NewHBox(elements.SpaceMargin)
2023-03-05 04:09:46 +00:00
2023-03-31 05:06:29 +00:00
iconId := tomo.IconInformation
2023-03-05 04:09:46 +00:00
switch kind {
2023-03-31 05:06:29 +00:00
case DialogKindInfo: iconId = tomo.IconInformation
case DialogKindQuestion: iconId = tomo.IconQuestion
case DialogKindWarning: iconId = tomo.IconWarning
case DialogKindError: iconId = tomo.IconError
2023-03-05 04:09:46 +00:00
}
messageRow.Adopt(elements.NewIcon(iconId, tomo.IconSizeLarge))
messageRow.AdoptExpand(elements.NewLabel(message))
2023-03-05 04:09:46 +00:00
controlRow.AdoptExpand(elements.NewSpacer())
box.AdoptExpand(messageRow)
box.Adopt(controlRow)
2023-04-16 02:23:08 +00:00
window.Adopt(box)
2023-01-12 17:51:42 +00:00
if len(buttons) == 0 {
2023-03-31 03:19:04 +00:00
button := elements.NewButton("OK")
2023-03-31 05:06:29 +00:00
button.SetIcon(tomo.IconYes)
2023-01-12 17:51:42 +00:00
button.OnClick(window.Close)
controlRow.Adopt(button)
button.Focus()
2023-01-12 17:51:42 +00:00
} else {
2023-03-31 03:19:04 +00:00
var button *elements.Button
2023-01-12 17:51:42 +00:00
for _, buttonDescriptor := range buttons {
2023-03-31 03:19:04 +00:00
button = elements.NewButton(buttonDescriptor.Name)
2023-01-12 17:51:42 +00:00
button.SetEnabled(buttonDescriptor.OnPress != nil)
button.OnClick (func () {
buttonDescriptor.OnPress()
window.Close()
})
controlRow.Adopt(button)
2023-01-12 17:51:42 +00:00
}
button.Focus()
2023-01-12 17:51:42 +00:00
}
window.Show()
2023-01-12 19:12:24 +00:00
return
2023-01-12 17:51:42 +00:00
}