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

96 lines
2.5 KiB
C
Raw Normal View History

2023-04-11 10:19:35 +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 RESULTITEM_H
#define RESULTITEM_H
#include <QString>
#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();
virtual ~ResultItem();
2022-01-11 16:20:40 +08:00
explicit ResultItem(const size_t searchId);
explicit ResultItem(const QString &itemKey);
ResultItem(const size_t searchId, const QString &itemKey, const SearchResultPropertyMap &map);
2023-04-19 15:14:36 +08:00
ResultItem(const ResultItem &item);
ResultItem &operator=(const ResultItem &other);
ResultItem &operator=(ResultItem &&other) Q_DECL_NOEXCEPT;
2024-08-19 10:57:18 +08:00
/**
* @brief setSearchId
* id,
* @param searchId
*/
void setSearchId(const size_t searchId);
2024-08-19 10:57:18 +08:00
/**
* @brief setItemKey
* ,
* @param itemKey
*/
void setItemKey(const QString &itemKey);
2024-08-19 10:57:18 +08:00
/**
* @brief getSearchId
* id
* @return id
*/
size_t getSearchId() const;
2024-08-19 10:57:18 +08:00
/**
* @brief getItemKey
*
*/
QString getItemKey() const;
2024-08-19 10:57:18 +08:00
/**
* @brief setValue
* ,
* @param property
* @param value
*/
void setValue(SearchProperty::SearchResultProperty property, const QVariant &value);
2024-08-19 10:57:18 +08:00
/**
* @brief getValue
*
* @param property
* @return
*/
QVariant getValue(SearchProperty::SearchResultProperty property) const;
2024-08-19 10:57:18 +08:00
/**
* @brief getAllValue
*
* @return map
*/
SearchResultPropertyMap getAllValue() const;
2021-12-28 15:56:41 +08:00
private:
ResultItemPrivate *d;
};
}
#endif // RESULTITEM_H