FileChooserNativeProtocol
public protocol FileChooserNativeProtocol : FileChooserProtocol, NativeDialogProtocol
GtkFileChooserNative
is an abstraction of a dialog suitable
for use with “File Open” or “File Save as” commands.
By default, this just uses a GtkFileChooserDialog
to implement
the actual dialog. However, on some 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), GtkFileChooserNative
may call
the proper APIs (portals) to let the user choose a file and make it
available to the application.
While the API of GtkFileChooserNative
closely mirrors GtkFileChooserDialog
,
the main difference is that there is no access to any GtkWindow
or GtkWidget
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
[classGtk.NativeDialog
] functions.
Note that unlike GtkFileChooserDialog
, GtkFileChooserNative
objects
are not toplevel widgets, and GTK does not keep them alive. It is your
responsibility to keep a reference until you are done with the
object.
Typical usage
In the simplest of cases, you can the following code to use
GtkFileChooserNative
to select a file for opening:
static void
on_response (GtkNativeDialog *native,
int response)
{
if (response == GTK_RESPONSE_ACCEPT)
{
GtkFileChooser *chooser = GTK_FILE_CHOOSER (native);
GFile *file = gtk_file_chooser_get_file (chooser);
open_file (file);
g_object_unref (file);
}
g_object_unref (native);
}
// ...
GtkFileChooserNative *native;
GtkFileChooserAction action = GTK_FILE_CHOOSER_ACTION_OPEN;
native = gtk_file_chooser_native_new ("Open File",
parent_window,
action,
"_Open",
"_Cancel");
g_signal_connect (native, "response", G_CALLBACK (on_response), NULL);
gtk_native_dialog_show (GTK_NATIVE_DIALOG (native));
To use a GtkFileChooserNative
for saving, you can use this:
static void
on_response (GtkNativeDialog *native,
int response)
{
if (response == GTK_RESPONSE_ACCEPT)
{
GtkFileChooser *chooser = GTK_FILE_CHOOSER (native);
GFile *file = gtk_file_chooser_get_file (chooser);
save_to_file (file);
g_object_unref (file);
}
g_object_unref (native);
}
// ...
GtkFileChooserNative *native;
GtkFileChooser *chooser;
GtkFileChooserAction action = GTK_FILE_CHOOSER_ACTION_SAVE;
native = gtk_file_chooser_native_new ("Save File",
parent_window,
action,
"_Save",
"_Cancel");
chooser = GTK_FILE_CHOOSER (native);
if (user_edited_a_new_document)
gtk_file_chooser_set_current_name (chooser, `_("Untitled document")`);
else
gtk_file_chooser_set_file (chooser, existing_file, NULL);
g_signal_connect (native, "response", G_CALLBACK (on_response), NULL);
gtk_native_dialog_show (GTK_NATIVE_DIALOG (native));
For more information on how to best set up a file dialog,
see the [classGtk.FileChooserDialog
] documentation.
Response Codes
GtkFileChooserNative
inherits from [classGtk.NativeDialog
],
which means it will return GTK_RESPONSE_ACCEPT
if the user accepted,
and GTK_RESPONSE_CANCEL
if he pressed cancel. It can also return
GTK_RESPONSE_DELETE_EVENT
if the window was unexpectedly closed.
Differences from GtkFileChooserDialog
There are a few things in the [ifaceGtk.FileChooser
] interface that
are not possible to use with GtkFileChooserNative
, as such use would
prohibit the use of a native dialog.
No operations that change the dialog work while the dialog is visible. Set all the properties that are required before showing the dialog.
Win32 details
On windows the IFileDialog
implementation (added in Windows Vista) is
used. It supports many of the features that GtkFileChooser
has, but
there are some things it does not handle:
- Any [class
Gtk.FileFilter
] added using a mimetype
If any of these features are used the regular GtkFileChooserDialog
will be used in place of the native one.
Portal details
When 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.
macOS details
On macOS the NSSavePanel
and NSOpenPanel
classes are used to provide
native file chooser dialogs. Some features provided by GtkFileChooser
are not supported:
- Shortcut folders.
The FileChooserNativeProtocol
protocol exposes the methods and properties of an underlying GtkFileChooserNative
instance.
The default implementation of these can be found in the protocol extension below.
For a concrete class that implements these methods and properties, see FileChooserNative
.
Alternatively, use FileChooserNativeRef
as a lighweight, unowned
reference if you already have an instance you just want to use.
-
Untyped pointer to the underlying
GtkFileChooserNative
instance.Declaration
Swift
var ptr: UnsafeMutableRawPointer! { get }
-
file_chooser_native_ptr
Default implementationTyped pointer to the underlying
GtkFileChooserNative
instance.Default Implementation
Return the stored, untyped pointer as a typed pointer to the
GtkFileChooserNative
instance.Declaration
Swift
var file_chooser_native_ptr: UnsafeMutablePointer<GtkFileChooserNative>! { get }
-
Required Initialiser for types conforming to
FileChooserNativeProtocol
Declaration
Swift
init(raw: UnsafeMutableRawPointer)
-
bind(property:
Extension methodto: _: flags: transformFrom: transformTo: ) Bind a
FileChooserNativePropertyName
source property to a given target object.Declaration
Swift
@discardableResult @inlinable func bind<Q, T>(property source_property: FileChooserNativePropertyName, to target: T, _ target_property: Q, flags f: BindingFlags = .default, transformFrom transform_from: @escaping GLibObject.ValueTransformer = { $0.transform(destValue: $1) }, transformTo transform_to: @escaping GLibObject.ValueTransformer = { $0.transform(destValue: $1) }) -> BindingRef! where Q : PropertyNameProtocol, T : ObjectProtocol
Parameters
source_property
the source property to bind
target
the target object to bind to
target_property
the target property to bind to
flags
the flags to pass to the
Binding
transform_from
ValueTransformer
to use for forward transformationtransform_to
ValueTransformer
to use for backwards transformationReturn Value
binding reference or
nil
in case of an error -
get(property:
Extension method) Get the value of a FileChooserNative property
Declaration
Swift
@inlinable func get(property: FileChooserNativePropertyName) -> GLibObject.Value
Parameters
property
the property to get the value for
Return Value
the value of the named property
-
set(property:
Extension methodvalue: ) Set the value of a FileChooserNative property. Note that this will only have an effect on properties that are writable and not construct-only!
Declaration
Swift
@inlinable func set(property: FileChooserNativePropertyName, value v: GLibObject.Value)
Parameters
property
the property to get the value for
Return Value
the value of the named property
-
getAcceptLabel()
Extension methodRetrieves the custom label text for the accept button.
Declaration
Swift
@inlinable func getAcceptLabel() -> String!
-
getCancelLabel()
Extension methodRetrieves the custom label text for the cancel button.
Declaration
Swift
@inlinable func getCancelLabel() -> String!
-
set(acceptLabel:
Extension method) Sets the custom label text for the accept button.
If characters in
label
are preceded by an underscore, they are underlined. If you need a literal underscore character in a label, use “__” (two underscores). The first underlined character represents a keyboard accelerator called a mnemonic.Pressing Alt and that key should activate the button.
Declaration
Swift
@inlinable func set(acceptLabel: UnsafePointer<CChar>? = nil)
-
set(cancelLabel:
Extension method) Sets the custom label text for the cancel button.
If characters in
label
are preceded by an underscore, they are underlined. If you need a literal underscore character in a label, use “__” (two underscores). The first underlined character represents a keyboard accelerator called a mnemonic.Pressing Alt and that key should activate the button.
Declaration
Swift
@inlinable func set(cancelLabel: UnsafePointer<CChar>? = nil)
-
acceptLabel
Extension methodRetrieves the custom label text for the accept button.
Declaration
Swift
@inlinable var acceptLabel: String! { get nonmutating set }
-
cancelLabel
Extension methodRetrieves the custom label text for the cancel button.
Declaration
Swift
@inlinable var cancelLabel: String! { get nonmutating set }