Interface GutterRenderer.ActivateCallback
- All Superinterfaces:
FunctionPointer
- Enclosing class:
GutterRenderer
- 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 GutterRenderer.ActivateCallback
extends FunctionPointer
Functional interface declaration of the ActivateCallback callback.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidrun(@Nullable TextIter iter, @Nullable Rectangle area, int button, Set<ModifierType> state, int nPresses) The signal is emitted when the renderer is activated.default MemorySegmenttoCallback(Arena arena) Creates a native function pointer to theupcall(MemorySegment, MemorySegment, MemorySegment, int, int, int)method.default voidupcall(MemorySegment sourceGutterRenderer, MemorySegment iter, MemorySegment area, int button, int state, int nPresses) Theupcallmethod is called from native code.
-
Method Details
-
run
void run(@Nullable TextIter iter, @Nullable Rectangle area, int button, Set<ModifierType> state, int nPresses) The signal is emitted when the renderer is activated. -
upcall
default void upcall(MemorySegment sourceGutterRenderer, MemorySegment iter, MemorySegment area, int button, int state, int nPresses) Theupcallmethod is called from native code. The parameters are marshaled andrun(TextIter, Rectangle, int, Set, int)is executed. -
toCallback
Creates a native function pointer to theupcall(MemorySegment, MemorySegment, MemorySegment, int, int, int)method.- Specified by:
toCallbackin interfaceFunctionPointer- Parameters:
arena- the arena in which the function pointer is allocated- Returns:
- the native function pointer
-