Gtk.FileDialog¶
- Subclasses:
None
Methods¶
- Inherited:
- Structs:
class |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Virtual Methods¶
- Inherited:
Properties¶
Name |
Type |
Flags |
Short Description |
---|---|---|---|
r/w/en |
|||
r/w/en |
|||
r/w/en |
|||
r/w/en |
|||
r/w/en |
|||
r/w/en |
|||
r/w/en |
|||
r/w/en |
Signals¶
- Inherited:
Fields¶
- Inherited:
Class Details¶
- class Gtk.FileDialog(**kwargs)¶
- Bases:
- Abstract:
No
- Structure:
Asynchronous API to present a file chooser dialog.
GtkFileDialog
collects the arguments that are needed to present the dialog to the user, such as a title for the dialog and whether it should be modal.The dialog is shown with [method`Gtk`.FileDialog.open], [method`Gtk`.FileDialog.save], etc.
New in version 4.10.
- classmethod new()[source]¶
- Returns:
the new
GtkFileDialog
- Return type:
Creates a new
GtkFileDialog
object.New in version 4.10.
- get_accept_label()[source]¶
-
Retrieves the text used by the dialog on its accept button.
New in version 4.10.
- get_default_filter()[source]¶
- Returns:
the default filter
- Return type:
Gets the filter that will be selected by default in the file chooser dialog.
New in version 4.10.
- get_filters()[source]¶
- Returns:
the filters, as a list model of [class`Gtk`.FileFilter]
- Return type:
Gets the filters that will be offered to the user in the file chooser dialog.
New in version 4.10.
- get_initial_file()[source]¶
-
Gets the file that will be initially selected in the file chooser dialog.
New in version 4.10.
- get_initial_folder()[source]¶
-
Gets the folder that will be set as the initial folder in the file chooser dialog.
New in version 4.10.
- get_modal()[source]¶
- Returns:
true if the file chooser dialog is modal
- Return type:
Returns whether the file chooser dialog blocks interaction with the parent window while it is presented.
New in version 4.10.
- get_title()[source]¶
- Returns:
the title
- Return type:
Returns the title that will be shown on the file chooser dialog.
New in version 4.10.
- open(parent, cancellable, callback, *user_data)[source]¶
- Parameters:
parent (
Gtk.Window
orNone
) – the parent windowcancellable (
Gio.Cancellable
orNone
) – a cancellable to cancel the operationcallback (
Gio.AsyncReadyCallback
orNone
) – a callback to call when the operation is complete
Presents a file chooser dialog to the user.
The file chooser dialog will be set up to select a single file.
The callback will be called when the dialog is dismissed.
New in version 4.10.
- open_finish(result)[source]¶
- Parameters:
result (
Gio.AsyncResult
) – the result- Raises:
- Returns:
the file that was selected
- Return type:
Finishes the [method`Gtk`.FileDialog.open] call.
New in version 4.10.
- open_multiple(parent, cancellable, callback, *user_data)[source]¶
- Parameters:
parent (
Gtk.Window
orNone
) – the parent windowcancellable (
Gio.Cancellable
orNone
) – a cancellable to cancel the operationcallback (
Gio.AsyncReadyCallback
orNone
) – a callback to call when the operation is complete
Presents a file chooser dialog to the user.
The file chooser dialog will be set up to select multiple files.
The file chooser dialog will initially be opened in the directory [property`Gtk`.FileDialog:initial-folder].
The callback will be called when the dialog is dismissed.
New in version 4.10.
- open_multiple_finish(result)[source]¶
- Parameters:
result (
Gio.AsyncResult
) – the result- Raises:
- Returns:
the files that were selected, as a list model of [iface`Gio`.File]
- Return type:
Finishes the [method`Gtk`.FileDialog.open] call.
New in version 4.10.
- open_multiple_text_files(parent, cancellable, callback, *user_data)[source]¶
- Parameters:
parent (
Gtk.Window
orNone
) – the parent windowcancellable (
Gio.Cancellable
orNone
) – a cancellable to cancel the operationcallback (
Gio.AsyncReadyCallback
orNone
) – a callback to call when the operation is complete
Presents a file chooser dialog to the user.
The file chooser dialog will be set up to select multiple files.
The file chooser dialog will initially be opened in the directory [property`Gtk`.FileDialog:initial-folder].
In contrast to [method`Gtk`.FileDialog.open], this function lets the user select the text encoding for the files, if possible.
The callback will be called when the dialog is dismissed.
New in version 4.18.
- open_multiple_text_files_finish(result)[source]¶
- Parameters:
result (
Gio.AsyncResult
) – the result- Raises:
- Returns:
the files that were selected, as a list model of [iface`Gio`.File]
- encoding:
return location for the text encoding to use
- Return type:
(
Gio.ListModel
orNone
, encoding:str
)
Finishes the [method`Gtk`.FileDialog.open] call.
New in version 4.18.
- open_text_file(parent, cancellable, callback, *user_data)[source]¶
- Parameters:
parent (
Gtk.Window
orNone
) – the parentGtkWindow
cancellable (
Gio.Cancellable
orNone
) – aGCancellable
to cancel the operationcallback (
Gio.AsyncReadyCallback
orNone
) – a callback to call when the operation is complete
Initiates a file selection operation by presenting a file chooser dialog to the user.
In contrast to [method`Gtk`.FileDialog.open], this function lets the user select the text encoding for the file, if possible.
The callback will be called when the dialog is dismissed.
New in version 4.18.
- open_text_file_finish(result)[source]¶
- Parameters:
result (
Gio.AsyncResult
) – aGAsyncResult
- Raises:
- Returns:
the file that was selected
- encoding:
return location for the text encoding to use
- Return type:
Finishes the [method`Gtk`.FileDialog.open_text_file] call and returns the resulting file and text encoding.
If the user has explicitly selected a text encoding to use for the file, then encoding will be set to a codeset name that is suitable for passing to iconv_open(). Otherwise, it will be
NULL
.New in version 4.18.
- save(parent, cancellable, callback, *user_data)[source]¶
- Parameters:
parent (
Gtk.Window
orNone
) – the parent windowcancellable (
Gio.Cancellable
orNone
) – a cancellable to cancel the operationcallback (
Gio.AsyncReadyCallback
orNone
) – a callback to call when the operation is complete
Presents a file chooser dialog to the user.
The file chooser dialog will be save mode.
The callback will be called when the dialog is dismissed.
New in version 4.10.
- save_finish(result)[source]¶
- Parameters:
result (
Gio.AsyncResult
) – the result- Raises:
- Returns:
the file that was selected
- Return type:
Finishes the [method`Gtk`.FileDialog.save] call.
New in version 4.10.
- save_text_file(parent, cancellable, callback, *user_data)[source]¶
- Parameters:
parent (
Gtk.Window
orNone
) – the parentGtkWindow
cancellable (
Gio.Cancellable
orNone
) – aGCancellable
to cancel the operationcallback (
Gio.AsyncReadyCallback
orNone
) – a callback to call when the operation is complete
Initiates a file save operation by presenting a file chooser dialog to the user.
In contrast to [method`Gtk`.FileDialog.save], this function lets the user select the text encoding and line endings for the text file, if possible.
The callback will be called when the dialog is dismissed.
New in version 4.18.
- save_text_file_finish(result)[source]¶
- Parameters:
result (
Gio.AsyncResult
) – aGAsyncResult
- Raises:
- Returns:
the file that was selected. Otherwise,
NULL
is returned and error is set- encoding:
return location for the text encoding to use
- line_ending:
return location for the line endings to use
- Return type:
Finishes the [method`Gtk`.FileDialog.save_text_file] call and returns the resulting file, text encoding and line endings.
If the user has explicitly selected a text encoding to use for the file, then encoding will be set to a codeset name that is suitable for passing to iconv_open(). Otherwise, it will be
NULL
.The line_ending will be set to one of “\n”, “\r\n”, “\r” or “”, where the latter means to preserve existing line endings.
New in version 4.18.
- select_folder(parent, cancellable, callback, *user_data)[source]¶
- Parameters:
parent (
Gtk.Window
orNone
) – the parent windowcancellable (
Gio.Cancellable
orNone
) – a cancellable to cancel the operationcallback (
Gio.AsyncReadyCallback
orNone
) – a callback to call when the operation is complete
Presents a file chooser dialog to the user.
The file chooser dialog will be set up to select a single folder.
If you pass initial_folder, the file chooser dialog will initially be opened in the parent directory of that folder, otherwise, it will be in the directory [property`Gtk`.FileDialog:initial-folder].
The callback will be called when the dialog is dismissed.
New in version 4.10.
- select_folder_finish(result)[source]¶
- Parameters:
result (
Gio.AsyncResult
) – the result- Raises:
- Returns:
the folder that was selected
- Return type:
Finishes the [method`Gtk`.FileDialog.select_folder] call.
New in version 4.10.
- select_multiple_folders(parent, cancellable, callback, *user_data)[source]¶
- Parameters:
parent (
Gtk.Window
orNone
) – the parent windowcancellable (
Gio.Cancellable
orNone
) – a cancellable to cancel the operationcallback (
Gio.AsyncReadyCallback
orNone
) – a callback to call when the operation is complete
Presents a file chooser dialog to the user.
The file chooser dialog will be set up to allow selecting multiple folders.
The file chooser dialog will initially be opened in the directory [property`Gtk`.FileDialog:initial-folder].
The callback will be called when the dialog is dismissed.
New in version 4.10.
- select_multiple_folders_finish(result)[source]¶
- Parameters:
result (
Gio.AsyncResult
) – the result- Raises:
- Returns:
the folders that were selected, as a list model of [iface`Gio`.File]
- Return type:
Finishes the [method`Gtk`.FileDialog.select_multiple_folders] call.
New in version 4.10.
- set_accept_label(accept_label)[source]¶
-
Sets the label shown on the file chooser’s accept button.
Leaving the accept label unset or setting it as
NULL
will fall back to a default label, depending on what API is used to launch the file dialog.New in version 4.10.
- set_default_filter(filter)[source]¶
- Parameters:
filter (
Gtk.FileFilter
orNone
) – the file filter
Sets the filter that will be selected by default in the file chooser dialog.
If set to
NULL
, the first item in [property`Gtk`.FileDialog:filters] will be used as the default filter. If that list is empty, the dialog will be unfiltered.New in version 4.10.
- set_filters(filters)[source]¶
- Parameters:
filters (
Gio.ListModel
orNone
) – a list model of [class`Gtk`.FileFilter]
Sets the filters that will be offered to the user in the file chooser dialog.
New in version 4.10.
- set_initial_file(file)[source]¶
-
Sets the file that will be initially selected in the file chooser dialog.
This function is a shortcut for calling both [method`Gtk`.FileDialog.set_initial_folder] and [method`Gtk`.FileDialog.set_initial_name] with the directory and name of file, respectively.
New in version 4.10.
- set_initial_folder(folder)[source]¶
-
Sets the folder that will be set as the initial folder in the file chooser dialog.
New in version 4.10.
- set_initial_name(name)[source]¶
-
Sets the filename that will be initially selected.
For save dialogs, name will usually be pre-entered into the name field.
If a file with this name already exists in the directory set via [property`Gtk`.FileDialog:initial-folder], the dialog will preselect it.
New in version 4.10.
Property Details¶
- Gtk.FileDialog.props.accept_label¶
- Name:
accept-label
- Type:
- Default Value:
- Flags:
Label for the file chooser’s accept button.
New in version 4.10.
- Gtk.FileDialog.props.default_filter¶
- Name:
default-filter
- Type:
- Default Value:
- Flags:
The default filter.
This filter is initially active in the file chooser dialog.
If the default filter is
NULL
, the first filter of [property`Gtk`.FileDialog:filters] is used as the default filter. If that property contains no filter, the dialog will be unfiltered.If [property`Gtk`.FileDialog:filters] is not
NULL
, the default filter should be part of the list. If it is not, the dialog may choose to not make it available.New in version 4.10.
- Gtk.FileDialog.props.filters¶
- Name:
filters
- Type:
- Default Value:
- Flags:
The list of filters.
See [property`Gtk`.FileDialog:default-filter] about how these two properties interact.
New in version 4.10.
- Gtk.FileDialog.props.initial_file¶
- Name:
initial-file
- Type:
- Default Value:
- Flags:
The initial file.
This file is initially selected in the file chooser dialog
This is a utility property that sets both [property`Gtk`.FileDialog:initial-folder] and [property`Gtk`.FileDialog:initial-name].
New in version 4.10.
- Gtk.FileDialog.props.initial_folder¶
- Name:
initial-folder
- Type:
- Default Value:
- Flags:
The initial folder.
This is the directory that is initially opened in the file chooser dialog.
New in version 4.10.
- Gtk.FileDialog.props.initial_name¶
- Name:
initial-name
- Type:
- Default Value:
- Flags:
The initial name.
This is the name of the file that is initially selected in the file chooser dialog.
New in version 4.10.
- Gtk.FileDialog.props.modal¶
- Name:
modal
- Type:
- Default Value:
- Flags:
Whether the file chooser dialog is modal.
New in version 4.10.