2024-01-30 14:35:04 +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/>.
|
|
|
|
*
|
|
|
|
* * Authors: iaom <zhangpengfei@kylinos.cn>
|
|
|
|
*/
|
2021-12-28 15:56:41 +08:00
|
|
|
#ifndef RESULTITEMPRIVATE_H
|
|
|
|
#define RESULTITEMPRIVATE_H
|
|
|
|
#include "result-item.h"
|
|
|
|
#include "result-item-private.h"
|
|
|
|
namespace UkuiSearch {
|
|
|
|
class ResultItemPrivate
|
|
|
|
{
|
|
|
|
public:
|
2022-01-11 16:20:40 +08:00
|
|
|
explicit ResultItemPrivate(ResultItem *parent);
|
2021-12-28 15:56:41 +08:00
|
|
|
~ResultItemPrivate();
|
2022-01-11 16:20:40 +08:00
|
|
|
void setSearchId(size_t searchId);
|
|
|
|
void setItemKey(QString itemKey);
|
2022-06-13 13:38:47 +08:00
|
|
|
void setExtral(QVariantList extral);
|
2022-01-24 09:44:42 +08:00
|
|
|
size_t getSearchId();
|
|
|
|
QString getItemKey();
|
2022-06-13 13:38:47 +08:00
|
|
|
QVariantList getExtral();
|
|
|
|
|
2021-12-28 15:56:41 +08:00
|
|
|
private:
|
2023-01-21 11:37:39 +08:00
|
|
|
size_t m_searchId = 0;
|
2021-12-28 15:56:41 +08:00
|
|
|
QString m_itemKey;
|
2022-06-13 13:38:47 +08:00
|
|
|
QVariantList m_extral;
|
2021-12-28 15:56:41 +08:00
|
|
|
//and something else...
|
|
|
|
|
|
|
|
ResultItem *q;
|
|
|
|
|
|
|
|
};
|
2021-12-31 17:38:02 +08:00
|
|
|
|
2021-12-28 15:56:41 +08:00
|
|
|
}
|
|
|
|
#endif // RESULTITEMPRIVATE_H
|