dialog
dialog copied to clipboard
Simple cross-platform dialog API for go-lang
I want to be able to select multiple files, but currently, I can only select one. I am using Windows 10-64bit. Thanks a lot.
Hello, While building app on macos I get warnings specified below: `# github.com/sqweek/dialog/cocoa dlg.m:96:10: warning: 'setAllowedFileTypes:' is deprecated: first deprecated in macOS 12.0 - Use -allowedContentTypes instead [-Wdeprecated-declarations] /Library/Developer/CommandLineTools/SDKs/MacOSX12.1.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSavePanel.h:215:49: note:...
I'm making GUI application with [Gio](https://gioui.org/) that uses GTK on linux, and application crashes on start (it's building well, breakes in `dialog.init()`) Stderr (projectName:16641): Gtk-ERROR **: 18:56:14.917: GTK+ 2.x symbols...
Hi, thanks for your work :) is it possible to set a default location for a dialog?
Hi there, (referring to https://github.com/OpenDiablo2/HellSpawner/issues/216) **To Reproduce** - run a following code: ```golang func main() { for { dialog.Message("%s", "Please select a file").Titl time.Sleep(1 * time.Second) } } ``` -...
Hello, we cross built our application to macos, windows and linux. Sadly on Linux the above error gets shown on ``dialog.File().Load()``. Whole error: ``` (surge-0.2.0-beta:2482): Gdk-ERROR **: 17:38:42.516: The program...
MacOS version. 10.14.2 ```` func fileRead() { filename, err := dialog.File().Filter("pdf file", "pdf").Load() if err != nil { panic(err) } fmt.Println(filename) // now read from that file name ... }...
There are some OS's which it shows on top but in some cases, the dialog appears minimized.
A good flavor from e.g. the Qt universe is to display dialog messages in a scroll area with selectable text. It makes it much easier for users to report problems...