diff options
author | Anders Carlsson <andersca@imendio.com> | 2006-03-21 08:02:17 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@src.gnome.org> | 2006-03-21 08:02:17 +0000 |
commit | 6b1510bf232f3cdd584819e15b50299a22500097 (patch) | |
tree | 6f3282351bf5de4fd6efd3e4d89e77107df8bde4 /gdk/quartz/Makefile.am | |
parent | ac3643d8f3a667ffbcdb2bf2a914f9d9581932ef (diff) | |
download | gtk+-6b1510bf232f3cdd584819e15b50299a22500097.tar.gz |
Add the GDK part of the DND implementation.
2006-03-21 Anders Carlsson <andersca@imendio.com>
* gdk/quartz/GdkQuartzWindow.c:
(drag_operation_to_drag_action):
(drag_action_to_drag_operation):
(update_context_from_dragging_info):
(-[GdkQuartzWindow draggingEntered:]):
(-[GdkQuartzWindow draggingEnded:]):
(-[GdkQuartzWindow draggingExited:]):
(-[GdkQuartzWindow draggingUpdated:]):
(-[GdkQuartzWindow performDragOperation:]):
(-[GdkQuartzWindow wantsPeriodicDraggingUpdates]):
(-[GdkQuartzWindow draggedImage:endedAt:operation:]):
* gdk/quartz/gdkdnd-quartz.c:
(gdk_drag_context_finalize):
(gdk_drag_context_init):
(gdk_drag_context_class_init):
(gdk_drag_begin):
(gdk_drag_status):
Add the GDK part of the DND implementation.
* gdk/quartz/Makefile.am:
Add some missing headers.
* gdk/quartz/gdkdrawable-quartz.h:
* gdk/quartz/gdkprivate-quartz.h:
* gdk/quartz/gdkquartz.h:
* gdk/quartz/gdkwindow-quartz.c:
(gdk_quartz_window_get_nsview):
New function, for use by the GTK part of the DND implementation
Diffstat (limited to 'gdk/quartz/Makefile.am')
-rw-r--r-- | gdk/quartz/Makefile.am | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/gdk/quartz/Makefile.am b/gdk/quartz/Makefile.am index b45875ff83..4020a36146 100644 --- a/gdk/quartz/Makefile.am +++ b/gdk/quartz/Makefile.am @@ -26,19 +26,23 @@ libgdk_quartz_la_SOURCES = \ gdkdisplay-quartz.c \ gdkdnd-quartz.c \ gdkdrawable-quartz.c \ + gdkdrawable-quartz.h \ gdkevents-quartz.c \ - gdkfont-quartz.c \ + gdkfont-quartz.c \ gdkgc-quartz.c \ gdkgeometry-quartz.c \ gdkglobals-quartz.c \ gdkim-quartz.c \ gdkimage-quartz.c \ gdkinput.c \ - gdkkeys-quartz.c \ - gdkmain-quartz.c \ + gdkkeys-quartz.c \ + gdkmain-quartz.c \ gdkpixmap-quartz.c \ + gdkpixmap-quartz.h \ gdkproperty-quartz.c \ + gdkquartz.h \ gdkscreen-quartz.c \ gdkselection-quartz.c \ gdkvisual-quartz.c \ - gdkwindow-quartz.c + gdkwindow-quartz.c \ + gdkwindow-quartz.h \ |