zenity/date.go
2022-03-29 15:18:49 +01:00

24 lines
553 B
Go

package zenity
import (
"time"
)
// Calendar displays the calendar dialog.
//
// Valid options: Title, Width, Height, OKLabel, CancelLabel, ExtraButton,
// Icon, DefaultDate.
//
// May return: ErrCanceled.
func Calendar(text string, options ...Option) (time.Time, error) {
return calendar(text, applyOptions(options))
}
// DefaultDate returns an Option to set the date.
func DefaultDate(year int, month time.Month, day int) Option {
return funcOption(func(o *options) {
t := time.Date(year, month, day, 0, 0, 0, 0, time.UTC)
o.time = &t
})
}