我有一个重载的QTreeWidget类,我的SIGNALS:我已经在我的UI中提升了它,当我用lambda语法提升QTreeWidget对象时,我有一个错误。
QObject::connect: signal not found in CustomTreeWidget.
MY CustomTreeWidget看起来像:
·H
class CustomTreeWidget : public QTreeWidget
{
Q_OBJECT
public:
explicit CustomTreeWidget(QWidget *parent = 0);
~CustomTreeWidget() {
}
signals:
void currentNodeChanged(QSet<int> uids);
void deleteRequest(QVector<int> uids);
}
的.cpp
CustomTreeWidget::CustomTreeWidget(QWidget *parent) : QTreeWidget(parent)
{
setAnimated(true);
connect(this, &CustomTreeWidget::customContextMenuRequested, this, [=](const QPoint &pos) {
this->m_bCustomMenuOpen = true;
const auto &&item = this->itemAt(pos);
QMenu myMenu;
bool ok = !(item) ? false : true;
if (ok) {
//თუ topLevelItem -ია მხოლოდ დამატების action -ი უნდა იყოს ჩართული.
if (item == this->topLevelItem(0) || item == this->topLevelItem(0)->child(0)) {
ok = false;
}
}
QAction *Removecnt = myMenu.addAction(tr("&წაშლა"), this, SLOT(DeleteNode()));
Removecnt->setIcon(QIcon(":/global_res/delete.png"));
Removecnt->setEnabled(ok);
myMenu.exec(this->mapToGlobal(pos));
});
}
void CustomTreeWidget::BFS(QTreeWidgetItem *item, QSet<int> &out)
{
std::queue<QTreeWidgetItem *> Q;
Q.push(item);
while (!Q.empty()) {
QTreeWidgetItem *now = Q.front(); Q.pop();
out.insert(this->m_mapUids[now]);
for (int i = 0; i < now->childCount(); i++) {
Q.push(now->child(i));
}
}
}
QSet<int> CustomTreeWidget::GetCurrentNodeUids()
{
QSet<int> uids;
if (!this->currentItem())
return uids;
this->BFS(this->currentItem(), uids);
return uids;
}
void CustomTreeWidget::DeleteNode()
{
QSet<int> nodes = this->GetCurrentNodeUids();
QVector<int> uids;
for (auto it : nodes) {
uids.push_back(it);
}
emit deleteRequest(uids);
}
我的lambda看起来像:
connect(ui->productTree, &CustomTreeWidget::deleteRequest, this, [=](QVector<int> uids) {
//logic
});
但是这个信号适用于旧语法。
connect(ui->productTree, SIGNAL(deleteRequest(QVector<int>)), this, SLOT(checkSlot(QVector<int>)));
这个插槽是。
void ProductForm::checkSlot(QVector<int> uids)
{
qDebug() << uids.size();
}
那么lambda语法是什么问题?
答案 0 :(得分:0)
这有点像违反了一个定义规则(ODR) - 可能是由于过时的构建文件夹。问题是传递给deleteRequest
方法的connect
地址与moc_CustomTreeWidget.cpp
中可见方法的地址不同。删除构建文件夹,然后重试。如果它仍然无效,请开始减少您的问题:
在存储库中创建一个最小化分支(如果你没有使用版本控制,你就不会在最小化的情况下去任何地方)。
将ui_CustomTreeWidget.h
文件的内容复制粘贴到CustomTreeWidget.cpp
文件中,删除#include
行。
检查粘贴的内容,以便使用正确的类型实例化productTree
对象。
如果这是正确的,那么从代码中删除其他所有内容,逐步,重建并在仍然重现的每个步骤中提交到存储库。你应该得到一个最多20-30行的测试用例。并且显而易见的是,或者您可以使用测试用例修改问题。