ukui-search/frontend/control/search-line-edit.h

100 lines
2.4 KiB
C
Raw Permalink Normal View History

/*
*
* 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 <https://www.gnu.org/licenses/>.
*
* Authors: zhangjiaping <zhangjiaping@kylinos.cn>
*
*/
2021-07-21 17:01:34 +08:00
#ifndef SEARCHLINEEDIT_H
#define SEARCHLINEEDIT_H
#include <QWidget>
#include <QHBoxLayout>
#include <QLabel>
#include <QLineEdit>
#include <QtDBus/QtDBus>
#include <QPainter>
#include <QAction>
#include <QTimer>
#include <QStringListModel>
#include <QCompleter>
#include <QAbstractItemView>
#include <QVector4D>
#include <QListView>
2021-07-21 17:01:34 +08:00
#include <QProxyStyle>
#include "global-settings.h"
2021-12-14 14:43:35 +08:00
namespace UkuiSearch {
2021-07-21 17:01:34 +08:00
class SearchLineEdit : public QLineEdit {
Q_OBJECT
public:
explicit SearchLineEdit(int radius = 12, QWidget *parent = nullptr);
2021-07-21 17:01:34 +08:00
// void record();
~SearchLineEdit();
void setRadius(int radius);
2021-07-21 17:01:34 +08:00
protected:
void paintEvent(QPaintEvent *) override;
void focusOutEvent(QFocusEvent *) override;
2021-08-18 14:23:14 +08:00
2021-07-21 17:01:34 +08:00
Q_SIGNALS:
void requestSearchKeyword(QString text);
private:
2021-07-21 17:01:34 +08:00
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();
2021-07-21 17:01:34 +08:00
void clear();
2021-08-06 10:54:48 +08:00
void reSearch();
2021-08-18 14:23:14 +08:00
protected:
void paintEvent(QPaintEvent *e) override;
Q_SIGNALS:
void requestSearchKeyword(QString text);
2021-08-11 17:50:00 +08:00
public Q_SLOTS:
void setText(QString keyword);
private:
2021-07-21 17:01:34 +08:00
SearchLineEdit *m_searchLineEdit;
QHBoxLayout *m_ly;
int m_radius = 12;
};
2021-07-21 17:01:34 +08:00
class LineEditStyle : public QProxyStyle
{
public:
explicit LineEditStyle(int radius = 12);
2021-07-21 17:01:34 +08:00
void drawPrimitive(PrimitiveElement element, const QStyleOption *option, QPainter *painter, const QWidget *widget = nullptr) const override;
void setRadius(int radius);
private:
int m_radius = 12;
};
}
2021-07-21 17:01:34 +08:00
#endif //SEARCHLINEEDIT_H