├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── LICENSE ├── README.md ├── docs ├── build.md └── contributing.md ├── screens ├── open_cocoa.png ├── open_gtk3.png └── open_win.png ├── src ├── common.h ├── include │ └── nfd.h ├── nfd_cocoa.m ├── nfd_common.c ├── nfd_common.h ├── nfd_gtk.c ├── nfd_win.cpp ├── nfd_zenity.c └── simple_exec.h └── test ├── test_opendialog.c ├── test_opendialogmultiple.c ├── test_pickfolder.c └── test_savedialog.c /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabbe/nativefiledialog/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabbe/nativefiledialog/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabbe/nativefiledialog/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabbe/nativefiledialog/HEAD/README.md -------------------------------------------------------------------------------- /docs/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabbe/nativefiledialog/HEAD/docs/build.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabbe/nativefiledialog/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /screens/open_cocoa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabbe/nativefiledialog/HEAD/screens/open_cocoa.png -------------------------------------------------------------------------------- /screens/open_gtk3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabbe/nativefiledialog/HEAD/screens/open_gtk3.png -------------------------------------------------------------------------------- /screens/open_win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabbe/nativefiledialog/HEAD/screens/open_win.png -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabbe/nativefiledialog/HEAD/src/common.h -------------------------------------------------------------------------------- /src/include/nfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabbe/nativefiledialog/HEAD/src/include/nfd.h -------------------------------------------------------------------------------- /src/nfd_cocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabbe/nativefiledialog/HEAD/src/nfd_cocoa.m -------------------------------------------------------------------------------- /src/nfd_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabbe/nativefiledialog/HEAD/src/nfd_common.c -------------------------------------------------------------------------------- /src/nfd_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabbe/nativefiledialog/HEAD/src/nfd_common.h -------------------------------------------------------------------------------- /src/nfd_gtk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabbe/nativefiledialog/HEAD/src/nfd_gtk.c -------------------------------------------------------------------------------- /src/nfd_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabbe/nativefiledialog/HEAD/src/nfd_win.cpp -------------------------------------------------------------------------------- /src/nfd_zenity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabbe/nativefiledialog/HEAD/src/nfd_zenity.c -------------------------------------------------------------------------------- /src/simple_exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabbe/nativefiledialog/HEAD/src/simple_exec.h -------------------------------------------------------------------------------- /test/test_opendialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabbe/nativefiledialog/HEAD/test/test_opendialog.c -------------------------------------------------------------------------------- /test/test_opendialogmultiple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabbe/nativefiledialog/HEAD/test/test_opendialogmultiple.c -------------------------------------------------------------------------------- /test/test_pickfolder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabbe/nativefiledialog/HEAD/test/test_pickfolder.c -------------------------------------------------------------------------------- /test/test_savedialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabbe/nativefiledialog/HEAD/test/test_savedialog.c --------------------------------------------------------------------------------