diff --git a/docs/reference/gtk/input-handling.xml b/docs/reference/gtk/input-handling.xml
index 4d3b286747..9e8e6cd2c0 100644
--- a/docs/reference/gtk/input-handling.xml
+++ b/docs/reference/gtk/input-handling.xml
@@ -61,8 +61,21 @@
the window with the keyboard focus.
- GDK translates these raw windowing system events into #GdkEvents, and
- passes these on to GTK+ by means of gdk_event_handler_set().
+ GDK translates these raw windowing system events into #GdkEvents.
+ Typical input events are:
+
+ GdkEventButton
+ GdkEventMotion
+ GdkEventCrossing
+ GdkEventKey
+ GdkEventFocus
+ GdkEventTouch
+
+
+
+ When GTK+ is initialized, it sets up an event handler function with
+ gdk_event_handler_set(), which receives all of these input events
+ (as well as others, for instance window management related events).