Github User Fetcher 1.0.0
C Application with Server and GUI
|
#include <gtk/gtkfilter.h>
Go to the source code of this file.
Macros | |
#define | GTK_TYPE_CUSTOM_FILTER (gtk_custom_filter_get_type ()) |
Functions | |
GDK_AVAILABLE_IN_ALL GDK_AVAILABLE_IN_ALL GtkCustomFilter * | gtk_custom_filter_new (GtkCustomFilterFunc match_func, gpointer user_data, GDestroyNotify user_destroy) |
GDK_AVAILABLE_IN_ALL void | gtk_custom_filter_set_filter_func (GtkCustomFilter *self, GtkCustomFilterFunc match_func, gpointer user_data, GDestroyNotify user_destroy) |
Variables | |
G_BEGIN_DECLS typedef gboolean(* | GtkCustomFilterFunc )(gpointer item, gpointer user_data) |
#define GTK_TYPE_CUSTOM_FILTER (gtk_custom_filter_get_type ()) |
Definition at line 44 of file gtkcustomfilter.h.
GDK_AVAILABLE_IN_ALL GDK_AVAILABLE_IN_ALL GtkCustomFilter * gtk_custom_filter_new | ( | GtkCustomFilterFunc | match_func, |
gpointer | user_data, | ||
GDestroyNotify | user_destroy ) |
GDK_AVAILABLE_IN_ALL void gtk_custom_filter_set_filter_func | ( | GtkCustomFilter * | self, |
GtkCustomFilterFunc | match_func, | ||
gpointer | user_data, | ||
GDestroyNotify | user_destroy ) |
G_BEGIN_DECLS typedef gboolean(* GtkCustomFilterFunc) (gpointer item, gpointer user_data) | ( | gpointer | item, |
gpointer | user_data ) |
GtkCustomFilterFunc: @item: (type GObject): The item to be matched @user_data: user data
User function that is called to determine if the @item should be matched.
If the filter matches the item, this function must return TRUE. If the item should be filtered out, FALSE must be returned.
Returns: TRUE to keep the item around
Definition at line 42 of file gtkcustomfilter.h.