如何将 lineEdits 分配给某个变量?
How can I assign lineEdits to some variable?
我刚开始使用 Qt。我被困在这件事上。我的应用程序中有很多 lineEdits,其中的值可能会在应用程序运行时随时更改。 lineEdits 中的值只能是整数。在某个阶段,我需要检查 lineEdits 中的值并与整数数组进行比较。如果它们相等,则用户的任务完成。
在这里,我想将 lineEdits 的所有值存储到一个整数数组中,这样我就可以运行一个 for
循环来检查两个数组是否相等,而不是为每个数组创建一个 if
条件和每个 lineEdit
。每当用户更改 lineEdit 中的值时,数组中的值应该更新,并且当数组中的相应值更改时,lineEdit 中的值也应该更改。
我尝试使用 qvector,将 lineEdits 的值附加到其中。此矢量现在具有 lineEdits 的值,但当其相应值在矢量中更改时不会更新值。
谁能帮忙解决这个问题?
Qt 就是关于信号和槽的。在您的情况下,您需要将 lineEdit
的文本编辑信号连接到您要修改的变量。在你有 lineEdit
的对话框中,你应该在构造函数中有一个连接,例如:
connect(ui->lineEdit, &QLineEdit::textEdited, this, &YourDialog::textEdited);
这会将 lineEdit
的 textEdited
信号连接到 YourDialog
的插槽,在此示例中我也将其命名为 textEdited
。
这个插槽应该接受一个参数,即 const QString&
,因为根据 Qt 的文档,这就是 QLineEdit::textEdited
发出的内容。
然后,你可以在这个槽函数中做任何你想做的事情,比如用lineEdit->text().toInt()
将输入转换为int
并将其值赋给数组元素等
此外,如果您确定唯一的条目应该是此 lineEdit
的 int
,在构造函数中,您可以使用带有 [=24= 的 QIntValidator
对象] 以确保用户将 lineEdit
值编辑为您指定范围内的有效整数。
作为 class 成员,您可以获得指向 QLineEdit
的指针列表:
QList<QLineEdit *> lineEdits;
并在实例化它们时将指向 linedits 的指针添加到列表中:
QLineEdit * lineEdit = new QLineEdit(this);
lineEdits->append(lineEdit);
然后 QSignalMapper
可用于在更新行编辑时更新值数组。 QSignalMapper
class 收集一组无参数信号,并使用与发送信号的对象对应的整数、字符串或小部件参数重新发射它们。所以你可以有一个这样的:
QSignalMapper * mapper = new QSignalMapper(this);
QObject::connect(mapper,SIGNAL(mapped(int)),this,SLOT(OntextChanged(int)));
对于每行编辑,您可以将 textChanged()
信号连接到 QSignalMapper
的 map()
插槽,并使用 setMapping
添加映射,这样当 textChanged()
从行编辑发出信号,发出信号 mapped(int)
:
for(int i=0; i<lineEdits.count(); i++)
{
QObject::connect(lineEdits[i], SIGNAL(textChanged()),mapper,SLOT(map()));
mapper->setMapping(lineEdits[i], i+1);
}
这样,每当您更改行编辑时,都会发出映射器的 mapped(int)
信号,其中包含行编辑的索引作为参数。
数组的值可以在 OntextChanged
槽中更新,如:
void MyClass::OntextChanged(int index)
{
values[index-1] = lineEdits[index-1].text().toInt();
}
我会推荐使用 QDataWidgetMapper,因为它会使用 model/view 设计模式,它有几个优点。下面是一个示例,清楚地表明可以轻松汇总所有 QLineEdit 中的数据。该示例包含两个文件 main.cpp 和 mainwin.h:
mainwin.h:
#ifndef MAINWIN_H
#define MAINWIN_H
#include <QtGui>
static const int lineEditCount=4;
class MainWin : public QMainWindow
{
Q_OBJECT
QStandardItemModel& model;
public:
explicit MainWin(QStandardItemModel& m)
: model(m)
{
setWindowTitle("QDataWidgetMapper Example");
resize(400,400);
QDataWidgetMapper* mapper=new QDataWidgetMapper(this);
mapper->setModel(&m);
QWidget *w = new QWidget;
QVBoxLayout *layout = new QVBoxLayout;
w->setLayout(layout);
for(int i=0;i<lineEditCount;++i)
{
QLineEdit* e=new QLineEdit;
layout->addWidget(e);
mapper->addMapping(e,i);
}
layout->addWidget(new QTextEdit);
setCentralWidget(w);
mapper->setCurrentIndex(0); // the only existing row is activated
reactToChange(0);
connect(&m,SIGNAL(itemChanged(QStandardItem*)),
this,SLOT(reactToChange(QStandardItem*)));
}
private slots:
void reactToChange(QStandardItem*)
{
QTextEdit* t=findChild<QTextEdit*>();
t->append("=========================");
for(int i=0;i<lineEditCount;++i)
t->append(model.item(0,i)->text());
}
};
#endif
main.cpp:
#include <QtGui>
#include "mainwin.h"
int main(int argc, char **argv)
{
QApplication app(argc, argv);
/* Create the data model. It has only one row, but as many columns as there are
QLineEdit. */
QStandardItemModel model(1,lineEditCount);
for(int column = 0; column < 4; ++column)
{
QStandardItem *item = new QStandardItem(QString("QLineEdit %0 value").arg(column));
model.setItem(0,column, item);
}
MainWin mainWin(model);
mainWin.show();
return app.exec();
}
每次 QLineEdit
的任何更改都会显示所有 QLineEdit
中值的新摘要,请参见下文。
我刚开始使用 Qt。我被困在这件事上。我的应用程序中有很多 lineEdits,其中的值可能会在应用程序运行时随时更改。 lineEdits 中的值只能是整数。在某个阶段,我需要检查 lineEdits 中的值并与整数数组进行比较。如果它们相等,则用户的任务完成。
在这里,我想将 lineEdits 的所有值存储到一个整数数组中,这样我就可以运行一个 for
循环来检查两个数组是否相等,而不是为每个数组创建一个 if
条件和每个 lineEdit
。每当用户更改 lineEdit 中的值时,数组中的值应该更新,并且当数组中的相应值更改时,lineEdit 中的值也应该更改。
我尝试使用 qvector,将 lineEdits 的值附加到其中。此矢量现在具有 lineEdits 的值,但当其相应值在矢量中更改时不会更新值。
谁能帮忙解决这个问题?
Qt 就是关于信号和槽的。在您的情况下,您需要将 lineEdit
的文本编辑信号连接到您要修改的变量。在你有 lineEdit
的对话框中,你应该在构造函数中有一个连接,例如:
connect(ui->lineEdit, &QLineEdit::textEdited, this, &YourDialog::textEdited);
这会将 lineEdit
的 textEdited
信号连接到 YourDialog
的插槽,在此示例中我也将其命名为 textEdited
。
这个插槽应该接受一个参数,即 const QString&
,因为根据 Qt 的文档,这就是 QLineEdit::textEdited
发出的内容。
然后,你可以在这个槽函数中做任何你想做的事情,比如用lineEdit->text().toInt()
将输入转换为int
并将其值赋给数组元素等
此外,如果您确定唯一的条目应该是此 lineEdit
的 int
,在构造函数中,您可以使用带有 [=24= 的 QIntValidator
对象] 以确保用户将 lineEdit
值编辑为您指定范围内的有效整数。
作为 class 成员,您可以获得指向 QLineEdit
的指针列表:
QList<QLineEdit *> lineEdits;
并在实例化它们时将指向 linedits 的指针添加到列表中:
QLineEdit * lineEdit = new QLineEdit(this);
lineEdits->append(lineEdit);
然后 QSignalMapper
可用于在更新行编辑时更新值数组。 QSignalMapper
class 收集一组无参数信号,并使用与发送信号的对象对应的整数、字符串或小部件参数重新发射它们。所以你可以有一个这样的:
QSignalMapper * mapper = new QSignalMapper(this);
QObject::connect(mapper,SIGNAL(mapped(int)),this,SLOT(OntextChanged(int)));
对于每行编辑,您可以将 textChanged()
信号连接到 QSignalMapper
的 map()
插槽,并使用 setMapping
添加映射,这样当 textChanged()
从行编辑发出信号,发出信号 mapped(int)
:
for(int i=0; i<lineEdits.count(); i++)
{
QObject::connect(lineEdits[i], SIGNAL(textChanged()),mapper,SLOT(map()));
mapper->setMapping(lineEdits[i], i+1);
}
这样,每当您更改行编辑时,都会发出映射器的 mapped(int)
信号,其中包含行编辑的索引作为参数。
数组的值可以在 OntextChanged
槽中更新,如:
void MyClass::OntextChanged(int index)
{
values[index-1] = lineEdits[index-1].text().toInt();
}
我会推荐使用 QDataWidgetMapper,因为它会使用 model/view 设计模式,它有几个优点。下面是一个示例,清楚地表明可以轻松汇总所有 QLineEdit 中的数据。该示例包含两个文件 main.cpp 和 mainwin.h:
mainwin.h:
#ifndef MAINWIN_H
#define MAINWIN_H
#include <QtGui>
static const int lineEditCount=4;
class MainWin : public QMainWindow
{
Q_OBJECT
QStandardItemModel& model;
public:
explicit MainWin(QStandardItemModel& m)
: model(m)
{
setWindowTitle("QDataWidgetMapper Example");
resize(400,400);
QDataWidgetMapper* mapper=new QDataWidgetMapper(this);
mapper->setModel(&m);
QWidget *w = new QWidget;
QVBoxLayout *layout = new QVBoxLayout;
w->setLayout(layout);
for(int i=0;i<lineEditCount;++i)
{
QLineEdit* e=new QLineEdit;
layout->addWidget(e);
mapper->addMapping(e,i);
}
layout->addWidget(new QTextEdit);
setCentralWidget(w);
mapper->setCurrentIndex(0); // the only existing row is activated
reactToChange(0);
connect(&m,SIGNAL(itemChanged(QStandardItem*)),
this,SLOT(reactToChange(QStandardItem*)));
}
private slots:
void reactToChange(QStandardItem*)
{
QTextEdit* t=findChild<QTextEdit*>();
t->append("=========================");
for(int i=0;i<lineEditCount;++i)
t->append(model.item(0,i)->text());
}
};
#endif
main.cpp:
#include <QtGui>
#include "mainwin.h"
int main(int argc, char **argv)
{
QApplication app(argc, argv);
/* Create the data model. It has only one row, but as many columns as there are
QLineEdit. */
QStandardItemModel model(1,lineEditCount);
for(int column = 0; column < 4; ++column)
{
QStandardItem *item = new QStandardItem(QString("QLineEdit %0 value").arg(column));
model.setItem(0,column, item);
}
MainWin mainWin(model);
mainWin.show();
return app.exec();
}
每次 QLineEdit
的任何更改都会显示所有 QLineEdit
中值的新摘要,请参见下文。