File: drag-move-v1_5.patch

package info (click to toggle)
nedit 1%3A5.7-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,656 kB
  • sloc: ansic: 95,124; xml: 1,427; yacc: 679; makefile: 342; awk: 40; sh: 12
file content (960 lines) | stat: -rw-r--r-- 34,262 bytes parent folder | download | duplicates (4)
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
Description: Move tabs by drag and drop
Author: Maxim Yanchenko
---
Origin: http://sourceforge.net/p/nedit/patches/170/

Index: nedit/source/preferences.c
===================================================================
--- nedit.orig/source/preferences.c
+++ nedit/source/preferences.c
@@ -291,6 +291,9 @@ static struct prefData {
     XFontStruct *italicFontStruct;
     XFontStruct *boldItalicFontStruct;
     int sortTabs;		/* sort tabs alphabetically */
+    int dragDropTabs;		/* enable drag&drop for tabs */
+    int dragDropTabsCursor;		/* enable nice cursor for tabs drag&drop */
+    int dragDropTabsAnimation;		/* enable drag&drop animation */
     int repositionDialogs;	/* w. to reposition dialogs under the pointer */
     int autoScroll;             /* w. to autoscroll near top/bottom of screen */
     int autoScrollVPadding;     /* how close to get before autoscrolling */
@@ -898,6 +901,12 @@ static PrefDescripRec PrefDescrip[] = {
     	&PrefData.iSearchLine, NULL, True},
     {"sortTabs", "SortTabs", PREF_BOOLEAN, "False",
     	&PrefData.sortTabs, NULL, True},
+    {"dragDropTabs", "DragDropTabs", PREF_BOOLEAN, "False",
+    	&PrefData.dragDropTabs, NULL, True},
+    {"dragDropTabsCursor", "DragDropTabsCursor", PREF_BOOLEAN, "False",
+    	&PrefData.dragDropTabsCursor, NULL, True},
+    {"dragDropTabsAnimation", "DragDropTabsAnimation", PREF_BOOLEAN, "False",
+    	&PrefData.dragDropTabsAnimation, NULL, True},
     {"tabBar", "TabBar", PREF_BOOLEAN, "True",
     	&PrefData.tabBar, NULL, True},
     {"tabBarHideOne", "TabBarHideOne", PREF_BOOLEAN, "True",
@@ -1690,6 +1699,36 @@ int GetPrefSortTabs(void)
     return PrefData.sortTabs;
 }
 
+void SetPerfDragDropTabs(int state)
+{
+    setIntPref(&PrefData.dragDropTabs, state);
+}
+
+int GetPerfDragDropTabs(void)
+{
+    return PrefData.dragDropTabs;
+}
+
+void SetPerfDragDropTabsCursor(int state)
+{
+    setIntPref(&PrefData.dragDropTabsCursor, state);
+}
+
+int GetPerfDragDropTabsCursor(void)
+{
+    return PrefData.dragDropTabsCursor;
+}
+
+void SetPerfDragDropTabsAnimation(int state)
+{
+    setIntPref(&PrefData.dragDropTabsAnimation, state);
+}
+
+int GetPerfDragDropTabsAnimation(void)
+{
+    return PrefData.dragDropTabsAnimation;
+}
+
 void SetPrefTabBar(int state)
 {
     setIntPref(&PrefData.tabBar, state);
Index: nedit/source/tabDragDrop.c
===================================================================
--- /dev/null
+++ nedit/source/tabDragDrop.c
@@ -0,0 +1,713 @@
+/* $Id: tabDragDrop.c,v 1.25 2004/08/20 19:33:21 n8gray Exp $ */
+/*******************************************************************************
+*                                                                              *
+* tabDragDrop.c -- Nirvana Editor Tab Drag&Drop implementation file            *
+*                                                                              *
+* Copyright 2008 The NEdit Developers                                          *
+*                                                                              *
+* This is free software; you can redistribute it and/or modify it under the    *
+* terms of the GNU General Public License as published by the Free Software    *
+* Foundation; either version 2 of the License, or (at your option) any later   *
+* version. In addition, you may distribute version of this program linked to   *
+* Motif or Open Motif. See README for details.                                 *
+*                                                                              *
+* This software is distributed in the hope that it will be useful, but WITHOUT *
+* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or        *
+* FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License *
+* for more details.                                                            *
+*                                                                              *
+* You should have received a copy of the GNU General Public License along with *
+* software; if not, write to the Free Software Foundation, Inc., 59 Temple     *
+* Place, Suite 330, Boston, MA  02111-1307 USA                                 *
+*                                                                              *
+* Nirvana Text Editor                                                          *
+* Feb 27, 2009                                                                 *
+*                                                                              *
+*******************************************************************************/
+
+#include "tabDragDrop.h"
+#include "window.h"
+#include "preferences.h"
+
+#include <Xm/DragDrop.h>
+#include <Xm/PushB.h>
+#include <X11/IntrinsicP.h>
+
+#include "../Microline/XmL/Folder.h"
+
+#include <stdlib.h>
+#include <limits.h>
+
+enum tabSide {LEFT_TAB_SIDE, RIGHT_TAB_SIDE};
+
+static void moveTab(WindowInfo *move, WindowInfo *target, enum tabSide side);
+static void dropStart(Widget w, XtPointer client_data, XtPointer call_data);
+static Pixmap getMaskPixmap(Pixmap tabPixmap, int pixWidth, int pixHeigth);
+static void createTabDragCursor(Widget tabWidget, Widget dragContext);
+void beginTabDragAP(Widget w, XEvent *event, String *args, Cardinal *nArgs);
+static void moveTabProc(XtPointer clientData, XtIntervalId *id);
+static void moveTab(WindowInfo *src, WindowInfo *target, enum tabSide side );
+static enum tabSide tabSideNeighborAdjustmentNum(int from, int to, enum tabSide tabSide);
+static enum tabSide tabSideNeighborAdjustment(Widget widget, enum tabSide tabSide);
+static enum tabSide getDropTabSide(Widget widget, int x);
+static Widget getTabBarWidget(Widget widget);
+static void getClosestTab(Widget w, int x, Widget *closestTab, enum tabSide *tabSide);
+static void redrawTabBarProc(XtPointer clientData, XtIntervalId *id);
+static void tabDragProc(Widget widget, XtPointer client_data, XtPointer call_data);
+static void tabDropProc(Widget widget, XtPointer client_data, XtPointer call_data);
+void registerDropSite(Widget widget);
+void addTabDragAction(Widget widget);
+
+static struct DragDropTabInfo {
+    WindowInfo  *draggedWindow, *droppedWindow;
+    enum tabSide sideToDropTab;
+    int          redrawTabBar;
+    int          lastInsertionPoint;
+} ddtInfo = {NULL, NULL, RIGHT_TAB_SIDE, 0, -10000};
+
+
+static struct DragIconInfo {
+    Pixmap tabPixmap, tabMaskPixmap;
+    Widget dragIcon;
+} diInfo = {0, 0, NULL};
+
+
+/* based on OM's XmRedisplayWidget */
+static void redisplayWidget(Widget widget) 
+{
+    Region       region;
+    XExposeEvent expose_event;
+    XEvent      *event = (XEvent*)&expose_event;
+    XtExposeProc expose_proc = widget->core.widget_class->core_class.expose;
+    
+    if (!expose_proc)
+        return;
+
+    region = XCreateRegion();
+    
+    expose_event.type       = Expose;
+    expose_event.serial     = LastKnownRequestProcessed(TheDisplay);  
+    expose_event.send_event = False;
+    expose_event.display    = TheDisplay;
+    expose_event.window     = XtWindowOfObject(widget);
+    expose_event.x          = 0;
+    expose_event.y          = 0;
+    expose_event.width      = widget->core.width;
+    expose_event.height     = widget->core.height;
+    expose_event.count      = 0;
+
+    XtAddExposureToRegion(event, region);    
+    (*expose_proc)(widget, event, region);
+    XDestroyRegion(region);
+}
+
+/*
+** check if drop was successful (it's unsuccessful if we're dropping from another instance).
+*/
+static void dropStart(Widget w, XtPointer client_data, XtPointer call_data)
+{
+    XmDropStartCallback start = (XmDropStartCallback)call_data;
+
+    if (start->dropSiteStatus == XmDROP_SITE_INVALID) {
+        ddtInfo.draggedWindow = NULL;
+    }
+}
+
+/*
+** creates a mask pixmap for the tab pixmap (tries to delete ugly corners etc)
+*/
+static Pixmap getMaskPixmap(Pixmap tabPixmap, int pixWidth, int pixHeigth)
+{
+    XImage *image = 0, *image2 = 0;
+    Pixmap  tabMaskPixmap = 0;
+    
+    if (!tabPixmap || !pixWidth || !pixHeigth) {
+        return 0;
+    }
+    
+    tabMaskPixmap = XCreatePixmap(TheDisplay, tabPixmap, pixWidth, pixHeigth, 1);
+    if (!tabMaskPixmap) {
+        return 0;
+    }
+    
+    image = XGetImage(TheDisplay, tabPixmap, 0,0, pixWidth, pixHeigth, -1, XYPixmap);
+    if (!image) {
+        goto FAILED;
+    }
+    
+    image2 = XGetImage(TheDisplay, tabMaskPixmap, 0,0, pixWidth, pixHeigth, -1, XYPixmap);
+    if (!image2) {
+        goto FAILED;
+    }
+
+    /* now let's try to eat tab's corners */
+    {
+        const unsigned long topLeftPixel = XGetPixel(image, 0, 0);
+        int                 x = 0, y = 0;
+        
+        for (y = 0; y < pixHeigth; ++y) {
+            for (x = 0; x < pixWidth; ++x) {
+                XPutPixel(image2, x, y, 1);
+            }
+        }
+
+        /* eat top left corner */
+        for (y = 0; y < pixHeigth; ++y) {
+            x = 0;
+            if (XGetPixel(image, x, y) != topLeftPixel) {
+                break;
+            }
+            for ( ; x < pixWidth && XGetPixel(image, x, y) == topLeftPixel; ++x) {
+                XPutPixel(image2, x, y, 0);
+            }
+        }
+
+        if (y == pixHeigth || x == pixWidth) {
+            goto FAILED; /* ate the whole: something is wrong - no mask */
+        }
+
+        /* eat top right corner */
+        for (y = 0; y < pixHeigth; ++y) {
+            x = pixWidth - 1;
+            if (XGetPixel(image, x, y) != topLeftPixel) {
+                break;
+            }
+            for ( ; x > 0 && XGetPixel(image, x, y) == topLeftPixel; --x) {
+                XPutPixel(image2, x, y, 0);
+            }
+        }          
+        if (y == 0 || x == 0) {
+            goto FAILED; /* ate the whole: something is wrong - no mask */
+        }
+
+        /* ok, done with making the mask image, let's put the result to the mask pixmap */
+        {
+            GC gc = XCreateGC(TheDisplay, tabMaskPixmap, 0, 0);
+            XPutImage(TheDisplay, tabMaskPixmap, gc, image2, 0,0, 0,0, pixWidth, pixHeigth);
+            XFreeGC(TheDisplay, gc);
+        }
+    }
+    goto DONE;
+    
+FAILED:
+    if (tabMaskPixmap) {
+        XFreePixmap(TheDisplay, tabMaskPixmap);
+    }
+    tabMaskPixmap = 0;
+
+DONE:
+    if (image2) {
+        XDestroyImage(image2);
+    }
+    if (image) {
+        XDestroyImage(image);
+    }
+    
+    return tabMaskPixmap;
+}
+
+/*
+** creates a drag cursor and puts it in drag context, if successful.
+*/
+static void createTabDragCursor(Widget tabWidget, Widget dragContext)
+{
+    Arg          dropIconArgs[10];
+    int          n;
+    const Widget tabBarWidget = XtParent(XtParent(tabWidget));
+    
+    /* get tab pixmap dimensions */
+    int offset, pixWidth, pixHeigth ;
+    XWindowAttributes attrs;
+    XGetWindowAttributes(TheDisplay, XtWindow(tabWidget), &attrs);
+    
+    offset = attrs.y;
+    pixWidth = attrs.width   + offset * 2 + attrs.border_width * 2;
+    pixHeigth = attrs.height + offset     + attrs.border_width * 2;
+    
+    /* make a pixmap */
+    if (diInfo.tabPixmap) {
+        XFreePixmap(TheDisplay, diInfo.tabPixmap);
+    }
+    diInfo.tabPixmap = XCreatePixmap(TheDisplay, XtWindow(tabBarWidget),
+                                     pixWidth, pixHeigth, attrs.depth);
+    
+    /* copy tab contents */
+    {
+        GC gc = XCreateGC(TheDisplay, diInfo.tabPixmap, 0, 0);
+        XCopyArea(TheDisplay, XtWindow(tabBarWidget), diInfo.tabPixmap, gc,
+                  attrs.x-offset, attrs.y-offset,
+                  pixWidth, pixHeigth,
+                  0, 0);
+        XFreeGC(TheDisplay, gc);
+    }
+
+    /* make a mask pixmap */
+    {
+        Pixmap tabMaskPixmap = getMaskPixmap(diInfo.tabPixmap, pixWidth, pixHeigth);
+        if (tabMaskPixmap) {
+            if (diInfo.tabMaskPixmap) {
+                XFreePixmap(TheDisplay, diInfo.tabMaskPixmap);
+            }
+            diInfo.tabMaskPixmap = tabMaskPixmap;
+        }
+    }
+    
+    /* create a drag icon */
+    n = 0;
+    XtSetArg(dropIconArgs[n], XmNpixmap, diInfo.tabPixmap); n++;
+    XtSetArg(dropIconArgs[n], XmNdepth, attrs.depth); n++;
+    XtSetArg(dropIconArgs[n], XmNwidth, pixWidth); n++;
+    XtSetArg(dropIconArgs[n], XmNheight, pixHeigth); n++;
+    XtSetArg(dropIconArgs[n], XmNhotX, pixWidth / 2); n++;
+    XtSetArg(dropIconArgs[n], XmNhotY, pixHeigth / 2); n++;
+    XtSetArg(dropIconArgs[n], XmNattachment, XmATTACH_HOT); n++;
+
+    if (diInfo.tabMaskPixmap) {
+        XtSetArg(dropIconArgs[n], XmNmask, diInfo.tabMaskPixmap); n++;
+    }
+    
+    if (n > 10) {
+        abort(); /* check if args array length is enough */
+    }
+    
+    if (!diInfo.dragIcon)
+    {
+        /* create drag icon widget */
+        Widget topLevelWidget = NULL, x = tabWidget;
+        while ( (x = XtParent(x)) ) { /* the assigment intended here */
+            topLevelWidget = x;
+        }
+        diInfo.dragIcon = XmCreateDragIcon(topLevelWidget, "tabDragIcon", dropIconArgs, n);
+    } else {
+        XtSetValues(diInfo.dragIcon, dropIconArgs, n);
+    }
+
+    XtVaSetValues(dragContext, XmNsourcePixmapIcon, diInfo.dragIcon, NULL);
+    XtVaSetValues(dragContext, XmNblendModel, XmBLEND_JUST_SOURCE, NULL);
+}
+
+/*
+** action procedure to support drag-n-drop of tabs for moving
+** documents.
+*/
+void beginTabDragAP(Widget w, XEvent *event, String *args, Cardinal *nArgs)
+{
+    Widget dragContext;
+    
+    if (!GetPerfDragDropTabs()) {
+        return;
+    }
+    
+    dragContext = XmGetDragContext(w, event->xbutton.time);
+    XtAddCallback(dragContext, XmNdropStartCallback, dropStart, NULL);
+    
+    if (GetPerfDragDropTabsCursor()) {
+        createTabDragCursor(w, dragContext);
+    }
+    
+    /* set the drag window pointer to the tab that is being dragged */
+    ddtInfo.draggedWindow = TabToWindow(w);
+}
+
+/* 
+** timer routine that takes care of moving tabs.
+*/
+static void moveTabProc(XtPointer clientData, XtIntervalId *id)
+{
+    if (ddtInfo.droppedWindow->shell != ddtInfo.draggedWindow->shell) {
+        WindowInfo *cloneWin = MoveDocument(ddtInfo.droppedWindow, ddtInfo.draggedWindow);
+        if (!GetPrefSortTabs()) {
+            moveTab(cloneWin, ddtInfo.droppedWindow, ddtInfo.sideToDropTab);
+        }
+    } else if (!GetPrefSortTabs()) {
+        moveTab(ddtInfo.draggedWindow, ddtInfo.droppedWindow, ddtInfo.sideToDropTab);
+    }
+    /* it's important to keep this pointer NULL when there is no
+       dragging, because the drop can happen from another instance
+       of NEdit, that will lead to crash */
+    ddtInfo.draggedWindow = NULL;
+}
+
+/*
+** move a tab to one position to the right of another tab.
+*/
+static void moveTab(WindowInfo *src, WindowInfo *target, enum tabSide side )
+{
+    int         tabCount, i;
+    WidgetList  tabList;
+    WindowInfo *win;
+    int         srcPos, targetPos;
+    
+    if (src == target || src->shell != target->shell) {
+        return;
+    }
+    
+    srcPos = getTabPosition(src->tab);
+    targetPos = getTabPosition(target->tab);
+    
+    switch (side) {
+        case RIGHT_TAB_SIDE:
+            if (targetPos == srcPos - 1) {
+                return; /* we are already on the right side */
+            }
+            break;
+            
+        case LEFT_TAB_SIDE:
+            if (targetPos == srcPos + 1) {
+                return; /* we are already on the left side */
+            }
+            break;
+    }
+    
+    if (side == LEFT_TAB_SIDE) {
+        --targetPos;
+    }
+    
+    XtVaGetValues(target->tabBar, XmNtabWidgetList, &tabList,
+            XmNtabCount, &tabCount, NULL);
+    if (srcPos < targetPos) {
+        /* clockwise rotate, target-tab inclusive */
+        for (i = srcPos; i < targetPos; i++) {
+            win = TabToWindow(tabList[i + 1]);
+            win->tab = tabList[i];
+            RefreshTabState(win);
+        }
+        src->tab = tabList[targetPos];
+        RefreshTabState(src);
+    } else {
+        /* anti-clockwise rotate */
+        for (i = srcPos; i > targetPos + 1; i--) {
+            win = TabToWindow(tabList[i - 1]);
+            win->tab = tabList[i];
+            RefreshTabState(win);
+        }
+        src->tab = tabList[targetPos + 1];
+        RefreshTabState(src);
+    }
+}
+
+/*
+** "neighbor swap"
+** If we're moving a tab to its neighbor, it means we want to swap it,
+** no matter which side of the neighbor the tab was dropped to.
+*/
+static enum tabSide tabSideNeighborAdjustmentNum(int from, int to, enum tabSide tabSide)
+{
+    if (from == to + 1 || from == to) {
+        return LEFT_TAB_SIDE;
+    } else if (from == to - 1) {
+        return RIGHT_TAB_SIDE;
+    } else {
+        return tabSide;
+    }
+}
+
+/*
+** "neighbor swap"
+** If we're moving a tab to its neighbor, it means we want to swap it,
+** no matter which side of the neighbor the tab was dropped to.
+*/
+static enum tabSide tabSideNeighborAdjustment(Widget widget, enum tabSide tabSide)
+{
+    WindowInfo *windowUnder = 0;
+    if ( ! XtIsSubclass(widget, xmPushButtonWidgetClass) ) {
+        return LEFT_TAB_SIDE;
+    }
+    
+    windowUnder = TabToWindow(widget);
+    
+    /* adjust only if we're moving in the same window */
+    if (ddtInfo.draggedWindow->shell != windowUnder->shell) {
+        return tabSide;
+    }
+      
+    return
+        tabSideNeighborAdjustmentNum(
+            getTabPosition(ddtInfo.draggedWindow->tab),
+            getTabPosition(windowUnder->tab),
+            tabSide
+        );
+}
+
+/*
+** Returns side of the tab from mouse cursor (taking "neighbor swap" into account).
+**
+*/
+static enum tabSide getDropTabSide(Widget widget, int x)
+{
+    Dimension tabWidth, left;
+    if ( ! XtIsSubclass(widget, xmPushButtonWidgetClass) ) {
+        return LEFT_TAB_SIDE;
+    }
+    XtVaGetValues(widget, XmNwidth, &tabWidth, NULL);
+    left = x < tabWidth / 2;
+    return tabSideNeighborAdjustment(widget, left ? LEFT_TAB_SIDE : RIGHT_TAB_SIDE);
+}
+
+/*
+** returns tab bar widget for a widget (tab bar or tab).
+*/
+static Widget getTabBarWidget(Widget widget)
+{
+  if (XtClass(widget) == xmlFolderWidgetClass) {
+      return widget;
+  } else if (XtIsSubclass(widget, xmPushButtonWidgetClass)) {
+      return XtParent(widget);
+  } else {
+      return NULL;
+  }
+}
+
+/*
+** returns tab and side for a widget (tab bar or tab) and mouse cursor.
+*/
+static void getClosestTab(Widget w, int x, Widget *closestTab, enum tabSide *tabSide)
+{
+    const Widget tabBar = getTabBarWidget(w);
+    if (tabBar == w) {
+        int     numChildren = 0;
+        Widget *children = NULL;
+        int     diff = INT_MAX;
+        int     firstTab = 1;
+        int     i = 0;
+        
+        XtVaGetValues(tabBar, XmNnumChildren, &numChildren, XmNchildren, &children, NULL);
+
+        for (; i<numChildren; ++i) {
+            if ( XtIsSubclass(children[i], xmPushButtonWidgetClass) ) {
+                XWindowAttributes attrs;
+                XGetWindowAttributes(TheDisplay, XtWindow(children[i]), &attrs);
+                {
+                    const int distanceToTabCenterSigned = x - (attrs.x+attrs.width/2);
+                    const int distanceToTabCenter = abs(distanceToTabCenterSigned);
+                    if (firstTab || distanceToTabCenter < diff) {
+                        firstTab = 0;
+                        diff = distanceToTabCenter;
+                        *closestTab = children[i];
+                        *tabSide = tabSideNeighborAdjustment(*closestTab,
+                            distanceToTabCenterSigned < 0 ? LEFT_TAB_SIDE : RIGHT_TAB_SIDE);
+                    }
+                }
+            }
+        }
+    } else {
+        *closestTab = w;
+        *tabSide = getDropTabSide(w, x);
+    }
+}
+
+/*
+** timer procedure to redraw the tab bar (i.e. to remove insertion site).
+** When we can receive DROP_SITE_LEAVE for tab bar and then DROP_SITE_ENTER
+** for tab (and vice versa) - in this case we don't want to redraw, to avoid
+** flickering. But in the moment when we received DROP_SITE_LEAVE we don't
+** know will there be the corresponding DROP_SITE_ENTER, so let it for timer.
+*/
+static void redrawTabBarProc(XtPointer clientData, XtIntervalId *id)
+{
+    if (ddtInfo.redrawTabBar) {
+        Widget tabBar = (Widget)clientData;
+        redisplayWidget(tabBar);
+        ddtInfo.lastInsertionPoint = -10000;
+    }
+}
+
+/*
+** inverts part of window
+*/
+static void copySelfInverted(Window window, int x, int y, int w, int h)
+{
+    XGCValues gcVals;
+    GC        gc = XCreateGC(TheDisplay, window, 0, &gcVals);
+
+    gcVals.function = GXnor;
+    XChangeGC(TheDisplay, gc, GCFunction, &gcVals);
+
+    XCopyArea(TheDisplay, window, window, gc, x, y,  w, h, x, y);
+    XFreeGC(TheDisplay, gc);
+}
+
+/* 
+** while dragging, display where the tab will be insterted when dropped.
+*/ 
+static void tabDragProc(Widget widget, XtPointer client_data,
+        XtPointer call_data)
+{
+    static Widget      lastTabBar = 0;
+    Widget             tabBar = 0, tab = 0;
+    enum tabSide       tabSide;
+    int                spacing = 0;
+    int                offset, pixWidth, pixHeigth, x, y;
+    XWindowAttributes  attrs;
+    XmDragProcCallback dragData = (XmDragProcCallback) call_data;
+    
+    if (!ddtInfo.draggedWindow) {
+        dragData->dropSiteStatus = XmDROP_SITE_INVALID;
+        dragData->operation = XmDROP_NOOP;
+        return;
+    } else {
+        dragData->dropSiteStatus = XmDROP_SITE_VALID;
+        dragData->operation = XmDROP_MOVE;
+    }
+
+    tabBar = getTabBarWidget(widget);
+    if (!tabBar) {
+        return;
+    }
+
+    if (dragData->reason == XmCR_DROP_SITE_LEAVE_MESSAGE) {
+        ddtInfo.redrawTabBar = 1;
+        XtAppAddTimeOut(XtWidgetToApplicationContext(widget), 0,
+                        redrawTabBarProc, tabBar);
+        return;
+    }
+    
+    ddtInfo.redrawTabBar = 0; /* for redrawTabBarProc: don't redraw tab bar, we'll take care */
+
+    /* get target tab and side */
+    tab = widget;
+    
+    getClosestTab(widget, dragData->x, &tab, &tabSide);
+    
+    /* calculate position and dimensions for the insertion site */
+    XtVaGetValues(tabBar, XmNspacing, &spacing, NULL);
+    
+    XGetWindowAttributes(TheDisplay, XtWindow(tab), &attrs);
+  
+    offset = attrs.y;
+    pixWidth = spacing > 5 ? spacing : 5;
+    pixHeigth = attrs.height + offset + attrs.border_width * 2;
+    x = tabSide == LEFT_TAB_SIDE
+                   ? attrs.x - offset - pixWidth / 2 - (spacing - spacing / 2)
+                   : attrs.x + offset - pixWidth / 2 + spacing / 2 + attrs.border_width * 2 + attrs.width;
+    y = attrs.y-offset;
+    
+    /* adjust position, otherwise insertion site won't be visible */
+    if (spacing) {
+       if (x <= 0) {
+           x += pixWidth / 2;
+       } else {
+           XWindowAttributes tabBarAttrs;
+           XGetWindowAttributes(TheDisplay, XtWindow(tabBar), &tabBarAttrs);
+           if (x >= tabBarAttrs.width) {
+               x -= pixWidth / 2;
+           }
+       }
+    }
+    
+    /* check if the insertion site changed */
+    if (ddtInfo.lastInsertionPoint == x && lastTabBar == tabBar) {
+        return;
+    }
+  
+    redisplayWidget(tabBar);
+    ddtInfo.lastInsertionPoint = x;
+    lastTabBar = tabBar;
+  
+    /* copy inverted image of the insertion site */
+    copySelfInverted(XtWindow(tabBar), x, y, pixWidth, pixHeigth);
+}
+
+/* 
+** initiate document movement when tabs are dragged into 
+** the text area, or another tab.
+*/ 
+static void tabDropProc(Widget widget, XtPointer client_data,
+        XtPointer call_data)
+{
+    XmDropProcCallback dropData;
+    Widget             dc;
+    Arg                args[10];
+    int                n;
+
+    dropData = (XmDropProcCallback) call_data;
+    dc = dropData->dragContext;
+
+    n = 0;
+    if (!ddtInfo.draggedWindow) {
+        dropData->dropSiteStatus = XmDROP_SITE_INVALID;
+        dropData->operation = XmDROP_NOOP;
+        XtSetArg(args[n], XmNtransferStatus, XmTRANSFER_FAILURE); n++;
+        XtSetArg(args[n], XmNnumDropTransfers, 0); n++;
+        XmDropTransferStart(dc, args, n);
+        return;
+    } else {
+        dropData->dropSiteStatus = XmDROP_SITE_VALID;
+        dropData->operation = XmDROP_MOVE;
+        XtSetArg(args[n], XmNtransferStatus, XmTRANSFER_SUCCESS); n++;
+        XtSetArg(args[n], XmNnumDropTransfers, 0); n++;
+        XmDropTransferStart(dc, args, n);
+    }
+    
+    ddtInfo.sideToDropTab = RIGHT_TAB_SIDE;
+    
+    /* determine the target tab based on the drop-zone:
+        1. text area or another tab: it's the one,
+        2. tab bar gutter: the right-most tab. */
+    if (XtIsSubclass(widget, xmPushButtonWidgetClass)
+          || XtClass(widget) == xmlFolderWidgetClass) {
+        Widget tabWidget = 0;
+        getClosestTab(widget, dropData->x, &tabWidget, &ddtInfo.sideToDropTab);
+        ddtInfo.droppedWindow = TabToWindow(tabWidget);
+    } else {
+        ddtInfo.droppedWindow = WidgetToWindow(widget);
+    }
+
+    if (ddtInfo.droppedWindow != ddtInfo.draggedWindow) {
+        /* moving document is a big operation, we delay it to avoid
+           any potential conflicts with the toolkits */
+        XtAppAddTimeOut(XtWidgetToApplicationContext(widget), 0,
+            moveTabProc, NULL);
+    } else {
+        /* it's important to keep this pointer NULL when there is no
+           dragging, because the drop can happen from another instance
+           of NEdit, that will lead to crash */
+        ddtInfo.draggedWindow = NULL;
+    }
+}
+
+/*
+** register a widget as drop site for tabs, for the purpose
+** of moving tabs within and across windows.
+*/
+void registerDropSite(Widget widget)
+{
+#ifndef LESSTIF_VERSION
+    Arg args[15];
+    int n = 0;
+    
+    if (XtIsSubclass(widget, compositeWidgetClass)) {
+        XtSetArg(args[n], XmNdropSiteType, XmDROP_SITE_COMPOSITE);
+    } else {
+        XtSetArg(args[n], XmNdropSiteType, XmDROP_SITE_SIMPLE); 
+    }
+    n++;
+
+    XtSetArg(args[n], XmNanimationStyle, XmDRAG_UNDER_NONE); n++;
+    XtSetArg(args[n], XmNnumImportTargets, 0); n++;
+    XtSetArg(args[n], XmNdropSiteOperations, XmDROP_MOVE); n++;
+    XtSetArg(args[n], XmNdropProc, tabDropProc); n++;
+    if (GetPerfDragDropTabsAnimation()) {
+        XtSetArg(args[n], XmNdragProc, tabDragProc); n++;
+    }
+    XmDropSiteRegister (widget, args, n);
+#endif /* LESSTIF_VERSION */
+}
+
+/*
+** override translation for tab widget on drag [-and-drop].
+*/
+void addTabDragAction(Widget widget)
+{
+#ifndef LESSTIF_VERSION
+    static XtTranslations table = NULL;
+
+    if (table == NULL) {
+        const char *translations =
+            "#override <Btn2Down>: ProcessDrag() begin_tab_drag()";
+        table = XtParseTranslationTable(translations);
+    }
+    XtOverrideTranslations(widget, table);
+#endif /* LESSTIF_VERSION */
+}
+
Index: nedit/source/Makefile.common
===================================================================
--- nedit.orig/source/Makefile.common
+++ nedit/source/Makefile.common
@@ -6,6 +6,7 @@ OBJS =	nedit.o file.o menu.o window.o se
 	help.o preferences.o tags.o userCmds.o shell.o regularExp.o macro.o \
 	text.o textSel.o textDisp.o textBuf.o textDrag.o server.o highlight.o \
 	highlightData.o interpret.o parse.o smartIndent.o regexConvert.o \
+	tabDragDrop.o \
 	windowTitle.o calltips.o server_common.o rangeset.o
 
 XLTLIB = ../Xlt/libXlt.a
Index: nedit/source/preferences.h
===================================================================
--- nedit.orig/source/preferences.h
+++ nedit/source/preferences.h
@@ -72,6 +72,12 @@ void SetPrefTabBar(int state);
 int GetPrefTabBar(void);
 void SetPrefSortTabs(int state);
 int GetPrefSortTabs(void);
+void SetPerfDragDropTabs(int state);
+int GetPerfDragDropTabs(void);
+void SetPerfDragDropTabsCursor(int state);
+int GetPerfDragDropTabsCursor(void);
+void SetPerfDragDropTabsAnimation(int state);
+int GetPerfDragDropTabsAnimation(void);
 void SetPrefTabBarHideOne(int state);
 int GetPrefTabBarHideOne(void);
 void SetPrefGlobalTabNavigate(int state);
Index: nedit/source/tabDragDrop.h
===================================================================
--- /dev/null
+++ nedit/source/tabDragDrop.h
@@ -0,0 +1,37 @@
+/* $Id: tabDragDrop.h,v 1.25 2004/08/20 19:33:21 n8gray Exp $ */
+/*******************************************************************************
+*                                                                              *
+* tabDragDrop.h -- Nirvana Editor Tab Drag&Drop header file                    *
+*                                                                              *
+* Copyright 2008 The NEdit Developers                                          *
+*                                                                              *
+* This is free software; you can redistribute it and/or modify it under the    *
+* terms of the GNU General Public License as published by the Free Software    *
+* Foundation; either version 2 of the License, or (at your option) any later   *
+* version. In addition, you may distribute version of this program linked to   *
+* Motif or Open Motif. See README for details.                                 *
+*                                                                              *
+* This software is distributed in the hope that it will be useful, but WITHOUT *
+* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or        *
+* FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License *
+* for more details.                                                            *
+*                                                                              *
+* You should have received a copy of the GNU General Public License along with *
+* software; if not, write to the Free Software Foundation, Inc., 59 Temple     *
+* Place, Suite 330, Boston, MA  02111-1307 USA                                 *
+*                                                                              *
+* Nirvana Text Editor                                                          *
+* Feb 27, 2009                                                                 *
+*                                                                              *
+*******************************************************************************/
+
+#ifndef NEDIT_TAB_DRAG_DROP_H_INCLUDED
+#define NEDIT_TAB_DRAG_DROP_H_INCLUDED
+
+#include <X11/Intrinsic.h>
+
+void beginTabDragAP(Widget w, XEvent *event, String *args, Cardinal *nArgs);
+void registerDropSite(Widget widget);
+void addTabDragAction(Widget widget);
+
+#endif /* NEDIT_TAB_DRAG_DROP_H_INCLUDED */
Index: nedit/source/window.c
===================================================================
--- nedit.orig/source/window.c
+++ nedit/source/window.c
@@ -52,6 +52,7 @@
 #include "nedit.bm"
 #include "n.bm"
 #include "windowTitle.h"
+#include "tabDragDrop.h"
 #include "interpret.h"
 #include "rangeset.h"
 #include "../util/clearcase.h"
@@ -154,7 +155,6 @@ static WindowInfo *getNextTabWindow(Wind
         int crossWin, int wrap);
 static Widget addTab(Widget folder, const char *string);
 static int compareWindowNames(const void *windowA, const void *windowB);
-static int getTabPosition(Widget tab);
 static Widget manageToolBars(Widget toolBarsForm);
 static void hideTearOffs(Widget menuPane);
 static void CloseDocumentWindow(Widget w, WindowInfo *window, XtPointer callData);
@@ -601,6 +601,8 @@ WindowInfo *CreateWindow(const char *nam
 
     window->tabMenuPane = CreateTabContextMenu(window->tabBar, window);
     AddTabContextMenuAction(window->tabBar);
+    if (GetPerfDragDropTabs())
+        registerDropSite(window->tabBar);
     
     /* create an unmanaged composite widget to get the folder
        widget to hide the 3D shadow for the manager area.
@@ -864,6 +866,10 @@ static Widget addTab(Widget folder, cons
     AddTabContextMenuAction(tab);
 #endif /* LESSTIF_VERSION */
 
+    if (GetPerfDragDropTabs()) {
+        addTabDragAction(tab);
+        registerDropSite(tab);
+    }
     return tab;
 }
 	    
@@ -2286,6 +2292,9 @@ static Widget createTextArea(Widget pare
        operation and performance will be better without it) */
     TextDMaintainAbsLineNum(((TextWidget)text)->text.textD, window->showStats);
    
+    if (GetPerfDragDropTabs())
+        registerDropSite(text);
+
     return text;
 }
 
@@ -3563,7 +3572,7 @@ static WindowInfo *getNextTabWindow(Wind
 ** return the integer position of a tab in the tabbar it
 ** belongs to, or -1 if there's an error, somehow.
 */
-static int getTabPosition(Widget tab)
+int getTabPosition(Widget tab)
 {
     WidgetList tabList;
     int i, tabCount;
@@ -3621,6 +3630,10 @@ void RefreshTabState(WindowInfo *win)
 	    NULL);
     XmStringFree(s1);
     XmStringFree(tipString);
+
+    /* set tab as active */
+    if (IsTopDocument(win))
+        XmLFolderSetActiveTab(win->tabBar, getTabPosition(win->tab), False);
 }
 
 /*
Index: nedit/source/window.h
===================================================================
--- nedit.orig/source/window.h
+++ nedit/source/window.h
@@ -62,6 +62,7 @@ int WidgetToPaneIndex(WindowInfo *window
 void ClosePane(WindowInfo *window);
 int GetShowTabBar(WindowInfo *window);
 void ShowTabBar(WindowInfo *window, int state);
+int getTabPosition(Widget tab);
 void ShowStatsLine(WindowInfo *window, int state);
 void ShowISearchLine(WindowInfo *window, int state);
 void TempShowISearch(WindowInfo *window, int state);
Index: nedit/source/menu.c
===================================================================
--- nedit.orig/source/menu.c
+++ nedit/source/menu.c
@@ -51,6 +51,7 @@
 #include "interpret.h"
 #include "smartIndent.h"
 #include "windowTitle.h"
+#include "tabDragDrop.h"
 #include "../util/getfiles.h"
 #include "../util/DialogF.h"
 #include "../util/misc.h"
@@ -581,6 +582,7 @@ static XtActionsRec Actions[] = {
     {"set_em_tab_dist", setEmTabDistAP},
     {"set_use_tabs", setUseTabsAP},
     {"set_fonts", setFontsAP},
+    {"begin_tab_drag", beginTabDragAP},
     {"set_language_mode", setLanguageModeAP}
 };