AppChooserDialog

open class AppChooserDialog : Dialog, AppChooserDialogProtocol

GtkAppChooserDialog shows a GtkAppChooserWidget inside a GtkDialog.

An example GtkAppChooserDialog

Note that GtkAppChooserDialog does not have any interesting methods of its own. Instead, you should get the embedded GtkAppChooserWidget using [methodGtk.AppChooserDialog.get_widget] and call its methods if the generic [ifaceGtk.AppChooser] interface is not sufficient for your needs.

To set the heading that is shown above the GtkAppChooserWidget, use [methodGtk.AppChooserDialog.set_heading].

The AppChooserDialog type acts as a reference-counted owner of an underlying GtkAppChooserDialog instance. It provides the methods that can operate on this data type through AppChooserDialogProtocol conformance. Use AppChooserDialog as a strong reference or owner of a GtkAppChooserDialog instance.

  • Designated initialiser from the underlying `C` data type.
    

    This creates an instance without performing an unbalanced retain i.e., ownership is transferred to the AppChooserDialog instance.

    Declaration

    Swift

    @inlinable
    public init(_ op: UnsafeMutablePointer<GtkAppChooserDialog>)

    Parameters

    op

    pointer to the underlying object

  • Designated initialiser from a constant pointer to the underlying C data type. This creates an instance without performing an unbalanced retain i.e., ownership is transferred to the AppChooserDialog instance.

    Declaration

    Swift

    @inlinable
    public init(_ op: UnsafePointer<GtkAppChooserDialog>)

    Parameters

    op

    pointer to the underlying object

  • Optional initialiser from a non-mutating gpointer to the underlying C data type. This creates an instance without performing an unbalanced retain i.e., ownership is transferred to the AppChooserDialog instance.

    Declaration

    Swift

    @inlinable
    override public init!(gpointer op: gpointer?)

    Parameters

    op

    gpointer to the underlying object

  • Optional initialiser from a non-mutating gconstpointer to the underlying C data type. This creates an instance without performing an unbalanced retain i.e., ownership is transferred to the AppChooserDialog instance.

    Declaration

    Swift

    @inlinable
    override public init!(gconstpointer op: gconstpointer?)

    Parameters

    op

    pointer to the underlying object

  • Optional initialiser from a constant pointer to the underlying C data type. This creates an instance without performing an unbalanced retain i.e., ownership is transferred to the AppChooserDialog instance.

    Declaration

    Swift

    @inlinable
    public init!(_ op: UnsafePointer<GtkAppChooserDialog>?)

    Parameters

    op

    pointer to the underlying object

  • Optional initialiser from the underlying C data type. This creates an instance without performing an unbalanced retain i.e., ownership is transferred to the AppChooserDialog instance.

    Declaration

    Swift

    @inlinable
    public init!(_ op: UnsafeMutablePointer<GtkAppChooserDialog>?)

    Parameters

    op

    pointer to the underlying object

  • Designated initialiser from the underlying C data type. Will retain GtkAppChooserDialog. i.e., ownership is transferred to the AppChooserDialog instance.

    Declaration

    Swift

    @inlinable
    public init(retaining op: UnsafeMutablePointer<GtkAppChooserDialog>)

    Parameters

    op

    pointer to the underlying object

  • Reference intialiser for a related type that implements AppChooserDialogProtocol Will retain GtkAppChooserDialog.

    Declaration

    Swift

    @inlinable
    public init<T>(appChooserDialog other: T) where T : AppChooserDialogProtocol

    Parameters

    other

    an instance of a related type that implements AppChooserDialogProtocol

  • Unsafe typed initialiser. Do not use unless you know the underlying data type the pointer points to conforms to AppChooserDialogProtocol.

    Declaration

    Swift

    @inlinable
    override public init<T>(cPointer p: UnsafeMutablePointer<T>)

    Parameters

    cPointer

    pointer to the underlying object

  • Unsafe typed, retaining initialiser. Do not use unless you know the underlying data type the pointer points to conforms to AppChooserDialogProtocol.

    Declaration

    Swift

    @inlinable
    override public init<T>(retainingCPointer cPointer: UnsafeMutablePointer<T>)

    Parameters

    cPointer

    pointer to the underlying object

  • Unsafe untyped initialiser. Do not use unless you know the underlying data type the pointer points to conforms to AppChooserDialogProtocol.

    Declaration

    Swift

    @inlinable
    override public init(raw p: UnsafeRawPointer)

    Parameters

    p

    raw pointer to the underlying object

  • Unsafe untyped, retaining initialiser. Do not use unless you know the underlying data type the pointer points to conforms to AppChooserDialogProtocol.

    Declaration

    Swift

    @inlinable
    override public init(retainingRaw raw: UnsafeRawPointer)
  • Unsafe untyped initialiser. Do not use unless you know the underlying data type the pointer points to conforms to AppChooserDialogProtocol.

    Declaration

    Swift

    @inlinable
    public required init(raw p: UnsafeMutableRawPointer)

    Parameters

    p

    mutable raw pointer to the underlying object

  • Unsafe untyped, retaining initialiser. Do not use unless you know the underlying data type the pointer points to conforms to AppChooserDialogProtocol.

    Declaration

    Swift

    @inlinable
    required public init(retainingRaw raw: UnsafeMutableRawPointer)

    Parameters

    raw

    mutable raw pointer to the underlying object

  • Unsafe untyped initialiser. Do not use unless you know the underlying data type the pointer points to conforms to AppChooserDialogProtocol.

    Declaration

    Swift

    @inlinable
    override public init(opaquePointer p: OpaquePointer)

    Parameters

    p

    opaque pointer to the underlying object

  • Unsafe untyped, retaining initialiser. Do not use unless you know the underlying data type the pointer points to conforms to AppChooserDialogProtocol.

    Declaration

    Swift

    @inlinable
    override public init(retainingOpaquePointer p: OpaquePointer)

    Parameters

    p

    opaque pointer to the underlying object

  • Creates a new GtkAppChooserDialog for the provided GFile.

    The dialog will show applications that can open the file.

    Declaration

    Swift

    @inlinable
    public init<FileT, WindowT>(parent: WindowT?, flags: DialogFlags, file: FileT) where FileT : FileProtocol, WindowT : WindowProtocol
  • Creates a new GtkAppChooserDialog for the provided content type.

    The dialog will show applications that can open the content type.

    Declaration

    Swift

    @inlinable
    public init<WindowT>(contentType parent: WindowT?, flags: DialogFlags, contentType: UnsafePointer<CChar>!) where WindowT : WindowProtocol
  • Creates a new GtkAppChooserDialog for the provided content type.

    The dialog will show applications that can open the content type.

    Declaration

    Swift

    @inlinable
    public static func newFor<WindowT>(contentType parent: WindowT?, flags: DialogFlags, contentType: UnsafePointer<CChar>!) -> Widget! where WindowT : WindowProtocol