TreeModel.connectRowInserted

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

Connect to RowInserted signal.

This signal is emitted when a new row has been inserted in the model.

Note that the row may still be empty at this point, since it is a common pattern to first insert an empty row, and then fill it with the desired values.

Parameters

callbacksignal callback delegate or function to connect void callback(gtk.tree_path.TreePath path, gtk.tree_iter.TreeIter iter, gtk.tree_model.TreeModel treeModel) path a [gtk.tree_path.TreePath] identifying the new row (optional) iter a valid [gtk.tree_iter.TreeIter] pointing to the new 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