Interface

Gcr-4GcrImportInteractionInterface

Interface for implementing ImportInteraction. Contains only the virtual methods that need to be implemented.

interface Interface {
    vfunc_supplement(
        builder: Gck.Builder,
        cancellable?: Gio.Cancellable,
    ): Gio.TlsInteractionResult;
    vfunc_supplement_async(
        builder: Gck.Builder,
        cancellable?: Gio.Cancellable,
        callback?: AsyncReadyCallback<Gcr.ImportInteraction.Interface>,
    ): void;
    vfunc_supplement_finish(result: Gio.AsyncResult): Gio.TlsInteractionResult;
    vfunc_supplement_prep(builder: Gck.Builder): void;
}

Hierarchy (View Summary)

Index

Methods

  • Prepare for supplementing the given attributes before import. This means prompting the user for things like labels and the like. The attributes will contain attributes for values that the importer needs, either empty or prefilled with suggested values.

    This method does not prompt the user, but rather just prepares the interaction that these are the attributes that are needed.

    Parameters

    Returns void