mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-05 22:09:52 +08:00
56 lines
1.2 KiB
C++
56 lines
1.2 KiB
C++
#ifndef VSEARCHRESULTTREE_H
|
|
#define VSEARCHRESULTTREE_H
|
|
|
|
#include <QIcon>
|
|
|
|
#include "vtreewidget.h"
|
|
#include "vsearch.h"
|
|
|
|
|
|
class VSearchResultTree : public VTreeWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit VSearchResultTree(QWidget *p_parent = nullptr);
|
|
|
|
void updateResults(const QList<QSharedPointer<VSearchResultItem> > &p_items);
|
|
|
|
void clearResults();
|
|
|
|
public slots:
|
|
void addResultItem(const QSharedPointer<VSearchResultItem> &p_item);
|
|
|
|
void addResultItems(const QList<QSharedPointer<VSearchResultItem> > &p_items);
|
|
|
|
void handleContextMenuRequested(QPoint p_pos);
|
|
|
|
void expandCollapseAll();
|
|
|
|
signals:
|
|
void countChanged(int p_count);
|
|
|
|
private slots:
|
|
void locateCurrentItem();
|
|
|
|
void addSelectedItemsToCart();
|
|
|
|
void pinSelectedItemsToHistory();
|
|
|
|
private:
|
|
void appendItem(const QSharedPointer<VSearchResultItem> &p_item);
|
|
|
|
VSearchResultItem::ItemType itemResultType(const QTreeWidgetItem *p_item) const;
|
|
|
|
void activateItem(const QTreeWidgetItem *p_item) const;
|
|
|
|
const QSharedPointer<VSearchResultItem> &itemResultData(const QTreeWidgetItem *p_item) const;
|
|
|
|
QVector<QSharedPointer<VSearchResultItem> > m_data;
|
|
|
|
QIcon m_noteIcon;
|
|
QIcon m_folderIcon;
|
|
QIcon m_notebookIcon;
|
|
};
|
|
|
|
#endif // VSEARCHRESULTTREE_H
|