quartz: define GDK_NATIVE_WINDOW_POINTER

This commit is contained in:
Kristian Rietveld 2012-12-30 16:56:46 +01:00 committed by Michael Natterer
parent 9582638a6b
commit e6cf7a8d81
3 changed files with 10 additions and 8 deletions

View File

@ -1681,6 +1681,8 @@ elif test "x$gdktarget" = "xwin32" ; then
#define GDK_WINDOWING_WIN32'
elif test "x$gdktarget" = "xquartz" ; then
gdk_windowing='
#define GDK_NATIVE_WINDOW_POINTER
#define GDK_WINDOWING_QUARTZ'
elif test "x$gdktarget" = "xdirectfb" ; then
gdk_windowing='

View File

@ -134,9 +134,9 @@ gdk_drag_motion (GdkDragContext *context,
return FALSE;
}
guint32
GdkNativeWindow
gdk_drag_get_protocol_for_display (GdkDisplay *display,
guint32 xid,
GdkNativeWindow xid,
GdkDragProtocol *protocol)
{
/* FIXME: Implement */

View File

@ -64,12 +64,12 @@ gdk_selection_property_get (GdkWindow *requestor,
}
void
gdk_selection_send_notify_for_display (GdkDisplay *display,
guint32 requestor,
GdkAtom selection,
GdkAtom target,
GdkAtom property,
guint32 time)
gdk_selection_send_notify_for_display (GdkDisplay *display,
GdkNativeWindow requestor,
GdkAtom selection,
GdkAtom target,
GdkAtom property,
guint32 time)
{
/* FIXME: Implement */
}