Interface Assistant.OnApply

Enclosing class:
Assistant
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public static interface Assistant.OnApply
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Emitted when the apply button is clicked.
  • Method Details

    • onApply

      void onApply()
      Emitted when the apply button is clicked.

      The default behavior of the `GtkAssistant` is to switch to the page
      after the current page, unless the current page is the last one.

      A handler for the ::apply signal should carry out the actions for
      which the wizard has collected data. If the action takes a long time
      to complete, you might consider putting a page of type
      %GTK_ASSISTANT_PAGE_PROGRESS after the confirmation page and handle
      this operation within the [signal@Gtk.Assistant::prepare] signal of
      the progress page.