0

我想要的是,如果我在文本框中输入一个 ID,然后按 Enter,那么如果该 ID 存在,那么它会显示在表格上,表格的值会在地图的帮助下插入到另一个窗口中,该窗口来自该窗口Box1 作为地图打开。所以据我所知,我们必须运行 map 的 find 命令,然后使用 if 循环,如果文本框中输入的值存在则将以与显示虚拟数据相同的方式显示它。使用的代码

Box1::Box1(QWidget *parent)
        :QDialog(parent)
    {
    searchgroup = new QGroupBox(tr("Data Search"));

    QHBoxLayout *layout2 = new QHBoxLayout;
    text = new QLineEdit(this);
    searchh = new QLabel(tr("&Enter ID:"));
    searchh->setBuddy(text);
    layout2->addWidget(searchh);
    layout2->addWidget(text);
    searchgroup->setLayout(layout2);
    tableegroup = new QGroupBox(tr("Searched Data"));
    QVBoxLayout *layout1 = new QVBoxLayout;
    tablee = new QTableView(this);
    mode1 = new QStandardItemModel(1,2,this);
    mode1->setHorizontalHeaderItem(0, new QStandardItem(QString("ID")));
    mode1->setHorizontalHeaderItem(1, new QStandardItem(QString("DATA")));
    map<int,QString>::iterator itt;
    itt=dataa.begin();
            for (int colu = 0; colu < 2; colu++)
            {
                    item1 = new QStandardItem();

                    if (colu == 0)
                    {
                            item1->setData(((*itt).first), Qt::DisplayRole);
                            mode1->setItem(0,0,item1);
                    } else
                    {
                            item1->setData(((*itt).second), Qt::DisplayRole);
                            mode1->setItem(0,1,item1);
                    }
            }

    tablee->setModel(mode1);
    layout1->addWidget(tablee);
    tableegroup->setLayout(layout1);

    QVBoxLayout *mainlayout1 = new QVBoxLayout;
    //mainlayout1->addWidget(menubarr);
    mainlayout1->addWidget(searchgroup);
    mainlayout1->addWidget(tableegroup);
    setLayout(mainlayout1);
}

感谢您提前提供任何帮助 编辑 我想要的

void Box1::textReturn()
{
        bool ok;
        int id = text->text().toInt(&ok);
//      map<int,QString>::iterator itt;
        if (ok && dataa.contains(id))
        {

        //      add row (id, data[id] to table
        }
        else
        {
                QMessageBox msgbox = new QMessagebox();
                msgbox->setWindowTitle("Alert");
                msgbox->setText("No such ID present!");
                msgbox->show();
        }
}

编辑2

void Box1::textReturn()
{
        int id = (text->text()).toInt();
        map<int,QString>::iterator itt;
        itt = dataa.find(id);
        if(itt != dataa.end())           //returns 1 if we found something
        {
                QList<QStandardItem *> items;
                items << new QStandardItem(QString("%1").arg(id));
                items << new QStandardItem((*itt).second);
                mode1->appendRow(items);
                tablee->update();
        }
        else
        {
                QMessageBox *msgbox = new QMessageBox();
                msgbox->setWindowTitle("Alert");
                msgbox->setText("INVALID  ID  ENTERED");
                msgbox->show();
        }
}
4

2 回答 2

0

据我了解你的问题。您需要在 Box1 类中创建一个新插槽。我们称之为 textReturnPressed()。然后你必须将它连接到returnPressed()来自的信号text

connect(text, SIGNAL(returnPressed()), this, SLOT(textReturnPressed());

这是 textReturnPressed (我希望它编译)

void textReturnPressed()
{
     bool ok;
     int id = text->text().toInt(&ok);
     if (ok && dataa.count(id) > 0) {
         QList<QStandardItem *> items;
         items << new QStandardItem(QString("%1").arg(id));
         items << new QStandardItem(dataa[id]);
         mode1.appendRow(items);
     }
}

您不需要迭代器来检查项目是否在地图中。只需调用map.count()函数。

于 2012-07-06T13:50:36.360 回答
0

正如@KCiebiera 所说,您必须进行此连接

connect(text, SIGNAL(returnPressed()), this, SLOT(textReturnPressed());

然后你需要使用在表中找到你的密钥

QList<QStandardItem *> QStandardItemModel::findItems ( const QString & text, 
                     Qt::MatchFlags flags = Qt::MatchExactly, int column = 0 )

由于您有地图,因此元素不应重复,您的 QList 应为 NULL 或仅包含一个元素。当你得到你的元素(作为 QStandardItem)时,你只需要调用

tablee->showColumn ( int column )
tablee->showRow ( int row )

您的列将是 QStandardItem->column() 和行 QStandardItem->row();

编辑

void Box1::textReturnPressed()
{
     int id = (test->text()).toInt();
     map<int, string>::iterator it;
     it = dataa.find(id);
     if(it != dataa.end())           //we found something
     {
         QList<QStandardItem *> items;
         items << new QStandardItem(QString("%1").arg(id));
         items << new QStandardItem((*it).second);
         mode1->appendRow(items);
     }
     else
         QMessageBox::information(this, "Info", "ID not found!", QMessageBox::ok);
}

像这样的东西;

于 2012-07-06T14:09:34.170 回答