Package org.gnome.gtk
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 TypeMethodDescriptionvoid
run
(int bookmarkIndex) Emitted when the user asks for it.default MemorySegment
toCallback
(Arena arena) Creates a native function pointer to theupcall(java.lang.foreign.MemorySegment, int)
method.default void
upcall
(MemorySegment sourceFileChooserWidget, int bookmarkIndex) Theupcall
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. untilAlt
-0
. Note that in the default binding, thatAlt
-1
is actually defined to switch to the bookmark at index 0, and so on successively. -
upcall
Theupcall
method is called from native code. The parameters are marshaled andrun(int)
is executed. -
toCallback
Creates a native function pointer to theupcall(java.lang.foreign.MemorySegment, int)
method.- Specified by:
toCallback
in interfaceFunctionPointer
- Parameters:
arena
- the function pointer will be allocated in this arena- Returns:
- the native function pointer
-