Qt:尝试将拖放添加到可编辑树模型示例不起作用

Qt: Attempt to add Drag and Drop to Editable Tree Model example not working

我正在尝试学习如何在 Qt 中实现拖放至 model/view 设置。作为练习,我尝试对 Qt 网站上提供的 Editable Tree Model example 执行此操作:

为了通过拖放对其进行扩展,我按照 "Using Drag and Drop with View Items", more specifically "Using model/view classes" 上 Qt 文档中的说明进行了操作。

根据文档,我将尝试的代码放在 a GitHub repository. The main modifications are below but there are other important ones; here are the full changes

/* mainwindow.cpp -- THIS IS NOT ALL CHANGES -- See link above for all changes */
view->setSelectionMode(QAbstractItemView::SingleSelection);
view->setDragEnabled(true);
view->viewport()->setAcceptDrops(true);
view->setDropIndicatorShown(true);
view->setDragDropMode(QAbstractItemView::DragDrop);

然而,这并没有奏效。虽然我可以拖放项目,但复制的项目显示为空白。这可以在this screen capture中看到,但主要截图是:

请注意,文档描述了需要重新实现 QAbstractItemModeldropMimeData 以实现拖放功能,而我没有这样做。这是因为,在检查插入项目的 source code for that class, I find that its default implementation should already work in copying items in drag and drop, since it uses the default application/x-qabstractitemmodeldatalist MIME format and uses setItemData 时。

这里有什么问题?是默认的 dropMimeData 不起作用,还是其他原因?

示例提供的模型只接受具有角色Qt::EditRole的设置数据。请参见 treemodel.cpp

中的第 263 行
bool TreeModel::setData(const QModelIndex &index, const QVariant &value, int role)
{
    if (role != Qt::EditRole)
        return false;

    ...
}

删除该部分或添加 Qt::DisplayRole 数据将正确设置。