Top |
gint | gdk_input_add_full () |
void | (*GdkInputFunction) () |
void | (*GdkDestroyNotify) () |
gint | gdk_input_add () |
void | gdk_input_remove () |
gint gdk_input_add_full (gint source
,GdkInputCondition condition
,GdkInputFunction function
,gpointer data
,GDestroyNotify destroy
);
gdk_input_add_full
has been deprecated since version 2.14 and should not be used in newly-written code.
Use g_io_add_watch_full()
on a GIOChannel
Establish a callback when a condition becomes true on a file descriptor.
void (*GdkInputFunction) (gpointer data
,gint source
,GdkInputCondition condition
);
void
(*GdkDestroyNotify) (gpointer data
);
GdkDestroyNotify
is deprecated and should not be used in newly-written code.
gint gdk_input_add (gint source
,GdkInputCondition condition
,GdkInputFunction function
,gpointer data
);
gdk_input_add
has been deprecated since version 2.14 and should not be used in newly-written code.
Use g_io_add_watch()
on a GIOChannel
Establish a callback when a condition becomes true on a file descriptor.