2022-03-24 12:15:11 -04:00
|
|
|
//go:build !windows && !darwin
|
2021-04-11 22:02:21 -04:00
|
|
|
|
|
|
|
package zenity
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strconv"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/ncruces/zenity/internal/zenutil"
|
|
|
|
)
|
|
|
|
|
|
|
|
func calendar(text string, opts options) (time.Time, error) {
|
|
|
|
args := []string{"--calendar", "--text", text, "--date-format=%F"}
|
|
|
|
args = appendTitle(args, opts)
|
|
|
|
args = appendButtons(args, opts)
|
|
|
|
args = appendWidthHeight(args, opts)
|
|
|
|
args = appendIcon(args, opts)
|
|
|
|
if opts.day != 0 {
|
|
|
|
args = append(args, "--day", strconv.Itoa(opts.day))
|
|
|
|
}
|
|
|
|
if opts.month != 0 {
|
|
|
|
args = append(args, "--month", strconv.Itoa(opts.month))
|
|
|
|
}
|
|
|
|
if opts.year != 0 {
|
|
|
|
args = append(args, "--year", strconv.Itoa(opts.year))
|
|
|
|
}
|
|
|
|
|
|
|
|
out, err := zenutil.Run(opts.ctx, args)
|
2022-03-24 12:15:11 -04:00
|
|
|
str, err := strResult(opts, out, err)
|
|
|
|
if err != nil {
|
|
|
|
return time.Time{}, err
|
2021-04-11 22:02:21 -04:00
|
|
|
}
|
2022-03-24 12:15:11 -04:00
|
|
|
return time.Parse("2006-01-02", str)
|
2021-04-11 22:02:21 -04:00
|
|
|
}
|