Package org.gnome.gtk
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(java.lang.foreign.MemorySegment, java.lang.foreign.MemorySegment, java.lang.foreign.MemorySegment, java.lang.foreign.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 aGtkTextBuffer.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(org.gnome.gtk.TextTag, org.gnome.gtk.TextIter, org.gnome.gtk.TextIter),TextBuffer.insertWithTags(org.gnome.gtk.TextIter, java.lang.String, int, org.gnome.gtk.TextTag, java.lang.Object...),TextBuffer.insertRange(org.gnome.gtk.TextIter, org.gnome.gtk.TextIter, org.gnome.gtk.TextIter). -
upcall
default void upcall(MemorySegment sourceTextBuffer, MemorySegment tag, MemorySegment start, MemorySegment end) Theupcallmethod is called from native code. The parameters are marshaled andrun(org.gnome.gtk.TextTag, org.gnome.gtk.TextIter, org.gnome.gtk.TextIter)is executed. -
toCallback
Creates a native function pointer to theupcall(java.lang.foreign.MemorySegment, java.lang.foreign.MemorySegment, java.lang.foreign.MemorySegment, java.lang.foreign.MemorySegment)method.- Specified by:
toCallbackin interfaceFunctionPointer- Parameters:
arena- the arena in which the function pointer is allocated- Returns:
- the native function pointer
-