功能
将模型中的某一个父节点下的一个或者几个节点 移动到另一个父节点下的某个位置。
原型
[protected] bool QAbstractItemModel::beginMoveRows(const QModelIndex &sourceParent, int sourceFirst, int sourceLast, const QModelIndex &destinationParent, int destinationChild)
使用
beginMoveRows(Parent, 2, 4, parent, 6); 表示将parent父节点下的2-4的子节点整体向后挪一个位置
值得注意的坑
1、该函数 对于单个节点移动时,上移是差1 但是下移却差2 如上面使用的例子 以及下面的qt文档说明
2、该文档中明确说明 使用该函数会调用layoutAboutToBeChanged 和 layoutChanged信号 从而刷新布局。但是当你把该信号和某一个槽函数关联时,却发现前面说的俩个信号均未发射。所以如果你不想让布局重新刷新。就必须把 上述信号和你的布局槽函数关联起来。且在调用beginMoveRows函数后面发射一次该信号。因为在qt5之后 一个信号关联多个槽函数,执行顺序是按照关联顺序执行的。
Qt帮助手册