QTableView :: edit(const QModelIndex& index)失败

时间:2013-11-28 13:13:11

标签: qt qtableview qabstracttablemodel

我试图阻止用户将相同的数据输入到我的模型中,该模型是 QAbstractTableModel 的子类。

bool MyModel::setData( const QModelIndex &index, const QVariant &value, int role )
{
    bool result = false;
    ...
    // Test if my model already has the same data
    result = findItem( value.toString() ) != -1;
    ...
    if ( result )
        emit( dataChanged( index, index );
    else
        emit ( dataInvalid( index ) );

    return result;
}

现在我应该抓住信号并将我的表格视图(类型为 QTableView )转回编辑状态:

void MyWindow::dataInvalid( const QModelIndex &index )
{
    myTableView->edit( index );
}

但是当我运行我的应用程序时,我在控制台中收到了消息, QTableView 没有转到编辑状态:

edit: edit failed

我做错了什么? 非常感谢你提前。

1 个答案:

答案 0 :(得分:1)

致电

myTableView->edit( index )

我在 QAbstractItemView :: EditState 中的视图 仍然是 ,这就是失败的原因。 解决方案是在连接信号时添加 Qt :: QueuedConnection

MyWindow::MyWindow()
{
    ...
    connect( myModel, SIGNAL( dataInvalid( QModelIndex ) ),
        this, SLOT( dataInvalid( QModelIndex ) ), Qt::QueuedConnection );
    ...
}

现在一切正常。