Move event source apis to gdk_x11

Reduces the changes of cross-backend collisions
This commit is contained in:
Matthias Clasen
2010-12-15 12:25:38 -05:00
parent 25c66c11e2
commit 624dc45755
4 changed files with 37 additions and 37 deletions

View File

@ -28,17 +28,17 @@ G_BEGIN_DECLS
typedef struct _GdkEventSource GdkEventSource;
G_GNUC_INTERNAL
GSource * gdk_event_source_new (GdkDisplay *display);
GSource * gdk_x11_event_source_new (GdkDisplay *display);
G_GNUC_INTERNAL
void gdk_event_source_add_translator (GdkEventSource *source,
GdkEventTranslator *translator);
void gdk_x11_event_source_add_translator (GdkEventSource *source,
GdkEventTranslator *translator);
G_GNUC_INTERNAL
void gdk_event_source_select_events (GdkEventSource *source,
Window window,
GdkEventMask event_mask,
unsigned int extra_x_mask);
void gdk_x11_event_source_select_events (GdkEventSource *source,
Window window,
GdkEventMask event_mask,
unsigned int extra_x_mask);
G_END_DECLS