GdkInputCondition

A set of bit flags used to specify conditions for which an input callback will be triggered. The three members of this enumeration correspond to the readfds, writefds, and exceptfds arguments to the select system call. GDK_INPUT_READ the file descriptor has become available for reading. (Or, as is standard in Unix, a socket or pipe was closed at the other end; this is the case if a subsequent read on the file descriptor returns a count of zero.) GDK_INPUT_WRITE the file descriptor has become available for writing. GDK_INPUT_EXCEPTION an exception was raised on the file descriptor.

Values

ValueMeaning
READ1 << 0
WRITE1 << 1
EXCEPTION1 << 2

Meta