Interface TreeModel.OnRowDeleted

Enclosing class:
TreeModel
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 TreeModel.OnRowDeleted
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    This signal is emitted when a row has been deleted.
  • Method Details

    • onRowDeleted

      void onRowDeleted(@Nonnull TreePath path)
      This signal is emitted when a row has been deleted.

      Note that no iterator is passed to the signal handler,
      since the row is already deleted.

      This should be called by models after a row has been removed.
      The location pointed to by @path should be the location that
      the row previously was at. It may not be a valid location anymore.
      Parameters:
      path - a `GtkTreePath` identifying the row