summaryrefslogtreecommitdiff
path: root/gdk/gdkevents.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdk/gdkevents.c')
-rw-r--r--gdk/gdkevents.c37
1 files changed, 1 insertions, 36 deletions
diff --git a/gdk/gdkevents.c b/gdk/gdkevents.c
index bbdf0305ed..352ec44919 100644
--- a/gdk/gdkevents.c
+++ b/gdk/gdkevents.c
@@ -67,10 +67,6 @@
/* Private variable declarations
*/
-static GdkEventFunc _gdk_event_func = NULL; /* Callback for events */
-static gpointer _gdk_event_data = NULL;
-static GDestroyNotify _gdk_event_notify = NULL;
-
static void gdk_event_constructed (GObject *object);
static void gdk_event_finalize (GObject *object);
@@ -156,11 +152,7 @@ _gdk_event_emit (GdkEvent *event)
if (gdk_drag_handle_source_event (event))
return;
- if (gdk_surface_handle_event (event))
- return;
-
- if (_gdk_event_func)
- (*_gdk_event_func) (event, _gdk_event_data);
+ gdk_surface_handle_event (event);
}
/*********************************************
@@ -416,33 +408,6 @@ _gdk_event_queue_flush (GdkDisplay *display)
}
/**
- * gdk_event_handler_set:
- * @func: the function to call to handle events from GDK.
- * @data: user data to pass to the function.
- * @notify: the function to call when the handler function is removed, i.e. when
- * gdk_event_handler_set() is called with another event handler.
- *
- * Sets the function to call to handle all events from GDK.
- *
- * Note that GTK+ uses this to install its own event handler, so it is
- * usually not useful for GTK+ applications. (Although an application
- * can call this function then call gtk_main_do_event() to pass
- * events to GTK+.)
- **/
-void
-gdk_event_handler_set (GdkEventFunc func,
- gpointer data,
- GDestroyNotify notify)
-{
- if (_gdk_event_notify)
- (*_gdk_event_notify) (_gdk_event_data);
-
- _gdk_event_func = func;
- _gdk_event_data = data;
- _gdk_event_notify = notify;
-}
-
-/**
* gdk_event_new:
* @type: a #GdkEventType
*