Package org.gnome.gtk
Interface EventControllerScroll.ScrollCallback
- All Superinterfaces:
FunctionPointer
- Enclosing class:
EventControllerScroll
- 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 EventControllerScroll.ScrollCallback
extends FunctionPointer
Functional interface declaration of the
ScrollCallback
callback.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionboolean
run
(double dx, double dy) Signals that the widget should scroll by the amount specified bydx
anddy
.default MemorySegment
toCallback
(Arena arena) Creates a native function pointer to theupcall(java.lang.foreign.MemorySegment, double, double)
method.default int
upcall
(MemorySegment sourceEventControllerScroll, double dx, double dy) Theupcall
method is called from native code.
-
Method Details
-
run
boolean run(double dx, double dy) Signals that the widget should scroll by the amount specified bydx
anddy
.For the representation unit of the deltas, see
EventControllerScroll.getUnit()
. -
upcall
Theupcall
method is called from native code. The parameters are marshaled andrun(double, double)
is executed. -
toCallback
Creates a native function pointer to theupcall(java.lang.foreign.MemorySegment, double, double)
method.- Specified by:
toCallback
in interfaceFunctionPointer
- Parameters:
arena
- the function pointer will be allocated in this arena- Returns:
- the native function pointer
-