Interface FileChooserWidget.QuickBookmarkCallback

All Superinterfaces:
FunctionPointer
Enclosing class:
FileChooserWidget
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 FileChooserWidget.QuickBookmarkCallback extends FunctionPointer

Functional interface declaration of the QuickBookmarkCallback callback.

See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    run(int bookmarkIndex)
    Emitted when the user asks for it.
    Creates a native function pointer to the upcall(MemorySegment, int) method.
    default void
    upcall(MemorySegment sourceFileChooserWidget, int bookmarkIndex)
    The upcall method is called from native code.
  • Method Details

    • run

      void run(int bookmarkIndex)

      Emitted when the user asks for it.

      This is a keybinding signal.

      This is used to make the file chooser switch to the bookmark specified in the bookmarkIndex parameter. For example, if you have three bookmarks, you can pass 0, 1, 2 to this signal to switch to each of them, respectively.

      The default binding for this signal is Alt-1, Alt-2, etc. until Alt-0. Note that in the default binding, that Alt-1 is actually defined to switch to the bookmark at index 0, and so on successively.

    • upcall

      default void upcall(MemorySegment sourceFileChooserWidget, int bookmarkIndex)
      The upcall method is called from native code. The parameters are marshaled and run(int) is executed.
    • toCallback

      default MemorySegment toCallback(Arena arena)
      Creates a native function pointer to the upcall(MemorySegment, int) method.
      Specified by:
      toCallback in interface FunctionPointer
      Parameters:
      arena - the arena in which the function pointer is allocated
      Returns:
      the native function pointer