Package org.gnome.gtk
Interface CellEditable.RemoveWidgetCallback
- All Superinterfaces:
FunctionPointer
- Enclosing interface:
CellEditable
- 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 CellEditable.RemoveWidgetCallback
extends FunctionPointer
Functional interface declaration of the
RemoveWidgetCallback callback.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidrun()This signal is meant to indicate that the cell is finished editing, and thecellEditablewidget is being removed and may subsequently be destroyed.default MemorySegmenttoCallback(Arena arena) Creates a native function pointer to theupcall(java.lang.foreign.MemorySegment)method.default voidupcall(MemorySegment sourceCellEditable) Theupcallmethod is called from native code.
-
Method Details
-
run
void run()This signal is meant to indicate that the cell is finished editing, and thecellEditablewidget is being removed and may subsequently be destroyed.Implementations of
GtkCellEditableare responsible for emitting this signal when they are done editing. It must be emitted after theGtkCellEditable::editing-donesignal, to give the cell renderer a chance to update the cell's value before the widget is removed.gtk_cell_editable_remove_widget() is a convenience method for emitting
GtkCellEditable::remove-widget. -
upcall
Theupcallmethod is called from native code. The parameters are marshaled andrun()is executed. -
toCallback
Creates a native function pointer to theupcall(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
-