Function
Gtk.TreeViewSearchEqualFunc
Declaration
gboolean
TreeViewSearchEqualFunc (
  GtkTreeModel* model,
  int column,
  const char* key,
  GtkTreeIter* iter,
  gpointer search_data
)
Description [src]
A function used for checking whether a row in model matches
a search key string entered by the user. Note the return value
is reversed from what you would normally expect, though it
has some similarity to strcmp() returning 0 for equal strings.
Parameters
| model | GtkTreeModel | 
| the  | |
| Ownership is not transferred to the callee | |
| column | int | 
| the search column set by  | |
| key | const char* | 
| the key string to compare with | |
| Ownership is not transferred to the callee | |
| The string is a NUL terminated UTF-8 string | |
| iter | GtkTreeIter | 
| a  | |
| Ownership is not transferred to the callee | |
| search_data | gpointer | 
| user data from  |