ukui-search/frontend/view/result-view.h

113 lines
3.1 KiB
C
Raw Normal View History

#ifndef RESULTVIEW_H
#define RESULTVIEW_H
#include <QTreeView>
#include <QVBoxLayout>
#include <QLabel>
#include <QMenu>
#include <QApplication>
#include "search-result-model.h"
#include "show-more-label.h"
#include "title-label.h"
2021-05-25 19:42:40 +08:00
#include "result-view-delegate.h"
2021-12-14 14:43:35 +08:00
namespace UkuiSearch {
class ResultView : public QTreeView
{
Q_OBJECT
public:
ResultView(const QString &plugin_id, QWidget *parent = nullptr);
~ResultView() = default;
bool isSelected();
int showHeight();
2021-08-18 14:23:14 +08:00
int getResultNum();
QModelIndex getModlIndex(int row, int column);
SearchPluginIface::ResultInfo getIndexResultInfo(QModelIndex &index);
public Q_SLOTS:
void clearSelectedRow();
2021-05-25 19:42:40 +08:00
void onRowDoubleClickedSlot(const QModelIndex &);
2021-08-18 14:23:14 +08:00
void onRowSelectedSlot(const QModelIndex &index);
void onItemListChanged(const int &);
void setExpanded(const bool &);
const bool &isExpanded();
void onMenuTriggered(QAction *);
2021-09-08 15:41:28 +08:00
protected:
void mousePressEvent(QMouseEvent *event);
void mouseReleaseEvent(QMouseEvent *event);
2021-09-09 11:23:59 +08:00
void mouseMoveEvent(QMouseEvent *event);
2021-09-08 15:41:28 +08:00
private:
void initConnections();
SearchResultModel * m_model = nullptr;
QString m_plugin_id;
bool m_is_selected = false;
2021-05-25 19:42:40 +08:00
ResultViewDelegate * m_style_delegate = nullptr;
int m_count = 0;
2021-09-08 16:34:32 +08:00
QModelIndex m_tmpCurrentIndex;
QModelIndex m_tmpMousePressIndex;
Q_SIGNALS:
void startSearch(const QString &);
void stopSearch();
void currentRowChanged(const QString &, const SearchPluginIface::ResultInfo&);
2021-08-02 13:46:59 +08:00
void sendBestListData(const QString &, const SearchPluginIface::ResultInfo&);
void listLengthChanged(const int &);
void rowClicked();
void lableReset();
};
class ResultWidget : public QWidget
{
Q_OBJECT
public:
ResultWidget(const QString &plugin_id, QWidget *parent = nullptr);
~ResultWidget() = default;
QString pluginId();
QString pluginName();
void setEnabled(const bool&);
void clearResult();
2021-08-18 14:23:14 +08:00
int getResultNum();
void setResultSelection(const QModelIndex &index);
void clearResultSelection();
QModelIndex getModlIndex(int row, int column);
void activateIndex();
QModelIndex getCurrentSelection();
bool getExpandState();
SearchPluginIface::ResultInfo getIndexResultInfo(QModelIndex &index);
void resetTitleLabel();
void setTitileLableHide(bool state);
2021-05-25 19:42:40 +08:00
public Q_SLOTS:
void expandListSlot();
void reduceListSlot();
void onListLengthChanged(const int &);
2021-05-25 19:42:40 +08:00
private:
void initUi();
void initConnections();
QString m_plugin_id;
QString m_plugin_name;
bool m_enabled = true;
QVBoxLayout * m_mainLyt = nullptr;
TitleLabel * m_titleLabel = nullptr;
ResultView * m_resultView = nullptr;
Q_SIGNALS:
void startSearch(const QString &);
void stopSearch();
void currentRowChanged(const QString &, const SearchPluginIface::ResultInfo&);
2021-08-02 13:46:59 +08:00
void sendBestListData(const QString &, const SearchPluginIface::ResultInfo&);
void clearSelectedRow();
void sizeChanged();
void rowClicked();
void resizeWidth(const int &);
void showMoreClicked();
void retractClicked();
};
}
#endif // RESULTVIEW_H