GTK+ Reference Manual | |||
---|---|---|---|
<<< Previous Page | Home | Up | Next Page >>> |
#include <gtk/gtk.h> struct GtkItem; void gtk_item_select (GtkItem *item); void gtk_item_deselect (GtkItem *item); void gtk_item_toggle (GtkItem *item); |
"select" void user_function (GtkItem *item, gpointer user_data); "deselect" void user_function (GtkItem *item, gpointer user_data); "toggle" void user_function (GtkItem *item, gpointer user_data); |
void user_function (GtkItem *item, gpointer user_data); |
item : | the object which received the signal. |
user_data : | user data set when the signal handler was connected. |
void user_function (GtkItem *item, gpointer user_data); |
item : | the object which received the signal. |
user_data : | user data set when the signal handler was connected. |