Main Gtk struct.
The data structure used for automatic completion.
GList *items;
list of target items (strings or data structures).
GCompletionFunc func;
function which is called to get the string associated with a
target item. It is NULL if the target items are strings.
gchar *prefix;
the last prefix passed to g_completion_complete() or
g_completion_complete_utf8().
GList *cache;
the list of items which begin with prefix.
GCompletionStrncmpFunc strncmp_func;
The function to use when comparing strings. Use
g_completion_set_compare() to modify this function.
Main Gtk struct. The data structure used for automatic completion. GList *items; list of target items (strings or data structures). GCompletionFunc func; function which is called to get the string associated with a target item. It is NULL if the target items are strings. gchar *prefix; the last prefix passed to g_completion_complete() or g_completion_complete_utf8(). GList *cache; the list of items which begin with prefix. GCompletionStrncmpFunc strncmp_func; The function to use when comparing strings. Use g_completion_set_compare() to modify this function.