2021-08-02 13:46:59 +08:00
|
|
|
#include "best-list-view.h"
|
|
|
|
#define MAIN_MARGINS 0,0,0,0
|
|
|
|
#define MAIN_SPACING 0
|
|
|
|
#define TITLE_HEIGHT 30
|
|
|
|
#define UNFOLD_LABEL_HEIGHT 30
|
|
|
|
|
|
|
|
using namespace Zeeker;
|
|
|
|
BestListView::BestListView(QWidget *parent) : QTreeView(parent)
|
|
|
|
{
|
|
|
|
this->setFrameShape(QFrame::NoFrame);
|
|
|
|
this->viewport()->setAutoFillBackground(false);
|
|
|
|
this->setRootIsDecorated(false);
|
|
|
|
this->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
|
|
|
this->setSelectionBehavior(QAbstractItemView::SelectRows);
|
|
|
|
this->setSelectionMode(QAbstractItemView::SingleSelection);
|
|
|
|
this->setHeaderHidden(true);
|
|
|
|
m_model = new BestListModel(this);
|
|
|
|
this->setModel(m_model);
|
|
|
|
initConnections();
|
|
|
|
m_style_delegate = new ResultViewDelegate(this);
|
|
|
|
this->setItemDelegate(m_style_delegate);
|
|
|
|
}
|
2021-08-05 15:37:58 +08:00
|
|
|
|
2021-08-02 13:46:59 +08:00
|
|
|
bool BestListView::isSelected()
|
|
|
|
{
|
|
|
|
return m_is_selected;
|
|
|
|
}
|
|
|
|
|
|
|
|
int BestListView::showHeight()
|
|
|
|
{
|
|
|
|
int height;
|
|
|
|
int rowheight = this->rowHeight(this->model()->index(0, 0, QModelIndex())) + 1;
|
|
|
|
if (this->isExpanded()) {
|
|
|
|
height = m_count * rowheight;
|
|
|
|
} else {
|
|
|
|
int show_count = m_count > NUM_LIMIT_SHOWN_DEFAULT ? NUM_LIMIT_SHOWN_DEFAULT : m_count;
|
|
|
|
height = show_count * rowheight;
|
|
|
|
}
|
|
|
|
return height;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BestListView::clearSelectedRow()
|
|
|
|
{
|
|
|
|
if (!m_is_selected) {
|
|
|
|
this->blockSignals(true);
|
|
|
|
this->clearSelection();
|
|
|
|
this->blockSignals(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief BestListView::onRowDoubleClickedSlot 处理列表中的双击打开事件
|
|
|
|
* @param index 点击的条目
|
|
|
|
*/
|
|
|
|
void BestListView::onRowDoubleClickedSlot(const QModelIndex &index)
|
|
|
|
{
|
|
|
|
const SearchPluginIface::ResultInfo &info = m_model->getInfo(index);
|
|
|
|
// SearchPluginIface *plugin = SearchPluginManager::getInstance()->getPlugin(m_plugin_id);
|
|
|
|
// try {
|
|
|
|
// if (plugin) {
|
|
|
|
//// if (!info.actionList.isEmpty()) {
|
|
|
|
//// plugin->openAction(info.actionList.at(0), info.key);
|
|
|
|
//// } else {
|
|
|
|
//// throw -2;
|
|
|
|
//// }
|
|
|
|
// } else {
|
|
|
|
// throw -1;
|
|
|
|
// }
|
|
|
|
// } catch(int e) {
|
|
|
|
// qWarning()<<"Open failed, reason="<<e;
|
|
|
|
// }
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief BestListView::onRowSelectedSlot 处理列表项选中事件
|
|
|
|
* @param selected
|
|
|
|
* @param deselected
|
|
|
|
*/
|
|
|
|
void BestListView::onRowSelectedSlot(const QItemSelection &selected, const QItemSelection &deselected)
|
|
|
|
{
|
|
|
|
//NEW_TODO
|
|
|
|
m_is_selected = true;
|
|
|
|
Q_EMIT this->currentRowChanged(m_model->getPluginInfo(this->currentIndex()), m_model->getInfo(this->currentIndex()));
|
|
|
|
m_is_selected = false;
|
|
|
|
if(!selected.isEmpty()) {
|
|
|
|
QRegion region = visualRegionForSelection(selected);
|
|
|
|
QRect rect = region.boundingRect();
|
|
|
|
// Q_EMIT this->currentSelectPos(mapToParent(rect.topLeft()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BestListView::onItemListChanged(const int &count)
|
|
|
|
{
|
|
|
|
m_count = count;
|
|
|
|
Q_EMIT this->listLengthChanged(count);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BestListView::setExpanded(const bool &is_expanded)
|
|
|
|
{
|
|
|
|
m_model->setExpanded(is_expanded);
|
|
|
|
}
|
|
|
|
|
|
|
|
const bool &BestListView::isExpanded()
|
|
|
|
{
|
|
|
|
return m_model->isExpanded();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief BestListView::onMenuTriggered 点击右键菜单的槽函数
|
|
|
|
* @param action
|
|
|
|
*/
|
|
|
|
void BestListView::onMenuTriggered(QAction *action)
|
|
|
|
{
|
|
|
|
//NEW_TODO 接口调整后需要修改
|
|
|
|
// SearchPluginIface *plugin = SearchPluginManager::getInstance()->getPlugin(m_plugin_id);
|
|
|
|
// if (plugin) {
|
|
|
|
//// plugin->openAction(action->text(), m_model->getKey(this->currentIndex()));
|
|
|
|
// } else {
|
|
|
|
// qWarning()<<"Get plugin failed!";
|
|
|
|
// }
|
|
|
|
}
|
|
|
|
|
|
|
|
void BestListView::mousePressEvent(QMouseEvent *event)
|
|
|
|
{
|
|
|
|
if (event->button() == Qt::RightButton) {
|
|
|
|
//加一点点延时,等待列表先被选中
|
|
|
|
QTimer::singleShot(10, this, [ = ] {
|
|
|
|
QMenu * menu = new QMenu(this);
|
|
|
|
QStringList actions = m_model->getActions(this->currentIndex());
|
|
|
|
Q_FOREACH (QString action, actions) {
|
|
|
|
menu->addAction(new QAction(action, this));
|
|
|
|
}
|
|
|
|
menu->move(cursor().pos());
|
|
|
|
menu->show();
|
|
|
|
connect(menu, &QMenu::triggered, this, &BestListView::onMenuTriggered);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
Q_EMIT this->rowClicked();
|
|
|
|
return QTreeView::mousePressEvent(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BestListView::initConnections()
|
|
|
|
{
|
|
|
|
connect(this, &BestListView::startSearch, [ = ](const QString &keyword) {
|
|
|
|
qDebug() << "==========start search!";
|
|
|
|
m_style_delegate->setSearchKeyword(keyword);
|
|
|
|
m_model->startSearch(keyword);
|
|
|
|
});
|
|
|
|
connect(this, &BestListView::startSearch, m_model, &BestListModel::startSearch);
|
|
|
|
connect(this->selectionModel(), &QItemSelectionModel::selectionChanged, this, &BestListView::onRowSelectedSlot);
|
|
|
|
connect(this, &BestListView::activated, this, &BestListView::onRowDoubleClickedSlot);
|
|
|
|
connect(m_model, &BestListModel::itemListChanged, this, &BestListView::onItemListChanged);
|
|
|
|
connect(this, &BestListView::sendBestListData, m_model, &BestListModel::appendInfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
BestListWidget::BestListWidget(QWidget *parent) : QWidget(parent)
|
|
|
|
{
|
|
|
|
this->initUi();
|
|
|
|
initConnections();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BestListWidget::setEnabled(const bool &enabled)
|
|
|
|
{
|
|
|
|
m_enabled = enabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief BestListWidget::expandListSlot 展开列表的槽函数
|
|
|
|
*/
|
|
|
|
void BestListWidget::expandListSlot()
|
|
|
|
{
|
|
|
|
qWarning()<<"List will be expanded!";
|
|
|
|
m_bestListView->setExpanded(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief BestListWidget::reduceListSlot 收起列表的槽函数
|
|
|
|
*/
|
|
|
|
void BestListWidget::reduceListSlot()
|
|
|
|
{
|
|
|
|
qWarning()<<"List will be reduced!";
|
|
|
|
m_bestListView->setExpanded(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief BestListWidget::onListLengthChanged 响应列表长度改变的槽函数
|
|
|
|
*/
|
|
|
|
void BestListWidget::onListLengthChanged(const int &length)
|
|
|
|
{
|
|
|
|
this->setVisible(length > 0);
|
2021-08-05 15:37:58 +08:00
|
|
|
int whole_height = this->isVisible() ? (m_bestListView->showHeight() + TITLE_HEIGHT) : 0;
|
2021-08-02 13:46:59 +08:00
|
|
|
this->setFixedHeight(whole_height);
|
|
|
|
Q_EMIT this->sizeChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BestListWidget::initUi()
|
|
|
|
{
|
|
|
|
m_mainLyt = new QVBoxLayout(this);
|
|
|
|
this->setLayout(m_mainLyt);
|
|
|
|
m_mainLyt->setContentsMargins(MAIN_MARGINS);
|
|
|
|
m_mainLyt->setSpacing(MAIN_SPACING);
|
|
|
|
|
|
|
|
m_titleLabel = new TitleLabel(this);
|
|
|
|
m_titleLabel->setText(tr("Best Matches"));
|
|
|
|
m_titleLabel->setFixedHeight(TITLE_HEIGHT);
|
|
|
|
|
|
|
|
m_bestListView = new BestListView(this);
|
|
|
|
|
|
|
|
m_mainLyt->addWidget(m_titleLabel);
|
|
|
|
m_mainLyt->addWidget(m_bestListView);
|
|
|
|
this->setFixedHeight(m_bestListView->height() + TITLE_HEIGHT);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BestListWidget::initConnections()
|
|
|
|
{
|
|
|
|
connect(this, &BestListWidget::startSearch, m_bestListView, &BestListView::startSearch);
|
2021-08-05 15:37:58 +08:00
|
|
|
connect(this, &BestListWidget::startSearch, m_titleLabel, &TitleLabel::startSearch);
|
|
|
|
connect(this, &BestListWidget::stopSearch, m_titleLabel, &TitleLabel::stopSearch);
|
2021-08-02 13:46:59 +08:00
|
|
|
connect(this, &BestListWidget::sendBestListData, m_bestListView, &BestListView::sendBestListData);
|
|
|
|
connect(m_bestListView, &BestListView::currentRowChanged, this, &BestListWidget::currentRowChanged);
|
|
|
|
connect(this, &BestListWidget::clearSelectedRow, m_bestListView, &BestListView::clearSelectedRow);
|
2021-08-05 15:37:58 +08:00
|
|
|
connect(m_titleLabel, &TitleLabel::showMoreClicked, this, &BestListWidget::expandListSlot);
|
|
|
|
connect(m_titleLabel, &TitleLabel::retractClicked, this, &BestListWidget::reduceListSlot);
|
2021-08-02 13:46:59 +08:00
|
|
|
connect(m_bestListView, &BestListView::listLengthChanged, this, &BestListWidget::onListLengthChanged);
|
|
|
|
connect(m_bestListView, &BestListView::rowClicked, this, &BestListWidget::rowClicked);
|
|
|
|
connect(qApp, &QApplication::paletteChanged, this, [ = ]() {
|
2021-08-05 15:37:58 +08:00
|
|
|
int whole_height = this->isVisible() ? m_bestListView->showHeight() + TITLE_HEIGHT : 0;
|
2021-08-02 13:46:59 +08:00
|
|
|
this->setFixedHeight(whole_height);
|
|
|
|
Q_EMIT this->sizeChanged();
|
|
|
|
});
|
|
|
|
}
|