C++ (Qt)QPoint QDrag::hotSpot () const
C++ (Qt) setDragEnabled(true); setAcceptDrops(true); setDragDropMode(QAbstractItemView::DragDrop); setDragDropOverwriteMode(false); setDropIndicatorShown(true);
C++ (Qt)QPoint targetPos = event->pos() - findChild<QDrag *>()->hotSpot() + QPoint(rowHeight(0), columnWidth(0)) / 3; // последнее слагаемое определяет допустимый зазорQModelIndex targetIndex = model()->index(rowAt(targetPos.y()), columnAt(targetPos.x())); // indexAt() в моём случае не подходит