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 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179
|
#include "wconfig.h"
#include "WINGsP.h"
#include <X11/Xatom.h>
#include <X11/cursorfont.h>
#ifdef USE_XSHAPE
#include <X11/extensions/shape.h>
#endif
#define XDND_DESTINATION_RESPONSE_MAX_DELAY 10000
#define MIN_X_MOVE_OFFSET 5
#define MIN_Y_MOVE_OFFSET 5
#define MAX_SLIDEBACK_ITER 15
#define XDND_PROPERTY_FORMAT 32
#define XDND_ACTION_DESCRIPTION_FORMAT 8
#define XDND_DEST_VERSION(dragInfo) dragInfo->protocolVersion
#define XDND_SOURCE_INFO(dragInfo) dragInfo->sourceInfo
#define XDND_DEST_WIN(dragInfo) dragInfo->sourceInfo->destinationWindow
#define XDND_SOURCE_ACTION(dragInfo) dragInfo->sourceAction
#define XDND_DEST_ACTION(dragInfo) dragInfo->destinationAction
#define XDND_SOURCE_VIEW(dragInfo) dragInfo->sourceInfo->sourceView
#define XDND_SOURCE_STATE(dragInfo) dragInfo->sourceInfo->state
#define XDND_SELECTION_PROCS(dragInfo) dragInfo->sourceInfo->selectionProcs
#define XDND_DRAG_ICON(dragInfo) dragInfo->sourceInfo->icon
#define XDND_MOUSE_OFFSET(dragInfo) dragInfo->sourceInfo->mouseOffset
#define XDND_DRAG_CURSOR(dragInfo) dragInfo->sourceInfo->dragCursor
#define XDND_DRAG_ICON_POS(dragInfo) dragInfo->sourceInfo->imageLocation
#define XDND_NO_POS_ZONE(dragInfo) dragInfo->sourceInfo->noPositionMessageZone
#define XDND_TIMESTAMP(dragInfo) dragInfo->timestamp
#define XDND_3_TYPES(dragInfo) dragInfo->sourceInfo->firstThreeTypes
#define XDND_SOURCE_VIEW_STORED(dragInfo) dragInfo->sourceInfo != NULL \
&& dragInfo->sourceInfo->sourceView != NULL
static WMHandlerID dndSourceTimer = NULL;
static void *idleState(WMView * srcView, XClientMessageEvent * event, WMDraggingInfo * info);
static void *dropAllowedState(WMView * srcView, XClientMessageEvent * event, WMDraggingInfo * info);
static void *finishDropState(WMView * srcView, XClientMessageEvent * event, WMDraggingInfo * info);
#ifdef XDND_DEBUG
static const char *stateName(W_DndState * state)
{
if (state == NULL)
return "no state defined";
if (state == idleState)
return "idleState";
if (state == dropAllowedState)
return "dropAllowedState";
if (state == finishDropState)
return "finishDropState";
return "unknown state";
}
#endif
static WMScreen *sourceScreen(WMDraggingInfo * info)
{
return W_VIEW_SCREEN(XDND_SOURCE_VIEW(info));
}
static void endDragProcess(WMDraggingInfo * info, Bool deposited)
{
WMView *view = XDND_SOURCE_VIEW(info);
WMScreen *scr = W_VIEW_SCREEN(XDND_SOURCE_VIEW(info));
/* free selection handler while view exists */
WMDeleteSelectionHandler(view, scr->xdndSelectionAtom, CurrentTime);
wfree(XDND_SELECTION_PROCS(info));
if (XDND_DRAG_CURSOR(info) != None) {
XFreeCursor(scr->display, XDND_DRAG_CURSOR(info));
XDND_DRAG_CURSOR(info) = None;
}
if (view->dragSourceProcs->endedDrag != NULL) {
/* this can destroy source view (with a "move" action for example) */
view->dragSourceProcs->endedDrag(view, &XDND_DRAG_ICON_POS(info), deposited);
}
/* clear remaining draggging infos */
wfree(XDND_SOURCE_INFO(info));
XDND_SOURCE_INFO(info) = NULL;
}
/* ----- drag cursor ----- */
static void initDragCursor(WMDraggingInfo * info)
{
WMScreen *scr = sourceScreen(info);
XColor cursorFgColor, cursorBgColor;
/* green */
cursorFgColor.red = 0x4500;
cursorFgColor.green = 0xb000;
cursorFgColor.blue = 0x4500;
/* white */
cursorBgColor.red = 0xffff;
cursorBgColor.green = 0xffff;
cursorBgColor.blue = 0xffff;
XDND_DRAG_CURSOR(info) = XCreateFontCursor(scr->display, XC_left_ptr);
XRecolorCursor(scr->display, XDND_DRAG_CURSOR(info), &cursorFgColor, &cursorBgColor);
XFlush(scr->display);
}
static void recolorCursor(WMDraggingInfo * info, Bool dropIsAllowed)
{
WMScreen *scr = sourceScreen(info);
if (dropIsAllowed) {
XDefineCursor(scr->display, scr->rootWin, XDND_DRAG_CURSOR(info));
} else {
XDefineCursor(scr->display, scr->rootWin, scr->defaultCursor);
}
XFlush(scr->display);
}
/* ----- end of drag cursor ----- */
/* ----- selection procs ----- */
static WMData *convertSelection(WMView * view, Atom selection, Atom target, void *cdata, Atom * type)
{
WMScreen *scr;
WMData *data;
char *typeName;
/* Parameter not used, but tell the compiler that it is ok */
(void) selection;
(void) cdata;
scr = W_VIEW_SCREEN(view);
typeName = XGetAtomName(scr->display, target);
*type = target;
if (view->dragSourceProcs->fetchDragData != NULL) {
data = view->dragSourceProcs->fetchDragData(view, typeName);
} else {
data = NULL;
}
if (typeName != NULL)
XFree(typeName);
return data;
}
static void selectionLost(WMView * view, Atom selection, void *cdata)
{
/* Parameter not used, but tell the compiler that it is ok */
(void) view;
(void) selection;
(void) cdata;
wwarning(_("XDND selection lost during drag operation..."));
}
static void selectionDone(WMView * view, Atom selection, Atom target, void *cdata)
{
/* Parameter not used, but tell the compiler that it is ok */
(void) view;
(void) selection;
(void) target;
(void) cdata;
#ifdef XDND_DEBUG
printf("selection done\n");
#endif
}
/* ----- end of selection procs ----- */
/* ----- visual part ----- */
static Window makeDragIcon(WMScreen * scr, WMPixmap * pixmap)
{
Window window;
WMSize size;
unsigned long flags;
XSetWindowAttributes attribs;
if (!pixmap) {
pixmap = scr->defaultObjectIcon;
}
size = WMGetPixmapSize(pixmap);
flags = CWSaveUnder | CWBackPixmap | CWOverrideRedirect | CWColormap;
attribs.save_under = True;
attribs.background_pixmap = pixmap->pixmap;
attribs.override_redirect = True;
attribs.colormap = scr->colormap;
window = XCreateWindow(scr->display, scr->rootWin, 0, 0, size.width,
size.height, 0, scr->depth, InputOutput, scr->visual, flags, &attribs);
#ifdef USE_XSHAPE
if (pixmap->mask) {
XShapeCombineMask(scr->display, window, ShapeBounding, 0, 0, pixmap->mask, ShapeSet);
}
#endif
return window;
}
static void slideWindow(Display * dpy, Window win, int srcX, int srcY, int dstX, int dstY)
{
double x, y, dx, dy;
int i;
int iterations;
iterations = WMIN(MAX_SLIDEBACK_ITER, WMAX(abs(dstX - srcX), abs(dstY - srcY)));
x = srcX;
y = srcY;
dx = (double)(dstX - srcX) / iterations;
dy = (double)(dstY - srcY) / iterations;
for (i = 0; i <= iterations; i++) {
XMoveWindow(dpy, win, x, y);
XFlush(dpy);
wusleep(800);
x += dx;
y += dy;
}
}
static int getInitialDragImageCoord(int viewCoord, int mouseCoord, int viewSize, int iconSize)
{
if (iconSize >= viewSize) {
/* center icon coord on view */
return viewCoord - iconSize / 2;
} else {
/* try to center icon on mouse pos */
if (mouseCoord - iconSize / 2 <= viewCoord)
/* if icon was centered on mouse, it would be off view
thus, put icon left (resp. top) side
at view (resp. top) side */
return viewCoord;
else if (mouseCoord + iconSize / 2 >= viewCoord + viewSize)
/* if icon was centered on mouse, it would be off view
thus, put icon right (resp. bottom) side
at view right (resp. bottom) side */
return viewCoord + viewSize - iconSize;
else
return mouseCoord - iconSize / 2;
}
}
static void initDragImagePos(WMView * view, WMDraggingInfo * info, XEvent * event)
{
WMSize iconSize = WMGetPixmapSize(view->dragImage);
WMSize viewSize = WMGetViewSize(view);
WMPoint viewPos;
Window foo;
XTranslateCoordinates(W_VIEW_SCREEN(view)->display,
WMViewXID(view), W_VIEW_SCREEN(view)->rootWin,
0, 0, &(viewPos.x), &(viewPos.y), &foo);
/* set icon pos */
XDND_DRAG_ICON_POS(info).x =
getInitialDragImageCoord(viewPos.x, event->xmotion.x_root, viewSize.width, iconSize.width);
XDND_DRAG_ICON_POS(info).y =
getInitialDragImageCoord(viewPos.y, event->xmotion.y_root, viewSize.height, iconSize.height);
/* set mouse offset relative to icon */
XDND_MOUSE_OFFSET(info).x = event->xmotion.x_root - XDND_DRAG_ICON_POS(info).x;
XDND_MOUSE_OFFSET(info).y = event->xmotion.y_root - XDND_DRAG_ICON_POS(info).y;
}
static void refreshDragImage(WMView * view, WMDraggingInfo * info)
{
WMScreen *scr = W_VIEW_SCREEN(view);
XMoveWindow(scr->display, XDND_DRAG_ICON(info), XDND_DRAG_ICON_POS(info).x, XDND_DRAG_ICON_POS(info).y);
}
static void startDragImage(WMView * view, WMDraggingInfo * info, XEvent * event)
{
WMScreen *scr = W_VIEW_SCREEN(view);
XDND_DRAG_ICON(info) = makeDragIcon(scr, view->dragImage);
initDragImagePos(view, info, event);
refreshDragImage(view, info);
XMapRaised(scr->display, XDND_DRAG_ICON(info));
initDragCursor(info);
}
static void endDragImage(WMDraggingInfo * info, Bool slideBack)
{
WMView *view = XDND_SOURCE_VIEW(info);
Display *dpy = W_VIEW_SCREEN(view)->display;
if (slideBack) {
WMPoint toLocation;
Window foo;
XTranslateCoordinates(W_VIEW_SCREEN(view)->display,
WMViewXID(view), W_VIEW_SCREEN(view)->rootWin,
0, 0, &(toLocation.x), &(toLocation.y), &foo);
slideWindow(dpy, XDND_DRAG_ICON(info),
XDND_DRAG_ICON_POS(info).x, XDND_DRAG_ICON_POS(info).y, toLocation.x, toLocation.y);
}
XDestroyWindow(dpy, XDND_DRAG_ICON(info));
}
/* ----- end of visual part ----- */
/* ----- messages ----- */
/* send a DnD message to the destination window */
static Bool
sendDnDClientMessage(WMDraggingInfo * info, Atom message,
unsigned long data1, unsigned long data2, unsigned long data3, unsigned long data4)
{
Display *dpy = sourceScreen(info)->display;
Window srcWin = WMViewXID(XDND_SOURCE_VIEW(info));
Window destWin = XDND_DEST_WIN(info);
if (!W_SendDnDClientMessage(dpy, destWin, message, srcWin, data1, data2, data3, data4)) {
/* drop failed */
recolorCursor(info, False);
endDragImage(info, True);
endDragProcess(info, False);
return False;
}
return True;
}
static Bool sendEnterMessage(WMDraggingInfo * info)
{
WMScreen *scr = sourceScreen(info);
unsigned long version;
if (XDND_DEST_VERSION(info) > 2) {
if (XDND_DEST_VERSION(info) < XDND_VERSION)
version = XDND_DEST_VERSION(info);
else
version = XDND_VERSION;
} else {
version = 3;
}
return sendDnDClientMessage(info, scr->xdndEnterAtom, (version << 24) | 1, /* 1: support of type list */
XDND_3_TYPES(info)[0], XDND_3_TYPES(info)[1], XDND_3_TYPES(info)[2]);
}
static Bool sendPositionMessage(WMDraggingInfo * info, WMPoint * mousePos)
{
WMScreen *scr = sourceScreen(info);
WMRect *noPosZone = &(XDND_NO_POS_ZONE(info));
if (noPosZone->size.width != 0 || noPosZone->size.height != 0) {
if (mousePos->x < noPosZone->pos.x || mousePos->x > (noPosZone->pos.x + noPosZone->size.width)
|| mousePos->y < noPosZone->pos.y || mousePos->y > (noPosZone->pos.y + noPosZone->size.height)) {
/* send position if out of zone defined by destination */
return sendDnDClientMessage(info, scr->xdndPositionAtom,
0,
mousePos->x << 16 | mousePos->y,
XDND_TIMESTAMP(info), XDND_SOURCE_ACTION(info));
}
/* Nothing to send, always succeed */
return True;
}
/* send position on each move */
return sendDnDClientMessage(info, scr->xdndPositionAtom,
0,
mousePos->x << 16 | mousePos->y,
XDND_TIMESTAMP(info), XDND_SOURCE_ACTION(info));
}
static Bool sendLeaveMessage(WMDraggingInfo * info)
{
WMScreen *scr = sourceScreen(info);
return sendDnDClientMessage(info, scr->xdndLeaveAtom, 0, 0, 0, 0);
}
static Bool sendDropMessage(WMDraggingInfo * info)
{
WMScreen *scr = sourceScreen(info);
return sendDnDClientMessage(info, scr->xdndDropAtom, 0, XDND_TIMESTAMP(info), 0, 0);
}
/* ----- end of messages ----- */
static Atom *getTypeAtomList(WMScreen * scr, WMView * view, int *count)
{
WMArray *types;
Atom *typeAtoms;
int i;
types = view->dragSourceProcs->dropDataTypes(view);
if (types != NULL) {
*count = WMGetArrayItemCount(types);
if (*count > 0) {
typeAtoms = wmalloc((*count) * sizeof(Atom));
for (i = 0; i < *count; i++) {
typeAtoms[i] = XInternAtom(scr->display, WMGetFromArray(types, i), False);
}
/* WMFreeArray(types); */
return typeAtoms;
}
/* WMFreeArray(types); */
}
*count = 1;
typeAtoms = wmalloc(sizeof(Atom));
*typeAtoms = None;
return typeAtoms;
}
static void registerDropTypes(WMScreen * scr, WMView * view, WMDraggingInfo * info)
{
Atom *typeList;
int i, count;
typeList = getTypeAtomList(scr, view, &count);
/* store the first 3 types */
for (i = 0; i < 3 && i < count; i++)
XDND_3_TYPES(info)[i] = typeList[i];
for (; i < 3; i++)
XDND_3_TYPES(info)[i] = None;
/* store the entire type list */
XChangeProperty(scr->display,
WMViewXID(view),
scr->xdndTypeListAtom,
XA_ATOM, XDND_PROPERTY_FORMAT, PropModeReplace, (unsigned char *)typeList, count);
}
static void registerOperationList(WMScreen * scr, WMView * view, WMArray * operationArray)
{
Atom *actionList;
WMDragOperationType operation;
int count = WMGetArrayItemCount(operationArray);
int i;
actionList = wmalloc(sizeof(Atom) * count);
for (i = 0; i < count; i++) {
operation = WMGetDragOperationItemType(WMGetFromArray(operationArray, i));
actionList[i] = W_OperationToAction(scr, operation);
}
XChangeProperty(scr->display,
WMViewXID(view),
scr->xdndActionListAtom,
XA_ATOM, XDND_PROPERTY_FORMAT, PropModeReplace, (unsigned char *)actionList, count);
}
static void registerDescriptionList(WMScreen * scr, WMView * view, WMArray * operationArray)
{
char *text, *textListItem, *textList;
int count = WMGetArrayItemCount(operationArray);
int i;
int size = 0;
/* size of XA_STRING info */
for (i = 0; i < count; i++) {
size += strlen(WMGetDragOperationItemText(WMGetFromArray(operationArray, i))) + 1 /* NULL */;
}
/* create text list */
textList = wmalloc(size);
textListItem = textList;
for (i = 0; i < count; i++) {
text = WMGetDragOperationItemText(WMGetFromArray(operationArray, i));
wstrlcpy(textListItem, text, size);
/* to next text offset */
textListItem = &(textListItem[strlen(textListItem) + 1]);
}
XChangeProperty(scr->display,
WMViewXID(view),
scr->xdndActionDescriptionAtom,
XA_STRING,
XDND_ACTION_DESCRIPTION_FORMAT, PropModeReplace, (unsigned char *)textList, size);
}
/* called if wanted operation is WDOperationAsk */
static void registerSupportedOperations(WMView * view)
{
WMScreen *scr = W_VIEW_SCREEN(view);
WMArray *operationArray;
operationArray = view->dragSourceProcs->askedOperations(view);
registerOperationList(scr, view, operationArray);
registerDescriptionList(scr, view, operationArray);
/* WMFreeArray(operationArray); */
}
static void initSourceDragInfo(WMView * sourceView, WMDraggingInfo * info)
{
WMRect emptyZone;
XDND_SOURCE_INFO(info) = (W_DragSourceInfo *) wmalloc(sizeof(W_DragSourceInfo));
XDND_SOURCE_VIEW(info) = sourceView;
XDND_DEST_WIN(info) = None;
XDND_DRAG_ICON(info) = None;
XDND_SOURCE_ACTION(info) = W_OperationToAction(W_VIEW_SCREEN(sourceView),
sourceView->dragSourceProcs->
wantedDropOperation(sourceView));
XDND_DEST_ACTION(info) = None;
XDND_SOURCE_STATE(info) = idleState;
emptyZone.pos = wmkpoint(0, 0);
emptyZone.size = wmksize(0, 0);
XDND_NO_POS_ZONE(info) = emptyZone;
}
/*
Returned array is destroyed after dropDataTypes call
*/
static WMArray *defDropDataTypes(WMView * self)
{
/* Parameter not used, but tell the compiler that it is ok */
(void) self;
return NULL;
}
static WMDragOperationType defWantedDropOperation(WMView * self)
{
/* Parameter not used, but tell the compiler that it is ok */
(void) self;
return WDOperationNone;
}
/*
Must be defined if wantedDropOperation return WDOperationAsk
(useless otherwise).
Return a WMDragOperationItem array (destroyed after call).
A WMDragOperationItem links a label to an operation.
static WMArray*
defAskedOperations(WMView *self); */
static Bool defAcceptDropOperation(WMView * self, WMDragOperationType allowedOperation)
{
/* Parameter not used, but tell the compiler that it is ok */
(void) self;
(void) allowedOperation;
return False;
}
static void defBeganDrag(WMView * self, WMPoint * point)
{
/* Parameter not used, but tell the compiler that it is ok */
(void) self;
(void) point;
}
static void defEndedDrag(WMView * self, WMPoint * point, Bool deposited)
{
/* Parameter not used, but tell the compiler that it is ok */
(void) self;
(void) point;
(void) deposited;
}
/*
Returned data is not destroyed
*/
static WMData *defFetchDragData(WMView * self, char *type)
{
/* Parameter not used, but tell the compiler that it is ok */
(void) self;
(void) type;
return NULL;
}
void WMSetViewDragSourceProcs(WMView * view, WMDragSourceProcs * procs)
{
if (view->dragSourceProcs)
wfree(view->dragSourceProcs);
view->dragSourceProcs = wmalloc(sizeof(WMDragSourceProcs));
*view->dragSourceProcs = *procs;
if (procs->dropDataTypes == NULL)
view->dragSourceProcs->dropDataTypes = defDropDataTypes;
if (procs->wantedDropOperation == NULL)
view->dragSourceProcs->wantedDropOperation = defWantedDropOperation;
/*
Note: askedOperations can be NULL, if wantedDropOperation never returns
WDOperationAsk.
*/
if (procs->acceptDropOperation == NULL)
view->dragSourceProcs->acceptDropOperation = defAcceptDropOperation;
if (procs->beganDrag == NULL)
view->dragSourceProcs->beganDrag = defBeganDrag;
if (procs->endedDrag == NULL)
view->dragSourceProcs->endedDrag = defEndedDrag;
if (procs->fetchDragData == NULL)
view->dragSourceProcs->fetchDragData = defFetchDragData;
}
static Bool isXdndAware(WMScreen * scr, Window win)
{
Atom type;
int format;
unsigned long count, remain;
unsigned char *winXdndVersion;
if (win == None)
return False;
XGetWindowProperty(scr->display, win, scr->xdndAwareAtom,
0, 1, False, XA_ATOM, &type, &format, &count, &remain, &winXdndVersion);
if (type != XA_ATOM || format != XDND_PROPERTY_FORMAT || count == 0 || !winXdndVersion) {
if (winXdndVersion)
XFree(winXdndVersion);
return False;
}
XFree(winXdndVersion);
return (count == 1); /* xdnd version is set */
}
static Window *windowChildren(Display * dpy, Window win, unsigned *nchildren)
{
Window *children;
Window foo, bar;
if (!XQueryTree(dpy, win, &foo, &bar, &children, nchildren)) {
*nchildren = 0;
return NULL;
} else
return children;
}
static Window lookForAwareWindow(WMScreen * scr, WMPoint * mousePos, Window win)
{
int tmpx, tmpy;
Window child;
/* Since xdnd v3, only the toplevel window should be aware */
if (isXdndAware(scr, win))
return win;
/* inspect child under pointer */
if (XTranslateCoordinates(scr->display, scr->rootWin, win, mousePos->x, mousePos->y, &tmpx, &tmpy, &child)) {
if (child == None)
return None;
else
return lookForAwareWindow(scr, mousePos, child);
}
return None;
}
static Window findDestination(WMDraggingInfo * info, WMPoint * mousePos)
{
WMScreen *scr = sourceScreen(info);
unsigned nchildren;
Window *children = windowChildren(scr->display, scr->rootWin, &nchildren);
int i;
XWindowAttributes attr;
if (isXdndAware(scr, scr->rootWin))
return scr->rootWin;
/* exclude drag icon (and upper) from search */
for (i = nchildren - 1; i >= 0; i--) {
if (children[i] == XDND_DRAG_ICON(info)) {
i--;
break;
}
}
if (i < 0) {
/* root window has no child under drag icon, and is not xdnd aware. */
return None;
}
/* inspecting children, from upper to lower */
for (; i >= 0; i--) {
if (XGetWindowAttributes(scr->display, children[i], &attr)
&& attr.map_state == IsViewable
&& mousePos->x >= attr.x
&& mousePos->y >= attr.y
&& mousePos->x < attr.x + attr.width && mousePos->y < attr.y + attr.height) {
return lookForAwareWindow(scr, mousePos, children[i]);
}
}
/* No child window under drag pointer */
return None;
}
static void storeDestinationProtocolVersion(WMDraggingInfo * info)
{
Atom type;
int format;
unsigned long count, remain;
unsigned char *winXdndVersion;
WMScreen *scr = W_VIEW_SCREEN(XDND_SOURCE_VIEW(info));
wassertr(XDND_DEST_WIN(info) != None);
if (XGetWindowProperty(scr->display, XDND_DEST_WIN(info),
scr->xdndAwareAtom,
0, 1, False, XA_ATOM, &type, &format,
&count, &remain, &winXdndVersion) == Success) {
XDND_DEST_VERSION(info) = *winXdndVersion;
XFree(winXdndVersion);
} else {
XDND_DEST_VERSION(info) = 0;
wwarning(_("could not get XDND version for target of drop"));
}
}
static void initMotionProcess(WMView * view, WMDraggingInfo * info, XEvent * event, WMPoint * startLocation)
{
WMScreen *scr = W_VIEW_SCREEN(view);
/* take ownership of XdndSelection */
XDND_SELECTION_PROCS(info) = (WMSelectionProcs *) wmalloc(sizeof(WMSelectionProcs));
XDND_SELECTION_PROCS(info)->convertSelection = convertSelection;
XDND_SELECTION_PROCS(info)->selectionLost = selectionLost;
XDND_SELECTION_PROCS(info)->selectionDone = selectionDone;
XDND_TIMESTAMP(info) = event->xmotion.time;
if (!WMCreateSelectionHandler(view, scr->xdndSelectionAtom, CurrentTime, XDND_SELECTION_PROCS(info), NULL)) {
wwarning(_("could not get ownership of XDND selection"));
return;
}
registerDropTypes(scr, view, info);
if (XDND_SOURCE_ACTION(info) == W_VIEW_SCREEN(view)->xdndActionAsk)
registerSupportedOperations(view);
if (view->dragSourceProcs->beganDrag != NULL) {
view->dragSourceProcs->beganDrag(view, startLocation);
}
}
static void processMotion(WMDraggingInfo * info, WMPoint * mousePos)
{
Window newDestination = findDestination(info, mousePos);
W_DragSourceStopTimer();
if (newDestination != XDND_DEST_WIN(info)) {
recolorCursor(info, False);
if (XDND_DEST_WIN(info) != None) {
/* leaving a xdnd window */
sendLeaveMessage(info);
}
XDND_DEST_WIN(info) = newDestination;
XDND_DEST_ACTION(info) = None;
XDND_NO_POS_ZONE(info).size.width = 0;
XDND_NO_POS_ZONE(info).size.height = 0;
if (newDestination != None) {
/* entering a xdnd window */
XDND_SOURCE_STATE(info) = idleState;
storeDestinationProtocolVersion(info);
if (!sendEnterMessage(info)) {
XDND_DEST_WIN(info) = None;
return;
}
W_DragSourceStartTimer(info);
} else {
XDND_SOURCE_STATE(info) = NULL;
}
} else {
if (XDND_DEST_WIN(info) != None) {
if (!sendPositionMessage(info, mousePos)) {
XDND_DEST_WIN(info) = None;
return;
}
W_DragSourceStartTimer(info);
}
}
}
static Bool processButtonRelease(WMDraggingInfo * info)
{
if (XDND_SOURCE_STATE(info) == dropAllowedState) {
/* begin drop */
W_DragSourceStopTimer();
if (!sendDropMessage(info))
return False;
W_DragSourceStartTimer(info);
return True;
} else {
if (XDND_DEST_WIN(info) != None)
sendLeaveMessage(info);
W_DragSourceStopTimer();
return False;
}
}
Bool WMIsDraggingFromView(WMView * view)
{
WMDraggingInfo *info = &W_VIEW_SCREEN(view)->dragInfo;
return (XDND_SOURCE_INFO(info) != NULL && XDND_SOURCE_STATE(info) != finishDropState);
/* return W_VIEW_SCREEN(view)->dragInfo.sourceInfo != NULL; */
}
void WMDragImageFromView(WMView * view, XEvent * event)
{
WMDraggingInfo *info = &W_VIEW_SCREEN(view)->dragInfo;
WMPoint mouseLocation;
switch (event->type) {
case ButtonPress:
if (event->xbutton.button == Button1) {
XEvent nextEvent;
XPeekEvent(event->xbutton.display, &nextEvent);
/* Initialize only if a drag really begins (avoid clicks) */
if (nextEvent.type == MotionNotify) {
initSourceDragInfo(view, info);
}
}
break;
case ButtonRelease:
if (WMIsDraggingFromView(view)) {
Bool dropBegan = processButtonRelease(info);
recolorCursor(info, False);
if (dropBegan) {
endDragImage(info, False);
XDND_SOURCE_STATE(info) = finishDropState;
} else {
/* drop failed */
endDragImage(info, True);
endDragProcess(info, False);
}
}
break;
case MotionNotify:
if (WMIsDraggingFromView(view)) {
mouseLocation = wmkpoint(event->xmotion.x_root, event->xmotion.y_root);
if (abs(XDND_DRAG_ICON_POS(info).x - mouseLocation.x) >=
MIN_X_MOVE_OFFSET
|| abs(XDND_DRAG_ICON_POS(info).y - mouseLocation.y) >= MIN_Y_MOVE_OFFSET) {
if (XDND_DRAG_ICON(info) == None) {
initMotionProcess(view, info, event, &mouseLocation);
startDragImage(view, info, event);
} else {
XDND_DRAG_ICON_POS(info).x = mouseLocation.x - XDND_MOUSE_OFFSET(info).x;
XDND_DRAG_ICON_POS(info).y = mouseLocation.y - XDND_MOUSE_OFFSET(info).y;
refreshDragImage(view, info);
processMotion(info, &mouseLocation);
}
}
}
break;
}
}
/* Minimal mouse events handler: no right or double-click detection,
only drag is supported */
static void dragImageHandler(XEvent * event, void *cdata)
{
WMView *view = (WMView *) cdata;
WMDragImageFromView(view, event);
}
/* ----- source states ----- */
#ifdef XDND_DEBUG
static void traceStatusMsg(Display * dpy, XClientMessageEvent * statusEvent)
{
printf("Xdnd status message:\n");
if (statusEvent->data.l[1] & 0x2UL)
printf("\tsend position on every move\n");
else {
int x, y, w, h;
x = statusEvent->data.l[2] >> 16;
y = statusEvent->data.l[2] & 0xFFFFL;
w = statusEvent->data.l[3] >> 16;
h = statusEvent->data.l[3] & 0xFFFFL;
printf("\tsend position out of ((%d,%d) , (%d,%d))\n", x, y, x + w, y + h);
}
if (statusEvent->data.l[1] & 0x1L)
printf("\tallowed action: %s\n", XGetAtomName(dpy, statusEvent->data.l[4]));
else
printf("\tno action allowed\n");
}
#endif
static void storeDropAction(WMDraggingInfo * info, Atom destAction)
{
WMView *sourceView = XDND_SOURCE_VIEW(info);
WMScreen *scr = W_VIEW_SCREEN(sourceView);
if (sourceView->dragSourceProcs->acceptDropOperation != NULL) {
if (sourceView->dragSourceProcs->acceptDropOperation(sourceView,
W_ActionToOperation(scr, destAction)))
XDND_DEST_ACTION(info) = destAction;
else
XDND_DEST_ACTION(info) = None;
} else {
XDND_DEST_ACTION(info) = destAction;
}
}
static void storeStatusMessageInfos(WMDraggingInfo * info, XClientMessageEvent * statusEvent)
{
WMRect *noPosZone = &(XDND_NO_POS_ZONE(info));
#ifdef XDND_DEBUG
traceStatusMsg(sourceScreen(info)->display, statusEvent);
#endif
if (statusEvent->data.l[1] & 0x2UL) {
/* bit 1 set: destination wants position messages on every move */
noPosZone->size.width = 0;
noPosZone->size.height = 0;
} else {
/* don't send another position message while in given rectangle */
noPosZone->pos.x = statusEvent->data.l[2] >> 16;
noPosZone->pos.y = statusEvent->data.l[2] & 0xFFFFL;
noPosZone->size.width = statusEvent->data.l[3] >> 16;
noPosZone->size.height = statusEvent->data.l[3] & 0xFFFFL;
}
if ((statusEvent->data.l[1] & 0x1L) || statusEvent->data.l[4] != None) {
/* destination accept drop */
storeDropAction(info, statusEvent->data.l[4]);
} else {
XDND_DEST_ACTION(info) = None;
}
}
static void *idleState(WMView * view, XClientMessageEvent * event, WMDraggingInfo * info)
{
WMScreen *scr;
Atom destMsg = event->message_type;
scr = W_VIEW_SCREEN(view);
if (destMsg == scr->xdndStatusAtom) {
storeStatusMessageInfos(info, event);
if (XDND_DEST_ACTION(info) != None) {
recolorCursor(info, True);
W_DragSourceStartTimer(info);
return dropAllowedState;
} else {
/* drop denied */
recolorCursor(info, False);
return idleState;
}
}
if (destMsg == scr->xdndFinishedAtom) {
wwarning("received xdndFinishedAtom before drop began");
}
W_DragSourceStartTimer(info);
return idleState;
}
static void *dropAllowedState(WMView * view, XClientMessageEvent * event, WMDraggingInfo * info)
{
WMScreen *scr = W_VIEW_SCREEN(view);
Atom destMsg = event->message_type;
if (destMsg == scr->xdndStatusAtom) {
storeStatusMessageInfos(info, event);
if (XDND_DEST_ACTION(info) == None) {
/* drop denied */
recolorCursor(info, False);
return idleState;
}
}
W_DragSourceStartTimer(info);
return dropAllowedState;
}
static void *finishDropState(WMView * view, XClientMessageEvent * event, WMDraggingInfo * info)
{
WMScreen *scr = W_VIEW_SCREEN(view);
Atom destMsg = event->message_type;
if (destMsg == scr->xdndFinishedAtom) {
endDragProcess(info, True);
return NULL;
}
W_DragSourceStartTimer(info);
return finishDropState;
}
/* ----- end of source states ----- */
/* ----- source timer ----- */
static void dragSourceResponseTimeOut(void *source)
{
WMView *view = (WMView *) source;
WMDraggingInfo *info = &(W_VIEW_SCREEN(view)->dragInfo);
wwarning(_("delay for drag destination response expired"));
sendLeaveMessage(info);
recolorCursor(info, False);
if (XDND_SOURCE_STATE(info) == finishDropState) {
/* drop failed */
endDragImage(info, True);
endDragProcess(info, False);
} else {
XDND_SOURCE_STATE(info) = idleState;
}
}
void W_DragSourceStopTimer(void)
{
if (dndSourceTimer != NULL) {
WMDeleteTimerHandler(dndSourceTimer);
dndSourceTimer = NULL;
}
}
void W_DragSourceStartTimer(WMDraggingInfo * info)
{
W_DragSourceStopTimer();
dndSourceTimer = WMAddTimerHandler(XDND_DESTINATION_RESPONSE_MAX_DELAY,
dragSourceResponseTimeOut, XDND_SOURCE_VIEW(info));
}
/* ----- End of Destination timer ----- */
void W_DragSourceStateHandler(WMDraggingInfo * info, XClientMessageEvent * event)
{
WMView *view;
W_DndState *newState;
if (XDND_SOURCE_VIEW_STORED(info)) {
if (XDND_SOURCE_STATE(info) != NULL) {
view = XDND_SOURCE_VIEW(info);
#ifdef XDND_DEBUG
printf("current source state: %s\n", stateName(XDND_SOURCE_STATE(info)));
#endif
newState = (W_DndState *) XDND_SOURCE_STATE(info) (view, event, info);
#ifdef XDND_DEBUG
printf("new source state: %s\n", stateName(newState));
#endif
if (newState != NULL)
XDND_SOURCE_STATE(info) = newState;
/* else drop finished, and info has been flushed */
}
} else {
wwarning("received DnD message without having a target");
}
}
void WMSetViewDragImage(WMView * view, WMPixmap * dragImage)
{
if (view->dragImage != NULL)
WMReleasePixmap(view->dragImage);
view->dragImage = WMRetainPixmap(dragImage);
}
void WMReleaseViewDragImage(WMView * view)
{
if (view->dragImage != NULL)
WMReleasePixmap(view->dragImage);
}
/* Create a drag handler, associating drag event masks with dragEventProc */
void WMCreateDragHandler(WMView * view, WMEventProc * dragEventProc, void *clientData)
{
WMCreateEventHandler(view,
ButtonPressMask | ButtonReleaseMask | Button1MotionMask, dragEventProc, clientData);
}
void WMDeleteDragHandler(WMView * view, WMEventProc * dragEventProc, void *clientData)
{
WMDeleteEventHandler(view,
ButtonPressMask | ButtonReleaseMask | Button1MotionMask, dragEventProc, clientData);
}
/* set default drag handler for view */
void WMSetViewDraggable(WMView * view, WMDragSourceProcs * dragSourceProcs, WMPixmap * dragImage)
{
wassertr(dragImage != NULL);
view->dragImage = WMRetainPixmap(dragImage);
WMSetViewDragSourceProcs(view, dragSourceProcs);
WMCreateDragHandler(view, dragImageHandler, view);
}
void WMUnsetViewDraggable(WMView * view)
{
if (view->dragSourceProcs) {
wfree(view->dragSourceProcs);
view->dragSourceProcs = NULL;
}
WMReleaseViewDragImage(view);
WMDeleteDragHandler(view, dragImageHandler, view);
}
|