Package org.gnome.gtk
Interface TextBuffer.DeleteRangeCallback
- 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
DeleteRangeCallback callback.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidEmitted to delete a range from aGtkTextBuffer.default MemorySegmenttoCallback(Arena arena) Creates a native function pointer to theupcall(java.lang.foreign.MemorySegment, java.lang.foreign.MemorySegment, java.lang.foreign.MemorySegment)method.default voidupcall(MemorySegment sourceTextBuffer, MemorySegment start, MemorySegment end) Theupcallmethod is called from native code.
-
Method Details
-
run
Emitted to delete a range from aGtkTextBuffer.Note that if your handler runs before the default handler it must not invalidate the
startandenditers (or has to revalidate them). The default signal handler revalidates thestartandenditers to both point to the location where text was deleted. Handlers which run after the default handler (see g_signal_connect_after()) do not have access to the deleted text.See also:
TextBuffer.delete(org.gnome.gtk.TextIter, org.gnome.gtk.TextIter). -
upcall
Theupcallmethod is called from native code. The parameters are marshaled andrun(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)method.- Specified by:
toCallbackin interfaceFunctionPointer- Parameters:
arena- the arena in which the function pointer is allocated- Returns:
- the native function pointer
-