From d6a35b4e771d4fd2ffe0656bb44d63ede5aa43b3 Mon Sep 17 00:00:00 2001 From: Dmitry Kalyanov Date: Thu, 26 Nov 2009 23:53:51 +0300 Subject: [PATCH] Remove dnd - was implemented in 'master' branch --- gdk/cl-gtk2-gdk.asd | 1 - gdk/gdk.dnd.lisp | 141 -------------------------------------------- gdk/gdk.drag-and-drop.lisp | 2 +- 3 files changed, 1 insertion(+), 143 deletions(-) delete mode 100644 gdk/gdk.dnd.lisp diff --git a/gdk/cl-gtk2-gdk.asd b/gdk/cl-gtk2-gdk.asd index aa6cdfc..2869ef4 100644 --- a/gdk/cl-gtk2-gdk.asd +++ b/gdk/cl-gtk2-gdk.asd @@ -9,7 +9,6 @@ (:file "gdk.objects") (:file "gdk.functions") (:file "gdk.general") - (:file "gdk.dnd") (:file "gdk.display") (:file "gdk.screen") (:file "gdk.region") diff --git a/gdk/gdk.dnd.lisp b/gdk/gdk.dnd.lisp deleted file mode 100644 index 257059f..0000000 --- a/gdk/gdk.dnd.lisp +++ /dev/null @@ -1,141 +0,0 @@ -(in-package :gdk) - -(gobject:define-g-enum "GdkDragProtocol" drag-protocol - (:export t :type-initializer "gdk_drag_protocol_get_type") - (:motif 0) - (:xdnd 1) - (:rootwin 2) - (:none 3) - (:win32-dropfiles 4) - (:ole2 5) - (:local 6)) - -(define-g-flags "GdkDragAction" drag-action - (:export t :type-initializer "gdk_drag_action_get_type") - (:default 1) - (:copy 2) - (:move 4) - (:link 8) - (:private 16) - (:ask 32)) - -(defcfun gdk-drag-get-selection gdk-atom - (context g-object)) - -(defun drag-get-selection (context) - (gdk-drag-get-selection context)) - -(export 'drag-get-selection) - -(defcfun gdk-drag-abort :void - (context g-object) - (time :uint32)) - -(defun drag-abort (context time) - (gdk-drag-abort context time)) - -(export 'drag-abort) - -(defcfun gdk-drop-reply :void - (context g-object) - (ok :boolean) - (time :uint32)) - -(defun drop-reply (context ok time) - (gdk-drop-reply context ok time)) - -(export 'drop-reply) - -;; TODO : GdkDragContext * gdk_drag_context_new(void); - -(defcfun gdk-drag-drop :void - (context g-object) - (time :uint32)) - -(defun drag-drop (context time) - (gdk-drag-drop context time)) - -(export 'drag-drop) - -#| -void gdk_drag_find_window (GdkDragContext *context, - GdkWindow *drag_window, - gint x_root, - gint y_root, - GdkWindow **dest_window, - GdkDragProtocol *protocol); - -void gdk_drag_find_window_for_screen (GdkDragContext *context, - GdkWindow *drag_window, - GdkScreen *screen, - gint x_root, - gint y_root, - GdkWindow **dest_window, - GdkDragProtocol *protocol); - -GdkDragContext * gdk_drag_begin (GdkWindow *window, - GList *targets); - -gboolean gdk_drag_motion (GdkDragContext *context, - GdkWindow *dest_window, - GdkDragProtocol protocol, - gint x_root, - gint y_root, - GdkDragAction suggested_action, - GdkDragAction possible_actions, - guint32 time_); -|# - -(defcfun gdk-drop-finish :void - (context g-object) - (success :boolean) - (time :uint32)) - -(defun drop-finish (context success time) - (gdk-drop-finish context success time)) - -(export 'drop-finish) - -(defcfun gdk-drag-get-protocol native-window - (xid native-window) - (protocol :pointer)) - -(defun drag-get-protocol (xid) - (with-foreign-objects ((protocol 'drag-protocol)) - (let ((result (gdk-drag-get-protocol xid protocol))) - (values result - (mem-ref protocol 'drag-protocol))))) - -(export 'drag-get-protocol) - -(defcfun gdk-drag-get-protocol-for-display native-window - (display g-object) - (xid native-window) - (protocol :pointer)) - -(defun drag-get-protocol-for-display (display xid) - (with-foreign-objects ((protocol 'drag-protocol)) - (let ((result (gdk-drag-get-protocol-for-display display xid protocol))) - (values result - (mem-ref protocol 'drag-protocol))))) - -(export 'drag-get-protocol-for-display) - -(defcfun gdk-drag-status :void - (context g-object) - (action drag-action) - (time :uint)) - -(defun drag-status (context action time) - (gdk-drag-status context action time)) - -(export 'drag-status) - -(defcfun gdk-drag-drop-succeeded :boolean - (context g-object)) - -(defun drag-drop-succeeded (context) - (gdk-drag-drop-succeeded context)) - -(export 'drag-drop-succeeded) - diff --git a/gdk/gdk.drag-and-drop.lisp b/gdk/gdk.drag-and-drop.lisp index 905f239..8ddef98 100644 --- a/gdk/gdk.drag-and-drop.lisp +++ b/gdk/gdk.drag-and-drop.lisp @@ -48,7 +48,7 @@ (context (g-object drag-context)) (time :uint32)) -(export 'gdk-drag-abord) +(export 'gdk-drag-abort) (defcfun gdk-drop-reply :void (context (g-object drag-context)) -- 1.7.10.4