我有一段代码执行此操作:名为prepareUI
的方法使UI准备好能够加载提供给它的搜索结果。一个名为onClear
的方法,当需要清除已显示的结果时调用该方法。还有一个名为populateSearchResults
的方法,它接收搜索数据并使用它加载UI。保存数据的容器是公开可用的指针,因为需要清除onClear
的结果:
void MyClass::prepareSearchUI() {
//there may be many search results, hence need a scroll view to hold them
fResultsViewBox = new QScrollArea(this);
fResultsViewBox->setGeometry(28,169,224,232);
fSearchResultsLayout = new QGridLayout();
}
void MyClass::onClear() {
//I have tried this, this causes the problem, even though it clears the data correctly
delete fSearchResultContainer;
//tried this, does nothing
QLayoutItem *child;
while ((child = fSearchResultsLayout->takeAt(0)) != 0) {
...
delete child;
}
}
void MyClass::populateWithSearchesults(std::vector<std::string> &aSearchItems) {
fSearchResultContainer = new QWidget();
fSearchResultContainer->setLayout(fSearchResultsLayout);
for (int rowNum = 0; rowNum < aSearchItems.size(); rowNum++) {
QHBoxLayout *row = new QHBoxLayout();
//populate the row with some widgets, all allocated through 'new', without specifying any parent, like
QPushButton *loc = new QPushButton("Foo");
row->addWidget(loc);
fSearchResultsLayout->addLayout(row, rowNum, 0,1,2);
}
fResultsViewBox->setWidget(fSearchResultContainer);
}
问题是,当我拨打内部呼叫onClear
的{{1}}时,它会删除所有显示的结果。但在那之后,如果我再次调用delete
,我的应用程序崩溃了,堆栈跟踪会将此方法显示为崩溃的位置。
如何解决此问题?
答案 0 :(得分:2)
您似乎对所有权有一些误解。 QLayout
取得添加到其中的任何项目的所有权:http://doc.qt.io/qt-5/qlayout.html#addItem
这意味着QLayout
负责删除这些项目。如果你删除它们,那么QLayout
也会尝试删除它们,然后你就会看到你现在看到的崩溃。
QLayout
没有很好的功能来删除内容并重新添加它们(例如removeWidget
可能无法正常工作。)但这是有原因的。
QLayout
不能用作列表视图。
你想要的是等待它,QListView
。哪个甚至可以为您处理滚动功能,和可以添加和删除元素。
答案 1 :(得分:0)
实际上,即使您使用的是QGridLayout
或任何其他Layout
,您也可以轻松解决此问题:
subLayout->removeWidget(m_visibleCheckBox);//removes and then it causes some zigzag drawing at (0,0)
m_visibleCheckBox->setVisible(false);//asks to redraw the component internally
setLayout(subLayout);//for safety as we may use that layout again and again
如果仅使用第一行,则会导致此问题: