EntryCompletion.connectMatchSelected
gulong connectMatchSelected(T)(T callback, Flag!"After" after = No.After) if (isCallable!T
&& is(ReturnType!T == bool)
&& (Parameters!T.length < 1 || (ParameterStorageClassTuple!T[0] == ParameterStorageClass.none && is(Parameters!T[0] : gtk.tree_model.TreeModel)))
&& (Parameters!T.length < 2 || (ParameterStorageClassTuple!T[1] == ParameterStorageClass.none && is(Parameters!T[1] == gtk.tree_iter.TreeIter)))
&& (Parameters!T.length < 3 || (ParameterStorageClassTuple!T[2] == ParameterStorageClass.none && is(Parameters!T[2] : gtk.entry_completion.EntryCompletion)))
&& Parameters!T.length < 4)Connect to MatchSelected signal.
Gets emitted when a match from the list is selected. The default behaviour is to replace the contents of the entry with the contents of the text column in the row pointed to by iter.
Note that model is the model that was passed to [gtk.entry_completion.EntryCompletion.setModel].
Parameters
callback | signal callback delegate or function to connect bool callback(gtk.tree_model.TreeModel model, gtk.tree_iter.TreeIter iter, gtk.entry_completion.EntryCompletion entryCompletion) model the #GtkTreeModel containing the matches (optional) iter a #GtkTreeIter positioned at the selected match (optional) entryCompletion the instance the signal is connected to (optional) Returns true if the signal has been handled |
after | Yes.After to execute callback after default handler, No.After to execute before (default) |
Returns
Signal ID