Package org.gnome.gtk
Interface AssistantPageFunc
- All Superinterfaces:
FunctionPointer
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface
@Generated("io.github.jwharm.JavaGI")
public interface AssistantPageFunc
extends FunctionPointer
Functional interface declaration of the
AssistantPageFunc callback.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionintrun(int currentPage) Type of callback used to calculate the next page in aGtkAssistant.default MemorySegmenttoCallback(Arena arena) Creates a native function pointer to theupcall(int, java.lang.foreign.MemorySegment)method.default intupcall(int currentPage, MemorySegment data) Theupcallmethod is called from native code.
-
Method Details
-
run
int run(int currentPage) Type of callback used to calculate the next page in aGtkAssistant.It’s called both for computing the next page when the user presses the “forward” button and for handling the behavior of the “last” button.
See
Assistant.setForwardPageFunc(org.gnome.gtk.AssistantPageFunc). -
upcall
Theupcallmethod is called from native code. The parameters are marshaled andrun(int)is executed. -
toCallback
Creates a native function pointer to theupcall(int, java.lang.foreign.MemorySegment)method.- Specified by:
toCallbackin interfaceFunctionPointer- Parameters:
arena- the arena in which the function pointer is allocated- Returns:
- the native function pointer
-