TreeModel.connectRowDeleted

gulong connectRowDeleted(T)(T callback, Flag!"After" after = No.After)

Connect to RowDeleted signal.

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

callbacksignal callback delegate or function to connect void callback(gtk.tree_path.TreePath path, gtk.tree_model.TreeModel treeModel) path a #GtkTreePath-struct identifying the row (optional) treeModel the instance the signal is connected to (optional)
afterYes.After to execute callback after default handler, No.After to execute before (default)

Returns

Signal ID