Package: gtk
Class gtk:file-chooser-native
SuperclassesDocumented Subclasses
None
Direct SlotsDetails The gtk:file-chooser-native widget is an abstraction of a dialog box
suitable for use with "File/Open" or "File/Save as" commands. By default, this just uses a gtk:file-chooser-dialog widget to
implement the actual dialog. However, on certain platforms, such as Windows
and macOS, the native platform file chooser is used instead. When the
application is running in a sandboxed environment without direct filesystem access (such as Flatpak), the gtk:file-chooser-native widget may call
the proper APIs (portals) to let the user choose a file and make it available
to the application. While the API of gtk:file-chooser-native widget closely mirrors the gtk:file-chooser-dialog widget, the main difference is that there is no access to any gtk:window or gtk:widget widget for the dialog. This is required, as there may not be one in the case of a platform native dialog. Showing, hiding and running the dialog is handled by the gtk:native-dialog functions. Typical usageIn the simplest of cases, you can the following code to use the gtk:file-chooser-dialog widget to select a file for opening:GtkFileChooserNative *native; GtkFileChooserAction action = GTK_FILE_CHOOSER_ACTION_OPEN; gint res;To use a dialog for saving, you can use this: GtkFileChooserNative *native; GtkFileChooser *chooser; GtkFileChooserAction action = GTK_FILE_CHOOSER_ACTION_SAVE; gint res;For more information on how to best set up a file dialog, see the gtk:file-chooser-dialog documentation. Response CodesThe gtk:file-chooser-native widget inherits from the gtk:native-dialog class, which means it will return :accept if the user accepted, and :cancel if he pressed Cancel. It can also return :delete-event if the window was unexpectedly closed.Differences from GtkFileChooserDialogThere are a few things in the gtk:file-chooser API that are not possible to use with the gtk:file-chooser-native widget, as such use would prohibit the use of a native dialog.There is no support for the signals that are emitted when the user navigates in the dialog, including:
No operations that change the dialog work while the dialog is visible. Set all the properties that are required before showing the dialog. Win32 detailsOn windows the IFileDialog implementation (added in Windows Vista) is used. It supports many of the features that the gtk:file-chooser-dialog widget does, but there are some things it does not handle:
Portal detailsWhen the org.freedesktop.portal.FileChooser portal is available on the session bus, it is used to bring up an out-of-process file chooser. Depending on the kind of session the application is running in, this may or may not be a GTK file chooser. In this situation, the following things are not supported and will be silently ignored:
macOS detailsOn macOS the NSSavePanel and NSOpenPanel classes are used to provide native file chooser dialogs. Some features provided by the gtk:file-chooser-dialog widget are not supported:
| Returned bySlot Access FunctionsInherited Slot Access FunctionsSee also |
#2023-6-12