ukui-search/libsearch/searchinterface/result-item-private.h

48 lines
1.3 KiB
C
Raw Permalink Normal View History

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);
void setExtral(QVariantList extral);
size_t getSearchId();
QString getItemKey();
QVariantList getExtral();
2021-12-28 15:56:41 +08:00
private:
size_t m_searchId = 0;
2021-12-28 15:56:41 +08:00
QString m_itemKey;
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