code review
[wmaker-crm.git] / src / xdnd.c
blob391bccdd3120297b628cd69077c6fe7dea20e981
1 /* Many part of code are ripped of an example from JX's site */
3 #include "wconfig.h"
5 #ifdef XDND
7 #include <X11/Xlib.h>
8 #include "WindowMaker.h"
9 #include "window.h"
10 #include "dock.h"
11 #include "xdnd.h"
12 #include "motif.h"
14 #include "workspace.h"
16 #include <stdlib.h>
17 #include <string.h>
19 #include <X11/Xatom.h>
22 #define XDND_VERSION 3L
24 Atom _XA_XdndAware;
25 Atom _XA_XdndEnter;
26 Atom _XA_XdndLeave;
27 Atom _XA_XdndDrop;
28 Atom _XA_XdndPosition;
29 Atom _XA_XdndStatus;
30 Atom _XA_XdndActionCopy;
31 Atom _XA_XdndSelection;
32 Atom _XA_XdndFinished;
33 Atom _XA_WINDOWMAKER_XDNDEXCHANGE;
36 Atom _XA_MOTIF_DRAG_RECEIVER_INFO;
37 Atom _XA_MOTIF_DRAG_AND_DROP_MESSAGE;
40 Atom atom_support;
42 void
43 wXDNDInitializeAtoms()
46 _XA_XdndAware = XInternAtom(dpy, "XdndAware", False);
47 _XA_XdndEnter = XInternAtom(dpy, "XdndEnter", False);
48 _XA_XdndLeave = XInternAtom(dpy, "XdndLeave", False);
49 _XA_XdndDrop = XInternAtom(dpy, "XdndDrop", False);
50 _XA_XdndPosition = XInternAtom(dpy, "XdndPosition", False);
51 _XA_XdndStatus = XInternAtom(dpy, "XdndStatus", False);
52 _XA_XdndActionCopy = XInternAtom(dpy, "XdndActionCopy", False);
53 _XA_XdndSelection = XInternAtom(dpy, "XdndSelection", False);
54 _XA_XdndFinished = XInternAtom(dpy, "XdndFinished", False);
56 _XA_WINDOWMAKER_XDNDEXCHANGE = XInternAtom(dpy, "_WINDOWMAKER_XDNDEXCHANGE", False);
59 _XA_MOTIF_DRAG_RECEIVER_INFO = XInternAtom(dpy, "_MOTIF_DRAG_RECEIVER_INFO",False);
60 _XA_MOTIF_DRAG_AND_DROP_MESSAGE = XInternAtom(dpy, "_MOTIF_DRAG_AND_DROP_MESSAGE", False);
64 void
65 wXDNDMakeAwareness(Window window)
67 long int xdnd_version = 3;
69 MotifDragReceiverInfo info;
71 XChangeProperty (dpy, window, _XA_XdndAware, XA_ATOM,
72 32, PropModeAppend, (char *)&xdnd_version, 1);
74 /*** MOTIF ***
75 info.byte_order = '\0';
76 info.protocol_version = 0;
77 info.protocol_style = XmDRAG_DYNAMIC;
78 info.proxy_window = 0;
79 info.num_drop_sites = 0;
80 info.total_size = sizeof(info);
82 XChangeProperty (dpy, window,
83 _XA_MOTIF_DRAG_RECEIVER_INFO,
84 _XA_MOTIF_DRAG_RECEIVER_INFO,
85 8, PropModeReplace,
86 (unsigned char *)&info,
87 sizeof (info));
91 void
92 wXDNDClearAwareness(Window window)
94 XDeleteProperty (dpy, window, _XA_XdndAware);
97 Bool
98 wXDNDProcessSelection(XEvent *event)
100 WScreen *scr = wScreenForWindow(event->xselection.requestor);
101 char *retain;
102 Atom ret_type;
103 int ret_format;
104 unsigned long ret_item;
105 unsigned long remain_byte;
106 char * delme;
107 XEvent xevent;
108 Window selowner = XGetSelectionOwner(dpy,_XA_XdndSelection);
109 WMArray *items;
112 XGetWindowProperty(dpy, event->xselection.requestor,
113 _XA_WINDOWMAKER_XDNDEXCHANGE,
114 0, 65536, True, atom_support, &ret_type, &ret_format,
115 &ret_item, &remain_byte, (unsigned char **)&delme);
116 if (delme){
117 scr->xdestring=delme;
120 /*send finished*/
121 memset (&xevent, 0, sizeof(xevent));
122 xevent.xany.type = ClientMessage;
123 xevent.xany.display = dpy;
124 xevent.xclient.window = selowner;
125 xevent.xclient.message_type = _XA_XdndFinished;
126 xevent.xclient.format = 32;
127 XDND_FINISHED_TARGET_WIN(&xevent) = event->xselection.requestor;
128 XSendEvent(dpy, selowner, 0, 0, &xevent);
130 /*process dropping*/
131 if (scr->xdestring) {
132 WMArrayIterator iter;
133 int length, str_size;
134 int total_size = 0;
135 char *tmp;
137 items = WMCreateArray(4);
138 retain = wstrdup(scr->xdestring);
139 XFree(scr->xdestring); /* since xdestring was created by Xlib */
141 length = strlen(retain);
143 /* search in string */
144 while (length--) {
145 if (retain[length] == '\r') { /* useless char, nuke it */
146 retain[length] = 0;
148 if (retain[length] == '\n') {
149 str_size = strlen(&retain[length + 1]);
150 if(str_size) {
151 WMAddToArray(items, wstrdup(&retain[length + 1]));
152 total_size += str_size + 3; /* reserve for " \"\"" */
153 /* this is nonsense -- if (length)
154 WMAppendArray(items, WMCreateArray(1));*/
156 retain[length] = 0;
159 /* final one */
160 WMAddToArray(items, wstrdup(retain));
161 total_size += strlen(retain) + 3;
162 wfree(retain);
164 /* now pack new string */
165 scr->xdestring = wmalloc(total_size);
166 scr->xdestring[0]=0; /* empty string */
167 WM_ETARETI_ARRAY(items, tmp, iter) {
168 if (!strncmp(tmp,"file:",5)) {
169 /* add more 2 chars while removing 5 is harmless */
170 strcat(scr->xdestring, " \"");
171 strcat(scr->xdestring, &tmp[5]);
172 strcat(scr->xdestring, "\"");
173 } else {
174 /* unsupport object, still need more " ? tell ]d */
175 strcat(scr->xdestring, &tmp[5]);
177 wfree(tmp);
179 WMFreeArray(items);
180 wDockReceiveDNDDrop(scr,event);
182 printf("free ");
183 puts(scr->xdestring);
185 wfree(scr->xdestring); /* this xdestring is not from Xlib (no XFree) */
188 /* why doesn't this function return anything ? -Dan */
191 Bool
192 isAwareXDND(Window window)
194 Atom actual;
195 int format;
196 unsigned long count, remaining;
197 unsigned char *data=0;
199 if (!window) return False;
200 XGetWindowProperty (dpy, window, _XA_XdndAware,
201 0, 0x8000000L, False, XA_ATOM,
202 &actual, &format,
203 &count, &remaining, &data);
204 if (actual != XA_ATOM || format != 32 || count == 0 || !data) {
205 if (data)
206 XFree (data);
207 return False;
209 if (data)
210 XFree (data);
211 return True;
214 Bool
215 acceptXDND(Window window)
217 WScreen *scr = wScreenForWindow(window);
218 WDock *dock;
219 int icon_pos,i;
221 icon_pos = -1;
222 if ((dock = scr->dock)!=NULL) {
223 for (i=0; i<dock->max_icons; i++) {
224 if (dock->icon_array[i]
225 && dock->icon_array[i]->icon->core->window==window) {
226 icon_pos = i;
227 break;
231 if (icon_pos<0 && (dock = scr->workspaces[scr->current_workspace]->clip)!=NULL) {
232 for (i=0; i<dock->max_icons; i++) {
233 if (dock->icon_array[i]
234 && dock->icon_array[i]->icon->core->window==window) {
235 icon_pos = i;
236 break;
240 if (icon_pos<0) return False;
241 if (!dock) return False;
242 if (isAwareXDND(dock->icon_array[icon_pos]->icon->icon_win)) return False;
244 if (dock->icon_array[icon_pos]->dnd_command!=NULL) return True;
246 return False;
249 Bool
250 wXDNDProcessClientMessage(XClientMessageEvent *event)
252 /* test */
254 char * name = XGetAtomName(dpy, event->message_type);
256 printf("Get %s\n",name);
258 XFree(name);
262 if (event->message_type == _XA_MOTIF_DRAG_AND_DROP_MESSAGE) {
263 printf("motif dnd msg %d\n",event->data.b[0]);
264 if (event->data.b[0] == XmDROP_START){
265 unsigned x_root, y_root, flags;
266 unsigned char reason;
267 unsigned long timestamp;
268 Atom atom;
269 Window source_window;
270 MotifDragInitiatorInfo *initiator_info;
271 Atom ret_type;
272 int ret_format;
273 unsigned long ret_item;
274 unsigned long remain_byte;
276 reason = event->data.b[0];
277 flags = event->data.s[1];
278 timestamp = event->data.l[1];
279 x_root = event->data.s[4];
280 y_root = event->data.s[5];
281 atom = event->data.l[3];
282 source_window = event->data.l[4];
284 XGetWindowProperty(dpy, source_window, atom,
285 0, sizeof(*initiator_info), True, atom_support,
286 &ret_type, &ret_format,
287 &ret_item, &remain_byte, (unsigned char **)&initiator_info);
290 else */
291 if (event->message_type == _XA_XdndEnter) {
292 if ((event->data.l[1] & 1) == 0){
293 atom_support = event->data.l[2];
296 else puts("enter more than 3 types");
298 return True;
299 } else if (event->message_type == _XA_XdndLeave) {
300 return True;
301 } else if (event->message_type == _XA_XdndDrop) {
302 if (event->data.l[0] == XGetSelectionOwner(dpy, _XA_XdndSelection)){
303 XConvertSelection(dpy, _XA_XdndSelection, atom_support,
304 _XA_WINDOWMAKER_XDNDEXCHANGE, event->window, CurrentTime);
306 else {
307 puts("wierd selection owner? QT?");
308 XConvertSelection(dpy, _XA_XdndSelection, atom_support,
309 _XA_WINDOWMAKER_XDNDEXCHANGE, event->window, CurrentTime);
311 return True;
312 } else if (event->message_type == _XA_XdndPosition) {
313 XEvent xevent;
314 Window srcwin = event->data.l[0];
315 if (atom_support != XInternAtom(dpy, "text/uri-list", False)) {
316 return True;
319 memset (&xevent, 0, sizeof(xevent));
320 xevent.xany.type = ClientMessage;
321 xevent.xany.display = dpy;
322 xevent.xclient.window = srcwin;
323 xevent.xclient.message_type = _XA_XdndStatus;
324 xevent.xclient.format = 32;
326 XDND_STATUS_TARGET_WIN (&xevent) = event->window;
327 XDND_STATUS_WILL_ACCEPT_SET (&xevent, acceptXDND(event->window));
328 XDND_STATUS_WANT_POSITION_SET(&xevent, True);
329 XDND_STATUS_RECT_SET(&xevent, 0, 0, 1024,768);
330 XDND_STATUS_ACTION(&xevent) = _XA_XdndActionCopy;
332 XSendEvent(dpy, srcwin, 0, 0, &xevent);
334 return True;
336 return False;
339 #endif