48 lines
1.4 KiB
Go
48 lines
1.4 KiB
Go
//go:build !windows && !darwin
|
|
|
|
package zenity
|
|
|
|
import "github.com/ncruces/zenity/internal/zenutil"
|
|
|
|
func list(text string, items []string, opts options) (string, error) {
|
|
args := []string{"--list", "--hide-header", "--text", text}
|
|
args = appendGeneral(args, opts)
|
|
args = appendButtons(args, opts)
|
|
args = appendWidthHeight(args, opts)
|
|
args = appendWindowIcon(args, opts)
|
|
if opts.listKind == radioListKind {
|
|
args = append(args, "--radiolist", "--column=", "--column=")
|
|
for _, i := range items {
|
|
args = append(args, "", i)
|
|
}
|
|
} else {
|
|
args = append(args, "--column=")
|
|
args = append(args, items...)
|
|
}
|
|
if opts.midSearch {
|
|
args = append(args, "--mid-search")
|
|
}
|
|
|
|
out, err := zenutil.Run(opts.ctx, args)
|
|
return strResult(opts, out, err)
|
|
}
|
|
|
|
func listMultiple(text string, items []string, opts options) ([]string, error) {
|
|
args := []string{"--list", "--hide-header", "--text", text, "--multiple", "--separator", zenutil.Separator}
|
|
args = appendGeneral(args, opts)
|
|
args = appendButtons(args, opts)
|
|
args = appendWidthHeight(args, opts)
|
|
args = appendWindowIcon(args, opts)
|
|
if opts.listKind == checkListKind {
|
|
args = append(args, "--checklist", "--column=", "--column=")
|
|
for _, i := range items {
|
|
args = append(args, "", i)
|
|
}
|
|
} else {
|
|
args = append(args, "--column=")
|
|
args = append(args, items...)
|
|
}
|
|
|
|
out, err := zenutil.Run(opts.ctx, args)
|
|
return lstResult(opts, out, err)
|
|
}
|