Update changelog;

Make search result list scrolling with current selection item changing when key_up and key_down pressed.
This commit is contained in:
iaom 2021-03-25 15:45:09 +08:00
parent 5745682bb0
commit 93958cc228
4 changed files with 18 additions and 1 deletions

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
ukui-search (0.2.0+0325) v101; urgency=medium
* Changed name displayed in ukui-menu from 'ukui-search' to 'Search'.
- 更改了英文模式下开始菜单中显示的名字。
-- zhangpengfei <zhangpengfei@kylinos.cn> Thu, 25 Mar 2021 11:00:09 +0800
ukui-search (0.2.0+0322) v101; urgency=medium
* Fit muti-screens mode.

View File

@ -300,6 +300,9 @@ void ContentWidget::setupConnect(SearchListView * listview) {
listview->blockSignals(false);
}
});
connect(listview,&SearchListView::currentSelectPos,[=](QPoint pos){
m_resultListArea->ensureVisible(pos.x(),pos.y());
});
}
/**

View File

@ -45,9 +45,15 @@ SearchListView::SearchListView(QWidget * parent, const QStringList& list, const
this->setItemDelegate(m_styleDelegate);
m_type = type;
connect(this->selectionModel(), &QItemSelectionModel::selectionChanged, this, [ = ]() {
connect(this->selectionModel(), &QItemSelectionModel::selectionChanged, this, [ = ](const QItemSelection &selected, const QItemSelection &deselected) {
Q_EMIT this->currentRowChanged(getCurrentType(), m_item->m_pathlist.at(this->currentIndex().row()));
m_isSelected = true;
if(!selected.isEmpty())
{
QRegion region = visualRegionForSelection(selected);
QRect rect = region.boundingRect();
Q_EMIT this->currentSelectPos(mapToParent(rect.topLeft()));
}
});
connect(this, &SearchListView::doubleClicked, this, [ = ](const QModelIndex& index) {

View File

@ -71,6 +71,7 @@ private:
Q_SIGNALS:
void currentRowChanged(const int&, const QString&);
void currentSelectPos(QPoint pos);
public Q_SLOTS:
void clearSelection();