Class FileChooserNative
- All Implemented Interfaces:
FileChooser,Proxy
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
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 FileChooserDialog documentation.
Response Codes
GtkFileChooserNative inherits from NativeDialog,
which means it will return ResponseType.ACCEPT if the user accepted,
and ResponseType.CANCEL if he pressed cancel. It can also return
ResponseType.DELETE_EVENT if the window was unexpectedly closed.
Differences from GtkFileChooserDialog
There are a few things in the 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
FileFilteradded 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.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classFileChooserNative.Builder<B extends FileChooserNative.Builder<B>>Deprecated.Inner class implementing a builder pattern to construct a GObject with properties.static classDeprecated.Nested classes/interfaces inherited from class org.gnome.gtk.NativeDialog
NativeDialog.NativeDialog$Impl, NativeDialog.NativeDialogClass, NativeDialog.ResponseCallbackNested classes/interfaces inherited from class org.gnome.gobject.GObject
GObject.NotifyCallback, GObject.ObjectClassNested classes/interfaces inherited from interface org.gnome.gtk.FileChooser
FileChooser.FileChooser$Impl -
Constructor Summary
ConstructorsConstructorDescriptionDeprecated.Creates a new FileChooserNative.FileChooserNative(@Nullable String title, @Nullable Window parent, FileChooserAction action, @Nullable String acceptLabel, @Nullable String cancelLabel) Deprecated.UseFileDialoginsteadFileChooserNative(MemorySegment address) Deprecated.Create a FileChooserNative proxy instance for the provided memory address. -
Method Summary
Modifier and TypeMethodDescriptionprotected FileChooserNativeasParent()Deprecated.Returns this instance as if it were its parent type.static FileChooserNative.Builder<? extends FileChooserNative.Builder> builder()Deprecated.AFileChooserNative.Builderobject constructs aFileChooserNativewith the specified properties.@Nullable StringDeprecated.UseFileDialoginstead@Nullable StringDeprecated.UseFileDialoginsteadstatic @Nullable TypegetType()Deprecated.Get the GType of the FileChooserNative classvoidsetAcceptLabel(@Nullable String acceptLabel) Deprecated.UseFileDialoginsteadvoidsetCancelLabel(@Nullable String cancelLabel) Deprecated.UseFileDialoginsteadMethods inherited from class org.gnome.gtk.NativeDialog
destroy, emitResponse, getMemoryLayout, getModal, getTitle, getTransientFor, getVisible, hide, onResponse, response, setModal, setTitle, setTransientFor, showMethods inherited from class org.gnome.gobject.GObject
addToggleRef, addWeakPointer, bindProperty, bindProperty, bindProperty, bindPropertyFull, bindPropertyFull, bindPropertyWithClosures, bindPropertyWithClosures, compatControl, connect, connect, connect, constructed, disconnect, dispatchPropertiesChanged, dispose, dupData, dupQdata, emit, emitNotify, finalize_, forceFloating, freezeNotify, get, getData, getProperty, getProperty, getProperty, getQdata, getv, interfaceFindProperty, interfaceInstallProperty, interfaceListProperties, isFloating, newInstance, newInstance, newv, notify, notify, notifyByPspec, onNotify, ref, refSink, removeToggleRef, removeWeakPointer, replaceData, replaceQdata, runDispose, set, setData, setDataFull, setProperty, setProperty, setProperty, setQdata, setQdataFull, setv, stealData, stealQdata, takeRef, thawNotify, unref, watchClosure, weakRef, weakUnref, withPropertiesMethods inherited from class org.gnome.gobject.TypeInstance
callParent, callParent, cast, getPrivate, readGClass, writeGClassMethods inherited from class org.javagi.base.ProxyInstance
equals, handle, hashCodeMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.gnome.gtk.FileChooser
addChoice, addFilter, addShortcutFolder, getAction, getChoice, getCreateFolders, getCurrentFolder, getCurrentName, getFile, getFiles, getFilter, getFilters, getSelectMultiple, getShortcutFolders, removeChoice, removeFilter, removeShortcutFolder, setAction, setChoice, setCreateFolders, setCurrentFolder, setCurrentName, setFile, setFilter, setSelectMultiple
-
Constructor Details
-
FileChooserNative
Deprecated.Create a FileChooserNative proxy instance for the provided memory address.- Parameters:
address- the memory address of the native object
-
FileChooserNative
@Deprecated public FileChooserNative(@Nullable String title, @Nullable Window parent, FileChooserAction action, @Nullable String acceptLabel, @Nullable String cancelLabel) Deprecated.UseFileDialoginsteadCreates a newGtkFileChooserNative.- Parameters:
title- Title of the nativeparent- Transient parent of the nativeaction- Open or save mode for the dialogacceptLabel- text to go in the accept button, ornullfor the defaultcancelLabel- text to go in the cancel button, ornullfor the default
-
FileChooserNative
public FileChooserNative()Deprecated.Creates a new FileChooserNative.
-
-
Method Details
-
getType
Deprecated.Get the GType of the FileChooserNative class- Returns:
- the GType
-
asParent
Deprecated.Returns this instance as if it were its parent type. This is mostly synonymous to the Javasuperkeyword, but will set the native typeclass function pointers to the parent type. When overriding a native virtual method in Java, "chaining up" withsuper.methodName()doesn't work, because it invokes the overridden function pointer again. To chain up, callasParent().methodName(). This will call the native function pointer of this virtual method in the typeclass of the parent type.- Overrides:
asParentin classNativeDialog
-
getAcceptLabel
Deprecated.UseFileDialoginsteadRetrieves the custom label text for the accept button.- Returns:
- The custom label
-
getCancelLabel
Deprecated.UseFileDialoginsteadRetrieves the custom label text for the cancel button.- Returns:
- The custom label
-
setAcceptLabel
Deprecated.UseFileDialoginsteadSets the custom label text for the accept button.If characters in
labelare 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.
- Parameters:
acceptLabel- custom label
-
setCancelLabel
Deprecated.UseFileDialoginsteadSets the custom label text for the cancel button.If characters in
labelare 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.
- Parameters:
cancelLabel- custom label
-
builder
Deprecated.AFileChooserNative.Builderobject constructs aFileChooserNativewith the specified properties. Use the variousset...()methods to set properties, and finish construction withFileChooserNative.Builder.build().- Returns:
- the builder object
-
FileDialoginstead