21 lines
613 B
Go
21 lines
613 B
Go
package zenity
|
|
|
|
// Entry displays the text entry dialog.
|
|
//
|
|
// Valid options: Title, Width, Height, OKLabel, CancelLabel, ExtraButton,
|
|
// Icon, EntryText, HideText.
|
|
//
|
|
// May return: ErrCanceled, ErrExtraButton.
|
|
func Entry(text string, options ...Option) (string, error) {
|
|
return entry(text, applyOptions(options))
|
|
}
|
|
|
|
// EntryText returns an Option to set the entry text.
|
|
func EntryText(text string) Option {
|
|
return funcOption(func(o *options) { o.entryText = text })
|
|
}
|
|
|
|
// HideText returns an Option to hide the entry text.
|
|
func HideText() Option {
|
|
return funcOption(func(o *options) { o.hideText = true })
|
|
}
|