/* * * Copyright (C) 2020, 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 . * * Authors: zhangjiaping * */ #ifndef SEARCHLINEEDIT_H #define SEARCHLINEEDIT_H #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "global-settings.h" namespace UkuiSearch { class SearchLineEdit : public QLineEdit { Q_OBJECT public: explicit SearchLineEdit(int radius = 12, QWidget *parent = nullptr); // void record(); ~SearchLineEdit(); void setRadius(int radius); protected: void paintEvent(QPaintEvent *) override; void focusOutEvent(QFocusEvent *) override; Q_SIGNALS: void requestSearchKeyword(QString text); private: QHBoxLayout *m_ly; QLabel *m_queryIcon; QTimer *m_timer; bool m_isEmpty = true; int m_radius = 12; }; class SearchBarWidget: public QWidget { Q_OBJECT public: SearchBarWidget(QWidget *parent = nullptr); ~SearchBarWidget(); void clear(); void reSearch(); protected: void paintEvent(QPaintEvent *e) override; Q_SIGNALS: void requestSearchKeyword(QString text); public Q_SLOTS: void setText(QString keyword); private: SearchLineEdit *m_searchLineEdit; QHBoxLayout *m_ly; int m_radius = 12; }; class LineEditStyle : public QProxyStyle { public: explicit LineEditStyle(int radius = 12); void drawPrimitive(PrimitiveElement element, const QStyleOption *option, QPainter *painter, const QWidget *widget = nullptr) const override; void setRadius(int radius); private: int m_radius = 12; }; } #endif //SEARCHLINEEDIT_H