This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 29031
Collapse All | Expand All

(-)src/org/openide/explorer/view/ExplorerDragSupport.java (+9 lines)
Lines 113-118 Link Here
113
                return ;
113
                return ;
114
            } else {
114
            } else {
115
                exDnD.setDnDActive (true);
115
                exDnD.setDnDActive (true);
116
                System.out.println("startDrag with:");
117
                System.out.println("    cursor: "+DragDropUtilities.chooseCursor (dragAction, dragStatus));
118
                System.out.println("    image: "+Utilities.loadImage(
119
                        "org/openide/resources/cursorscopysingle.gif"));
120
                System.out.println("    point: "+new Point (16, 16));
121
                System.out.println("    transferable: "+transferable);
122
                System.out.println("    listener: "+this);
123
                System.out.println("    event: "+dge);
124
                System.out.println("-- done");
116
                dge.startDrag(
125
                dge.startDrag(
117
                    DragDropUtilities.chooseCursor (dragAction, dragStatus),
126
                    DragDropUtilities.chooseCursor (dragAction, dragStatus),
118
                    Utilities.loadImage(
127
                    Utilities.loadImage(
(-)src/org/openide/explorer/view/TreeTable.java (-1 / +1 lines)
Lines 859-865 Link Here
859
            }
859
            }
860
860
861
            public void mouseDragged(MouseEvent e) {
861
            public void mouseDragged(MouseEvent e) {
862
                return;
862
                processMouseEvent (e);
863
            }
863
            }
864
864
865
            private void setDispatchComponent(MouseEvent e) { 
865
            private void setDispatchComponent(MouseEvent e) { 
(-)src/org/openide/explorer/view/TreeTableView.java (-10 lines)
Lines 480-495 Link Here
480
        treeTable.getTableHeader().removeMouseListener(l);
480
        treeTable.getTableHeader().removeMouseListener(l);
481
    }
481
    }
482
482
483
    /* DnD is not implemented for treeTable.
484
     */
485
    public void setDragSource (boolean state) {
486
    }
487
488
    /* DnD is not implemented for treeTable.
489
     */
490
    public void setDropTarget (boolean state) {
491
    }
492
493
    /* Overriden to get position for popup invoked by keyboard
483
    /* Overriden to get position for popup invoked by keyboard
494
     */
484
     */
495
    Point getPositionForPopup() {
485
    Point getPositionForPopup() {

Return to bug 29031