2021-12-28 15:56:41 +08:00
|
|
|
#ifndef RESULTITEM_H
|
|
|
|
#define RESULTITEM_H
|
|
|
|
|
|
|
|
#include <QString>
|
2023-03-15 16:39:38 +08:00
|
|
|
#include "search-result-property.h"
|
2021-12-28 15:56:41 +08:00
|
|
|
namespace UkuiSearch {
|
|
|
|
class ResultItemPrivate;
|
|
|
|
class ResultItem
|
|
|
|
{
|
|
|
|
public:
|
2022-01-11 16:20:40 +08:00
|
|
|
explicit ResultItem();
|
2022-06-13 13:38:47 +08:00
|
|
|
virtual ~ResultItem();
|
|
|
|
|
|
|
|
ResultItem(const ResultItem &item);
|
2022-01-11 16:20:40 +08:00
|
|
|
explicit ResultItem(const size_t searchId);
|
2023-03-15 16:39:38 +08:00
|
|
|
explicit ResultItem(const QString &itemKey);
|
|
|
|
ResultItem(const size_t searchId, const QString &itemKey, const SearchResultPropertyMap &map);
|
|
|
|
void setSearchId(const size_t searchId);
|
|
|
|
void setItemKey(const QString &itemKey);
|
2022-06-13 13:38:47 +08:00
|
|
|
size_t getSearchId() const;
|
|
|
|
QString getItemKey() const;
|
2023-03-15 16:39:38 +08:00
|
|
|
void setValue(SearchProperty::SearchResultProperty property, const QVariant &value);
|
|
|
|
QVariant getValue(SearchProperty::SearchResultProperty property) const;
|
|
|
|
SearchResultPropertyMap getAllValue() const;
|
2022-06-13 13:38:47 +08:00
|
|
|
|
2021-12-28 15:56:41 +08:00
|
|
|
private:
|
|
|
|
ResultItemPrivate *d;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // RESULTITEM_H
|