Interface TextBuffer.ApplyTagCallback
- All Superinterfaces:
FunctionPointer
- Enclosing class:
TextBuffer
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Functional interface declaration of the ApplyTagCallback callback.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidEmitted to apply a tag to a range of text in aGtkTextBuffer.default MemorySegmenttoCallback(Arena arena) Creates a native function pointer to theupcall(MemorySegment, MemorySegment, MemorySegment, MemorySegment)method.default voidupcall(MemorySegment sourceTextBuffer, MemorySegment tag, MemorySegment start, MemorySegment end) Theupcallmethod is called from native code.
-
Method Details
-
run
Emitted to apply a tag to a range of text in a
GtkTextBuffer.Applying actually occurs in the default handler.
Note that if your handler runs before the default handler it must not invalidate the
startandenditers (or has to revalidate them).See also:
TextBuffer.applyTag(TextTag, TextIter, TextIter),TextBuffer.insertWithTags(TextIter, String, int, TextTag, Object...),TextBuffer.insertRange(TextIter, TextIter, TextIter). -
upcall
default void upcall(MemorySegment sourceTextBuffer, MemorySegment tag, MemorySegment start, MemorySegment end) Theupcallmethod is called from native code. The parameters are marshaled andrun(TextTag, TextIter, TextIter)is executed. -
toCallback
Creates a native function pointer to theupcall(MemorySegment, MemorySegment, MemorySegment, MemorySegment)method.- Specified by:
toCallbackin interfaceFunctionPointer- Parameters:
arena- the arena in which the function pointer is allocated- Returns:
- the native function pointer
-