Input

Description The functions in this section are used to establish callbacks when some condition becomes true for a file descriptor. They are currently just wrappers around the IO Channel facility.

Members

Static functions

add
int add(int source, GdkInputCondition condition, GdkInputFunction funct, void* data)

Warning 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.

addFull
int addFull(int source, GdkInputCondition condition, GdkInputFunction funct, void* data, GDestroyNotify destroy)

Warning 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.

remove
void remove(int tag)

Warning gdk_input_remove is deprecated and should not be used in newly-written code. Remove a callback added with gdk_input_add() or gdk_input_add_full().

Meta