FileChooserButtonRef
public struct FileChooserButtonRef : FileChooserButtonProtocol, GWeakCapturing
The GtkFileChooserButton
is a widget that lets the user select a
file. It implements the GtkFileChooser
interface. Visually, it is a
file name with a button to bring up a GtkFileChooserDialog
.
The user can then use that dialog to change the file associated with
that button. This widget does not support setting the
GtkFileChooser:select-multiple
property to true
.
Create a button to let the user select a file in /etc
(C Language Example):
{
GtkWidget *button;
button = gtk_file_chooser_button_new (_("Select a file"),
GTK_FILE_CHOOSER_ACTION_OPEN);
gtk_file_chooser_set_current_folder (GTK_FILE_CHOOSER (button),
"/etc");
}
The GtkFileChooserButton
supports the GtkFileChooserActions
GTK_FILE_CHOOSER_ACTION_OPEN
and GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER
.
> The GtkFileChooserButton
will ellipsize the label, and will thus
> request little horizontal space. To give the button more space,
> you should call gtk_widget_get_preferred_size()
,
> gtk_file_chooser_button_set_width_chars()
, or pack the button in
> such a way that other interface elements give space to the
> widget.
CSS nodes
GtkFileChooserButton has a CSS node with name “filechooserbutton”, containing a subnode for the internal button with name “button” and style class “.file”.
The FileChooserButtonRef
type acts as a lightweight Swift reference to an underlying GtkFileChooserButton
instance.
It exposes methods that can operate on this data type through FileChooserButtonProtocol
conformance.
Use FileChooserButtonRef
only as an unowned
reference to an existing GtkFileChooserButton
instance.
-
Untyped pointer to the underlying `GtkFileChooserButton` instance.
For type-safe access, use the generated, typed pointer
file_chooser_button_ptr
property instead.Declaration
Swift
public let ptr: UnsafeMutableRawPointer!
-
Designated initialiser from the underlying
C
data typeDeclaration
Swift
@inlinable init(_ p: UnsafeMutablePointer<GtkFileChooserButton>)
-
Designated initialiser from a constant pointer to the underlying
C
data typeDeclaration
Swift
@inlinable init(_ p: UnsafePointer<GtkFileChooserButton>)
-
Conditional initialiser from an optional pointer to the underlying
C
data typeDeclaration
Swift
@inlinable init!(_ maybePointer: UnsafeMutablePointer<GtkFileChooserButton>?)
-
Conditional initialiser from an optional, non-mutable pointer to the underlying
C
data typeDeclaration
Swift
@inlinable init!(_ maybePointer: UnsafePointer<GtkFileChooserButton>?)
-
Conditional initialiser from an optional
gpointer
Declaration
Swift
@inlinable init!(gpointer g: gpointer?)
-
Conditional initialiser from an optional, non-mutable
gconstpointer
Declaration
Swift
@inlinable init!(gconstpointer g: gconstpointer?)
-
Reference intialiser for a related type that implements
FileChooserButtonProtocol
Declaration
Swift
@inlinable init<T>(_ other: T) where T : FileChooserButtonProtocol
-
This factory is syntactic sugar for setting weak pointers wrapped in
GWeak<T>
Declaration
Swift
@inlinable static func unowned<T>(_ other: T) -> FileChooserButtonRef where T : FileChooserButtonProtocol
-
Unsafe typed initialiser. Do not use unless you know the underlying data type the pointer points to conforms to
FileChooserButtonProtocol
.Declaration
Swift
@inlinable init<T>(cPointer: UnsafeMutablePointer<T>)
-
Unsafe typed initialiser. Do not use unless you know the underlying data type the pointer points to conforms to
FileChooserButtonProtocol
.Declaration
Swift
@inlinable init<T>(constPointer: UnsafePointer<T>)
-
Unsafe untyped initialiser. Do not use unless you know the underlying data type the pointer points to conforms to
FileChooserButtonProtocol
.Declaration
Swift
@inlinable init(mutating raw: UnsafeRawPointer)
-
Unsafe untyped initialiser. Do not use unless you know the underlying data type the pointer points to conforms to
FileChooserButtonProtocol
.Declaration
Swift
@inlinable init(raw: UnsafeMutableRawPointer)
-
Unsafe untyped initialiser. Do not use unless you know the underlying data type the pointer points to conforms to
FileChooserButtonProtocol
.Declaration
Swift
@inlinable init(opaquePointer: OpaquePointer)
-
Creates a new file-selecting button widget.
Declaration
Swift
@inlinable init(title: UnsafePointer<gchar>!, action: GtkFileChooserAction)
-
Creates a
GtkFileChooserButton
widget which usesdialog
as its file-picking window.Note that
dialog
must be aGtkDialog
(or subclass) which implements theGtkFileChooser
interface and must not haveGTK_DIALOG_DESTROY_WITH_PARENT
set.Also note that the dialog needs to have its confirmative button added with response
GTK_RESPONSE_ACCEPT
orGTK_RESPONSE_OK
in order for the button to take over the file selected in the dialog.Declaration
Swift
@inlinable init<DialogT>(dialog: DialogT) where DialogT : DialogProtocol
-
Creates a
GtkFileChooserButton
widget which usesdialog
as its file-picking window.Note that
dialog
must be aGtkDialog
(or subclass) which implements theGtkFileChooser
interface and must not haveGTK_DIALOG_DESTROY_WITH_PARENT
set.Also note that the dialog needs to have its confirmative button added with response
GTK_RESPONSE_ACCEPT
orGTK_RESPONSE_OK
in order for the button to take over the file selected in the dialog.Declaration
Swift
@inlinable static func newWith<DialogT>(dialog: DialogT) -> WidgetRef! where DialogT : DialogProtocol