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("org.javagi.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, 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 a
GtkAssistant.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.
- Parameters:
currentPage- The page number used to calculate the next page.- Returns:
- The next page number
-
upcall
Theupcallmethod is called from native code. The parameters are marshaled andrun(int)is executed. -
toCallback
Creates a native function pointer to theupcall(int, MemorySegment)method.- Specified by:
toCallbackin interfaceFunctionPointer- Parameters:
arena- the arena in which the function pointer is allocated- Returns:
- the native function pointer
-