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 TypeMethodDescriptionvoid
Emitted to delete a range from aGtkTextBuffer
.default MemorySegment
toCallback
(Arena arena) Creates a native function pointer to theupcall(java.lang.foreign.MemorySegment, java.lang.foreign.MemorySegment, java.lang.foreign.MemorySegment)
method.default void
upcall
(MemorySegment sourceTextBuffer, MemorySegment start, MemorySegment end) Theupcall
method 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
start
andend
iters (or has to revalidate them). The default signal handler revalidates thestart
andend
iters 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
Theupcall
method 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:
toCallback
in interfaceFunctionPointer
- Parameters:
arena
- the function pointer will be allocated in this arena- Returns:
- the native function pointer
-