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:
|
|
|
|
explicit ResultItemPrivate(const QString &itemKey, ResultItem *parent);
|
|
|
|
~ResultItemPrivate();
|
|
|
|
private:
|
|
|
|
size_t searchId;
|
|
|
|
QString m_itemKey;
|
|
|
|
QString m_label;
|
|
|
|
QVariant m_extral;
|
|
|
|
//and something else...
|
|
|
|
|
|
|
|
ResultItem *q;
|
|
|
|
|
|
|
|
};
|
2021-12-31 17:38:02 +08:00
|
|
|
|
2021-12-28 15:56:41 +08:00
|
|
|
}
|
|
|
|
#endif // RESULTITEMPRIVATE_H
|