File: dragcommon.c

package info (click to toggle)
wmaker 0.96.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 15,332 kB
  • sloc: ansic: 99,482; sh: 7,068; perl: 3,423; makefile: 1,647; lisp: 219; python: 34
file content (259 lines) | stat: -rw-r--r-- 6,204 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
#include "wconfig.h"

#include "WINGsP.h"

#define XDND_SOURCE_VERSION(dragInfo) dragInfo->protocolVersion
#define XDND_DEST_INFO(dragInfo) dragInfo->destInfo
#define XDND_DEST_VIEW(dragInfo) dragInfo->destInfo->destView

static Bool _WindowExists;

Atom W_OperationToAction(WMScreen * scr, WMDragOperationType operation)
{
	switch (operation) {
	case WDOperationNone:
		return None;

	case WDOperationCopy:
		return scr->xdndActionCopy;

	case WDOperationMove:
		return scr->xdndActionMove;

	case WDOperationLink:
		return scr->xdndActionLink;

	case WDOperationAsk:
		return scr->xdndActionAsk;

	case WDOperationPrivate:
		return scr->xdndActionPrivate;

	default:
		return None;
	}
}

WMDragOperationType W_ActionToOperation(WMScreen * scr, Atom action)
{
	if (action == scr->xdndActionCopy) {
		return WDOperationCopy;

	} else if (action == scr->xdndActionMove) {
		return WDOperationMove;

	} else if (action == scr->xdndActionLink) {
		return WDOperationLink;

	} else if (action == scr->xdndActionAsk) {
		return WDOperationAsk;

	} else if (action == scr->xdndActionPrivate) {
		return WDOperationPrivate;

	} else if (action == None) {

		return WDOperationNone;
	} else {
		char *tmp = XGetAtomName(scr->display, action);

		wwarning(_("unknown XDND action %s"), tmp);
		XFree(tmp);

		return WDOperationCopy;
	}
}

static void freeDragOperationItem(void *item)
{
	wfree(item);
}

WMArray *WMCreateDragOperationArray(int initialSize)
{
	return WMCreateArrayWithDestructor(initialSize, freeDragOperationItem);
}

WMDragOperationItem *WMCreateDragOperationItem(WMDragOperationType type, char *text)
{
	W_DragOperationItem *result = wmalloc(sizeof(W_DragOperationItem));

	result->type = type;
	result->text = text;

	return (WMDragOperationItem *) result;
}

WMDragOperationType WMGetDragOperationItemType(WMDragOperationItem * item)
{
	return ((W_DragOperationItem *) item)->type;
}

char *WMGetDragOperationItemText(WMDragOperationItem * item)
{
	return ((W_DragOperationItem *) item)->text;
}

static int handleNoWindowXError(Display * dpy, XErrorEvent * errEvt)
{
	/* Parameter not used, but tell the compiler that it is ok */
	(void) dpy;

	if (errEvt->error_code == BadWindow || errEvt->error_code == BadDrawable) {
		_WindowExists = False;
		return Success;
	}

	return errEvt->error_code;
}

static Bool windowExists(Display * dpy, Window win)
{
	void *previousErrorHandler;
	XWindowAttributes attr;

	XSynchronize(dpy, True);
	previousErrorHandler = XSetErrorHandler(handleNoWindowXError);
	_WindowExists = True;

	/* can generate BadDrawable or BadWindow */
	XGetWindowAttributes(dpy, win, &attr);

	XSetErrorHandler(previousErrorHandler);
	XSynchronize(dpy, False);
	return _WindowExists;
}

Bool
W_SendDnDClientMessage(Display * dpy, Window win, Atom message,
		       unsigned long data0,
		       unsigned long data1, unsigned long data2, unsigned long data3, unsigned long data4)
{
	XEvent ev;

#ifdef XDND_DEBUG
	char *msgName = XGetAtomName(dpy, message);

	printf("sending message %s ... ", msgName);
	XFree(msgName);
#endif

	if (!windowExists(dpy, win)) {
		wwarning(_("target %lu for XDND message no longer exists"), win);
		return False;	/* message not sent */
	}

	ev.type = ClientMessage;
	ev.xclient.message_type = message;
	ev.xclient.format = 32;
	ev.xclient.window = win;
	ev.xclient.data.l[0] = data0;
	ev.xclient.data.l[1] = data1;
	ev.xclient.data.l[2] = data2;
	ev.xclient.data.l[3] = data3;
	ev.xclient.data.l[4] = data4;

	XSendEvent(dpy, win, False, 0, &ev);
	XFlush(dpy);

#ifdef XDND_DEBUG
	printf("sent\n");
#endif
	return True;		/* message sent */
}

static void handleLeaveMessage(WMDraggingInfo * info)
{
	if (XDND_DEST_INFO(info) != NULL) {
		/* XDND_DEST_VIEW is never NULL (it's the xdnd aware view) */
		wassertr(XDND_DEST_VIEW(info) != NULL);
		if (XDND_DEST_VIEW(info)->dragDestinationProcs != NULL) {
			XDND_DEST_VIEW(info)->dragDestinationProcs->concludeDragOperation(XDND_DEST_VIEW(info));
		}
		W_DragDestinationInfoClear(info);
	}
}

void W_HandleDNDClientMessage(WMView * toplevel, XClientMessageEvent * event)
{
	WMScreen *scr = W_VIEW_SCREEN(toplevel);
	WMDraggingInfo *info = &scr->dragInfo;
	Atom messageType = event->message_type;

#ifdef XDND_DEBUG
	{
		char *msgTypeName = XGetAtomName(scr->display, messageType);

		if (msgTypeName != NULL)
			printf("event type = %s\n", msgTypeName);
		else
			printf("pb with event type !\n");
	}
#endif

	/* Messages from destination to source */
	if (messageType == scr->xdndStatusAtom || messageType == scr->xdndFinishedAtom) {
		W_DragSourceStopTimer();
		W_DragSourceStateHandler(info, event);
		return;
	}

	/* Messages from source to destination */
	if (messageType == scr->xdndEnterAtom) {
		Bool positionSent = (XDND_DEST_INFO(info) != NULL);

		W_DragDestinationStopTimer();
		W_DragDestinationStoreEnterMsgInfo(info, toplevel, event);

		/* Xdnd version 3 and up are not compatible with version 1 or 2 */
		if (XDND_SOURCE_VERSION(info) > 2) {

			if (positionSent) {
				/* xdndPosition previously received on xdnd aware view */
				W_DragDestinationStateHandler(info, event);
				return;
			} else {
				W_DragDestinationStartTimer(info);
				return;
			}
		} else {
			wwarning(_("unsupported version %i for XDND enter message"), XDND_SOURCE_VERSION(info));
			W_DragDestinationCancelDropOnEnter(toplevel, info);
			return;
		}
	}

	if (messageType == scr->xdndPositionAtom) {
		W_DragDestinationStopTimer();
		W_DragDestinationStorePositionMsgInfo(info, toplevel, event);
		W_DragDestinationStateHandler(info, event);
		return;
	}

	if (messageType == scr->xdndSelectionAtom || messageType == scr->xdndDropAtom) {
		W_DragDestinationStopTimer();
		W_DragDestinationStateHandler(info, event);
		return;
	}

	if (messageType == scr->xdndLeaveAtom) {
		/* conclude drop operation, and clear dragging info */
		W_DragDestinationStopTimer();
		handleLeaveMessage(info);
	}
}

/* called in destroyView (wview.c) */
void W_FreeViewXdndPart(WMView * view)
{
	WMUnregisterViewDraggedTypes(view);

	if (view->dragSourceProcs)
		wfree(view->dragSourceProcs);

	if (view->dragDestinationProcs)
		wfree(view->dragDestinationProcs);

	if (view->dragImage)
		WMReleasePixmap(view->dragImage);
}