Constructor
GtkCustomSorternew
Declaration [src]
GtkCustomSorter*
gtk_custom_sorter_new (
  GCompareDataFunc sort_func,
  gpointer user_data,
  GDestroyNotify user_destroy
)
Description [src]
Creates a new GtkSorter that works by calling
sort_func to compare items.
If sort_func is NULL, all items are considered equal.
Parameters
| sort_func | GCompareDataFunc | 
| The  | |
| The argument can be NULL. | |
| user_data | gpointer | 
| User data to pass to  | |
| The argument can be NULL. | |
| The data is owned by the caller of the function. | |
| user_destroy | GDestroyNotify | 
| Destroy notify for  | |
| The argument can be NULL. | 
Return value
| Returns: | GtkCustomSorter | 
| A new  | |
| The caller of the function takes ownership of the data, and is responsible for freeing it. |