[ CCode ( has_target = false ) ]
[ Version ( since = "4.21.0" ) ]
public delegate bool IconViewSearchEqualFunc (TreeModel model, int column, string key, TreeIter iter, void* search_data)
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.
| model |
the TreeModel being searched. |
| column |
the search column set by set_search_column. |
| key |
the key string to compare with. |
| iter |
the TreeIter of the current item. |
| search_data |
user data from set_search_equal_func. |
|
false if the row matches, true otherwise. |