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 TypeMethodDescriptionint
run
(int currentPage) Type of callback used to calculate the next page in aGtkAssistant
.default MemorySegment
toCallback
(Arena arena) Creates a native function pointer to theupcall(int, java.lang.foreign.MemorySegment)
method.default int
upcall
(int currentPage, MemorySegment data) Theupcall
method 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
Theupcall
method 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:
toCallback
in interfaceFunctionPointer
- Parameters:
arena
- the function pointer will be allocated in this arena- Returns:
- the native function pointer
-