zenity/msg_darwin.go

101 lines
2.1 KiB
Go
Raw Normal View History

2020-01-04 22:21:39 -05:00
package zenity
import (
"os/exec"
2020-01-05 07:37:45 -05:00
2020-01-19 06:57:05 -05:00
"github.com/ncruces/zenity/internal/zenutil"
2020-01-04 22:21:39 -05:00
)
2020-01-23 06:44:28 -05:00
func message(kind messageKind, text string, options []Option) (bool, error) {
2020-01-24 07:52:45 -05:00
opts := applyOptions(options)
2020-01-28 07:46:43 -05:00
data := zenutil.Msg{
Text: text,
Timeout: zenutil.Timeout,
}
2020-01-23 06:44:28 -05:00
dialog := kind == questionKind || opts.icon != 0
2020-01-04 22:21:39 -05:00
2020-01-06 07:01:51 -05:00
if dialog {
2020-01-09 20:46:53 -05:00
data.Operation = "displayDialog"
data.Title = opts.title
2020-01-04 22:21:39 -05:00
switch opts.icon {
case ErrorIcon:
data.Icon = "stop"
case WarningIcon:
data.Icon = "caution"
2020-01-12 18:09:11 -05:00
case InfoIcon, QuestionIcon:
data.Icon = "note"
2020-01-04 22:21:39 -05:00
}
} else {
2020-01-09 20:46:53 -05:00
data.Operation = "displayAlert"
if opts.title != "" {
data.Message = text
data.Text = opts.title
}
2020-01-23 06:44:28 -05:00
switch kind {
case infoKind:
2020-01-04 22:21:39 -05:00
data.As = "informational"
2020-01-23 06:44:28 -05:00
case warningKind:
2020-01-04 22:21:39 -05:00
data.As = "warning"
2020-01-23 06:44:28 -05:00
case errorKind:
data.As = "critical"
2020-01-04 22:21:39 -05:00
}
}
2020-01-23 06:44:28 -05:00
if kind != questionKind {
2020-01-06 07:01:51 -05:00
if dialog {
2020-01-24 07:52:45 -05:00
opts.okLabel = "OK"
2020-01-04 22:21:39 -05:00
}
2020-01-24 07:52:45 -05:00
opts.cancelLabel = ""
2020-01-04 22:21:39 -05:00
}
2020-01-24 07:52:45 -05:00
if opts.okLabel != "" || opts.cancelLabel != "" || opts.extraButton != "" {
if opts.okLabel == "" {
opts.okLabel = "OK"
2020-01-04 22:21:39 -05:00
}
2020-01-24 07:52:45 -05:00
if opts.cancelLabel == "" {
opts.cancelLabel = "Cancel"
2020-01-04 22:21:39 -05:00
}
2020-01-23 06:44:28 -05:00
if kind == questionKind {
2020-01-24 07:52:45 -05:00
if opts.extraButton == "" {
data.Buttons = []string{opts.cancelLabel, opts.okLabel}
2020-01-04 22:21:39 -05:00
data.Default = 2
data.Cancel = 1
} else {
2020-01-24 07:52:45 -05:00
data.Buttons = []string{opts.extraButton, opts.cancelLabel, opts.okLabel}
2020-01-04 22:21:39 -05:00
data.Default = 3
data.Cancel = 2
}
} else {
2020-01-24 07:52:45 -05:00
if opts.extraButton == "" {
data.Buttons = []string{opts.okLabel}
2020-01-04 22:21:39 -05:00
data.Default = 1
} else {
2020-01-24 07:52:45 -05:00
data.Buttons = []string{opts.extraButton, opts.okLabel}
2020-01-04 22:21:39 -05:00
data.Default = 2
}
}
2020-01-24 07:52:45 -05:00
data.Extra = opts.extraButton
2020-01-04 22:21:39 -05:00
}
2020-01-24 07:52:45 -05:00
if opts.defaultCancel {
2020-01-04 22:21:39 -05:00
if data.Cancel != 0 {
data.Default = data.Cancel
}
2020-01-06 07:01:51 -05:00
if dialog && data.Buttons == nil {
2020-01-04 22:21:39 -05:00
data.Default = 1
}
}
2020-01-28 07:46:43 -05:00
out, err := zenutil.Run(opts.ctx, "msg", data)
2020-01-04 22:21:39 -05:00
if err, ok := err.(*exec.ExitError); ok && err.ExitCode() == 1 {
return false, nil
}
if err != nil {
return false, err
}
2020-01-24 07:52:45 -05:00
if len(out) > 0 && string(out[:len(out)-1]) == opts.extraButton {
2020-01-06 07:01:51 -05:00
return false, ErrExtraButton
}
2020-01-04 22:21:39 -05:00
return true, err
}