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 TypeMethodDescriptionvoidrun(int bookmarkIndex) Emitted when the user asks for it.default MemorySegmenttoCallback(Arena arena) Creates a native function pointer to theupcall(java.lang.foreign.MemorySegment, int)method.default voidupcall(MemorySegment sourceFileChooserWidget, int bookmarkIndex) Theupcallmethod 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
bookmarkIndexparameter. 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-1is actually defined to switch to the bookmark at index 0, and so on successively. -
upcall
Theupcallmethod 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:
toCallbackin interfaceFunctionPointer- Parameters:
arena- the arena in which the function pointer is allocated- Returns:
- the native function pointer
-