nativefiledialog
nativefiledialog copied to clipboard
A tiny, neat C library that portably invokes native file open and save dialogs.
This PR fixes the modal behavior of native file dialogs on Win32. Previously, opening a native file dialog would leave the calling window enabled. This is not how NFD behaves...
Tested against all tests in the `tests` folder on 32-bit MinGW. I tested by building the source files directly instead of using the `Makefile`, so I unfortunately cannot provide an...
**Compilation Environment** - OS (eg: OSX 10.14, Ubuntu 18.04): #1 SMP Debian 5.10.70-1 (2021-09-30) - Compiler (eg: GCC, Clang): gcc - Compiler Version (eg: MSVC 2017): gcc version 10.2.1 20210110...
KDE support
Hi, I'd like to integrate your library in my project but it does not seem to support KDE. It instead uses the Gnome file picker which is a very suboptimal...
Currently, your API does not allow the title of the file dialog to be specified. It seems straightforward to support this, because all of the underlying platform APIs provide an...
**Compilation Environment** - OS: Windows 10 - Compiler: MSVC 2019 - Build directory used: cmake - Have I attempted to reproduce the problem on the `devel` branch? Yes **Describe the...
I've checked the source code and found that NFD_MAX_STRLEN is 256 and maybe used for paths. However, on Linux MAX_PATH is often [4096](https://stackoverflow.com/a/9449307/1204141). But with a 4096 buffer, it is...
The README suggests using GTK+ dialogs requires to link GTK+, which automatically makes a build unusable on Linux systems where it is installed. For greater versatility of the resulting binaries,...
I would eventually like for this to be used as a fallback at runtime when the Vista API is not available (as discussed on #12), but I'm comfortable doing a...
Added a CMakeLists file for anyone using cmake like me.