QtableWidget:如何在特定列中查找值

时间:2012-09-12 16:12:29

标签: c++ qt qt4

我需要使用qtablewidget检查特定列中的特定值。 在我的情况下,我需要检查第一列是否已经存在ID,如果是,我需要包含行的编号来更新此行,否则我想添加该行。 QT是否提供了检查列或shou

的解决方案

1 个答案:

答案 0 :(得分:6)

我假设您在第一列中查找您的值(为什么item(int,int)中的第二个参数为0)并且表名是myQTableWidget

int rows = myQTableWidget->rowCount();
bool founded = false;
for(int i = 0; i < rows; ++i)
{
    if(myQTableWidget->item(i, 0)->text() == "Something")
    {
        //we have found our value so we can update 'i' row
        found = true;
        break;
    }
}
if(!found)
{
    //we didn't find our value, so we can insert row
}