Versions in this module Expand all Collapse all v0 v0.0.1 Jun 4, 2024 Changes in this version + func ShowColorPicker(title, message string, callback func(c color.Color), parent fyne.Window) + func ShowConfirm(title, message string, callback func(bool), parent fyne.Window) + func ShowCustom(title, dismiss string, content fyne.CanvasObject, parent fyne.Window) + func ShowCustomConfirm(title, confirm, dismiss string, content fyne.CanvasObject, callback func(bool), ...) + func ShowCustomWithoutButtons(title string, content fyne.CanvasObject, parent fyne.Window) + func ShowEntryDialog(title, message string, onConfirm func(string), parent fyne.Window) + func ShowError(err error, parent fyne.Window) + func ShowFileOpen(callback func(fyne.URIReadCloser, error), parent fyne.Window) + func ShowFileSave(callback func(fyne.URIWriteCloser, error), parent fyne.Window) + func ShowFolderOpen(callback func(fyne.ListableURI, error), parent fyne.Window) + func ShowForm(title, confirm, dismiss string, content []*widget.FormItem, ...) + func ShowInformation(title, message string, parent fyne.Window) + type ColorPickerDialog struct + Advanced bool + func NewColorPicker(title, message string, callback func(c color.Color), parent fyne.Window) *ColorPickerDialog + func (d ColorPickerDialog) Hide() + func (d ColorPickerDialog) MinSize() fyne.Size + func (d ColorPickerDialog) Resize(size fyne.Size) + func (d ColorPickerDialog) SetDismissText(label string) + func (d ColorPickerDialog) SetOnClosed(closed func()) + func (p *ColorPickerDialog) Refresh() + func (p *ColorPickerDialog) SetColor(c color.Color) + func (p *ColorPickerDialog) Show() + type ConfirmDialog struct + func NewConfirm(title, message string, callback func(bool), parent fyne.Window) *ConfirmDialog + func NewCustomConfirm(title, confirm, dismiss string, content fyne.CanvasObject, callback func(bool), ...) *ConfirmDialog + func (d *ConfirmDialog) SetConfirmImportance(importance widget.Importance) + func (d *ConfirmDialog) SetConfirmText(label string) + func (d ConfirmDialog) Hide() + func (d ConfirmDialog) MinSize() fyne.Size + func (d ConfirmDialog) Refresh() + func (d ConfirmDialog) Resize(size fyne.Size) + func (d ConfirmDialog) SetDismissText(label string) + func (d ConfirmDialog) SetOnClosed(closed func()) + func (d ConfirmDialog) Show() + type CustomDialog struct + func NewCustom(title, dismiss string, content fyne.CanvasObject, parent fyne.Window) *CustomDialog + func NewCustomWithoutButtons(title string, content fyne.CanvasObject, parent fyne.Window) *CustomDialog + func (d *CustomDialog) SetButtons(buttons []fyne.CanvasObject) + func (d CustomDialog) Hide() + func (d CustomDialog) MinSize() fyne.Size + func (d CustomDialog) Refresh() + func (d CustomDialog) Resize(size fyne.Size) + func (d CustomDialog) SetDismissText(label string) + func (d CustomDialog) SetOnClosed(closed func()) + func (d CustomDialog) Show() + type Dialog interface + Hide func() + MinSize func() fyne.Size + Refresh func() + Resize func(size fyne.Size) + SetDismissText func(label string) + SetOnClosed func(closed func()) + Show func() + func NewError(err error, parent fyne.Window) Dialog + func NewInformation(title, message string, parent fyne.Window) Dialog + type EntryDialog struct + func NewEntryDialog(title, message string, onConfirm func(string), parent fyne.Window) *EntryDialog + func (d EntryDialog) Hide() + func (d EntryDialog) MinSize() fyne.Size + func (d EntryDialog) Refresh() + func (d EntryDialog) Resize(size fyne.Size) + func (d EntryDialog) SetDismissText(label string) + func (d EntryDialog) Show() + func (i *EntryDialog) SetOnClosed(callback func()) + func (i *EntryDialog) SetPlaceholder(s string) + func (i *EntryDialog) SetText(s string) + type FileDialog struct + func NewFileOpen(callback func(fyne.URIReadCloser, error), parent fyne.Window) *FileDialog + func NewFileSave(callback func(fyne.URIWriteCloser, error), parent fyne.Window) *FileDialog + func NewFolderOpen(callback func(fyne.ListableURI, error), parent fyne.Window) *FileDialog + func (f *FileDialog) Hide() + func (f *FileDialog) MinSize() fyne.Size + func (f *FileDialog) Refresh() + func (f *FileDialog) Resize(size fyne.Size) + func (f *FileDialog) SetConfirmText(label string) + func (f *FileDialog) SetDismissText(label string) + func (f *FileDialog) SetFileName(fileName string) + func (f *FileDialog) SetFilter(filter storage.FileFilter) + func (f *FileDialog) SetLocation(u fyne.ListableURI) + func (f *FileDialog) SetOnClosed(closed func()) + func (f *FileDialog) Show() + type FormDialog struct + func NewForm(title, confirm, dismiss string, items []*widget.FormItem, callback func(bool), ...) *FormDialog + func (d *FormDialog) Submit() + func (d FormDialog) Hide() + func (d FormDialog) MinSize() fyne.Size + func (d FormDialog) Refresh() + func (d FormDialog) Resize(size fyne.Size) + func (d FormDialog) SetDismissText(label string) + func (d FormDialog) SetOnClosed(closed func()) + func (d FormDialog) Show() + type ProgressDialog struct + func NewProgress(title, message string, parent fyne.Window) *ProgressDialog + func (d ProgressDialog) Hide() + func (d ProgressDialog) MinSize() fyne.Size + func (d ProgressDialog) Refresh() + func (d ProgressDialog) Resize(size fyne.Size) + func (d ProgressDialog) SetDismissText(label string) + func (d ProgressDialog) SetOnClosed(closed func()) + func (d ProgressDialog) Show() + func (p *ProgressDialog) SetValue(v float64) + type ProgressInfiniteDialog struct + func NewProgressInfinite(title, message string, parent fyne.Window) *ProgressInfiniteDialog + func (d *ProgressInfiniteDialog) Hide() + func (d ProgressInfiniteDialog) MinSize() fyne.Size + func (d ProgressInfiniteDialog) Refresh() + func (d ProgressInfiniteDialog) Resize(size fyne.Size) + func (d ProgressInfiniteDialog) SetDismissText(label string) + func (d ProgressInfiniteDialog) SetOnClosed(closed func()) + func (d ProgressInfiniteDialog) Show()