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
callback | signal 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 #GtkTreePath-struct identifying the new row (optional) iter a valid #GtkTreeIter-struct pointing to the new row (optional) treeModel the instance the signal is connected to (optional) |
after | Yes.After to execute callback after default handler, No.After to execute before (default) |
Returns
Signal ID