在QTreeView中插入和删除行



你好,我有从QAbstractItemModel继承的基本模型,以及一些不时通知该模型的后台线程,在示例中,插入行实现了类似的东西

bool TreeModel::insertRows(int position, int rows, const QModelIndex &parent)
{
    TreeItem *parentItem = getItem(parent);
    bool success;
    beginInsertRows(parent, position, position + rows - 1);
    success = parentItem->insertChildren(position, rows, rootItem->columnCount());
    endInsertRows();
    return success;
} 

但我不能这样做,因为我的模型是单一的,使用了4个视图,我用这种方式实现了插入:

void notifyEventImpl(file_item_type *sender,helper<ITEM_ACTION_ADDED>)
        {
            base_class::setSize(file_item_type::size()+sender->size());         
            m_listDirectory.push_back(sender);
            file_item_type::filesystem_type::s_notify.insert(this); // notify my model
        } 

其中s_notify是具有实现的类:

 void Notifaer::dataChange(void * item){emit dataChanged(item);}
        void Notifaer::remove(void * item){emit removed(item);}
        void Notifaer::insert(void * item){emit inserted(item);}
        void Notifaer::push_back(const FileItemModel * model)
        {
            VERIFY(QObject::connect(this,SIGNAL(dataChanged(void*)),model,SLOT(dataChangeItem(void*)) ));
            VERIFY(QObject::connect(this,SIGNAL(removed(void*)),model,SLOT(removeItem(void*)) ));
            VERIFY(QObject::connect(this,SIGNAL(inserted(void*)),model,SLOT(insertItem(void*)) ));
        }

鉴于此,我调用方法:

void FileItemModel::insertItem(void *it)
{
    file_item_type *item = dynamic_cast<file_item_type*>(static_cast<file_item_type*>(it));
    {
        QModelIndex index = createIndex(0,0,item);
        if (index.isValid())
        {
            beginInsertRows(index, 0, item->childCount()-1);
            endInsertRows();
        }
    }
}
void FileItemModel::removeItem(void *it)
{
    file_item_type *item = static_cast<file_item_type*>(it);
    {
        QModelIndex index = createIndex(0,0,item);
        if (index.isValid())
        {
            beginRemoveRows(index, 0, item->childCount()-1);
            endRemoveRows();
        }
    }
} 

删除行可以很好地工作,但插入不起作用。我的实现有什么问题?

尝试

 beginInsertRows(QModelIndex(), 0, item->childCount()-1);

你检查QT文档了吗http://qt-project.org/doc/qt-4.8/qabstractitemmodel.html或QT示例以获得任何线索http://qt-project.org/doc/qt-4.8/itemviews-editabletreemodel.html?

正如你所说的线程,也许读起来很有趣:

  • 设计模式、Qt模型/视图和多线程

  • QTreeView;QAbstractItemModel;insertRow

相关内容

  • 没有找到相关文章

最新更新