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

72 lines
2.2 KiB
C
Raw Normal View History

2024-01-26 14:31:56 +08:00
/*
*
* Copyright (C) 2023, KylinSoft Co., Ltd.
*
* 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/>.
*
*
*/
2021-08-02 13:46:59 +08:00
#ifndef BESTLISTMODEL_H
#define BESTLISTMODEL_H
#include <QAbstractItemModel>
#include "search-result-model.h"
#define NUM_LIMIT_SHOWN_DEFAULT 5
2021-12-14 14:43:35 +08:00
namespace UkuiSearch {
2021-08-02 13:46:59 +08:00
class BestListModel : public QAbstractItemModel
{
Q_OBJECT
public:
explicit BestListModel(QObject *parent = nullptr);
2024-01-26 14:31:56 +08:00
~BestListModel();
2021-08-18 14:23:14 +08:00
QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const override;
2021-08-02 13:46:59 +08:00
QModelIndex parent(const QModelIndex &index) const override;
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
int columnCount(const QModelIndex &parent = QModelIndex()) const override;
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
const SearchPluginIface::ResultInfo & getInfo(const QModelIndex&);
const QString & getPluginInfo(const QModelIndex&);
void setExpanded(const bool&);
const bool &isExpanded();
QStringList getActions(const QModelIndex &);
QString getKey(const QModelIndex &);
public Q_SLOTS:
void appendInfo(const QString &, const SearchPluginIface::ResultInfo &);
void removeInfo(const QString &);
void moveInfo(const QString &pluginName, const int pos);
2021-08-02 13:46:59 +08:00
void startSearch(const QString &);
Q_SIGNALS:
void stopSearch();
void itemListChanged(const int&);
private:
void initConnections();
2024-01-26 14:31:56 +08:00
QVector<SearchPluginIface::ResultInfo> m_items;
2021-08-02 13:46:59 +08:00
QVector<QString> m_plugin_id_list;
QVector<QString> m_plugin_action_key_list;
2021-08-02 13:46:59 +08:00
bool m_isExpanded = false;
};
}
#endif // BESTLISTMODEL_H