ukui-search/frontend/model/best-list-model.cpp

226 lines
6.3 KiB
C++
Raw Normal View History

2021-08-02 13:46:59 +08:00
/*
*
* Copyright (C) 2021, KylinSoft Co., Ltd.
2021-08-02 13:46:59 +08:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* Authors: jixiaoxu <jixiaoxu@kylinos.cn>
*
*/
#include "best-list-model.h"
#include "search-plugin-manager.h"
2021-12-14 14:43:35 +08:00
using namespace UkuiSearch;
2021-08-02 13:46:59 +08:00
BestListModel::BestListModel(QObject *parent)
: QAbstractItemModel(parent)
{
initConnections();
}
QModelIndex BestListModel::index(int row, int column, const QModelIndex &parent) const
{
Q_UNUSED(parent)
if(row < 0 || row > m_items.length() - 1)
2021-08-02 13:46:59 +08:00
return QModelIndex();
return createIndex(row, column, nullptr);
2021-08-02 13:46:59 +08:00
}
QModelIndex BestListModel::parent(const QModelIndex &index) const
{
Q_UNUSED(index)
2021-08-02 13:46:59 +08:00
return QModelIndex();
}
int BestListModel::rowCount(const QModelIndex &parent) const
{
return parent.isValid() ? 0 : (m_isExpanded ? m_items.length() : NUM_LIMIT_SHOWN_DEFAULT);
2021-08-02 13:46:59 +08:00
}
int BestListModel::columnCount(const QModelIndex &parent) const
{
return parent.isValid() ? 0 : 1;
}
QVariant BestListModel::data(const QModelIndex &index, int role) const
{
switch(role) {
case Qt::DecorationRole: {
return m_items.at(index.row()).icon;
2021-08-02 13:46:59 +08:00
}
case Qt::DisplayRole: {
return m_items.at(index.row()).name;
2021-08-02 13:46:59 +08:00
}
2022-05-24 17:42:03 +08:00
case Qt::ToolTipRole: {
return m_items.at(index.row()).toolTip;
2022-05-24 17:42:03 +08:00
}
2021-08-02 13:46:59 +08:00
default:
return QVariant();
}
return QVariant();
}
const SearchPluginIface::ResultInfo &BestListModel::getInfo(const QModelIndex &index)
{
return m_items.at(index.row());
2021-08-02 13:46:59 +08:00
}
const QString &BestListModel::getPluginInfo(const QModelIndex &index)
{
return m_plugin_id_list.at(index.row());
}
void BestListModel::setExpanded(const bool &is_expanded)
{
this->beginResetModel();
m_isExpanded = is_expanded;
this->endResetModel();
Q_EMIT this->itemListChanged(m_items.length());
2021-08-02 13:46:59 +08:00
}
const bool &BestListModel::isExpanded()
{
return m_isExpanded;
}
QStringList BestListModel::getActions(const QModelIndex &index)
{
// if (m_item->m_result_info_list.length() > index.row() && index.row() >= 0)
// return m_item->m_result_info_list.at(index.row()).actionList;
Q_UNUSED(index)
2021-08-02 13:46:59 +08:00
return QStringList();
}
QString BestListModel::getKey(const QModelIndex &index)
{
if (m_items.length() > index.row() && index.row() >= 0)
return m_items.at(index.row()).actionKey;
2021-08-02 13:46:59 +08:00
return NULL;
}
void BestListModel::appendInfo(const QString &pluginId, const SearchPluginIface::ResultInfo &info)
{
if (m_plugin_action_key_list.contains(info.actionKey)) {
2021-10-29 16:03:24 +08:00
// qDebug() << "plugin ID:" << pluginId << "name:" << info.name << "action key:" << info.actionKey << "is same with pre-result!";
return;
} else {
m_plugin_action_key_list.append(info.actionKey);
}
2021-08-02 13:46:59 +08:00
if (m_plugin_id_list.contains(pluginId)) {
if (info.name == m_items.at(m_plugin_id_list.lastIndexOf(pluginId)).name) {
2021-08-02 13:46:59 +08:00
return;
}
2021-10-29 16:03:24 +08:00
// qDebug()<<"plugin ID:"<<pluginId<<"Repalce result. name ="<<info.name;
this->beginResetModel();
m_items.replace(m_plugin_id_list.lastIndexOf(pluginId), info);
this->endResetModel();
2021-08-02 13:46:59 +08:00
return;
}
this->beginResetModel();
2021-10-29 16:03:24 +08:00
// qDebug()<<"plugin ID:"<<pluginId<<"Got a result. name ="<<info.name;
2021-08-02 13:46:59 +08:00
m_plugin_id_list.append(pluginId);
m_items.append(info);
QVector<SearchPluginIface::ResultInfo> result_info_list_tmp;
QVector<QString> plugin_id_list_tmp;
QList<PluginInfo> infoList = SearchPluginManager::getInstance()->getPluginIds();
QVector<QString> orders(infoList.length());
for (const PluginInfo& info : infoList) {
if (info.isEnable() and info.order() > 0) {
if (info.order() > orders.size()) {
QVector<QString> tmpVct(info.order() - orders.size());
orders.append(tmpVct);
}
orders[info.order() - 1] = info.name();
}
}
orders.removeAll("");
Q_FOREACH (const QString& plugin, orders) {
if (m_plugin_id_list.contains(plugin)) {
result_info_list_tmp.append(m_items.at(m_plugin_id_list.lastIndexOf(plugin)));
plugin_id_list_tmp.append(plugin);
}
}
m_items.clear();
m_items.swap(result_info_list_tmp);
m_plugin_id_list.clear();
m_plugin_id_list.swap(plugin_id_list_tmp);
2021-08-02 13:46:59 +08:00
this->endResetModel();
Q_EMIT this->itemListChanged(m_items.length());
2021-08-02 13:46:59 +08:00
}
void BestListModel::removeInfo(const QString &pluginId)
{
this->beginResetModel();
int index = m_plugin_id_list.lastIndexOf(pluginId);
if (index == -1) {
return;
}
m_items.removeAt(index);
m_plugin_id_list.removeAll(pluginId);
this->endResetModel();
Q_EMIT this->itemListChanged(m_items.length());
}
void BestListModel::moveInfo(const QString &pluginName, const int pos)
{
this->beginResetModel();
int index = m_plugin_id_list.lastIndexOf(pluginName);
if (index == -1) {
return;
}
m_plugin_id_list.removeAll(pluginName);
if (pos > m_plugin_id_list.size()) {
m_plugin_id_list.append(pluginName);
} else {
m_plugin_id_list.insert(pos - 1, pluginName);
}
SearchPluginIface::ResultInfo info = m_items.at(index);
m_items.removeAt(index);
if (pos > m_items.size()) {
m_items.append(info);
} else {
m_items.insert(pos - 1, info);
}
this->endResetModel();
}
2021-08-02 13:46:59 +08:00
void BestListModel::startSearch(const QString &keyword)
{
Q_UNUSED(keyword)
if (!m_items.isEmpty()) {
2021-08-02 13:46:59 +08:00
this->beginResetModel();
m_plugin_id_list.clear();
m_plugin_action_key_list.clear();
m_items.clear();
2021-08-02 13:46:59 +08:00
this->endResetModel();
Q_EMIT this->itemListChanged(m_items.length());
2021-08-02 13:46:59 +08:00
}
}
void BestListModel::initConnections()
{
}
BestListModel::~BestListModel()
{
m_items.clear();
m_items.squeeze();
}