GNOME Bugzilla – Bug 650780
Provide native file chooser dialogs
Last modified: 2013-07-24 16:43:35 UTC
Overview: Gtk doesn't provide native file chooser dialogs when used on non-GNOME platforms. Steps to Reproduce: Just use a Gtk+ application from the KDE workspace. Actual results: The application always uses the Gtk+ file chooser dialog. Expected results: The application calls the native file chooser dialog of this platform. Additional Information: This way, Gtk+ would integrate much better to the native style. Technically this should be possible. Qt provides this feature yet, calling the native Gtk+ file dialog when the application runs on GNOME, KDE dialog when it runs on KDE, Windows file dialog when it runs on Windows ... (http://doc.qt.nokia.com/latest/qfiledialog.html#details). This would be a great improvement for cross-platform concerns and make all Gtk+ based applications have better integration to KDE, MS Windows ...
file selection dialogs in gtk+ are not opaque objects that can be swapped without the developers/applications using them knowing. it's not possible to provide the native file selection dialog *and* retain the API necessary to make applications work — unless a *substantial* rework of the file selection dialog and a removal of API happens.
*** Bug 687173 has been marked as a duplicate of this bug. ***
I'd be willing to review a patch that implemented simple, one-shot functions for getting filenames with the native file dialog. They would have implementations for Windows and MacOS, and a default implementation with GtkFileChooserDialog itself. How does Qt implement GTK+ file dialogs? Does it actually link to GTK+, or does it use an external program?
(In reply to comment #3) > I'd be willing to review a patch that implemented simple, one-shot functions > for getting filenames with the native file dialog. They would have > implementations for Windows and MacOS, and a default implementation with > GtkFileChooserDialog itself. > > How does Qt implement GTK+ file dialogs? Does it actually link to GTK+, or > does it use an external program? Qt dynamicly loads functions from libgtk-x11-2.0. IMHO because C++ symbol names are less predictable when C, gtk for such stuff will have to implement a some sort of wrapper library.